1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use crate::operation::create_odb_network::_create_odb_network_output::CreateOdbNetworkOutputBuilder;
pub use crate::operation::create_odb_network::_create_odb_network_input::CreateOdbNetworkInputBuilder;
impl crate::operation::create_odb_network::builders::CreateOdbNetworkInputBuilder {
/// Sends a request with this input using the given client.
pub async fn send_with(
self,
client: &crate::Client,
) -> ::std::result::Result<
crate::operation::create_odb_network::CreateOdbNetworkOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_odb_network::CreateOdbNetworkError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let mut fluent_builder = client.create_odb_network();
fluent_builder.inner = self;
fluent_builder.send().await
}
}
/// Fluent builder constructing a request to `CreateOdbNetwork`.
///
/// <p>Creates an ODB network.</p>
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct CreateOdbNetworkFluentBuilder {
handle: ::std::sync::Arc<crate::client::Handle>,
inner: crate::operation::create_odb_network::builders::CreateOdbNetworkInputBuilder,
config_override: ::std::option::Option<crate::config::Builder>,
}
impl
crate::client::customize::internal::CustomizableSend<
crate::operation::create_odb_network::CreateOdbNetworkOutput,
crate::operation::create_odb_network::CreateOdbNetworkError,
> for CreateOdbNetworkFluentBuilder
{
fn send(
self,
config_override: crate::config::Builder,
) -> crate::client::customize::internal::BoxFuture<
crate::client::customize::internal::SendResult<
crate::operation::create_odb_network::CreateOdbNetworkOutput,
crate::operation::create_odb_network::CreateOdbNetworkError,
>,
> {
::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
}
}
impl CreateOdbNetworkFluentBuilder {
/// Creates a new `CreateOdbNetworkFluentBuilder`.
pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
Self {
handle,
inner: ::std::default::Default::default(),
config_override: ::std::option::Option::None,
}
}
/// Access the CreateOdbNetwork as a reference.
pub fn as_input(&self) -> &crate::operation::create_odb_network::builders::CreateOdbNetworkInputBuilder {
&self.inner
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> ::std::result::Result<
crate::operation::create_odb_network::CreateOdbNetworkOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::create_odb_network::CreateOdbNetworkError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let input = self
.inner
.build()
.map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
let runtime_plugins = crate::operation::create_odb_network::CreateOdbNetwork::operation_runtime_plugins(
self.handle.runtime_plugins.clone(),
&self.handle.conf,
self.config_override,
);
crate::operation::create_odb_network::CreateOdbNetwork::orchestrate(&runtime_plugins, input).await
}
/// Consumes this builder, creating a customizable operation that can be modified before being sent.
pub fn customize(
self,
) -> crate::client::customize::CustomizableOperation<
crate::operation::create_odb_network::CreateOdbNetworkOutput,
crate::operation::create_odb_network::CreateOdbNetworkError,
Self,
> {
crate::client::customize::CustomizableOperation::new(self)
}
pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
self.set_config_override(::std::option::Option::Some(config_override.into()));
self
}
pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
self.config_override = config_override;
self
}
/// <p>A user-friendly name for the ODB network.</p>
pub fn display_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.display_name(input.into());
self
}
/// <p>A user-friendly name for the ODB network.</p>
pub fn set_display_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_display_name(input);
self
}
/// <p>A user-friendly name for the ODB network.</p>
pub fn get_display_name(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_display_name()
}
/// <p>The Amazon Web Services Availability Zone (AZ) where the ODB network is located.</p>
/// <p>This operation requires that you specify a value for either <code>availabilityZone</code> or <code>availabilityZoneId</code>.</p>
pub fn availability_zone(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.availability_zone(input.into());
self
}
/// <p>The Amazon Web Services Availability Zone (AZ) where the ODB network is located.</p>
/// <p>This operation requires that you specify a value for either <code>availabilityZone</code> or <code>availabilityZoneId</code>.</p>
pub fn set_availability_zone(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_availability_zone(input);
self
}
/// <p>The Amazon Web Services Availability Zone (AZ) where the ODB network is located.</p>
/// <p>This operation requires that you specify a value for either <code>availabilityZone</code> or <code>availabilityZoneId</code>.</p>
pub fn get_availability_zone(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_availability_zone()
}
/// <p>The AZ ID of the AZ where the ODB network is located.</p>
/// <p>This operation requires that you specify a value for either <code>availabilityZone</code> or <code>availabilityZoneId</code>.</p>
pub fn availability_zone_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.availability_zone_id(input.into());
self
}
/// <p>The AZ ID of the AZ where the ODB network is located.</p>
/// <p>This operation requires that you specify a value for either <code>availabilityZone</code> or <code>availabilityZoneId</code>.</p>
pub fn set_availability_zone_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_availability_zone_id(input);
self
}
/// <p>The AZ ID of the AZ where the ODB network is located.</p>
/// <p>This operation requires that you specify a value for either <code>availabilityZone</code> or <code>availabilityZoneId</code>.</p>
pub fn get_availability_zone_id(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_availability_zone_id()
}
/// <p>The CIDR range of the client subnet for the ODB network.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must not overlap with the CIDR range of the backup subnet.</p></li>
/// <li>
/// <p>Must not overlap with the CIDR ranges of the VPCs that are connected to the ODB network.</p></li>
/// <li>
/// <p>Must not use the following CIDR ranges that are reserved by OCI:</p>
/// <ul>
/// <li>
/// <p><code>100.106.0.0/16</code> and <code>100.107.0.0/16</code></p></li>
/// <li>
/// <p><code>169.254.0.0/16</code></p></li>
/// <li>
/// <p><code>224.0.0.0 - 239.255.255.255</code></p></li>
/// <li>
/// <p><code>240.0.0.0 - 255.255.255.255</code></p></li>
/// </ul></li>
/// </ul>
pub fn client_subnet_cidr(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.client_subnet_cidr(input.into());
self
}
/// <p>The CIDR range of the client subnet for the ODB network.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must not overlap with the CIDR range of the backup subnet.</p></li>
/// <li>
/// <p>Must not overlap with the CIDR ranges of the VPCs that are connected to the ODB network.</p></li>
/// <li>
/// <p>Must not use the following CIDR ranges that are reserved by OCI:</p>
/// <ul>
/// <li>
/// <p><code>100.106.0.0/16</code> and <code>100.107.0.0/16</code></p></li>
/// <li>
/// <p><code>169.254.0.0/16</code></p></li>
/// <li>
/// <p><code>224.0.0.0 - 239.255.255.255</code></p></li>
/// <li>
/// <p><code>240.0.0.0 - 255.255.255.255</code></p></li>
/// </ul></li>
/// </ul>
pub fn set_client_subnet_cidr(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_client_subnet_cidr(input);
self
}
/// <p>The CIDR range of the client subnet for the ODB network.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must not overlap with the CIDR range of the backup subnet.</p></li>
/// <li>
/// <p>Must not overlap with the CIDR ranges of the VPCs that are connected to the ODB network.</p></li>
/// <li>
/// <p>Must not use the following CIDR ranges that are reserved by OCI:</p>
/// <ul>
/// <li>
/// <p><code>100.106.0.0/16</code> and <code>100.107.0.0/16</code></p></li>
/// <li>
/// <p><code>169.254.0.0/16</code></p></li>
/// <li>
/// <p><code>224.0.0.0 - 239.255.255.255</code></p></li>
/// <li>
/// <p><code>240.0.0.0 - 255.255.255.255</code></p></li>
/// </ul></li>
/// </ul>
pub fn get_client_subnet_cidr(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_client_subnet_cidr()
}
/// <p>The CIDR range of the backup subnet for the ODB network.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must not overlap with the CIDR range of the client subnet.</p></li>
/// <li>
/// <p>Must not overlap with the CIDR ranges of the VPCs that are connected to the ODB network.</p></li>
/// <li>
/// <p>Must not use the following CIDR ranges that are reserved by OCI:</p>
/// <ul>
/// <li>
/// <p><code>100.106.0.0/16</code> and <code>100.107.0.0/16</code></p></li>
/// <li>
/// <p><code>169.254.0.0/16</code></p></li>
/// <li>
/// <p><code>224.0.0.0 - 239.255.255.255</code></p></li>
/// <li>
/// <p><code>240.0.0.0 - 255.255.255.255</code></p></li>
/// </ul></li>
/// </ul>
pub fn backup_subnet_cidr(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.backup_subnet_cidr(input.into());
self
}
/// <p>The CIDR range of the backup subnet for the ODB network.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must not overlap with the CIDR range of the client subnet.</p></li>
/// <li>
/// <p>Must not overlap with the CIDR ranges of the VPCs that are connected to the ODB network.</p></li>
/// <li>
/// <p>Must not use the following CIDR ranges that are reserved by OCI:</p>
/// <ul>
/// <li>
/// <p><code>100.106.0.0/16</code> and <code>100.107.0.0/16</code></p></li>
/// <li>
/// <p><code>169.254.0.0/16</code></p></li>
/// <li>
/// <p><code>224.0.0.0 - 239.255.255.255</code></p></li>
/// <li>
/// <p><code>240.0.0.0 - 255.255.255.255</code></p></li>
/// </ul></li>
/// </ul>
pub fn set_backup_subnet_cidr(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_backup_subnet_cidr(input);
self
}
/// <p>The CIDR range of the backup subnet for the ODB network.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Must not overlap with the CIDR range of the client subnet.</p></li>
/// <li>
/// <p>Must not overlap with the CIDR ranges of the VPCs that are connected to the ODB network.</p></li>
/// <li>
/// <p>Must not use the following CIDR ranges that are reserved by OCI:</p>
/// <ul>
/// <li>
/// <p><code>100.106.0.0/16</code> and <code>100.107.0.0/16</code></p></li>
/// <li>
/// <p><code>169.254.0.0/16</code></p></li>
/// <li>
/// <p><code>224.0.0.0 - 239.255.255.255</code></p></li>
/// <li>
/// <p><code>240.0.0.0 - 255.255.255.255</code></p></li>
/// </ul></li>
/// </ul>
pub fn get_backup_subnet_cidr(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_backup_subnet_cidr()
}
/// <p>The domain name to use for the resources in the ODB network.</p>
pub fn custom_domain_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.custom_domain_name(input.into());
self
}
/// <p>The domain name to use for the resources in the ODB network.</p>
pub fn set_custom_domain_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_custom_domain_name(input);
self
}
/// <p>The domain name to use for the resources in the ODB network.</p>
pub fn get_custom_domain_name(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_custom_domain_name()
}
/// <p>The DNS prefix to the default DNS domain name. The default DNS domain name is oraclevcn.com.</p>
pub fn default_dns_prefix(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.default_dns_prefix(input.into());
self
}
/// <p>The DNS prefix to the default DNS domain name. The default DNS domain name is oraclevcn.com.</p>
pub fn set_default_dns_prefix(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_default_dns_prefix(input);
self
}
/// <p>The DNS prefix to the default DNS domain name. The default DNS domain name is oraclevcn.com.</p>
pub fn get_default_dns_prefix(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_default_dns_prefix()
}
/// <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don't specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency. The client token is valid for up to 24 hours after it's first used.</p>
pub fn client_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.client_token(input.into());
self
}
/// <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don't specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency. The client token is valid for up to 24 hours after it's first used.</p>
pub fn set_client_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_client_token(input);
self
}
/// <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don't specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency. The client token is valid for up to 24 hours after it's first used.</p>
pub fn get_client_token(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_client_token()
}
/// <p>Specifies the configuration for Amazon S3 access from the ODB network.</p>
pub fn s3_access(mut self, input: crate::types::Access) -> Self {
self.inner = self.inner.s3_access(input);
self
}
/// <p>Specifies the configuration for Amazon S3 access from the ODB network.</p>
pub fn set_s3_access(mut self, input: ::std::option::Option<crate::types::Access>) -> Self {
self.inner = self.inner.set_s3_access(input);
self
}
/// <p>Specifies the configuration for Amazon S3 access from the ODB network.</p>
pub fn get_s3_access(&self) -> &::std::option::Option<crate::types::Access> {
self.inner.get_s3_access()
}
/// <p>Specifies the configuration for Zero-ETL access from the ODB network.</p>
pub fn zero_etl_access(mut self, input: crate::types::Access) -> Self {
self.inner = self.inner.zero_etl_access(input);
self
}
/// <p>Specifies the configuration for Zero-ETL access from the ODB network.</p>
pub fn set_zero_etl_access(mut self, input: ::std::option::Option<crate::types::Access>) -> Self {
self.inner = self.inner.set_zero_etl_access(input);
self
}
/// <p>Specifies the configuration for Zero-ETL access from the ODB network.</p>
pub fn get_zero_etl_access(&self) -> &::std::option::Option<crate::types::Access> {
self.inner.get_zero_etl_access()
}
/// <p>The Amazon Web Services Security Token Service (STS) access configuration for the ODB network.</p>
pub fn sts_access(mut self, input: crate::types::Access) -> Self {
self.inner = self.inner.sts_access(input);
self
}
/// <p>The Amazon Web Services Security Token Service (STS) access configuration for the ODB network.</p>
pub fn set_sts_access(mut self, input: ::std::option::Option<crate::types::Access>) -> Self {
self.inner = self.inner.set_sts_access(input);
self
}
/// <p>The Amazon Web Services Security Token Service (STS) access configuration for the ODB network.</p>
pub fn get_sts_access(&self) -> &::std::option::Option<crate::types::Access> {
self.inner.get_sts_access()
}
/// <p>The Amazon Web Services Key Management Service (KMS) access configuration for the ODB network.</p>
pub fn kms_access(mut self, input: crate::types::Access) -> Self {
self.inner = self.inner.kms_access(input);
self
}
/// <p>The Amazon Web Services Key Management Service (KMS) access configuration for the ODB network.</p>
pub fn set_kms_access(mut self, input: ::std::option::Option<crate::types::Access>) -> Self {
self.inner = self.inner.set_kms_access(input);
self
}
/// <p>The Amazon Web Services Key Management Service (KMS) access configuration for the ODB network.</p>
pub fn get_kms_access(&self) -> &::std::option::Option<crate::types::Access> {
self.inner.get_kms_access()
}
/// <p>Specifies the endpoint policy for Amazon S3 access from the ODB network.</p>
pub fn s3_policy_document(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.s3_policy_document(input.into());
self
}
/// <p>Specifies the endpoint policy for Amazon S3 access from the ODB network.</p>
pub fn set_s3_policy_document(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_s3_policy_document(input);
self
}
/// <p>Specifies the endpoint policy for Amazon S3 access from the ODB network.</p>
pub fn get_s3_policy_document(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_s3_policy_document()
}
/// <p>The Amazon Web Services Security Token Service (STS) policy document that defines permissions for token service usage within the ODB network.</p>
pub fn sts_policy_document(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.sts_policy_document(input.into());
self
}
/// <p>The Amazon Web Services Security Token Service (STS) policy document that defines permissions for token service usage within the ODB network.</p>
pub fn set_sts_policy_document(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_sts_policy_document(input);
self
}
/// <p>The Amazon Web Services Security Token Service (STS) policy document that defines permissions for token service usage within the ODB network.</p>
pub fn get_sts_policy_document(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_sts_policy_document()
}
/// <p>The Amazon Web Services Key Management Service (KMS) policy document that defines permissions for key usage within the ODB network.</p>
pub fn kms_policy_document(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.kms_policy_document(input.into());
self
}
/// <p>The Amazon Web Services Key Management Service (KMS) policy document that defines permissions for key usage within the ODB network.</p>
pub fn set_kms_policy_document(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_kms_policy_document(input);
self
}
/// <p>The Amazon Web Services Key Management Service (KMS) policy document that defines permissions for key usage within the ODB network.</p>
pub fn get_kms_policy_document(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_kms_policy_document()
}
///
/// Appends an item to `crossRegionS3RestoreSourcesToEnable`.
///
/// To override the contents of this collection use [`set_cross_region_s3_restore_sources_to_enable`](Self::set_cross_region_s3_restore_sources_to_enable).
///
/// <p>The cross-Region Amazon S3 restore sources to enable for the ODB network.</p>
pub fn cross_region_s3_restore_sources_to_enable(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.cross_region_s3_restore_sources_to_enable(input.into());
self
}
/// <p>The cross-Region Amazon S3 restore sources to enable for the ODB network.</p>
pub fn set_cross_region_s3_restore_sources_to_enable(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.inner = self.inner.set_cross_region_s3_restore_sources_to_enable(input);
self
}
/// <p>The cross-Region Amazon S3 restore sources to enable for the ODB network.</p>
pub fn get_cross_region_s3_restore_sources_to_enable(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
self.inner.get_cross_region_s3_restore_sources_to_enable()
}
///
/// Adds a key-value pair to `tags`.
///
/// To override the contents of this collection use [`set_tags`](Self::set_tags).
///
/// <p>The list of resource tags to apply to the ODB network.</p>
pub fn tags(mut self, k: impl ::std::convert::Into<::std::string::String>, v: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.tags(k.into(), v.into());
self
}
/// <p>The list of resource tags to apply to the ODB network.</p>
pub fn set_tags(mut self, input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>) -> Self {
self.inner = self.inner.set_tags(input);
self
}
/// <p>The list of resource tags to apply to the ODB network.</p>
pub fn get_tags(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
self.inner.get_tags()
}
}