CodeDeploy / Client / batch_get_application_revisions

batch_get_application_revisions#

CodeDeploy.Client.batch_get_application_revisions(**kwargs)#

Gets information about one or more application revisions. The maximum number of application revisions that can be returned is 25.

See also: AWS API Documentation

Request Syntax

response = client.batch_get_application_revisions(
    applicationName='string',
    revisions=[
        {
            'revisionType': 'S3'|'GitHub'|'String'|'AppSpecContent',
            's3Location': {
                'bucket': 'string',
                'key': 'string',
                'bundleType': 'tar'|'tgz'|'zip'|'YAML'|'JSON',
                'version': 'string',
                'eTag': 'string'
            },
            'gitHubLocation': {
                'repository': 'string',
                'commitId': 'string'
            },
            'string': {
                'content': 'string',
                'sha256': 'string'
            },
            'appSpecContent': {
                'content': 'string',
                'sha256': 'string'
            }
        },
    ]
)
Parameters:
  • applicationName (string) –

    [REQUIRED]

    The name of an CodeDeploy application about which to get revision information.

  • revisions (list) –

    [REQUIRED]

    An array of RevisionLocation objects that specify information to get about the application revisions, including type and location. The maximum number of RevisionLocation objects you can specify is 25.

    • (dict) –

      Information about the location of an application revision.

      • revisionType (string) –

        The type of application revision:

        • S3: An application revision stored in Amazon S3.

        • GitHub: An application revision stored in GitHub (EC2/On-premises deployments only).

        • String: A YAML-formatted or JSON-formatted string (Lambda deployments only).

        • AppSpecContent: An AppSpecContent object that contains the contents of an AppSpec file for an Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML stored as a RawString.

      • s3Location (dict) –

        Information about the location of a revision stored in Amazon S3.

        • bucket (string) –

          The name of the Amazon S3 bucket where the application revision is stored.

        • key (string) –

          The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

        • bundleType (string) –

          The file type of the application revision. Must be one of the following:

          • tar: A tar archive file.

          • tgz: A compressed tar archive file.

          • zip: A zip archive file.

          • YAML: A YAML-formatted file.

          • JSON: A JSON-formatted file.

        • version (string) –

          A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.

          If the version is not specified, the system uses the most recent version by default.

        • eTag (string) –

          The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.

          If the ETag is not specified as an input parameter, ETag validation of the object is skipped.

      • gitHubLocation (dict) –

        Information about the location of application artifacts stored in GitHub.

        • repository (string) –

          The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.

          Specified as account/repository.

        • commitId (string) –

          The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.

      • string (dict) –

        Information about the location of an Lambda deployment revision stored as a RawString.

        • content (string) –

          The YAML-formatted or JSON-formatted revision string. It includes information about which Lambda function to update and optional Lambda functions that validate deployment lifecycle events.

        • sha256 (string) –

          The SHA256 hash value of the revision content.

      • appSpecContent (dict) –

        The content of an AppSpec file for an Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML and stored as a RawString.

        • content (string) –

          The YAML-formatted or JSON-formatted revision string.

          For an Lambda deployment, the content includes a Lambda function name, the alias for its original version, and the alias for its replacement version. The deployment shifts traffic from the original version of the Lambda function to the replacement version.

          For an Amazon ECS deployment, the content includes the task name, information about the load balancer that serves traffic to the container, and more.

          For both types of deployments, the content can specify Lambda functions that run at specified hooks, such as BeforeInstall, during a deployment.

        • sha256 (string) –

          The SHA256 hash value of the revision content.

Return type:

dict

Returns:

Response Syntax

{
    'applicationName': 'string',
    'errorMessage': 'string',
    'revisions': [
        {
            'revisionLocation': {
                'revisionType': 'S3'|'GitHub'|'String'|'AppSpecContent',
                's3Location': {
                    'bucket': 'string',
                    'key': 'string',
                    'bundleType': 'tar'|'tgz'|'zip'|'YAML'|'JSON',
                    'version': 'string',
                    'eTag': 'string'
                },
                'gitHubLocation': {
                    'repository': 'string',
                    'commitId': 'string'
                },
                'string': {
                    'content': 'string',
                    'sha256': 'string'
                },
                'appSpecContent': {
                    'content': 'string',
                    'sha256': 'string'
                }
            },
            'genericRevisionInfo': {
                'description': 'string',
                'deploymentGroups': [
                    'string',
                ],
                'firstUsedTime': datetime(2015, 1, 1),
                'lastUsedTime': datetime(2015, 1, 1),
                'registerTime': datetime(2015, 1, 1)
            }
        },
    ]
}

Response Structure

  • (dict) –

    Represents the output of a BatchGetApplicationRevisions operation.

    • applicationName (string) –

      The name of the application that corresponds to the revisions.

    • errorMessage (string) –

      Information about errors that might have occurred during the API call.

    • revisions (list) –

      Additional information about the revisions, including the type and location.

      • (dict) –

        Information about an application revision.

        • revisionLocation (dict) –

          Information about the location and type of an application revision.

          • revisionType (string) –

            The type of application revision:

            • S3: An application revision stored in Amazon S3.

            • GitHub: An application revision stored in GitHub (EC2/On-premises deployments only).

            • String: A YAML-formatted or JSON-formatted string (Lambda deployments only).

            • AppSpecContent: An AppSpecContent object that contains the contents of an AppSpec file for an Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML stored as a RawString.

          • s3Location (dict) –

            Information about the location of a revision stored in Amazon S3.

            • bucket (string) –

              The name of the Amazon S3 bucket where the application revision is stored.

            • key (string) –

              The name of the Amazon S3 object that represents the bundled artifacts for the application revision.

            • bundleType (string) –

              The file type of the application revision. Must be one of the following:

              • tar: A tar archive file.

              • tgz: A compressed tar archive file.

              • zip: A zip archive file.

              • YAML: A YAML-formatted file.

              • JSON: A JSON-formatted file.

            • version (string) –

              A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.

              If the version is not specified, the system uses the most recent version by default.

            • eTag (string) –

              The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.

              If the ETag is not specified as an input parameter, ETag validation of the object is skipped.

          • gitHubLocation (dict) –

            Information about the location of application artifacts stored in GitHub.

            • repository (string) –

              The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.

              Specified as account/repository.

            • commitId (string) –

              The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.

          • string (dict) –

            Information about the location of an Lambda deployment revision stored as a RawString.

            • content (string) –

              The YAML-formatted or JSON-formatted revision string. It includes information about which Lambda function to update and optional Lambda functions that validate deployment lifecycle events.

            • sha256 (string) –

              The SHA256 hash value of the revision content.

          • appSpecContent (dict) –

            The content of an AppSpec file for an Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML and stored as a RawString.

            • content (string) –

              The YAML-formatted or JSON-formatted revision string.

              For an Lambda deployment, the content includes a Lambda function name, the alias for its original version, and the alias for its replacement version. The deployment shifts traffic from the original version of the Lambda function to the replacement version.

              For an Amazon ECS deployment, the content includes the task name, information about the load balancer that serves traffic to the container, and more.

              For both types of deployments, the content can specify Lambda functions that run at specified hooks, such as BeforeInstall, during a deployment.

            • sha256 (string) –

              The SHA256 hash value of the revision content.

        • genericRevisionInfo (dict) –

          Information about an application revision, including usage details and associated deployment groups.

          • description (string) –

            A comment about the revision.

          • deploymentGroups (list) –

            The deployment groups for which this is the current target revision.

            • (string) –

          • firstUsedTime (datetime) –

            When the revision was first used by CodeDeploy.

          • lastUsedTime (datetime) –

            When the revision was last used by CodeDeploy.

          • registerTime (datetime) –

            When the revision was registered with CodeDeploy.

Exceptions

  • CodeDeploy.Client.exceptions.ApplicationDoesNotExistException

  • CodeDeploy.Client.exceptions.ApplicationNameRequiredException

  • CodeDeploy.Client.exceptions.InvalidApplicationNameException

  • CodeDeploy.Client.exceptions.RevisionRequiredException

  • CodeDeploy.Client.exceptions.InvalidRevisionException

  • CodeDeploy.Client.exceptions.BatchLimitExceededException