1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateNode;
6impl CreateNode {
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::create_node::CreateNodeInput,
14 ) -> ::std::result::Result<
15 crate::operation::create_node::CreateNodeOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::create_node::CreateNodeError,
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::create_node::CreateNodeError>()
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::create_node::CreateNodeOutput>()
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::create_node::CreateNodeInput,
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("ManagedBlockchain", "CreateNode", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "ManagedBlockchain.CreateNode",
59 "rpc.service" = "ManagedBlockchain",
60 "rpc.method" = "CreateNode",
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
74 .with_operation_plugin(crate::client_idempotency_token::IdempotencyTokenRuntimePlugin::new(
75 |token_provider, input| {
76 let input: &mut crate::operation::create_node::CreateNodeInput = input.downcast_mut().expect("correct type");
77 if input.client_request_token.is_none() {
78 input.client_request_token = ::std::option::Option::Some(token_provider.make_idempotency_token());
79 }
80 },
81 ))
82 .with_client_plugin(crate::auth_plugin::DefaultAuthOptionsPlugin::new(vec![
83 ::aws_runtime::auth::sigv4::SCHEME_ID,
84 ]));
85 if let ::std::option::Option::Some(config_override) = config_override {
86 for plugin in config_override.runtime_plugins.iter().cloned() {
87 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
88 }
89 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
90 config_override,
91 client_config.config.clone(),
92 &client_config.runtime_components,
93 ));
94 }
95 runtime_plugins
96 }
97}
98impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for CreateNode {
99 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
100 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CreateNode");
101
102 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
103 CreateNodeRequestSerializer,
104 ));
105 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
106 CreateNodeResponseDeserializer,
107 ));
108
109 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
110 ::aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolverParams::new(),
111 ));
112
113 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
114 "CreateNode",
115 "ManagedBlockchain",
116 ));
117 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
118 signing_options.double_uri_encode = true;
119 signing_options.content_sha256_header = false;
120 signing_options.normalize_uri_path = true;
121 signing_options.payload_override = None;
122
123 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
124 signing_options,
125 ..::std::default::Default::default()
126 });
127
128 ::std::option::Option::Some(cfg.freeze())
129 }
130
131 fn runtime_components(
132 &self,
133 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
134 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
135 #[allow(unused_mut)]
136 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("CreateNode")
137 .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
138 .with_interceptor(CreateNodeEndpointParamsInterceptor)
139 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
140 crate::operation::create_node::CreateNodeError,
141 >::new())
142 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
143 crate::operation::create_node::CreateNodeError,
144 >::new())
145 .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
146 crate::operation::create_node::CreateNodeError,
147 >::new());
148
149 ::std::borrow::Cow::Owned(rcb)
150 }
151}
152
153#[derive(Debug)]
154struct CreateNodeResponseDeserializer;
155impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateNodeResponseDeserializer {
156 fn deserialize_nonstreaming(
157 &self,
158 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
159 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
160 let (success, status) = (response.status().is_success(), response.status().as_u16());
161 let headers = response.headers();
162 let body = response.body().bytes().expect("body loaded");
163 #[allow(unused_mut)]
164 let mut force_error = false;
165 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
166 let parse_result = if !success && status != 200 || force_error {
167 crate::protocol_serde::shape_create_node::de_create_node_http_error(status, headers, body)
168 } else {
169 crate::protocol_serde::shape_create_node::de_create_node_http_response(status, headers, body)
170 };
171 crate::protocol_serde::type_erase_result(parse_result)
172 }
173}
174#[derive(Debug)]
175struct CreateNodeRequestSerializer;
176impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateNodeRequestSerializer {
177 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
178 fn serialize_input(
179 &self,
180 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
181 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
182 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
183 let input = input.downcast::<crate::operation::create_node::CreateNodeInput>().expect("correct type");
184 let _header_serialization_settings = _cfg
185 .load::<crate::serialization_settings::HeaderSerializationSettings>()
186 .cloned()
187 .unwrap_or_default();
188 let mut request_builder = {
189 fn uri_base(
190 _input: &crate::operation::create_node::CreateNodeInput,
191 output: &mut ::std::string::String,
192 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
193 use ::std::fmt::Write as _;
194 let input_1 = &_input.network_id;
195 let input_1 = input_1
196 .as_ref()
197 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("network_id", "cannot be empty or unset"))?;
198 let network_id = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
199 if network_id.is_empty() {
200 return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
201 "network_id",
202 "cannot be empty or unset",
203 ));
204 }
205 ::std::write!(output, "/networks/{NetworkId}/nodes", NetworkId = network_id).expect("formatting should succeed");
206 ::std::result::Result::Ok(())
207 }
208 #[allow(clippy::unnecessary_wraps)]
209 fn update_http_builder(
210 input: &crate::operation::create_node::CreateNodeInput,
211 builder: ::http::request::Builder,
212 ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
213 let mut uri = ::std::string::String::new();
214 uri_base(input, &mut uri)?;
215 ::std::result::Result::Ok(builder.method("POST").uri(uri))
216 }
217 let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
218 builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/json");
219 builder
220 };
221 let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_create_node::ser_create_node_input(&input)?);
222 if let Some(content_length) = body.content_length() {
223 let content_length = content_length.to_string();
224 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
225 }
226 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
227 }
228}
229#[derive(Debug)]
230struct CreateNodeEndpointParamsInterceptor;
231
232impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateNodeEndpointParamsInterceptor {
233 fn name(&self) -> &'static str {
234 "CreateNodeEndpointParamsInterceptor"
235 }
236
237 fn read_before_execution(
238 &self,
239 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
240 '_,
241 ::aws_smithy_runtime_api::client::interceptors::context::Input,
242 ::aws_smithy_runtime_api::client::interceptors::context::Output,
243 ::aws_smithy_runtime_api::client::interceptors::context::Error,
244 >,
245 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
246 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
247 let _input = context
248 .input()
249 .downcast_ref::<CreateNodeInput>()
250 .ok_or("failed to downcast to CreateNodeInput")?;
251
252 let params = crate::config::endpoint::Params::builder()
253 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
254 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
255 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
256 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
257 .build()
258 .map_err(|err| {
259 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
260 })?;
261 cfg.interceptor_state()
262 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
263 ::std::result::Result::Ok(())
264 }
265}
266
267#[non_exhaustive]
272#[derive(::std::fmt::Debug)]
273pub enum CreateNodeError {
274 AccessDeniedException(crate::types::error::AccessDeniedException),
276 InternalServiceErrorException(crate::types::error::InternalServiceErrorException),
278 InvalidRequestException(crate::types::error::InvalidRequestException),
280 ResourceAlreadyExistsException(crate::types::error::ResourceAlreadyExistsException),
282 ResourceLimitExceededException(crate::types::error::ResourceLimitExceededException),
284 ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
286 ResourceNotReadyException(crate::types::error::ResourceNotReadyException),
288 ThrottlingException(crate::types::error::ThrottlingException),
290 TooManyTagsException(crate::types::error::TooManyTagsException),
292 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
294 variable wildcard pattern and check `.code()`:
295 \
296 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
297 \
298 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateNodeError) for what information is available for the error.")]
299 Unhandled(crate::error::sealed_unhandled::Unhandled),
300}
301impl CreateNodeError {
302 pub fn unhandled(
304 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
305 ) -> Self {
306 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
307 source: err.into(),
308 meta: ::std::default::Default::default(),
309 })
310 }
311
312 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
314 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
315 source: err.clone().into(),
316 meta: err,
317 })
318 }
319 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
324 match self {
325 Self::AccessDeniedException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
326 Self::InternalServiceErrorException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
327 Self::InvalidRequestException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
328 Self::ResourceAlreadyExistsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
329 Self::ResourceLimitExceededException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
330 Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
331 Self::ResourceNotReadyException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
332 Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
333 Self::TooManyTagsException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
334 Self::Unhandled(e) => &e.meta,
335 }
336 }
337 pub fn is_access_denied_exception(&self) -> bool {
339 matches!(self, Self::AccessDeniedException(_))
340 }
341 pub fn is_internal_service_error_exception(&self) -> bool {
343 matches!(self, Self::InternalServiceErrorException(_))
344 }
345 pub fn is_invalid_request_exception(&self) -> bool {
347 matches!(self, Self::InvalidRequestException(_))
348 }
349 pub fn is_resource_already_exists_exception(&self) -> bool {
351 matches!(self, Self::ResourceAlreadyExistsException(_))
352 }
353 pub fn is_resource_limit_exceeded_exception(&self) -> bool {
355 matches!(self, Self::ResourceLimitExceededException(_))
356 }
357 pub fn is_resource_not_found_exception(&self) -> bool {
359 matches!(self, Self::ResourceNotFoundException(_))
360 }
361 pub fn is_resource_not_ready_exception(&self) -> bool {
363 matches!(self, Self::ResourceNotReadyException(_))
364 }
365 pub fn is_throttling_exception(&self) -> bool {
367 matches!(self, Self::ThrottlingException(_))
368 }
369 pub fn is_too_many_tags_exception(&self) -> bool {
371 matches!(self, Self::TooManyTagsException(_))
372 }
373}
374impl ::std::error::Error for CreateNodeError {
375 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
376 match self {
377 Self::AccessDeniedException(_inner) => ::std::option::Option::Some(_inner),
378 Self::InternalServiceErrorException(_inner) => ::std::option::Option::Some(_inner),
379 Self::InvalidRequestException(_inner) => ::std::option::Option::Some(_inner),
380 Self::ResourceAlreadyExistsException(_inner) => ::std::option::Option::Some(_inner),
381 Self::ResourceLimitExceededException(_inner) => ::std::option::Option::Some(_inner),
382 Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
383 Self::ResourceNotReadyException(_inner) => ::std::option::Option::Some(_inner),
384 Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
385 Self::TooManyTagsException(_inner) => ::std::option::Option::Some(_inner),
386 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
387 }
388 }
389}
390impl ::std::fmt::Display for CreateNodeError {
391 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
392 match self {
393 Self::AccessDeniedException(_inner) => _inner.fmt(f),
394 Self::InternalServiceErrorException(_inner) => _inner.fmt(f),
395 Self::InvalidRequestException(_inner) => _inner.fmt(f),
396 Self::ResourceAlreadyExistsException(_inner) => _inner.fmt(f),
397 Self::ResourceLimitExceededException(_inner) => _inner.fmt(f),
398 Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
399 Self::ResourceNotReadyException(_inner) => _inner.fmt(f),
400 Self::ThrottlingException(_inner) => _inner.fmt(f),
401 Self::TooManyTagsException(_inner) => _inner.fmt(f),
402 Self::Unhandled(_inner) => {
403 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
404 write!(f, "unhandled error ({code})")
405 } else {
406 f.write_str("unhandled error")
407 }
408 }
409 }
410 }
411}
412impl ::aws_smithy_types::retry::ProvideErrorKind for CreateNodeError {
413 fn code(&self) -> ::std::option::Option<&str> {
414 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
415 }
416 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
417 ::std::option::Option::None
418 }
419}
420impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateNodeError {
421 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
422 match self {
423 Self::AccessDeniedException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
424 Self::InternalServiceErrorException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
425 Self::InvalidRequestException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
426 Self::ResourceAlreadyExistsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
427 Self::ResourceLimitExceededException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
428 Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
429 Self::ResourceNotReadyException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
430 Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
431 Self::TooManyTagsException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
432 Self::Unhandled(_inner) => &_inner.meta,
433 }
434 }
435}
436impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateNodeError {
437 fn create_unhandled_error(
438 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
439 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
440 ) -> Self {
441 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
442 source,
443 meta: meta.unwrap_or_default(),
444 })
445 }
446}
447impl ::aws_types::request_id::RequestId for crate::operation::create_node::CreateNodeError {
448 fn request_id(&self) -> Option<&str> {
449 self.meta().request_id()
450 }
451}
452
453pub use crate::operation::create_node::_create_node_output::CreateNodeOutput;
454
455pub use crate::operation::create_node::_create_node_input::CreateNodeInput;
456
457mod _create_node_input;
458
459mod _create_node_output;
460
461pub mod builders;