Skip to main content

aws_sdk_devopsagent/
config.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#![allow(clippy::empty_line_after_doc_comments)]
3/// Configuration for a aws_sdk_devopsagent service client.
4///
5/// Service configuration allows for customization of endpoints, region, credentials providers,
6/// and retry configuration. Generally, it is constructed automatically for you from a shared
7/// configuration loaded by the `aws-config` crate. For example:
8///
9/// ```ignore
10/// // Load a shared config from the environment
11/// let shared_config = aws_config::from_env().load().await;
12/// // The client constructor automatically converts the shared config into the service config
13/// let client = Client::new(&shared_config);
14/// ```
15///
16/// The service config can also be constructed manually using its builder.
17///
18#[derive(::std::clone::Clone, ::std::fmt::Debug)]
19pub struct Config {
20    // Both `config` and `cloneable` are the same config, but the cloneable one
21    // is kept around so that it is possible to convert back into a builder. This can be
22    // optimized in the future.
23    pub(crate) config: crate::config::FrozenLayer,
24    cloneable: ::aws_smithy_types::config_bag::CloneableLayer,
25    pub(crate) runtime_components: crate::config::RuntimeComponentsBuilder,
26    pub(crate) runtime_plugins: ::std::vec::Vec<crate::config::SharedRuntimePlugin>,
27    pub(crate) behavior_version: ::std::option::Option<crate::config::BehaviorVersion>,
28}
29impl Config {
30    ///
31    /// Constructs a config builder.
32    /// <div class="warning">
33    /// Note that a config created from this builder will not have the same safe defaults as one created by
34    /// the <a href="https://crates.io/crates/aws-config" target="_blank">aws-config</a> crate.
35    /// </div>
36    ///
37    pub fn builder() -> Builder {
38        Builder::default()
39    }
40    /// Converts this config back into a builder so that it can be tweaked.
41    pub fn to_builder(&self) -> Builder {
42        Builder {
43            config: self.cloneable.clone(),
44            runtime_components: self.runtime_components.clone(),
45            runtime_plugins: self.runtime_plugins.clone(),
46            behavior_version: self.behavior_version,
47        }
48    }
49    /// Return a reference to the stalled stream protection configuration contained in this config, if any.
50    pub fn stalled_stream_protection(&self) -> ::std::option::Option<&crate::config::StalledStreamProtectionConfig> {
51        self.config.load::<crate::config::StalledStreamProtectionConfig>()
52    }
53    /// Return the [`SharedHttpClient`](crate::config::SharedHttpClient) to use when making requests, if any.
54    pub fn http_client(&self) -> Option<crate::config::SharedHttpClient> {
55        self.runtime_components.http_client()
56    }
57    /// Return the auth schemes configured on this service config
58    pub fn auth_schemes(&self) -> impl Iterator<Item = ::aws_smithy_runtime_api::client::auth::SharedAuthScheme> + '_ {
59        self.runtime_components.auth_schemes()
60    }
61
62    /// Return the auth scheme resolver configured on this service config
63    pub fn auth_scheme_resolver(&self) -> ::std::option::Option<::aws_smithy_runtime_api::client::auth::SharedAuthSchemeOptionResolver> {
64        self.runtime_components.auth_scheme_option_resolver()
65    }
66    /// Returns the configured auth scheme preference
67    pub fn auth_scheme_preference(&self) -> ::std::option::Option<&::aws_smithy_runtime_api::client::auth::AuthSchemePreference> {
68        self.config.load::<::aws_smithy_runtime_api::client::auth::AuthSchemePreference>()
69    }
70    /// Returns the endpoint resolver.
71    pub fn endpoint_resolver(&self) -> ::aws_smithy_runtime_api::client::endpoint::SharedEndpointResolver {
72        self.runtime_components.endpoint_resolver().expect("resolver defaulted if not set")
73    }
74    /// Return a reference to the retry configuration contained in this config, if any.
75    pub fn retry_config(&self) -> ::std::option::Option<&::aws_smithy_types::retry::RetryConfig> {
76        self.config.load::<::aws_smithy_types::retry::RetryConfig>()
77    }
78
79    /// Return a cloned shared async sleep implementation from this config, if any.
80    pub fn sleep_impl(&self) -> ::std::option::Option<crate::config::SharedAsyncSleep> {
81        self.runtime_components.sleep_impl()
82    }
83
84    /// Return a reference to the timeout configuration contained in this config, if any.
85    pub fn timeout_config(&self) -> ::std::option::Option<&::aws_smithy_types::timeout::TimeoutConfig> {
86        self.config.load::<::aws_smithy_types::timeout::TimeoutConfig>()
87    }
88
89    /// Returns a reference to the retry partition contained in this config, if any.
90    ///
91    /// WARNING: This method is unstable and may be removed at any time. Do not rely on this
92    /// method for anything!
93    pub fn retry_partition(&self) -> ::std::option::Option<&::aws_smithy_runtime::client::retries::RetryPartition> {
94        self.config.load::<::aws_smithy_runtime::client::retries::RetryPartition>()
95    }
96    /// Returns the configured identity cache for auth.
97    pub fn identity_cache(&self) -> ::std::option::Option<crate::config::SharedIdentityCache> {
98        self.runtime_components.identity_cache()
99    }
100    /// Returns interceptors currently registered by the user.
101    pub fn interceptors(&self) -> impl Iterator<Item = crate::config::SharedInterceptor> + '_ {
102        self.runtime_components.interceptors()
103    }
104    /// Return time source used for this service.
105    pub fn time_source(&self) -> ::std::option::Option<::aws_smithy_async::time::SharedTimeSource> {
106        self.runtime_components.time_source()
107    }
108    /// Returns retry classifiers currently registered by the user.
109    pub fn retry_classifiers(&self) -> impl Iterator<Item = ::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier> + '_ {
110        self.runtime_components.retry_classifiers()
111    }
112    /// Returns the name of the app that is using the client, if it was provided.
113    ///
114    /// This _optional_ name is used to identify the application in the user agent that
115    /// gets sent along with requests.
116    pub fn app_name(&self) -> ::std::option::Option<&::aws_types::app_name::AppName> {
117        self.config.load::<::aws_types::app_name::AppName>()
118    }
119    /// Returns the framework metadata that has been configured, if any.
120    ///
121    /// This _optional_ metadata identifies software frameworks or third-party libraries
122    /// being used with the client, rendered into the user agent as `lib/{name}/{version}`.
123    /// Entries are returned in first-seen (insertion) order, matching the order they are
124    /// rendered into the user agent.
125    pub fn framework_metadata(&self) -> ::std::vec::Vec<&::aws_types::sdk_ua_metadata::FrameworkMetadata> {
126        // `StoreAppend` loads entries newest-first; reverse to first-seen order so
127        // this getter agrees with both the user agent and `SdkConfig::framework_metadata`.
128        let mut entries: ::std::vec::Vec<&::aws_types::sdk_ua_metadata::FrameworkMetadata> =
129            self.config.load::<::aws_types::sdk_ua_metadata::FrameworkMetadata>().collect();
130        entries.reverse();
131        entries
132    }
133    /// Returns the invocation ID generator if one was given in config.
134    ///
135    /// The invocation ID generator generates ID values for the `amz-sdk-invocation-id` header. By default, this will be a random UUID. Overriding it may be useful in tests that examine the HTTP request and need to be deterministic.
136    pub fn invocation_id_generator(&self) -> ::std::option::Option<::aws_runtime::invocation_id::SharedInvocationIdGenerator> {
137        self.config.load::<::aws_runtime::invocation_id::SharedInvocationIdGenerator>().cloned()
138    }
139    /// Creates a new [service config](crate::Config) from a [shared `config`](::aws_types::sdk_config::SdkConfig).
140    pub fn new(config: &::aws_types::sdk_config::SdkConfig) -> Self {
141        Builder::from(config).build()
142    }
143    /// The signature version 4 service signing name to use in the credential scope when signing requests.
144    ///
145    /// The signing service may be overridden by the `Endpoint`, or by specifying a custom
146    /// [`SigningName`](aws_types::SigningName) during operation construction
147    pub fn signing_name(&self) -> &'static str {
148        "aidevops"
149    }
150    /// Returns the AWS region, if it was provided.
151    pub fn region(&self) -> ::std::option::Option<&crate::config::Region> {
152        self.config.load::<crate::config::Region>()
153    }
154    /// This function was intended to be removed, and has been broken since release-2023-11-15 as it always returns a `None`. Do not use.
155    #[deprecated(
156        note = "This function was intended to be removed, and has been broken since release-2023-11-15 as it always returns a `None`. Do not use."
157    )]
158    pub fn credentials_provider(&self) -> Option<crate::config::SharedCredentialsProvider> {
159        ::std::option::Option::None
160    }
161}
162/// Builder for creating a `Config`.
163#[derive(::std::clone::Clone, ::std::fmt::Debug)]
164pub struct Builder {
165    pub(crate) config: ::aws_smithy_types::config_bag::CloneableLayer,
166    pub(crate) runtime_components: crate::config::RuntimeComponentsBuilder,
167    pub(crate) runtime_plugins: ::std::vec::Vec<crate::config::SharedRuntimePlugin>,
168    pub(crate) behavior_version: ::std::option::Option<crate::config::BehaviorVersion>,
169}
170impl ::std::default::Default for Builder {
171    fn default() -> Self {
172        Self {
173            config: ::std::default::Default::default(),
174            runtime_components: crate::config::RuntimeComponentsBuilder::new("service config"),
175            runtime_plugins: ::std::default::Default::default(),
176            behavior_version: ::std::default::Default::default(),
177        }
178    }
179}
180impl Builder {
181    ///
182    /// Constructs a config builder.
183    /// <div class="warning">
184    /// Note that a config created from this builder will not have the same safe defaults as one created by
185    /// the <a href="https://crates.io/crates/aws-config" target="_blank">aws-config</a> crate.
186    /// </div>
187    ///
188    pub fn new() -> Self {
189        Self::default()
190    }
191    /// Constructs a config builder from the given `config_bag`, setting only fields stored in the config bag,
192    /// but not those in runtime components.
193    #[allow(unused)]
194    pub(crate) fn from_config_bag(config_bag: &::aws_smithy_types::config_bag::ConfigBag) -> Self {
195        let mut builder = Self::new();
196        builder.set_stalled_stream_protection(config_bag.load::<crate::config::StalledStreamProtectionConfig>().cloned());
197        builder.set_auth_scheme_preference(config_bag.load::<::aws_smithy_runtime_api::client::auth::AuthSchemePreference>().cloned());
198        builder.set_retry_config(config_bag.load::<::aws_smithy_types::retry::RetryConfig>().cloned());
199        builder.set_timeout_config(config_bag.load::<::aws_smithy_types::timeout::TimeoutConfig>().cloned());
200        builder.set_retry_partition(config_bag.load::<::aws_smithy_runtime::client::retries::RetryPartition>().cloned());
201        builder.set_app_name(config_bag.load::<::aws_types::app_name::AppName>().cloned());
202        for framework_metadata in config_bag.load::<::aws_types::sdk_ua_metadata::FrameworkMetadata>() {
203            builder.push_framework_metadata(framework_metadata.clone());
204        }
205        builder.set_endpoint_url(config_bag.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()));
206        builder.set_use_fips(config_bag.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0));
207        builder.set_region(config_bag.load::<crate::config::Region>().cloned());
208        builder
209    }
210    /// Set the [`StalledStreamProtectionConfig`](crate::config::StalledStreamProtectionConfig)
211    /// to configure protection for stalled streams.
212    pub fn stalled_stream_protection(mut self, stalled_stream_protection_config: crate::config::StalledStreamProtectionConfig) -> Self {
213        self.set_stalled_stream_protection(::std::option::Option::Some(stalled_stream_protection_config));
214        self
215    }
216    /// Set the [`StalledStreamProtectionConfig`](crate::config::StalledStreamProtectionConfig)
217    /// to configure protection for stalled streams.
218    pub fn set_stalled_stream_protection(
219        &mut self,
220        stalled_stream_protection_config: ::std::option::Option<crate::config::StalledStreamProtectionConfig>,
221    ) -> &mut Self {
222        self.config.store_or_unset(stalled_stream_protection_config);
223        self
224    }
225    /// Sets the idempotency token provider to use for service calls that require tokens.
226    pub fn idempotency_token_provider(
227        mut self,
228        idempotency_token_provider: impl ::std::convert::Into<crate::idempotency_token::IdempotencyTokenProvider>,
229    ) -> Self {
230        self.set_idempotency_token_provider(::std::option::Option::Some(idempotency_token_provider.into()));
231        self
232    }
233    /// Sets the idempotency token provider to use for service calls that require tokens.
234    pub fn set_idempotency_token_provider(
235        &mut self,
236        idempotency_token_provider: ::std::option::Option<crate::idempotency_token::IdempotencyTokenProvider>,
237    ) -> &mut Self {
238        self.config.store_or_unset(idempotency_token_provider);
239        self
240    }
241    /// Sets the HTTP client to use when making requests.
242    ///
243    /// # Examples
244    /// ```no_run
245    /// # #[cfg(test)]
246    /// # mod tests {
247    /// # #[test]
248    /// # fn example() {
249    /// use std::time::Duration;
250    /// use aws_sdk_devopsagent::config::Config;
251    /// use aws_smithy_runtime::client::http::hyper_014::HyperClientBuilder;
252    ///
253    /// let https_connector = hyper_rustls::HttpsConnectorBuilder::new()
254    ///     .with_webpki_roots()
255    ///     .https_only()
256    ///     .enable_http1()
257    ///     .enable_http2()
258    ///     .build();
259    /// let hyper_client = HyperClientBuilder::new().build(https_connector);
260    ///
261    /// // This connector can then be given to a generated service Config
262    /// let config = my_service_client::Config::builder()
263    ///     .endpoint_url("https://example.com")
264    ///     .http_client(hyper_client)
265    ///     .build();
266    /// let client = my_service_client::Client::from_conf(config);
267    /// # }
268    /// # }
269    /// ```
270    pub fn http_client(mut self, http_client: impl crate::config::HttpClient + 'static) -> Self {
271        self.set_http_client(::std::option::Option::Some(crate::config::IntoShared::into_shared(http_client)));
272        self
273    }
274
275    /// Sets the HTTP client to use when making requests.
276    ///
277    /// # Examples
278    /// ```no_run
279    /// # #[cfg(test)]
280    /// # mod tests {
281    /// # #[test]
282    /// # fn example() {
283    /// use std::time::Duration;
284    /// use aws_sdk_devopsagent::config::{Builder, Config};
285    /// use aws_smithy_runtime::client::http::hyper_014::HyperClientBuilder;
286    ///
287    /// fn override_http_client(builder: &mut Builder) {
288    ///     let https_connector = hyper_rustls::HttpsConnectorBuilder::new()
289    ///         .with_webpki_roots()
290    ///         .https_only()
291    ///         .enable_http1()
292    ///         .enable_http2()
293    ///         .build();
294    ///     let hyper_client = HyperClientBuilder::new().build(https_connector);
295    ///     builder.set_http_client(Some(hyper_client));
296    /// }
297    ///
298    /// let mut builder = aws_sdk_devopsagent::Config::builder();
299    /// override_http_client(&mut builder);
300    /// let config = builder.build();
301    /// # }
302    /// # }
303    /// ```
304    pub fn set_http_client(&mut self, http_client: Option<crate::config::SharedHttpClient>) -> &mut Self {
305        self.runtime_components.set_http_client(http_client);
306        self
307    }
308    /// Adds an auth scheme to the builder
309    ///
310    /// If `auth_scheme` has an existing [AuthSchemeId](aws_smithy_runtime_api::client::auth::AuthSchemeId) in the runtime, the current identity
311    /// resolver and signer for that scheme will be replaced by those from `auth_scheme`.
312    ///
313    /// _Important:_ When introducing a custom auth scheme, ensure you override either
314    /// [`Self::auth_scheme_resolver`] or [`Self::set_auth_scheme_resolver`]
315    /// so that the custom auth scheme is included in the list of resolved auth scheme options.
316    /// [The default auth scheme resolver](crate::config::auth::DefaultAuthSchemeResolver) will not recognize your custom auth scheme.
317    ///
318    /// # Examples
319    /// ```no_run
320    /// # use aws_smithy_runtime_api::{
321    /// #     box_error::BoxError,
322    /// #     client::{
323    /// #         auth::{
324    /// #             AuthScheme, AuthSchemeEndpointConfig, AuthSchemeId, AuthSchemeOption,
325    /// #             AuthSchemeOptionsFuture, Sign,
326    /// #         },
327    /// #         identity::{Identity, IdentityFuture, ResolveIdentity, SharedIdentityResolver},
328    /// #         orchestrator::HttpRequest,
329    /// #         runtime_components::{GetIdentityResolver, RuntimeComponents},
330    /// #   },
331    /// #   shared::IntoShared,
332    /// # };
333    /// # use aws_smithy_types::config_bag::ConfigBag;
334    /// // Auth scheme with customer identity resolver and signer
335    /// #[derive(Debug)]
336    /// struct CustomAuthScheme {
337    ///     id: AuthSchemeId,
338    ///     identity_resolver: SharedIdentityResolver,
339    ///     signer: CustomSigner,
340    /// }
341    /// impl Default for CustomAuthScheme {
342    ///     fn default() -> Self {
343    ///         Self {
344    ///             id: AuthSchemeId::new("custom"),
345    ///             identity_resolver: CustomIdentityResolver.into_shared(),
346    ///             signer: CustomSigner,
347    ///         }
348    ///     }
349    /// }
350    /// impl AuthScheme for CustomAuthScheme {
351    ///     fn scheme_id(&self) -> AuthSchemeId {
352    ///         self.id.clone()
353    ///     }
354    ///     fn identity_resolver(
355    ///         &self,
356    ///         _identity_resolvers: &dyn GetIdentityResolver,
357    ///     ) -> Option<SharedIdentityResolver> {
358    ///         Some(self.identity_resolver.clone())
359    ///     }
360    ///     fn signer(&self) -> &dyn Sign {
361    ///         &self.signer
362    ///     }
363    /// }
364    ///
365    /// #[derive(Debug, Default)]
366    /// struct CustomSigner;
367    /// impl Sign for CustomSigner {
368    ///     fn sign_http_request(
369    ///         &self,
370    ///         _request: &mut HttpRequest,
371    ///         _identity: &Identity,
372    ///         _auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>,
373    ///         _runtime_components: &RuntimeComponents,
374    ///         _config_bag: &ConfigBag,
375    ///     ) -> Result<(), BoxError> {
376    ///         // --snip--
377    /// #      todo!()
378    ///     }
379    /// }
380    ///
381    /// #[derive(Debug)]
382    /// struct CustomIdentityResolver;
383    /// impl ResolveIdentity for CustomIdentityResolver {
384    ///     fn resolve_identity<'a>(
385    ///         &'a self,
386    ///         _runtime_components: &'a RuntimeComponents,
387    ///         _config_bag: &'a ConfigBag,
388    ///     ) -> IdentityFuture<'a> {
389    ///         // --snip--
390    /// #      todo!()
391    ///     }
392    /// }
393    ///
394    /// // Auth scheme resolver that favors `CustomAuthScheme`
395    /// #[derive(Debug)]
396    /// struct CustomAuthSchemeResolver;
397    /// impl aws_sdk_devopsagent::config::auth::ResolveAuthScheme for CustomAuthSchemeResolver {
398    ///     fn resolve_auth_scheme<'a>(
399    ///         &'a self,
400    ///         _params: &'a aws_sdk_devopsagent::config::auth::Params,
401    ///         _cfg: &'a ConfigBag,
402    ///         _runtime_components: &'a RuntimeComponents,
403    ///     ) -> AuthSchemeOptionsFuture<'a> {
404    ///         AuthSchemeOptionsFuture::ready(Ok(vec![AuthSchemeOption::from(AuthSchemeId::new(
405    ///             "custom",
406    ///         ))]))
407    ///     }
408    /// }
409    ///
410    /// let config = aws_sdk_devopsagent::Config::builder()
411    ///     .push_auth_scheme(CustomAuthScheme::default())
412    ///     .auth_scheme_resolver(CustomAuthSchemeResolver)
413    ///     // other configurations
414    ///     .build();
415    /// ```
416    pub fn push_auth_scheme(mut self, auth_scheme: impl ::aws_smithy_runtime_api::client::auth::AuthScheme + 'static) -> Self {
417        self.runtime_components.push_auth_scheme(auth_scheme);
418        self
419    }
420
421    /// Set the auth scheme resolver for the builder
422    ///
423    /// # Examples
424    /// ```no_run
425    /// # use aws_smithy_runtime_api::{
426    /// #     client::{
427    /// #         auth::AuthSchemeOptionsFuture,
428    /// #         runtime_components::RuntimeComponents,
429    /// #   },
430    /// # };
431    /// # use aws_smithy_types::config_bag::ConfigBag;
432    /// #[derive(Debug)]
433    /// struct CustomAuthSchemeResolver;
434    /// impl aws_sdk_devopsagent::config::auth::ResolveAuthScheme for CustomAuthSchemeResolver {
435    ///     fn resolve_auth_scheme<'a>(
436    ///         &'a self,
437    ///         _params: &'a aws_sdk_devopsagent::config::auth::Params,
438    ///         _cfg: &'a ConfigBag,
439    ///         _runtime_components: &'a RuntimeComponents,
440    ///     ) -> AuthSchemeOptionsFuture<'a> {
441    ///         // --snip--
442    /// #      todo!()
443    ///     }
444    /// }
445    ///
446    /// let config = aws_sdk_devopsagent::Config::builder()
447    ///     .auth_scheme_resolver(CustomAuthSchemeResolver)
448    ///     // other configurations
449    ///     .build();
450    /// ```
451    pub fn auth_scheme_resolver(mut self, auth_scheme_resolver: impl crate::config::auth::ResolveAuthScheme + 'static) -> Self {
452        self.set_auth_scheme_resolver(auth_scheme_resolver);
453        self
454    }
455
456    /// Set the auth scheme resolver for the builder
457    ///
458    /// # Examples
459    /// See an example for [`Self::auth_scheme_resolver`].
460    pub fn set_auth_scheme_resolver(&mut self, auth_scheme_resolver: impl crate::config::auth::ResolveAuthScheme + 'static) -> &mut Self {
461        self.runtime_components
462            .set_auth_scheme_option_resolver(::std::option::Option::Some(auth_scheme_resolver.into_shared_resolver()));
463        self
464    }
465
466    /// Enable no authentication regardless of what authentication mechanisms operations support
467    ///
468    /// This adds [NoAuthScheme](aws_smithy_runtime::client::auth::no_auth::NoAuthScheme) as a fallback
469    /// and the auth scheme resolver will use it when no other auth schemes are applicable.
470    pub fn allow_no_auth(mut self) -> Self {
471        self.set_allow_no_auth();
472        self
473    }
474
475    /// Enable no authentication regardless of what authentication mechanisms operations support
476    ///
477    /// This adds [NoAuthScheme](aws_smithy_runtime::client::auth::no_auth::NoAuthScheme) as a fallback
478    /// and the auth scheme resolver will use it when no other auth schemes are applicable.
479    pub fn set_allow_no_auth(&mut self) -> &mut Self {
480        self.push_runtime_plugin(::aws_smithy_runtime::client::auth::no_auth::NoAuthRuntimePluginV2::new().into_shared());
481        self
482    }
483    /// Set the auth scheme preference for an auth scheme resolver
484    /// (typically the default auth scheme resolver).
485    ///
486    /// Each operation has a predefined order of auth schemes, as determined by the service,
487    /// for auth scheme resolution. By using the auth scheme preference, customers
488    /// can reorder the schemes resolved by the auth scheme resolver.
489    ///
490    /// The preference list is intended as a hint rather than a strict override.
491    /// Any schemes not present in the originally resolved auth schemes will be ignored.
492    ///
493    /// # Examples
494    ///
495    /// ```no_run
496    /// # use aws_smithy_runtime_api::client::auth::AuthSchemeId;
497    /// let config = aws_sdk_devopsagent::Config::builder()
498    ///     .auth_scheme_preference([AuthSchemeId::from("scheme1"), AuthSchemeId::from("scheme2")])
499    ///     // ...
500    ///     .build();
501    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
502    /// ```
503
504    pub fn auth_scheme_preference(
505        mut self,
506        preference: impl ::std::convert::Into<::aws_smithy_runtime_api::client::auth::AuthSchemePreference>,
507    ) -> Self {
508        self.set_auth_scheme_preference(::std::option::Option::Some(preference.into()));
509        self
510    }
511
512    /// Set the auth scheme preference for an auth scheme resolver
513    /// (typically the default auth scheme resolver).
514    ///
515    /// Each operation has a predefined order of auth schemes, as determined by the service,
516    /// for auth scheme resolution. By using the auth scheme preference, customers
517    /// can reorder the schemes resolved by the auth scheme resolver.
518    ///
519    /// The preference list is intended as a hint rather than a strict override.
520    /// Any schemes not present in the originally resolved auth schemes will be ignored.
521    ///
522    /// # Examples
523    ///
524    /// ```no_run
525    /// # use aws_smithy_runtime_api::client::auth::AuthSchemeId;
526    /// let config = aws_sdk_devopsagent::Config::builder()
527    ///     .auth_scheme_preference([AuthSchemeId::from("scheme1"), AuthSchemeId::from("scheme2")])
528    ///     // ...
529    ///     .build();
530    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
531    /// ```
532
533    pub fn set_auth_scheme_preference(
534        &mut self,
535        preference: ::std::option::Option<::aws_smithy_runtime_api::client::auth::AuthSchemePreference>,
536    ) -> &mut Self {
537        self.config.store_or_unset(preference);
538        self
539    }
540    /// Sets the endpoint resolver to use when making requests.
541    ///
542    ///
543    /// When unset, the client will used a generated endpoint resolver based on the endpoint resolution
544    /// rules for `aws_sdk_devopsagent`.
545    ///
546    ///
547    /// Note: setting an endpoint resolver will replace any endpoint URL that has been set.
548    /// This method accepts an endpoint resolver [specific to this service](crate::config::endpoint::ResolveEndpoint). If you want to
549    /// provide a shared endpoint resolver, use [`Self::set_endpoint_resolver`].
550    ///
551    /// # Examples
552    /// Create a custom endpoint resolver that resolves a different endpoing per-stage, e.g. staging vs. production.
553    /// ```no_run
554    /// use aws_sdk_devopsagent::config::endpoint::{ResolveEndpoint, EndpointFuture, Params, Endpoint};
555    /// #[derive(Debug)]
556    /// struct StageResolver { stage: String }
557    /// impl ResolveEndpoint for StageResolver {
558    ///     fn resolve_endpoint(&self, params: &Params) -> EndpointFuture<'_> {
559    ///         let stage = &self.stage;
560    ///         EndpointFuture::ready(Ok(Endpoint::builder().url(format!("{stage}.myservice.com")).build()))
561    ///     }
562    /// }
563    /// let resolver = StageResolver { stage: std::env::var("STAGE").unwrap() };
564    /// let config = aws_sdk_devopsagent::Config::builder().endpoint_resolver(resolver).build();
565    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
566    /// ```
567    pub fn endpoint_resolver(mut self, endpoint_resolver: impl crate::config::endpoint::ResolveEndpoint + 'static) -> Self {
568        self.set_endpoint_resolver(::std::option::Option::Some(endpoint_resolver.into_shared_resolver()));
569        self
570    }
571
572    /// Sets the endpoint resolver to use when making requests.
573    ///
574    ///
575    /// When unset, the client will used a generated endpoint resolver based on the endpoint resolution
576    /// rules for `aws_sdk_devopsagent`.
577    ///
578    pub fn set_endpoint_resolver(
579        &mut self,
580        endpoint_resolver: ::std::option::Option<::aws_smithy_runtime_api::client::endpoint::SharedEndpointResolver>,
581    ) -> &mut Self {
582        self.runtime_components.set_endpoint_resolver(endpoint_resolver);
583        self
584    }
585    /// Set the retry_config for the builder
586    ///
587    /// # Examples
588    /// ```no_run
589    /// use aws_sdk_devopsagent::config::Config;
590    /// use aws_sdk_devopsagent::config::retry::RetryConfig;
591    ///
592    /// let retry_config = RetryConfig::standard().with_max_attempts(5);
593    /// let config = Config::builder().retry_config(retry_config).build();
594    /// ```
595    pub fn retry_config(mut self, retry_config: ::aws_smithy_types::retry::RetryConfig) -> Self {
596        self.set_retry_config(Some(retry_config));
597        self
598    }
599
600    /// Set the retry_config for the builder
601    ///
602    /// # Examples
603    /// ```no_run
604    /// use aws_sdk_devopsagent::config::{Builder, Config};
605    /// use aws_sdk_devopsagent::config::retry::RetryConfig;
606    ///
607    /// fn disable_retries(builder: &mut Builder) {
608    ///     let retry_config = RetryConfig::standard().with_max_attempts(1);
609    ///     builder.set_retry_config(Some(retry_config));
610    /// }
611    ///
612    /// let mut builder = Config::builder();
613    /// disable_retries(&mut builder);
614    /// let config = builder.build();
615    /// ```
616    pub fn set_retry_config(&mut self, retry_config: ::std::option::Option<::aws_smithy_types::retry::RetryConfig>) -> &mut Self {
617        retry_config.map(|r| self.config.store_put(r));
618        self
619    }
620    /// Set the sleep_impl for the builder
621    ///
622    /// # Examples
623    ///
624    /// ```no_run
625    /// use aws_sdk_devopsagent::config::{AsyncSleep, Config, SharedAsyncSleep, Sleep};
626    ///
627    /// #[derive(Debug)]
628    /// pub struct ForeverSleep;
629    ///
630    /// impl AsyncSleep for ForeverSleep {
631    ///     fn sleep(&self, duration: std::time::Duration) -> Sleep {
632    ///         Sleep::new(std::future::pending())
633    ///     }
634    /// }
635    ///
636    /// let sleep_impl = SharedAsyncSleep::new(ForeverSleep);
637    /// let config = Config::builder().sleep_impl(sleep_impl).build();
638    /// ```
639    pub fn sleep_impl(mut self, sleep_impl: impl crate::config::AsyncSleep + 'static) -> Self {
640        self.set_sleep_impl(Some(::aws_smithy_runtime_api::shared::IntoShared::into_shared(sleep_impl)));
641        self
642    }
643
644    /// Set the sleep_impl for the builder
645    ///
646    /// # Examples
647    ///
648    /// ```no_run
649    /// use aws_sdk_devopsagent::config::{AsyncSleep, Builder, Config, SharedAsyncSleep, Sleep};
650    ///
651    /// #[derive(Debug)]
652    /// pub struct ForeverSleep;
653    ///
654    /// impl AsyncSleep for ForeverSleep {
655    ///     fn sleep(&self, duration: std::time::Duration) -> Sleep {
656    ///         Sleep::new(std::future::pending())
657    ///     }
658    /// }
659    ///
660    /// fn set_never_ending_sleep_impl(builder: &mut Builder) {
661    ///     let sleep_impl = SharedAsyncSleep::new(ForeverSleep);
662    ///     builder.set_sleep_impl(Some(sleep_impl));
663    /// }
664    ///
665    /// let mut builder = Config::builder();
666    /// set_never_ending_sleep_impl(&mut builder);
667    /// let config = builder.build();
668    /// ```
669    pub fn set_sleep_impl(&mut self, sleep_impl: ::std::option::Option<crate::config::SharedAsyncSleep>) -> &mut Self {
670        self.runtime_components.set_sleep_impl(sleep_impl);
671        self
672    }
673    /// Set the timeout_config for the builder
674    ///
675    /// # Examples
676    ///
677    /// ```no_run
678    /// # use std::time::Duration;
679    /// use aws_sdk_devopsagent::config::Config;
680    /// use aws_sdk_devopsagent::config::timeout::TimeoutConfig;
681    ///
682    /// let timeout_config = TimeoutConfig::builder()
683    ///     .operation_attempt_timeout(Duration::from_secs(1))
684    ///     .build();
685    /// let config = Config::builder().timeout_config(timeout_config).build();
686    /// ```
687    pub fn timeout_config(mut self, timeout_config: ::aws_smithy_types::timeout::TimeoutConfig) -> Self {
688        self.set_timeout_config(Some(timeout_config));
689        self
690    }
691
692    /// Set the timeout_config for the builder.
693    ///
694    /// Setting this to `None` has no effect if another source of configuration has set timeouts. If you
695    /// are attempting to disable timeouts, use [`TimeoutConfig::disabled`](::aws_smithy_types::timeout::TimeoutConfig::disabled)
696    ///
697    ///
698    /// # Examples
699    ///
700    /// ```no_run
701    /// # use std::time::Duration;
702    /// use aws_sdk_devopsagent::config::{Builder, Config};
703    /// use aws_sdk_devopsagent::config::timeout::TimeoutConfig;
704    ///
705    /// fn set_request_timeout(builder: &mut Builder) {
706    ///     let timeout_config = TimeoutConfig::builder()
707    ///         .operation_attempt_timeout(Duration::from_secs(1))
708    ///         .build();
709    ///     builder.set_timeout_config(Some(timeout_config));
710    /// }
711    ///
712    /// let mut builder = Config::builder();
713    /// set_request_timeout(&mut builder);
714    /// let config = builder.build();
715    /// ```
716    pub fn set_timeout_config(&mut self, timeout_config: ::std::option::Option<::aws_smithy_types::timeout::TimeoutConfig>) -> &mut Self {
717        // passing None has no impact.
718        let Some(mut timeout_config) = timeout_config else { return self };
719
720        if let Some(base) = self.config.load::<::aws_smithy_types::timeout::TimeoutConfig>() {
721            timeout_config.take_defaults_from(base);
722        }
723        self.config.store_put(timeout_config);
724        self
725    }
726    /// Set the partition for retry-related state. When clients share a retry partition, they will
727    /// also share components such as token buckets and client rate limiters.
728    /// See the [`RetryPartition`](::aws_smithy_runtime::client::retries::RetryPartition) documentation for more details.
729    ///
730    /// # Default Behavior
731    ///
732    /// When no retry partition is explicitly set, the SDK automatically creates a default retry partition named `devopsagent`
733    /// (or `devopsagent-<region>` if a region is configured).
734    /// All DevOps Agent clients without an explicit retry partition will share this default partition.
735    ///
736    /// # Notes
737    ///
738    /// - This is an advanced setting — most users won't need to modify it.
739    /// - A configured client rate limiter has no effect unless [`RetryConfig::adaptive`](::aws_smithy_types::retry::RetryConfig::adaptive) is used.
740    ///
741    /// # Examples
742    ///
743    /// Creating a custom retry partition with a token bucket:
744    /// ```no_run
745    /// use aws_sdk_devopsagent::config::Config;
746    /// use aws_sdk_devopsagent::config::retry::{RetryPartition, TokenBucket};
747    ///
748    /// let token_bucket = TokenBucket::new(10);
749    /// let config = Config::builder()
750    ///     .retry_partition(RetryPartition::custom("custom")
751    ///         .token_bucket(token_bucket)
752    ///         .build()
753    ///     )
754    ///     .build();
755    /// ```
756    ///
757    /// Configuring a client rate limiter with adaptive retry mode:
758    /// ```no_run
759    /// use aws_sdk_devopsagent::config::Config;
760    /// use aws_sdk_devopsagent::config::retry::{ClientRateLimiter, RetryConfig, RetryPartition};
761    ///
762    /// let client_rate_limiter = ClientRateLimiter::new(10.0);
763    /// let config = Config::builder()
764    ///     .retry_partition(RetryPartition::custom("custom")
765    ///         .client_rate_limiter(client_rate_limiter)
766    ///         .build()
767    ///     )
768    ///     .retry_config(RetryConfig::adaptive())
769    ///     .build();
770    /// ```
771    pub fn retry_partition(mut self, retry_partition: ::aws_smithy_runtime::client::retries::RetryPartition) -> Self {
772        self.set_retry_partition(Some(retry_partition));
773        self
774    }
775    /// Like [`Self::retry_partition`], but takes a mutable reference to the builder and an optional `RetryPartition`
776    pub fn set_retry_partition(
777        &mut self,
778        retry_partition: ::std::option::Option<::aws_smithy_runtime::client::retries::RetryPartition>,
779    ) -> &mut Self {
780        retry_partition.map(|r| self.config.store_put(r));
781        self
782    }
783    /// Set the identity cache for auth.
784    ///
785    /// The identity cache defaults to a lazy caching implementation that will resolve
786    /// an identity when it is requested, and place it in the cache thereafter. Subsequent
787    /// requests will take the value from the cache while it is still valid. Once it expires,
788    /// the next request will result in refreshing the identity.
789    ///
790    /// This configuration allows you to disable or change the default caching mechanism.
791    /// To use a custom caching mechanism, implement the [`ResolveCachedIdentity`](crate::config::ResolveCachedIdentity)
792    /// trait and pass that implementation into this function.
793    ///
794    /// # Examples
795    ///
796    /// Disabling identity caching:
797    /// ```no_run
798    /// use aws_sdk_devopsagent::config::IdentityCache;
799    ///
800    /// let config = aws_sdk_devopsagent::Config::builder()
801    ///     .identity_cache(IdentityCache::no_cache())
802    ///     // ...
803    ///     .build();
804    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
805    /// ```
806    ///
807    /// Customizing lazy caching:
808    /// ```no_run
809    /// use aws_sdk_devopsagent::config::IdentityCache;
810    /// use std::time::Duration;
811    ///
812    /// let config = aws_sdk_devopsagent::Config::builder()
813    ///     .identity_cache(
814    ///         IdentityCache::lazy()
815    ///             // change the load timeout to 10 seconds
816    ///             .load_timeout(Duration::from_secs(10))
817    ///             .build()
818    ///     )
819    ///     // ...
820    ///     .build();
821    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
822    /// ```
823    ///
824    pub fn identity_cache(mut self, identity_cache: impl crate::config::ResolveCachedIdentity + 'static) -> Self {
825        self.set_identity_cache(identity_cache);
826        self
827    }
828
829    /// Set the identity cache for auth.
830    ///
831    /// The identity cache defaults to a lazy caching implementation that will resolve
832    /// an identity when it is requested, and place it in the cache thereafter. Subsequent
833    /// requests will take the value from the cache while it is still valid. Once it expires,
834    /// the next request will result in refreshing the identity.
835    ///
836    /// This configuration allows you to disable or change the default caching mechanism.
837    /// To use a custom caching mechanism, implement the [`ResolveCachedIdentity`](crate::config::ResolveCachedIdentity)
838    /// trait and pass that implementation into this function.
839    ///
840    /// # Examples
841    ///
842    /// Disabling identity caching:
843    /// ```no_run
844    /// use aws_sdk_devopsagent::config::IdentityCache;
845    ///
846    /// let config = aws_sdk_devopsagent::Config::builder()
847    ///     .identity_cache(IdentityCache::no_cache())
848    ///     // ...
849    ///     .build();
850    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
851    /// ```
852    ///
853    /// Customizing lazy caching:
854    /// ```no_run
855    /// use aws_sdk_devopsagent::config::IdentityCache;
856    /// use std::time::Duration;
857    ///
858    /// let config = aws_sdk_devopsagent::Config::builder()
859    ///     .identity_cache(
860    ///         IdentityCache::lazy()
861    ///             // change the load timeout to 10 seconds
862    ///             .load_timeout(Duration::from_secs(10))
863    ///             .build()
864    ///     )
865    ///     // ...
866    ///     .build();
867    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
868    /// ```
869    ///
870    pub fn set_identity_cache(&mut self, identity_cache: impl crate::config::ResolveCachedIdentity + 'static) -> &mut Self {
871        self.runtime_components.set_identity_cache(::std::option::Option::Some(identity_cache));
872        self
873    }
874    /// Add an [interceptor](crate::config::Intercept) that runs at specific stages of the request execution pipeline.
875    ///
876    /// Interceptors targeted at a certain stage are executed according to the pre-defined priority.
877    /// The SDK provides a default set of interceptors. An interceptor configured by this method
878    /// will run after those default interceptors.
879    ///
880    /// # Examples
881    /// ```no_run
882    /// # fn example() {
883    /// use aws_smithy_runtime_api::box_error::BoxError;
884    /// use aws_smithy_runtime_api::client::interceptors::context::BeforeTransmitInterceptorContextMut;
885    /// use aws_smithy_runtime_api::client::interceptors::Intercept;
886    /// use aws_smithy_runtime_api::client::runtime_components::RuntimeComponents;
887    /// use aws_smithy_types::config_bag::ConfigBag;
888    /// use aws_sdk_devopsagent::config::Config;
889    /// use ::http::uri::Uri;
890    ///
891    /// fn base_url() -> String {
892    ///     // ...
893    ///     # String::new()
894    /// }
895    ///
896    /// #[derive(Debug)]
897    /// pub struct UriModifierInterceptor;
898    /// impl Intercept for UriModifierInterceptor {
899    ///     fn name(&self) -> &'static str {
900    ///         "UriModifierInterceptor"
901    ///     }
902    ///     fn modify_before_signing(
903    ///         &self,
904    ///         context: &mut BeforeTransmitInterceptorContextMut<'_>,
905    ///         _runtime_components: &RuntimeComponents,
906    ///         _cfg: &mut ConfigBag,
907    ///     ) -> Result<(), BoxError> {
908    ///         let request = context.request_mut();
909    ///         let uri = format!("{}{}", base_url(), request.uri());
910    ///         *request.uri_mut() = uri.parse::<Uri>()?.into();
911    ///
912    ///         Ok(())
913    ///     }
914    /// }
915    ///
916    /// let config = Config::builder()
917    ///     .interceptor(UriModifierInterceptor)
918    ///     .build();
919    /// # }
920    /// ```
921    pub fn interceptor(mut self, interceptor: impl crate::config::Intercept + 'static) -> Self {
922        self.push_interceptor(crate::config::SharedInterceptor::new(interceptor));
923        self
924    }
925
926    /// Like [`Self::interceptor`], but takes a [`SharedInterceptor`](crate::config::SharedInterceptor).
927    pub fn push_interceptor(&mut self, interceptor: crate::config::SharedInterceptor) -> &mut Self {
928        self.runtime_components.push_interceptor(interceptor);
929        self
930    }
931
932    /// Set [`SharedInterceptor`](crate::config::SharedInterceptor)s for the builder.
933    pub fn set_interceptors(&mut self, interceptors: impl IntoIterator<Item = crate::config::SharedInterceptor>) -> &mut Self {
934        self.runtime_components.set_interceptors(interceptors.into_iter());
935        self
936    }
937    /// Sets the time source used for this service
938    pub fn time_source(mut self, time_source: impl ::aws_smithy_async::time::TimeSource + 'static) -> Self {
939        self.set_time_source(::std::option::Option::Some(::aws_smithy_runtime_api::shared::IntoShared::into_shared(
940            time_source,
941        )));
942        self
943    }
944    /// Sets the time source used for this service
945    pub fn set_time_source(&mut self, time_source: ::std::option::Option<::aws_smithy_async::time::SharedTimeSource>) -> &mut Self {
946        self.runtime_components.set_time_source(time_source);
947        self
948    }
949    /// Add type implementing [`ClassifyRetry`](::aws_smithy_runtime_api::client::retries::classifiers::ClassifyRetry) that will be used by the
950    /// [`RetryStrategy`](::aws_smithy_runtime_api::client::retries::RetryStrategy) to determine what responses should be retried.
951    ///
952    /// A retry classifier configured by this method will run according to its [priority](::aws_smithy_runtime_api::client::retries::classifiers::RetryClassifierPriority).
953    ///
954    /// # Examples
955    /// ```no_run
956    /// # fn example() {
957    /// use aws_smithy_runtime_api::client::interceptors::context::InterceptorContext;
958    /// use aws_smithy_runtime_api::client::orchestrator::OrchestratorError;
959    /// use aws_smithy_runtime_api::client::retries::classifiers::{
960    ///     ClassifyRetry, RetryAction, RetryClassifierPriority,
961    /// };
962    /// use aws_smithy_types::error::metadata::ProvideErrorMetadata;
963    /// use aws_smithy_types::retry::ErrorKind;
964    /// use std::error::Error as StdError;
965    /// use std::marker::PhantomData;
966    /// use std::fmt;
967    /// use aws_sdk_devopsagent::config::Config;
968    /// # #[derive(Debug)]
969    /// # struct SomeOperationError {}
970    /// # impl StdError for SomeOperationError {}
971    /// # impl fmt::Display for SomeOperationError {
972    /// #    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { todo!() }
973    /// # }
974    /// # impl ProvideErrorMetadata for SomeOperationError {
975    /// #    fn meta(&self) -> &aws_sdk_devopsagent::error::ErrorMetadata { todo!() }
976    /// # }
977    ///
978    /// const RETRYABLE_ERROR_CODES: &[&str] = &[
979    ///     // List error codes to be retried here...
980    /// ];
981    ///
982    /// // When classifying at an operation's error type, classifiers require a generic parameter.
983    /// // When classifying the HTTP response alone, no generic is needed.
984    /// #[derive(Debug, Default)]
985    /// pub struct ExampleErrorCodeClassifier<E> {
986    ///     _inner: PhantomData<E>,
987    /// }
988    ///
989    /// impl<E> ExampleErrorCodeClassifier<E> {
990    ///     pub fn new() -> Self {
991    ///         Self {
992    ///             _inner: PhantomData,
993    ///         }
994    ///     }
995    /// }
996    ///
997    /// impl<E> ClassifyRetry for ExampleErrorCodeClassifier<E>
998    /// where
999    ///     // Adding a trait bound for ProvideErrorMetadata allows us to inspect the error code.
1000    ///     E: StdError + ProvideErrorMetadata + Send + Sync + 'static,
1001    /// {
1002    ///     fn classify_retry(&self, ctx: &InterceptorContext) -> RetryAction {
1003    ///         // Check for a result
1004    ///         let output_or_error = ctx.output_or_error();
1005    ///         // Check for an error
1006    ///         let error = match output_or_error {
1007    ///             Some(Ok(_)) | None => return RetryAction::NoActionIndicated,
1008    ///               Some(Err(err)) => err,
1009    ///         };
1010    ///
1011    ///         // Downcast the generic error and extract the code
1012    ///         let error_code = OrchestratorError::as_operation_error(error)
1013    ///             .and_then(|err| err.downcast_ref::<E>())
1014    ///             .and_then(|err| err.code());
1015    ///
1016    ///         // If this error's code is in our list, return an action that tells the RetryStrategy to retry this request.
1017    ///         if let Some(error_code) = error_code {
1018    ///             if RETRYABLE_ERROR_CODES.contains(&error_code) {
1019    ///                 return RetryAction::transient_error();
1020    ///             }
1021    ///         }
1022    ///
1023    ///         // Otherwise, return that no action is indicated i.e. that this classifier doesn't require a retry.
1024    ///         // Another classifier may still classify this response as retryable.
1025    ///         RetryAction::NoActionIndicated
1026    ///     }
1027    ///
1028    ///     fn name(&self) -> &'static str { "Example Error Code Classifier" }
1029    /// }
1030    ///
1031    /// let config = Config::builder()
1032    ///     .retry_classifier(ExampleErrorCodeClassifier::<SomeOperationError>::new())
1033    ///     .build();
1034    /// # }
1035    /// ```
1036    pub fn retry_classifier(
1037        mut self,
1038        retry_classifier: impl ::aws_smithy_runtime_api::client::retries::classifiers::ClassifyRetry + 'static,
1039    ) -> Self {
1040        self.push_retry_classifier(::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier::new(
1041            retry_classifier,
1042        ));
1043        self
1044    }
1045
1046    /// Like [`Self::retry_classifier`], but takes a [`SharedRetryClassifier`](::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier).
1047    pub fn push_retry_classifier(
1048        &mut self,
1049        retry_classifier: ::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier,
1050    ) -> &mut Self {
1051        self.runtime_components.push_retry_classifier(retry_classifier);
1052        self
1053    }
1054
1055    /// Set [`SharedRetryClassifier`](::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier)s for the builder, replacing any that
1056    /// were previously set.
1057    pub fn set_retry_classifiers(
1058        &mut self,
1059        retry_classifiers: impl IntoIterator<Item = ::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier>,
1060    ) -> &mut Self {
1061        self.runtime_components.set_retry_classifiers(retry_classifiers.into_iter());
1062        self
1063    }
1064    /// Sets the name of the app that is using the client.
1065    ///
1066    /// This _optional_ name is used to identify the application in the user agent that
1067    /// gets sent along with requests.
1068    pub fn app_name(mut self, app_name: ::aws_types::app_name::AppName) -> Self {
1069        self.set_app_name(Some(app_name));
1070        self
1071    }
1072    /// Sets the name of the app that is using the client.
1073    ///
1074    /// This _optional_ name is used to identify the application in the user agent that
1075    /// gets sent along with requests.
1076    pub fn set_app_name(&mut self, app_name: ::std::option::Option<::aws_types::app_name::AppName>) -> &mut Self {
1077        self.config.store_or_unset(app_name);
1078        self
1079    }
1080    /// Appends framework metadata to the user agent.
1081    ///
1082    /// This _optional_ metadata identifies a software framework or third-party library
1083    /// that is being used with the client. It is rendered into the user agent string
1084    /// (as `lib/{name}/{version}`) so that libraries built on top of the AWS SDK can
1085    /// self-identify in the requests they make. Multiple entries may be added; each call
1086    /// appends another entry rather than replacing previous ones.
1087    ///
1088    /// Entries are de-duplicated on `(name, version)`, rendered in first-seen order, and
1089    /// the total number of unique entries included in the user agent is capped (currently
1090    /// at 10); additional entries beyond the cap are dropped with a warning.
1091    pub fn framework_metadata(mut self, framework_metadata: ::aws_types::sdk_ua_metadata::FrameworkMetadata) -> Self {
1092        self.push_framework_metadata(framework_metadata);
1093        self
1094    }
1095    /// Appends framework metadata to the user agent.
1096    ///
1097    /// This _optional_ metadata identifies a software framework or third-party library
1098    /// that is being used with the client. It is rendered into the user agent string
1099    /// (as `lib/{name}/{version}`) so that libraries built on top of the AWS SDK can
1100    /// self-identify in the requests they make. Multiple entries may be added; each call
1101    /// appends another entry rather than replacing previous ones.
1102    pub fn push_framework_metadata(&mut self, framework_metadata: ::aws_types::sdk_ua_metadata::FrameworkMetadata) -> &mut Self {
1103        self.config.store_append(framework_metadata);
1104        self
1105    }
1106    /// Overrides the default invocation ID generator.
1107    ///
1108    /// The invocation ID generator generates ID values for the `amz-sdk-invocation-id` header. By default, this will be a random UUID. Overriding it may be useful in tests that examine the HTTP request and need to be deterministic.
1109    pub fn invocation_id_generator(mut self, gen: impl ::aws_runtime::invocation_id::InvocationIdGenerator + 'static) -> Self {
1110        self.set_invocation_id_generator(::std::option::Option::Some(
1111            ::aws_runtime::invocation_id::SharedInvocationIdGenerator::new(gen),
1112        ));
1113        self
1114    }
1115    /// Overrides the default invocation ID generator.
1116    ///
1117    /// The invocation ID generator generates ID values for the `amz-sdk-invocation-id` header. By default, this will be a random UUID. Overriding it may be useful in tests that examine the HTTP request and need to be deterministic.
1118    pub fn set_invocation_id_generator(
1119        &mut self,
1120        gen: ::std::option::Option<::aws_runtime::invocation_id::SharedInvocationIdGenerator>,
1121    ) -> &mut Self {
1122        self.config.store_or_unset(gen);
1123        self
1124    }
1125    /// Sets the endpoint URL used to communicate with this service.
1126    ///
1127    /// Note: this is used in combination with other endpoint rules, e.g. an API that applies a host-label prefix
1128    /// will be prefixed onto this URL. To fully override the endpoint resolver, use
1129    /// [`Builder::endpoint_resolver`].
1130    pub fn endpoint_url(mut self, endpoint_url: impl Into<::std::string::String>) -> Self {
1131        self.set_endpoint_url(Some(endpoint_url.into()));
1132        self
1133    }
1134    /// Sets the endpoint URL used to communicate with this service.
1135    ///
1136    /// Note: this is used in combination with other endpoint rules, e.g. an API that applies a host-label prefix
1137    /// will be prefixed onto this URL. To fully override the endpoint resolver, use
1138    /// [`Builder::endpoint_resolver`].
1139    pub fn set_endpoint_url(&mut self, endpoint_url: Option<::std::string::String>) -> &mut Self {
1140        self.config.store_or_unset(endpoint_url.map(::aws_types::endpoint_config::EndpointUrl));
1141        self
1142    }
1143    /// When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
1144    pub fn use_fips(mut self, use_fips: impl Into<bool>) -> Self {
1145        self.set_use_fips(Some(use_fips.into()));
1146        self
1147    }
1148    /// When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
1149    pub fn set_use_fips(&mut self, use_fips: Option<bool>) -> &mut Self {
1150        self.config.store_or_unset(use_fips.map(::aws_types::endpoint_config::UseFips));
1151        self
1152    }
1153    /// Sets the AWS region to use when making requests.
1154    ///
1155    /// # Examples
1156    /// ```no_run
1157    /// use aws_types::region::Region;
1158    /// use aws_sdk_devopsagent::config::{Builder, Config};
1159    ///
1160    /// let config = aws_sdk_devopsagent::Config::builder()
1161    ///     .region(Region::new("us-east-1"))
1162    ///     .build();
1163    /// ```
1164    pub fn region(mut self, region: impl ::std::convert::Into<::std::option::Option<crate::config::Region>>) -> Self {
1165        self.set_region(region.into());
1166        self
1167    }
1168    /// Sets the AWS region to use when making requests.
1169    pub fn set_region(&mut self, region: ::std::option::Option<crate::config::Region>) -> &mut Self {
1170        self.config.store_or_unset(region);
1171        self
1172    }
1173    /// Sets the credentials provider for this service
1174    pub fn credentials_provider(mut self, credentials_provider: impl crate::config::ProvideCredentials + 'static) -> Self {
1175        self.set_credentials_provider(::std::option::Option::Some(crate::config::SharedCredentialsProvider::new(
1176            credentials_provider,
1177        )));
1178        self
1179    }
1180    /// Sets the credentials provider for this service
1181    pub fn set_credentials_provider(&mut self, credentials_provider: ::std::option::Option<crate::config::SharedCredentialsProvider>) -> &mut Self {
1182        if let Some(credentials_provider) = credentials_provider {
1183            self.runtime_components
1184                .set_identity_resolver(::aws_runtime::auth::sigv4::SCHEME_ID, credentials_provider);
1185        }
1186        self
1187    }
1188    /// Sets the [`behavior major version`](crate::config::BehaviorVersion).
1189    ///
1190    /// Over time, new best-practice behaviors are introduced. However, these behaviors might not be backwards
1191    /// compatible. For example, a change which introduces new default timeouts or a new retry-mode for
1192    /// all operations might be the ideal behavior but could break existing applications.
1193    ///
1194    /// # Examples
1195    ///
1196    /// Set the behavior major version to `latest`. This is equivalent to enabling the `behavior-version-latest` cargo feature.
1197    /// ```no_run
1198    /// use aws_sdk_devopsagent::config::BehaviorVersion;
1199    ///
1200    /// let config = aws_sdk_devopsagent::Config::builder()
1201    ///     .behavior_version(BehaviorVersion::latest())
1202    ///     // ...
1203    ///     .build();
1204    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
1205    /// ```
1206    ///
1207    /// Customizing behavior major version:
1208    /// ```no_run
1209    /// use aws_sdk_devopsagent::config::BehaviorVersion;
1210    ///
1211    /// let config = aws_sdk_devopsagent::Config::builder()
1212    ///     .behavior_version(BehaviorVersion::v2023_11_09())
1213    ///     // ...
1214    ///     .build();
1215    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
1216    /// ```
1217    ///
1218    pub fn behavior_version(mut self, behavior_version: crate::config::BehaviorVersion) -> Self {
1219        self.set_behavior_version(Some(behavior_version));
1220        self
1221    }
1222
1223    /// Sets the [`behavior major version`](crate::config::BehaviorVersion).
1224    ///
1225    /// Over time, new best-practice behaviors are introduced. However, these behaviors might not be backwards
1226    /// compatible. For example, a change which introduces new default timeouts or a new retry-mode for
1227    /// all operations might be the ideal behavior but could break existing applications.
1228    ///
1229    /// # Examples
1230    ///
1231    /// Set the behavior major version to `latest`. This is equivalent to enabling the `behavior-version-latest` cargo feature.
1232    /// ```no_run
1233    /// use aws_sdk_devopsagent::config::BehaviorVersion;
1234    ///
1235    /// let config = aws_sdk_devopsagent::Config::builder()
1236    ///     .behavior_version(BehaviorVersion::latest())
1237    ///     // ...
1238    ///     .build();
1239    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
1240    /// ```
1241    ///
1242    /// Customizing behavior major version:
1243    /// ```no_run
1244    /// use aws_sdk_devopsagent::config::BehaviorVersion;
1245    ///
1246    /// let config = aws_sdk_devopsagent::Config::builder()
1247    ///     .behavior_version(BehaviorVersion::v2023_11_09())
1248    ///     // ...
1249    ///     .build();
1250    /// let client = aws_sdk_devopsagent::Client::from_conf(config);
1251    /// ```
1252    ///
1253    pub fn set_behavior_version(&mut self, behavior_version: Option<crate::config::BehaviorVersion>) -> &mut Self {
1254        self.behavior_version = behavior_version;
1255        self
1256    }
1257
1258    /// Convenience method to set the latest behavior major version
1259    ///
1260    /// This is equivalent to enabling the `behavior-version-latest` Cargo feature
1261    pub fn behavior_version_latest(mut self) -> Self {
1262        self.set_behavior_version(Some(crate::config::BehaviorVersion::latest()));
1263        self
1264    }
1265    /// Adds a runtime plugin to the config.
1266    #[allow(unused)]
1267    pub(crate) fn runtime_plugin(mut self, plugin: impl crate::config::RuntimePlugin + 'static) -> Self {
1268        self.push_runtime_plugin(crate::config::SharedRuntimePlugin::new(plugin));
1269        self
1270    }
1271    /// Adds a runtime plugin to the config.
1272    #[allow(unused)]
1273    pub(crate) fn push_runtime_plugin(&mut self, plugin: crate::config::SharedRuntimePlugin) -> &mut Self {
1274        self.runtime_plugins.push(plugin);
1275        self
1276    }
1277    #[cfg(any(feature = "test-util", test))]
1278    #[allow(unused_mut)]
1279    /// Apply test defaults to the builder. NOTE: Consider migrating to use `apply_test_defaults_v2` instead.
1280    pub fn apply_test_defaults(&mut self) -> &mut Self {
1281        self.set_idempotency_token_provider(Some("00000000-0000-4000-8000-000000000000".into()));
1282        self.set_time_source(::std::option::Option::Some(::aws_smithy_async::time::SharedTimeSource::new(
1283            ::aws_smithy_async::time::StaticTimeSource::new(::std::time::UNIX_EPOCH + ::std::time::Duration::from_secs(1234567890)),
1284        )));
1285        self.config.store_put(::aws_runtime::user_agent::AwsUserAgent::for_tests());
1286        self.set_credentials_provider(Some(crate::config::SharedCredentialsProvider::new(
1287            ::aws_credential_types::Credentials::for_tests(),
1288        )));
1289        self.behavior_version = ::std::option::Option::Some(crate::config::BehaviorVersion::latest());
1290        self
1291    }
1292    #[cfg(any(feature = "test-util", test))]
1293    #[allow(unused_mut)]
1294    /// Apply test defaults to the builder. NOTE: Consider migrating to use `with_test_defaults_v2` instead.
1295    pub fn with_test_defaults(mut self) -> Self {
1296        self.apply_test_defaults();
1297        self
1298    }
1299    #[cfg(any(feature = "test-util", test))]
1300    #[allow(unused_mut)]
1301    /// Apply test defaults to the builder. V2 of this function sets additional test defaults such as region configuration (if applicable).
1302    pub fn apply_test_defaults_v2(&mut self) -> &mut Self {
1303        self.apply_test_defaults();
1304        if self.config.load::<crate::config::Region>().is_none() {
1305            self.set_region(::std::option::Option::Some(crate::config::Region::new("us-east-1")));
1306        }
1307        self
1308    }
1309    #[cfg(any(feature = "test-util", test))]
1310    #[allow(unused_mut)]
1311    /// Apply test defaults to the builder. V2 of this function sets additional test defaults such as region configuration (if applicable).
1312    pub fn with_test_defaults_v2(mut self) -> Self {
1313        self.apply_test_defaults_v2();
1314        self
1315    }
1316    /// Builds a [`Config`].
1317    #[allow(unused_mut)]
1318    pub fn build(mut self) -> Config {
1319        let mut layer = self.config;
1320        if self.runtime_components.time_source().is_none() {
1321            self.runtime_components
1322                .set_time_source(::std::option::Option::Some(::std::default::Default::default()));
1323        }
1324        layer.store_put(crate::meta::API_METADATA.clone());
1325        layer.store_put(::aws_types::SigningName::from_static("aidevops"));
1326        layer
1327            .load::<::aws_types::region::Region>()
1328            .cloned()
1329            .map(|r| layer.store_put(::aws_types::region::SigningRegion::from(r)));
1330        Config {
1331            config: crate::config::Layer::from(layer.clone())
1332                .with_name("aws_sdk_devopsagent::config::Config")
1333                .freeze(),
1334            cloneable: layer,
1335            runtime_components: self.runtime_components,
1336            runtime_plugins: self.runtime_plugins,
1337            behavior_version: self.behavior_version,
1338        }
1339    }
1340}
1341#[derive(::std::fmt::Debug)]
1342pub(crate) struct ServiceRuntimePlugin {
1343    config: ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer>,
1344    runtime_components: ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1345}
1346
1347impl ServiceRuntimePlugin {
1348    pub fn new(_service_config: crate::config::Config) -> Self {
1349        let config = {
1350            let mut cfg = ::aws_smithy_types::config_bag::Layer::new("DevOpsAgent");
1351            cfg.store_put(crate::idempotency_token::default_provider());
1352            cfg.store_put(::aws_smithy_runtime::client::orchestrator::AuthSchemeAndEndpointOrchestrationV2);
1353            ::std::option::Option::Some(cfg.freeze())
1354        };
1355        let mut runtime_components = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("ServiceRuntimePlugin");
1356        runtime_components.set_auth_scheme_option_resolver(::std::option::Option::Some({
1357            use crate::config::auth::ResolveAuthScheme;
1358            crate::config::auth::DefaultAuthSchemeResolver::default().into_shared_resolver()
1359        }));
1360        runtime_components.set_endpoint_resolver(::std::option::Option::Some({
1361            use crate::config::endpoint::ResolveEndpoint;
1362            crate::config::endpoint::DefaultResolver::new().into_shared_resolver()
1363        }));
1364        runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1365            ::aws_smithy_runtime::client::http::connection_poisoning::ConnectionPoisoningInterceptor::new(),
1366        ));
1367        runtime_components.push_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::HttpStatusCodeClassifier::default());
1368        runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1369            crate::sdk_feature_tracker::retry_mode::RetryModeFeatureTrackerInterceptor::new(),
1370        ));
1371        runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1372            ::aws_runtime::service_clock_skew::ServiceClockSkewInterceptor::new(),
1373        ));
1374        runtime_components.push_interceptor(::aws_runtime::request_info::RequestInfoInterceptor::new());
1375        runtime_components.push_interceptor(::aws_runtime::user_agent::UserAgentInterceptor::new());
1376        runtime_components.push_interceptor(::aws_runtime::invocation_id::InvocationIdInterceptor::new());
1377        runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1378            ::aws_runtime::recursion_detection::RecursionDetectionInterceptor::new(),
1379        ));
1380        runtime_components.push_auth_scheme(::aws_smithy_runtime_api::client::auth::SharedAuthScheme::new(
1381            ::aws_runtime::auth::sigv4::SigV4AuthScheme::new(),
1382        ));
1383        runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1384            crate::config::endpoint::EndpointOverrideFeatureTrackerInterceptor,
1385        ));
1386        runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1387            crate::observability_feature::ObservabilityFeatureTrackerInterceptor,
1388        ));
1389        Self { config, runtime_components }
1390    }
1391}
1392
1393impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for ServiceRuntimePlugin {
1394    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
1395        self.config.clone()
1396    }
1397
1398    fn order(&self) -> ::aws_smithy_runtime_api::client::runtime_plugin::Order {
1399        ::aws_smithy_runtime_api::client::runtime_plugin::Order::Defaults
1400    }
1401
1402    fn runtime_components(
1403        &self,
1404        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1405    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
1406        ::std::borrow::Cow::Borrowed(&self.runtime_components)
1407    }
1408}
1409
1410// Cross-operation shared-state singletons
1411
1412/// A plugin that enables configuration for a single operation invocation
1413///
1414/// The `config` method will return a `FrozenLayer` by storing values from `config_override`.
1415/// In the case of default values requested, they will be obtained from `client_config`.
1416#[derive(Debug)]
1417pub(crate) struct ConfigOverrideRuntimePlugin {
1418    pub(crate) config: ::aws_smithy_types::config_bag::FrozenLayer,
1419    pub(crate) components: ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1420}
1421
1422impl ConfigOverrideRuntimePlugin {
1423    #[allow(dead_code)] // unused when a service does not provide any operations
1424    pub(crate) fn new(
1425        config_override: Builder,
1426        initial_config: ::aws_smithy_types::config_bag::FrozenLayer,
1427        initial_components: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1428    ) -> Self {
1429        let mut layer = config_override.config;
1430        let mut components = config_override.runtime_components;
1431        #[allow(unused_mut)]
1432        let mut resolver =
1433            ::aws_smithy_runtime::client::config_override::Resolver::overrid(initial_config, initial_components, &mut layer, &mut components);
1434
1435        resolver
1436            .config_mut()
1437            .load::<::aws_types::region::Region>()
1438            .cloned()
1439            .map(|r| resolver.config_mut().store_put(::aws_types::region::SigningRegion::from(r)));
1440
1441        let _ = resolver;
1442
1443        // When the config override supplies an identity resolver for any auth scheme
1444        // known to the client or the override itself, we give this operation its own
1445        // short-lived identity cache so that new partitions don't accumulate in the
1446        // shared client cache. A lazy cache (not `no_cache`) is used so that resolved
1447        // identities are served from the short-lived identity cache on retries.
1448        //
1449        // This is skipped if the override already sets its own identity cache.
1450        if components.has_identity_resolvers() && components.identity_cache().is_none() {
1451            components.set_identity_cache(::std::option::Option::Some(
1452                ::aws_smithy_runtime::client::identity::IdentityCache::lazy().max_partitions(1).build(),
1453            ));
1454        }
1455
1456        Self {
1457            config: ::aws_smithy_types::config_bag::Layer::from(layer)
1458                .with_name("aws_sdk_devopsagent::config::ConfigOverrideRuntimePlugin")
1459                .freeze(),
1460            components,
1461        }
1462    }
1463}
1464
1465impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for ConfigOverrideRuntimePlugin {
1466    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
1467        Some(self.config.clone())
1468    }
1469
1470    fn runtime_components(
1471        &self,
1472        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1473    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
1474        ::std::borrow::Cow::Borrowed(&self.components)
1475    }
1476}
1477
1478pub use ::aws_smithy_runtime::client::identity::IdentityCache;
1479pub use ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponents;
1480pub use ::aws_smithy_types::config_bag::ConfigBag;
1481
1482pub use ::aws_credential_types::Credentials;
1483
1484impl From<&::aws_types::sdk_config::SdkConfig> for Builder {
1485    fn from(input: &::aws_types::sdk_config::SdkConfig) -> Self {
1486        let mut builder = Builder::default();
1487        builder.set_credentials_provider(input.credentials_provider());
1488        builder = builder.region(input.region().cloned());
1489        builder.set_use_fips(input.use_fips());
1490        if input.get_origin("endpoint_url").is_client_config() {
1491            builder.set_endpoint_url(input.endpoint_url().map(|s| s.to_string()));
1492        } else {
1493            builder.set_endpoint_url(
1494                input
1495                    .service_config()
1496                    .and_then(|conf| {
1497                        conf.load_config(service_config_key("DevOps Agent", "AWS_ENDPOINT_URL", "endpoint_url"))
1498                            .map(|it| it.parse().unwrap())
1499                    })
1500                    .or_else(|| input.endpoint_url().map(|s| s.to_string())),
1501            );
1502        }
1503        // resiliency
1504        builder.set_retry_config(input.retry_config().cloned());
1505        builder.set_timeout_config(input.timeout_config().cloned());
1506        builder.set_sleep_impl(input.sleep_impl());
1507
1508        builder.set_http_client(input.http_client());
1509        builder.set_time_source(input.time_source());
1510        builder.set_behavior_version(input.behavior_version());
1511        builder.set_auth_scheme_preference(input.auth_scheme_preference().cloned());
1512        // setting `None` here removes the default
1513        if let Some(config) = input.stalled_stream_protection() {
1514            builder.set_stalled_stream_protection(Some(config));
1515        }
1516
1517        if let Some(cache) = input.identity_cache() {
1518            builder.set_identity_cache(cache);
1519        }
1520        builder.set_app_name(input.app_name().cloned());
1521        for framework_metadata in input.framework_metadata() {
1522            builder.push_framework_metadata(framework_metadata.clone());
1523        }
1524
1525        builder
1526    }
1527}
1528
1529impl From<&::aws_types::sdk_config::SdkConfig> for Config {
1530    fn from(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
1531        Builder::from(sdk_config).build()
1532    }
1533}
1534
1535pub use ::aws_types::app_name::AppName;
1536pub use ::aws_types::sdk_ua_metadata::FrameworkMetadata;
1537
1538#[allow(dead_code)]
1539fn service_config_key<'a>(service_id: &'a str, env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
1540    ::aws_types::service_config::ServiceConfigKey::builder()
1541        .service_id(service_id)
1542        .env(env)
1543        .profile(profile)
1544        .build()
1545        .expect("all field sets explicitly, can't fail")
1546}
1547
1548pub use ::aws_smithy_async::rt::sleep::Sleep;
1549
1550pub(crate) fn base_client_runtime_plugins(mut config: crate::Config) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
1551    let mut configured_plugins = ::std::vec::Vec::new();
1552    ::std::mem::swap(&mut config.runtime_plugins, &mut configured_plugins);
1553    #[cfg(feature = "behavior-version-latest")]
1554    {
1555        if config.behavior_version.is_none() {
1556            config.behavior_version = Some(::aws_smithy_runtime_api::client::behavior_version::BehaviorVersion::latest());
1557        }
1558    }
1559
1560    let default_retry_partition = "devopsagent";
1561    let default_retry_partition = match config.region() {
1562        Some(region) => ::std::borrow::Cow::from(format!("{default_retry_partition}-{region}")),
1563        None => ::std::borrow::Cow::from(default_retry_partition),
1564    };
1565
1566    let scope = "aws-sdk-devopsagent";
1567
1568    #[allow(deprecated)]
1569                    let mut plugins = ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins::new()
1570                        // defaults
1571                        .with_client_plugins(::aws_smithy_runtime::client::defaults::default_plugins(
1572                            ::aws_smithy_runtime::client::defaults::DefaultPluginParams::new()
1573                                .with_retry_partition_name(default_retry_partition)
1574                                .with_behavior_version(config.behavior_version.expect("Invalid client configuration: A behavior major version must be set when sending a request or constructing a client. You must set it during client construction or by enabling the `behavior-version-latest` cargo feature."))
1575                                .with_is_aws_sdk(true)
1576                        ))
1577                        // user config
1578                        .with_client_plugin(
1579                            ::aws_smithy_runtime_api::client::runtime_plugin::StaticRuntimePlugin::new()
1580                                .with_config(config.config.clone())
1581                                .with_runtime_components(config.runtime_components.clone())
1582                        )
1583                        // codegen config
1584                        .with_client_plugin(crate::config::ServiceRuntimePlugin::new(config.clone()))
1585                        .with_client_plugin(::aws_smithy_runtime::client::auth::no_auth::NoAuthRuntimePlugin::new())
1586                        .with_client_plugin(
1587                            ::aws_smithy_runtime::client::metrics::MetricsRuntimePlugin::builder()
1588                                .with_scope(scope)
1589                                .with_time_source(config.runtime_components.time_source().unwrap_or_default())
1590                                .build()
1591                                .expect("All required fields have been set")
1592                        );
1593
1594    for plugin in configured_plugins {
1595        plugins = plugins.with_client_plugin(plugin);
1596    }
1597    plugins
1598}
1599
1600pub use ::aws_smithy_types::config_bag::FrozenLayer;
1601
1602pub use ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder;
1603
1604pub use ::aws_smithy_runtime_api::client::runtime_plugin::SharedRuntimePlugin;
1605
1606pub use ::aws_smithy_runtime_api::client::behavior_version::BehaviorVersion;
1607
1608pub use ::aws_smithy_runtime_api::client::stalled_stream_protection::StalledStreamProtectionConfig;
1609
1610pub use ::aws_smithy_runtime_api::client::http::SharedHttpClient;
1611
1612pub use ::aws_smithy_async::rt::sleep::SharedAsyncSleep;
1613
1614pub use ::aws_smithy_runtime_api::client::identity::SharedIdentityCache;
1615
1616pub use ::aws_smithy_runtime_api::client::interceptors::SharedInterceptor;
1617
1618pub use ::aws_types::region::Region;
1619
1620pub use ::aws_credential_types::provider::SharedCredentialsProvider;
1621
1622pub use ::aws_smithy_runtime_api::client::http::HttpClient;
1623
1624pub use ::aws_smithy_runtime_api::shared::IntoShared;
1625
1626pub use ::aws_smithy_async::rt::sleep::AsyncSleep;
1627
1628pub use ::aws_smithy_runtime_api::client::identity::ResolveCachedIdentity;
1629
1630pub use ::aws_smithy_runtime_api::client::interceptors::Intercept;
1631
1632pub use ::aws_credential_types::provider::ProvideCredentials;
1633
1634pub use ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin;
1635
1636pub use ::aws_smithy_types::config_bag::Layer;
1637
1638/// Types needed to configure endpoint resolution.
1639pub mod endpoint;
1640
1641/// HTTP request and response types.
1642pub mod http;
1643
1644/// Types needed to implement [`Intercept`](crate::config::Intercept).
1645pub mod interceptors;
1646
1647/// Retry configuration.
1648pub mod retry;
1649
1650/// Timeout configuration.
1651pub mod timeout;
1652
1653/// Types needed to configure auth scheme resolution.
1654pub mod auth;