Interface CodeartifactClient
- All Superinterfaces:
- AutoCloseable,- AwsClient,- SdkAutoCloseable,- SdkClient
builder() method.
 CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, pip, and dotnet. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client.
CodeArtifact concepts
- 
 Repository: A CodeArtifact repository contains a set of package versions, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools such as the npmCLI or the Maven CLI (mvn). For a list of supported package managers, see the CodeArtifact User Guide.
- 
 Domain: Repositories are aggregated into a higher-level entity known as a domain. All package assets and metadata are stored in the domain, but are consumed through repositories. A given package asset, such as a Maven JAR file, is stored once per domain, no matter how many repositories it's present in. All of the assets and metadata in a domain are encrypted with the same customer master key (CMK) stored in Key Management Service (KMS). Each repository is a member of a single domain and can't be moved to a different domain. The domain allows organizational policy to be applied across multiple repositories, such as which accounts can access repositories in the domain, and which public repositories can be used as sources of packages. Although an organization can have multiple domains, we recommend a single production domain that contains all published artifacts so that teams can find and share packages across their organization. 
- 
 Package: A package is a bundle of software and the metadata required to resolve dependencies and install the software. CodeArtifact supports npm, PyPI, Maven, NuGet, Swift, Ruby, Cargo, and generic package formats. For more information about the supported package formats and how to use CodeArtifact with them, see the CodeArtifact User Guide. In CodeArtifact, a package consists of: - 
 A name (for example, webpackis the name of a popular npm package)
- 
 An optional namespace (for example, @typesin@types/node)
- 
 A set of versions (for example, 1.0.0,1.0.1,1.0.2, etc.)
- 
 Package-level metadata (for example, npm tags) 
 
- 
 
- 
 Package group: A group of packages that match a specified definition. Package groups can be used to apply configuration to multiple packages that match a defined pattern using package format, package namespace, and package name. You can use package groups to more conveniently configure package origin controls for multiple packages. Package origin controls are used to block or allow ingestion or publishing of new package versions, which protects users from malicious actions known as dependency substitution attacks. 
- 
 Package version: A version of a package, such as @types/node 12.6.9. The version number format and semantics vary for different package formats. For example, npm package versions must conform to the Semantic Versioning specification. In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.
- 
 Upstream repository: One repository is upstream of another when the package versions in it can be accessed from the repository endpoint of the downstream repository, effectively merging the contents of the two repositories from the point of view of a client. CodeArtifact allows creating an upstream relationship between two repositories. 
- 
 Asset: An individual file stored in CodeArtifact associated with a package version, such as an npm .tgzfile or Maven POM and JAR files.
CodeArtifact supported API operations
- 
 AssociateExternalConnection: Adds an existing external connection to a repository.
- 
 CopyPackageVersions: Copies package versions from one repository to another repository in the same domain.
- 
 CreateDomain: Creates a domain.
- 
 CreatePackageGroup: Creates a package group.
- 
 CreateRepository: Creates a CodeArtifact repository in a domain.
- 
 DeleteDomain: Deletes a domain. You cannot delete a domain that contains repositories.
- 
 DeleteDomainPermissionsPolicy: Deletes the resource policy that is set on a domain.
- 
 DeletePackage: Deletes a package and all associated package versions.
- 
 DeletePackageGroup: Deletes a package group. Does not delete packages or package versions that are associated with a package group.
- 
 DeletePackageVersions: Deletes versions of a package. After a package has been deleted, it can be republished, but its assets and metadata cannot be restored because they have been permanently removed from storage.
- 
 DeleteRepository: Deletes a repository.
- 
 DeleteRepositoryPermissionsPolicy: Deletes the resource policy that is set on a repository.
- 
 DescribeDomain: Returns aDomainDescriptionobject that contains information about the requested domain.
- 
 DescribePackage: Returns a PackageDescription object that contains details about a package.
- 
 DescribePackageGroup: Returns a PackageGroup object that contains details about a package group.
- 
 DescribePackageVersion: Returns a PackageVersionDescription object that contains details about a package version.
- 
 DescribeRepository: Returns aRepositoryDescriptionobject that contains detailed information about the requested repository.
- 
 DisposePackageVersions: Disposes versions of a package. A package version with the statusDisposedcannot be restored because they have been permanently removed from storage.
- 
 DisassociateExternalConnection: Removes an existing external connection from a repository.
- 
 GetAssociatedPackageGroup: Returns the most closely associated package group to the specified package.
- 
 GetAuthorizationToken: Generates a temporary authorization token for accessing repositories in the domain. The token expires the authorization period has passed. The default authorization period is 12 hours and can be customized to any length with a maximum of 12 hours.
- 
 GetDomainPermissionsPolicy: Returns the policy of a resource that is attached to the specified domain.
- 
 GetPackageVersionAsset: Returns the contents of an asset that is in a package version.
- 
 GetPackageVersionReadme: Gets the readme file or descriptive text for a package version.
- 
 GetRepositoryEndpoint: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:- 
 cargo
- 
 generic
- 
 maven
- 
 npm
- 
 nuget
- 
 pypi
- 
 ruby
- 
 swift
 
- 
 
- 
 GetRepositoryPermissionsPolicy: Returns the resource policy that is set on a repository.
- 
 ListAllowedRepositoriesForGroup: Lists the allowed repositories for a package group that has origin configuration set toALLOW_SPECIFIC_REPOSITORIES.
- 
 ListAssociatedPackages: Returns a list of packages associated with the requested package group.
- 
 ListDomains: Returns a list ofDomainSummaryobjects. Each returnedDomainSummaryobject contains information about a domain.
- 
 ListPackages: Lists the packages in a repository.
- 
 ListPackageGroups: Returns a list of package groups in the requested domain.
- 
 ListPackageVersionAssets: Lists the assets for a given package version.
- 
 ListPackageVersionDependencies: Returns a list of the direct dependencies for a package version.
- 
 ListPackageVersions: Returns a list of package versions for a specified package in a repository.
- 
 ListRepositories: Returns a list of repositories owned by the Amazon Web Services account that called this method.
- 
 ListRepositoriesInDomain: Returns a list of the repositories in a domain.
- 
 ListSubPackageGroups: Returns a list of direct children of the specified package group.
- 
 PublishPackageVersion: Creates a new package version containing one or more assets.
- 
 PutDomainPermissionsPolicy: Attaches a resource policy to a domain.
- 
 PutPackageOriginConfiguration: Sets the package origin configuration for a package, which determine how new versions of the package can be added to a specific repository.
- 
 PutRepositoryPermissionsPolicy: Sets the resource policy on a repository that specifies permissions to access it.
- 
 UpdatePackageGroup: Updates a package group. This API cannot be used to update a package group's origin configuration or pattern.
- 
 UpdatePackageGroupOriginConfiguration: Updates the package origin configuration for a package group.
- 
 UpdatePackageVersionsStatus: Updates the status of one or more versions of a package.
- 
 UpdateRepository: Updates the properties of a repository.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringValue for looking up the service's metadata from theServiceMetadataProvider.static final String
- 
Method SummaryModifier and TypeMethodDescriptionassociateExternalConnection(Consumer<AssociateExternalConnectionRequest.Builder> associateExternalConnectionRequest) Adds an existing external connection to a repository.associateExternalConnection(AssociateExternalConnectionRequest associateExternalConnectionRequest) Adds an existing external connection to a repository.static CodeartifactClientBuilderbuilder()Create a builder that can be used to configure and create aCodeartifactClient.default CopyPackageVersionsResponsecopyPackageVersions(Consumer<CopyPackageVersionsRequest.Builder> copyPackageVersionsRequest) Copies package versions from one repository to another repository in the same domain.default CopyPackageVersionsResponsecopyPackageVersions(CopyPackageVersionsRequest copyPackageVersionsRequest) Copies package versions from one repository to another repository in the same domain.static CodeartifactClientcreate()Create aCodeartifactClientwith the region loaded from theDefaultAwsRegionProviderChainand credentials loaded from theDefaultCredentialsProvider.default CreateDomainResponsecreateDomain(Consumer<CreateDomainRequest.Builder> createDomainRequest) Creates a domain.default CreateDomainResponsecreateDomain(CreateDomainRequest createDomainRequest) Creates a domain.default CreatePackageGroupResponsecreatePackageGroup(Consumer<CreatePackageGroupRequest.Builder> createPackageGroupRequest) Creates a package group.default CreatePackageGroupResponsecreatePackageGroup(CreatePackageGroupRequest createPackageGroupRequest) Creates a package group.default CreateRepositoryResponsecreateRepository(Consumer<CreateRepositoryRequest.Builder> createRepositoryRequest) Creates a repository.default CreateRepositoryResponsecreateRepository(CreateRepositoryRequest createRepositoryRequest) Creates a repository.default DeleteDomainResponsedeleteDomain(Consumer<DeleteDomainRequest.Builder> deleteDomainRequest) Deletes a domain.default DeleteDomainResponsedeleteDomain(DeleteDomainRequest deleteDomainRequest) Deletes a domain.deleteDomainPermissionsPolicy(Consumer<DeleteDomainPermissionsPolicyRequest.Builder> deleteDomainPermissionsPolicyRequest) Deletes the resource policy set on a domain.deleteDomainPermissionsPolicy(DeleteDomainPermissionsPolicyRequest deleteDomainPermissionsPolicyRequest) Deletes the resource policy set on a domain.default DeletePackageResponsedeletePackage(Consumer<DeletePackageRequest.Builder> deletePackageRequest) Deletes a package and all associated package versions.default DeletePackageResponsedeletePackage(DeletePackageRequest deletePackageRequest) Deletes a package and all associated package versions.default DeletePackageGroupResponsedeletePackageGroup(Consumer<DeletePackageGroupRequest.Builder> deletePackageGroupRequest) Deletes a package group.default DeletePackageGroupResponsedeletePackageGroup(DeletePackageGroupRequest deletePackageGroupRequest) Deletes a package group.default DeletePackageVersionsResponsedeletePackageVersions(Consumer<DeletePackageVersionsRequest.Builder> deletePackageVersionsRequest) Deletes one or more versions of a package.default DeletePackageVersionsResponsedeletePackageVersions(DeletePackageVersionsRequest deletePackageVersionsRequest) Deletes one or more versions of a package.default DeleteRepositoryResponsedeleteRepository(Consumer<DeleteRepositoryRequest.Builder> deleteRepositoryRequest) Deletes a repository.default DeleteRepositoryResponsedeleteRepository(DeleteRepositoryRequest deleteRepositoryRequest) Deletes a repository.deleteRepositoryPermissionsPolicy(Consumer<DeleteRepositoryPermissionsPolicyRequest.Builder> deleteRepositoryPermissionsPolicyRequest) Deletes the resource policy that is set on a repository.deleteRepositoryPermissionsPolicy(DeleteRepositoryPermissionsPolicyRequest deleteRepositoryPermissionsPolicyRequest) Deletes the resource policy that is set on a repository.default DescribeDomainResponsedescribeDomain(Consumer<DescribeDomainRequest.Builder> describeDomainRequest) Returns a DomainDescription object that contains information about the requested domain.default DescribeDomainResponsedescribeDomain(DescribeDomainRequest describeDomainRequest) Returns a DomainDescription object that contains information about the requested domain.default DescribePackageResponsedescribePackage(Consumer<DescribePackageRequest.Builder> describePackageRequest) Returns a PackageDescription object that contains information about the requested package.default DescribePackageResponsedescribePackage(DescribePackageRequest describePackageRequest) Returns a PackageDescription object that contains information about the requested package.default DescribePackageGroupResponsedescribePackageGroup(Consumer<DescribePackageGroupRequest.Builder> describePackageGroupRequest) Returns a PackageGroupDescription object that contains information about the requested package group.default DescribePackageGroupResponsedescribePackageGroup(DescribePackageGroupRequest describePackageGroupRequest) Returns a PackageGroupDescription object that contains information about the requested package group.default DescribePackageVersionResponsedescribePackageVersion(Consumer<DescribePackageVersionRequest.Builder> describePackageVersionRequest) Returns a PackageVersionDescription object that contains information about the requested package version.default DescribePackageVersionResponsedescribePackageVersion(DescribePackageVersionRequest describePackageVersionRequest) Returns a PackageVersionDescription object that contains information about the requested package version.default DescribeRepositoryResponsedescribeRepository(Consumer<DescribeRepositoryRequest.Builder> describeRepositoryRequest) Returns aRepositoryDescriptionobject that contains detailed information about the requested repository.default DescribeRepositoryResponsedescribeRepository(DescribeRepositoryRequest describeRepositoryRequest) Returns aRepositoryDescriptionobject that contains detailed information about the requested repository.disassociateExternalConnection(Consumer<DisassociateExternalConnectionRequest.Builder> disassociateExternalConnectionRequest) Removes an existing external connection from a repository.disassociateExternalConnection(DisassociateExternalConnectionRequest disassociateExternalConnectionRequest) Removes an existing external connection from a repository.default DisposePackageVersionsResponsedisposePackageVersions(Consumer<DisposePackageVersionsRequest.Builder> disposePackageVersionsRequest) Deletes the assets in package versions and sets the package versions' status toDisposed.default DisposePackageVersionsResponsedisposePackageVersions(DisposePackageVersionsRequest disposePackageVersionsRequest) Deletes the assets in package versions and sets the package versions' status toDisposed.getAssociatedPackageGroup(Consumer<GetAssociatedPackageGroupRequest.Builder> getAssociatedPackageGroupRequest) Returns the most closely associated package group to the specified package.getAssociatedPackageGroup(GetAssociatedPackageGroupRequest getAssociatedPackageGroupRequest) Returns the most closely associated package group to the specified package.default GetAuthorizationTokenResponsegetAuthorizationToken(Consumer<GetAuthorizationTokenRequest.Builder> getAuthorizationTokenRequest) Generates a temporary authorization token for accessing repositories in the domain.default GetAuthorizationTokenResponsegetAuthorizationToken(GetAuthorizationTokenRequest getAuthorizationTokenRequest) Generates a temporary authorization token for accessing repositories in the domain.getDomainPermissionsPolicy(Consumer<GetDomainPermissionsPolicyRequest.Builder> getDomainPermissionsPolicyRequest) Returns the resource policy attached to the specified domain.getDomainPermissionsPolicy(GetDomainPermissionsPolicyRequest getDomainPermissionsPolicyRequest) Returns the resource policy attached to the specified domain.getPackageVersionAsset(Consumer<GetPackageVersionAssetRequest.Builder> getPackageVersionAssetRequest) Returns an asset (or file) that is in a package.default GetPackageVersionAssetResponsegetPackageVersionAsset(Consumer<GetPackageVersionAssetRequest.Builder> getPackageVersionAssetRequest, Path destinationPath) Returns an asset (or file) that is in a package.default <ReturnT> ReturnTgetPackageVersionAsset(Consumer<GetPackageVersionAssetRequest.Builder> getPackageVersionAssetRequest, ResponseTransformer<GetPackageVersionAssetResponse, ReturnT> responseTransformer) Returns an asset (or file) that is in a package.getPackageVersionAsset(GetPackageVersionAssetRequest getPackageVersionAssetRequest) Returns an asset (or file) that is in a package.default GetPackageVersionAssetResponsegetPackageVersionAsset(GetPackageVersionAssetRequest getPackageVersionAssetRequest, Path destinationPath) Returns an asset (or file) that is in a package.default <ReturnT> ReturnTgetPackageVersionAsset(GetPackageVersionAssetRequest getPackageVersionAssetRequest, ResponseTransformer<GetPackageVersionAssetResponse, ReturnT> responseTransformer) Returns an asset (or file) that is in a package.getPackageVersionAssetAsBytes(Consumer<GetPackageVersionAssetRequest.Builder> getPackageVersionAssetRequest) Returns an asset (or file) that is in a package.getPackageVersionAssetAsBytes(GetPackageVersionAssetRequest getPackageVersionAssetRequest) Returns an asset (or file) that is in a package.default GetPackageVersionReadmeResponsegetPackageVersionReadme(Consumer<GetPackageVersionReadmeRequest.Builder> getPackageVersionReadmeRequest) Gets the readme file or descriptive text for a package version.default GetPackageVersionReadmeResponsegetPackageVersionReadme(GetPackageVersionReadmeRequest getPackageVersionReadmeRequest) Gets the readme file or descriptive text for a package version.default GetRepositoryEndpointResponsegetRepositoryEndpoint(Consumer<GetRepositoryEndpointRequest.Builder> getRepositoryEndpointRequest) Returns the endpoint of a repository for a specific package format.default GetRepositoryEndpointResponsegetRepositoryEndpoint(GetRepositoryEndpointRequest getRepositoryEndpointRequest) Returns the endpoint of a repository for a specific package format.getRepositoryPermissionsPolicy(Consumer<GetRepositoryPermissionsPolicyRequest.Builder> getRepositoryPermissionsPolicyRequest) Returns the resource policy that is set on a repository.getRepositoryPermissionsPolicy(GetRepositoryPermissionsPolicyRequest getRepositoryPermissionsPolicyRequest) Returns the resource policy that is set on a repository.listAllowedRepositoriesForGroup(Consumer<ListAllowedRepositoriesForGroupRequest.Builder> listAllowedRepositoriesForGroupRequest) Lists the repositories in the added repositories list of the specified restriction type for a package group.listAllowedRepositoriesForGroup(ListAllowedRepositoriesForGroupRequest listAllowedRepositoriesForGroupRequest) Lists the repositories in the added repositories list of the specified restriction type for a package group.listAllowedRepositoriesForGroupPaginator(Consumer<ListAllowedRepositoriesForGroupRequest.Builder> listAllowedRepositoriesForGroupRequest) This is a variant oflistAllowedRepositoriesForGroup(software.amazon.awssdk.services.codeartifact.model.ListAllowedRepositoriesForGroupRequest)operation.listAllowedRepositoriesForGroupPaginator(ListAllowedRepositoriesForGroupRequest listAllowedRepositoriesForGroupRequest) This is a variant oflistAllowedRepositoriesForGroup(software.amazon.awssdk.services.codeartifact.model.ListAllowedRepositoriesForGroupRequest)operation.default ListAssociatedPackagesResponselistAssociatedPackages(Consumer<ListAssociatedPackagesRequest.Builder> listAssociatedPackagesRequest) Returns a list of packages associated with the requested package group.default ListAssociatedPackagesResponselistAssociatedPackages(ListAssociatedPackagesRequest listAssociatedPackagesRequest) Returns a list of packages associated with the requested package group.default ListAssociatedPackagesIterablelistAssociatedPackagesPaginator(Consumer<ListAssociatedPackagesRequest.Builder> listAssociatedPackagesRequest) This is a variant oflistAssociatedPackages(software.amazon.awssdk.services.codeartifact.model.ListAssociatedPackagesRequest)operation.default ListAssociatedPackagesIterablelistAssociatedPackagesPaginator(ListAssociatedPackagesRequest listAssociatedPackagesRequest) This is a variant oflistAssociatedPackages(software.amazon.awssdk.services.codeartifact.model.ListAssociatedPackagesRequest)operation.default ListDomainsResponselistDomains(Consumer<ListDomainsRequest.Builder> listDomainsRequest) Returns a list of DomainSummary objects for all domains owned by the Amazon Web Services account that makes this call.default ListDomainsResponselistDomains(ListDomainsRequest listDomainsRequest) Returns a list of DomainSummary objects for all domains owned by the Amazon Web Services account that makes this call.default ListDomainsIterablelistDomainsPaginator(Consumer<ListDomainsRequest.Builder> listDomainsRequest) This is a variant oflistDomains(software.amazon.awssdk.services.codeartifact.model.ListDomainsRequest)operation.default ListDomainsIterablelistDomainsPaginator(ListDomainsRequest listDomainsRequest) This is a variant oflistDomains(software.amazon.awssdk.services.codeartifact.model.ListDomainsRequest)operation.default ListPackageGroupsResponselistPackageGroups(Consumer<ListPackageGroupsRequest.Builder> listPackageGroupsRequest) Returns a list of package groups in the requested domain.default ListPackageGroupsResponselistPackageGroups(ListPackageGroupsRequest listPackageGroupsRequest) Returns a list of package groups in the requested domain.default ListPackageGroupsIterablelistPackageGroupsPaginator(Consumer<ListPackageGroupsRequest.Builder> listPackageGroupsRequest) This is a variant oflistPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListPackageGroupsRequest)operation.default ListPackageGroupsIterablelistPackageGroupsPaginator(ListPackageGroupsRequest listPackageGroupsRequest) This is a variant oflistPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListPackageGroupsRequest)operation.default ListPackagesResponselistPackages(Consumer<ListPackagesRequest.Builder> listPackagesRequest) Returns a list of PackageSummary objects for packages in a repository that match the request parameters.default ListPackagesResponselistPackages(ListPackagesRequest listPackagesRequest) Returns a list of PackageSummary objects for packages in a repository that match the request parameters.default ListPackagesIterablelistPackagesPaginator(Consumer<ListPackagesRequest.Builder> listPackagesRequest) This is a variant oflistPackages(software.amazon.awssdk.services.codeartifact.model.ListPackagesRequest)operation.default ListPackagesIterablelistPackagesPaginator(ListPackagesRequest listPackagesRequest) This is a variant oflistPackages(software.amazon.awssdk.services.codeartifact.model.ListPackagesRequest)operation.default ListPackageVersionAssetsResponselistPackageVersionAssets(Consumer<ListPackageVersionAssetsRequest.Builder> listPackageVersionAssetsRequest) Returns a list of AssetSummary objects for assets in a package version.default ListPackageVersionAssetsResponselistPackageVersionAssets(ListPackageVersionAssetsRequest listPackageVersionAssetsRequest) Returns a list of AssetSummary objects for assets in a package version.default ListPackageVersionAssetsIterablelistPackageVersionAssetsPaginator(Consumer<ListPackageVersionAssetsRequest.Builder> listPackageVersionAssetsRequest) This is a variant oflistPackageVersionAssets(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionAssetsRequest)operation.default ListPackageVersionAssetsIterablelistPackageVersionAssetsPaginator(ListPackageVersionAssetsRequest listPackageVersionAssetsRequest) This is a variant oflistPackageVersionAssets(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionAssetsRequest)operation.listPackageVersionDependencies(Consumer<ListPackageVersionDependenciesRequest.Builder> listPackageVersionDependenciesRequest) Returns the direct dependencies for a package version.listPackageVersionDependencies(ListPackageVersionDependenciesRequest listPackageVersionDependenciesRequest) Returns the direct dependencies for a package version.default ListPackageVersionsResponselistPackageVersions(Consumer<ListPackageVersionsRequest.Builder> listPackageVersionsRequest) Returns a list of PackageVersionSummary objects for package versions in a repository that match the request parameters.default ListPackageVersionsResponselistPackageVersions(ListPackageVersionsRequest listPackageVersionsRequest) Returns a list of PackageVersionSummary objects for package versions in a repository that match the request parameters.default ListPackageVersionsIterablelistPackageVersionsPaginator(Consumer<ListPackageVersionsRequest.Builder> listPackageVersionsRequest) This is a variant oflistPackageVersions(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionsRequest)operation.default ListPackageVersionsIterablelistPackageVersionsPaginator(ListPackageVersionsRequest listPackageVersionsRequest) This is a variant oflistPackageVersions(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionsRequest)operation.default ListRepositoriesResponselistRepositories(Consumer<ListRepositoriesRequest.Builder> listRepositoriesRequest) Returns a list of RepositorySummary objects.default ListRepositoriesResponselistRepositories(ListRepositoriesRequest listRepositoriesRequest) Returns a list of RepositorySummary objects.default ListRepositoriesInDomainResponselistRepositoriesInDomain(Consumer<ListRepositoriesInDomainRequest.Builder> listRepositoriesInDomainRequest) Returns a list of RepositorySummary objects.default ListRepositoriesInDomainResponselistRepositoriesInDomain(ListRepositoriesInDomainRequest listRepositoriesInDomainRequest) Returns a list of RepositorySummary objects.default ListRepositoriesInDomainIterablelistRepositoriesInDomainPaginator(Consumer<ListRepositoriesInDomainRequest.Builder> listRepositoriesInDomainRequest) This is a variant oflistRepositoriesInDomain(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesInDomainRequest)operation.default ListRepositoriesInDomainIterablelistRepositoriesInDomainPaginator(ListRepositoriesInDomainRequest listRepositoriesInDomainRequest) This is a variant oflistRepositoriesInDomain(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesInDomainRequest)operation.default ListRepositoriesIterablelistRepositoriesPaginator(Consumer<ListRepositoriesRequest.Builder> listRepositoriesRequest) This is a variant oflistRepositories(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesRequest)operation.default ListRepositoriesIterablelistRepositoriesPaginator(ListRepositoriesRequest listRepositoriesRequest) This is a variant oflistRepositories(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesRequest)operation.default ListSubPackageGroupsResponselistSubPackageGroups(Consumer<ListSubPackageGroupsRequest.Builder> listSubPackageGroupsRequest) Returns a list of direct children of the specified package group.default ListSubPackageGroupsResponselistSubPackageGroups(ListSubPackageGroupsRequest listSubPackageGroupsRequest) Returns a list of direct children of the specified package group.default ListSubPackageGroupsIterablelistSubPackageGroupsPaginator(Consumer<ListSubPackageGroupsRequest.Builder> listSubPackageGroupsRequest) This is a variant oflistSubPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListSubPackageGroupsRequest)operation.default ListSubPackageGroupsIterablelistSubPackageGroupsPaginator(ListSubPackageGroupsRequest listSubPackageGroupsRequest) This is a variant oflistSubPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListSubPackageGroupsRequest)operation.default ListTagsForResourceResponselistTagsForResource(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest) Gets information about Amazon Web Services tags for a specified Amazon Resource Name (ARN) in CodeArtifact.default ListTagsForResourceResponselistTagsForResource(ListTagsForResourceRequest listTagsForResourceRequest) Gets information about Amazon Web Services tags for a specified Amazon Resource Name (ARN) in CodeArtifact.default PublishPackageVersionResponsepublishPackageVersion(Consumer<PublishPackageVersionRequest.Builder> publishPackageVersionRequest, Path sourcePath) Creates a new package version containing one or more assets (or files).default PublishPackageVersionResponsepublishPackageVersion(Consumer<PublishPackageVersionRequest.Builder> publishPackageVersionRequest, RequestBody requestBody) Creates a new package version containing one or more assets (or files).default PublishPackageVersionResponsepublishPackageVersion(PublishPackageVersionRequest publishPackageVersionRequest, Path sourcePath) Creates a new package version containing one or more assets (or files).default PublishPackageVersionResponsepublishPackageVersion(PublishPackageVersionRequest publishPackageVersionRequest, RequestBody requestBody) Creates a new package version containing one or more assets (or files).putDomainPermissionsPolicy(Consumer<PutDomainPermissionsPolicyRequest.Builder> putDomainPermissionsPolicyRequest) Sets a resource policy on a domain that specifies permissions to access it.putDomainPermissionsPolicy(PutDomainPermissionsPolicyRequest putDomainPermissionsPolicyRequest) Sets a resource policy on a domain that specifies permissions to access it.putPackageOriginConfiguration(Consumer<PutPackageOriginConfigurationRequest.Builder> putPackageOriginConfigurationRequest) Sets the package origin configuration for a package.putPackageOriginConfiguration(PutPackageOriginConfigurationRequest putPackageOriginConfigurationRequest) Sets the package origin configuration for a package.putRepositoryPermissionsPolicy(Consumer<PutRepositoryPermissionsPolicyRequest.Builder> putRepositoryPermissionsPolicyRequest) Sets the resource policy on a repository that specifies permissions to access it.putRepositoryPermissionsPolicy(PutRepositoryPermissionsPolicyRequest putRepositoryPermissionsPolicyRequest) Sets the resource policy on a repository that specifies permissions to access it.The SDK service client configuration exposes client settings to the user, e.g., ClientOverrideConfigurationstatic ServiceMetadatadefault TagResourceResponsetagResource(Consumer<TagResourceRequest.Builder> tagResourceRequest) Adds or updates tags for a resource in CodeArtifact.default TagResourceResponsetagResource(TagResourceRequest tagResourceRequest) Adds or updates tags for a resource in CodeArtifact.default UntagResourceResponseuntagResource(Consumer<UntagResourceRequest.Builder> untagResourceRequest) Removes tags from a resource in CodeArtifact.default UntagResourceResponseuntagResource(UntagResourceRequest untagResourceRequest) Removes tags from a resource in CodeArtifact.default UpdatePackageGroupResponseupdatePackageGroup(Consumer<UpdatePackageGroupRequest.Builder> updatePackageGroupRequest) Updates a package group.default UpdatePackageGroupResponseupdatePackageGroup(UpdatePackageGroupRequest updatePackageGroupRequest) Updates a package group.updatePackageGroupOriginConfiguration(Consumer<UpdatePackageGroupOriginConfigurationRequest.Builder> updatePackageGroupOriginConfigurationRequest) Updates the package origin configuration for a package group.updatePackageGroupOriginConfiguration(UpdatePackageGroupOriginConfigurationRequest updatePackageGroupOriginConfigurationRequest) Updates the package origin configuration for a package group.updatePackageVersionsStatus(Consumer<UpdatePackageVersionsStatusRequest.Builder> updatePackageVersionsStatusRequest) Updates the status of one or more versions of a package.updatePackageVersionsStatus(UpdatePackageVersionsStatusRequest updatePackageVersionsStatusRequest) Updates the status of one or more versions of a package.default UpdateRepositoryResponseupdateRepository(Consumer<UpdateRepositoryRequest.Builder> updateRepositoryRequest) Update the properties of a repository.default UpdateRepositoryResponseupdateRepository(UpdateRepositoryRequest updateRepositoryRequest) Update the properties of a repository.Methods inherited from interface software.amazon.awssdk.utils.SdkAutoCloseablecloseMethods inherited from interface software.amazon.awssdk.core.SdkClientserviceName
- 
Field Details- 
SERVICE_NAME- See Also:
 
- 
SERVICE_METADATA_IDValue for looking up the service's metadata from theServiceMetadataProvider.- See Also:
 
 
- 
- 
Method Details- 
associateExternalConnectiondefault AssociateExternalConnectionResponse associateExternalConnection(AssociateExternalConnectionRequest associateExternalConnectionRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Adds an existing external connection to a repository. One external connection is allowed per repository. A repository can have one or more upstream repositories, or an external connection. - Parameters:
- associateExternalConnectionRequest-
- Returns:
- Result of the AssociateExternalConnection operation returned by the service.
- See Also:
 
- 
associateExternalConnectiondefault AssociateExternalConnectionResponse associateExternalConnection(Consumer<AssociateExternalConnectionRequest.Builder> associateExternalConnectionRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Adds an existing external connection to a repository. One external connection is allowed per repository. A repository can have one or more upstream repositories, or an external connection. 
 This is a convenience which creates an instance of the AssociateExternalConnectionRequest.Builderavoiding the need to create one manually viaAssociateExternalConnectionRequest.builder()- Parameters:
- associateExternalConnectionRequest- A- Consumerthat will call methods on- AssociateExternalConnectionRequest.Builderto create a request.
- Returns:
- Result of the AssociateExternalConnection operation returned by the service.
- See Also:
 
- 
copyPackageVersionsdefault CopyPackageVersionsResponse copyPackageVersions(CopyPackageVersionsRequest copyPackageVersionsRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Copies package versions from one repository to another repository in the same domain. You must specify versionsorversionRevisions. You cannot specify both.- Parameters:
- copyPackageVersionsRequest-
- Returns:
- Result of the CopyPackageVersions operation returned by the service.
- See Also:
 
- 
copyPackageVersionsdefault CopyPackageVersionsResponse copyPackageVersions(Consumer<CopyPackageVersionsRequest.Builder> copyPackageVersionsRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Copies package versions from one repository to another repository in the same domain. You must specify versionsorversionRevisions. You cannot specify both.
 This is a convenience which creates an instance of the CopyPackageVersionsRequest.Builderavoiding the need to create one manually viaCopyPackageVersionsRequest.builder()- Parameters:
- copyPackageVersionsRequest- A- Consumerthat will call methods on- CopyPackageVersionsRequest.Builderto create a request.
- Returns:
- Result of the CopyPackageVersions operation returned by the service.
- See Also:
 
- 
createDomaindefault CreateDomainResponse createDomain(CreateDomainRequest createDomainRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Creates a domain. CodeArtifact domains make it easier to manage multiple repositories across an organization. You can use a domain to apply permissions across many repositories owned by different Amazon Web Services accounts. An asset is stored only once in a domain, even if it's in multiple repositories. Although you can have multiple domains, we recommend a single production domain that contains all published artifacts so that your development teams can find and share packages. You can use a second pre-production domain to test changes to the production domain configuration. - Parameters:
- createDomainRequest-
- Returns:
- Result of the CreateDomain operation returned by the service.
- See Also:
 
- 
createDomaindefault CreateDomainResponse createDomain(Consumer<CreateDomainRequest.Builder> createDomainRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Creates a domain. CodeArtifact domains make it easier to manage multiple repositories across an organization. You can use a domain to apply permissions across many repositories owned by different Amazon Web Services accounts. An asset is stored only once in a domain, even if it's in multiple repositories. Although you can have multiple domains, we recommend a single production domain that contains all published artifacts so that your development teams can find and share packages. You can use a second pre-production domain to test changes to the production domain configuration. 
 This is a convenience which creates an instance of the CreateDomainRequest.Builderavoiding the need to create one manually viaCreateDomainRequest.builder()- Parameters:
- createDomainRequest- A- Consumerthat will call methods on- CreateDomainRequest.Builderto create a request.
- Returns:
- Result of the CreateDomain operation returned by the service.
- See Also:
 
- 
createPackageGroupdefault CreatePackageGroupResponse createPackageGroup(CreatePackageGroupRequest createPackageGroupRequest) throws AccessDeniedException, ConflictException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Creates a package group. For more information about creating package groups, including example CLI commands, see Create a package group in the CodeArtifact User Guide. - Parameters:
- createPackageGroupRequest-
- Returns:
- Result of the CreatePackageGroup operation returned by the service.
- See Also:
 
- 
createPackageGroupdefault CreatePackageGroupResponse createPackageGroup(Consumer<CreatePackageGroupRequest.Builder> createPackageGroupRequest) throws AccessDeniedException, ConflictException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Creates a package group. For more information about creating package groups, including example CLI commands, see Create a package group in the CodeArtifact User Guide. 
 This is a convenience which creates an instance of the CreatePackageGroupRequest.Builderavoiding the need to create one manually viaCreatePackageGroupRequest.builder()- Parameters:
- createPackageGroupRequest- A- Consumerthat will call methods on- CreatePackageGroupRequest.Builderto create a request.
- Returns:
- Result of the CreatePackageGroup operation returned by the service.
- See Also:
 
- 
createRepositorydefault CreateRepositoryResponse createRepository(CreateRepositoryRequest createRepositoryRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Creates a repository. - Parameters:
- createRepositoryRequest-
- Returns:
- Result of the CreateRepository operation returned by the service.
- See Also:
 
- 
createRepositorydefault CreateRepositoryResponse createRepository(Consumer<CreateRepositoryRequest.Builder> createRepositoryRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Creates a repository. 
 This is a convenience which creates an instance of the CreateRepositoryRequest.Builderavoiding the need to create one manually viaCreateRepositoryRequest.builder()- Parameters:
- createRepositoryRequest- A- Consumerthat will call methods on- CreateRepositoryRequest.Builderto create a request.
- Returns:
- Result of the CreateRepository operation returned by the service.
- See Also:
 
- 
deleteDomaindefault DeleteDomainResponse deleteDomain(DeleteDomainRequest deleteDomainRequest) throws AccessDeniedException, ConflictException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes a domain. You cannot delete a domain that contains repositories. If you want to delete a domain with repositories, first delete its repositories. - Parameters:
- deleteDomainRequest-
- Returns:
- Result of the DeleteDomain operation returned by the service.
- See Also:
 
- 
deleteDomaindefault DeleteDomainResponse deleteDomain(Consumer<DeleteDomainRequest.Builder> deleteDomainRequest) throws AccessDeniedException, ConflictException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes a domain. You cannot delete a domain that contains repositories. If you want to delete a domain with repositories, first delete its repositories. 
 This is a convenience which creates an instance of the DeleteDomainRequest.Builderavoiding the need to create one manually viaDeleteDomainRequest.builder()- Parameters:
- deleteDomainRequest- A- Consumerthat will call methods on- DeleteDomainRequest.Builderto create a request.
- Returns:
- Result of the DeleteDomain operation returned by the service.
- See Also:
 
- 
deleteDomainPermissionsPolicydefault DeleteDomainPermissionsPolicyResponse deleteDomainPermissionsPolicy(DeleteDomainPermissionsPolicyRequest deleteDomainPermissionsPolicyRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes the resource policy set on a domain. - Parameters:
- deleteDomainPermissionsPolicyRequest-
- Returns:
- Result of the DeleteDomainPermissionsPolicy operation returned by the service.
- See Also:
 
- 
deleteDomainPermissionsPolicydefault DeleteDomainPermissionsPolicyResponse deleteDomainPermissionsPolicy(Consumer<DeleteDomainPermissionsPolicyRequest.Builder> deleteDomainPermissionsPolicyRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes the resource policy set on a domain. 
 This is a convenience which creates an instance of the DeleteDomainPermissionsPolicyRequest.Builderavoiding the need to create one manually viaDeleteDomainPermissionsPolicyRequest.builder()- Parameters:
- deleteDomainPermissionsPolicyRequest- A- Consumerthat will call methods on- DeleteDomainPermissionsPolicyRequest.Builderto create a request.
- Returns:
- Result of the DeleteDomainPermissionsPolicy operation returned by the service.
- See Also:
 
- 
deletePackagedefault DeletePackageResponse deletePackage(DeletePackageRequest deletePackageRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes a package and all associated package versions. A deleted package cannot be restored. To delete one or more package versions, use the DeletePackageVersions API. - Parameters:
- deletePackageRequest-
- Returns:
- Result of the DeletePackage operation returned by the service.
- See Also:
 
- 
deletePackagedefault DeletePackageResponse deletePackage(Consumer<DeletePackageRequest.Builder> deletePackageRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes a package and all associated package versions. A deleted package cannot be restored. To delete one or more package versions, use the DeletePackageVersions API. 
 This is a convenience which creates an instance of the DeletePackageRequest.Builderavoiding the need to create one manually viaDeletePackageRequest.builder()- Parameters:
- deletePackageRequest- A- Consumerthat will call methods on- DeletePackageRequest.Builderto create a request.
- Returns:
- Result of the DeletePackage operation returned by the service.
- See Also:
 
- 
deletePackageGroupdefault DeletePackageGroupResponse deletePackageGroup(DeletePackageGroupRequest deletePackageGroupRequest) throws AccessDeniedException, ConflictException, InternalServerException, ServiceQuotaExceededException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes a package group. Deleting a package group does not delete packages or package versions associated with the package group. When a package group is deleted, the direct child package groups will become children of the package group's direct parent package group. Therefore, if any of the child groups are inheriting any settings from the parent, those settings could change. - Parameters:
- deletePackageGroupRequest-
- Returns:
- Result of the DeletePackageGroup operation returned by the service.
- See Also:
 
- 
deletePackageGroupdefault DeletePackageGroupResponse deletePackageGroup(Consumer<DeletePackageGroupRequest.Builder> deletePackageGroupRequest) throws AccessDeniedException, ConflictException, InternalServerException, ServiceQuotaExceededException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes a package group. Deleting a package group does not delete packages or package versions associated with the package group. When a package group is deleted, the direct child package groups will become children of the package group's direct parent package group. Therefore, if any of the child groups are inheriting any settings from the parent, those settings could change. 
 This is a convenience which creates an instance of the DeletePackageGroupRequest.Builderavoiding the need to create one manually viaDeletePackageGroupRequest.builder()- Parameters:
- deletePackageGroupRequest- A- Consumerthat will call methods on- DeletePackageGroupRequest.Builderto create a request.
- Returns:
- Result of the DeletePackageGroup operation returned by the service.
- See Also:
 
- 
deletePackageVersionsdefault DeletePackageVersionsResponse deletePackageVersions(DeletePackageVersionsRequest deletePackageVersionsRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes one or more versions of a package. A deleted package version cannot be restored in your repository. If you want to remove a package version from your repository and be able to restore it later, set its status to Archived. Archived packages cannot be downloaded from a repository and don't show up with list package APIs (for example, ListPackageVersions), but you can restore them using UpdatePackageVersionsStatus.- Parameters:
- deletePackageVersionsRequest-
- Returns:
- Result of the DeletePackageVersions operation returned by the service.
- See Also:
 
- 
deletePackageVersionsdefault DeletePackageVersionsResponse deletePackageVersions(Consumer<DeletePackageVersionsRequest.Builder> deletePackageVersionsRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes one or more versions of a package. A deleted package version cannot be restored in your repository. If you want to remove a package version from your repository and be able to restore it later, set its status to Archived. Archived packages cannot be downloaded from a repository and don't show up with list package APIs (for example, ListPackageVersions), but you can restore them using UpdatePackageVersionsStatus.
 This is a convenience which creates an instance of the DeletePackageVersionsRequest.Builderavoiding the need to create one manually viaDeletePackageVersionsRequest.builder()- Parameters:
- deletePackageVersionsRequest- A- Consumerthat will call methods on- DeletePackageVersionsRequest.Builderto create a request.
- Returns:
- Result of the DeletePackageVersions operation returned by the service.
- See Also:
 
- 
deleteRepositorydefault DeleteRepositoryResponse deleteRepository(DeleteRepositoryRequest deleteRepositoryRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes a repository. - Parameters:
- deleteRepositoryRequest-
- Returns:
- Result of the DeleteRepository operation returned by the service.
- See Also:
 
- 
deleteRepositorydefault DeleteRepositoryResponse deleteRepository(Consumer<DeleteRepositoryRequest.Builder> deleteRepositoryRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes a repository. 
 This is a convenience which creates an instance of the DeleteRepositoryRequest.Builderavoiding the need to create one manually viaDeleteRepositoryRequest.builder()- Parameters:
- deleteRepositoryRequest- A- Consumerthat will call methods on- DeleteRepositoryRequest.Builderto create a request.
- Returns:
- Result of the DeleteRepository operation returned by the service.
- See Also:
 
- 
deleteRepositoryPermissionsPolicydefault DeleteRepositoryPermissionsPolicyResponse deleteRepositoryPermissionsPolicy(DeleteRepositoryPermissionsPolicyRequest deleteRepositoryPermissionsPolicyRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes the resource policy that is set on a repository. After a resource policy is deleted, the permissions allowed and denied by the deleted policy are removed. The effect of deleting a resource policy might not be immediate. Use DeleteRepositoryPermissionsPolicywith caution. After a policy is deleted, Amazon Web Services users, roles, and accounts lose permissions to perform the repository actions granted by the deleted policy.- Parameters:
- deleteRepositoryPermissionsPolicyRequest-
- Returns:
- Result of the DeleteRepositoryPermissionsPolicy operation returned by the service.
- See Also:
 
- 
deleteRepositoryPermissionsPolicydefault DeleteRepositoryPermissionsPolicyResponse deleteRepositoryPermissionsPolicy(Consumer<DeleteRepositoryPermissionsPolicyRequest.Builder> deleteRepositoryPermissionsPolicyRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes the resource policy that is set on a repository. After a resource policy is deleted, the permissions allowed and denied by the deleted policy are removed. The effect of deleting a resource policy might not be immediate. Use DeleteRepositoryPermissionsPolicywith caution. After a policy is deleted, Amazon Web Services users, roles, and accounts lose permissions to perform the repository actions granted by the deleted policy.
 This is a convenience which creates an instance of the DeleteRepositoryPermissionsPolicyRequest.Builderavoiding the need to create one manually viaDeleteRepositoryPermissionsPolicyRequest.builder()- Parameters:
- deleteRepositoryPermissionsPolicyRequest- A- Consumerthat will call methods on- DeleteRepositoryPermissionsPolicyRequest.Builderto create a request.
- Returns:
- Result of the DeleteRepositoryPermissionsPolicy operation returned by the service.
- See Also:
 
- 
describeDomaindefault DescribeDomainResponse describeDomain(DescribeDomainRequest describeDomainRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a DomainDescription object that contains information about the requested domain. - Parameters:
- describeDomainRequest-
- Returns:
- Result of the DescribeDomain operation returned by the service.
- See Also:
 
- 
describeDomaindefault DescribeDomainResponse describeDomain(Consumer<DescribeDomainRequest.Builder> describeDomainRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a DomainDescription object that contains information about the requested domain. 
 This is a convenience which creates an instance of the DescribeDomainRequest.Builderavoiding the need to create one manually viaDescribeDomainRequest.builder()- Parameters:
- describeDomainRequest- A- Consumerthat will call methods on- DescribeDomainRequest.Builderto create a request.
- Returns:
- Result of the DescribeDomain operation returned by the service.
- See Also:
 
- 
describePackagedefault DescribePackageResponse describePackage(DescribePackageRequest describePackageRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a PackageDescription object that contains information about the requested package. - Parameters:
- describePackageRequest-
- Returns:
- Result of the DescribePackage operation returned by the service.
- See Also:
 
- 
describePackagedefault DescribePackageResponse describePackage(Consumer<DescribePackageRequest.Builder> describePackageRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a PackageDescription object that contains information about the requested package. 
 This is a convenience which creates an instance of the DescribePackageRequest.Builderavoiding the need to create one manually viaDescribePackageRequest.builder()- Parameters:
- describePackageRequest- A- Consumerthat will call methods on- DescribePackageRequest.Builderto create a request.
- Returns:
- Result of the DescribePackage operation returned by the service.
- See Also:
 
- 
describePackageGroupdefault DescribePackageGroupResponse describePackageGroup(DescribePackageGroupRequest describePackageGroupRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns a PackageGroupDescription object that contains information about the requested package group. - Parameters:
- describePackageGroupRequest-
- Returns:
- Result of the DescribePackageGroup operation returned by the service.
- See Also:
 
- 
describePackageGroupdefault DescribePackageGroupResponse describePackageGroup(Consumer<DescribePackageGroupRequest.Builder> describePackageGroupRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns a PackageGroupDescription object that contains information about the requested package group. 
 This is a convenience which creates an instance of the DescribePackageGroupRequest.Builderavoiding the need to create one manually viaDescribePackageGroupRequest.builder()- Parameters:
- describePackageGroupRequest- A- Consumerthat will call methods on- DescribePackageGroupRequest.Builderto create a request.
- Returns:
- Result of the DescribePackageGroup operation returned by the service.
- See Also:
 
- 
describePackageVersiondefault DescribePackageVersionResponse describePackageVersion(DescribePackageVersionRequest describePackageVersionRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a PackageVersionDescription object that contains information about the requested package version. - Parameters:
- describePackageVersionRequest-
- Returns:
- Result of the DescribePackageVersion operation returned by the service.
- See Also:
 
- 
describePackageVersiondefault DescribePackageVersionResponse describePackageVersion(Consumer<DescribePackageVersionRequest.Builder> describePackageVersionRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a PackageVersionDescription object that contains information about the requested package version. 
 This is a convenience which creates an instance of the DescribePackageVersionRequest.Builderavoiding the need to create one manually viaDescribePackageVersionRequest.builder()- Parameters:
- describePackageVersionRequest- A- Consumerthat will call methods on- DescribePackageVersionRequest.Builderto create a request.
- Returns:
- Result of the DescribePackageVersion operation returned by the service.
- See Also:
 
- 
describeRepositorydefault DescribeRepositoryResponse describeRepository(DescribeRepositoryRequest describeRepositoryRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a RepositoryDescriptionobject that contains detailed information about the requested repository.- Parameters:
- describeRepositoryRequest-
- Returns:
- Result of the DescribeRepository operation returned by the service.
- See Also:
 
- 
describeRepositorydefault DescribeRepositoryResponse describeRepository(Consumer<DescribeRepositoryRequest.Builder> describeRepositoryRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a RepositoryDescriptionobject that contains detailed information about the requested repository.
 This is a convenience which creates an instance of the DescribeRepositoryRequest.Builderavoiding the need to create one manually viaDescribeRepositoryRequest.builder()- Parameters:
- describeRepositoryRequest- A- Consumerthat will call methods on- DescribeRepositoryRequest.Builderto create a request.
- Returns:
- Result of the DescribeRepository operation returned by the service.
- See Also:
 
- 
disassociateExternalConnectiondefault DisassociateExternalConnectionResponse disassociateExternalConnection(DisassociateExternalConnectionRequest disassociateExternalConnectionRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Removes an existing external connection from a repository. - Parameters:
- disassociateExternalConnectionRequest-
- Returns:
- Result of the DisassociateExternalConnection operation returned by the service.
- See Also:
 
- 
disassociateExternalConnectiondefault DisassociateExternalConnectionResponse disassociateExternalConnection(Consumer<DisassociateExternalConnectionRequest.Builder> disassociateExternalConnectionRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Removes an existing external connection from a repository. 
 This is a convenience which creates an instance of the DisassociateExternalConnectionRequest.Builderavoiding the need to create one manually viaDisassociateExternalConnectionRequest.builder()- Parameters:
- disassociateExternalConnectionRequest- A- Consumerthat will call methods on- DisassociateExternalConnectionRequest.Builderto create a request.
- Returns:
- Result of the DisassociateExternalConnection operation returned by the service.
- See Also:
 
- 
disposePackageVersionsdefault DisposePackageVersionsResponse disposePackageVersions(DisposePackageVersionsRequest disposePackageVersionsRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes the assets in package versions and sets the package versions' status to Disposed. A disposed package version cannot be restored in your repository because its assets are deleted.To view all disposed package versions in a repository, use ListPackageVersions and set the status parameter to Disposed.To view information about a disposed package version, use DescribePackageVersion. - Parameters:
- disposePackageVersionsRequest-
- Returns:
- Result of the DisposePackageVersions operation returned by the service.
- See Also:
 
- 
disposePackageVersionsdefault DisposePackageVersionsResponse disposePackageVersions(Consumer<DisposePackageVersionsRequest.Builder> disposePackageVersionsRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Deletes the assets in package versions and sets the package versions' status to Disposed. A disposed package version cannot be restored in your repository because its assets are deleted.To view all disposed package versions in a repository, use ListPackageVersions and set the status parameter to Disposed.To view information about a disposed package version, use DescribePackageVersion. 
 This is a convenience which creates an instance of the DisposePackageVersionsRequest.Builderavoiding the need to create one manually viaDisposePackageVersionsRequest.builder()- Parameters:
- disposePackageVersionsRequest- A- Consumerthat will call methods on- DisposePackageVersionsRequest.Builderto create a request.
- Returns:
- Result of the DisposePackageVersions operation returned by the service.
- See Also:
 
- 
getAssociatedPackageGroupdefault GetAssociatedPackageGroupResponse getAssociatedPackageGroup(GetAssociatedPackageGroupRequest getAssociatedPackageGroupRequest) throws AccessDeniedException, InternalServerException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns the most closely associated package group to the specified package. This API does not require that the package exist in any repository in the domain. As such, GetAssociatedPackageGroupcan be used to see which package group's origin configuration applies to a package before that package is in a repository. This can be helpful to check if public packages are blocked without ingesting them.For information package group association and matching, see Package group definition syntax and matching behavior in the CodeArtifact User Guide. - Parameters:
- getAssociatedPackageGroupRequest-
- Returns:
- Result of the GetAssociatedPackageGroup operation returned by the service.
- See Also:
 
- 
getAssociatedPackageGroupdefault GetAssociatedPackageGroupResponse getAssociatedPackageGroup(Consumer<GetAssociatedPackageGroupRequest.Builder> getAssociatedPackageGroupRequest) throws AccessDeniedException, InternalServerException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns the most closely associated package group to the specified package. This API does not require that the package exist in any repository in the domain. As such, GetAssociatedPackageGroupcan be used to see which package group's origin configuration applies to a package before that package is in a repository. This can be helpful to check if public packages are blocked without ingesting them.For information package group association and matching, see Package group definition syntax and matching behavior in the CodeArtifact User Guide. 
 This is a convenience which creates an instance of the GetAssociatedPackageGroupRequest.Builderavoiding the need to create one manually viaGetAssociatedPackageGroupRequest.builder()- Parameters:
- getAssociatedPackageGroupRequest- A- Consumerthat will call methods on- GetAssociatedPackageGroupRequest.Builderto create a request.
- Returns:
- Result of the GetAssociatedPackageGroup operation returned by the service.
- See Also:
 
- 
getAuthorizationTokendefault GetAuthorizationTokenResponse getAuthorizationToken(GetAuthorizationTokenRequest getAuthorizationTokenRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Generates a temporary authorization token for accessing repositories in the domain. This API requires the codeartifact:GetAuthorizationTokenandsts:GetServiceBearerTokenpermissions. For more information about authorization tokens, see CodeArtifact authentication and tokens.CodeArtifact authorization tokens are valid for a period of 12 hours when created with the logincommand. You can callloginperiodically to refresh the token. When you create an authorization token with theGetAuthorizationTokenAPI, you can set a custom authorization period, up to a maximum of 12 hours, with thedurationSecondsparameter.The authorization period begins after loginorGetAuthorizationTokenis called. IfloginorGetAuthorizationTokenis called while assuming a role, the token lifetime is independent of the maximum session duration of the role. For example, if you callsts assume-roleand specify a session duration of 15 minutes, then generate a CodeArtifact authorization token, the token will be valid for the full authorization period even though this is longer than the 15-minute session duration.See Using IAM Roles for more information on controlling session duration. - Parameters:
- getAuthorizationTokenRequest-
- Returns:
- Result of the GetAuthorizationToken operation returned by the service.
- See Also:
 
- 
getAuthorizationTokendefault GetAuthorizationTokenResponse getAuthorizationToken(Consumer<GetAuthorizationTokenRequest.Builder> getAuthorizationTokenRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Generates a temporary authorization token for accessing repositories in the domain. This API requires the codeartifact:GetAuthorizationTokenandsts:GetServiceBearerTokenpermissions. For more information about authorization tokens, see CodeArtifact authentication and tokens.CodeArtifact authorization tokens are valid for a period of 12 hours when created with the logincommand. You can callloginperiodically to refresh the token. When you create an authorization token with theGetAuthorizationTokenAPI, you can set a custom authorization period, up to a maximum of 12 hours, with thedurationSecondsparameter.The authorization period begins after loginorGetAuthorizationTokenis called. IfloginorGetAuthorizationTokenis called while assuming a role, the token lifetime is independent of the maximum session duration of the role. For example, if you callsts assume-roleand specify a session duration of 15 minutes, then generate a CodeArtifact authorization token, the token will be valid for the full authorization period even though this is longer than the 15-minute session duration.See Using IAM Roles for more information on controlling session duration. 
 This is a convenience which creates an instance of the GetAuthorizationTokenRequest.Builderavoiding the need to create one manually viaGetAuthorizationTokenRequest.builder()- Parameters:
- getAuthorizationTokenRequest- A- Consumerthat will call methods on- GetAuthorizationTokenRequest.Builderto create a request.
- Returns:
- Result of the GetAuthorizationToken operation returned by the service.
- See Also:
 
- 
getDomainPermissionsPolicydefault GetDomainPermissionsPolicyResponse getDomainPermissionsPolicy(GetDomainPermissionsPolicyRequest getDomainPermissionsPolicyRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns the resource policy attached to the specified domain. The policy is a resource-based policy, not an identity-based policy. For more information, see Identity-based policies and resource-based policies in the IAM User Guide. - Parameters:
- getDomainPermissionsPolicyRequest-
- Returns:
- Result of the GetDomainPermissionsPolicy operation returned by the service.
- See Also:
 
- 
getDomainPermissionsPolicydefault GetDomainPermissionsPolicyResponse getDomainPermissionsPolicy(Consumer<GetDomainPermissionsPolicyRequest.Builder> getDomainPermissionsPolicyRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns the resource policy attached to the specified domain. The policy is a resource-based policy, not an identity-based policy. For more information, see Identity-based policies and resource-based policies in the IAM User Guide. 
 This is a convenience which creates an instance of the GetDomainPermissionsPolicyRequest.Builderavoiding the need to create one manually viaGetDomainPermissionsPolicyRequest.builder()- Parameters:
- getDomainPermissionsPolicyRequest- A- Consumerthat will call methods on- GetDomainPermissionsPolicyRequest.Builderto create a request.
- Returns:
- Result of the GetDomainPermissionsPolicy operation returned by the service.
- See Also:
 
- 
getPackageVersionAssetdefault <ReturnT> ReturnT getPackageVersionAsset(GetPackageVersionAssetRequest getPackageVersionAssetRequest, ResponseTransformer<GetPackageVersionAssetResponse, ReturnT> responseTransformer) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConflictException, AwsServiceException, SdkClientException, CodeartifactExceptionReturns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAssetto download aJARfile, aPOMfile, or any other assets in the package version.- Parameters:
- getPackageVersionAssetRequest-
- responseTransformer- Functional interface for processing the streamed response content. The unmarshalled GetPackageVersionAssetResponse and an InputStream to the response content are provided as parameters to the callback. The callback may return a transformed type which will be the return value of this method. See- ResponseTransformerfor details on implementing this interface and for links to pre-canned implementations for common scenarios like downloading to a file. The service documentation for the response content is as follows '- The binary file, or asset, that is downloaded. '.
- Returns:
- The transformed result of the ResponseTransformer.
- See Also:
 
- 
getPackageVersionAssetdefault <ReturnT> ReturnT getPackageVersionAsset(Consumer<GetPackageVersionAssetRequest.Builder> getPackageVersionAssetRequest, ResponseTransformer<GetPackageVersionAssetResponse, ReturnT> responseTransformer) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConflictException, AwsServiceException, SdkClientException, CodeartifactExceptionReturns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAssetto download aJARfile, aPOMfile, or any other assets in the package version.
 This is a convenience which creates an instance of the GetPackageVersionAssetRequest.Builderavoiding the need to create one manually viaGetPackageVersionAssetRequest.builder()- Parameters:
- getPackageVersionAssetRequest- A- Consumerthat will call methods on- GetPackageVersionAssetRequest.Builderto create a request.
- responseTransformer- Functional interface for processing the streamed response content. The unmarshalled GetPackageVersionAssetResponse and an InputStream to the response content are provided as parameters to the callback. The callback may return a transformed type which will be the return value of this method. See- ResponseTransformerfor details on implementing this interface and for links to pre-canned implementations for common scenarios like downloading to a file. The service documentation for the response content is as follows '- The binary file, or asset, that is downloaded. '.
- Returns:
- The transformed result of the ResponseTransformer.
- See Also:
 
- 
getPackageVersionAssetdefault GetPackageVersionAssetResponse getPackageVersionAsset(GetPackageVersionAssetRequest getPackageVersionAssetRequest, Path destinationPath) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConflictException, AwsServiceException, SdkClientException, CodeartifactException Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAssetto download aJARfile, aPOMfile, or any other assets in the package version.- Parameters:
- getPackageVersionAssetRequest-
- destinationPath-- Pathto file that response contents will be written to. The file must not exist or this method will throw an exception. If the file is not writable by the current user then an exception will be thrown. The service documentation for the response content is as follows '- The binary file, or asset, that is downloaded. '.
- Returns:
- The transformed result of the ResponseTransformer.
- See Also:
 
- 
getPackageVersionAssetdefault GetPackageVersionAssetResponse getPackageVersionAsset(Consumer<GetPackageVersionAssetRequest.Builder> getPackageVersionAssetRequest, Path destinationPath) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConflictException, AwsServiceException, SdkClientException, CodeartifactException Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAssetto download aJARfile, aPOMfile, or any other assets in the package version.
 This is a convenience which creates an instance of the GetPackageVersionAssetRequest.Builderavoiding the need to create one manually viaGetPackageVersionAssetRequest.builder()- Parameters:
- getPackageVersionAssetRequest- A- Consumerthat will call methods on- GetPackageVersionAssetRequest.Builderto create a request.
- destinationPath-- Pathto file that response contents will be written to. The file must not exist or this method will throw an exception. If the file is not writable by the current user then an exception will be thrown. The service documentation for the response content is as follows '- The binary file, or asset, that is downloaded. '.
- Returns:
- The transformed result of the ResponseTransformer.
- See Also:
 
- 
getPackageVersionAssetdefault ResponseInputStream<GetPackageVersionAssetResponse> getPackageVersionAsset(GetPackageVersionAssetRequest getPackageVersionAssetRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConflictException, AwsServiceException, SdkClientException, CodeartifactException Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAssetto download aJARfile, aPOMfile, or any other assets in the package version.- Parameters:
- getPackageVersionAssetRequest-
- Returns:
- A ResponseInputStreamcontaining data streamed from service. Note that this is an unmanaged reference to the underlying HTTP connection so great care must be taken to ensure all data if fully read from the input stream and that it is properly closed. Failure to do so may result in sub-optimal behavior and exhausting connections in the connection pool. The unmarshalled response object can be obtained viaResponseInputStream.response(). The service documentation for the response content is as follows 'The binary file, or asset, that is downloaded. '.
- See Also:
 
- 
getPackageVersionAssetdefault ResponseInputStream<GetPackageVersionAssetResponse> getPackageVersionAsset(Consumer<GetPackageVersionAssetRequest.Builder> getPackageVersionAssetRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConflictException, AwsServiceException, SdkClientException, CodeartifactException Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAssetto download aJARfile, aPOMfile, or any other assets in the package version.
 This is a convenience which creates an instance of the GetPackageVersionAssetRequest.Builderavoiding the need to create one manually viaGetPackageVersionAssetRequest.builder()- Parameters:
- getPackageVersionAssetRequest- A- Consumerthat will call methods on- GetPackageVersionAssetRequest.Builderto create a request.
- Returns:
- A ResponseInputStreamcontaining data streamed from service. Note that this is an unmanaged reference to the underlying HTTP connection so great care must be taken to ensure all data if fully read from the input stream and that it is properly closed. Failure to do so may result in sub-optimal behavior and exhausting connections in the connection pool. The unmarshalled response object can be obtained viaResponseInputStream.response(). The service documentation for the response content is as follows 'The binary file, or asset, that is downloaded. '.
- See Also:
 
- 
getPackageVersionAssetAsBytesdefault ResponseBytes<GetPackageVersionAssetResponse> getPackageVersionAssetAsBytes(GetPackageVersionAssetRequest getPackageVersionAssetRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConflictException, AwsServiceException, SdkClientException, CodeartifactException Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAssetto download aJARfile, aPOMfile, or any other assets in the package version.- Parameters:
- getPackageVersionAssetRequest-
- Returns:
- A ResponseBytesthat loads the data streamed from the service into memory and exposes it in convenient in-memory representations like a byte buffer or string. The unmarshalled response object can be obtained viaResponseBytes.response(). The service documentation for the response content is as follows 'The binary file, or asset, that is downloaded. '.
- See Also:
 
- 
getPackageVersionAssetAsBytesdefault ResponseBytes<GetPackageVersionAssetResponse> getPackageVersionAssetAsBytes(Consumer<GetPackageVersionAssetRequest.Builder> getPackageVersionAssetRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, ConflictException, AwsServiceException, SdkClientException, CodeartifactException Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAssetto download aJARfile, aPOMfile, or any other assets in the package version.
 This is a convenience which creates an instance of the GetPackageVersionAssetRequest.Builderavoiding the need to create one manually viaGetPackageVersionAssetRequest.builder()- Parameters:
- getPackageVersionAssetRequest- A- Consumerthat will call methods on- GetPackageVersionAssetRequest.Builderto create a request.
- Returns:
- A ResponseBytesthat loads the data streamed from the service into memory and exposes it in convenient in-memory representations like a byte buffer or string. The unmarshalled response object can be obtained viaResponseBytes.response(). The service documentation for the response content is as follows 'The binary file, or asset, that is downloaded. '.
- See Also:
 
- 
getPackageVersionReadmedefault GetPackageVersionReadmeResponse getPackageVersionReadme(GetPackageVersionReadmeRequest getPackageVersionReadmeRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Gets the readme file or descriptive text for a package version. The returned text might contain formatting. For example, it might contain formatting for Markdown or reStructuredText. - Parameters:
- getPackageVersionReadmeRequest-
- Returns:
- Result of the GetPackageVersionReadme operation returned by the service.
- See Also:
 
- 
getPackageVersionReadmedefault GetPackageVersionReadmeResponse getPackageVersionReadme(Consumer<GetPackageVersionReadmeRequest.Builder> getPackageVersionReadmeRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Gets the readme file or descriptive text for a package version. The returned text might contain formatting. For example, it might contain formatting for Markdown or reStructuredText. 
 This is a convenience which creates an instance of the GetPackageVersionReadmeRequest.Builderavoiding the need to create one manually viaGetPackageVersionReadmeRequest.builder()- Parameters:
- getPackageVersionReadmeRequest- A- Consumerthat will call methods on- GetPackageVersionReadmeRequest.Builderto create a request.
- Returns:
- Result of the GetPackageVersionReadme operation returned by the service.
- See Also:
 
- 
getRepositoryEndpointdefault GetRepositoryEndpointResponse getRepositoryEndpoint(GetRepositoryEndpointRequest getRepositoryEndpointRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format: - 
 cargo
- 
 generic
- 
 maven
- 
 npm
- 
 nuget
- 
 pypi
- 
 ruby
- 
 swift
 - Parameters:
- getRepositoryEndpointRequest-
- Returns:
- Result of the GetRepositoryEndpoint operation returned by the service.
- See Also:
 
- 
 
- 
getRepositoryEndpointdefault GetRepositoryEndpointResponse getRepositoryEndpoint(Consumer<GetRepositoryEndpointRequest.Builder> getRepositoryEndpointRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format: - 
 cargo
- 
 generic
- 
 maven
- 
 npm
- 
 nuget
- 
 pypi
- 
 ruby
- 
 swift
 
 This is a convenience which creates an instance of the GetRepositoryEndpointRequest.Builderavoiding the need to create one manually viaGetRepositoryEndpointRequest.builder()- Parameters:
- getRepositoryEndpointRequest- A- Consumerthat will call methods on- GetRepositoryEndpointRequest.Builderto create a request.
- Returns:
- Result of the GetRepositoryEndpoint operation returned by the service.
- See Also:
 
- 
 
- 
getRepositoryPermissionsPolicydefault GetRepositoryPermissionsPolicyResponse getRepositoryPermissionsPolicy(GetRepositoryPermissionsPolicyRequest getRepositoryPermissionsPolicyRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns the resource policy that is set on a repository. - Parameters:
- getRepositoryPermissionsPolicyRequest-
- Returns:
- Result of the GetRepositoryPermissionsPolicy operation returned by the service.
- See Also:
 
- 
getRepositoryPermissionsPolicydefault GetRepositoryPermissionsPolicyResponse getRepositoryPermissionsPolicy(Consumer<GetRepositoryPermissionsPolicyRequest.Builder> getRepositoryPermissionsPolicyRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns the resource policy that is set on a repository. 
 This is a convenience which creates an instance of the GetRepositoryPermissionsPolicyRequest.Builderavoiding the need to create one manually viaGetRepositoryPermissionsPolicyRequest.builder()- Parameters:
- getRepositoryPermissionsPolicyRequest- A- Consumerthat will call methods on- GetRepositoryPermissionsPolicyRequest.Builderto create a request.
- Returns:
- Result of the GetRepositoryPermissionsPolicy operation returned by the service.
- See Also:
 
- 
listAllowedRepositoriesForGroupdefault ListAllowedRepositoriesForGroupResponse listAllowedRepositoriesForGroup(ListAllowedRepositoriesForGroupRequest listAllowedRepositoriesForGroupRequest) throws AccessDeniedException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Lists the repositories in the added repositories list of the specified restriction type for a package group. For more information about restriction types and added repository lists, see Package group origin controls in the CodeArtifact User Guide. - Parameters:
- listAllowedRepositoriesForGroupRequest-
- Returns:
- Result of the ListAllowedRepositoriesForGroup operation returned by the service.
- See Also:
 
- 
listAllowedRepositoriesForGroupdefault ListAllowedRepositoriesForGroupResponse listAllowedRepositoriesForGroup(Consumer<ListAllowedRepositoriesForGroupRequest.Builder> listAllowedRepositoriesForGroupRequest) throws AccessDeniedException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Lists the repositories in the added repositories list of the specified restriction type for a package group. For more information about restriction types and added repository lists, see Package group origin controls in the CodeArtifact User Guide. 
 This is a convenience which creates an instance of the ListAllowedRepositoriesForGroupRequest.Builderavoiding the need to create one manually viaListAllowedRepositoriesForGroupRequest.builder()- Parameters:
- listAllowedRepositoriesForGroupRequest- A- Consumerthat will call methods on- ListAllowedRepositoriesForGroupRequest.Builderto create a request.
- Returns:
- Result of the ListAllowedRepositoriesForGroup operation returned by the service.
- See Also:
 
- 
listAllowedRepositoriesForGroupPaginatordefault ListAllowedRepositoriesForGroupIterable listAllowedRepositoriesForGroupPaginator(ListAllowedRepositoriesForGroupRequest listAllowedRepositoriesForGroupRequest) throws AccessDeniedException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listAllowedRepositoriesForGroup(software.amazon.awssdk.services.codeartifact.model.ListAllowedRepositoriesForGroupRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListAllowedRepositoriesForGroupIterable responses = client.listAllowedRepositoriesForGroupPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListAllowedRepositoriesForGroupIterable responses = client .listAllowedRepositoriesForGroupPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListAllowedRepositoriesForGroupResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListAllowedRepositoriesForGroupIterable responses = client.listAllowedRepositoriesForGroupPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listAllowedRepositoriesForGroup(software.amazon.awssdk.services.codeartifact.model.ListAllowedRepositoriesForGroupRequest)operation.- Parameters:
- listAllowedRepositoriesForGroupRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listAllowedRepositoriesForGroupPaginatordefault ListAllowedRepositoriesForGroupIterable listAllowedRepositoriesForGroupPaginator(Consumer<ListAllowedRepositoriesForGroupRequest.Builder> listAllowedRepositoriesForGroupRequest) throws AccessDeniedException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listAllowedRepositoriesForGroup(software.amazon.awssdk.services.codeartifact.model.ListAllowedRepositoriesForGroupRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListAllowedRepositoriesForGroupIterable responses = client.listAllowedRepositoriesForGroupPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListAllowedRepositoriesForGroupIterable responses = client .listAllowedRepositoriesForGroupPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListAllowedRepositoriesForGroupResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListAllowedRepositoriesForGroupIterable responses = client.listAllowedRepositoriesForGroupPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listAllowedRepositoriesForGroup(software.amazon.awssdk.services.codeartifact.model.ListAllowedRepositoriesForGroupRequest)operation.
 This is a convenience which creates an instance of the ListAllowedRepositoriesForGroupRequest.Builderavoiding the need to create one manually viaListAllowedRepositoriesForGroupRequest.builder()- Parameters:
- listAllowedRepositoriesForGroupRequest- A- Consumerthat will call methods on- ListAllowedRepositoriesForGroupRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listAssociatedPackagesdefault ListAssociatedPackagesResponse listAssociatedPackages(ListAssociatedPackagesRequest listAssociatedPackagesRequest) throws AccessDeniedException, InternalServerException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of packages associated with the requested package group. For information package group association and matching, see Package group definition syntax and matching behavior in the CodeArtifact User Guide. - Parameters:
- listAssociatedPackagesRequest-
- Returns:
- Result of the ListAssociatedPackages operation returned by the service.
- See Also:
 
- 
listAssociatedPackagesdefault ListAssociatedPackagesResponse listAssociatedPackages(Consumer<ListAssociatedPackagesRequest.Builder> listAssociatedPackagesRequest) throws AccessDeniedException, InternalServerException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of packages associated with the requested package group. For information package group association and matching, see Package group definition syntax and matching behavior in the CodeArtifact User Guide. 
 This is a convenience which creates an instance of the ListAssociatedPackagesRequest.Builderavoiding the need to create one manually viaListAssociatedPackagesRequest.builder()- Parameters:
- listAssociatedPackagesRequest- A- Consumerthat will call methods on- ListAssociatedPackagesRequest.Builderto create a request.
- Returns:
- Result of the ListAssociatedPackages operation returned by the service.
- See Also:
 
- 
listAssociatedPackagesPaginatordefault ListAssociatedPackagesIterable listAssociatedPackagesPaginator(ListAssociatedPackagesRequest listAssociatedPackagesRequest) throws AccessDeniedException, InternalServerException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listAssociatedPackages(software.amazon.awssdk.services.codeartifact.model.ListAssociatedPackagesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListAssociatedPackagesIterable responses = client.listAssociatedPackagesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListAssociatedPackagesIterable responses = client .listAssociatedPackagesPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListAssociatedPackagesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListAssociatedPackagesIterable responses = client.listAssociatedPackagesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listAssociatedPackages(software.amazon.awssdk.services.codeartifact.model.ListAssociatedPackagesRequest)operation.- Parameters:
- listAssociatedPackagesRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listAssociatedPackagesPaginatordefault ListAssociatedPackagesIterable listAssociatedPackagesPaginator(Consumer<ListAssociatedPackagesRequest.Builder> listAssociatedPackagesRequest) throws AccessDeniedException, InternalServerException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listAssociatedPackages(software.amazon.awssdk.services.codeartifact.model.ListAssociatedPackagesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListAssociatedPackagesIterable responses = client.listAssociatedPackagesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListAssociatedPackagesIterable responses = client .listAssociatedPackagesPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListAssociatedPackagesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListAssociatedPackagesIterable responses = client.listAssociatedPackagesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listAssociatedPackages(software.amazon.awssdk.services.codeartifact.model.ListAssociatedPackagesRequest)operation.
 This is a convenience which creates an instance of the ListAssociatedPackagesRequest.Builderavoiding the need to create one manually viaListAssociatedPackagesRequest.builder()- Parameters:
- listAssociatedPackagesRequest- A- Consumerthat will call methods on- ListAssociatedPackagesRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listDomainsdefault ListDomainsResponse listDomains(ListDomainsRequest listDomainsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of DomainSummary objects for all domains owned by the Amazon Web Services account that makes this call. Each returned DomainSummaryobject contains information about a domain.- Parameters:
- listDomainsRequest-
- Returns:
- Result of the ListDomains operation returned by the service.
- See Also:
 
- 
listDomainsdefault ListDomainsResponse listDomains(Consumer<ListDomainsRequest.Builder> listDomainsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of DomainSummary objects for all domains owned by the Amazon Web Services account that makes this call. Each returned DomainSummaryobject contains information about a domain.
 This is a convenience which creates an instance of the ListDomainsRequest.Builderavoiding the need to create one manually viaListDomainsRequest.builder()- Parameters:
- listDomainsRequest- A- Consumerthat will call methods on- ListDomainsRequest.Builderto create a request.
- Returns:
- Result of the ListDomains operation returned by the service.
- See Also:
 
- 
listDomainsPaginatordefault ListDomainsIterable listDomainsPaginator(ListDomainsRequest listDomainsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listDomains(software.amazon.awssdk.services.codeartifact.model.ListDomainsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListDomainsIterable responses = client.listDomainsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListDomainsIterable responses = client.listDomainsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListDomainsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListDomainsIterable responses = client.listDomainsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listDomains(software.amazon.awssdk.services.codeartifact.model.ListDomainsRequest)operation.- Parameters:
- listDomainsRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listDomainsPaginatordefault ListDomainsIterable listDomainsPaginator(Consumer<ListDomainsRequest.Builder> listDomainsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listDomains(software.amazon.awssdk.services.codeartifact.model.ListDomainsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListDomainsIterable responses = client.listDomainsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListDomainsIterable responses = client.listDomainsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListDomainsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListDomainsIterable responses = client.listDomainsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listDomains(software.amazon.awssdk.services.codeartifact.model.ListDomainsRequest)operation.
 This is a convenience which creates an instance of the ListDomainsRequest.Builderavoiding the need to create one manually viaListDomainsRequest.builder()- Parameters:
- listDomainsRequest- A- Consumerthat will call methods on- ListDomainsRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listPackageGroupsdefault ListPackageGroupsResponse listPackageGroups(ListPackageGroupsRequest listPackageGroupsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of package groups in the requested domain. - Parameters:
- listPackageGroupsRequest-
- Returns:
- Result of the ListPackageGroups operation returned by the service.
- See Also:
 
- 
listPackageGroupsdefault ListPackageGroupsResponse listPackageGroups(Consumer<ListPackageGroupsRequest.Builder> listPackageGroupsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of package groups in the requested domain. 
 This is a convenience which creates an instance of the ListPackageGroupsRequest.Builderavoiding the need to create one manually viaListPackageGroupsRequest.builder()- Parameters:
- listPackageGroupsRequest- A- Consumerthat will call methods on- ListPackageGroupsRequest.Builderto create a request.
- Returns:
- Result of the ListPackageGroups operation returned by the service.
- See Also:
 
- 
listPackageGroupsPaginatordefault ListPackageGroupsIterable listPackageGroupsPaginator(ListPackageGroupsRequest listPackageGroupsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListPackageGroupsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageGroupsIterable responses = client.listPackageGroupsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListPackageGroupsIterable responses = client .listPackageGroupsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListPackageGroupsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageGroupsIterable responses = client.listPackageGroupsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListPackageGroupsRequest)operation.- Parameters:
- listPackageGroupsRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listPackageGroupsPaginatordefault ListPackageGroupsIterable listPackageGroupsPaginator(Consumer<ListPackageGroupsRequest.Builder> listPackageGroupsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListPackageGroupsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageGroupsIterable responses = client.listPackageGroupsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListPackageGroupsIterable responses = client .listPackageGroupsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListPackageGroupsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageGroupsIterable responses = client.listPackageGroupsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListPackageGroupsRequest)operation.
 This is a convenience which creates an instance of the ListPackageGroupsRequest.Builderavoiding the need to create one manually viaListPackageGroupsRequest.builder()- Parameters:
- listPackageGroupsRequest- A- Consumerthat will call methods on- ListPackageGroupsRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listPackageVersionAssetsdefault ListPackageVersionAssetsResponse listPackageVersionAssets(ListPackageVersionAssetsRequest listPackageVersionAssetsRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of AssetSummary objects for assets in a package version. - Parameters:
- listPackageVersionAssetsRequest-
- Returns:
- Result of the ListPackageVersionAssets operation returned by the service.
- See Also:
 
- 
listPackageVersionAssetsdefault ListPackageVersionAssetsResponse listPackageVersionAssets(Consumer<ListPackageVersionAssetsRequest.Builder> listPackageVersionAssetsRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of AssetSummary objects for assets in a package version. 
 This is a convenience which creates an instance of the ListPackageVersionAssetsRequest.Builderavoiding the need to create one manually viaListPackageVersionAssetsRequest.builder()- Parameters:
- listPackageVersionAssetsRequest- A- Consumerthat will call methods on- ListPackageVersionAssetsRequest.Builderto create a request.
- Returns:
- Result of the ListPackageVersionAssets operation returned by the service.
- See Also:
 
- 
listPackageVersionAssetsPaginatordefault ListPackageVersionAssetsIterable listPackageVersionAssetsPaginator(ListPackageVersionAssetsRequest listPackageVersionAssetsRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listPackageVersionAssets(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionAssetsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionAssetsIterable responses = client.listPackageVersionAssetsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionAssetsIterable responses = client .listPackageVersionAssetsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListPackageVersionAssetsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionAssetsIterable responses = client.listPackageVersionAssetsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listPackageVersionAssets(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionAssetsRequest)operation.- Parameters:
- listPackageVersionAssetsRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listPackageVersionAssetsPaginatordefault ListPackageVersionAssetsIterable listPackageVersionAssetsPaginator(Consumer<ListPackageVersionAssetsRequest.Builder> listPackageVersionAssetsRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listPackageVersionAssets(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionAssetsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionAssetsIterable responses = client.listPackageVersionAssetsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionAssetsIterable responses = client .listPackageVersionAssetsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListPackageVersionAssetsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionAssetsIterable responses = client.listPackageVersionAssetsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listPackageVersionAssets(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionAssetsRequest)operation.
 This is a convenience which creates an instance of the ListPackageVersionAssetsRequest.Builderavoiding the need to create one manually viaListPackageVersionAssetsRequest.builder()- Parameters:
- listPackageVersionAssetsRequest- A- Consumerthat will call methods on- ListPackageVersionAssetsRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listPackageVersionDependenciesdefault ListPackageVersionDependenciesResponse listPackageVersionDependencies(ListPackageVersionDependenciesRequest listPackageVersionDependenciesRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns the direct dependencies for a package version. The dependencies are returned as PackageDependency objects. CodeArtifact extracts the dependencies for a package version from the metadata file for the package format (for example, the package.jsonfile for npm packages and thepom.xmlfile for Maven). Any package version dependencies that are not listed in the configuration file are not returned.- Parameters:
- listPackageVersionDependenciesRequest-
- Returns:
- Result of the ListPackageVersionDependencies operation returned by the service.
- See Also:
 
- 
listPackageVersionDependenciesdefault ListPackageVersionDependenciesResponse listPackageVersionDependencies(Consumer<ListPackageVersionDependenciesRequest.Builder> listPackageVersionDependenciesRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns the direct dependencies for a package version. The dependencies are returned as PackageDependency objects. CodeArtifact extracts the dependencies for a package version from the metadata file for the package format (for example, the package.jsonfile for npm packages and thepom.xmlfile for Maven). Any package version dependencies that are not listed in the configuration file are not returned.
 This is a convenience which creates an instance of the ListPackageVersionDependenciesRequest.Builderavoiding the need to create one manually viaListPackageVersionDependenciesRequest.builder()- Parameters:
- listPackageVersionDependenciesRequest- A- Consumerthat will call methods on- ListPackageVersionDependenciesRequest.Builderto create a request.
- Returns:
- Result of the ListPackageVersionDependencies operation returned by the service.
- See Also:
 
- 
listPackageVersionsdefault ListPackageVersionsResponse listPackageVersions(ListPackageVersionsRequest listPackageVersionsRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of PackageVersionSummary objects for package versions in a repository that match the request parameters. Package versions of all statuses will be returned by default when calling list-package-versionswith no--statusparameter.- Parameters:
- listPackageVersionsRequest-
- Returns:
- Result of the ListPackageVersions operation returned by the service.
- See Also:
 
- 
listPackageVersionsdefault ListPackageVersionsResponse listPackageVersions(Consumer<ListPackageVersionsRequest.Builder> listPackageVersionsRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of PackageVersionSummary objects for package versions in a repository that match the request parameters. Package versions of all statuses will be returned by default when calling list-package-versionswith no--statusparameter.
 This is a convenience which creates an instance of the ListPackageVersionsRequest.Builderavoiding the need to create one manually viaListPackageVersionsRequest.builder()- Parameters:
- listPackageVersionsRequest- A- Consumerthat will call methods on- ListPackageVersionsRequest.Builderto create a request.
- Returns:
- Result of the ListPackageVersions operation returned by the service.
- See Also:
 
- 
listPackageVersionsPaginatordefault ListPackageVersionsIterable listPackageVersionsPaginator(ListPackageVersionsRequest listPackageVersionsRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listPackageVersions(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionsIterable responses = client.listPackageVersionsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionsIterable responses = client .listPackageVersionsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListPackageVersionsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionsIterable responses = client.listPackageVersionsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listPackageVersions(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionsRequest)operation.- Parameters:
- listPackageVersionsRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listPackageVersionsPaginatordefault ListPackageVersionsIterable listPackageVersionsPaginator(Consumer<ListPackageVersionsRequest.Builder> listPackageVersionsRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listPackageVersions(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionsIterable responses = client.listPackageVersionsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionsIterable responses = client .listPackageVersionsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListPackageVersionsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListPackageVersionsIterable responses = client.listPackageVersionsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listPackageVersions(software.amazon.awssdk.services.codeartifact.model.ListPackageVersionsRequest)operation.
 This is a convenience which creates an instance of the ListPackageVersionsRequest.Builderavoiding the need to create one manually viaListPackageVersionsRequest.builder()- Parameters:
- listPackageVersionsRequest- A- Consumerthat will call methods on- ListPackageVersionsRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listPackagesdefault ListPackagesResponse listPackages(ListPackagesRequest listPackagesRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of PackageSummary objects for packages in a repository that match the request parameters. - Parameters:
- listPackagesRequest-
- Returns:
- Result of the ListPackages operation returned by the service.
- See Also:
 
- 
listPackagesdefault ListPackagesResponse listPackages(Consumer<ListPackagesRequest.Builder> listPackagesRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of PackageSummary objects for packages in a repository that match the request parameters. 
 This is a convenience which creates an instance of the ListPackagesRequest.Builderavoiding the need to create one manually viaListPackagesRequest.builder()- Parameters:
- listPackagesRequest- A- Consumerthat will call methods on- ListPackagesRequest.Builderto create a request.
- Returns:
- Result of the ListPackages operation returned by the service.
- See Also:
 
- 
listPackagesPaginatordefault ListPackagesIterable listPackagesPaginator(ListPackagesRequest listPackagesRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listPackages(software.amazon.awssdk.services.codeartifact.model.ListPackagesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListPackagesIterable responses = client.listPackagesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListPackagesIterable responses = client .listPackagesPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListPackagesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListPackagesIterable responses = client.listPackagesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listPackages(software.amazon.awssdk.services.codeartifact.model.ListPackagesRequest)operation.- Parameters:
- listPackagesRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listPackagesPaginatordefault ListPackagesIterable listPackagesPaginator(Consumer<ListPackagesRequest.Builder> listPackagesRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listPackages(software.amazon.awssdk.services.codeartifact.model.ListPackagesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListPackagesIterable responses = client.listPackagesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListPackagesIterable responses = client .listPackagesPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListPackagesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListPackagesIterable responses = client.listPackagesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listPackages(software.amazon.awssdk.services.codeartifact.model.ListPackagesRequest)operation.
 This is a convenience which creates an instance of the ListPackagesRequest.Builderavoiding the need to create one manually viaListPackagesRequest.builder()- Parameters:
- listPackagesRequest- A- Consumerthat will call methods on- ListPackagesRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listRepositoriesdefault ListRepositoriesResponse listRepositories(ListRepositoriesRequest listRepositoriesRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of RepositorySummary objects. Each RepositorySummarycontains information about a repository in the specified Amazon Web Services account and that matches the input parameters.- Parameters:
- listRepositoriesRequest-
- Returns:
- Result of the ListRepositories operation returned by the service.
- See Also:
 
- 
listRepositoriesdefault ListRepositoriesResponse listRepositories(Consumer<ListRepositoriesRequest.Builder> listRepositoriesRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of RepositorySummary objects. Each RepositorySummarycontains information about a repository in the specified Amazon Web Services account and that matches the input parameters.
 This is a convenience which creates an instance of the ListRepositoriesRequest.Builderavoiding the need to create one manually viaListRepositoriesRequest.builder()- Parameters:
- listRepositoriesRequest- A- Consumerthat will call methods on- ListRepositoriesRequest.Builderto create a request.
- Returns:
- Result of the ListRepositories operation returned by the service.
- See Also:
 
- 
listRepositoriesPaginatordefault ListRepositoriesIterable listRepositoriesPaginator(ListRepositoriesRequest listRepositoriesRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listRepositories(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesIterable responses = client.listRepositoriesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesIterable responses = client .listRepositoriesPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListRepositoriesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesIterable responses = client.listRepositoriesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listRepositories(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesRequest)operation.- Parameters:
- listRepositoriesRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listRepositoriesPaginatordefault ListRepositoriesIterable listRepositoriesPaginator(Consumer<ListRepositoriesRequest.Builder> listRepositoriesRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listRepositories(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesIterable responses = client.listRepositoriesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesIterable responses = client .listRepositoriesPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListRepositoriesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesIterable responses = client.listRepositoriesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listRepositories(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesRequest)operation.
 This is a convenience which creates an instance of the ListRepositoriesRequest.Builderavoiding the need to create one manually viaListRepositoriesRequest.builder()- Parameters:
- listRepositoriesRequest- A- Consumerthat will call methods on- ListRepositoriesRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listRepositoriesInDomaindefault ListRepositoriesInDomainResponse listRepositoriesInDomain(ListRepositoriesInDomainRequest listRepositoriesInDomainRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of RepositorySummary objects. Each RepositorySummarycontains information about a repository in the specified domain and that matches the input parameters.- Parameters:
- listRepositoriesInDomainRequest-
- Returns:
- Result of the ListRepositoriesInDomain operation returned by the service.
- See Also:
 
- 
listRepositoriesInDomaindefault ListRepositoriesInDomainResponse listRepositoriesInDomain(Consumer<ListRepositoriesInDomainRequest.Builder> listRepositoriesInDomainRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of RepositorySummary objects. Each RepositorySummarycontains information about a repository in the specified domain and that matches the input parameters.
 This is a convenience which creates an instance of the ListRepositoriesInDomainRequest.Builderavoiding the need to create one manually viaListRepositoriesInDomainRequest.builder()- Parameters:
- listRepositoriesInDomainRequest- A- Consumerthat will call methods on- ListRepositoriesInDomainRequest.Builderto create a request.
- Returns:
- Result of the ListRepositoriesInDomain operation returned by the service.
- See Also:
 
- 
listRepositoriesInDomainPaginatordefault ListRepositoriesInDomainIterable listRepositoriesInDomainPaginator(ListRepositoriesInDomainRequest listRepositoriesInDomainRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listRepositoriesInDomain(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesInDomainRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesInDomainIterable responses = client.listRepositoriesInDomainPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesInDomainIterable responses = client .listRepositoriesInDomainPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListRepositoriesInDomainResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesInDomainIterable responses = client.listRepositoriesInDomainPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listRepositoriesInDomain(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesInDomainRequest)operation.- Parameters:
- listRepositoriesInDomainRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listRepositoriesInDomainPaginatordefault ListRepositoriesInDomainIterable listRepositoriesInDomainPaginator(Consumer<ListRepositoriesInDomainRequest.Builder> listRepositoriesInDomainRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listRepositoriesInDomain(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesInDomainRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesInDomainIterable responses = client.listRepositoriesInDomainPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesInDomainIterable responses = client .listRepositoriesInDomainPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListRepositoriesInDomainResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListRepositoriesInDomainIterable responses = client.listRepositoriesInDomainPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listRepositoriesInDomain(software.amazon.awssdk.services.codeartifact.model.ListRepositoriesInDomainRequest)operation.
 This is a convenience which creates an instance of the ListRepositoriesInDomainRequest.Builderavoiding the need to create one manually viaListRepositoriesInDomainRequest.builder()- Parameters:
- listRepositoriesInDomainRequest- A- Consumerthat will call methods on- ListRepositoriesInDomainRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listSubPackageGroupsdefault ListSubPackageGroupsResponse listSubPackageGroups(ListSubPackageGroupsRequest listSubPackageGroupsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of direct children of the specified package group. For information package group hierarchy, see Package group definition syntax and matching behavior in the CodeArtifact User Guide. - Parameters:
- listSubPackageGroupsRequest-
- Returns:
- Result of the ListSubPackageGroups operation returned by the service.
- See Also:
 
- 
listSubPackageGroupsdefault ListSubPackageGroupsResponse listSubPackageGroups(Consumer<ListSubPackageGroupsRequest.Builder> listSubPackageGroupsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Returns a list of direct children of the specified package group. For information package group hierarchy, see Package group definition syntax and matching behavior in the CodeArtifact User Guide. 
 This is a convenience which creates an instance of the ListSubPackageGroupsRequest.Builderavoiding the need to create one manually viaListSubPackageGroupsRequest.builder()- Parameters:
- listSubPackageGroupsRequest- A- Consumerthat will call methods on- ListSubPackageGroupsRequest.Builderto create a request.
- Returns:
- Result of the ListSubPackageGroups operation returned by the service.
- See Also:
 
- 
listSubPackageGroupsPaginatordefault ListSubPackageGroupsIterable listSubPackageGroupsPaginator(ListSubPackageGroupsRequest listSubPackageGroupsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listSubPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListSubPackageGroupsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListSubPackageGroupsIterable responses = client.listSubPackageGroupsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListSubPackageGroupsIterable responses = client .listSubPackageGroupsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListSubPackageGroupsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListSubPackageGroupsIterable responses = client.listSubPackageGroupsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listSubPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListSubPackageGroupsRequest)operation.- Parameters:
- listSubPackageGroupsRequest-
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listSubPackageGroupsPaginatordefault ListSubPackageGroupsIterable listSubPackageGroupsPaginator(Consumer<ListSubPackageGroupsRequest.Builder> listSubPackageGroupsRequest) throws AccessDeniedException, InternalServerException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException This is a variant of listSubPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListSubPackageGroupsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable. The following are few ways to iterate through the response pages: 1) Using a Stream
 2) Using For loopsoftware.amazon.awssdk.services.codeartifact.paginators.ListSubPackageGroupsIterable responses = client.listSubPackageGroupsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codeartifact.paginators.ListSubPackageGroupsIterable responses = client .listSubPackageGroupsPaginator(request); for (software.amazon.awssdk.services.codeartifact.model.ListSubPackageGroupsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codeartifact.paginators.ListSubPackageGroupsIterable responses = client.listSubPackageGroupsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page. Note: If you prefer to have control on service calls, use the listSubPackageGroups(software.amazon.awssdk.services.codeartifact.model.ListSubPackageGroupsRequest)operation.
 This is a convenience which creates an instance of the ListSubPackageGroupsRequest.Builderavoiding the need to create one manually viaListSubPackageGroupsRequest.builder()- Parameters:
- listSubPackageGroupsRequest- A- Consumerthat will call methods on- ListSubPackageGroupsRequest.Builderto create a request.
- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- See Also:
 
- 
listTagsForResourcedefault ListTagsForResourceResponse listTagsForResource(ListTagsForResourceRequest listTagsForResourceRequest) throws AccessDeniedException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Gets information about Amazon Web Services tags for a specified Amazon Resource Name (ARN) in CodeArtifact. - Parameters:
- listTagsForResourceRequest-
- Returns:
- Result of the ListTagsForResource operation returned by the service.
- See Also:
 
- 
listTagsForResourcedefault ListTagsForResourceResponse listTagsForResource(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest) throws AccessDeniedException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Gets information about Amazon Web Services tags for a specified Amazon Resource Name (ARN) in CodeArtifact. 
 This is a convenience which creates an instance of the ListTagsForResourceRequest.Builderavoiding the need to create one manually viaListTagsForResourceRequest.builder()- Parameters:
- listTagsForResourceRequest- A- Consumerthat will call methods on- ListTagsForResourceRequest.Builderto create a request.
- Returns:
- Result of the ListTagsForResource operation returned by the service.
- See Also:
 
- 
publishPackageVersiondefault PublishPackageVersionResponse publishPackageVersion(PublishPackageVersionRequest publishPackageVersionRequest, RequestBody requestBody) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Creates a new package version containing one or more assets (or files). The unfinishedflag can be used to keep the package version in theUnfinishedstate until all of its assets have been uploaded (see Package version status in the CodeArtifact user guide). To set the package version’s status toPublished, omit theunfinishedflag when uploading the final asset, or set the status using UpdatePackageVersionStatus. Once a package version’s status is set toPublished, it cannot change back toUnfinished.Only generic packages can be published using this API. For more information, see Using generic packages in the CodeArtifact User Guide. - Parameters:
- publishPackageVersionRequest-
- requestBody- The content to send to the service. A- RequestBodycan be created using one of several factory methods for various sources of data. For example, to create a request body from a file you can do the following.
 See documentation in- RequestBody.fromFile(new File("myfile.txt"))- RequestBodyfor additional details and which sources of data are supported. The service documentation for the request content is as follows '- The content of the asset to publish. '
- Returns:
- Result of the PublishPackageVersion operation returned by the service.
- See Also:
 
- 
publishPackageVersiondefault PublishPackageVersionResponse publishPackageVersion(Consumer<PublishPackageVersionRequest.Builder> publishPackageVersionRequest, RequestBody requestBody) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Creates a new package version containing one or more assets (or files). The unfinishedflag can be used to keep the package version in theUnfinishedstate until all of its assets have been uploaded (see Package version status in the CodeArtifact user guide). To set the package version’s status toPublished, omit theunfinishedflag when uploading the final asset, or set the status using UpdatePackageVersionStatus. Once a package version’s status is set toPublished, it cannot change back toUnfinished.Only generic packages can be published using this API. For more information, see Using generic packages in the CodeArtifact User Guide. 
 This is a convenience which creates an instance of the PublishPackageVersionRequest.Builderavoiding the need to create one manually viaPublishPackageVersionRequest.builder()- Parameters:
- publishPackageVersionRequest- A- Consumerthat will call methods on- PublishPackageVersionRequest.Builderto create a request.
- requestBody- The content to send to the service. A- RequestBodycan be created using one of several factory methods for various sources of data. For example, to create a request body from a file you can do the following.
 See documentation in- RequestBody.fromFile(new File("myfile.txt"))- RequestBodyfor additional details and which sources of data are supported. The service documentation for the request content is as follows '- The content of the asset to publish. '
- Returns:
- Result of the PublishPackageVersion operation returned by the service.
- See Also:
 
- 
publishPackageVersiondefault PublishPackageVersionResponse publishPackageVersion(PublishPackageVersionRequest publishPackageVersionRequest, Path sourcePath) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Creates a new package version containing one or more assets (or files). The unfinishedflag can be used to keep the package version in theUnfinishedstate until all of its assets have been uploaded (see Package version status in the CodeArtifact user guide). To set the package version’s status toPublished, omit theunfinishedflag when uploading the final asset, or set the status using UpdatePackageVersionStatus. Once a package version’s status is set toPublished, it cannot change back toUnfinished.Only generic packages can be published using this API. For more information, see Using generic packages in the CodeArtifact User Guide. - Parameters:
- publishPackageVersionRequest-
- sourcePath-- Pathto file containing data to send to the service. File will be read entirely and may be read multiple times in the event of a retry. If the file does not exist or the current user does not have access to read it then an exception will be thrown. The service documentation for the request content is as follows '- The content of the asset to publish. '
- Returns:
- Result of the PublishPackageVersion operation returned by the service.
- See Also:
 
- 
publishPackageVersiondefault PublishPackageVersionResponse publishPackageVersion(Consumer<PublishPackageVersionRequest.Builder> publishPackageVersionRequest, Path sourcePath) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Creates a new package version containing one or more assets (or files). The unfinishedflag can be used to keep the package version in theUnfinishedstate until all of its assets have been uploaded (see Package version status in the CodeArtifact user guide). To set the package version’s status toPublished, omit theunfinishedflag when uploading the final asset, or set the status using UpdatePackageVersionStatus. Once a package version’s status is set toPublished, it cannot change back toUnfinished.Only generic packages can be published using this API. For more information, see Using generic packages in the CodeArtifact User Guide. 
 This is a convenience which creates an instance of the PublishPackageVersionRequest.Builderavoiding the need to create one manually viaPublishPackageVersionRequest.builder()- Parameters:
- publishPackageVersionRequest- A- Consumerthat will call methods on- PublishPackageVersionRequest.Builderto create a request.
- sourcePath-- Pathto file containing data to send to the service. File will be read entirely and may be read multiple times in the event of a retry. If the file does not exist or the current user does not have access to read it then an exception will be thrown. The service documentation for the request content is as follows '- The content of the asset to publish. '
- Returns:
- Result of the PublishPackageVersion operation returned by the service.
- See Also:
 
- 
putDomainPermissionsPolicydefault PutDomainPermissionsPolicyResponse putDomainPermissionsPolicy(PutDomainPermissionsPolicyRequest putDomainPermissionsPolicyRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Sets a resource policy on a domain that specifies permissions to access it. When you call PutDomainPermissionsPolicy, the resource policy on the domain is ignored when evaluting permissions. This ensures that the owner of a domain cannot lock themselves out of the domain, which would prevent them from being able to update the resource policy.- Parameters:
- putDomainPermissionsPolicyRequest-
- Returns:
- Result of the PutDomainPermissionsPolicy operation returned by the service.
- See Also:
 
- 
putDomainPermissionsPolicydefault PutDomainPermissionsPolicyResponse putDomainPermissionsPolicy(Consumer<PutDomainPermissionsPolicyRequest.Builder> putDomainPermissionsPolicyRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Sets a resource policy on a domain that specifies permissions to access it. When you call PutDomainPermissionsPolicy, the resource policy on the domain is ignored when evaluting permissions. This ensures that the owner of a domain cannot lock themselves out of the domain, which would prevent them from being able to update the resource policy.
 This is a convenience which creates an instance of the PutDomainPermissionsPolicyRequest.Builderavoiding the need to create one manually viaPutDomainPermissionsPolicyRequest.builder()- Parameters:
- putDomainPermissionsPolicyRequest- A- Consumerthat will call methods on- PutDomainPermissionsPolicyRequest.Builderto create a request.
- Returns:
- Result of the PutDomainPermissionsPolicy operation returned by the service.
- See Also:
 
- 
putPackageOriginConfigurationdefault PutPackageOriginConfigurationResponse putPackageOriginConfiguration(PutPackageOriginConfigurationRequest putPackageOriginConfigurationRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Sets the package origin configuration for a package. The package origin configuration determines how new versions of a package can be added to a repository. You can allow or block direct publishing of new package versions, or ingestion and retaining of new package versions from an external connection or upstream source. For more information about package origin controls and configuration, see Editing package origin controls in the CodeArtifact User Guide. PutPackageOriginConfigurationcan be called on a package that doesn't yet exist in the repository. When called on a package that does not exist, a package is created in the repository with no versions and the requested restrictions are set on the package. This can be used to preemptively block ingesting or retaining any versions from external connections or upstream repositories, or to block publishing any versions of the package into the repository before connecting any package managers or publishers to the repository.- Parameters:
- putPackageOriginConfigurationRequest-
- Returns:
- Result of the PutPackageOriginConfiguration operation returned by the service.
- See Also:
 
- 
putPackageOriginConfigurationdefault PutPackageOriginConfigurationResponse putPackageOriginConfiguration(Consumer<PutPackageOriginConfigurationRequest.Builder> putPackageOriginConfigurationRequest) throws AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Sets the package origin configuration for a package. The package origin configuration determines how new versions of a package can be added to a repository. You can allow or block direct publishing of new package versions, or ingestion and retaining of new package versions from an external connection or upstream source. For more information about package origin controls and configuration, see Editing package origin controls in the CodeArtifact User Guide. PutPackageOriginConfigurationcan be called on a package that doesn't yet exist in the repository. When called on a package that does not exist, a package is created in the repository with no versions and the requested restrictions are set on the package. This can be used to preemptively block ingesting or retaining any versions from external connections or upstream repositories, or to block publishing any versions of the package into the repository before connecting any package managers or publishers to the repository.
 This is a convenience which creates an instance of the PutPackageOriginConfigurationRequest.Builderavoiding the need to create one manually viaPutPackageOriginConfigurationRequest.builder()- Parameters:
- putPackageOriginConfigurationRequest- A- Consumerthat will call methods on- PutPackageOriginConfigurationRequest.Builderto create a request.
- Returns:
- Result of the PutPackageOriginConfiguration operation returned by the service.
- See Also:
 
- 
putRepositoryPermissionsPolicydefault PutRepositoryPermissionsPolicyResponse putRepositoryPermissionsPolicy(PutRepositoryPermissionsPolicyRequest putRepositoryPermissionsPolicyRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Sets the resource policy on a repository that specifies permissions to access it. When you call PutRepositoryPermissionsPolicy, the resource policy on the repository is ignored when evaluting permissions. This ensures that the owner of a repository cannot lock themselves out of the repository, which would prevent them from being able to update the resource policy.- Parameters:
- putRepositoryPermissionsPolicyRequest-
- Returns:
- Result of the PutRepositoryPermissionsPolicy operation returned by the service.
- See Also:
 
- 
putRepositoryPermissionsPolicydefault PutRepositoryPermissionsPolicyResponse putRepositoryPermissionsPolicy(Consumer<PutRepositoryPermissionsPolicyRequest.Builder> putRepositoryPermissionsPolicyRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Sets the resource policy on a repository that specifies permissions to access it. When you call PutRepositoryPermissionsPolicy, the resource policy on the repository is ignored when evaluting permissions. This ensures that the owner of a repository cannot lock themselves out of the repository, which would prevent them from being able to update the resource policy.
 This is a convenience which creates an instance of the PutRepositoryPermissionsPolicyRequest.Builderavoiding the need to create one manually viaPutRepositoryPermissionsPolicyRequest.builder()- Parameters:
- putRepositoryPermissionsPolicyRequest- A- Consumerthat will call methods on- PutRepositoryPermissionsPolicyRequest.Builderto create a request.
- Returns:
- Result of the PutRepositoryPermissionsPolicy operation returned by the service.
- See Also:
 
- 
tagResourcedefault TagResourceResponse tagResource(TagResourceRequest tagResourceRequest) throws AccessDeniedException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Adds or updates tags for a resource in CodeArtifact. - Parameters:
- tagResourceRequest-
- Returns:
- Result of the TagResource operation returned by the service.
- See Also:
 
- 
tagResourcedefault TagResourceResponse tagResource(Consumer<TagResourceRequest.Builder> tagResourceRequest) throws AccessDeniedException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Adds or updates tags for a resource in CodeArtifact. 
 This is a convenience which creates an instance of the TagResourceRequest.Builderavoiding the need to create one manually viaTagResourceRequest.builder()- Parameters:
- tagResourceRequest- A- Consumerthat will call methods on- TagResourceRequest.Builderto create a request.
- Returns:
- Result of the TagResource operation returned by the service.
- See Also:
 
- 
untagResourcedefault UntagResourceResponse untagResource(UntagResourceRequest untagResourceRequest) throws AccessDeniedException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Removes tags from a resource in CodeArtifact. - Parameters:
- untagResourceRequest-
- Returns:
- Result of the UntagResource operation returned by the service.
- See Also:
 
- 
untagResourcedefault UntagResourceResponse untagResource(Consumer<UntagResourceRequest.Builder> untagResourceRequest) throws AccessDeniedException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Removes tags from a resource in CodeArtifact. 
 This is a convenience which creates an instance of the UntagResourceRequest.Builderavoiding the need to create one manually viaUntagResourceRequest.builder()- Parameters:
- untagResourceRequest- A- Consumerthat will call methods on- UntagResourceRequest.Builderto create a request.
- Returns:
- Result of the UntagResource operation returned by the service.
- See Also:
 
- 
updatePackageGroupdefault UpdatePackageGroupResponse updatePackageGroup(UpdatePackageGroupRequest updatePackageGroupRequest) throws AccessDeniedException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Updates a package group. This API cannot be used to update a package group's origin configuration or pattern. To update a package group's origin configuration, use UpdatePackageGroupOriginConfiguration. - Parameters:
- updatePackageGroupRequest-
- Returns:
- Result of the UpdatePackageGroup operation returned by the service.
- See Also:
 
- 
updatePackageGroupdefault UpdatePackageGroupResponse updatePackageGroup(Consumer<UpdatePackageGroupRequest.Builder> updatePackageGroupRequest) throws AccessDeniedException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Updates a package group. This API cannot be used to update a package group's origin configuration or pattern. To update a package group's origin configuration, use UpdatePackageGroupOriginConfiguration. 
 This is a convenience which creates an instance of the UpdatePackageGroupRequest.Builderavoiding the need to create one manually viaUpdatePackageGroupRequest.builder()- Parameters:
- updatePackageGroupRequest- A- Consumerthat will call methods on- UpdatePackageGroupRequest.Builderto create a request.
- Returns:
- Result of the UpdatePackageGroup operation returned by the service.
- See Also:
 
- 
updatePackageGroupOriginConfigurationdefault UpdatePackageGroupOriginConfigurationResponse updatePackageGroupOriginConfiguration(UpdatePackageGroupOriginConfigurationRequest updatePackageGroupOriginConfigurationRequest) throws AccessDeniedException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Updates the package origin configuration for a package group. The package origin configuration determines how new versions of a package can be added to a repository. You can allow or block direct publishing of new package versions, or ingestion and retaining of new package versions from an external connection or upstream source. For more information about package group origin controls and configuration, see Package group origin controls in the CodeArtifact User Guide. - Parameters:
- updatePackageGroupOriginConfigurationRequest-
- Returns:
- Result of the UpdatePackageGroupOriginConfiguration operation returned by the service.
- See Also:
 
- 
updatePackageGroupOriginConfigurationdefault UpdatePackageGroupOriginConfigurationResponse updatePackageGroupOriginConfiguration(Consumer<UpdatePackageGroupOriginConfigurationRequest.Builder> updatePackageGroupOriginConfigurationRequest) throws AccessDeniedException, InternalServerException, ServiceQuotaExceededException, ThrottlingException, ValidationException, ResourceNotFoundException, AwsServiceException, SdkClientException, CodeartifactException Updates the package origin configuration for a package group. The package origin configuration determines how new versions of a package can be added to a repository. You can allow or block direct publishing of new package versions, or ingestion and retaining of new package versions from an external connection or upstream source. For more information about package group origin controls and configuration, see Package group origin controls in the CodeArtifact User Guide. 
 This is a convenience which creates an instance of the UpdatePackageGroupOriginConfigurationRequest.Builderavoiding the need to create one manually viaUpdatePackageGroupOriginConfigurationRequest.builder()- Parameters:
- updatePackageGroupOriginConfigurationRequest- A- Consumerthat will call methods on- UpdatePackageGroupOriginConfigurationRequest.Builderto create a request.
- Returns:
- Result of the UpdatePackageGroupOriginConfiguration operation returned by the service.
- See Also:
 
- 
updatePackageVersionsStatusdefault UpdatePackageVersionsStatusResponse updatePackageVersionsStatus(UpdatePackageVersionsStatusRequest updatePackageVersionsStatusRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Updates the status of one or more versions of a package. Using UpdatePackageVersionsStatus, you can update the status of package versions toArchived,Published, orUnlisted. To set the status of a package version toDisposed, use DisposePackageVersions.- Parameters:
- updatePackageVersionsStatusRequest-
- Returns:
- Result of the UpdatePackageVersionsStatus operation returned by the service.
- See Also:
 
- 
updatePackageVersionsStatusdefault UpdatePackageVersionsStatusResponse updatePackageVersionsStatus(Consumer<UpdatePackageVersionsStatusRequest.Builder> updatePackageVersionsStatusRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Updates the status of one or more versions of a package. Using UpdatePackageVersionsStatus, you can update the status of package versions toArchived,Published, orUnlisted. To set the status of a package version toDisposed, use DisposePackageVersions.
 This is a convenience which creates an instance of the UpdatePackageVersionsStatusRequest.Builderavoiding the need to create one manually viaUpdatePackageVersionsStatusRequest.builder()- Parameters:
- updatePackageVersionsStatusRequest- A- Consumerthat will call methods on- UpdatePackageVersionsStatusRequest.Builderto create a request.
- Returns:
- Result of the UpdatePackageVersionsStatus operation returned by the service.
- See Also:
 
- 
updateRepositorydefault UpdateRepositoryResponse updateRepository(UpdateRepositoryRequest updateRepositoryRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Update the properties of a repository. - Parameters:
- updateRepositoryRequest-
- Returns:
- Result of the UpdateRepository operation returned by the service.
- See Also:
 
- 
updateRepositorydefault UpdateRepositoryResponse updateRepository(Consumer<UpdateRepositoryRequest.Builder> updateRepositoryRequest) throws AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, AwsServiceException, SdkClientException, CodeartifactException Update the properties of a repository. 
 This is a convenience which creates an instance of the UpdateRepositoryRequest.Builderavoiding the need to create one manually viaUpdateRepositoryRequest.builder()- Parameters:
- updateRepositoryRequest- A- Consumerthat will call methods on- UpdateRepositoryRequest.Builderto create a request.
- Returns:
- Result of the UpdateRepository operation returned by the service.
- See Also:
 
- 
createCreate aCodeartifactClientwith the region loaded from theDefaultAwsRegionProviderChainand credentials loaded from theDefaultCredentialsProvider.
- 
builderCreate a builder that can be used to configure and create aCodeartifactClient.
- 
serviceMetadata
- 
serviceClientConfigurationDescription copied from interface:SdkClientThe SDK service client configuration exposes client settings to the user, e.g., ClientOverrideConfiguration- Specified by:
- serviceClientConfigurationin interface- AwsClient
- Specified by:
- serviceClientConfigurationin interface- SdkClient
- Returns:
- SdkServiceClientConfiguration
 
 
-