aws_sdk_iot/operation/
disassociate_sbom_from_package_version.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `DisassociateSbomFromPackageVersion`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct DisassociateSbomFromPackageVersion;
6impl DisassociateSbomFromPackageVersion {
7    /// Creates a new `DisassociateSbomFromPackageVersion`
8    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::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionInput,
14    ) -> ::std::result::Result<
15        crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionError,
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::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionError>()
27                    .expect("correct error type")
28            })
29        };
30        use ::tracing::Instrument;
31        let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
32            // Create a parent span for the entire operation. Includes a random, internal-only,
33            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
34            .instrument(::tracing::debug_span!(
35                "iot.DisassociateSbomFromPackageVersion",
36                "rpc.service" = "iot",
37                "rpc.method" = "DisassociateSbomFromPackageVersion",
38                "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
39                "rpc.system" = "aws-api",
40            ))
41            .await
42            .map_err(map_err)?;
43        let output = context.finalize().map_err(map_err)?;
44        ::std::result::Result::Ok(
45            output
46                .downcast::<crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionOutput>()
47                .expect("correct output type"),
48        )
49    }
50
51    pub(crate) async fn orchestrate_with_stop_point(
52        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
53        input: crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionInput,
54        stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
55    ) -> ::std::result::Result<
56        ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
57        ::aws_smithy_runtime_api::client::result::SdkError<
58            ::aws_smithy_runtime_api::client::interceptors::context::Error,
59            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
60        >,
61    > {
62        let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
63        ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point(
64            "iot",
65            "DisassociateSbomFromPackageVersion",
66            input,
67            runtime_plugins,
68            stop_point,
69        )
70        .await
71    }
72
73    pub(crate) fn operation_runtime_plugins(
74        client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
75        client_config: &crate::config::Config,
76        config_override: ::std::option::Option<crate::config::Builder>,
77    ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
78        let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
79        runtime_plugins = runtime_plugins
80            .with_operation_plugin(crate::client_idempotency_token::IdempotencyTokenRuntimePlugin::new(
81                |token_provider, input| {
82                    let input: &mut crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionInput =
83                        input.downcast_mut().expect("correct type");
84                    if input.client_token.is_none() {
85                        input.client_token = ::std::option::Option::Some(token_provider.make_idempotency_token());
86                    }
87                },
88            ))
89            .with_client_plugin(crate::auth_plugin::DefaultAuthOptionsPlugin::new(vec![
90                ::aws_runtime::auth::sigv4::SCHEME_ID,
91            ]));
92        if let ::std::option::Option::Some(config_override) = config_override {
93            for plugin in config_override.runtime_plugins.iter().cloned() {
94                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
95            }
96            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
97                config_override,
98                client_config.config.clone(),
99                &client_config.runtime_components,
100            ));
101        }
102        runtime_plugins
103    }
104}
105impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for DisassociateSbomFromPackageVersion {
106    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
107        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("DisassociateSbomFromPackageVersion");
108
109        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
110            DisassociateSbomFromPackageVersionRequestSerializer,
111        ));
112        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
113            DisassociateSbomFromPackageVersionResponseDeserializer,
114        ));
115
116        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
117            ::aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolverParams::new(),
118        ));
119
120        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
121            "DisassociateSbomFromPackageVersion",
122            "iot",
123        ));
124        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
125        signing_options.double_uri_encode = true;
126        signing_options.content_sha256_header = false;
127        signing_options.normalize_uri_path = true;
128        signing_options.payload_override = None;
129
130        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
131            signing_options,
132            ..::std::default::Default::default()
133        });
134
135        ::std::option::Option::Some(cfg.freeze())
136    }
137
138    fn runtime_components(
139        &self,
140        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
141    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
142        #[allow(unused_mut)]
143        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("DisassociateSbomFromPackageVersion")
144            .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
145            .with_interceptor(DisassociateSbomFromPackageVersionEndpointParamsInterceptor)
146            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
147                crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionError,
148            >::new())
149            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
150                crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionError,
151            >::new())
152            .with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
153                crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionError,
154            >::new());
155
156        ::std::borrow::Cow::Owned(rcb)
157    }
158}
159
160#[derive(Debug)]
161struct DisassociateSbomFromPackageVersionResponseDeserializer;
162impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for DisassociateSbomFromPackageVersionResponseDeserializer {
163    fn deserialize_nonstreaming(
164        &self,
165        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
166    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
167        let (success, status) = (response.status().is_success(), response.status().as_u16());
168        let headers = response.headers();
169        let body = response.body().bytes().expect("body loaded");
170        #[allow(unused_mut)]
171        let mut force_error = false;
172        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
173        let parse_result = if !success && status != 200 || force_error {
174            crate::protocol_serde::shape_disassociate_sbom_from_package_version::de_disassociate_sbom_from_package_version_http_error(
175                status, headers, body,
176            )
177        } else {
178            crate::protocol_serde::shape_disassociate_sbom_from_package_version::de_disassociate_sbom_from_package_version_http_response(
179                status, headers, body,
180            )
181        };
182        crate::protocol_serde::type_erase_result(parse_result)
183    }
184}
185#[derive(Debug)]
186struct DisassociateSbomFromPackageVersionRequestSerializer;
187impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for DisassociateSbomFromPackageVersionRequestSerializer {
188    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
189    fn serialize_input(
190        &self,
191        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
192        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
193    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
194        let input = input
195            .downcast::<crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionInput>()
196            .expect("correct type");
197        let _header_serialization_settings = _cfg
198            .load::<crate::serialization_settings::HeaderSerializationSettings>()
199            .cloned()
200            .unwrap_or_default();
201        let mut request_builder = {
202            fn uri_base(
203                _input: &crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionInput,
204                output: &mut ::std::string::String,
205            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
206                use ::std::fmt::Write as _;
207                let input_1 = &_input.package_name;
208                let input_1 = input_1
209                    .as_ref()
210                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("package_name", "cannot be empty or unset"))?;
211                let package_name = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
212                if package_name.is_empty() {
213                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
214                        "package_name",
215                        "cannot be empty or unset",
216                    ));
217                }
218                let input_2 = &_input.version_name;
219                let input_2 = input_2
220                    .as_ref()
221                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("version_name", "cannot be empty or unset"))?;
222                let version_name = ::aws_smithy_http::label::fmt_string(input_2, ::aws_smithy_http::label::EncodingStrategy::Default);
223                if version_name.is_empty() {
224                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
225                        "version_name",
226                        "cannot be empty or unset",
227                    ));
228                }
229                ::std::write!(
230                    output,
231                    "/packages/{packageName}/versions/{versionName}/sbom",
232                    packageName = package_name,
233                    versionName = version_name
234                )
235                .expect("formatting should succeed");
236                ::std::result::Result::Ok(())
237            }
238            fn uri_query(
239                _input: &crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionInput,
240                mut output: &mut ::std::string::String,
241            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
242                let mut query = ::aws_smithy_http::query::Writer::new(output);
243                if let ::std::option::Option::Some(inner_3) = &_input.client_token {
244                    {
245                        query.push_kv("clientToken", &::aws_smithy_http::query::fmt_string(inner_3));
246                    }
247                }
248                ::std::result::Result::Ok(())
249            }
250            #[allow(clippy::unnecessary_wraps)]
251            fn update_http_builder(
252                input: &crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionInput,
253                builder: ::http::request::Builder,
254            ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
255                let mut uri = ::std::string::String::new();
256                uri_base(input, &mut uri)?;
257                uri_query(input, &mut uri)?;
258                ::std::result::Result::Ok(builder.method("DELETE").uri(uri))
259            }
260            let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
261            builder
262        };
263        let body = ::aws_smithy_types::body::SdkBody::from("");
264
265        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
266    }
267}
268#[derive(Debug)]
269struct DisassociateSbomFromPackageVersionEndpointParamsInterceptor;
270
271impl ::aws_smithy_runtime_api::client::interceptors::Intercept for DisassociateSbomFromPackageVersionEndpointParamsInterceptor {
272    fn name(&self) -> &'static str {
273        "DisassociateSbomFromPackageVersionEndpointParamsInterceptor"
274    }
275
276    fn read_before_execution(
277        &self,
278        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
279            '_,
280            ::aws_smithy_runtime_api::client::interceptors::context::Input,
281            ::aws_smithy_runtime_api::client::interceptors::context::Output,
282            ::aws_smithy_runtime_api::client::interceptors::context::Error,
283        >,
284        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
285    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
286        let _input = context
287            .input()
288            .downcast_ref::<DisassociateSbomFromPackageVersionInput>()
289            .ok_or("failed to downcast to DisassociateSbomFromPackageVersionInput")?;
290
291        let params = crate::config::endpoint::Params::builder()
292            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
293            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
294            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
295            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
296            .build()
297            .map_err(|err| {
298                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
299            })?;
300        cfg.interceptor_state()
301            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
302        ::std::result::Result::Ok(())
303    }
304}
305
306// The get_* functions below are generated from JMESPath expressions in the
307// operationContextParams trait. They target the operation's input shape.
308
309/// Error type for the `DisassociateSbomFromPackageVersionError` operation.
310#[non_exhaustive]
311#[derive(::std::fmt::Debug)]
312pub enum DisassociateSbomFromPackageVersionError {
313    /// <p>The request conflicts with the current state of the resource.</p>
314    ConflictException(crate::types::error::ConflictException),
315    /// <p>Internal error from the service that indicates an unexpected error or that the service is unavailable.</p>
316    InternalServerException(crate::types::error::InternalServerException),
317    /// <p>The specified resource does not exist.</p>
318    ResourceNotFoundException(crate::types::error::ResourceNotFoundException),
319    /// <p>The rate exceeds the limit.</p>
320    ThrottlingException(crate::types::error::ThrottlingException),
321    /// <p>The request is not valid.</p>
322    ValidationException(crate::types::error::ValidationException),
323    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
324    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
325    variable wildcard pattern and check `.code()`:
326     \
327    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
328     \
329    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-DisassociateSbomFromPackageVersionError) for what information is available for the error.")]
330    Unhandled(crate::error::sealed_unhandled::Unhandled),
331}
332impl DisassociateSbomFromPackageVersionError {
333    /// Creates the `DisassociateSbomFromPackageVersionError::Unhandled` variant from any error type.
334    pub fn unhandled(
335        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
336    ) -> Self {
337        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
338            source: err.into(),
339            meta: ::std::default::Default::default(),
340        })
341    }
342
343    /// Creates the `DisassociateSbomFromPackageVersionError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
344    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
345        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
346            source: err.clone().into(),
347            meta: err,
348        })
349    }
350    ///
351    /// Returns error metadata, which includes the error code, message,
352    /// request ID, and potentially additional information.
353    ///
354    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
355        match self {
356            Self::ConflictException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
357            Self::InternalServerException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
358            Self::ResourceNotFoundException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
359            Self::ThrottlingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
360            Self::ValidationException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
361            Self::Unhandled(e) => &e.meta,
362        }
363    }
364    /// Returns `true` if the error kind is `DisassociateSbomFromPackageVersionError::ConflictException`.
365    pub fn is_conflict_exception(&self) -> bool {
366        matches!(self, Self::ConflictException(_))
367    }
368    /// Returns `true` if the error kind is `DisassociateSbomFromPackageVersionError::InternalServerException`.
369    pub fn is_internal_server_exception(&self) -> bool {
370        matches!(self, Self::InternalServerException(_))
371    }
372    /// Returns `true` if the error kind is `DisassociateSbomFromPackageVersionError::ResourceNotFoundException`.
373    pub fn is_resource_not_found_exception(&self) -> bool {
374        matches!(self, Self::ResourceNotFoundException(_))
375    }
376    /// Returns `true` if the error kind is `DisassociateSbomFromPackageVersionError::ThrottlingException`.
377    pub fn is_throttling_exception(&self) -> bool {
378        matches!(self, Self::ThrottlingException(_))
379    }
380    /// Returns `true` if the error kind is `DisassociateSbomFromPackageVersionError::ValidationException`.
381    pub fn is_validation_exception(&self) -> bool {
382        matches!(self, Self::ValidationException(_))
383    }
384}
385impl ::std::error::Error for DisassociateSbomFromPackageVersionError {
386    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
387        match self {
388            Self::ConflictException(_inner) => ::std::option::Option::Some(_inner),
389            Self::InternalServerException(_inner) => ::std::option::Option::Some(_inner),
390            Self::ResourceNotFoundException(_inner) => ::std::option::Option::Some(_inner),
391            Self::ThrottlingException(_inner) => ::std::option::Option::Some(_inner),
392            Self::ValidationException(_inner) => ::std::option::Option::Some(_inner),
393            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
394        }
395    }
396}
397impl ::std::fmt::Display for DisassociateSbomFromPackageVersionError {
398    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
399        match self {
400            Self::ConflictException(_inner) => _inner.fmt(f),
401            Self::InternalServerException(_inner) => _inner.fmt(f),
402            Self::ResourceNotFoundException(_inner) => _inner.fmt(f),
403            Self::ThrottlingException(_inner) => _inner.fmt(f),
404            Self::ValidationException(_inner) => _inner.fmt(f),
405            Self::Unhandled(_inner) => {
406                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
407                    write!(f, "unhandled error ({code})")
408                } else {
409                    f.write_str("unhandled error")
410                }
411            }
412        }
413    }
414}
415impl ::aws_smithy_types::retry::ProvideErrorKind for DisassociateSbomFromPackageVersionError {
416    fn code(&self) -> ::std::option::Option<&str> {
417        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
418    }
419    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
420        ::std::option::Option::None
421    }
422}
423impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for DisassociateSbomFromPackageVersionError {
424    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
425        match self {
426            Self::ConflictException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
427            Self::InternalServerException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
428            Self::ResourceNotFoundException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
429            Self::ThrottlingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
430            Self::ValidationException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
431            Self::Unhandled(_inner) => &_inner.meta,
432        }
433    }
434}
435impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DisassociateSbomFromPackageVersionError {
436    fn create_unhandled_error(
437        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
438        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
439    ) -> Self {
440        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
441            source,
442            meta: meta.unwrap_or_default(),
443        })
444    }
445}
446impl ::aws_types::request_id::RequestId for crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionError {
447    fn request_id(&self) -> Option<&str> {
448        self.meta().request_id()
449    }
450}
451
452pub use crate::operation::disassociate_sbom_from_package_version::_disassociate_sbom_from_package_version_output::DisassociateSbomFromPackageVersionOutput;
453
454pub use crate::operation::disassociate_sbom_from_package_version::_disassociate_sbom_from_package_version_input::DisassociateSbomFromPackageVersionInput;
455
456mod _disassociate_sbom_from_package_version_input;
457
458mod _disassociate_sbom_from_package_version_output;
459
460/// Builders
461pub mod builders;