Interface CopyPackageVersionsRequest.Builder

    • 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.
      • 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 versions or versionRevisions. You cannot specify both.

        Parameters:
        versions - The versions of the package to be copied.

        You must specify versions or versionRevisions. 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 versions or versionRevisions. You cannot specify both.

        Parameters:
        versions - The versions of the package to be copied.

        You must specify versions or versionRevisions. 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 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.

        Parameters:
        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.

        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 failedVersions field of the response with an ALREADY_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 the failedVersions field of the response with an ALREADY_EXISTS error 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.