aws_sdk_codeartifact/
lib.rs

1#![allow(deprecated)]
2#![allow(unknown_lints)]
3#![allow(clippy::module_inception)]
4#![allow(clippy::upper_case_acronyms)]
5#![allow(clippy::large_enum_variant)]
6#![allow(clippy::wrong_self_convention)]
7#![allow(clippy::should_implement_trait)]
8#![allow(clippy::disallowed_names)]
9#![allow(clippy::vec_init_then_push)]
10#![allow(clippy::type_complexity)]
11#![allow(clippy::needless_return)]
12#![allow(clippy::derive_partial_eq_without_eq)]
13#![allow(clippy::result_large_err)]
14#![allow(clippy::unnecessary_map_on_constructor)]
15#![allow(rustdoc::bare_urls)]
16#![allow(rustdoc::redundant_explicit_links)]
17#![forbid(unsafe_code)]
18#![warn(missing_docs)]
19#![cfg_attr(docsrs, feature(doc_auto_cfg))]
20//! 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.
21//!
22//! __CodeArtifact concepts__
23//!   - __Repository__: A CodeArtifact repository contains a set of [package versions](https://docs.aws.amazon.com/codeartifact/latest/ug/welcome.html#welcome-concepts-package-version), 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 __ npm __ CLI or the Maven CLI (__ mvn __). For a list of supported package managers, see the [CodeArtifact User Guide](https://docs.aws.amazon.com/codeartifact/latest/ug/welcome.html).
24//!   - __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.
25//!   - __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](https://docs.aws.amazon.com/codeartifact/latest/ug/welcome.html). In CodeArtifact, a package consists of:
26//!     - A _name_ (for example, webpack is the name of a popular npm package)
27//!     - An optional namespace (for example, @types in @types/node)
28//!     - A set of versions (for example, 1.0.0, 1.0.1, 1.0.2, etc.)
29//!     - Package-level metadata (for example, npm tags)
30//!
31//!   - __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.
32//!   - __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](https://semver.org/). In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.
33//!   - __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.
34//!   - __Asset__: An individual file stored in CodeArtifact associated with a package version, such as an npm .tgz file or Maven POM and JAR files.
35//!
36//! __CodeArtifact supported API operations__
37//!   - AssociateExternalConnection: Adds an existing external connection to a repository.
38//!   - CopyPackageVersions: Copies package versions from one repository to another repository in the same domain.
39//!   - CreateDomain: Creates a domain.
40//!   - CreatePackageGroup: Creates a package group.
41//!   - CreateRepository: Creates a CodeArtifact repository in a domain.
42//!   - DeleteDomain: Deletes a domain. You cannot delete a domain that contains repositories.
43//!   - DeleteDomainPermissionsPolicy: Deletes the resource policy that is set on a domain.
44//!   - DeletePackage: Deletes a package and all associated package versions.
45//!   - DeletePackageGroup: Deletes a package group. Does not delete packages or package versions that are associated with a package group.
46//!   - 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.
47//!   - DeleteRepository: Deletes a repository.
48//!   - DeleteRepositoryPermissionsPolicy: Deletes the resource policy that is set on a repository.
49//!   - DescribeDomain: Returns a DomainDescription object that contains information about the requested domain.
50//!   - DescribePackage: Returns a [PackageDescription](https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageDescription.html) object that contains details about a package.
51//!   - DescribePackageGroup: Returns a [PackageGroup](https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageGroup.html) object that contains details about a package group.
52//!   - DescribePackageVersion: Returns a [PackageVersionDescription](https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html) object that contains details about a package version.
53//!   - DescribeRepository: Returns a RepositoryDescription object that contains detailed information about the requested repository.
54//!   - DisposePackageVersions: Disposes versions of a package. A package version with the status Disposed cannot be restored because they have been permanently removed from storage.
55//!   - DisassociateExternalConnection: Removes an existing external connection from a repository.
56//!   - GetAssociatedPackageGroup: Returns the most closely associated package group to the specified package.
57//!   - 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.
58//!   - GetDomainPermissionsPolicy: Returns the policy of a resource that is attached to the specified domain.
59//!   - GetPackageVersionAsset: Returns the contents of an asset that is in a package version.
60//!   - GetPackageVersionReadme: Gets the readme file or descriptive text for a package version.
61//!   - GetRepositoryEndpoint: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:
62//!     - cargo
63//!     - generic
64//!     - maven
65//!     - npm
66//!     - nuget
67//!     - pypi
68//!     - ruby
69//!     - swift
70//!
71//!   - GetRepositoryPermissionsPolicy: Returns the resource policy that is set on a repository.
72//!   - ListAllowedRepositoriesForGroup: Lists the allowed repositories for a package group that has origin configuration set to ALLOW_SPECIFIC_REPOSITORIES.
73//!   - ListAssociatedPackages: Returns a list of packages associated with the requested package group.
74//!   - ListDomains: Returns a list of DomainSummary objects. Each returned DomainSummary object contains information about a domain.
75//!   - ListPackages: Lists the packages in a repository.
76//!   - ListPackageGroups: Returns a list of package groups in the requested domain.
77//!   - ListPackageVersionAssets: Lists the assets for a given package version.
78//!   - ListPackageVersionDependencies: Returns a list of the direct dependencies for a package version.
79//!   - ListPackageVersions: Returns a list of package versions for a specified package in a repository.
80//!   - ListRepositories: Returns a list of repositories owned by the Amazon Web Services account that called this method.
81//!   - ListRepositoriesInDomain: Returns a list of the repositories in a domain.
82//!   - ListSubPackageGroups: Returns a list of direct children of the specified package group.
83//!   - PublishPackageVersion: Creates a new package version containing one or more assets.
84//!   - PutDomainPermissionsPolicy: Attaches a resource policy to a domain.
85//!   - PutPackageOriginConfiguration: Sets the package origin configuration for a package, which determine how new versions of the package can be added to a specific repository.
86//!   - PutRepositoryPermissionsPolicy: Sets the resource policy on a repository that specifies permissions to access it.
87//!   - UpdatePackageGroup: Updates a package group. This API cannot be used to update a package group's origin configuration or pattern.
88//!   - UpdatePackageGroupOriginConfiguration: Updates the package origin configuration for a package group.
89//!   - UpdatePackageVersionsStatus: Updates the status of one or more versions of a package.
90//!   - UpdateRepository: Updates the properties of a repository.
91//!
92//! ## Getting Started
93//!
94//! > Examples are available for many services and operations, check out the
95//! > [examples folder in GitHub](https://github.com/awslabs/aws-sdk-rust/tree/main/examples).
96//!
97//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
98//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-codeartifact` to
99//! your project, add the following to your **Cargo.toml** file:
100//!
101//! ```toml
102//! [dependencies]
103//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
104//! aws-sdk-codeartifact = "1.65.0"
105//! tokio = { version = "1", features = ["full"] }
106//! ```
107//!
108//! Then in code, a client can be created with the following:
109//!
110//! ```rust,no_run
111//! use aws_sdk_codeartifact as codeartifact;
112//!
113//! #[::tokio::main]
114//! async fn main() -> Result<(), codeartifact::Error> {
115//!     let config = aws_config::load_from_env().await;
116//!     let client = aws_sdk_codeartifact::Client::new(&config);
117//!
118//!     // ... make some calls with the client
119//!
120//!     Ok(())
121//! }
122//! ```
123//!
124//! See the [client documentation](https://docs.rs/aws-sdk-codeartifact/latest/aws_sdk_codeartifact/client/struct.Client.html)
125//! for information on what calls can be made, and the inputs and outputs for each of those calls.
126//!
127//! ## Using the SDK
128//!
129//! Until the SDK is released, we will be adding information about using the SDK to the
130//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
131//! additional sections for the guide by opening an issue and describing what you are trying to do.
132//!
133//! ## Getting Help
134//!
135//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
136//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
137//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
138//! * [Usage examples](https://github.com/awslabs/aws-sdk-rust/tree/main/examples)
139//!
140//!
141//! # Crate Organization
142//!
143//! The entry point for most customers will be [`Client`], which exposes one method for each API
144//! offered by CodeArtifact. The return value of each of these methods is a "fluent builder",
145//! where the different inputs for that API are added by builder-style function call chaining,
146//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
147//! either a successful output or a [`SdkError`](crate::error::SdkError).
148//!
149//! Some of these API inputs may be structs or enums to provide more complex structured information.
150//! These structs and enums live in [`types`](crate::types). There are some simpler types for
151//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
152//!
153//! All types required to configure a client via the [`Config`](crate::Config) struct live
154//! in [`config`](crate::config).
155//!
156//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
157//! is the input, output, and error type for that API, as well as builders to construct each of those.
158//!
159//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
160//! client can return. Any other error type can be converted to this `Error` type via the
161//! [`From`](std::convert::From) trait.
162//!
163//! The other modules within this crate are not required for normal usage.
164
165// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
166pub use error_meta::Error;
167
168#[doc(inline)]
169pub use config::Config;
170
171/// Client for calling CodeArtifact.
172/// ## Constructing a `Client`
173///
174/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
175/// crate should be used to automatically resolve this config using
176/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
177/// across multiple different AWS SDK clients. This config resolution process can be customized
178/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
179/// the [builder pattern] to customize the default config.
180///
181/// In the simplest case, creating a client looks as follows:
182/// ```rust,no_run
183/// # async fn wrapper() {
184/// let config = aws_config::load_from_env().await;
185/// let client = aws_sdk_codeartifact::Client::new(&config);
186/// # }
187/// ```
188///
189/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
190/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
191/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
192/// done as follows:
193///
194/// ```rust,no_run
195/// # async fn wrapper() {
196/// let sdk_config = ::aws_config::load_from_env().await;
197/// let config = aws_sdk_codeartifact::config::Builder::from(&sdk_config)
198/// # /*
199///     .some_service_specific_setting("value")
200/// # */
201///     .build();
202/// # }
203/// ```
204///
205/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
206///
207/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
208/// be done once at application start-up.
209///
210/// [`Config`]: crate::Config
211/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
212/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
213/// [`aws-config` docs]: https://docs.rs/aws-config/*
214/// [`aws-config`]: https://crates.io/crates/aws-config
215/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
216/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
217/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
218/// # Using the `Client`
219///
220/// A client has a function for every operation that can be performed by the service.
221/// For example, the [`AssociateExternalConnection`](crate::operation::associate_external_connection) operation has
222/// a [`Client::associate_external_connection`], function which returns a builder for that operation.
223/// The fluent builder ultimately has a `send()` function that returns an async future that
224/// returns a result, as illustrated below:
225///
226/// ```rust,ignore
227/// let result = client.associate_external_connection()
228///     .domain("example")
229///     .send()
230///     .await;
231/// ```
232///
233/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
234/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
235/// information.
236pub mod client;
237
238/// Configuration for CodeArtifact.
239pub mod config;
240
241/// Common errors and error handling utilities.
242pub mod error;
243
244mod error_meta;
245
246/// Information about this crate.
247pub mod meta;
248
249/// All operations that this crate can perform.
250pub mod operation;
251
252/// Primitives such as `Blob` or `DateTime` used by other types.
253pub mod primitives;
254
255/// Data structures used by operation inputs/outputs.
256pub mod types;
257
258mod auth_plugin;
259
260pub(crate) mod protocol_serde;
261
262mod sdk_feature_tracker;
263
264mod serialization_settings;
265
266mod endpoint_lib;
267
268mod lens;
269
270mod serde_util;
271
272mod json_errors;
273
274#[doc(inline)]
275pub use client::Client;