1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CancelUpdate;
6impl CancelUpdate {
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::cancel_update::CancelUpdateInput,
14 ) -> ::std::result::Result<
15 crate::operation::cancel_update::CancelUpdateOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::cancel_update::CancelUpdateError,
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 >| {
25 err.map_service_error(|err| {
26 err.downcast::<crate::operation::cancel_update::CancelUpdateError>()
27 .expect("correct error type")
28 })
29 };
30 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
31 .await
32 .map_err(map_err)?;
33 let output = context.finalize().map_err(map_err)?;
34 ::std::result::Result::Ok(
35 output
36 .downcast::<crate::operation::cancel_update::CancelUpdateOutput>()
37 .expect("correct output type"),
38 )
39 }
40
41 pub(crate) async fn orchestrate_with_stop_point(
42 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
43 input: crate::operation::cancel_update::CancelUpdateInput,
44 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
45 ) -> ::std::result::Result<
46 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
47 ::aws_smithy_runtime_api::client::result::SdkError<
48 ::aws_smithy_runtime_api::client::interceptors::context::Error,
49 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
50 >,
51 > {
52 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
53 use ::tracing::Instrument;
54 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("EKS", "CancelUpdate", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "EKS.CancelUpdate",
59 "rpc.service" = "EKS",
60 "rpc.method" = "CancelUpdate",
61 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
62 "rpc.system" = "aws-api",
63 ))
64 .await
65 }
66
67 pub(crate) fn operation_runtime_plugins(
68 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
69 client_config: &crate::config::Config,
70 config_override: ::std::option::Option<crate::config::Builder>,
71 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
72 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
73 runtime_plugins = runtime_plugins.with_operation_plugin(crate::client_idempotency_token::IdempotencyTokenRuntimePlugin::new(
74 |token_provider, input| {
75 let input: &mut crate::operation::cancel_update::CancelUpdateInput = input.downcast_mut().expect("correct type");
76 if input.client_request_token.is_none() {
77 input.client_request_token = ::std::option::Option::Some(token_provider.make_idempotency_token());
78 }
79 },
80 ));
81 if let ::std::option::Option::Some(config_override) = config_override {
82 for plugin in config_override.runtime_plugins.iter().cloned() {
83 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
84 }
85 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
86 config_override,
87 client_config.config.clone(),
88 &client_config.runtime_components,
89 ));
90 }
91 runtime_plugins
92 }
93}
94impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for CancelUpdate {
95 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
96 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CancelUpdate");
97
98 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
99 CancelUpdateRequestSerializer,
100 ));
101 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
102 CancelUpdateResponseDeserializer,
103 ));
104
105 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
106 crate::config::auth::Params::builder()
107 .operation_name("CancelUpdate")
108 .build()
109 .expect("required fields set"),
110 ));
111
112 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("CancelUpdate", "EKS"));
113 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
114 signing_options.double_uri_encode = true;
115 signing_options.content_sha256_header = false;
116 signing_options.normalize_uri_path = true;
117 signing_options.payload_override = None;
118
119 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
120 signing_options,
121 ..::std::default::Default::default()
122 });
123
124 ::std::option::Option::Some(cfg.freeze())
125 }
126
127 fn runtime_components(
128 &self,
129 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
130 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
131 #[allow(unused_mut)]
132 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("CancelUpdate")
133 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
134 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
135 ))
136 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
137 CancelUpdateEndpointParamsInterceptor,
138 ))
139 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
140 crate::operation::cancel_update::CancelUpdateError,
141 >::new())
142 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
143 crate::operation::cancel_update::CancelUpdateError,
144 >::new())
145 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
146 crate::operation::cancel_update::CancelUpdateError,
147 >::new());
148
149 ::std::borrow::Cow::Owned(rcb)
150 }
151}
152
153#[derive(Debug)]
154struct CancelUpdateResponseDeserializer;
155impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CancelUpdateResponseDeserializer {
156 fn deserialize_nonstreaming_with_config(
157 &self,
158 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
159 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
160 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
161 let (success, status) = (response.status().is_success(), response.status().as_u16());
162 let headers = response.headers();
163 let body = response.body().bytes().expect("body loaded");
164 #[allow(unused_mut)]
165 let mut force_error = false;
166 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
167 let parse_result = if !success && status != 200 || force_error {
168 crate::protocol_serde::shape_cancel_update::de_cancel_update_http_error(status, headers, body)
169 } else {
170 crate::protocol_serde::shape_cancel_update::de_cancel_update_http_response(status, headers, body)
171 };
172 crate::protocol_serde::type_erase_result(parse_result)
173 }
174}
175#[derive(Debug)]
176struct CancelUpdateRequestSerializer;
177impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CancelUpdateRequestSerializer {
178 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
179 fn serialize_input(
180 &self,
181 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
182 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
183 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
184 let input = input
185 .downcast::<crate::operation::cancel_update::CancelUpdateInput>()
186 .expect("correct type");
187 let _header_serialization_settings = _cfg
188 .load::<crate::serialization_settings::HeaderSerializationSettings>()
189 .cloned()
190 .unwrap_or_default();
191 let mut request_builder = {
192 #[allow(clippy::uninlined_format_args)]
193 fn uri_base(
194 _input: &crate::operation::cancel_update::CancelUpdateInput,
195 output: &mut ::std::string::String,
196 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
197 use ::std::fmt::Write as _;
198 let input_1 = &_input.name;
199 let input_1 = input_1
200 .as_ref()
201 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("name", "cannot be empty or unset"))?;
202 let name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
203 if name.is_empty() {
204 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
205 "name",
206 "cannot be empty or unset",
207 ));
208 }
209 let input_2 = &_input.update_id;
210 let input_2 = input_2
211 .as_ref()
212 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("update_id", "cannot be empty or unset"))?;
213 let update_id = ::aws_smithy_http::label::fmt_string(input_2, ::aws_smithy_http::label::EncodingStrategy::Default);
214 if update_id.is_empty() {
215 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
216 "update_id",
217 "cannot be empty or unset",
218 ));
219 }
220 ::std::write!(
221 output,
222 "/clusters/{name}/updates/{updateId}/cancel-update",
223 name = name,
224 updateId = update_id
225 )
226 .expect("formatting should succeed");
227 ::std::result::Result::Ok(())
228 }
229 #[allow(clippy::unnecessary_wraps)]
230 fn update_http_builder(
231 input: &crate::operation::cancel_update::CancelUpdateInput,
232 builder: ::http_1x::request::Builder,
233 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
234 let mut uri = ::std::string::String::new();
235 uri_base(input, &mut uri)?;
236 ::std::result::Result::Ok(builder.method("POST").uri(uri))
237 }
238 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
239 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/json");
240 builder
241 };
242 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_cancel_update::ser_cancel_update_input(&input)?);
243 if let Some(content_length) = body.content_length() {
244 let content_length = content_length.to_string();
245 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
246 }
247 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
248 }
249}
250#[derive(Debug)]
251struct CancelUpdateEndpointParamsInterceptor;
252
253#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
254impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CancelUpdateEndpointParamsInterceptor {
255 fn name(&self) -> &'static str {
256 "CancelUpdateEndpointParamsInterceptor"
257 }
258
259 fn read_before_execution(
260 &self,
261 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
262 '_,
263 ::aws_smithy_runtime_api::client::interceptors::context::Input,
264 ::aws_smithy_runtime_api::client::interceptors::context::Output,
265 ::aws_smithy_runtime_api::client::interceptors::context::Error,
266 >,
267 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
268 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
269 let _input = context
270 .input()
271 .downcast_ref::<CancelUpdateInput>()
272 .ok_or("failed to downcast to CancelUpdateInput")?;
273
274 let params = crate::config::endpoint::Params::builder()
275 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
276 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
277 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
278 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
279 .build()
280 .map_err(|err| {
281 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
282 })?;
283 cfg.interceptor_state()
284 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
285 ::std::result::Result::Ok(())
286 }
287}
288
289#[non_exhaustive]
294#[derive(::std::fmt::Debug)]
295pub enum CancelUpdateError {
296 ClientException(crate::types::error::ClientException),
298 InvalidParameterException(crate::types::error::InvalidParameterException),
300 InvalidRequestException(crate::types::error::InvalidRequestException),
302 InvalidStateException(crate::types::error::InvalidStateException),
304 ResourceInUseException(crate::types::error::ResourceInUseException),
306 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
308 ServerException(crate::types::error::ServerException),
310 ThrottlingException(crate::types::error::ThrottlingException),
312 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
314 variable wildcard pattern and check `.code()`:
315 \
316 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
317 \
318 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CancelUpdateError) for what information is available for the error.")]
319 Unhandled(crate::error::sealed_unhandled::Unhandled),
320}
321impl CancelUpdateError {
322 pub fn unhandled(
324 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
325 ) -> Self {
326 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
327 source: err.into(),
328 meta: ::std::default::Default::default(),
329 })
330 }
331
332 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
334 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
335 source: err.clone().into(),
336 meta: err,
337 })
338 }
339 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
344 match self {
345 Self::ClientException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
346 Self::InvalidParameterException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
347 Self::InvalidRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
348 Self::InvalidStateException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
349 Self::ResourceInUseException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
350 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
351 Self::ServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
352 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
353 Self::Unhandled(e) => &e.meta,
354 }
355 }
356 pub fn is_client_exception(&self) -> bool {
358 matches!(self, Self::ClientException(_))
359 }
360 pub fn is_invalid_parameter_exception(&self) -> bool {
362 matches!(self, Self::InvalidParameterException(_))
363 }
364 pub fn is_invalid_request_exception(&self) -> bool {
366 matches!(self, Self::InvalidRequestException(_))
367 }
368 pub fn is_invalid_state_exception(&self) -> bool {
370 matches!(self, Self::InvalidStateException(_))
371 }
372 pub fn is_resource_in_use_exception(&self) -> bool {
374 matches!(self, Self::ResourceInUseException(_))
375 }
376 pub fn is_resource_not_found_exception(&self) -> bool {
378 matches!(self, Self::ResourceNotFoundException(_))
379 }
380 pub fn is_server_exception(&self) -> bool {
382 matches!(self, Self::ServerException(_))
383 }
384 pub fn is_throttling_exception(&self) -> bool {
386 matches!(self, Self::ThrottlingException(_))
387 }
388}
389impl ::std::error::Error for CancelUpdateError {
390 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
391 match self {
392 Self::ClientException(_inner) => ::std::option::Option::Some(_inner),
393 Self::InvalidParameterException(_inner) => ::std::option::Option::Some(_inner),
394 Self::InvalidRequestException(_inner) => ::std::option::Option::Some(_inner),
395 Self::InvalidStateException(_inner) => ::std::option::Option::Some(_inner),
396 Self::ResourceInUseException(_inner) => ::std::option::Option::Some(_inner),
397 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
398 Self::ServerException(_inner) => ::std::option::Option::Some(_inner),
399 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
400 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
401 }
402 }
403}
404impl ::std::fmt::Display for CancelUpdateError {
405 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
406 match self {
407 Self::ClientException(_inner) => _inner.fmt(f),
408 Self::InvalidParameterException(_inner) => _inner.fmt(f),
409 Self::InvalidRequestException(_inner) => _inner.fmt(f),
410 Self::InvalidStateException(_inner) => _inner.fmt(f),
411 Self::ResourceInUseException(_inner) => _inner.fmt(f),
412 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
413 Self::ServerException(_inner) => _inner.fmt(f),
414 Self::ThrottlingException(_inner) => _inner.fmt(f),
415 Self::Unhandled(_inner) => {
416 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
417 write!(f, "unhandled error ({code})")
418 } else {
419 f.write_str("unhandled error")
420 }
421 }
422 }
423 }
424}
425impl ::aws_smithy_types::retry::ProvideErrorKind for CancelUpdateError {
426 fn code(&self) -> ::std::option::Option<&str> {
427 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
428 }
429 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
430 ::std::option::Option::None
431 }
432}
433impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CancelUpdateError {
434 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
435 match self {
436 Self::ClientException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
437 Self::InvalidParameterException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
438 Self::InvalidRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
439 Self::InvalidStateException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
440 Self::ResourceInUseException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
441 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
442 Self::ServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
443 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
444 Self::Unhandled(_inner) => &_inner.meta,
445 }
446 }
447}
448impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CancelUpdateError {
449 fn create_unhandled_error(
450 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
451 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
452 ) -> Self {
453 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
454 source,
455 meta: meta.unwrap_or_default(),
456 })
457 }
458}
459impl ::aws_types::request_id::RequestId for crate::operation::cancel_update::CancelUpdateError {
460 fn request_id(&self) -> Option<&str> {
461 self.meta().request_id()
462 }
463}
464
465pub use crate::operation::cancel_update::_cancel_update_input::CancelUpdateInput;
466
467pub use crate::operation::cancel_update::_cancel_update_output::CancelUpdateOutput;
468
469mod _cancel_update_input;
470
471mod _cancel_update_output;
472
473pub mod builders;