CodeArtifact

2020/06/10 - CodeArtifact - 31 new api methods

Changes  Added support for AWS CodeArtifact.

ListDomains (new) Link ¶

Returns a list of DomainSummary objects for all domains owned by the AWS account that makes this call. Each returned DomainSummary object contains information about a domain.

See also: AWS API Documentation

Request Syntax

client.list_domains(
    maxResults=123,
    nextToken='string'
)
type maxResults

integer

param maxResults

The maximum number of results to return per page.

type nextToken

string

param nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

rtype

dict

returns

Response Syntax

{
    'domains': [
        {
            'name': 'string',
            'owner': 'string',
            'arn': 'string',
            'status': 'Active'|'Deleted',
            'createdTime': datetime(2015, 1, 1),
            'encryptionKey': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • domains (list) --

      The returned list of DomainSummary objects.

      • (dict) --

        Information about a domain, including its name, Amazon Resource Name (ARN), and status. The ListDomains operation returns a list of DomainSummary objects.

        • name (string) --

          The name of the domain.

        • owner (string) --

          The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

        • arn (string) --

          The ARN of the domain.

        • status (string) --

          A string that contains the status of the domain. The valid values are:

          • Active

          • Deleted

        • createdTime (datetime) --

          A timestamp that contains the date and time the domain was created.

        • encryptionKey (string) --

          The key used to encrypt the domain.

    • nextToken (string) --

      The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

UpdateRepository (new) Link ¶

Update the properties of a repository.

See also: AWS API Documentation

Request Syntax

client.update_repository(
    domain='string',
    domainOwner='string',
    repository='string',
    description='string',
    upstreams=[
        {
            'repositoryName': 'string'
        },
    ]
)
type domain

string

param domain

[REQUIRED]

The name of the domain associated with the repository to update.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository to update.

type description

string

param description

An updated repository description.

type upstreams

list

param upstreams

A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.

  • (dict) --

    Information about an upstream repository. A list of UpstreamRepository objects is an input parameter to CreateRepository and UpdateRepository.

    • repositoryName (string) -- [REQUIRED]

      The name of an upstream repository.

rtype

dict

returns

Response Syntax

{
    'repository': {
        'name': 'string',
        'administratorAccount': 'string',
        'domainName': 'string',
        'domainOwner': 'string',
        'arn': 'string',
        'description': 'string',
        'upstreams': [
            {
                'repositoryName': 'string'
            },
        ],
        'externalConnections': [
            {
                'externalConnectionName': 'string',
                'packageFormat': 'npm'|'pypi'|'maven',
                'status': 'Available'
            },
        ]
    }
}

Response Structure

  • (dict) --

    • repository (dict) --

      The updated repository.

      • name (string) --

        The name of the repository.

      • administratorAccount (string) --

        The 12-digit account number of the AWS account that manages the repository.

      • domainName (string) --

        The name of the domain that contains the repository.

      • domainOwner (string) --

        The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces.

      • arn (string) --

        The Amazon Resource Name (ARN) of the repository.

      • description (string) --

        A text description of the repository.

      • upstreams (list) --

        A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.

        • (dict) --

          Information about an upstream repository.

          • repositoryName (string) --

            The name of an upstream repository.

      • externalConnections (list) --

        An array of external connections associated with the repository.

        • (dict) --

          Contains information about the external connection of a repository.

          • externalConnectionName (string) --

            The name of the external connection associated with a repository.

          • packageFormat (string) --

            The package format associated with a repository's external connection. The valid package formats are:

            • npm : A Node Package Manager (npm) package.

            • pypi : A Python Package Index (PyPI) package.

            • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

          • status (string) --

            The status of the external connection of a repository. There is one valid value, Available .

DisposePackageVersions (new) Link ¶

Deletes the assets in package versions and sets the package versions' status to Disposed . A disposed package version cannot be restored in your repository because its assets are deleted.

To view all disposed package versions in a repository, use ListackageVersions and set the status parameter to Disposed .

To view information about a disposed package version, use ListPackageVersions and set the status parameter to Disposed .

See also: AWS API Documentation

Request Syntax

client.dispose_package_versions(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    versions=[
        'string',
    ],
    versionRevisions={
        'string': 'string'
    },
    expectedStatus='Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository you want to dispose.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository that contains the package versions you want to dispose.

type format

string

param format

[REQUIRED]

A format that specifies the type of package versions you want to dispose. The valid values are:

  • npm

  • pypi

  • maven

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the package with the versions you want to dispose.

type versions

list

param versions

[REQUIRED]

The versions of the package you want to dispose.

  • (string) --

type versionRevisions

dict

param versionRevisions

The revisions of the package versions you want to dispose.

  • (string) --

    • (string) --

type expectedStatus

string

param expectedStatus

The expected status of the package version to dispose. Valid values are:

  • Published

  • Unfinished

  • Unlisted

  • Archived

  • Disposed

rtype

dict

returns

Response Syntax

{
    'successfulVersions': {
        'string': {
            'revision': 'string',
            'status': 'Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted'
        }
    },
    'failedVersions': {
        'string': {
            'errorCode': 'ALREADY_EXISTS'|'MISMATCHED_REVISION'|'MISMATCHED_STATUS'|'NOT_ALLOWED'|'NOT_FOUND'|'SKIPPED',
            'errorMessage': 'string'
        }
    }
}

Response Structure

  • (dict) --

    • successfulVersions (dict) --

      A list of the package versions that were successfully disposed.

      • (string) --

        • (dict) --

          Contains the revision and status of a package version.

          • revision (string) --

            The revision of a package version.

          • status (string) --

            The status of a package version. Valid statuses are:

            • Published

            • Unfinished

            • Unlisted

            • Archived

            • Disposed

    • failedVersions (dict) --

      A PackageVersionError object that contains a map of errors codes for the disposed package versions that failed. The possible error codes are:

      • ALREADY_EXISTS

      • MISMATCHED_REVISION

      • MISMATCHED_STATUS

      • NOT_ALLOWED

      • NOT_FOUND

      • SKIPPED

      • (string) --

        • (dict) --

          An error associated with package.

          • errorCode (string) --

            The error code associated with the error. Valid error codes are:

            • ALREADY_EXISTS

            • MISMATCHED_REVISION

            • MISMATCHED_STATUS

            • NOT_ALLOWED

            • NOT_FOUND

            • SKIPPED

          • errorMessage (string) --

            The error message associated with the error.

GetPackageVersionReadme (new) Link ¶

Gets the readme file or descriptive text for a package version. For packages that do not contain a readme file, CodeArtifact extracts a description from a metadata file. For example, from the <description> element in the pom.xml file of a Maven package.

The returned text might contain formatting. For example, it might contain formatting for Markdown or reStructuredText.

See also: AWS API Documentation

Request Syntax

client.get_package_version_readme(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    packageVersion='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository that contains the package version with the requested readme file.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The repository that contains the package with the requested readme file.

type format

string

param format

[REQUIRED]

A format that specifies the type of the package version with the requested readme file. The valid values are:

  • npm

  • pypi

  • maven

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the package version that contains the requested readme file.

type packageVersion

string

param packageVersion

[REQUIRED]

A string that contains the package version (for example, 3.5.2 ).

rtype

dict

returns

Response Syntax

{
    'format': 'npm'|'pypi'|'maven',
    'namespace': 'string',
    'package': 'string',
    'version': 'string',
    'versionRevision': 'string',
    'readme': 'string'
}

Response Structure

  • (dict) --

    • format (string) --

      The format of the package with the requested readme file. Valid format types are:

      • npm

      • pypi

      • maven

    • namespace (string) --

      The namespace of the package. The package component that specifies its namespace depends on its type. For example:

      • The namespace of a Maven package is its groupId .

      • The namespace of an npm package is its scope .

      • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

    • package (string) --

      The name of the package that contains the returned readme file.

    • version (string) --

      The version of the package with the requested readme file.

    • versionRevision (string) --

      The current revision associated with the package version.

    • readme (string) --

      The text of the returned readme file.

GetRepositoryEndpoint (new) Link ¶

Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:

  • npm

  • pypi

  • maven

See also: AWS API Documentation

Request Syntax

client.get_repository_endpoint(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository.

type format

string

param format

[REQUIRED]

Returns which endpoint of a repository to return. A repository has one endpoint for each package format:

  • npm

  • pypi

  • maven

rtype

dict

returns

Response Syntax

{
    'repositoryEndpoint': 'string'
}

Response Structure

  • (dict) --

    • repositoryEndpoint (string) --

      A string that specifies the URL of the returned endpoint.

AssociateExternalConnection (new) Link ¶

Adds an existing external connection to a repository. One external connection is allowed per repository.

Note

A repository can have one or more upstream repositories, or an external connection.

See also: AWS API Documentation

Request Syntax

client.associate_external_connection(
    domain='string',
    domainOwner='string',
    repository='string',
    externalConnection='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository to which the external connection is added.

type externalConnection

string

param externalConnection

[REQUIRED]

The name of the external connection to add to the repository. The following values are supported:

  • public:npmjs - for the npm public repository.

  • public:pypi - for the Python Package Index.

  • public:maven-central - for Maven Central.

  • public:maven-googleandroid - for the Google Android repository.

  • public:maven-gradleplugins - for the Gradle plugins repository.

  • public:maven-commonsware - for the CommonsWare Android repository.

rtype

dict

returns

Response Syntax

{
    'repository': {
        'name': 'string',
        'administratorAccount': 'string',
        'domainName': 'string',
        'domainOwner': 'string',
        'arn': 'string',
        'description': 'string',
        'upstreams': [
            {
                'repositoryName': 'string'
            },
        ],
        'externalConnections': [
            {
                'externalConnectionName': 'string',
                'packageFormat': 'npm'|'pypi'|'maven',
                'status': 'Available'
            },
        ]
    }
}

Response Structure

  • (dict) --

    • repository (dict) --

      Information about the connected repository after processing the request.

      • name (string) --

        The name of the repository.

      • administratorAccount (string) --

        The 12-digit account number of the AWS account that manages the repository.

      • domainName (string) --

        The name of the domain that contains the repository.

      • domainOwner (string) --

        The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces.

      • arn (string) --

        The Amazon Resource Name (ARN) of the repository.

      • description (string) --

        A text description of the repository.

      • upstreams (list) --

        A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.

        • (dict) --

          Information about an upstream repository.

          • repositoryName (string) --

            The name of an upstream repository.

      • externalConnections (list) --

        An array of external connections associated with the repository.

        • (dict) --

          Contains information about the external connection of a repository.

          • externalConnectionName (string) --

            The name of the external connection associated with a repository.

          • packageFormat (string) --

            The package format associated with a repository's external connection. The valid package formats are:

            • npm : A Node Package Manager (npm) package.

            • pypi : A Python Package Index (PyPI) package.

            • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

          • status (string) --

            The status of the external connection of a repository. There is one valid value, Available .

DescribeRepository (new) Link ¶

Returns a RepositoryDescription object that contains detailed information about the requested repository.

See also: AWS API Documentation

Request Syntax

client.describe_repository(
    domain='string',
    domainOwner='string',
    repository='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository to describe.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

A string that specifies the name of the requested repository.

rtype

dict

returns

Response Syntax

{
    'repository': {
        'name': 'string',
        'administratorAccount': 'string',
        'domainName': 'string',
        'domainOwner': 'string',
        'arn': 'string',
        'description': 'string',
        'upstreams': [
            {
                'repositoryName': 'string'
            },
        ],
        'externalConnections': [
            {
                'externalConnectionName': 'string',
                'packageFormat': 'npm'|'pypi'|'maven',
                'status': 'Available'
            },
        ]
    }
}

Response Structure

  • (dict) --

    • repository (dict) --

      A RepositoryDescription object that contains the requested repository information.

      • name (string) --

        The name of the repository.

      • administratorAccount (string) --

        The 12-digit account number of the AWS account that manages the repository.

      • domainName (string) --

        The name of the domain that contains the repository.

      • domainOwner (string) --

        The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces.

      • arn (string) --

        The Amazon Resource Name (ARN) of the repository.

      • description (string) --

        A text description of the repository.

      • upstreams (list) --

        A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.

        • (dict) --

          Information about an upstream repository.

          • repositoryName (string) --

            The name of an upstream repository.

      • externalConnections (list) --

        An array of external connections associated with the repository.

        • (dict) --

          Contains information about the external connection of a repository.

          • externalConnectionName (string) --

            The name of the external connection associated with a repository.

          • packageFormat (string) --

            The package format associated with a repository's external connection. The valid package formats are:

            • npm : A Node Package Manager (npm) package.

            • pypi : A Python Package Index (PyPI) package.

            • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

          • status (string) --

            The status of the external connection of a repository. There is one valid value, Available .

CopyPackageVersions (new) Link ¶

Copies package versions from one repository to another repository in the same domain.

Note

You must specify versions or versionRevisions . You cannot specify both.

See also: AWS API Documentation

Request Syntax

client.copy_package_versions(
    domain='string',
    domainOwner='string',
    sourceRepository='string',
    destinationRepository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    versions=[
        'string',
    ],
    versionRevisions={
        'string': 'string'
    },
    allowOverwrite=True|False,
    includeFromUpstream=True|False
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the source and destination repositories.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type sourceRepository

string

param sourceRepository

[REQUIRED]

The name of the repository that contains the package versions to copy.

type destinationRepository

string

param destinationRepository

[REQUIRED]

The name of the repository into which package versions are copied.

type format

string

param format

[REQUIRED]

The format of the package that is copied. The valid package types are:

  • npm : A Node Package Manager (npm) package.

  • pypi : A Python Package Index (PyPI) package.

  • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the package that is copied.

type versions

list

param versions

The versions of the package to copy.

Note

You must specify versions or versionRevisions . You cannot specify both.

  • (string) --

type versionRevisions

dict

param versionRevisions

A list of key-value pairs. The keys are package versions and the values are package version revisions. A CopyPackageVersion operation succeeds if the specified versions in the source repository match the specified package version revision.

Note

You must specify versions or versionRevisions . You cannot specify both.

  • (string) --

    • (string) --

type allowOverwrite

boolean

param allowOverwrite

Set to true to overwrite a package version that already exists in the destination repository. If set to false and the package version already exists in the destination repository, the package version is returned in the failedVersions field of the response with an ALREADY_EXISTS error code.

type includeFromUpstream

boolean

param includeFromUpstream

Set to true to copy packages from repositories that are upstream from the source repository to the destination repository. The default setting is false. For more information, see Working with upstream repositories.

rtype

dict

returns

Response Syntax

{
    'successfulVersions': {
        'string': {
            'revision': 'string',
            'status': 'Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted'
        }
    },
    'failedVersions': {
        'string': {
            'errorCode': 'ALREADY_EXISTS'|'MISMATCHED_REVISION'|'MISMATCHED_STATUS'|'NOT_ALLOWED'|'NOT_FOUND'|'SKIPPED',
            'errorMessage': 'string'
        }
    }
}

Response Structure

  • (dict) --

    • successfulVersions (dict) --

      A list of the package versions that were successfully copied to your repository.

      • (string) --

        • (dict) --

          Contains the revision and status of a package version.

          • revision (string) --

            The revision of a package version.

          • status (string) --

            The status of a package version. Valid statuses are:

            • Published

            • Unfinished

            • Unlisted

            • Archived

            • Disposed

    • failedVersions (dict) --

      A map of package versions that failed to copy and their error codes. The possible error codes are in the PackageVersionError data type. They are:

      • ALREADY_EXISTS

      • MISMATCHED_REVISION

      • MISMATCHED_STATUS

      • NOT_ALLOWED

      • NOT_FOUND

      • SKIPPED

      • (string) --

        • (dict) --

          An error associated with package.

          • errorCode (string) --

            The error code associated with the error. Valid error codes are:

            • ALREADY_EXISTS

            • MISMATCHED_REVISION

            • MISMATCHED_STATUS

            • NOT_ALLOWED

            • NOT_FOUND

            • SKIPPED

          • errorMessage (string) --

            The error message associated with the error.

DeleteRepositoryPermissionsPolicy (new) Link ¶

Deletes the resource policy that is set on a repository. After a resource policy is deleted, the permissions allowed and denied by the deleted policy are removed. The effect of deleting a resource policy might not be immediate.

Warning

Use DeleteRepositoryPermissionsPolicy with caution. After a policy is deleted, AWS users, roles, and accounts lose permissions to perform the repository actions granted by the deleted policy.

See also: AWS API Documentation

Request Syntax

client.delete_repository_permissions_policy(
    domain='string',
    domainOwner='string',
    repository='string',
    policyRevision='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository associated with the resource policy to be deleted.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository that is associated with the resource policy to be deleted

type policyRevision

string

param policyRevision

The revision of the repository's resource policy to be deleted. This revision is used for optimistic locking, which prevents others from accidentally overwriting your changes to the repository's resource policy.

rtype

dict

returns

Response Syntax

{
    'policy': {
        'resourceArn': 'string',
        'revision': 'string',
        'document': 'string'
    }
}

Response Structure

  • (dict) --

    • policy (dict) --

      Information about the deleted policy after processing the request.

      • resourceArn (string) --

        The ARN of the resource associated with the resource policy

      • revision (string) --

        The current revision of the resource policy.

      • document (string) --

        The resource policy formatted in JSON.

ListPackageVersions (new) Link ¶

Returns a list of PackageVersionSummary objects for package versions in a repository that match the request parameters.

See also: AWS API Documentation

Request Syntax

client.list_package_versions(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    status='Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted',
    sortBy='PUBLISHED_TIME',
    maxResults=123,
    nextToken='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository that contains the returned package versions.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository that contains the package.

type format

string

param format

[REQUIRED]

The format of the returned packages. The valid package types are:

  • npm : A Node Package Manager (npm) package.

  • pypi : A Python Package Index (PyPI) package.

  • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the package for which you want to return a list of package versions.

type status

string

param status

A string that specifies the status of the package versions to include in the returned list. It can be one of the following:

  • Published

  • Unfinished

  • Unlisted

  • Archived

  • Disposed

type sortBy

string

param sortBy

How to sort the returned list of package versions.

type maxResults

integer

param maxResults

The maximum number of results to return per page.

type nextToken

string

param nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

rtype

dict

returns

Response Syntax

{
    'defaultDisplayVersion': 'string',
    'format': 'npm'|'pypi'|'maven',
    'namespace': 'string',
    'package': 'string',
    'versions': [
        {
            'version': 'string',
            'revision': 'string',
            'status': 'Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • defaultDisplayVersion (string) --

      The default package version to display. This depends on the package format:

      • For Maven and PyPI packages, it's the most recently published package version.

      • For npm packages, it's the version referenced by the latest tag. If the latest tag is not set, it's the most recently published package version.

    • format (string) --

      A format of the package. Valid package format values are:

      • npm

      • pypi

      • maven

    • namespace (string) --

      The namespace of the package. The package component that specifies its namespace depends on its type. For example:

      • The namespace of a Maven package is its groupId .

      • The namespace of an npm package is its scope .

      • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

    • package (string) --

      The name of the package.

    • versions (list) --

      The returned list of PackageVersionSummary objects.

      • (dict) --

        Details about a package version, including its status, version, and revision. The ListPackageVersions operation returns a list of PackageVersionSummary objects.

        • version (string) --

          Information about a package version.

        • revision (string) --

          The revision associated with a package version.

        • status (string) --

          A string that contains the status of the package version. It can be one of the following:

          • Published

          • Unfinished

          • Unlisted

          • Archived

          • Disposed

    • nextToken (string) --

      If there are additional results, this is the token for the next set of results.

DeleteDomainPermissionsPolicy (new) Link ¶

Deletes the resource policy set on a domain.

See also: AWS API Documentation

Request Syntax

client.delete_domain_permissions_policy(
    domain='string',
    domainOwner='string',
    policyRevision='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain associated with the resource policy to be deleted.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type policyRevision

string

param policyRevision

The current revision of the resource policy to be deleted. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.

rtype

dict

returns

Response Syntax

{
    'policy': {
        'resourceArn': 'string',
        'revision': 'string',
        'document': 'string'
    }
}

Response Structure

  • (dict) --

    • policy (dict) --

      Information about the deleted resource policy after processing the request.

      • resourceArn (string) --

        The ARN of the resource associated with the resource policy

      • revision (string) --

        The current revision of the resource policy.

      • document (string) --

        The resource policy formatted in JSON.

GetPackageVersionAsset (new) Link ¶

Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAsset to download a JAR file, a POM file, or any other assets in the package version.

See also: AWS API Documentation

Request Syntax

client.get_package_version_asset(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    packageVersion='string',
    asset='string',
    packageVersionRevision='string'
)
type domain

string

param domain

[REQUIRED]

The domain that contains the repository that contains the package version with the requested asset.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The repository that contains the package version with the requested asset.

type format

string

param format

[REQUIRED]

A format that specifies the type of the package version with the requested asset file. The valid values are:

  • npm

  • pypi

  • maven

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the package that contains the requested asset.

type packageVersion

string

param packageVersion

[REQUIRED]

A string that contains the package version (for example, 3.5.2 ).

type asset

string

param asset

[REQUIRED]

The name of the requested asset.

type packageVersionRevision

string

param packageVersionRevision

The name of the package version revision that contains the requested asset.

rtype

dict

returns

Response Syntax

{
    'asset': StreamingBody(),
    'assetName': 'string',
    'packageVersion': 'string',
    'packageVersionRevision': 'string'
}

Response Structure

  • (dict) --

    • asset (:class:`.StreamingBody`) --

      The binary file, or asset, that is downloaded.

    • assetName (string) --

      The name of the asset that is downloaded.

    • packageVersion (string) --

      A string that contains the package version (for example, 3.5.2 ).

    • packageVersionRevision (string) --

      The name of the package version revision that contains the downloaded asset.

DescribeDomain (new) Link ¶

Returns a DomainDescription object that contains information about the requested domain.

See also: AWS API Documentation

Request Syntax

client.describe_domain(
    domain='string',
    domainOwner='string'
)
type domain

string

param domain

[REQUIRED]

A string that specifies the name of the requested domain.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

rtype

dict

returns

Response Syntax

{
    'domain': {
        'name': 'string',
        'owner': 'string',
        'arn': 'string',
        'status': 'Active'|'Deleted',
        'createdTime': datetime(2015, 1, 1),
        'encryptionKey': 'string',
        'repositoryCount': 123,
        'assetSizeBytes': 123
    }
}

Response Structure

  • (dict) --

    • domain (dict) --

      Information about a domain. A domain is a container for repositories. When you create a domain, it is empty until you add one or more repositories.

      • name (string) --

        The name of the domain.

      • owner (string) --

        The AWS account ID that owns the domain.

      • arn (string) --

        The Amazon Resource Name (ARN) of the domain.

      • status (string) --

        The current status of a domain. The valid values are

        • Active

        • Deleted

      • createdTime (datetime) --

        A timestamp that represents the date and time the domain was created.

      • encryptionKey (string) --

        The ARN of an AWS Key Management Service (AWS KMS) key associated with a domain.

      • repositoryCount (integer) --

        The number of repositories in the domain.

      • assetSizeBytes (integer) --

        The total size of all assets in the domain.

GetDomainPermissionsPolicy (new) Link ¶

Returns the resource policy attached to the specified domain.

Note

The policy is a resource-based policy, not an identity-based policy. For more information, see Identity-based policies and resource-based policies in the AWS Identity and Access Management User Guide .

See also: AWS API Documentation

Request Syntax

client.get_domain_permissions_policy(
    domain='string',
    domainOwner='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain to which the resource policy is attached.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

rtype

dict

returns

Response Syntax

{
    'policy': {
        'resourceArn': 'string',
        'revision': 'string',
        'document': 'string'
    }
}

Response Structure

  • (dict) --

    • policy (dict) --

      The returned resource policy.

      • resourceArn (string) --

        The ARN of the resource associated with the resource policy

      • revision (string) --

        The current revision of the resource policy.

      • document (string) --

        The resource policy formatted in JSON.

DescribePackageVersion (new) Link ¶

Returns a PackageVersionDescription object that contains information about the requested package version.

See also: AWS API Documentation

Request Syntax

client.describe_package_version(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    packageVersion='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository that contains the package version.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository that contains the package version.

type format

string

param format

[REQUIRED]

A format that specifies the type of the requested package version. The valid values are:

  • npm

  • pypi

  • maven

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the requested package version.

type packageVersion

string

param packageVersion

[REQUIRED]

A string that contains the package version (for example, 3.5.2 ).

rtype

dict

returns

Response Syntax

{
    'packageVersion': {
        'format': 'npm'|'pypi'|'maven',
        'namespace': 'string',
        'packageName': 'string',
        'displayName': 'string',
        'version': 'string',
        'summary': 'string',
        'homePage': 'string',
        'sourceCodeRepository': 'string',
        'publishedTime': datetime(2015, 1, 1),
        'licenses': [
            {
                'name': 'string',
                'url': 'string'
            },
        ],
        'revision': 'string',
        'status': 'Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted'
    }
}

Response Structure

  • (dict) --

    • packageVersion (dict) --

      A PackageVersionDescription object that contains information about the requested package version.

      • format (string) --

        The format of the package version. The valid package formats are:

        • npm : A Node Package Manager (npm) package.

        • pypi : A Python Package Index (PyPI) package.

        • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

      • namespace (string) --

        The namespace of the package. The package component that specifies its namespace depends on its type. For example:

        • The namespace of a Maven package is its groupId .

        • The namespace of an npm package is its scope .

        • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

      • packageName (string) --

        The name of the requested package.

      • displayName (string) --

        The name of the package that is displayed. The displayName varies depending on the package version's format. For example, if an npm package is named ui , is in the namespace vue , and has the format npm , then the displayName is @vue/ui .

      • version (string) --

        The version of the package.

      • summary (string) --

        A summary of the package version. The summary is extracted from the package. The information in and detail level of the summary depends on the package version's format.

      • homePage (string) --

        The homepage associated with the package.

      • sourceCodeRepository (string) --

        The repository for the source code in the package version, or the source code used to build it.

      • publishedTime (datetime) --

        A timestamp that contains the date and time the package version was published.

      • licenses (list) --

        Information about licenses associated with the package version.

        • (dict) --

          Details of the license data.

          • name (string) --

            Name of the license.

          • url (string) --

            The URL for license data.

      • revision (string) --

        The revision of the package version.

      • status (string) --

        A string that contains the status of the package version. It can be one of the following:

        • Published

        • Unfinished

        • Unlisted

        • Archived

        • Disposed

ListPackageVersionAssets (new) Link ¶

Returns a list of AssetSummary objects for assets in a package version.

See also: AWS API Documentation

Request Syntax

client.list_package_version_assets(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    packageVersion='string',
    maxResults=123,
    nextToken='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository associated with the package version assets.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository that contains the package that contains the returned package version assets.

type format

string

param format

[REQUIRED]

The format of the package that contains the returned package version assets. The valid package types are:

  • npm : A Node Package Manager (npm) package.

  • pypi : A Python Package Index (PyPI) package.

  • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the package that contains the returned package version assets.

type packageVersion

string

param packageVersion

[REQUIRED]

A string that contains the package version (for example, 3.5.2 ).

type maxResults

integer

param maxResults

The maximum number of results to return per page.

type nextToken

string

param nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

rtype

dict

returns

Response Syntax

{
    'format': 'npm'|'pypi'|'maven',
    'namespace': 'string',
    'package': 'string',
    'version': 'string',
    'versionRevision': 'string',
    'nextToken': 'string',
    'assets': [
        {
            'name': 'string',
            'size': 123,
            'hashes': {
                'string': 'string'
            }
        },
    ]
}

Response Structure

  • (dict) --

    • format (string) --

      The format of the package that contains the returned package version assets.

    • namespace (string) --

      The namespace of the package. The package component that specifies its namespace depends on its type. For example:

      • The namespace of a Maven package is its groupId .

      • The namespace of an npm package is its scope .

      • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

    • package (string) --

      The name of the package that contains the returned package version assets.

    • version (string) --

      The version of the package associated with the returned assets.

    • versionRevision (string) --

      The current revision associated with the package version.

    • nextToken (string) --

      If there are additional results, this is the token for the next set of results.

    • assets (list) --

      The returned list of AssetSummary objects.

      • (dict) --

        Contains details about a package version asset.

        • name (string) --

          The name of the asset.

        • size (integer) --

          The size of the asset.

        • hashes (dict) --

          The hashes of the asset.

          • (string) --

            • (string) --

ListRepositoriesInDomain (new) Link ¶

Returns a list of RepositorySummary objects. Each RepositorySummary contains information about a repository in the specified domain and that matches the input parameters.

See also: AWS API Documentation

Request Syntax

client.list_repositories_in_domain(
    domain='string',
    domainOwner='string',
    administratorAccount='string',
    repositoryPrefix='string',
    maxResults=123,
    nextToken='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the returned list of repositories.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type administratorAccount

string

param administratorAccount

Filter the list of repositories to only include those that are managed by the AWS account ID.

type repositoryPrefix

string

param repositoryPrefix

A prefix used to filter returned repositories. Only repositories with names that start with repositoryPrefix are returned.

type maxResults

integer

param maxResults

The maximum number of results to return per page.

type nextToken

string

param nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

rtype

dict

returns

Response Syntax

{
    'repositories': [
        {
            'name': 'string',
            'administratorAccount': 'string',
            'domainName': 'string',
            'domainOwner': 'string',
            'arn': 'string',
            'description': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • repositories (list) --

      The returned list of repositories.

      • (dict) --

        Details about a repository, including its Amazon Resource Name (ARN), description, and domain information. The ListRepositories operation returns a list of RepositorySummary objects.

        • name (string) --

          The name of the repository.

        • administratorAccount (string) --

          The AWS account ID that manages the repository.

        • domainName (string) --

          The name of the domain that contains the repository.

        • domainOwner (string) --

          The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

        • arn (string) --

          The ARN of the repository.

        • description (string) --

          The description of the repository.

    • nextToken (string) --

      If there are additional results, this is the token for the next set of results.

DeleteRepository (new) Link ¶

Deletes a repository.

See also: AWS API Documentation

Request Syntax

client.delete_repository(
    domain='string',
    domainOwner='string',
    repository='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository to delete.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository to delete.

rtype

dict

returns

Response Syntax

{
    'repository': {
        'name': 'string',
        'administratorAccount': 'string',
        'domainName': 'string',
        'domainOwner': 'string',
        'arn': 'string',
        'description': 'string',
        'upstreams': [
            {
                'repositoryName': 'string'
            },
        ],
        'externalConnections': [
            {
                'externalConnectionName': 'string',
                'packageFormat': 'npm'|'pypi'|'maven',
                'status': 'Available'
            },
        ]
    }
}

Response Structure

  • (dict) --

    • repository (dict) --

      Information about the deleted repository after processing the request.

      • name (string) --

        The name of the repository.

      • administratorAccount (string) --

        The 12-digit account number of the AWS account that manages the repository.

      • domainName (string) --

        The name of the domain that contains the repository.

      • domainOwner (string) --

        The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces.

      • arn (string) --

        The Amazon Resource Name (ARN) of the repository.

      • description (string) --

        A text description of the repository.

      • upstreams (list) --

        A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.

        • (dict) --

          Information about an upstream repository.

          • repositoryName (string) --

            The name of an upstream repository.

      • externalConnections (list) --

        An array of external connections associated with the repository.

        • (dict) --

          Contains information about the external connection of a repository.

          • externalConnectionName (string) --

            The name of the external connection associated with a repository.

          • packageFormat (string) --

            The package format associated with a repository's external connection. The valid package formats are:

            • npm : A Node Package Manager (npm) package.

            • pypi : A Python Package Index (PyPI) package.

            • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

          • status (string) --

            The status of the external connection of a repository. There is one valid value, Available .

PutDomainPermissionsPolicy (new) Link ¶

Sets a resource policy on a domain that specifies permissions to access it.

See also: AWS API Documentation

Request Syntax

client.put_domain_permissions_policy(
    domain='string',
    domainOwner='string',
    policyRevision='string',
    policyDocument='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain on which to set the resource policy.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type policyRevision

string

param policyRevision

The current revision of the resource policy to be set. This revision is used for optimistic locking, which prevents others from overwriting your changes to the domain's resource policy.

type policyDocument

string

param policyDocument

[REQUIRED]

A valid displayable JSON Aspen policy string to be set as the access control resource policy on the provided domain.

rtype

dict

returns

Response Syntax

{
    'policy': {
        'resourceArn': 'string',
        'revision': 'string',
        'document': 'string'
    }
}

Response Structure

  • (dict) --

    • policy (dict) --

      The resource policy that was set after processing the request.

      • resourceArn (string) --

        The ARN of the resource associated with the resource policy

      • revision (string) --

        The current revision of the resource policy.

      • document (string) --

        The resource policy formatted in JSON.

DeleteDomain (new) Link ¶

Deletes a domain. You cannot delete a domain that contains repositories. If you want to delete a domain with repositories, first delete its repositories.

See also: AWS API Documentation

Request Syntax

client.delete_domain(
    domain='string',
    domainOwner='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain to delete.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

rtype

dict

returns

Response Syntax

{
    'domain': {
        'name': 'string',
        'owner': 'string',
        'arn': 'string',
        'status': 'Active'|'Deleted',
        'createdTime': datetime(2015, 1, 1),
        'encryptionKey': 'string',
        'repositoryCount': 123,
        'assetSizeBytes': 123
    }
}

Response Structure

  • (dict) --

    • domain (dict) --

      Contains information about the deleted domain after processing the request.

      • name (string) --

        The name of the domain.

      • owner (string) --

        The AWS account ID that owns the domain.

      • arn (string) --

        The Amazon Resource Name (ARN) of the domain.

      • status (string) --

        The current status of a domain. The valid values are

        • Active

        • Deleted

      • createdTime (datetime) --

        A timestamp that represents the date and time the domain was created.

      • encryptionKey (string) --

        The ARN of an AWS Key Management Service (AWS KMS) key associated with a domain.

      • repositoryCount (integer) --

        The number of repositories in the domain.

      • assetSizeBytes (integer) --

        The total size of all assets in the domain.

ListPackageVersionDependencies (new) Link ¶

Returns the direct dependencies for a package version. The dependencies are returned as PackageDependency objects. CodeArtifact extracts the dependencies for a package version from the metadata file for the package format (for example, the package.json file for npm packages and the pom.xml file for Maven). Any package version dependencies that are not listed in the configuration file are not returned.

See also: AWS API Documentation

Request Syntax

client.list_package_version_dependencies(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    packageVersion='string',
    nextToken='string'
)
type domain

string

param domain

[REQUIRED]

The domain that contains the repository that contains the requested package version dependencies.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository that contains the requested package version.

type format

string

param format

[REQUIRED]

The format of the package with the requested dependencies. The valid package types are:

  • npm : A Node Package Manager (npm) package.

  • pypi : A Python Package Index (PyPI) package.

  • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the package versions' package.

type packageVersion

string

param packageVersion

[REQUIRED]

A string that contains the package version (for example, 3.5.2 ).

type nextToken

string

param nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

rtype

dict

returns

Response Syntax

{
    'format': 'npm'|'pypi'|'maven',
    'namespace': 'string',
    'package': 'string',
    'version': 'string',
    'versionRevision': 'string',
    'nextToken': 'string',
    'dependencies': [
        {
            'namespace': 'string',
            'package': 'string',
            'dependencyType': 'string',
            'versionRequirement': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • format (string) --

      A format that specifies the type of the package that contains the returned dependencies. The valid values are:

      • npm

      • pypi

      • maven

    • namespace (string) --

      The namespace of the package. The package component that specifies its namespace depends on its type. For example:

      • The namespace of a Maven package is its groupId .

      • The namespace of an npm package is its scope .

      • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

    • package (string) --

      The name of the package that contains the returned package versions dependencies.

    • version (string) --

      The version of the package that is specified in the request.

    • versionRevision (string) --

      The current revision associated with the package version.

    • nextToken (string) --

      The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

    • dependencies (list) --

      The returned list of PackageDependency objects.

      • (dict) --

        Details about a package dependency.

        • namespace (string) --

          The namespace of the package. The package component that specifies its namespace depends on its type. For example:

          • The namespace of a Maven package is its groupId .

          • The namespace of an npm package is its scope .

          • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

        • package (string) --

          The name of the package that this package depends on.

        • dependencyType (string) --

          The type of a package dependency. The possible values depend on the package type. Example types are compile , runtime , and test for Maven packages, and dev , prod , and optional for npm packages.

        • versionRequirement (string) --

          The required version, or version range, of the package that this package depends on. The version format is specific to the package type. For example, the following are possible valid required versions: 1.2.3 , ^2.3.4 , or 4.x .

CreateRepository (new) Link ¶

Creates a repository.

See also: AWS API Documentation

Request Syntax

client.create_repository(
    domain='string',
    domainOwner='string',
    repository='string',
    description='string',
    upstreams=[
        {
            'repositoryName': 'string'
        },
    ]
)
type domain

string

param domain

[REQUIRED]

The domain that contains the created repository.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository to create.

type description

string

param description

A description of the created repository.

type upstreams

list

param upstreams

A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.

  • (dict) --

    Information about an upstream repository. A list of UpstreamRepository objects is an input parameter to CreateRepository and UpdateRepository.

    • repositoryName (string) -- [REQUIRED]

      The name of an upstream repository.

rtype

dict

returns

Response Syntax

{
    'repository': {
        'name': 'string',
        'administratorAccount': 'string',
        'domainName': 'string',
        'domainOwner': 'string',
        'arn': 'string',
        'description': 'string',
        'upstreams': [
            {
                'repositoryName': 'string'
            },
        ],
        'externalConnections': [
            {
                'externalConnectionName': 'string',
                'packageFormat': 'npm'|'pypi'|'maven',
                'status': 'Available'
            },
        ]
    }
}

Response Structure

  • (dict) --

    • repository (dict) --

      Information about the created repository after processing the request.

      • name (string) --

        The name of the repository.

      • administratorAccount (string) --

        The 12-digit account number of the AWS account that manages the repository.

      • domainName (string) --

        The name of the domain that contains the repository.

      • domainOwner (string) --

        The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces.

      • arn (string) --

        The Amazon Resource Name (ARN) of the repository.

      • description (string) --

        A text description of the repository.

      • upstreams (list) --

        A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.

        • (dict) --

          Information about an upstream repository.

          • repositoryName (string) --

            The name of an upstream repository.

      • externalConnections (list) --

        An array of external connections associated with the repository.

        • (dict) --

          Contains information about the external connection of a repository.

          • externalConnectionName (string) --

            The name of the external connection associated with a repository.

          • packageFormat (string) --

            The package format associated with a repository's external connection. The valid package formats are:

            • npm : A Node Package Manager (npm) package.

            • pypi : A Python Package Index (PyPI) package.

            • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

          • status (string) --

            The status of the external connection of a repository. There is one valid value, Available .

GetRepositoryPermissionsPolicy (new) Link ¶

Returns the resource policy that is set on a repository.

See also: AWS API Documentation

Request Syntax

client.get_repository_permissions_policy(
    domain='string',
    domainOwner='string',
    repository='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain containing the repository whose associated resource policy is to be retrieved.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository whose associated resource policy is to be retrieved.

rtype

dict

returns

Response Syntax

{
    'policy': {
        'resourceArn': 'string',
        'revision': 'string',
        'document': 'string'
    }
}

Response Structure

  • (dict) --

    • policy (dict) --

      The returned resource policy.

      • resourceArn (string) --

        The ARN of the resource associated with the resource policy

      • revision (string) --

        The current revision of the resource policy.

      • document (string) --

        The resource policy formatted in JSON.

ListRepositories (new) Link ¶

Returns a list of RepositorySummary objects. Each RepositorySummary contains information about a repository in the specified AWS account and that matches the input parameters.

See also: AWS API Documentation

Request Syntax

client.list_repositories(
    repositoryPrefix='string',
    maxResults=123,
    nextToken='string'
)
type repositoryPrefix

string

param repositoryPrefix

A prefix used to filter returned repositories. Only repositories with names that start with repositoryPrefix are returned.

type maxResults

integer

param maxResults

The maximum number of results to return per page.

type nextToken

string

param nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

rtype

dict

returns

Response Syntax

{
    'repositories': [
        {
            'name': 'string',
            'administratorAccount': 'string',
            'domainName': 'string',
            'domainOwner': 'string',
            'arn': 'string',
            'description': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • repositories (list) --

      The returned list of RepositorySummary objects.

      • (dict) --

        Details about a repository, including its Amazon Resource Name (ARN), description, and domain information. The ListRepositories operation returns a list of RepositorySummary objects.

        • name (string) --

          The name of the repository.

        • administratorAccount (string) --

          The AWS account ID that manages the repository.

        • domainName (string) --

          The name of the domain that contains the repository.

        • domainOwner (string) --

          The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

        • arn (string) --

          The ARN of the repository.

        • description (string) --

          The description of the repository.

    • nextToken (string) --

      If there are additional results, this is the token for the next set of results.

DisassociateExternalConnection (new) Link ¶

Removes an existing external connection from a repository.

See also: AWS API Documentation

Request Syntax

client.disassociate_external_connection(
    domain='string',
    domainOwner='string',
    repository='string',
    externalConnection='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the repository from which to remove the external repository.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository from which the external connection will be removed.

type externalConnection

string

param externalConnection

[REQUIRED]

The name of the external connection to be removed from the repository.

rtype

dict

returns

Response Syntax

{
    'repository': {
        'name': 'string',
        'administratorAccount': 'string',
        'domainName': 'string',
        'domainOwner': 'string',
        'arn': 'string',
        'description': 'string',
        'upstreams': [
            {
                'repositoryName': 'string'
            },
        ],
        'externalConnections': [
            {
                'externalConnectionName': 'string',
                'packageFormat': 'npm'|'pypi'|'maven',
                'status': 'Available'
            },
        ]
    }
}

Response Structure

  • (dict) --

    • repository (dict) --

      The repository associated with the removed external connection.

      • name (string) --

        The name of the repository.

      • administratorAccount (string) --

        The 12-digit account number of the AWS account that manages the repository.

      • domainName (string) --

        The name of the domain that contains the repository.

      • domainOwner (string) --

        The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces.

      • arn (string) --

        The Amazon Resource Name (ARN) of the repository.

      • description (string) --

        A text description of the repository.

      • upstreams (list) --

        A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.

        • (dict) --

          Information about an upstream repository.

          • repositoryName (string) --

            The name of an upstream repository.

      • externalConnections (list) --

        An array of external connections associated with the repository.

        • (dict) --

          Contains information about the external connection of a repository.

          • externalConnectionName (string) --

            The name of the external connection associated with a repository.

          • packageFormat (string) --

            The package format associated with a repository's external connection. The valid package formats are:

            • npm : A Node Package Manager (npm) package.

            • pypi : A Python Package Index (PyPI) package.

            • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

          • status (string) --

            The status of the external connection of a repository. There is one valid value, Available .

PutRepositoryPermissionsPolicy (new) Link ¶

Sets the resource policy on a repository that specifies permissions to access it.

See also: AWS API Documentation

Request Syntax

client.put_repository_permissions_policy(
    domain='string',
    domainOwner='string',
    repository='string',
    policyRevision='string',
    policyDocument='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain containing the repository to set the resource policy on.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository to set the resource policy on.

type policyRevision

string

param policyRevision

Sets the revision of the resource policy that specifies permissions to access the repository. This revision is used for optimistic locking, which prevents others from overwriting your changes to the repository's resource policy.

type policyDocument

string

param policyDocument

[REQUIRED]

A valid displayable JSON Aspen policy string to be set as the access control resource policy on the provided repository.

rtype

dict

returns

Response Syntax

{
    'policy': {
        'resourceArn': 'string',
        'revision': 'string',
        'document': 'string'
    }
}

Response Structure

  • (dict) --

    • policy (dict) --

      The resource policy that was set after processing the request.

      • resourceArn (string) --

        The ARN of the resource associated with the resource policy

      • revision (string) --

        The current revision of the resource policy.

      • document (string) --

        The resource policy formatted in JSON.

UpdatePackageVersionsStatus (new) Link ¶

Updates the status of one or more versions of a package.

See also: AWS API Documentation

Request Syntax

client.update_package_versions_status(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    versions=[
        'string',
    ],
    versionRevisions={
        'string': 'string'
    },
    expectedStatus='Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted',
    targetStatus='Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted'
)
type domain

string

param domain

[REQUIRED]

The domain that contains the repository that contains the package versions with a status to be updated.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The repository that contains the package versions with the status you want to update.

type format

string

param format

[REQUIRED]

A format that specifies the type of the package with the statuses to update. The valid values are:

  • npm

  • pypi

  • maven

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the package with the version statuses to update.

type versions

list

param versions

[REQUIRED]

An array of strings that specify the versions of the package with the statuses to update.

  • (string) --

type versionRevisions

dict

param versionRevisions

A map of package versions and package version revisions. The map key is the package version (for example, 3.5.2 ), and the map value is the package version revision.

  • (string) --

    • (string) --

type expectedStatus

string

param expectedStatus

The package version’s expected status before it is updated. If expectedStatus is provided, the package version's status is updated only if its status at the time UpdatePackageVersionsStatus is called matches expectedStatus .

type targetStatus

string

param targetStatus

[REQUIRED]

The status you want to change the package version status to.

rtype

dict

returns

Response Syntax

{
    'successfulVersions': {
        'string': {
            'revision': 'string',
            'status': 'Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted'
        }
    },
    'failedVersions': {
        'string': {
            'errorCode': 'ALREADY_EXISTS'|'MISMATCHED_REVISION'|'MISMATCHED_STATUS'|'NOT_ALLOWED'|'NOT_FOUND'|'SKIPPED',
            'errorMessage': 'string'
        }
    }
}

Response Structure

  • (dict) --

    • successfulVersions (dict) --

      A list of PackageVersionError objects, one for each package version with a status that failed to update.

      • (string) --

        • (dict) --

          Contains the revision and status of a package version.

          • revision (string) --

            The revision of a package version.

          • status (string) --

            The status of a package version. Valid statuses are:

            • Published

            • Unfinished

            • Unlisted

            • Archived

            • Disposed

    • failedVersions (dict) --

      A list of SuccessfulPackageVersionInfo objects, one for each package version with a status that successfully updated.

      • (string) --

        • (dict) --

          An error associated with package.

          • errorCode (string) --

            The error code associated with the error. Valid error codes are:

            • ALREADY_EXISTS

            • MISMATCHED_REVISION

            • MISMATCHED_STATUS

            • NOT_ALLOWED

            • NOT_FOUND

            • SKIPPED

          • errorMessage (string) --

            The error message associated with the error.

DeletePackageVersions (new) Link ¶

Deletes one or more versions of a package. A deleted package version cannot be restored in your repository. If you want to remove a package version from your repository and be able to restore it later, set its status to Archived . Archived packages cannot be downloaded from a repository and don't show up with list package APIs (for example, ListackageVersions ), but you can restore them using UpdatePackageVersionsStatus .

See also: AWS API Documentation

Request Syntax

client.delete_package_versions(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    package='string',
    versions=[
        'string',
    ],
    expectedStatus='Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted'
)
type domain

string

param domain

[REQUIRED]

The name of the domain that contains the package to delete.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository that contains the package versions to delete.

type format

string

param format

[REQUIRED]

The format of the package versions to delete. The valid values are:

  • npm

  • pypi

  • maven

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type package

string

param package

[REQUIRED]

The name of the package with the versions to delete.

type versions

list

param versions

[REQUIRED]

An array of strings that specify the versions of the package to delete.

  • (string) --

type expectedStatus

string

param expectedStatus

The expected status of the package version to delete. Valid values are:

  • Published

  • Unfinished

  • Unlisted

  • Archived

  • Disposed

rtype

dict

returns

Response Syntax

{
    'successfulVersions': {
        'string': {
            'revision': 'string',
            'status': 'Published'|'Unfinished'|'Unlisted'|'Archived'|'Disposed'|'Deleted'
        }
    },
    'failedVersions': {
        'string': {
            'errorCode': 'ALREADY_EXISTS'|'MISMATCHED_REVISION'|'MISMATCHED_STATUS'|'NOT_ALLOWED'|'NOT_FOUND'|'SKIPPED',
            'errorMessage': 'string'
        }
    }
}

Response Structure

  • (dict) --

    • successfulVersions (dict) --

      A list of the package versions that were successfully deleted.

      • (string) --

        • (dict) --

          Contains the revision and status of a package version.

          • revision (string) --

            The revision of a package version.

          • status (string) --

            The status of a package version. Valid statuses are:

            • Published

            • Unfinished

            • Unlisted

            • Archived

            • Disposed

    • failedVersions (dict) --

      A PackageVersionError object that contains a map of errors codes for the deleted package that failed. The possible error codes are:

      • ALREADY_EXISTS

      • MISMATCHED_REVISION

      • MISMATCHED_STATUS

      • NOT_ALLOWED

      • NOT_FOUND

      • SKIPPED

      • (string) --

        • (dict) --

          An error associated with package.

          • errorCode (string) --

            The error code associated with the error. Valid error codes are:

            • ALREADY_EXISTS

            • MISMATCHED_REVISION

            • MISMATCHED_STATUS

            • NOT_ALLOWED

            • NOT_FOUND

            • SKIPPED

          • errorMessage (string) --

            The error message associated with the error.

ListPackages (new) Link ¶

Returns a list of PackageSummary objects for packages in a repository that match the request parameters.

See also: AWS API Documentation

Request Syntax

client.list_packages(
    domain='string',
    domainOwner='string',
    repository='string',
    format='npm'|'pypi'|'maven',
    namespace='string',
    packagePrefix='string',
    maxResults=123,
    nextToken='string'
)
type domain

string

param domain

[REQUIRED]

The domain that contains the repository that contains the requested list of packages.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type repository

string

param repository

[REQUIRED]

The name of the repository from which packages are to be listed.

type format

string

param format

The format of the packages. The valid package types are:

  • npm : A Node Package Manager (npm) package.

  • pypi : A Python Package Index (PyPI) package.

  • maven : A Maven package that contains compiled code in a distributable format, such as a JAR file.

type namespace

string

param namespace

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId .

  • The namespace of an npm package is its scope .

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

type packagePrefix

string

param packagePrefix

A prefix used to filter returned repositories. Only repositories with names that start with repositoryPrefix are returned.

type maxResults

integer

param maxResults

The maximum number of results to return per page.

type nextToken

string

param nextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

rtype

dict

returns

Response Syntax

{
    'packages': [
        {
            'format': 'npm'|'pypi'|'maven',
            'namespace': 'string',
            'package': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • packages (list) --

      The list of returned PackageSummary objects.

      • (dict) --

        Details about a package, including its format, namespace, and name. The ListPackages operation returns a list of PackageSummary objects.

        • format (string) --

          The format of the package. Valid values are:

          • npm

          • pypi

          • maven

        • namespace (string) --

          The namespace of the package. The package component that specifies its namespace depends on its type. For example:

          • The namespace of a Maven package is its groupId .

          • The namespace of an npm package is its scope .

          • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

        • package (string) --

          The name of the package.

    • nextToken (string) --

      If there are additional results, this is the token for the next set of results.

GetAuthorizationToken (new) Link ¶

Generates a temporary authentication token for accessing repositories in the domain. This API requires the codeartifact:GetAuthorizationToken and sts:GetServiceBearerToken permissions.

Note

CodeArtifact authorization tokens are valid for a period of 12 hours when created with the login command. You can call login periodically to refresh the token. When you create an authorization token with the GetAuthorizationToken API, you can set a custom authorization period, up to a maximum of 12 hours, with the durationSeconds parameter.

The authorization period begins after login or GetAuthorizationToken is called. If login or GetAuthorizationToken is called while assuming a role, the token lifetime is independent of the maximum session duration of the role. For example, if you call sts assume-role and specify a session duration of 15 minutes, then generate a CodeArtifact authorization token, the token will be valid for the full authorization period even though this is longer than the 15-minute session duration.

See Using IAM Roles for more information on controlling session duration.

See also: AWS API Documentation

Request Syntax

client.get_authorization_token(
    domain='string',
    domainOwner='string',
    durationSeconds=123
)
type domain

string

param domain

[REQUIRED]

The name of the domain that is in scope for the generated authorization token.

type domainOwner

string

param domainOwner

The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.

type durationSeconds

integer

param durationSeconds

The time, in seconds, that the generated authorization token is valid.

rtype

dict

returns

Response Syntax

{
    'authorizationToken': 'string',
    'expiration': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --

    • authorizationToken (string) --

      The returned authentication token.

    • expiration (datetime) --

      A timestamp that specifies the date and time the authorization token expires.

CreateDomain (new) Link ¶

Creates a domain. CodeArtifact domains make it easier to manage multiple repositories across an organization. You can use a domain to apply permissions across many repositories owned by different AWS accounts. An asset is stored only once in a domain, even if it's in multiple repositories.

Although you can have multiple domains, we recommend a single production domain that contains all published artifacts so that your development teams can find and share packages. You can use a second pre-production domain to test changes to the production domain configuration.

See also: AWS API Documentation

Request Syntax

client.create_domain(
    domain='string',
    encryptionKey='string'
)
type domain

string

param domain

[REQUIRED]

The name of the domain to create. All domain names in an AWS Region that are in the same AWS account must be unique. The domain name is used as the prefix in DNS hostnames. Do not use sensitive information in a domain name because it is publicly discoverable.

type encryptionKey

string

param encryptionKey

The encryption key for the domain. This is used to encrypt content stored in a domain. An encryption key can be a key ID, a key Amazon Resource Name (ARN), a key alias, or a key alias ARN. To specify an encryptionKey , your IAM role must have kms:DescribeKey and kms:CreateGrant permissions on the encryption key that is used. For more information, see DescribeKey in the AWS Key Management Service API Reference and AWS KMS API Permissions Reference in the AWS Key Management Service Developer Guide .

Warning

CodeArtifact supports only symmetric CMKs. Do not associate an asymmetric CMK with your domain. For more information, see Using symmetric and asymmetric keys in the AWS Key Management Service Developer Guide .

rtype

dict

returns

Response Syntax

{
    'domain': {
        'name': 'string',
        'owner': 'string',
        'arn': 'string',
        'status': 'Active'|'Deleted',
        'createdTime': datetime(2015, 1, 1),
        'encryptionKey': 'string',
        'repositoryCount': 123,
        'assetSizeBytes': 123
    }
}

Response Structure

  • (dict) --

    • domain (dict) --

      Contains information about the created domain after processing the request.

      • name (string) --

        The name of the domain.

      • owner (string) --

        The AWS account ID that owns the domain.

      • arn (string) --

        The Amazon Resource Name (ARN) of the domain.

      • status (string) --

        The current status of a domain. The valid values are

        • Active

        • Deleted

      • createdTime (datetime) --

        A timestamp that represents the date and time the domain was created.

      • encryptionKey (string) --

        The ARN of an AWS Key Management Service (AWS KMS) key associated with a domain.

      • repositoryCount (integer) --

        The number of repositories in the domain.

      • assetSizeBytes (integer) --

        The total size of all assets in the domain.