aws_sdk_ssooidc/operation/
register_client.rs1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct RegisterClient;
6impl RegisterClient {
7 pub fn new() -> Self {
9 Self
10 }
11 pub(crate) async fn orchestrate(
12 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
13 input: crate::operation::register_client::RegisterClientInput,
14 ) -> ::std::result::Result<crate::operation::register_client::RegisterClientOutput, ::aws_smithy_runtime_api::client::result::SdkError<crate::operation::register_client::RegisterClientError, ::aws_smithy_runtime_api::client::orchestrator::HttpResponse>> {
15 let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<::aws_smithy_runtime_api::client::interceptors::context::Error, ::aws_smithy_runtime_api::client::orchestrator::HttpResponse>| {
16 err.map_service_error(|err| {
17 err.downcast::<crate::operation::register_client::RegisterClientError>().expect("correct error type")
18 })
19 };
20 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
21 .await
22 .map_err(map_err)?;
23 let output = context.finalize().map_err(map_err)?;
24 ::std::result::Result::Ok(output.downcast::<crate::operation::register_client::RegisterClientOutput>().expect("correct output type"))
25 }
26
27 pub(crate) async fn orchestrate_with_stop_point(
28 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
29 input: crate::operation::register_client::RegisterClientInput,
30 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
31 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext, ::aws_smithy_runtime_api::client::result::SdkError<::aws_smithy_runtime_api::client::interceptors::context::Error, ::aws_smithy_runtime_api::client::orchestrator::HttpResponse>> {
32 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
33 use ::tracing::Instrument;
34 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point(
35 "SSO OIDC",
36 "RegisterClient",
37 input,
38 runtime_plugins,
39 stop_point
40 )
41 .instrument(::tracing::debug_span!(
44 "SSO OIDC.RegisterClient",
45 "rpc.service" = "SSO OIDC",
46 "rpc.method" = "RegisterClient",
47 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
48 "rpc.system" = "aws-api",
49 ))
50 .await
51 }
52
53 pub(crate) fn operation_runtime_plugins(
54 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
55 client_config: &crate::config::Config,
56 config_override: ::std::option::Option<crate::config::Builder>,
57 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
58 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
59
60 if let ::std::option::Option::Some(config_override) = config_override {
61 for plugin in config_override.runtime_plugins.iter().cloned() {
62 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
63 }
64 runtime_plugins = runtime_plugins.with_operation_plugin(
65 crate::config::ConfigOverrideRuntimePlugin::new(config_override, client_config.config.clone(), &client_config.runtime_components)
66 );
67 }
68 runtime_plugins
69 }
70}
71impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for RegisterClient {
72 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
73 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("RegisterClient");
74
75 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(RegisterClientRequestSerializer));
76 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(RegisterClientResponseDeserializer));
77
78 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
79 crate::config::auth::Params::builder()
80 .operation_name("RegisterClient")
81 .build()
82 .expect("required fields set")
83 ));
84
85 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::SensitiveOutput);
86cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
87 "RegisterClient",
88 "SSO OIDC",
89 ));
90
91 ::std::option::Option::Some(cfg.freeze())
92 }
93
94 fn runtime_components(&self, _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
95 #[allow(unused_mut)]
96 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("RegisterClient")
97 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(RegisterClientTelemetryInputCaptureInterceptor))
98.with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default()))
99.with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(RegisterClientEndpointParamsInterceptor))
100 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<crate::operation::register_client::RegisterClientError>::new())
101.with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<crate::operation::register_client::RegisterClientError>::new())
102.with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<crate::operation::register_client::RegisterClientError>::new());
103
104 ::std::borrow::Cow::Owned(rcb)
105 }
106 }
107
108 #[derive(Debug)]
109 struct RegisterClientTelemetryInputCaptureInterceptor;
110
111 #[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
112 impl ::aws_smithy_runtime_api::client::interceptors::Intercept for RegisterClientTelemetryInputCaptureInterceptor {
113 fn name(&self) -> &'static str {
114 "RegisterClientTelemetryInputCaptureInterceptor"
115 }
116
117 fn read_before_execution(
118 &self,
119 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<'_, ::aws_smithy_runtime_api::client::interceptors::context::Input, ::aws_smithy_runtime_api::client::interceptors::context::Output, ::aws_smithy_runtime_api::client::interceptors::context::Error>,
120 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
121 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
122 let ::std::option::Option::Some(requested) = cfg.load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>().filter(|r| !r.is_empty()) else {
124 return ::std::result::Result::Ok(());
125 };
126
127 let ::std::option::Option::Some(input) = context.input().downcast_ref::<RegisterClientInput>() else {
128 return ::std::result::Result::Ok(());
130 };
131
132 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
133 if requested.should_capture("clientName") {
134 if let ::std::option::Option::Some(value) = input.client_name.as_deref() {
135 captured.insert("clientName", value);
136 }
137 }
138if requested.should_capture("clientType") {
139 if let ::std::option::Option::Some(value) = input.client_type.as_deref() {
140 captured.insert("clientType", value);
141 }
142 }
143if requested.should_capture("issuerUrl") {
144 if let ::std::option::Option::Some(value) = input.issuer_url.as_deref() {
145 captured.insert("issuerUrl", value);
146 }
147 }
148if requested.should_capture("entitledApplicationArn") {
149 if let ::std::option::Option::Some(value) = input.entitled_application_arn.as_deref() {
150 captured.insert("entitledApplicationArn", value);
151 }
152 }
153
154 cfg.interceptor_state().store_put(captured);
155 ::std::result::Result::Ok(())
156 }
157 }
158#[derive(Debug)]
159 struct RegisterClientResponseDeserializer;
160 impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for RegisterClientResponseDeserializer {
161
162
163 fn deserialize_nonstreaming_with_config(&self, response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse, _cfg: &::aws_smithy_types::config_bag::ConfigBag) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
164 let (success, status) = (response.status().is_success(), response.status().as_u16());
165 let headers = response.headers();
166 let body = response.body().bytes().expect("body loaded");
167 #[allow(unused_mut)]
168 let mut force_error = false;
169 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
170 let parse_result = if !success && status != 200 || force_error {
171 crate::protocol_serde::shape_register_client::de_register_client_http_error(status, headers, body)
172 } else {
173 crate::protocol_serde::shape_register_client::de_register_client_http_response(status, headers, body)
174 };
175 crate::protocol_serde::type_erase_result(parse_result)
176 }
177 }
178#[derive(Debug)]
179 struct RegisterClientRequestSerializer;
180 impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for RegisterClientRequestSerializer {
181 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
182 fn serialize_input(&self, input: ::aws_smithy_runtime_api::client::interceptors::context::Input, _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
183 let input = input.downcast::<crate::operation::register_client::RegisterClientInput>().expect("correct type");
184 let _header_serialization_settings = _cfg.load::<crate::serialization_settings::HeaderSerializationSettings>().cloned().unwrap_or_default();
185 let mut request_builder = {
186 #[allow(clippy::uninlined_format_args)]
187fn uri_base(_input: &crate::operation::register_client::RegisterClientInput, output: &mut ::std::string::String) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
188 use ::std::fmt::Write as _;
189 ::std::write!(output, "/client/register").expect("formatting should succeed");
190 ::std::result::Result::Ok(())
191}
192#[allow(clippy::unnecessary_wraps)]
193fn update_http_builder(
194 input: &crate::operation::register_client::RegisterClientInput,
195 builder: ::http_1x::request::Builder
196 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
197 let mut uri = ::std::string::String::new();
198 uri_base(input, &mut uri)?;
199 ::std::result::Result::Ok(builder.method("POST").uri(uri))
200}
201let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
202builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
203builder
204 };
205 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_register_client::ser_register_client_input(&input)?);
206 if let Some(content_length) = body.content_length() {
207 let content_length = content_length.to_string();
208 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
209 }
210 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
211 }
212 }
213#[derive(Debug)]
214 struct RegisterClientEndpointParamsInterceptor;
215
216 #[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
217 impl ::aws_smithy_runtime_api::client::interceptors::Intercept for RegisterClientEndpointParamsInterceptor {
218 fn name(&self) -> &'static str {
219 "RegisterClientEndpointParamsInterceptor"
220 }
221
222 fn read_before_execution(
223 &self,
224 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<'_, ::aws_smithy_runtime_api::client::interceptors::context::Input, ::aws_smithy_runtime_api::client::interceptors::context::Output, ::aws_smithy_runtime_api::client::interceptors::context::Error>,
225 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
226 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
227 let _input = context.input()
228 .downcast_ref::<RegisterClientInput>()
229 .ok_or("failed to downcast to RegisterClientInput")?;
230
231
232
233 let params = crate::config::endpoint::Params::builder()
234 .set_region(cfg.load::<::aws_types::region::Region>().map(|r|r.as_ref().to_owned()))
235.set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
236.set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
237.set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
238 .build()
239 .map_err(|err| ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err))?;
240 cfg.interceptor_state().store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
241 ::std::result::Result::Ok(())
242 }
243 }
244
245 #[non_exhaustive]
252#[derive(::std::fmt::Debug)]
253pub enum RegisterClientError {
254 InternalServerException(crate::types::error::InternalServerException),
256 InvalidClientMetadataException(crate::types::error::InvalidClientMetadataException),
258 InvalidRedirectUriException(crate::types::error::InvalidRedirectUriException),
260 InvalidRequestException(crate::types::error::InvalidRequestException),
262 InvalidScopeException(crate::types::error::InvalidScopeException),
264 SlowDownException(crate::types::error::SlowDownException),
266 UnsupportedGrantTypeException(crate::types::error::UnsupportedGrantTypeException),
268 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
270 variable wildcard pattern and check `.code()`:
271 \
272 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
273 \
274 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-RegisterClientError) for what information is available for the error.")]
275 Unhandled(crate::error::sealed_unhandled::Unhandled),
276}
277impl RegisterClientError {
278 pub fn unhandled(err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>) -> Self {
280 Self::Unhandled(crate::error::sealed_unhandled::Unhandled { source: err.into(), meta: ::std::default::Default::default() })
281 }
282
283 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
285 Self::Unhandled(crate::error::sealed_unhandled::Unhandled { source: err.clone().into(), meta: err })
286 }
287 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
292 match self {
293 Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
294 Self::InvalidClientMetadataException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
295 Self::InvalidRedirectUriException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
296 Self::InvalidRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
297 Self::InvalidScopeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
298 Self::SlowDownException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
299 Self::UnsupportedGrantTypeException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
300 Self::Unhandled(e) => &e.meta,
301 }
302 }
303 pub fn is_internal_server_exception(&self) -> bool {
305 matches!(self, Self::InternalServerException(_))
306 }
307 pub fn is_invalid_client_metadata_exception(&self) -> bool {
309 matches!(self, Self::InvalidClientMetadataException(_))
310 }
311 pub fn is_invalid_redirect_uri_exception(&self) -> bool {
313 matches!(self, Self::InvalidRedirectUriException(_))
314 }
315 pub fn is_invalid_request_exception(&self) -> bool {
317 matches!(self, Self::InvalidRequestException(_))
318 }
319 pub fn is_invalid_scope_exception(&self) -> bool {
321 matches!(self, Self::InvalidScopeException(_))
322 }
323 pub fn is_slow_down_exception(&self) -> bool {
325 matches!(self, Self::SlowDownException(_))
326 }
327 pub fn is_unsupported_grant_type_exception(&self) -> bool {
329 matches!(self, Self::UnsupportedGrantTypeException(_))
330 }
331}
332impl ::std::error::Error for RegisterClientError {
333 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
334 match self {
335 Self::InternalServerException(_inner) =>
336 ::std::option::Option::Some(_inner)
337 ,
338 Self::InvalidClientMetadataException(_inner) =>
339 ::std::option::Option::Some(_inner)
340 ,
341 Self::InvalidRedirectUriException(_inner) =>
342 ::std::option::Option::Some(_inner)
343 ,
344 Self::InvalidRequestException(_inner) =>
345 ::std::option::Option::Some(_inner)
346 ,
347 Self::InvalidScopeException(_inner) =>
348 ::std::option::Option::Some(_inner)
349 ,
350 Self::SlowDownException(_inner) =>
351 ::std::option::Option::Some(_inner)
352 ,
353 Self::UnsupportedGrantTypeException(_inner) =>
354 ::std::option::Option::Some(_inner)
355 ,
356 Self::Unhandled(_inner) => {
357 ::std::option::Option::Some(&*_inner.source)
358 }
359 }
360 }
361}
362impl ::std::fmt::Display for RegisterClientError {
363 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
364 match self {
365 Self::InternalServerException(_inner) =>
366 _inner.fmt(f)
367 ,
368 Self::InvalidClientMetadataException(_inner) =>
369 _inner.fmt(f)
370 ,
371 Self::InvalidRedirectUriException(_inner) =>
372 _inner.fmt(f)
373 ,
374 Self::InvalidRequestException(_inner) =>
375 _inner.fmt(f)
376 ,
377 Self::InvalidScopeException(_inner) =>
378 _inner.fmt(f)
379 ,
380 Self::SlowDownException(_inner) =>
381 _inner.fmt(f)
382 ,
383 Self::UnsupportedGrantTypeException(_inner) =>
384 _inner.fmt(f)
385 ,
386 Self::Unhandled(_inner) => {
387 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
388 write!(f, "unhandled error ({code})")
389 } else {
390 f.write_str("unhandled error")
391 }
392 }
393 }
394 }
395}
396impl ::aws_smithy_types::retry::ProvideErrorKind for RegisterClientError {
397 fn code(&self) -> ::std::option::Option<&str> {
398 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
399 }
400 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
401 ::std::option::Option::None
402 }
403}
404impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for RegisterClientError {
405 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
406 match self {
407 Self::InternalServerException(_inner) =>
408 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
409 ,
410 Self::InvalidClientMetadataException(_inner) =>
411 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
412 ,
413 Self::InvalidRedirectUriException(_inner) =>
414 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
415 ,
416 Self::InvalidRequestException(_inner) =>
417 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
418 ,
419 Self::InvalidScopeException(_inner) =>
420 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
421 ,
422 Self::SlowDownException(_inner) =>
423 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
424 ,
425 Self::UnsupportedGrantTypeException(_inner) =>
426 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner)
427 ,
428 Self::Unhandled(_inner) => {
429 &_inner.meta
430 }
431 }
432 }
433}
434impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for RegisterClientError {
435 fn create_unhandled_error(
436 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
437 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>
438 ) -> Self {
439 Self::Unhandled(crate::error::sealed_unhandled::Unhandled { source, meta: meta.unwrap_or_default() })
440 }
441}
442impl ::aws_types::request_id::RequestId for crate::operation::register_client::RegisterClientError {
443 fn request_id(&self) -> Option<&str> {
444 self.meta().request_id()
445 }
446 }
447
448pub use crate::operation::register_client::_register_client_input::RegisterClientInput;
449
450pub use crate::operation::register_client::_register_client_output::RegisterClientOutput;
451
452mod _register_client_input;
453
454mod _register_client_output;
455
456pub mod builders;
458