Copies package versions from one repository to another repository in the same domain.
See https://www.paws-r-sdk.com/docs/codeartifact_copy_package_versions/ for full documentation.
codeartifact_copy_package_versions(
domain,
domainOwner = NULL,
sourceRepository,
destinationRepository,
format,
namespace = NULL,
package,
versions = NULL,
versionRevisions = NULL,
allowOverwrite = NULL,
includeFromUpstream = NULL
)
[required] The name of the domain that contains the source and destination repositories.
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
[required] The name of the repository that contains the package versions to be copied.
[required] The name of the repository into which package versions are copied.
[required] The format of the package versions to be copied.
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.
[required] The name of the package that contains the versions to be copied.
The versions of the package to be copied.
You must specify versions
or versionRevisions
. You cannot specify
both.
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.
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.
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.