Skip to content

Copy Package Versions

codeartifact_copy_package_versions R Documentation

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

Description

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

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

Usage

codeartifact_copy_package_versions(domain, domainOwner,
  sourceRepository, destinationRepository, format, namespace, package,
  versions, versionRevisions, allowOverwrite, includeFromUpstream)

Arguments

domain

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

domainOwner

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

sourceRepository

[required] The name of the repository that contains the package versions to be copied.

destinationRepository

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

format

[required] The format of the package versions to be copied.

namespace

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

The namespace is required when copying package versions of the following formats:

  • Maven

  • Swift

  • generic

  • The namespace of a Maven package version is its groupId.

  • The namespace of an npm or Swift package version is its scope.

  • The namespace of a generic package is its namespace.

  • Python, NuGet, Ruby, and Cargo package versions do not contain a corresponding component, package versions of those formats do not have a namespace.

package

[required] The name of the package that contains the versions to be copied.

versions

The versions of the package to be copied.

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

versionRevisions

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

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

allowOverwrite

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

includeFromUpstream

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

Value

A list with the following syntax:

list(
  successfulVersions = list(
    list(
      revision = "string",
      status = "Published"|"Unfinished"|"Unlisted"|"Archived"|"Disposed"|"Deleted"
    )
  ),
  failedVersions = list(
    list(
      errorCode = "ALREADY_EXISTS"|"MISMATCHED_REVISION"|"MISMATCHED_STATUS"|"NOT_ALLOWED"|"NOT_FOUND"|"SKIPPED",
      errorMessage = "string"
    )
  )
)

Request syntax

svc$copy_package_versions(
  domain = "string",
  domainOwner = "string",
  sourceRepository = "string",
  destinationRepository = "string",
  format = "npm"|"pypi"|"maven"|"nuget"|"generic"|"ruby"|"swift"|"cargo",
  namespace = "string",
  package = "string",
  versions = list(
    "string"
  ),
  versionRevisions = list(
    "string"
  ),
  allowOverwrite = TRUE|FALSE,
  includeFromUpstream = TRUE|FALSE
)