aws_sdk_resourcegroups/operation/
tag.rs1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct Tag;
6impl Tag {
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::tag::TagInput,
14 ) -> ::std::result::Result<
15 crate::operation::tag::TagOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::tag::TagError,
18 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19 >,
20 > {
21 let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<
22 ::aws_smithy_runtime_api::client::interceptors::context::Error,
23 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
24 >| { err.map_service_error(|err| err.downcast::<crate::operation::tag::TagError>().expect("correct error type")) };
25 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
26 .await
27 .map_err(map_err)?;
28 let output = context.finalize().map_err(map_err)?;
29 ::std::result::Result::Ok(output.downcast::<crate::operation::tag::TagOutput>().expect("correct output type"))
30 }
31
32 pub(crate) async fn orchestrate_with_stop_point(
33 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
34 input: crate::operation::tag::TagInput,
35 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
36 ) -> ::std::result::Result<
37 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
38 ::aws_smithy_runtime_api::client::result::SdkError<
39 ::aws_smithy_runtime_api::client::interceptors::context::Error,
40 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
41 >,
42 > {
43 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
44 use ::tracing::Instrument;
45 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("Resource Groups", "Tag", input, runtime_plugins, stop_point)
46 .instrument(::tracing::debug_span!(
49 "Resource Groups.Tag",
50 "rpc.service" = "Resource Groups",
51 "rpc.method" = "Tag",
52 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
53 "rpc.system" = "aws-api",
54 ))
55 .await
56 }
57
58 pub(crate) fn operation_runtime_plugins(
59 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
60 client_config: &crate::config::Config,
61 config_override: ::std::option::Option<crate::config::Builder>,
62 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
63 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
64
65 if let ::std::option::Option::Some(config_override) = config_override {
66 for plugin in config_override.runtime_plugins.iter().cloned() {
67 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
68 }
69 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
70 config_override,
71 client_config.config.clone(),
72 &client_config.runtime_components,
73 ));
74 }
75 runtime_plugins
76 }
77}
78impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for Tag {
79 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
80 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("Tag");
81
82 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
83 TagRequestSerializer,
84 ));
85 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
86 TagResponseDeserializer,
87 ));
88
89 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
90 crate::config::auth::Params::builder()
91 .operation_name("Tag")
92 .build()
93 .expect("required fields set"),
94 ));
95
96 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("Tag", "Resource Groups"));
97 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
98 signing_options.double_uri_encode = true;
99 signing_options.content_sha256_header = false;
100 signing_options.normalize_uri_path = true;
101 signing_options.payload_override = None;
102
103 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
104 signing_options,
105 ..::std::default::Default::default()
106 });
107
108 ::std::option::Option::Some(cfg.freeze())
109 }
110
111 fn runtime_components(
112 &self,
113 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
114 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
115 #[allow(unused_mut)]
116 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("Tag")
117 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
118 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
119 ))
120 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
121 TagEndpointParamsInterceptor,
122 ))
123 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
124 crate::operation::tag::TagError,
125 >::new())
126 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
127 crate::operation::tag::TagError,
128 >::new())
129 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
130 crate::operation::tag::TagError,
131 >::new());
132
133 ::std::borrow::Cow::Owned(rcb)
134 }
135}
136
137#[derive(Debug)]
138struct TagResponseDeserializer;
139impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for TagResponseDeserializer {
140 fn deserialize_nonstreaming(
141 &self,
142 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
143 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
144 let (success, status) = (response.status().is_success(), response.status().as_u16());
145 let headers = response.headers();
146 let body = response.body().bytes().expect("body loaded");
147 #[allow(unused_mut)]
148 let mut force_error = false;
149 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
150 let parse_result = if !success && status != 200 || force_error {
151 crate::protocol_serde::shape_tag::de_tag_http_error(status, headers, body)
152 } else {
153 crate::protocol_serde::shape_tag::de_tag_http_response(status, headers, body)
154 };
155 crate::protocol_serde::type_erase_result(parse_result)
156 }
157}
158#[derive(Debug)]
159struct TagRequestSerializer;
160impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for TagRequestSerializer {
161 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
162 fn serialize_input(
163 &self,
164 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
165 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
166 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
167 let input = input.downcast::<crate::operation::tag::TagInput>().expect("correct type");
168 let _header_serialization_settings = _cfg
169 .load::<crate::serialization_settings::HeaderSerializationSettings>()
170 .cloned()
171 .unwrap_or_default();
172 let mut request_builder = {
173 #[allow(clippy::uninlined_format_args)]
174 fn uri_base(
175 _input: &crate::operation::tag::TagInput,
176 output: &mut ::std::string::String,
177 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
178 use ::std::fmt::Write as _;
179 let input_1 = &_input.arn;
180 let input_1 = input_1
181 .as_ref()
182 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("arn", "cannot be empty or unset"))?;
183 let arn = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
184 if arn.is_empty() {
185 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
186 "arn",
187 "cannot be empty or unset",
188 ));
189 }
190 ::std::write!(output, "/resources/{Arn}/tags", Arn = arn).expect("formatting should succeed");
191 ::std::result::Result::Ok(())
192 }
193 #[allow(clippy::unnecessary_wraps)]
194 fn update_http_builder(
195 input: &crate::operation::tag::TagInput,
196 builder: ::http_1x::request::Builder,
197 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
198 let mut uri = ::std::string::String::new();
199 uri_base(input, &mut uri)?;
200 ::std::result::Result::Ok(builder.method("PUT").uri(uri))
201 }
202 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
203 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
204 builder
205 };
206 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_tag::ser_tag_input(&input)?);
207 if let Some(content_length) = body.content_length() {
208 let content_length = content_length.to_string();
209 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
210 }
211 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
212 }
213}
214#[derive(Debug)]
215struct TagEndpointParamsInterceptor;
216
217#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
218impl ::aws_smithy_runtime_api::client::interceptors::Intercept for TagEndpointParamsInterceptor {
219 fn name(&self) -> &'static str {
220 "TagEndpointParamsInterceptor"
221 }
222
223 fn read_before_execution(
224 &self,
225 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
226 '_,
227 ::aws_smithy_runtime_api::client::interceptors::context::Input,
228 ::aws_smithy_runtime_api::client::interceptors::context::Output,
229 ::aws_smithy_runtime_api::client::interceptors::context::Error,
230 >,
231 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
232 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
233 let _input = context.input().downcast_ref::<TagInput>().ok_or("failed to downcast to TagInput")?;
234
235 let params = crate::config::endpoint::Params::builder()
236 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
237 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
238 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
239 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
240 .build()
241 .map_err(|err| {
242 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
243 })?;
244 cfg.interceptor_state()
245 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
246 ::std::result::Result::Ok(())
247 }
248}
249
250#[non_exhaustive]
255#[derive(::std::fmt::Debug)]
256pub enum TagError {
257 BadRequestException(crate::types::error::BadRequestException),
259 ForbiddenException(crate::types::error::ForbiddenException),
261 InternalServerErrorException(crate::types::error::InternalServerErrorException),
263 MethodNotAllowedException(crate::types::error::MethodNotAllowedException),
265 NotFoundException(crate::types::error::NotFoundException),
267 TooManyRequestsException(crate::types::error::TooManyRequestsException),
269 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
271 variable wildcard pattern and check `.code()`:
272 \
273 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
274 \
275 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-TagError) for what information is available for the error.")]
276 Unhandled(crate::error::sealed_unhandled::Unhandled),
277}
278impl TagError {
279 pub fn unhandled(
281 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
282 ) -> Self {
283 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
284 source: err.into(),
285 meta: ::std::default::Default::default(),
286 })
287 }
288
289 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
291 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
292 source: err.clone().into(),
293 meta: err,
294 })
295 }
296 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
301 match self {
302 Self::BadRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
303 Self::ForbiddenException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
304 Self::InternalServerErrorException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
305 Self::MethodNotAllowedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
306 Self::NotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
307 Self::TooManyRequestsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
308 Self::Unhandled(e) => &e.meta,
309 }
310 }
311 pub fn is_bad_request_exception(&self) -> bool {
313 matches!(self, Self::BadRequestException(_))
314 }
315 pub fn is_forbidden_exception(&self) -> bool {
317 matches!(self, Self::ForbiddenException(_))
318 }
319 pub fn is_internal_server_error_exception(&self) -> bool {
321 matches!(self, Self::InternalServerErrorException(_))
322 }
323 pub fn is_method_not_allowed_exception(&self) -> bool {
325 matches!(self, Self::MethodNotAllowedException(_))
326 }
327 pub fn is_not_found_exception(&self) -> bool {
329 matches!(self, Self::NotFoundException(_))
330 }
331 pub fn is_too_many_requests_exception(&self) -> bool {
333 matches!(self, Self::TooManyRequestsException(_))
334 }
335}
336impl ::std::error::Error for TagError {
337 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
338 match self {
339 Self::BadRequestException(_inner) => ::std::option::Option::Some(_inner),
340 Self::ForbiddenException(_inner) => ::std::option::Option::Some(_inner),
341 Self::InternalServerErrorException(_inner) => ::std::option::Option::Some(_inner),
342 Self::MethodNotAllowedException(_inner) => ::std::option::Option::Some(_inner),
343 Self::NotFoundException(_inner) => ::std::option::Option::Some(_inner),
344 Self::TooManyRequestsException(_inner) => ::std::option::Option::Some(_inner),
345 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
346 }
347 }
348}
349impl ::std::fmt::Display for TagError {
350 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
351 match self {
352 Self::BadRequestException(_inner) => _inner.fmt(f),
353 Self::ForbiddenException(_inner) => _inner.fmt(f),
354 Self::InternalServerErrorException(_inner) => _inner.fmt(f),
355 Self::MethodNotAllowedException(_inner) => _inner.fmt(f),
356 Self::NotFoundException(_inner) => _inner.fmt(f),
357 Self::TooManyRequestsException(_inner) => _inner.fmt(f),
358 Self::Unhandled(_inner) => {
359 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
360 write!(f, "unhandled error ({code})")
361 } else {
362 f.write_str("unhandled error")
363 }
364 }
365 }
366 }
367}
368impl ::aws_smithy_types::retry::ProvideErrorKind for TagError {
369 fn code(&self) -> ::std::option::Option<&str> {
370 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
371 }
372 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
373 ::std::option::Option::None
374 }
375}
376impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for TagError {
377 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
378 match self {
379 Self::BadRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
380 Self::ForbiddenException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
381 Self::InternalServerErrorException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
382 Self::MethodNotAllowedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
383 Self::NotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
384 Self::TooManyRequestsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
385 Self::Unhandled(_inner) => &_inner.meta,
386 }
387 }
388}
389impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for TagError {
390 fn create_unhandled_error(
391 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
392 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
393 ) -> Self {
394 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
395 source,
396 meta: meta.unwrap_or_default(),
397 })
398 }
399}
400impl ::aws_types::request_id::RequestId for crate::operation::tag::TagError {
401 fn request_id(&self) -> Option<&str> {
402 self.meta().request_id()
403 }
404}
405
406pub use crate::operation::tag::_tag_input::TagInput;
407
408pub use crate::operation::tag::_tag_output::TagOutput;
409
410mod _tag_input;
411
412mod _tag_output;
413
414pub mod builders;