Interface CopyPackageVersionsRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CodeartifactRequest.Builder
,CopyableBuilder<CopyPackageVersionsRequest.Builder,
,CopyPackageVersionsRequest> SdkBuilder<CopyPackageVersionsRequest.Builder,
,CopyPackageVersionsRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
CopyPackageVersionsRequest
-
Method Summary
Modifier and TypeMethodDescriptionallowOverwrite
(Boolean allowOverwrite) Set to true to overwrite a package version that already exists in the destination repository.destinationRepository
(String destinationRepository) The name of the repository into which package versions are copied.The name of the domain that contains the source and destination repositories.domainOwner
(String domainOwner) The 12-digit account number of the Amazon Web Services account that owns the domain.The format of the package versions to be copied.format
(PackageFormat format) The format of the package versions to be copied.includeFromUpstream
(Boolean includeFromUpstream) Set to true to copy packages from repositories that are upstream from the source repository to the destination repository.The namespace of the package versions to be copied.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.packageValue
(String packageValue) The name of the package that contains the versions to be copied.sourceRepository
(String sourceRepository) The name of the repository that contains the package versions to be copied.versionRevisions
(Map<String, String> versionRevisions) A list of key-value pairs.The versions of the package to be copied.versions
(Collection<String> versions) The versions of the package to be copied.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.services.codeartifact.model.CodeartifactRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
domain
The name of the domain that contains the source and destination repositories.
- Parameters:
domain
- The name of the domain that contains the source and destination repositories.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainOwner
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
- Parameters:
domainOwner
- The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceRepository
The name of the repository that contains the package versions to be copied.
- Parameters:
sourceRepository
- The name of the repository that contains the package versions to be copied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationRepository
The name of the repository into which package versions are copied.
- Parameters:
destinationRepository
- The name of the repository into which package versions are copied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
The format of the package versions to be copied.
- Parameters:
format
- The format of the package versions to be copied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
format
The format of the package versions to be copied.
- Parameters:
format
- The format of the package versions to be copied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
namespace
The namespace of the package versions to be copied. The package version component that specifies its namespace depends on its type. For example:
-
The namespace of a Maven package version is its
groupId
. The namespace is required when copying Maven package versions. -
The namespace of an npm package version is its
scope
. -
Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
-
The namespace of a generic package is its
namespace
.
- Parameters:
namespace
- The namespace of the package versions to be copied. The package version component that specifies its namespace depends on its type. For example:-
The namespace of a Maven package version is its
groupId
. The namespace is required when copying Maven package versions. -
The namespace of an npm package version is its
scope
. -
Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
-
The namespace of a generic package is its
namespace
.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
packageValue
The name of the package that contains the versions to be copied.
- Parameters:
packageValue
- The name of the package that contains the versions to be copied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versions
The versions of the package to be copied.
You must specify
versions
orversionRevisions
. You cannot specify both.- Parameters:
versions
- The versions of the package to be copied.You must specify
versions
orversionRevisions
. You cannot specify both.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versions
The versions of the package to be copied.
You must specify
versions
orversionRevisions
. You cannot specify both.- Parameters:
versions
- The versions of the package to be copied.You must specify
versions
orversionRevisions
. You cannot specify both.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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
orversionRevisions
. You cannot specify both.- Parameters:
versionRevisions
- A list of key-value pairs. The keys are package versions and the values are package version revisions. ACopyPackageVersion
operation succeeds if the specified versions in the source repository match the specified package version revision.You must specify
versions
orversionRevisions
. You cannot specify both.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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 anALREADY_EXISTS
error code.- Parameters:
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 thefailedVersions
field of the response with anALREADY_EXISTS
error code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CopyPackageVersionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
CopyPackageVersionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-