Returns a list of PackageSummary objects for packages in a repository that match the request parameters
Source:R/codeartifact_operations.R
codeartifact_list_packages.RdReturns a list of PackageSummary objects for packages in a repository that match the request parameters.
See https://www.paws-r-sdk.com/docs/codeartifact_list_packages/ for full documentation.
Usage
codeartifact_list_packages(
domain,
domainOwner = NULL,
repository,
format = NULL,
namespace = NULL,
packagePrefix = NULL,
maxResults = NULL,
nextToken = NULL,
publish = NULL,
upstream = NULL
)Arguments
- domain
[required] The name of the domain that contains the repository that contains the requested packages.
- domainOwner
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
- repository
[required] The name of the repository that contains the requested packages.
- format
The format used to filter requested packages. Only packages from the provided format will be returned.
- namespace
The namespace prefix used to filter requested packages. Only packages with a namespace that starts with the provided string value are returned. Note that although this option is called
--namespaceand not--namespace-prefix, it has prefix-matching behavior.Each package format uses namespace as follows:
The namespace of a Maven package version is its
groupId.The namespace of an npm or Swift package version is its
scope.The namespace of a generic package is its
namespace.Python, NuGet, Ruby, and Cargo package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
- packagePrefix
A prefix used to filter requested packages. Only packages with names that start with
packagePrefixare returned.- maxResults
The maximum number of results to return per page.
- nextToken
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
- publish
The value of the
Publishpackage origin control restriction used to filter requested packages. Only packages with the provided restriction are returned. For more information, see PackageOriginRestrictions.- upstream
The value of the
Upstreampackage origin control restriction used to filter requested packages. Only packages with the provided restriction are returned. For more information, see PackageOriginRestrictions.