aws_sdk_tnb/client/get_sol_network_operation.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetSolNetworkOperation`](crate::operation::get_sol_network_operation::builders::GetSolNetworkOperationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`ns_lcm_op_occ_id(impl Into<String>)`](crate::operation::get_sol_network_operation::builders::GetSolNetworkOperationFluentBuilder::ns_lcm_op_occ_id) / [`set_ns_lcm_op_occ_id(Option<String>)`](crate::operation::get_sol_network_operation::builders::GetSolNetworkOperationFluentBuilder::set_ns_lcm_op_occ_id):<br>required: **true**<br><p>The identifier of the network operation.</p><br>
7 /// - On success, responds with [`GetSolNetworkOperationOutput`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput) with field(s):
8 /// - [`id(Option<String>)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::id): <p>ID of this network operation occurrence.</p>
9 /// - [`arn(String)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::arn): <p>Network operation ARN.</p>
10 /// - [`operation_state(Option<NsLcmOperationState>)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::operation_state): <p>The state of the network operation.</p>
11 /// - [`ns_instance_id(Option<String>)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::ns_instance_id): <p>ID of the network operation instance.</p>
12 /// - [`lcm_operation_type(Option<LcmOperationType>)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::lcm_operation_type): <p>Type of the operation represented by this occurrence.</p>
13 /// - [`update_type(Option<UpdateSolNetworkType>)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::update_type): <p>Type of the update. Only present if the network operation lcmOperationType is <code>UPDATE</code>.</p>
14 /// - [`error(Option<ProblemDetails>)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::error): <p>Error related to this specific network operation occurrence.</p>
15 /// - [`metadata(Option<GetSolNetworkOperationMetadata>)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::metadata): <p>Metadata of this network operation occurrence.</p>
16 /// - [`tasks(Option<Vec::<GetSolNetworkOperationTaskDetails>>)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::tasks): <p>All tasks associated with this operation occurrence.</p>
17 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_sol_network_operation::GetSolNetworkOperationOutput::tags): <p>A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.</p>
18 /// - On failure, responds with [`SdkError<GetSolNetworkOperationError>`](crate::operation::get_sol_network_operation::GetSolNetworkOperationError)
19 pub fn get_sol_network_operation(&self) -> crate::operation::get_sol_network_operation::builders::GetSolNetworkOperationFluentBuilder {
20 crate::operation::get_sol_network_operation::builders::GetSolNetworkOperationFluentBuilder::new(self.handle.clone())
21 }
22}