github.com/aavshr/aws-sdk-go@v1.41.3/models/apis/codeartifact/2018-09-22/docs-2.json (about)

     1  {
     2    "version": "2.0",
     3    "service": "<p> AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client. </p> <p> <b>AWS CodeArtifact Components</b> </p> <p>Use the information in this guide to help you work with the following CodeArtifact components:</p> <ul> <li> <p> <b>Repository</b>: A CodeArtifact repository contains a set of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/welcome.html#welcome-concepts-package-version\">package versions</a>, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the <b> <code>npm</code> </b> CLI, the Maven CLI (<b> <code>mvn</code> </b>), and <b> <code>pip</code> </b>.</p> </li> <li> <p> <b>Domain</b>: Repositories are aggregated into a higher-level entity known as a <i>domain</i>. All package assets and metadata are stored in the domain, but are consumed through repositories. A given package asset, such as a Maven JAR file, is stored once per domain, no matter how many repositories it's present in. All of the assets and metadata in a domain are encrypted with the same customer master key (CMK) stored in AWS Key Management Service (AWS KMS).</p> <p>Each repository is a member of a single domain and can't be moved to a different domain.</p> <p>The domain allows organizational policy to be applied across multiple repositories, such as which accounts can access repositories in the domain, and which public repositories can be used as sources of packages.</p> <p>Although an organization can have multiple domains, we recommend a single production domain that contains all published artifacts so that teams can find and share packages across their organization.</p> </li> <li> <p> <b>Package</b>: A <i>package</i> is a bundle of software and the metadata required to resolve dependencies and install the software. CodeArtifact supports <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/using-npm.html\">npm</a>, <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/using-python.html\">PyPI</a>, and <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/using-maven\">Maven</a> package formats.</p> <p>In CodeArtifact, a package consists of:</p> <ul> <li> <p>A <i>name</i> (for example, <code>webpack</code> is the name of a popular npm package)</p> </li> <li> <p>An optional namespace (for example, <code>@types</code> in <code>@types/node</code>)</p> </li> <li> <p>A set of versions (for example, <code>1.0.0</code>, <code>1.0.1</code>, <code>1.0.2</code>, etc.)</p> </li> <li> <p> Package-level metadata (for example, npm tags)</p> </li> </ul> </li> <li> <p> <b>Package version</b>: A version of a package, such as <code>@types/node 12.6.9</code>. The version number format and semantics vary for different package formats. For example, npm package versions must conform to the <a href=\"https://semver.org/\">Semantic Versioning specification</a>. In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.</p> </li> <li> <p> <b>Upstream repository</b>: One repository is <i>upstream</i> of another when the package versions in it can be accessed from the repository endpoint of the downstream repository, effectively merging the contents of the two repositories from the point of view of a client. CodeArtifact allows creating an upstream relationship between two repositories.</p> </li> <li> <p> <b>Asset</b>: An individual file stored in CodeArtifact associated with a package version, such as an npm <code>.tgz</code> file or Maven POM and JAR files.</p> </li> </ul> <p>CodeArtifact supports these operations:</p> <ul> <li> <p> <code>AssociateExternalConnection</code>: Adds an existing external connection to a repository. </p> </li> <li> <p> <code>CopyPackageVersions</code>: Copies package versions from one repository to another repository in the same domain.</p> </li> <li> <p> <code>CreateDomain</code>: Creates a domain</p> </li> <li> <p> <code>CreateRepository</code>: Creates a CodeArtifact repository in a domain. </p> </li> <li> <p> <code>DeleteDomain</code>: Deletes a domain. You cannot delete a domain that contains repositories. </p> </li> <li> <p> <code>DeleteDomainPermissionsPolicy</code>: Deletes the resource policy that is set on a domain.</p> </li> <li> <p> <code>DeletePackageVersions</code>: Deletes versions of a package. After a package has been deleted, it can be republished, but its assets and metadata cannot be restored because they have been permanently removed from storage.</p> </li> <li> <p> <code>DeleteRepository</code>: Deletes a repository. </p> </li> <li> <p> <code>DeleteRepositoryPermissionsPolicy</code>: Deletes the resource policy that is set on a repository.</p> </li> <li> <p> <code>DescribeDomain</code>: Returns a <code>DomainDescription</code> object that contains information about the requested domain.</p> </li> <li> <p> <code>DescribePackageVersion</code>: Returns a <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html\">PackageVersionDescription</a> object that contains details about a package version. </p> </li> <li> <p> <code>DescribeRepository</code>: Returns a <code>RepositoryDescription</code> object that contains detailed information about the requested repository. </p> </li> <li> <p> <code>DisposePackageVersions</code>: Disposes versions of a package. A package version with the status <code>Disposed</code> cannot be restored because they have been permanently removed from storage.</p> </li> <li> <p> <code>DisassociateExternalConnection</code>: Removes an existing external connection from a repository. </p> </li> <li> <p> <code>GetAuthorizationToken</code>: Generates a temporary authorization token for accessing repositories in the domain. The token expires the authorization period has passed. The default authorization period is 12 hours and can be customized to any length with a maximum of 12 hours.</p> </li> <li> <p> <code>GetDomainPermissionsPolicy</code>: Returns the policy of a resource that is attached to the specified domain. </p> </li> <li> <p> <code>GetPackageVersionAsset</code>: Returns the contents of an asset that is in a package version. </p> </li> <li> <p> <code>GetPackageVersionReadme</code>: Gets the readme file or descriptive text for a package version.</p> </li> <li> <p> <code>GetRepositoryEndpoint</code>: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul> </li> <li> <p> <code>GetRepositoryPermissionsPolicy</code>: Returns the resource policy that is set on a repository. </p> </li> <li> <p> <code>ListDomains</code>: Returns a list of <code>DomainSummary</code> objects. Each returned <code>DomainSummary</code> object contains information about a domain.</p> </li> <li> <p> <code>ListPackages</code>: Lists the packages in a repository.</p> </li> <li> <p> <code>ListPackageVersionAssets</code>: Lists the assets for a given package version.</p> </li> <li> <p> <code>ListPackageVersionDependencies</code>: Returns a list of the direct dependencies for a package version. </p> </li> <li> <p> <code>ListPackageVersions</code>: Returns a list of package versions for a specified package in a repository.</p> </li> <li> <p> <code>ListRepositories</code>: Returns a list of repositories owned by the AWS account that called this method.</p> </li> <li> <p> <code>ListRepositoriesInDomain</code>: Returns a list of the repositories in a domain.</p> </li> <li> <p> <code>PutDomainPermissionsPolicy</code>: Attaches a resource policy to a domain.</p> </li> <li> <p> <code>PutRepositoryPermissionsPolicy</code>: Sets the resource policy on a repository that specifies permissions to access it. </p> </li> <li> <p> <code>UpdatePackageVersionsStatus</code>: Updates the status of one or more versions of a package.</p> </li> <li> <p> <code>UpdateRepository</code>: Updates the properties of a repository.</p> </li> </ul>",
     4    "operations": {
     5      "AssociateExternalConnection": "<p>Adds an existing external connection to a repository. One external connection is allowed per repository.</p> <note> <p>A repository can have one or more upstream repositories, or an external connection.</p> </note>",
     6      "CopyPackageVersions": "<p> Copies package versions from one repository to another repository in the same domain. </p> <note> <p> You must specify <code>versions</code> or <code>versionRevisions</code>. You cannot specify both. </p> </note>",
     7      "CreateDomain": "<p> Creates a domain. CodeArtifact <i>domains</i> 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. </p> <p>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. </p>",
     8      "CreateRepository": "<p> Creates a repository. </p>",
     9      "DeleteDomain": "<p> Deletes a domain. You cannot delete a domain that contains repositories. If you want to delete a domain with repositories, first delete its repositories. </p>",
    10      "DeleteDomainPermissionsPolicy": "<p> Deletes the resource policy set on a domain. </p>",
    11      "DeletePackageVersions": "<p> 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 <code>Archived</code>. Archived packages cannot be downloaded from a repository and don't show up with list package APIs (for example, <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListPackageVersions.html\">ListackageVersions</a>), but you can restore them using <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_UpdatePackageVersionsStatus.html\">UpdatePackageVersionsStatus</a>. </p>",
    12      "DeleteRepository": "<p> Deletes a repository. </p>",
    13      "DeleteRepositoryPermissionsPolicy": "<p> 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. </p> <important> <p> Use <code>DeleteRepositoryPermissionsPolicy</code> with caution. After a policy is deleted, AWS users, roles, and accounts lose permissions to perform the repository actions granted by the deleted policy. </p> </important>",
    14      "DescribeDomain": "<p> Returns a <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_DomainDescription.html\">DomainDescription</a> object that contains information about the requested domain. </p>",
    15      "DescribePackageVersion": "<p> Returns a <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html\">PackageVersionDescription</a> object that contains information about the requested package version. </p>",
    16      "DescribeRepository": "<p> Returns a <code>RepositoryDescription</code> object that contains detailed information about the requested repository. </p>",
    17      "DisassociateExternalConnection": "<p> Removes an existing external connection from a repository. </p>",
    18      "DisposePackageVersions": "<p> Deletes the assets in package versions and sets the package versions' status to <code>Disposed</code>. A disposed package version cannot be restored in your repository because its assets are deleted. </p> <p> To view all disposed package versions in a repository, use <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListPackageVersions.html\">ListPackageVersions</a> and set the <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListPackageVersions.html#API_ListPackageVersions_RequestSyntax\">status</a> parameter to <code>Disposed</code>. </p> <p> To view information about a disposed package version, use <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_DescribePackageVersion.html\">DescribePackageVersion</a>. </p>",
    19      "GetAuthorizationToken": "<p> Generates a temporary authorization token for accessing repositories in the domain. This API requires the <code>codeartifact:GetAuthorizationToken</code> and <code>sts:GetServiceBearerToken</code> permissions. For more information about authorization tokens, see <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/tokens-authentication.html\">AWS CodeArtifact authentication and tokens</a>. </p> <note> <p>CodeArtifact authorization tokens are valid for a period of 12 hours when created with the <code>login</code> command. You can call <code>login</code> periodically to refresh the token. When you create an authorization token with the <code>GetAuthorizationToken</code> API, you can set a custom authorization period, up to a maximum of 12 hours, with the <code>durationSeconds</code> parameter.</p> <p>The authorization period begins after <code>login</code> or <code>GetAuthorizationToken</code> is called. If <code>login</code> or <code>GetAuthorizationToken</code> is called while assuming a role, the token lifetime is independent of the maximum session duration of the role. For example, if you call <code>sts assume-role</code> 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.</p> <p>See <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html\">Using IAM Roles</a> for more information on controlling session duration. </p> </note>",
    20      "GetDomainPermissionsPolicy": "<p> Returns the resource policy attached to the specified domain. </p> <note> <p> The policy is a resource-based policy, not an identity-based policy. For more information, see <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_identity-vs-resource.html\">Identity-based policies and resource-based policies </a> in the <i>AWS Identity and Access Management User Guide</i>. </p> </note>",
    21      "GetPackageVersionAsset": "<p> Returns an asset (or file) that is in a package. For example, for a Maven package version, use <code>GetPackageVersionAsset</code> to download a <code>JAR</code> file, a <code>POM</code> file, or any other assets in the package version. </p>",
    22      "GetPackageVersionReadme": "<p> 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 <code>&lt;description&gt;</code> element in the <code>pom.xml</code> file of a Maven package. </p> <p> The returned text might contain formatting. For example, it might contain formatting for Markdown or reStructuredText. </p>",
    23      "GetRepositoryEndpoint": "<p> Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
    24      "GetRepositoryPermissionsPolicy": "<p> Returns the resource policy that is set on a repository. </p>",
    25      "ListDomains": "<p> Returns a list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html\">DomainSummary</a> objects for all domains owned by the AWS account that makes this call. Each returned <code>DomainSummary</code> object contains information about a domain. </p>",
    26      "ListPackageVersionAssets": "<p> Returns a list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_AssetSummary.html\">AssetSummary</a> objects for assets in a package version. </p>",
    27      "ListPackageVersionDependencies": "<p> Returns the direct dependencies for a package version. The dependencies are returned as <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageDependency.html\">PackageDependency</a> objects. CodeArtifact extracts the dependencies for a package version from the metadata file for the package format (for example, the <code>package.json</code> file for npm packages and the <code>pom.xml</code> file for Maven). Any package version dependencies that are not listed in the configuration file are not returned. </p>",
    28      "ListPackageVersions": "<p> Returns a list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionSummary.html\">PackageVersionSummary</a> objects for package versions in a repository that match the request parameters. </p>",
    29      "ListPackages": "<p> Returns a list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageSummary.html\">PackageSummary</a> objects for packages in a repository that match the request parameters. </p>",
    30      "ListRepositories": "<p> Returns a list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_RepositorySummary.html\">RepositorySummary</a> objects. Each <code>RepositorySummary</code> contains information about a repository in the specified AWS account and that matches the input parameters. </p>",
    31      "ListRepositoriesInDomain": "<p> Returns a list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_RepositorySummary.html\">RepositorySummary</a> objects. Each <code>RepositorySummary</code> contains information about a repository in the specified domain and that matches the input parameters. </p>",
    32      "ListTagsForResource": "<p>Gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeArtifact.</p>",
    33      "PutDomainPermissionsPolicy": "<p> Sets a resource policy on a domain that specifies permissions to access it. </p> <p> When you call <code>PutDomainPermissionsPolicy</code>, the resource policy on the domain is ignored when evaluting permissions. This ensures that the owner of a domain cannot lock themselves out of the domain, which would prevent them from being able to update the resource policy. </p>",
    34      "PutRepositoryPermissionsPolicy": "<p> Sets the resource policy on a repository that specifies permissions to access it. </p> <p> When you call <code>PutRepositoryPermissionsPolicy</code>, the resource policy on the repository is ignored when evaluting permissions. This ensures that the owner of a repository cannot lock themselves out of the repository, which would prevent them from being able to update the resource policy. </p>",
    35      "TagResource": "<p>Adds or updates tags for a resource in AWS CodeArtifact.</p>",
    36      "UntagResource": "<p>Removes tags from a resource in AWS CodeArtifact.</p>",
    37      "UpdatePackageVersionsStatus": "<p> Updates the status of one or more versions of a package. </p>",
    38      "UpdateRepository": "<p> Update the properties of a repository. </p>"
    39    },
    40    "shapes": {
    41      "AccessDeniedException": {
    42        "base": "<p> The operation did not succeed because of an unauthorized access attempt. </p>",
    43        "refs": {
    44        }
    45      },
    46      "AccountId": {
    47        "base": null,
    48        "refs": {
    49          "AssociateExternalConnectionRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    50          "CopyPackageVersionsRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    51          "CreateRepositoryRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    52          "DeleteDomainPermissionsPolicyRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    53          "DeleteDomainRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    54          "DeletePackageVersionsRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    55          "DeleteRepositoryPermissionsPolicyRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    56          "DeleteRepositoryRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    57          "DescribeDomainRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    58          "DescribePackageVersionRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    59          "DescribeRepositoryRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    60          "DisassociateExternalConnectionRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    61          "DisposePackageVersionsRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    62          "DomainDescription$owner": "<p> The AWS account ID that owns the domain. </p>",
    63          "DomainSummary$owner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    64          "GetAuthorizationTokenRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    65          "GetDomainPermissionsPolicyRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    66          "GetPackageVersionAssetRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    67          "GetPackageVersionReadmeRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    68          "GetRepositoryEndpointRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces. </p>",
    69          "GetRepositoryPermissionsPolicyRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    70          "ListPackageVersionAssetsRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    71          "ListPackageVersionDependenciesRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    72          "ListPackageVersionsRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    73          "ListPackagesRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    74          "ListRepositoriesInDomainRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    75          "ListRepositoriesInDomainRequest$administratorAccount": "<p> Filter the list of repositories to only include those that are managed by the AWS account ID. </p>",
    76          "PutDomainPermissionsPolicyRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    77          "PutRepositoryPermissionsPolicyRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    78          "RepositoryDescription$administratorAccount": "<p> The 12-digit account number of the AWS account that manages the repository. </p>",
    79          "RepositoryDescription$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain that contains the repository. It does not include dashes or spaces. </p>",
    80          "RepositorySummary$administratorAccount": "<p> The AWS account ID that manages the repository. </p>",
    81          "RepositorySummary$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    82          "UpdatePackageVersionsStatusRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>",
    83          "UpdateRepositoryRequest$domainOwner": "<p> The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces. </p>"
    84        }
    85      },
    86      "Arn": {
    87        "base": null,
    88        "refs": {
    89          "CreateDomainRequest$encryptionKey": "<p> 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 <code>encryptionKey</code>, your IAM role must have <code>kms:DescribeKey</code> and <code>kms:CreateGrant</code> permissions on the encryption key that is used. For more information, see <a href=\"https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestSyntax\">DescribeKey</a> in the <i>AWS Key Management Service API Reference</i> and <a href=\"https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html\">AWS KMS API Permissions Reference</a> in the <i>AWS Key Management Service Developer Guide</i>. </p> <important> <p> CodeArtifact supports only symmetric CMKs. Do not associate an asymmetric CMK with your domain. For more information, see <a href=\"https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html\">Using symmetric and asymmetric keys</a> in the <i>AWS Key Management Service Developer Guide</i>. </p> </important>",
    90          "DomainDescription$arn": "<p> The Amazon Resource Name (ARN) of the domain. </p>",
    91          "DomainDescription$encryptionKey": "<p> The ARN of an AWS Key Management Service (AWS KMS) key associated with a domain. </p>",
    92          "DomainDescription$s3BucketArn": "<p>The Amazon Resource Name (ARN) of the Amazon S3 bucket that is used to store package assets in the domain.</p>",
    93          "DomainSummary$arn": "<p> The ARN of the domain. </p>",
    94          "DomainSummary$encryptionKey": "<p> The key used to encrypt the domain. </p>",
    95          "ListTagsForResourceRequest$resourceArn": "<p>The Amazon Resource Name (ARN) of the resource to get tags for.</p>",
    96          "RepositoryDescription$arn": "<p> The Amazon Resource Name (ARN) of the repository. </p>",
    97          "RepositorySummary$arn": "<p> The ARN of the repository. </p>",
    98          "ResourcePolicy$resourceArn": "<p> The ARN of the resource associated with the resource policy </p>",
    99          "TagResourceRequest$resourceArn": "<p>The Amazon Resource Name (ARN) of the resource that you want to add or update tags for.</p>",
   100          "UntagResourceRequest$resourceArn": "<p>The Amazon Resource Name (ARN) of the resource that you want to remove tags from.</p>"
   101        }
   102      },
   103      "Asset": {
   104        "base": null,
   105        "refs": {
   106          "GetPackageVersionAssetResult$asset": "<p> The binary file, or asset, that is downloaded.</p>"
   107        }
   108      },
   109      "AssetHashes": {
   110        "base": null,
   111        "refs": {
   112          "AssetSummary$hashes": "<p> The hashes of the asset. </p>"
   113        }
   114      },
   115      "AssetName": {
   116        "base": null,
   117        "refs": {
   118          "AssetSummary$name": "<p> The name of the asset. </p>",
   119          "GetPackageVersionAssetRequest$asset": "<p> The name of the requested asset. </p>",
   120          "GetPackageVersionAssetResult$assetName": "<p> The name of the asset that is downloaded. </p>"
   121        }
   122      },
   123      "AssetSummary": {
   124        "base": "<p> Contains details about a package version asset. </p>",
   125        "refs": {
   126          "AssetSummaryList$member": null
   127        }
   128      },
   129      "AssetSummaryList": {
   130        "base": null,
   131        "refs": {
   132          "ListPackageVersionAssetsResult$assets": "<p> The returned list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_AssetSummary.html\">AssetSummary</a> objects. </p>"
   133        }
   134      },
   135      "AssociateExternalConnectionRequest": {
   136        "base": null,
   137        "refs": {
   138        }
   139      },
   140      "AssociateExternalConnectionResult": {
   141        "base": null,
   142        "refs": {
   143        }
   144      },
   145      "AuthorizationTokenDurationSeconds": {
   146        "base": null,
   147        "refs": {
   148          "GetAuthorizationTokenRequest$durationSeconds": "<p>The time, in seconds, that the generated authorization token is valid. Valid values are <code>0</code> and any number between <code>900</code> (15 minutes) and <code>43200</code> (12 hours). A value of <code>0</code> will set the expiration of the authorization token to the same expiration of the user's role's temporary credentials.</p>"
   149        }
   150      },
   151      "BooleanOptional": {
   152        "base": null,
   153        "refs": {
   154          "CopyPackageVersionsRequest$allowOverwrite": "<p> 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 <code>failedVersions</code> field of the response with an <code>ALREADY_EXISTS</code> error code. </p>",
   155          "CopyPackageVersionsRequest$includeFromUpstream": "<p> 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 <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html\">Working with upstream repositories</a>. </p>"
   156        }
   157      },
   158      "ConflictException": {
   159        "base": "<p> The operation did not succeed because prerequisites are not met. </p>",
   160        "refs": {
   161        }
   162      },
   163      "CopyPackageVersionsRequest": {
   164        "base": null,
   165        "refs": {
   166        }
   167      },
   168      "CopyPackageVersionsResult": {
   169        "base": null,
   170        "refs": {
   171        }
   172      },
   173      "CreateDomainRequest": {
   174        "base": null,
   175        "refs": {
   176        }
   177      },
   178      "CreateDomainResult": {
   179        "base": null,
   180        "refs": {
   181        }
   182      },
   183      "CreateRepositoryRequest": {
   184        "base": null,
   185        "refs": {
   186        }
   187      },
   188      "CreateRepositoryResult": {
   189        "base": null,
   190        "refs": {
   191        }
   192      },
   193      "DeleteDomainPermissionsPolicyRequest": {
   194        "base": null,
   195        "refs": {
   196        }
   197      },
   198      "DeleteDomainPermissionsPolicyResult": {
   199        "base": null,
   200        "refs": {
   201        }
   202      },
   203      "DeleteDomainRequest": {
   204        "base": null,
   205        "refs": {
   206        }
   207      },
   208      "DeleteDomainResult": {
   209        "base": null,
   210        "refs": {
   211        }
   212      },
   213      "DeletePackageVersionsRequest": {
   214        "base": null,
   215        "refs": {
   216        }
   217      },
   218      "DeletePackageVersionsResult": {
   219        "base": null,
   220        "refs": {
   221        }
   222      },
   223      "DeleteRepositoryPermissionsPolicyRequest": {
   224        "base": null,
   225        "refs": {
   226        }
   227      },
   228      "DeleteRepositoryPermissionsPolicyResult": {
   229        "base": null,
   230        "refs": {
   231        }
   232      },
   233      "DeleteRepositoryRequest": {
   234        "base": null,
   235        "refs": {
   236        }
   237      },
   238      "DeleteRepositoryResult": {
   239        "base": null,
   240        "refs": {
   241        }
   242      },
   243      "DescribeDomainRequest": {
   244        "base": null,
   245        "refs": {
   246        }
   247      },
   248      "DescribeDomainResult": {
   249        "base": null,
   250        "refs": {
   251        }
   252      },
   253      "DescribePackageVersionRequest": {
   254        "base": null,
   255        "refs": {
   256        }
   257      },
   258      "DescribePackageVersionResult": {
   259        "base": null,
   260        "refs": {
   261        }
   262      },
   263      "DescribeRepositoryRequest": {
   264        "base": null,
   265        "refs": {
   266        }
   267      },
   268      "DescribeRepositoryResult": {
   269        "base": null,
   270        "refs": {
   271        }
   272      },
   273      "Description": {
   274        "base": null,
   275        "refs": {
   276          "CreateRepositoryRequest$description": "<p> A description of the created repository. </p>",
   277          "RepositoryDescription$description": "<p> A text description of the repository. </p>",
   278          "RepositorySummary$description": "<p> The description of the repository. </p>",
   279          "UpdateRepositoryRequest$description": "<p> An updated repository description. </p>"
   280        }
   281      },
   282      "DisassociateExternalConnectionRequest": {
   283        "base": null,
   284        "refs": {
   285        }
   286      },
   287      "DisassociateExternalConnectionResult": {
   288        "base": null,
   289        "refs": {
   290        }
   291      },
   292      "DisposePackageVersionsRequest": {
   293        "base": null,
   294        "refs": {
   295        }
   296      },
   297      "DisposePackageVersionsResult": {
   298        "base": null,
   299        "refs": {
   300        }
   301      },
   302      "DomainDescription": {
   303        "base": "<p> 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. </p>",
   304        "refs": {
   305          "CreateDomainResult$domain": "<p> Contains information about the created domain after processing the request. </p>",
   306          "DeleteDomainResult$domain": "<p> Contains information about the deleted domain after processing the request. </p>",
   307          "DescribeDomainResult$domain": null
   308        }
   309      },
   310      "DomainName": {
   311        "base": null,
   312        "refs": {
   313          "AssociateExternalConnectionRequest$domain": "<p>The name of the domain that contains the repository.</p>",
   314          "CopyPackageVersionsRequest$domain": "<p> The name of the domain that contains the source and destination repositories. </p>",
   315          "CreateDomainRequest$domain": "<p> 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. </p>",
   316          "CreateRepositoryRequest$domain": "<p> The name of the domain that contains the created repository. </p>",
   317          "DeleteDomainPermissionsPolicyRequest$domain": "<p> The name of the domain associated with the resource policy to be deleted. </p>",
   318          "DeleteDomainRequest$domain": "<p> The name of the domain to delete. </p>",
   319          "DeletePackageVersionsRequest$domain": "<p> The name of the domain that contains the package to delete. </p>",
   320          "DeleteRepositoryPermissionsPolicyRequest$domain": "<p> The name of the domain that contains the repository associated with the resource policy to be deleted. </p>",
   321          "DeleteRepositoryRequest$domain": "<p> The name of the domain that contains the repository to delete. </p>",
   322          "DescribeDomainRequest$domain": "<p> A string that specifies the name of the requested domain. </p>",
   323          "DescribePackageVersionRequest$domain": "<p> The name of the domain that contains the repository that contains the package version. </p>",
   324          "DescribeRepositoryRequest$domain": "<p> The name of the domain that contains the repository to describe. </p>",
   325          "DisassociateExternalConnectionRequest$domain": "<p>The name of the domain that contains the repository from which to remove the external repository. </p>",
   326          "DisposePackageVersionsRequest$domain": "<p> The name of the domain that contains the repository you want to dispose. </p>",
   327          "DomainDescription$name": "<p> The name of the domain. </p>",
   328          "DomainSummary$name": "<p> The name of the domain. </p>",
   329          "GetAuthorizationTokenRequest$domain": "<p> The name of the domain that is in scope for the generated authorization token. </p>",
   330          "GetDomainPermissionsPolicyRequest$domain": "<p> The name of the domain to which the resource policy is attached. </p>",
   331          "GetPackageVersionAssetRequest$domain": "<p> The name of the domain that contains the repository that contains the package version with the requested asset. </p>",
   332          "GetPackageVersionReadmeRequest$domain": "<p> The name of the domain that contains the repository that contains the package version with the requested readme file. </p>",
   333          "GetRepositoryEndpointRequest$domain": "<p> The name of the domain that contains the repository. </p>",
   334          "GetRepositoryPermissionsPolicyRequest$domain": "<p> The name of the domain containing the repository whose associated resource policy is to be retrieved. </p>",
   335          "ListPackageVersionAssetsRequest$domain": "<p> The name of the domain that contains the repository associated with the package version assets. </p>",
   336          "ListPackageVersionDependenciesRequest$domain": "<p> The name of the domain that contains the repository that contains the requested package version dependencies. </p>",
   337          "ListPackageVersionsRequest$domain": "<p> The name of the domain that contains the repository that contains the returned package versions. </p>",
   338          "ListPackagesRequest$domain": "<p> The name of the domain that contains the repository that contains the requested list of packages. </p>",
   339          "ListRepositoriesInDomainRequest$domain": "<p> The name of the domain that contains the returned list of repositories. </p>",
   340          "PutDomainPermissionsPolicyRequest$domain": "<p> The name of the domain on which to set the resource policy. </p>",
   341          "PutRepositoryPermissionsPolicyRequest$domain": "<p> The name of the domain containing the repository to set the resource policy on. </p>",
   342          "RepositoryDescription$domainName": "<p> The name of the domain that contains the repository. </p>",
   343          "RepositorySummary$domainName": "<p> The name of the domain that contains the repository. </p>",
   344          "UpdatePackageVersionsStatusRequest$domain": "<p> The name of the domain that contains the repository that contains the package versions with a status to be updated. </p>",
   345          "UpdateRepositoryRequest$domain": "<p> The name of the domain associated with the repository to update. </p>"
   346        }
   347      },
   348      "DomainStatus": {
   349        "base": null,
   350        "refs": {
   351          "DomainDescription$status": "<p> The current status of a domain. The valid values are </p> <ul> <li> <p> <code>Active</code> </p> </li> <li> <p> <code>Deleted</code> </p> </li> </ul>",
   352          "DomainSummary$status": "<p> A string that contains the status of the domain. The valid values are: </p> <ul> <li> <p> <code>Active</code> </p> </li> <li> <p> <code>Deleted</code> </p> </li> </ul>"
   353        }
   354      },
   355      "DomainSummary": {
   356        "base": "<p> Information about a domain, including its name, Amazon Resource Name (ARN), and status. The <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListDomains.html\">ListDomains</a> operation returns a list of <code>DomainSummary</code> objects. </p>",
   357        "refs": {
   358          "DomainSummaryList$member": null
   359        }
   360      },
   361      "DomainSummaryList": {
   362        "base": null,
   363        "refs": {
   364          "ListDomainsResult$domains": "<p> The returned list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_DomainSummary.html\">DomainSummary</a> objects. </p>"
   365        }
   366      },
   367      "ErrorMessage": {
   368        "base": null,
   369        "refs": {
   370          "PackageVersionError$errorMessage": "<p> The error message associated with the error. </p>"
   371        }
   372      },
   373      "ExternalConnectionName": {
   374        "base": null,
   375        "refs": {
   376          "AssociateExternalConnectionRequest$externalConnection": "<p> The name of the external connection to add to the repository. The following values are supported: </p> <ul> <li> <p> <code>public:npmjs</code> - for the npm public repository. </p> </li> <li> <p> <code>public:pypi</code> - for the Python Package Index. </p> </li> <li> <p> <code>public:maven-central</code> - for Maven Central. </p> </li> <li> <p> <code>public:maven-googleandroid</code> - for the Google Android repository. </p> </li> <li> <p> <code>public:maven-gradleplugins</code> - for the Gradle plugins repository. </p> </li> <li> <p> <code>public:maven-commonsware</code> - for the CommonsWare Android repository. </p> </li> </ul>",
   377          "DisassociateExternalConnectionRequest$externalConnection": "<p>The name of the external connection to be removed from the repository. </p>",
   378          "RepositoryExternalConnectionInfo$externalConnectionName": "<p> The name of the external connection associated with a repository. </p>"
   379        }
   380      },
   381      "ExternalConnectionStatus": {
   382        "base": null,
   383        "refs": {
   384          "RepositoryExternalConnectionInfo$status": "<p> The status of the external connection of a repository. There is one valid value, <code>Available</code>. </p>"
   385        }
   386      },
   387      "GetAuthorizationTokenRequest": {
   388        "base": null,
   389        "refs": {
   390        }
   391      },
   392      "GetAuthorizationTokenResult": {
   393        "base": null,
   394        "refs": {
   395        }
   396      },
   397      "GetDomainPermissionsPolicyRequest": {
   398        "base": null,
   399        "refs": {
   400        }
   401      },
   402      "GetDomainPermissionsPolicyResult": {
   403        "base": null,
   404        "refs": {
   405        }
   406      },
   407      "GetPackageVersionAssetRequest": {
   408        "base": null,
   409        "refs": {
   410        }
   411      },
   412      "GetPackageVersionAssetResult": {
   413        "base": null,
   414        "refs": {
   415        }
   416      },
   417      "GetPackageVersionReadmeRequest": {
   418        "base": null,
   419        "refs": {
   420        }
   421      },
   422      "GetPackageVersionReadmeResult": {
   423        "base": null,
   424        "refs": {
   425        }
   426      },
   427      "GetRepositoryEndpointRequest": {
   428        "base": null,
   429        "refs": {
   430        }
   431      },
   432      "GetRepositoryEndpointResult": {
   433        "base": null,
   434        "refs": {
   435        }
   436      },
   437      "GetRepositoryPermissionsPolicyRequest": {
   438        "base": null,
   439        "refs": {
   440        }
   441      },
   442      "GetRepositoryPermissionsPolicyResult": {
   443        "base": null,
   444        "refs": {
   445        }
   446      },
   447      "HashAlgorithm": {
   448        "base": null,
   449        "refs": {
   450          "AssetHashes$key": null
   451        }
   452      },
   453      "HashValue": {
   454        "base": null,
   455        "refs": {
   456          "AssetHashes$value": null
   457        }
   458      },
   459      "Integer": {
   460        "base": null,
   461        "refs": {
   462          "DomainDescription$repositoryCount": "<p> The number of repositories in the domain. </p>"
   463        }
   464      },
   465      "InternalServerException": {
   466        "base": "<p> The operation did not succeed because of an error that occurred inside AWS CodeArtifact. </p>",
   467        "refs": {
   468        }
   469      },
   470      "LicenseInfo": {
   471        "base": "<p> Details of the license data. </p>",
   472        "refs": {
   473          "LicenseInfoList$member": null
   474        }
   475      },
   476      "LicenseInfoList": {
   477        "base": null,
   478        "refs": {
   479          "PackageVersionDescription$licenses": "<p> Information about licenses associated with the package version. </p>"
   480        }
   481      },
   482      "ListDomainsMaxResults": {
   483        "base": null,
   484        "refs": {
   485          "ListDomainsRequest$maxResults": "<p> The maximum number of results to return per page. </p>"
   486        }
   487      },
   488      "ListDomainsRequest": {
   489        "base": null,
   490        "refs": {
   491        }
   492      },
   493      "ListDomainsResult": {
   494        "base": null,
   495        "refs": {
   496        }
   497      },
   498      "ListPackageVersionAssetsMaxResults": {
   499        "base": null,
   500        "refs": {
   501          "ListPackageVersionAssetsRequest$maxResults": "<p> The maximum number of results to return per page. </p>"
   502        }
   503      },
   504      "ListPackageVersionAssetsRequest": {
   505        "base": null,
   506        "refs": {
   507        }
   508      },
   509      "ListPackageVersionAssetsResult": {
   510        "base": null,
   511        "refs": {
   512        }
   513      },
   514      "ListPackageVersionDependenciesRequest": {
   515        "base": null,
   516        "refs": {
   517        }
   518      },
   519      "ListPackageVersionDependenciesResult": {
   520        "base": null,
   521        "refs": {
   522        }
   523      },
   524      "ListPackageVersionsMaxResults": {
   525        "base": null,
   526        "refs": {
   527          "ListPackageVersionsRequest$maxResults": "<p> The maximum number of results to return per page. </p>"
   528        }
   529      },
   530      "ListPackageVersionsRequest": {
   531        "base": null,
   532        "refs": {
   533        }
   534      },
   535      "ListPackageVersionsResult": {
   536        "base": null,
   537        "refs": {
   538        }
   539      },
   540      "ListPackagesMaxResults": {
   541        "base": null,
   542        "refs": {
   543          "ListPackagesRequest$maxResults": "<p> The maximum number of results to return per page. </p>"
   544        }
   545      },
   546      "ListPackagesRequest": {
   547        "base": null,
   548        "refs": {
   549        }
   550      },
   551      "ListPackagesResult": {
   552        "base": null,
   553        "refs": {
   554        }
   555      },
   556      "ListRepositoriesInDomainMaxResults": {
   557        "base": null,
   558        "refs": {
   559          "ListRepositoriesInDomainRequest$maxResults": "<p> The maximum number of results to return per page. </p>"
   560        }
   561      },
   562      "ListRepositoriesInDomainRequest": {
   563        "base": null,
   564        "refs": {
   565        }
   566      },
   567      "ListRepositoriesInDomainResult": {
   568        "base": null,
   569        "refs": {
   570        }
   571      },
   572      "ListRepositoriesMaxResults": {
   573        "base": null,
   574        "refs": {
   575          "ListRepositoriesRequest$maxResults": "<p> The maximum number of results to return per page. </p>"
   576        }
   577      },
   578      "ListRepositoriesRequest": {
   579        "base": null,
   580        "refs": {
   581        }
   582      },
   583      "ListRepositoriesResult": {
   584        "base": null,
   585        "refs": {
   586        }
   587      },
   588      "ListTagsForResourceRequest": {
   589        "base": null,
   590        "refs": {
   591        }
   592      },
   593      "ListTagsForResourceResult": {
   594        "base": null,
   595        "refs": {
   596        }
   597      },
   598      "Long": {
   599        "base": null,
   600        "refs": {
   601          "DomainDescription$assetSizeBytes": "<p> The total size of all assets in the domain. </p>"
   602        }
   603      },
   604      "LongOptional": {
   605        "base": null,
   606        "refs": {
   607          "AssetSummary$size": "<p> The size of the asset. </p>"
   608        }
   609      },
   610      "PackageDependency": {
   611        "base": "<p> Details about a package dependency. </p>",
   612        "refs": {
   613          "PackageDependencyList$member": null
   614        }
   615      },
   616      "PackageDependencyList": {
   617        "base": null,
   618        "refs": {
   619          "ListPackageVersionDependenciesResult$dependencies": "<p> The returned list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageDependency.html\">PackageDependency</a> objects. </p>"
   620        }
   621      },
   622      "PackageFormat": {
   623        "base": null,
   624        "refs": {
   625          "CopyPackageVersionsRequest$format": "<p> The format of the package that is copied. The valid package types are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> </ul>",
   626          "DeletePackageVersionsRequest$format": "<p> The format of the package versions to delete. The valid values are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   627          "DescribePackageVersionRequest$format": "<p> A format that specifies the type of the requested package version. The valid values are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   628          "DisposePackageVersionsRequest$format": "<p> A format that specifies the type of package versions you want to dispose. The valid values are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   629          "GetPackageVersionAssetRequest$format": "<p> A format that specifies the type of the package version with the requested asset file. The valid values are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   630          "GetPackageVersionReadmeRequest$format": "<p> A format that specifies the type of the package version with the requested readme file. The valid values are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   631          "GetPackageVersionReadmeResult$format": "<p> The format of the package with the requested readme file. Valid format types are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   632          "GetRepositoryEndpointRequest$format": "<p> Returns which endpoint of a repository to return. A repository has one endpoint for each package format: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   633          "ListPackageVersionAssetsRequest$format": "<p> The format of the package that contains the returned package version assets. The valid package types are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> </ul>",
   634          "ListPackageVersionAssetsResult$format": "<p> The format of the package that contains the returned package version assets. </p>",
   635          "ListPackageVersionDependenciesRequest$format": "<p> The format of the package with the requested dependencies. The valid package types are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> </ul>",
   636          "ListPackageVersionDependenciesResult$format": "<p> A format that specifies the type of the package that contains the returned dependencies. The valid values are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   637          "ListPackageVersionsRequest$format": "<p> The format of the returned packages. The valid package types are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> </ul>",
   638          "ListPackageVersionsResult$format": "<p> A format of the package. Valid package format values are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   639          "ListPackagesRequest$format": "<p> The format of the packages. The valid package types are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> </ul>",
   640          "PackageSummary$format": "<p> The format of the package. Valid values are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>",
   641          "PackageVersionDescription$format": "<p> The format of the package version. The valid package formats are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> </ul>",
   642          "RepositoryExternalConnectionInfo$packageFormat": "<p> The package format associated with a repository's external connection. The valid package formats are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> </ul>",
   643          "UpdatePackageVersionsStatusRequest$format": "<p> A format that specifies the type of the package with the statuses to update. The valid values are: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul>"
   644        }
   645      },
   646      "PackageName": {
   647        "base": null,
   648        "refs": {
   649          "CopyPackageVersionsRequest$package": "<p> The name of the package that is copied. </p>",
   650          "DeletePackageVersionsRequest$package": "<p> The name of the package with the versions to delete. </p>",
   651          "DescribePackageVersionRequest$package": "<p> The name of the requested package version. </p>",
   652          "DisposePackageVersionsRequest$package": "<p> The name of the package with the versions you want to dispose. </p>",
   653          "GetPackageVersionAssetRequest$package": "<p> The name of the package that contains the requested asset. </p>",
   654          "GetPackageVersionReadmeRequest$package": "<p> The name of the package version that contains the requested readme file. </p>",
   655          "GetPackageVersionReadmeResult$package": "<p> The name of the package that contains the returned readme file. </p>",
   656          "ListPackageVersionAssetsRequest$package": "<p> The name of the package that contains the returned package version assets. </p>",
   657          "ListPackageVersionAssetsResult$package": "<p> The name of the package that contains the returned package version assets. </p>",
   658          "ListPackageVersionDependenciesRequest$package": "<p> The name of the package versions' package. </p>",
   659          "ListPackageVersionDependenciesResult$package": "<p> The name of the package that contains the returned package versions dependencies. </p>",
   660          "ListPackageVersionsRequest$package": "<p> The name of the package for which you want to return a list of package versions. </p>",
   661          "ListPackageVersionsResult$package": "<p> The name of the package. </p>",
   662          "ListPackagesRequest$packagePrefix": "<p> A prefix used to filter returned packages. Only packages with names that start with <code>packagePrefix</code> are returned. </p>",
   663          "PackageDependency$package": "<p> The name of the package that this package depends on. </p>",
   664          "PackageSummary$package": "<p> The name of the package. </p>",
   665          "PackageVersionDescription$packageName": "<p> The name of the requested package. </p>",
   666          "UpdatePackageVersionsStatusRequest$package": "<p> The name of the package with the version statuses to update. </p>"
   667        }
   668      },
   669      "PackageNamespace": {
   670        "base": null,
   671        "refs": {
   672          "CopyPackageVersionsRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   673          "DeletePackageVersionsRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   674          "DescribePackageVersionRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   675          "DisposePackageVersionsRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   676          "GetPackageVersionAssetRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   677          "GetPackageVersionReadmeRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   678          "GetPackageVersionReadmeResult$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   679          "ListPackageVersionAssetsRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   680          "ListPackageVersionAssetsResult$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   681          "ListPackageVersionDependenciesRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   682          "ListPackageVersionDependenciesResult$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   683          "ListPackageVersionsRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   684          "ListPackageVersionsResult$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   685          "ListPackagesRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   686          "PackageDependency$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   687          "PackageSummary$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   688          "PackageVersionDescription$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>",
   689          "UpdatePackageVersionsStatusRequest$namespace": "<p> The namespace of the package. The package component that specifies its namespace depends on its type. For example: </p> <ul> <li> <p> The namespace of a Maven package is its <code>groupId</code>. </p> </li> <li> <p> The namespace of an npm package is its <code>scope</code>. </p> </li> <li> <p> A Python package does not contain a corresponding component, so Python packages do not have a namespace. </p> </li> </ul>"
   690        }
   691      },
   692      "PackageSummary": {
   693        "base": "<p> Details about a package, including its format, namespace, and name. The <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListPackages.html\">ListPackages</a> operation returns a list of <code>PackageSummary</code> objects. </p>",
   694        "refs": {
   695          "PackageSummaryList$member": null
   696        }
   697      },
   698      "PackageSummaryList": {
   699        "base": null,
   700        "refs": {
   701          "ListPackagesResult$packages": "<p> The list of returned <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageSummary.html\">PackageSummary</a> objects. </p>"
   702        }
   703      },
   704      "PackageVersion": {
   705        "base": null,
   706        "refs": {
   707          "DescribePackageVersionRequest$packageVersion": "<p> A string that contains the package version (for example, <code>3.5.2</code>). </p>",
   708          "GetPackageVersionAssetRequest$packageVersion": "<p> A string that contains the package version (for example, <code>3.5.2</code>). </p>",
   709          "GetPackageVersionAssetResult$packageVersion": "<p> A string that contains the package version (for example, <code>3.5.2</code>). </p>",
   710          "GetPackageVersionReadmeRequest$packageVersion": "<p> A string that contains the package version (for example, <code>3.5.2</code>). </p>",
   711          "GetPackageVersionReadmeResult$version": "<p> The version of the package with the requested readme file. </p>",
   712          "ListPackageVersionAssetsRequest$packageVersion": "<p> A string that contains the package version (for example, <code>3.5.2</code>). </p>",
   713          "ListPackageVersionAssetsResult$version": "<p> The version of the package associated with the returned assets. </p>",
   714          "ListPackageVersionDependenciesRequest$packageVersion": "<p> A string that contains the package version (for example, <code>3.5.2</code>). </p>",
   715          "ListPackageVersionDependenciesResult$version": "<p> The version of the package that is specified in the request. </p>",
   716          "ListPackageVersionsResult$defaultDisplayVersion": "<p> The default package version to display. This depends on the package format: </p> <ul> <li> <p> For Maven and PyPI packages, it's the most recently published package version. </p> </li> <li> <p> For npm packages, it's the version referenced by the <code>latest</code> tag. If the <code>latest</code> tag is not set, it's the most recently published package version. </p> </li> </ul>",
   717          "PackageVersionDescription$version": "<p> The version of the package. </p>",
   718          "PackageVersionErrorMap$key": null,
   719          "PackageVersionList$member": null,
   720          "PackageVersionRevisionMap$key": null,
   721          "PackageVersionSummary$version": "<p> Information about a package version. </p>",
   722          "SuccessfulPackageVersionInfoMap$key": null
   723        }
   724      },
   725      "PackageVersionDescription": {
   726        "base": "<p> Details about a package version. </p>",
   727        "refs": {
   728          "DescribePackageVersionResult$packageVersion": "<p> A <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html\">PackageVersionDescription</a> object that contains information about the requested package version. </p>"
   729        }
   730      },
   731      "PackageVersionError": {
   732        "base": "<p> An error associated with package. </p>",
   733        "refs": {
   734          "PackageVersionErrorMap$value": null
   735        }
   736      },
   737      "PackageVersionErrorCode": {
   738        "base": null,
   739        "refs": {
   740          "PackageVersionError$errorCode": "<p> The error code associated with the error. Valid error codes are: </p> <ul> <li> <p> <code>ALREADY_EXISTS</code> </p> </li> <li> <p> <code>MISMATCHED_REVISION</code> </p> </li> <li> <p> <code>MISMATCHED_STATUS</code> </p> </li> <li> <p> <code>NOT_ALLOWED</code> </p> </li> <li> <p> <code>NOT_FOUND</code> </p> </li> <li> <p> <code>SKIPPED</code> </p> </li> </ul>"
   741        }
   742      },
   743      "PackageVersionErrorMap": {
   744        "base": null,
   745        "refs": {
   746          "CopyPackageVersionsResult$failedVersions": "<p> A map of package versions that failed to copy and their error codes. The possible error codes are in the <code>PackageVersionError</code> data type. They are: </p> <ul> <li> <p> <code>ALREADY_EXISTS</code> </p> </li> <li> <p> <code>MISMATCHED_REVISION</code> </p> </li> <li> <p> <code>MISMATCHED_STATUS</code> </p> </li> <li> <p> <code>NOT_ALLOWED</code> </p> </li> <li> <p> <code>NOT_FOUND</code> </p> </li> <li> <p> <code>SKIPPED</code> </p> </li> </ul>",
   747          "DeletePackageVersionsResult$failedVersions": "<p> A <code>PackageVersionError</code> object that contains a map of errors codes for the deleted package that failed. The possible error codes are: </p> <ul> <li> <p> <code>ALREADY_EXISTS</code> </p> </li> <li> <p> <code>MISMATCHED_REVISION</code> </p> </li> <li> <p> <code>MISMATCHED_STATUS</code> </p> </li> <li> <p> <code>NOT_ALLOWED</code> </p> </li> <li> <p> <code>NOT_FOUND</code> </p> </li> <li> <p> <code>SKIPPED</code> </p> </li> </ul>",
   748          "DisposePackageVersionsResult$failedVersions": "<p> A <code>PackageVersionError</code> object that contains a map of errors codes for the disposed package versions that failed. The possible error codes are: </p> <ul> <li> <p> <code>ALREADY_EXISTS</code> </p> </li> <li> <p> <code>MISMATCHED_REVISION</code> </p> </li> <li> <p> <code>MISMATCHED_STATUS</code> </p> </li> <li> <p> <code>NOT_ALLOWED</code> </p> </li> <li> <p> <code>NOT_FOUND</code> </p> </li> <li> <p> <code>SKIPPED</code> </p> </li> </ul>",
   749          "UpdatePackageVersionsStatusResult$failedVersions": "<p> A list of <code>SuccessfulPackageVersionInfo</code> objects, one for each package version with a status that successfully updated. </p>"
   750        }
   751      },
   752      "PackageVersionList": {
   753        "base": null,
   754        "refs": {
   755          "CopyPackageVersionsRequest$versions": "<p> The versions of the package to copy. </p> <note> <p> You must specify <code>versions</code> or <code>versionRevisions</code>. You cannot specify both. </p> </note>",
   756          "DeletePackageVersionsRequest$versions": "<p> An array of strings that specify the versions of the package to delete. </p>",
   757          "DisposePackageVersionsRequest$versions": "<p> The versions of the package you want to dispose. </p>",
   758          "UpdatePackageVersionsStatusRequest$versions": "<p> An array of strings that specify the versions of the package with the statuses to update. </p>"
   759        }
   760      },
   761      "PackageVersionRevision": {
   762        "base": null,
   763        "refs": {
   764          "GetPackageVersionAssetRequest$packageVersionRevision": "<p> The name of the package version revision that contains the requested asset. </p>",
   765          "GetPackageVersionAssetResult$packageVersionRevision": "<p> The name of the package version revision that contains the downloaded asset. </p>",
   766          "GetPackageVersionReadmeResult$versionRevision": "<p> The current revision associated with the package version. </p>",
   767          "ListPackageVersionAssetsResult$versionRevision": "<p> The current revision associated with the package version. </p>",
   768          "ListPackageVersionDependenciesResult$versionRevision": "<p> The current revision associated with the package version. </p>",
   769          "PackageVersionDescription$revision": "<p> The revision of the package version. </p>",
   770          "PackageVersionRevisionMap$value": null,
   771          "PackageVersionSummary$revision": "<p> The revision associated with a package version. </p>"
   772        }
   773      },
   774      "PackageVersionRevisionMap": {
   775        "base": null,
   776        "refs": {
   777          "CopyPackageVersionsRequest$versionRevisions": "<p> A list of key-value pairs. The keys are package versions and the values are package version revisions. A <code>CopyPackageVersion</code> operation succeeds if the specified versions in the source repository match the specified package version revision. </p> <note> <p> You must specify <code>versions</code> or <code>versionRevisions</code>. You cannot specify both. </p> </note>",
   778          "DisposePackageVersionsRequest$versionRevisions": "<p> The revisions of the package versions you want to dispose. </p>",
   779          "UpdatePackageVersionsStatusRequest$versionRevisions": "<p> A map of package versions and package version revisions. The map <code>key</code> is the package version (for example, <code>3.5.2</code>), and the map <code>value</code> is the package version revision. </p>"
   780        }
   781      },
   782      "PackageVersionSortType": {
   783        "base": null,
   784        "refs": {
   785          "ListPackageVersionsRequest$sortBy": "<p> How to sort the returned list of package versions. </p>"
   786        }
   787      },
   788      "PackageVersionStatus": {
   789        "base": null,
   790        "refs": {
   791          "DeletePackageVersionsRequest$expectedStatus": "<p> The expected status of the package version to delete. Valid values are: </p> <ul> <li> <p> <code>Published</code> </p> </li> <li> <p> <code>Unfinished</code> </p> </li> <li> <p> <code>Unlisted</code> </p> </li> <li> <p> <code>Archived</code> </p> </li> <li> <p> <code>Disposed</code> </p> </li> </ul>",
   792          "DisposePackageVersionsRequest$expectedStatus": "<p> The expected status of the package version to dispose. Valid values are: </p> <ul> <li> <p> <code>Published</code> </p> </li> <li> <p> <code>Unfinished</code> </p> </li> <li> <p> <code>Unlisted</code> </p> </li> <li> <p> <code>Archived</code> </p> </li> <li> <p> <code>Disposed</code> </p> </li> </ul>",
   793          "ListPackageVersionsRequest$status": "<p> A string that specifies the status of the package versions to include in the returned list. It can be one of the following: </p> <ul> <li> <p> <code>Published</code> </p> </li> <li> <p> <code>Unfinished</code> </p> </li> <li> <p> <code>Unlisted</code> </p> </li> <li> <p> <code>Archived</code> </p> </li> <li> <p> <code>Disposed</code> </p> </li> </ul>",
   794          "PackageVersionDescription$status": "<p> A string that contains the status of the package version. It can be one of the following: </p> <ul> <li> <p> <code>Published</code> </p> </li> <li> <p> <code>Unfinished</code> </p> </li> <li> <p> <code>Unlisted</code> </p> </li> <li> <p> <code>Archived</code> </p> </li> <li> <p> <code>Disposed</code> </p> </li> </ul>",
   795          "PackageVersionSummary$status": "<p> A string that contains the status of the package version. It can be one of the following: </p> <ul> <li> <p> <code>Published</code> </p> </li> <li> <p> <code>Unfinished</code> </p> </li> <li> <p> <code>Unlisted</code> </p> </li> <li> <p> <code>Archived</code> </p> </li> <li> <p> <code>Disposed</code> </p> </li> </ul>",
   796          "SuccessfulPackageVersionInfo$status": "<p> The status of a package version. Valid statuses are: </p> <ul> <li> <p> <code>Published</code> </p> </li> <li> <p> <code>Unfinished</code> </p> </li> <li> <p> <code>Unlisted</code> </p> </li> <li> <p> <code>Archived</code> </p> </li> <li> <p> <code>Disposed</code> </p> </li> </ul>",
   797          "UpdatePackageVersionsStatusRequest$expectedStatus": "<p> The package version’s expected status before it is updated. If <code>expectedStatus</code> is provided, the package version's status is updated only if its status at the time <code>UpdatePackageVersionsStatus</code> is called matches <code>expectedStatus</code>. </p>",
   798          "UpdatePackageVersionsStatusRequest$targetStatus": "<p> The status you want to change the package version status to. </p>"
   799        }
   800      },
   801      "PackageVersionSummary": {
   802        "base": "<p> Details about a package version, including its status, version, and revision. The <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListPackageVersions.html\">ListPackageVersions</a> operation returns a list of <code>PackageVersionSummary</code> objects. </p>",
   803        "refs": {
   804          "PackageVersionSummaryList$member": null
   805        }
   806      },
   807      "PackageVersionSummaryList": {
   808        "base": null,
   809        "refs": {
   810          "ListPackageVersionsResult$versions": "<p> The returned list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionSummary.html\">PackageVersionSummary</a> objects. </p>"
   811        }
   812      },
   813      "PaginationToken": {
   814        "base": null,
   815        "refs": {
   816          "ListDomainsRequest$nextToken": "<p> 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. </p>",
   817          "ListDomainsResult$nextToken": "<p> 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. </p>",
   818          "ListPackageVersionAssetsRequest$nextToken": "<p> 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. </p>",
   819          "ListPackageVersionAssetsResult$nextToken": "<p> If there are additional results, this is the token for the next set of results. </p>",
   820          "ListPackageVersionDependenciesRequest$nextToken": "<p> 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. </p>",
   821          "ListPackageVersionDependenciesResult$nextToken": "<p> 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. </p>",
   822          "ListPackageVersionsRequest$nextToken": "<p> 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. </p>",
   823          "ListPackageVersionsResult$nextToken": "<p> If there are additional results, this is the token for the next set of results. </p>",
   824          "ListPackagesRequest$nextToken": "<p> 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. </p>",
   825          "ListPackagesResult$nextToken": "<p> If there are additional results, this is the token for the next set of results. </p>",
   826          "ListRepositoriesInDomainRequest$nextToken": "<p> 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. </p>",
   827          "ListRepositoriesInDomainResult$nextToken": "<p> If there are additional results, this is the token for the next set of results. </p>",
   828          "ListRepositoriesRequest$nextToken": "<p> 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. </p>",
   829          "ListRepositoriesResult$nextToken": "<p> If there are additional results, this is the token for the next set of results. </p>"
   830        }
   831      },
   832      "PolicyDocument": {
   833        "base": null,
   834        "refs": {
   835          "PutDomainPermissionsPolicyRequest$policyDocument": "<p> A valid displayable JSON Aspen policy string to be set as the access control resource policy on the provided domain. </p>",
   836          "PutRepositoryPermissionsPolicyRequest$policyDocument": "<p> A valid displayable JSON Aspen policy string to be set as the access control resource policy on the provided repository. </p>",
   837          "ResourcePolicy$document": "<p> The resource policy formatted in JSON. </p>"
   838        }
   839      },
   840      "PolicyRevision": {
   841        "base": null,
   842        "refs": {
   843          "DeleteDomainPermissionsPolicyRequest$policyRevision": "<p> 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. </p>",
   844          "DeleteRepositoryPermissionsPolicyRequest$policyRevision": "<p> 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. </p>",
   845          "PutDomainPermissionsPolicyRequest$policyRevision": "<p> 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. </p>",
   846          "PutRepositoryPermissionsPolicyRequest$policyRevision": "<p> 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. </p>",
   847          "ResourcePolicy$revision": "<p> The current revision of the resource policy. </p>"
   848        }
   849      },
   850      "PutDomainPermissionsPolicyRequest": {
   851        "base": null,
   852        "refs": {
   853        }
   854      },
   855      "PutDomainPermissionsPolicyResult": {
   856        "base": null,
   857        "refs": {
   858        }
   859      },
   860      "PutRepositoryPermissionsPolicyRequest": {
   861        "base": null,
   862        "refs": {
   863        }
   864      },
   865      "PutRepositoryPermissionsPolicyResult": {
   866        "base": null,
   867        "refs": {
   868        }
   869      },
   870      "RepositoryDescription": {
   871        "base": "<p> The details of a repository stored in AWS CodeArtifact. A CodeArtifact repository contains a set of package versions, each of which maps to a set of assets. Repositories are polyglot—a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the <code>npm</code> CLI, the Maven CLI (<code>mvn</code>), and <code>pip</code>. You can create up to 100 repositories per AWS account. </p>",
   872        "refs": {
   873          "AssociateExternalConnectionResult$repository": "<p> Information about the connected repository after processing the request. </p>",
   874          "CreateRepositoryResult$repository": "<p> Information about the created repository after processing the request. </p>",
   875          "DeleteRepositoryResult$repository": "<p> Information about the deleted repository after processing the request. </p>",
   876          "DescribeRepositoryResult$repository": "<p> A <code>RepositoryDescription</code> object that contains the requested repository information. </p>",
   877          "DisassociateExternalConnectionResult$repository": "<p> The repository associated with the removed external connection. </p>",
   878          "UpdateRepositoryResult$repository": "<p> The updated repository. </p>"
   879        }
   880      },
   881      "RepositoryExternalConnectionInfo": {
   882        "base": "<p> Contains information about the external connection of a repository. </p>",
   883        "refs": {
   884          "RepositoryExternalConnectionInfoList$member": null
   885        }
   886      },
   887      "RepositoryExternalConnectionInfoList": {
   888        "base": null,
   889        "refs": {
   890          "RepositoryDescription$externalConnections": "<p> An array of external connections associated with the repository. </p>"
   891        }
   892      },
   893      "RepositoryName": {
   894        "base": null,
   895        "refs": {
   896          "AssociateExternalConnectionRequest$repository": "<p> The name of the repository to which the external connection is added. </p>",
   897          "CopyPackageVersionsRequest$sourceRepository": "<p> The name of the repository that contains the package versions to copy. </p>",
   898          "CopyPackageVersionsRequest$destinationRepository": "<p> The name of the repository into which package versions are copied. </p>",
   899          "CreateRepositoryRequest$repository": "<p> The name of the repository to create. </p>",
   900          "DeletePackageVersionsRequest$repository": "<p> The name of the repository that contains the package versions to delete. </p>",
   901          "DeleteRepositoryPermissionsPolicyRequest$repository": "<p> The name of the repository that is associated with the resource policy to be deleted </p>",
   902          "DeleteRepositoryRequest$repository": "<p> The name of the repository to delete. </p>",
   903          "DescribePackageVersionRequest$repository": "<p> The name of the repository that contains the package version. </p>",
   904          "DescribeRepositoryRequest$repository": "<p> A string that specifies the name of the requested repository. </p>",
   905          "DisassociateExternalConnectionRequest$repository": "<p>The name of the repository from which the external connection will be removed. </p>",
   906          "DisposePackageVersionsRequest$repository": "<p> The name of the repository that contains the package versions you want to dispose. </p>",
   907          "GetPackageVersionAssetRequest$repository": "<p> The repository that contains the package version with the requested asset. </p>",
   908          "GetPackageVersionReadmeRequest$repository": "<p> The repository that contains the package with the requested readme file. </p>",
   909          "GetRepositoryEndpointRequest$repository": "<p> The name of the repository. </p>",
   910          "GetRepositoryPermissionsPolicyRequest$repository": "<p> The name of the repository whose associated resource policy is to be retrieved. </p>",
   911          "ListPackageVersionAssetsRequest$repository": "<p> The name of the repository that contains the package that contains the returned package version assets. </p>",
   912          "ListPackageVersionDependenciesRequest$repository": "<p> The name of the repository that contains the requested package version. </p>",
   913          "ListPackageVersionsRequest$repository": "<p> The name of the repository that contains the package. </p>",
   914          "ListPackagesRequest$repository": "<p> The name of the repository from which packages are to be listed. </p>",
   915          "ListRepositoriesInDomainRequest$repositoryPrefix": "<p> A prefix used to filter returned repositories. Only repositories with names that start with <code>repositoryPrefix</code> are returned. </p>",
   916          "ListRepositoriesRequest$repositoryPrefix": "<p> A prefix used to filter returned repositories. Only repositories with names that start with <code>repositoryPrefix</code> are returned.</p>",
   917          "PutRepositoryPermissionsPolicyRequest$repository": "<p> The name of the repository to set the resource policy on. </p>",
   918          "RepositoryDescription$name": "<p> The name of the repository. </p>",
   919          "RepositorySummary$name": "<p> The name of the repository. </p>",
   920          "UpdatePackageVersionsStatusRequest$repository": "<p> The repository that contains the package versions with the status you want to update. </p>",
   921          "UpdateRepositoryRequest$repository": "<p> The name of the repository to update. </p>",
   922          "UpstreamRepository$repositoryName": "<p> The name of an upstream repository. </p>",
   923          "UpstreamRepositoryInfo$repositoryName": "<p> The name of an upstream repository. </p>"
   924        }
   925      },
   926      "RepositorySummary": {
   927        "base": "<p> Details about a repository, including its Amazon Resource Name (ARN), description, and domain information. The <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListRepositories.html\">ListRepositories</a> operation returns a list of <code>RepositorySummary</code> objects. </p>",
   928        "refs": {
   929          "RepositorySummaryList$member": null
   930        }
   931      },
   932      "RepositorySummaryList": {
   933        "base": null,
   934        "refs": {
   935          "ListRepositoriesInDomainResult$repositories": "<p> The returned list of repositories. </p>",
   936          "ListRepositoriesResult$repositories": "<p> The returned list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_RepositorySummary.html\">RepositorySummary</a> objects. </p>"
   937        }
   938      },
   939      "ResourceNotFoundException": {
   940        "base": "<p> The operation did not succeed because the resource requested is not found in the service. </p>",
   941        "refs": {
   942        }
   943      },
   944      "ResourcePolicy": {
   945        "base": "<p> An AWS CodeArtifact resource policy that contains a resource ARN, document details, and a revision. </p>",
   946        "refs": {
   947          "DeleteDomainPermissionsPolicyResult$policy": "<p> Information about the deleted resource policy after processing the request. </p>",
   948          "DeleteRepositoryPermissionsPolicyResult$policy": "<p> Information about the deleted policy after processing the request. </p>",
   949          "GetDomainPermissionsPolicyResult$policy": "<p> The returned resource policy. </p>",
   950          "GetRepositoryPermissionsPolicyResult$policy": "<p> The returned resource policy. </p>",
   951          "PutDomainPermissionsPolicyResult$policy": "<p> The resource policy that was set after processing the request. </p>",
   952          "PutRepositoryPermissionsPolicyResult$policy": "<p> The resource policy that was set after processing the request. </p>"
   953        }
   954      },
   955      "ResourceType": {
   956        "base": null,
   957        "refs": {
   958          "ConflictException$resourceType": "<p> The type of AWS resource. </p>",
   959          "ResourceNotFoundException$resourceType": "<p> The type of AWS resource. </p>",
   960          "ServiceQuotaExceededException$resourceType": "<p> The type of AWS resource. </p>"
   961        }
   962      },
   963      "RetryAfterSeconds": {
   964        "base": null,
   965        "refs": {
   966          "ThrottlingException$retryAfterSeconds": "<p> The time period, in seconds, to wait before retrying the request. </p>"
   967        }
   968      },
   969      "ServiceQuotaExceededException": {
   970        "base": "<p> The operation did not succeed because it would have exceeded a service limit for your account. </p>",
   971        "refs": {
   972        }
   973      },
   974      "String": {
   975        "base": null,
   976        "refs": {
   977          "AccessDeniedException$message": null,
   978          "ConflictException$message": null,
   979          "ConflictException$resourceId": "<p> The ID of the resource. </p>",
   980          "GetAuthorizationTokenResult$authorizationToken": "<p> The returned authentication token. </p>",
   981          "GetPackageVersionReadmeResult$readme": "<p> The text of the returned readme file. </p>",
   982          "GetRepositoryEndpointResult$repositoryEndpoint": "<p> A string that specifies the URL of the returned endpoint. </p>",
   983          "InternalServerException$message": null,
   984          "LicenseInfo$name": "<p> Name of the license. </p>",
   985          "LicenseInfo$url": "<p> The URL for license data. </p>",
   986          "PackageDependency$dependencyType": "<p> The type of a package dependency. The possible values depend on the package type. Example types are <code>compile</code>, <code>runtime</code>, and <code>test</code> for Maven packages, and <code>dev</code>, <code>prod</code>, and <code>optional</code> for npm packages. </p>",
   987          "PackageDependency$versionRequirement": "<p> 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: <code>1.2.3</code>, <code>^2.3.4</code>, or <code>4.x</code>. </p>",
   988          "PackageVersionDescription$summary": "<p> 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. </p>",
   989          "PackageVersionDescription$homePage": "<p> The homepage associated with the package. </p>",
   990          "PackageVersionDescription$sourceCodeRepository": "<p> The repository for the source code in the package version, or the source code used to build it. </p>",
   991          "ResourceNotFoundException$message": null,
   992          "ResourceNotFoundException$resourceId": "<p> The ID of the resource. </p>",
   993          "ServiceQuotaExceededException$message": null,
   994          "ServiceQuotaExceededException$resourceId": "<p> The ID of the resource. </p>",
   995          "SuccessfulPackageVersionInfo$revision": "<p> The revision of a package version. </p>",
   996          "ThrottlingException$message": null,
   997          "ValidationException$message": null
   998        }
   999      },
  1000      "String255": {
  1001        "base": null,
  1002        "refs": {
  1003          "PackageVersionDescription$displayName": "<p> The name of the package that is displayed. The <code>displayName</code> varies depending on the package version's format. For example, if an npm package is named <code>ui</code>, is in the namespace <code>vue</code>, and has the format <code>npm</code>, then the <code>displayName</code> is <code>@vue/ui</code>. </p>"
  1004        }
  1005      },
  1006      "SuccessfulPackageVersionInfo": {
  1007        "base": "<p> Contains the revision and status of a package version. </p>",
  1008        "refs": {
  1009          "SuccessfulPackageVersionInfoMap$value": null
  1010        }
  1011      },
  1012      "SuccessfulPackageVersionInfoMap": {
  1013        "base": null,
  1014        "refs": {
  1015          "CopyPackageVersionsResult$successfulVersions": "<p> A list of the package versions that were successfully copied to your repository. </p>",
  1016          "DeletePackageVersionsResult$successfulVersions": "<p> A list of the package versions that were successfully deleted. </p>",
  1017          "DisposePackageVersionsResult$successfulVersions": "<p> A list of the package versions that were successfully disposed. </p>",
  1018          "UpdatePackageVersionsStatusResult$successfulVersions": "<p> A list of <code>PackageVersionError</code> objects, one for each package version with a status that failed to update. </p>"
  1019        }
  1020      },
  1021      "Tag": {
  1022        "base": "<p>A tag is a key-value pair that can be used to manage, search for, or filter resources in AWS CodeArtifact.</p>",
  1023        "refs": {
  1024          "TagList$member": null
  1025        }
  1026      },
  1027      "TagKey": {
  1028        "base": null,
  1029        "refs": {
  1030          "Tag$key": "<p>The tag key.</p>",
  1031          "TagKeyList$member": null
  1032        }
  1033      },
  1034      "TagKeyList": {
  1035        "base": null,
  1036        "refs": {
  1037          "UntagResourceRequest$tagKeys": "<p>The tag key for each tag that you want to remove from the resource.</p>"
  1038        }
  1039      },
  1040      "TagList": {
  1041        "base": null,
  1042        "refs": {
  1043          "CreateDomainRequest$tags": "<p>One or more tag key-value pairs for the domain.</p>",
  1044          "CreateRepositoryRequest$tags": "<p>One or more tag key-value pairs for the repository.</p>",
  1045          "ListTagsForResourceResult$tags": "<p>A list of tag key and value pairs associated with the specified resource.</p>",
  1046          "TagResourceRequest$tags": "<p>The tags you want to modify or add to the resource.</p>"
  1047        }
  1048      },
  1049      "TagResourceRequest": {
  1050        "base": null,
  1051        "refs": {
  1052        }
  1053      },
  1054      "TagResourceResult": {
  1055        "base": null,
  1056        "refs": {
  1057        }
  1058      },
  1059      "TagValue": {
  1060        "base": null,
  1061        "refs": {
  1062          "Tag$value": "<p>The tag value.</p>"
  1063        }
  1064      },
  1065      "ThrottlingException": {
  1066        "base": "<p> The operation did not succeed because too many requests are sent to the service. </p>",
  1067        "refs": {
  1068        }
  1069      },
  1070      "Timestamp": {
  1071        "base": null,
  1072        "refs": {
  1073          "DomainDescription$createdTime": "<p> A timestamp that represents the date and time the domain was created. </p>",
  1074          "DomainSummary$createdTime": "<p> A timestamp that contains the date and time the domain was created. </p>",
  1075          "GetAuthorizationTokenResult$expiration": "<p> A timestamp that specifies the date and time the authorization token expires. </p>",
  1076          "PackageVersionDescription$publishedTime": "<p> A timestamp that contains the date and time the package version was published. </p>"
  1077        }
  1078      },
  1079      "UntagResourceRequest": {
  1080        "base": null,
  1081        "refs": {
  1082        }
  1083      },
  1084      "UntagResourceResult": {
  1085        "base": null,
  1086        "refs": {
  1087        }
  1088      },
  1089      "UpdatePackageVersionsStatusRequest": {
  1090        "base": null,
  1091        "refs": {
  1092        }
  1093      },
  1094      "UpdatePackageVersionsStatusResult": {
  1095        "base": null,
  1096        "refs": {
  1097        }
  1098      },
  1099      "UpdateRepositoryRequest": {
  1100        "base": null,
  1101        "refs": {
  1102        }
  1103      },
  1104      "UpdateRepositoryResult": {
  1105        "base": null,
  1106        "refs": {
  1107        }
  1108      },
  1109      "UpstreamRepository": {
  1110        "base": "<p> Information about an upstream repository. A list of <code>UpstreamRepository</code> objects is an input parameter to <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_CreateRepository.html\">CreateRepository</a> and <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_UpdateRepository.html\">UpdateRepository</a>. </p>",
  1111        "refs": {
  1112          "UpstreamRepositoryList$member": null
  1113        }
  1114      },
  1115      "UpstreamRepositoryInfo": {
  1116        "base": "<p> Information about an upstream repository. </p>",
  1117        "refs": {
  1118          "UpstreamRepositoryInfoList$member": null
  1119        }
  1120      },
  1121      "UpstreamRepositoryInfoList": {
  1122        "base": null,
  1123        "refs": {
  1124          "RepositoryDescription$upstreams": "<p> 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 <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html\">Working with upstream repositories</a>. </p>"
  1125        }
  1126      },
  1127      "UpstreamRepositoryList": {
  1128        "base": null,
  1129        "refs": {
  1130          "CreateRepositoryRequest$upstreams": "<p> 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 <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html\">Working with upstream repositories</a>. </p>",
  1131          "UpdateRepositoryRequest$upstreams": "<p> 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 <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html\">Working with upstream repositories</a>. </p>"
  1132        }
  1133      },
  1134      "ValidationException": {
  1135        "base": "<p> The operation did not succeed because a parameter in the request was sent with an invalid value. </p>",
  1136        "refs": {
  1137        }
  1138      },
  1139      "ValidationExceptionReason": {
  1140        "base": null,
  1141        "refs": {
  1142          "ValidationException$reason": "<p> </p>"
  1143        }
  1144      }
  1145    }
  1146  }