Sets the package origin configuration for a package.
See https://www.paws-r-sdk.com/docs/codeartifact_put_package_origin_configuration/ for full documentation.
codeartifact_put_package_origin_configuration(
domain,
domainOwner = NULL,
repository,
format,
namespace = NULL,
package,
restrictions
)
[required] The name of the domain that contains the repository that contains the package.
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
[required] The name of the repository that contains the package.
[required] A format that specifies the type of the package to be updated.
The namespace of the package to be updated. The package component that specifies its namespace depends on its type. For example:
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.
[required] The name of the package to be updated.
[required] A
PackageOriginRestrictions
object that contains information about the upstream
and publish
package origin restrictions. The upstream
restriction determines if
new package versions can be ingested or retained from external
connections or upstream repositories. The publish
restriction
determines if new package versions can be published directly to the
repository.
You must include both the desired upstream
and publish
restrictions.