2016/12/01 - AWS Elastic Beanstalk - 3 updated api methods
Changes Update elasticbeanstalk client to latest version
{'BuildConfiguration': {'ArtifactName': 'string', 'CodeBuildServiceRole': 'string', 'ComputeType': 'BUILD_GENERAL1_SMALL | ' 'BUILD_GENERAL1_MEDIUM | ' 'BUILD_GENERAL1_LARGE', 'Image': 'string', 'TimeoutInMinutes': 'integer'}, 'SourceBuildInformation': {'SourceRepository': {'S3'}, 'SourceType': {'Zip'}}}Response
{'ApplicationVersion': {'BuildArn': 'string', 'SourceBuildInformation': {'SourceRepository': {'S3'}, 'SourceType': {'Zip'}}, 'Status': {'Building'}}}
Creates an application version for the specified application.
See also: AWS API Documentation
Request Syntax
client.create_application_version( ApplicationName='string', VersionLabel='string', Description='string', SourceBuildInformation={ 'SourceType': 'Git'|'Zip', 'SourceRepository': 'CodeCommit'|'S3', 'SourceLocation': 'string' }, SourceBundle={ 'S3Bucket': 'string', 'S3Key': 'string' }, BuildConfiguration={ 'ArtifactName': 'string', 'CodeBuildServiceRole': 'string', 'ComputeType': 'BUILD_GENERAL1_SMALL'|'BUILD_GENERAL1_MEDIUM'|'BUILD_GENERAL1_LARGE', 'Image': 'string', 'TimeoutInMinutes': 123 }, AutoCreateApplication=True|False, Process=True|False )
string
[REQUIRED]
The name of the application. If no application is found with this name, and AutoCreateApplication is false, returns an InvalidParameterValue error.
string
[REQUIRED]
A label identifying this version.
Constraint: Must be unique per application. If an application version already exists with this label for the specified application, AWS Elastic Beanstalk returns an InvalidParameterValue error.
string
Describes this version.
dict
Specify a commit in an AWS CodeCommit Git repository to use as the source code for the application version.
Specify a commit in an AWS CodeCommit repository or a source bundle in S3 (with SourceBundle), but not both. If neither SourceBundle nor SourceBuildInformation are provided, Elastic Beanstalk uses a sample application.
SourceType (string) -- [REQUIRED]
The type of repository, such as Git.
SourceRepository (string) -- [REQUIRED]
Location where the repository is stored, such as CodeCommit.
SourceLocation (string) -- [REQUIRED]
The repository name and commit ID, separated by a forward slash. For example, my-repo/265cfa0cf6af46153527f55d6503ec030551f57a.
dict
The Amazon S3 bucket and key that identify the location of the source bundle for this version.
Specify a source bundle in S3 or a commit in an AWS CodeCommit repository (with SourceBuildInformation), but not both. If neither SourceBundle nor SourceBuildInformation are provided, Elastic Beanstalk uses a sample application.
S3Bucket (string) --
The Amazon S3 bucket where the data is located.
S3Key (string) --
The Amazon S3 key where the data is located.
dict
ArtifactName (string) --
CodeBuildServiceRole (string) -- [REQUIRED]
ComputeType (string) --
Image (string) -- [REQUIRED]
TimeoutInMinutes (integer) --
boolean
Set to true to create an application with the specified name if it doesn't already exist.
boolean
Preprocesses and validates the environment manifest and configuration files in the source bundle. Validating configuration files can identify issues prior to deploying the application version to an environment.
dict
Response Syntax
{ 'ApplicationVersion': { 'ApplicationName': 'string', 'Description': 'string', 'VersionLabel': 'string', 'SourceBuildInformation': { 'SourceType': 'Git'|'Zip', 'SourceRepository': 'CodeCommit'|'S3', 'SourceLocation': 'string' }, 'BuildArn': 'string', 'SourceBundle': { 'S3Bucket': 'string', 'S3Key': 'string' }, 'DateCreated': datetime(2015, 1, 1), 'DateUpdated': datetime(2015, 1, 1), 'Status': 'Processed'|'Unprocessed'|'Failed'|'Processing'|'Building' } }
Response Structure
(dict) --
Result message wrapping a single description of an application version.
ApplicationVersion (dict) --
The ApplicationVersionDescription of the application version.
ApplicationName (string) --
The name of the application to which the application version belongs.
Description (string) --
The description of the application version.
VersionLabel (string) --
A unique identifier for the application version.
SourceBuildInformation (dict) --
If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the application version.
SourceType (string) --
The type of repository, such as Git.
SourceRepository (string) --
Location where the repository is stored, such as CodeCommit.
SourceLocation (string) --
The repository name and commit ID, separated by a forward slash. For example, my-repo/265cfa0cf6af46153527f55d6503ec030551f57a.
BuildArn (string) --
SourceBundle (dict) --
The storage location of the application version's source bundle in Amazon S3.
S3Bucket (string) --
The Amazon S3 bucket where the data is located.
S3Key (string) --
The Amazon S3 key where the data is located.
DateCreated (datetime) --
The creation date of the application version.
DateUpdated (datetime) --
The last modified date of the application version.
Status (string) --
The processing status of the application version.
{'ApplicationVersions': {'BuildArn': 'string', 'SourceBuildInformation': {'SourceRepository': {'S3'}, 'SourceType': {'Zip'}}, 'Status': {'Building'}}}
Retrieve a list of application versions.
See also: AWS API Documentation
Request Syntax
client.describe_application_versions( ApplicationName='string', VersionLabels=[ 'string', ], MaxRecords=123, NextToken='string' )
string
Specify an application name to show only application versions for that application.
list
Specify a version label to show a specific application version.
(string) --
integer
Specify a maximum number of application versions to paginate in the request.
string
Specify a next token to retrieve the next page in a paginated request.
dict
Response Syntax
{ 'ApplicationVersions': [ { 'ApplicationName': 'string', 'Description': 'string', 'VersionLabel': 'string', 'SourceBuildInformation': { 'SourceType': 'Git'|'Zip', 'SourceRepository': 'CodeCommit'|'S3', 'SourceLocation': 'string' }, 'BuildArn': 'string', 'SourceBundle': { 'S3Bucket': 'string', 'S3Key': 'string' }, 'DateCreated': datetime(2015, 1, 1), 'DateUpdated': datetime(2015, 1, 1), 'Status': 'Processed'|'Unprocessed'|'Failed'|'Processing'|'Building' }, ], 'NextToken': 'string' }
Response Structure
(dict) --
Result message wrapping a list of application version descriptions.
ApplicationVersions (list) --
List of ApplicationVersionDescription objects sorted in order of creation.
(dict) --
Describes the properties of an application version.
ApplicationName (string) --
The name of the application to which the application version belongs.
Description (string) --
The description of the application version.
VersionLabel (string) --
A unique identifier for the application version.
SourceBuildInformation (dict) --
If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the application version.
SourceType (string) --
The type of repository, such as Git.
SourceRepository (string) --
Location where the repository is stored, such as CodeCommit.
SourceLocation (string) --
The repository name and commit ID, separated by a forward slash. For example, my-repo/265cfa0cf6af46153527f55d6503ec030551f57a.
BuildArn (string) --
SourceBundle (dict) --
The storage location of the application version's source bundle in Amazon S3.
S3Bucket (string) --
The Amazon S3 bucket where the data is located.
S3Key (string) --
The Amazon S3 key where the data is located.
DateCreated (datetime) --
The creation date of the application version.
DateUpdated (datetime) --
The last modified date of the application version.
Status (string) --
The processing status of the application version.
NextToken (string) --
For a paginated request, the token that you can pass in a subsequent request to get the next page.
{'ApplicationVersion': {'BuildArn': 'string', 'SourceBuildInformation': {'SourceRepository': {'S3'}, 'SourceType': {'Zip'}}, 'Status': {'Building'}}}
Updates the specified application version to have the specified properties.
See also: AWS API Documentation
Request Syntax
client.update_application_version( ApplicationName='string', VersionLabel='string', Description='string' )
string
[REQUIRED]
The name of the application associated with this version.
If no application is found with this name, UpdateApplication returns an InvalidParameterValue error.
string
[REQUIRED]
The name of the version to update.
If no application version is found with this label, UpdateApplication returns an InvalidParameterValue error.
string
A new description for this version.
dict
Response Syntax
{ 'ApplicationVersion': { 'ApplicationName': 'string', 'Description': 'string', 'VersionLabel': 'string', 'SourceBuildInformation': { 'SourceType': 'Git'|'Zip', 'SourceRepository': 'CodeCommit'|'S3', 'SourceLocation': 'string' }, 'BuildArn': 'string', 'SourceBundle': { 'S3Bucket': 'string', 'S3Key': 'string' }, 'DateCreated': datetime(2015, 1, 1), 'DateUpdated': datetime(2015, 1, 1), 'Status': 'Processed'|'Unprocessed'|'Failed'|'Processing'|'Building' } }
Response Structure
(dict) --
Result message wrapping a single description of an application version.
ApplicationVersion (dict) --
The ApplicationVersionDescription of the application version.
ApplicationName (string) --
The name of the application to which the application version belongs.
Description (string) --
The description of the application version.
VersionLabel (string) --
A unique identifier for the application version.
SourceBuildInformation (dict) --
If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the application version.
SourceType (string) --
The type of repository, such as Git.
SourceRepository (string) --
Location where the repository is stored, such as CodeCommit.
SourceLocation (string) --
The repository name and commit ID, separated by a forward slash. For example, my-repo/265cfa0cf6af46153527f55d6503ec030551f57a.
BuildArn (string) --
SourceBundle (dict) --
The storage location of the application version's source bundle in Amazon S3.
S3Bucket (string) --
The Amazon S3 bucket where the data is located.
S3Key (string) --
The Amazon S3 key where the data is located.
DateCreated (datetime) --
The creation date of the application version.
DateUpdated (datetime) --
The last modified date of the application version.
Status (string) --
The processing status of the application version.