CopyPackageVersionsResult

CopyPackageVersionsResult schema from Amazon CodeArtifact API

AmazonArtifact RepositoryPackage ManagementDevOpsSoftware Supply ChainnpmMavenPyPINuGet

Properties

Name Type Description
successfulVersions object
failedVersions object
View JSON Schema on GitHub

JSON Schema

codeartifact-copy-package-versions-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-schema/codeartifact-copy-package-versions-result-schema.json",
  "title": "CopyPackageVersionsResult",
  "description": "CopyPackageVersionsResult schema from Amazon CodeArtifact API",
  "type": "object",
  "properties": {
    "successfulVersions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SuccessfulPackageVersionInfoMap"
        },
        {
          "description": " A list of the package versions that were successfully copied to your repository. "
        }
      ]
    },
    "failedVersions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PackageVersionErrorMap"
        },
        {
          "description": "<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>"
        }
      ]
    }
  }
}