Interface CopyPackageVersionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeartifactRequest.Builder,CopyableBuilder<CopyPackageVersionsRequest.Builder,CopyPackageVersionsRequest>,SdkBuilder<CopyPackageVersionsRequest.Builder,CopyPackageVersionsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CopyPackageVersionsRequest
public static interface CopyPackageVersionsRequest.Builder extends CodeartifactRequest.Builder, SdkPojo, CopyableBuilder<CopyPackageVersionsRequest.Builder,CopyPackageVersionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CopyPackageVersionsRequest.BuilderallowOverwrite(Boolean allowOverwrite)Set to true to overwrite a package version that already exists in the destination repository.CopyPackageVersionsRequest.BuilderdestinationRepository(String destinationRepository)The name of the repository into which package versions are copied.CopyPackageVersionsRequest.Builderdomain(String domain)The name of the domain that contains the source and destination repositories.CopyPackageVersionsRequest.BuilderdomainOwner(String domainOwner)The 12-digit account number of the Amazon Web Services account that owns the domain.CopyPackageVersionsRequest.Builderformat(String format)The format of the package versions to be copied.CopyPackageVersionsRequest.Builderformat(PackageFormat format)The format of the package versions to be copied.CopyPackageVersionsRequest.BuilderincludeFromUpstream(Boolean includeFromUpstream)Set to true to copy packages from repositories that are upstream from the source repository to the destination repository.CopyPackageVersionsRequest.Buildernamespace(String namespace)The namespace of the package versions to be copied.CopyPackageVersionsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CopyPackageVersionsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CopyPackageVersionsRequest.BuilderpackageValue(String packageValue)The name of the package that contains the versions to be copied.CopyPackageVersionsRequest.BuildersourceRepository(String sourceRepository)The name of the repository that contains the package versions to be copied.CopyPackageVersionsRequest.BuilderversionRevisions(Map<String,String> versionRevisions)A list of key-value pairs.CopyPackageVersionsRequest.Builderversions(String... versions)The versions of the package to be copied.CopyPackageVersionsRequest.Builderversions(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 Detail
-
domain
CopyPackageVersionsRequest.Builder domain(String 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
CopyPackageVersionsRequest.Builder domainOwner(String 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
CopyPackageVersionsRequest.Builder sourceRepository(String 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
CopyPackageVersionsRequest.Builder destinationRepository(String 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
CopyPackageVersionsRequest.Builder format(String 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:
PackageFormat,PackageFormat
-
format
CopyPackageVersionsRequest.Builder format(PackageFormat 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:
PackageFormat,PackageFormat
-
namespace
CopyPackageVersionsRequest.Builder namespace(String 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
CopyPackageVersionsRequest.Builder packageValue(String 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
CopyPackageVersionsRequest.Builder versions(Collection<String> versions)
The versions of the package to be copied.
You must specify
versionsorversionRevisions. You cannot specify both.- Parameters:
versions- The versions of the package to be copied.You must specify
versionsorversionRevisions. You cannot specify both.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versions
CopyPackageVersionsRequest.Builder versions(String... versions)
The versions of the package to be copied.
You must specify
versionsorversionRevisions. You cannot specify both.- Parameters:
versions- The versions of the package to be copied.You must specify
versionsorversionRevisions. You cannot specify both.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionRevisions
CopyPackageVersionsRequest.Builder versionRevisions(Map<String,String> versionRevisions)
A list of key-value pairs. The keys are package versions and the values are package version revisions. A
CopyPackageVersionoperation succeeds if the specified versions in the source repository match the specified package version revision.You must specify
versionsorversionRevisions. You cannot specify both.- Parameters:
versionRevisions- A list of key-value pairs. The keys are package versions and the values are package version revisions. ACopyPackageVersionoperation succeeds if the specified versions in the source repository match the specified package version revision.You must specify
versionsorversionRevisions. You cannot specify both.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowOverwrite
CopyPackageVersionsRequest.Builder allowOverwrite(Boolean 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
failedVersionsfield of the response with anALREADY_EXISTSerror 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 thefailedVersionsfield of the response with anALREADY_EXISTSerror code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
includeFromUpstream
CopyPackageVersionsRequest.Builder includeFromUpstream(Boolean 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)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CopyPackageVersionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-