aws-sdk-networkmanager 1.40.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1281 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module NetworkManager
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _AcceptAttachmentResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::AcceptAttachmentResponse]
77
+ def attachment: () -> Types::Attachment
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#accept_attachment-instance_method
80
+ def accept_attachment: (
81
+ attachment_id: ::String
82
+ ) -> _AcceptAttachmentResponseSuccess
83
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptAttachmentResponseSuccess
84
+
85
+ interface _AssociateConnectPeerResponseSuccess
86
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateConnectPeerResponse]
87
+ def connect_peer_association: () -> Types::ConnectPeerAssociation
88
+ end
89
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#associate_connect_peer-instance_method
90
+ def associate_connect_peer: (
91
+ global_network_id: ::String,
92
+ connect_peer_id: ::String,
93
+ device_id: ::String,
94
+ ?link_id: ::String
95
+ ) -> _AssociateConnectPeerResponseSuccess
96
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateConnectPeerResponseSuccess
97
+
98
+ interface _AssociateCustomerGatewayResponseSuccess
99
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateCustomerGatewayResponse]
100
+ def customer_gateway_association: () -> Types::CustomerGatewayAssociation
101
+ end
102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#associate_customer_gateway-instance_method
103
+ def associate_customer_gateway: (
104
+ customer_gateway_arn: ::String,
105
+ global_network_id: ::String,
106
+ device_id: ::String,
107
+ ?link_id: ::String
108
+ ) -> _AssociateCustomerGatewayResponseSuccess
109
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateCustomerGatewayResponseSuccess
110
+
111
+ interface _AssociateLinkResponseSuccess
112
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateLinkResponse]
113
+ def link_association: () -> Types::LinkAssociation
114
+ end
115
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#associate_link-instance_method
116
+ def associate_link: (
117
+ global_network_id: ::String,
118
+ device_id: ::String,
119
+ link_id: ::String
120
+ ) -> _AssociateLinkResponseSuccess
121
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateLinkResponseSuccess
122
+
123
+ interface _AssociateTransitGatewayConnectPeerResponseSuccess
124
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateTransitGatewayConnectPeerResponse]
125
+ def transit_gateway_connect_peer_association: () -> Types::TransitGatewayConnectPeerAssociation
126
+ end
127
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#associate_transit_gateway_connect_peer-instance_method
128
+ def associate_transit_gateway_connect_peer: (
129
+ global_network_id: ::String,
130
+ transit_gateway_connect_peer_arn: ::String,
131
+ device_id: ::String,
132
+ ?link_id: ::String
133
+ ) -> _AssociateTransitGatewayConnectPeerResponseSuccess
134
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateTransitGatewayConnectPeerResponseSuccess
135
+
136
+ interface _CreateConnectAttachmentResponseSuccess
137
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectAttachmentResponse]
138
+ def connect_attachment: () -> Types::ConnectAttachment
139
+ end
140
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_connect_attachment-instance_method
141
+ def create_connect_attachment: (
142
+ core_network_id: ::String,
143
+ edge_location: ::String,
144
+ transport_attachment_id: ::String,
145
+ options: {
146
+ protocol: ("GRE" | "NO_ENCAP")?
147
+ },
148
+ ?tags: Array[
149
+ {
150
+ key: ::String?,
151
+ value: ::String?
152
+ },
153
+ ],
154
+ ?client_token: ::String
155
+ ) -> _CreateConnectAttachmentResponseSuccess
156
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectAttachmentResponseSuccess
157
+
158
+ interface _CreateConnectPeerResponseSuccess
159
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectPeerResponse]
160
+ def connect_peer: () -> Types::ConnectPeer
161
+ end
162
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_connect_peer-instance_method
163
+ def create_connect_peer: (
164
+ connect_attachment_id: ::String,
165
+ ?core_network_address: ::String,
166
+ peer_address: ::String,
167
+ ?bgp_options: {
168
+ peer_asn: ::Integer?
169
+ },
170
+ ?inside_cidr_blocks: Array[::String],
171
+ ?tags: Array[
172
+ {
173
+ key: ::String?,
174
+ value: ::String?
175
+ },
176
+ ],
177
+ ?client_token: ::String,
178
+ ?subnet_arn: ::String
179
+ ) -> _CreateConnectPeerResponseSuccess
180
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectPeerResponseSuccess
181
+
182
+ interface _CreateConnectionResponseSuccess
183
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionResponse]
184
+ def connection: () -> Types::Connection
185
+ end
186
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_connection-instance_method
187
+ def create_connection: (
188
+ global_network_id: ::String,
189
+ device_id: ::String,
190
+ connected_device_id: ::String,
191
+ ?link_id: ::String,
192
+ ?connected_link_id: ::String,
193
+ ?description: ::String,
194
+ ?tags: Array[
195
+ {
196
+ key: ::String?,
197
+ value: ::String?
198
+ },
199
+ ]
200
+ ) -> _CreateConnectionResponseSuccess
201
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionResponseSuccess
202
+
203
+ interface _CreateCoreNetworkResponseSuccess
204
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCoreNetworkResponse]
205
+ def core_network: () -> Types::CoreNetwork
206
+ end
207
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_core_network-instance_method
208
+ def create_core_network: (
209
+ global_network_id: ::String,
210
+ ?description: ::String,
211
+ ?tags: Array[
212
+ {
213
+ key: ::String?,
214
+ value: ::String?
215
+ },
216
+ ],
217
+ ?policy_document: ::String,
218
+ ?client_token: ::String
219
+ ) -> _CreateCoreNetworkResponseSuccess
220
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCoreNetworkResponseSuccess
221
+
222
+ interface _CreateDeviceResponseSuccess
223
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDeviceResponse]
224
+ def device: () -> Types::Device
225
+ end
226
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_device-instance_method
227
+ def create_device: (
228
+ global_network_id: ::String,
229
+ ?aws_location: {
230
+ zone: ::String?,
231
+ subnet_arn: ::String?
232
+ },
233
+ ?description: ::String,
234
+ ?type: ::String,
235
+ ?vendor: ::String,
236
+ ?model: ::String,
237
+ ?serial_number: ::String,
238
+ ?location: {
239
+ address: ::String?,
240
+ latitude: ::String?,
241
+ longitude: ::String?
242
+ },
243
+ ?site_id: ::String,
244
+ ?tags: Array[
245
+ {
246
+ key: ::String?,
247
+ value: ::String?
248
+ },
249
+ ]
250
+ ) -> _CreateDeviceResponseSuccess
251
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeviceResponseSuccess
252
+
253
+ interface _CreateGlobalNetworkResponseSuccess
254
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGlobalNetworkResponse]
255
+ def global_network: () -> Types::GlobalNetwork
256
+ end
257
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_global_network-instance_method
258
+ def create_global_network: (
259
+ ?description: ::String,
260
+ ?tags: Array[
261
+ {
262
+ key: ::String?,
263
+ value: ::String?
264
+ },
265
+ ]
266
+ ) -> _CreateGlobalNetworkResponseSuccess
267
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlobalNetworkResponseSuccess
268
+
269
+ interface _CreateLinkResponseSuccess
270
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLinkResponse]
271
+ def link: () -> Types::Link
272
+ end
273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_link-instance_method
274
+ def create_link: (
275
+ global_network_id: ::String,
276
+ ?description: ::String,
277
+ ?type: ::String,
278
+ bandwidth: {
279
+ upload_speed: ::Integer?,
280
+ download_speed: ::Integer?
281
+ },
282
+ ?provider: ::String,
283
+ site_id: ::String,
284
+ ?tags: Array[
285
+ {
286
+ key: ::String?,
287
+ value: ::String?
288
+ },
289
+ ]
290
+ ) -> _CreateLinkResponseSuccess
291
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLinkResponseSuccess
292
+
293
+ interface _CreateSiteResponseSuccess
294
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSiteResponse]
295
+ def site: () -> Types::Site
296
+ end
297
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_site-instance_method
298
+ def create_site: (
299
+ global_network_id: ::String,
300
+ ?description: ::String,
301
+ ?location: {
302
+ address: ::String?,
303
+ latitude: ::String?,
304
+ longitude: ::String?
305
+ },
306
+ ?tags: Array[
307
+ {
308
+ key: ::String?,
309
+ value: ::String?
310
+ },
311
+ ]
312
+ ) -> _CreateSiteResponseSuccess
313
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSiteResponseSuccess
314
+
315
+ interface _CreateSiteToSiteVpnAttachmentResponseSuccess
316
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSiteToSiteVpnAttachmentResponse]
317
+ def site_to_site_vpn_attachment: () -> Types::SiteToSiteVpnAttachment
318
+ end
319
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_site_to_site_vpn_attachment-instance_method
320
+ def create_site_to_site_vpn_attachment: (
321
+ core_network_id: ::String,
322
+ vpn_connection_arn: ::String,
323
+ ?tags: Array[
324
+ {
325
+ key: ::String?,
326
+ value: ::String?
327
+ },
328
+ ],
329
+ ?client_token: ::String
330
+ ) -> _CreateSiteToSiteVpnAttachmentResponseSuccess
331
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSiteToSiteVpnAttachmentResponseSuccess
332
+
333
+ interface _CreateTransitGatewayPeeringResponseSuccess
334
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTransitGatewayPeeringResponse]
335
+ def transit_gateway_peering: () -> Types::TransitGatewayPeering
336
+ end
337
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_transit_gateway_peering-instance_method
338
+ def create_transit_gateway_peering: (
339
+ core_network_id: ::String,
340
+ transit_gateway_arn: ::String,
341
+ ?tags: Array[
342
+ {
343
+ key: ::String?,
344
+ value: ::String?
345
+ },
346
+ ],
347
+ ?client_token: ::String
348
+ ) -> _CreateTransitGatewayPeeringResponseSuccess
349
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTransitGatewayPeeringResponseSuccess
350
+
351
+ interface _CreateTransitGatewayRouteTableAttachmentResponseSuccess
352
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTransitGatewayRouteTableAttachmentResponse]
353
+ def transit_gateway_route_table_attachment: () -> Types::TransitGatewayRouteTableAttachment
354
+ end
355
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_transit_gateway_route_table_attachment-instance_method
356
+ def create_transit_gateway_route_table_attachment: (
357
+ peering_id: ::String,
358
+ transit_gateway_route_table_arn: ::String,
359
+ ?tags: Array[
360
+ {
361
+ key: ::String?,
362
+ value: ::String?
363
+ },
364
+ ],
365
+ ?client_token: ::String
366
+ ) -> _CreateTransitGatewayRouteTableAttachmentResponseSuccess
367
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTransitGatewayRouteTableAttachmentResponseSuccess
368
+
369
+ interface _CreateVpcAttachmentResponseSuccess
370
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVpcAttachmentResponse]
371
+ def vpc_attachment: () -> Types::VpcAttachment
372
+ end
373
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_vpc_attachment-instance_method
374
+ def create_vpc_attachment: (
375
+ core_network_id: ::String,
376
+ vpc_arn: ::String,
377
+ subnet_arns: Array[::String],
378
+ ?options: {
379
+ ipv_6_support: bool?,
380
+ appliance_mode_support: bool?
381
+ },
382
+ ?tags: Array[
383
+ {
384
+ key: ::String?,
385
+ value: ::String?
386
+ },
387
+ ],
388
+ ?client_token: ::String
389
+ ) -> _CreateVpcAttachmentResponseSuccess
390
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcAttachmentResponseSuccess
391
+
392
+ interface _DeleteAttachmentResponseSuccess
393
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAttachmentResponse]
394
+ def attachment: () -> Types::Attachment
395
+ end
396
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_attachment-instance_method
397
+ def delete_attachment: (
398
+ attachment_id: ::String
399
+ ) -> _DeleteAttachmentResponseSuccess
400
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAttachmentResponseSuccess
401
+
402
+ interface _DeleteConnectPeerResponseSuccess
403
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectPeerResponse]
404
+ def connect_peer: () -> Types::ConnectPeer
405
+ end
406
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_connect_peer-instance_method
407
+ def delete_connect_peer: (
408
+ connect_peer_id: ::String
409
+ ) -> _DeleteConnectPeerResponseSuccess
410
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectPeerResponseSuccess
411
+
412
+ interface _DeleteConnectionResponseSuccess
413
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectionResponse]
414
+ def connection: () -> Types::Connection
415
+ end
416
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_connection-instance_method
417
+ def delete_connection: (
418
+ global_network_id: ::String,
419
+ connection_id: ::String
420
+ ) -> _DeleteConnectionResponseSuccess
421
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionResponseSuccess
422
+
423
+ interface _DeleteCoreNetworkResponseSuccess
424
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCoreNetworkResponse]
425
+ def core_network: () -> Types::CoreNetwork
426
+ end
427
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_core_network-instance_method
428
+ def delete_core_network: (
429
+ core_network_id: ::String
430
+ ) -> _DeleteCoreNetworkResponseSuccess
431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCoreNetworkResponseSuccess
432
+
433
+ interface _DeleteCoreNetworkPolicyVersionResponseSuccess
434
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCoreNetworkPolicyVersionResponse]
435
+ def core_network_policy: () -> Types::CoreNetworkPolicy
436
+ end
437
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_core_network_policy_version-instance_method
438
+ def delete_core_network_policy_version: (
439
+ core_network_id: ::String,
440
+ policy_version_id: ::Integer
441
+ ) -> _DeleteCoreNetworkPolicyVersionResponseSuccess
442
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCoreNetworkPolicyVersionResponseSuccess
443
+
444
+ interface _DeleteDeviceResponseSuccess
445
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDeviceResponse]
446
+ def device: () -> Types::Device
447
+ end
448
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_device-instance_method
449
+ def delete_device: (
450
+ global_network_id: ::String,
451
+ device_id: ::String
452
+ ) -> _DeleteDeviceResponseSuccess
453
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDeviceResponseSuccess
454
+
455
+ interface _DeleteGlobalNetworkResponseSuccess
456
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGlobalNetworkResponse]
457
+ def global_network: () -> Types::GlobalNetwork
458
+ end
459
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_global_network-instance_method
460
+ def delete_global_network: (
461
+ global_network_id: ::String
462
+ ) -> _DeleteGlobalNetworkResponseSuccess
463
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlobalNetworkResponseSuccess
464
+
465
+ interface _DeleteLinkResponseSuccess
466
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLinkResponse]
467
+ def link: () -> Types::Link
468
+ end
469
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_link-instance_method
470
+ def delete_link: (
471
+ global_network_id: ::String,
472
+ link_id: ::String
473
+ ) -> _DeleteLinkResponseSuccess
474
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLinkResponseSuccess
475
+
476
+ interface _DeletePeeringResponseSuccess
477
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePeeringResponse]
478
+ def peering: () -> Types::Peering
479
+ end
480
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_peering-instance_method
481
+ def delete_peering: (
482
+ peering_id: ::String
483
+ ) -> _DeletePeeringResponseSuccess
484
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePeeringResponseSuccess
485
+
486
+ interface _DeleteResourcePolicyResponseSuccess
487
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourcePolicyResponse]
488
+ end
489
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_resource_policy-instance_method
490
+ def delete_resource_policy: (
491
+ resource_arn: ::String
492
+ ) -> _DeleteResourcePolicyResponseSuccess
493
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResourcePolicyResponseSuccess
494
+
495
+ interface _DeleteSiteResponseSuccess
496
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSiteResponse]
497
+ def site: () -> Types::Site
498
+ end
499
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_site-instance_method
500
+ def delete_site: (
501
+ global_network_id: ::String,
502
+ site_id: ::String
503
+ ) -> _DeleteSiteResponseSuccess
504
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSiteResponseSuccess
505
+
506
+ interface _DeregisterTransitGatewayResponseSuccess
507
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterTransitGatewayResponse]
508
+ def transit_gateway_registration: () -> Types::TransitGatewayRegistration
509
+ end
510
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#deregister_transit_gateway-instance_method
511
+ def deregister_transit_gateway: (
512
+ global_network_id: ::String,
513
+ transit_gateway_arn: ::String
514
+ ) -> _DeregisterTransitGatewayResponseSuccess
515
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterTransitGatewayResponseSuccess
516
+
517
+ interface _DescribeGlobalNetworksResponseSuccess
518
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeGlobalNetworksResponse]
519
+ def global_networks: () -> ::Array[Types::GlobalNetwork]
520
+ def next_token: () -> ::String
521
+ end
522
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#describe_global_networks-instance_method
523
+ def describe_global_networks: (
524
+ ?global_network_ids: Array[::String],
525
+ ?max_results: ::Integer,
526
+ ?next_token: ::String
527
+ ) -> _DescribeGlobalNetworksResponseSuccess
528
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeGlobalNetworksResponseSuccess
529
+
530
+ interface _DisassociateConnectPeerResponseSuccess
531
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateConnectPeerResponse]
532
+ def connect_peer_association: () -> Types::ConnectPeerAssociation
533
+ end
534
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#disassociate_connect_peer-instance_method
535
+ def disassociate_connect_peer: (
536
+ global_network_id: ::String,
537
+ connect_peer_id: ::String
538
+ ) -> _DisassociateConnectPeerResponseSuccess
539
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateConnectPeerResponseSuccess
540
+
541
+ interface _DisassociateCustomerGatewayResponseSuccess
542
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateCustomerGatewayResponse]
543
+ def customer_gateway_association: () -> Types::CustomerGatewayAssociation
544
+ end
545
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#disassociate_customer_gateway-instance_method
546
+ def disassociate_customer_gateway: (
547
+ global_network_id: ::String,
548
+ customer_gateway_arn: ::String
549
+ ) -> _DisassociateCustomerGatewayResponseSuccess
550
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateCustomerGatewayResponseSuccess
551
+
552
+ interface _DisassociateLinkResponseSuccess
553
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateLinkResponse]
554
+ def link_association: () -> Types::LinkAssociation
555
+ end
556
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#disassociate_link-instance_method
557
+ def disassociate_link: (
558
+ global_network_id: ::String,
559
+ device_id: ::String,
560
+ link_id: ::String
561
+ ) -> _DisassociateLinkResponseSuccess
562
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateLinkResponseSuccess
563
+
564
+ interface _DisassociateTransitGatewayConnectPeerResponseSuccess
565
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateTransitGatewayConnectPeerResponse]
566
+ def transit_gateway_connect_peer_association: () -> Types::TransitGatewayConnectPeerAssociation
567
+ end
568
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#disassociate_transit_gateway_connect_peer-instance_method
569
+ def disassociate_transit_gateway_connect_peer: (
570
+ global_network_id: ::String,
571
+ transit_gateway_connect_peer_arn: ::String
572
+ ) -> _DisassociateTransitGatewayConnectPeerResponseSuccess
573
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateTransitGatewayConnectPeerResponseSuccess
574
+
575
+ interface _ExecuteCoreNetworkChangeSetResponseSuccess
576
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExecuteCoreNetworkChangeSetResponse]
577
+ end
578
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#execute_core_network_change_set-instance_method
579
+ def execute_core_network_change_set: (
580
+ core_network_id: ::String,
581
+ policy_version_id: ::Integer
582
+ ) -> _ExecuteCoreNetworkChangeSetResponseSuccess
583
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExecuteCoreNetworkChangeSetResponseSuccess
584
+
585
+ interface _GetConnectAttachmentResponseSuccess
586
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectAttachmentResponse]
587
+ def connect_attachment: () -> Types::ConnectAttachment
588
+ end
589
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_connect_attachment-instance_method
590
+ def get_connect_attachment: (
591
+ attachment_id: ::String
592
+ ) -> _GetConnectAttachmentResponseSuccess
593
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectAttachmentResponseSuccess
594
+
595
+ interface _GetConnectPeerResponseSuccess
596
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectPeerResponse]
597
+ def connect_peer: () -> Types::ConnectPeer
598
+ end
599
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_connect_peer-instance_method
600
+ def get_connect_peer: (
601
+ connect_peer_id: ::String
602
+ ) -> _GetConnectPeerResponseSuccess
603
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectPeerResponseSuccess
604
+
605
+ interface _GetConnectPeerAssociationsResponseSuccess
606
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectPeerAssociationsResponse]
607
+ def connect_peer_associations: () -> ::Array[Types::ConnectPeerAssociation]
608
+ def next_token: () -> ::String
609
+ end
610
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_connect_peer_associations-instance_method
611
+ def get_connect_peer_associations: (
612
+ global_network_id: ::String,
613
+ ?connect_peer_ids: Array[::String],
614
+ ?max_results: ::Integer,
615
+ ?next_token: ::String
616
+ ) -> _GetConnectPeerAssociationsResponseSuccess
617
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectPeerAssociationsResponseSuccess
618
+
619
+ interface _GetConnectionsResponseSuccess
620
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionsResponse]
621
+ def connections: () -> ::Array[Types::Connection]
622
+ def next_token: () -> ::String
623
+ end
624
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_connections-instance_method
625
+ def get_connections: (
626
+ global_network_id: ::String,
627
+ ?connection_ids: Array[::String],
628
+ ?device_id: ::String,
629
+ ?max_results: ::Integer,
630
+ ?next_token: ::String
631
+ ) -> _GetConnectionsResponseSuccess
632
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionsResponseSuccess
633
+
634
+ interface _GetCoreNetworkResponseSuccess
635
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCoreNetworkResponse]
636
+ def core_network: () -> Types::CoreNetwork
637
+ end
638
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_core_network-instance_method
639
+ def get_core_network: (
640
+ core_network_id: ::String
641
+ ) -> _GetCoreNetworkResponseSuccess
642
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCoreNetworkResponseSuccess
643
+
644
+ interface _GetCoreNetworkChangeEventsResponseSuccess
645
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCoreNetworkChangeEventsResponse]
646
+ def core_network_change_events: () -> ::Array[Types::CoreNetworkChangeEvent]
647
+ def next_token: () -> ::String
648
+ end
649
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_core_network_change_events-instance_method
650
+ def get_core_network_change_events: (
651
+ core_network_id: ::String,
652
+ policy_version_id: ::Integer,
653
+ ?max_results: ::Integer,
654
+ ?next_token: ::String
655
+ ) -> _GetCoreNetworkChangeEventsResponseSuccess
656
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCoreNetworkChangeEventsResponseSuccess
657
+
658
+ interface _GetCoreNetworkChangeSetResponseSuccess
659
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCoreNetworkChangeSetResponse]
660
+ def core_network_changes: () -> ::Array[Types::CoreNetworkChange]
661
+ def next_token: () -> ::String
662
+ end
663
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_core_network_change_set-instance_method
664
+ def get_core_network_change_set: (
665
+ core_network_id: ::String,
666
+ policy_version_id: ::Integer,
667
+ ?max_results: ::Integer,
668
+ ?next_token: ::String
669
+ ) -> _GetCoreNetworkChangeSetResponseSuccess
670
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCoreNetworkChangeSetResponseSuccess
671
+
672
+ interface _GetCoreNetworkPolicyResponseSuccess
673
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCoreNetworkPolicyResponse]
674
+ def core_network_policy: () -> Types::CoreNetworkPolicy
675
+ end
676
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_core_network_policy-instance_method
677
+ def get_core_network_policy: (
678
+ core_network_id: ::String,
679
+ ?policy_version_id: ::Integer,
680
+ ?alias: ("LIVE" | "LATEST")
681
+ ) -> _GetCoreNetworkPolicyResponseSuccess
682
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCoreNetworkPolicyResponseSuccess
683
+
684
+ interface _GetCustomerGatewayAssociationsResponseSuccess
685
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCustomerGatewayAssociationsResponse]
686
+ def customer_gateway_associations: () -> ::Array[Types::CustomerGatewayAssociation]
687
+ def next_token: () -> ::String
688
+ end
689
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_customer_gateway_associations-instance_method
690
+ def get_customer_gateway_associations: (
691
+ global_network_id: ::String,
692
+ ?customer_gateway_arns: Array[::String],
693
+ ?max_results: ::Integer,
694
+ ?next_token: ::String
695
+ ) -> _GetCustomerGatewayAssociationsResponseSuccess
696
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCustomerGatewayAssociationsResponseSuccess
697
+
698
+ interface _GetDevicesResponseSuccess
699
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDevicesResponse]
700
+ def devices: () -> ::Array[Types::Device]
701
+ def next_token: () -> ::String
702
+ end
703
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_devices-instance_method
704
+ def get_devices: (
705
+ global_network_id: ::String,
706
+ ?device_ids: Array[::String],
707
+ ?site_id: ::String,
708
+ ?max_results: ::Integer,
709
+ ?next_token: ::String
710
+ ) -> _GetDevicesResponseSuccess
711
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDevicesResponseSuccess
712
+
713
+ interface _GetLinkAssociationsResponseSuccess
714
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLinkAssociationsResponse]
715
+ def link_associations: () -> ::Array[Types::LinkAssociation]
716
+ def next_token: () -> ::String
717
+ end
718
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_link_associations-instance_method
719
+ def get_link_associations: (
720
+ global_network_id: ::String,
721
+ ?device_id: ::String,
722
+ ?link_id: ::String,
723
+ ?max_results: ::Integer,
724
+ ?next_token: ::String
725
+ ) -> _GetLinkAssociationsResponseSuccess
726
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLinkAssociationsResponseSuccess
727
+
728
+ interface _GetLinksResponseSuccess
729
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLinksResponse]
730
+ def links: () -> ::Array[Types::Link]
731
+ def next_token: () -> ::String
732
+ end
733
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_links-instance_method
734
+ def get_links: (
735
+ global_network_id: ::String,
736
+ ?link_ids: Array[::String],
737
+ ?site_id: ::String,
738
+ ?type: ::String,
739
+ ?provider: ::String,
740
+ ?max_results: ::Integer,
741
+ ?next_token: ::String
742
+ ) -> _GetLinksResponseSuccess
743
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLinksResponseSuccess
744
+
745
+ interface _GetNetworkResourceCountsResponseSuccess
746
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkResourceCountsResponse]
747
+ def network_resource_counts: () -> ::Array[Types::NetworkResourceCount]
748
+ def next_token: () -> ::String
749
+ end
750
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_network_resource_counts-instance_method
751
+ def get_network_resource_counts: (
752
+ global_network_id: ::String,
753
+ ?resource_type: ::String,
754
+ ?max_results: ::Integer,
755
+ ?next_token: ::String
756
+ ) -> _GetNetworkResourceCountsResponseSuccess
757
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkResourceCountsResponseSuccess
758
+
759
+ interface _GetNetworkResourceRelationshipsResponseSuccess
760
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkResourceRelationshipsResponse]
761
+ def relationships: () -> ::Array[Types::Relationship]
762
+ def next_token: () -> ::String
763
+ end
764
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_network_resource_relationships-instance_method
765
+ def get_network_resource_relationships: (
766
+ global_network_id: ::String,
767
+ ?core_network_id: ::String,
768
+ ?registered_gateway_arn: ::String,
769
+ ?aws_region: ::String,
770
+ ?account_id: ::String,
771
+ ?resource_type: ::String,
772
+ ?resource_arn: ::String,
773
+ ?max_results: ::Integer,
774
+ ?next_token: ::String
775
+ ) -> _GetNetworkResourceRelationshipsResponseSuccess
776
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkResourceRelationshipsResponseSuccess
777
+
778
+ interface _GetNetworkResourcesResponseSuccess
779
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkResourcesResponse]
780
+ def network_resources: () -> ::Array[Types::NetworkResource]
781
+ def next_token: () -> ::String
782
+ end
783
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_network_resources-instance_method
784
+ def get_network_resources: (
785
+ global_network_id: ::String,
786
+ ?core_network_id: ::String,
787
+ ?registered_gateway_arn: ::String,
788
+ ?aws_region: ::String,
789
+ ?account_id: ::String,
790
+ ?resource_type: ::String,
791
+ ?resource_arn: ::String,
792
+ ?max_results: ::Integer,
793
+ ?next_token: ::String
794
+ ) -> _GetNetworkResourcesResponseSuccess
795
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkResourcesResponseSuccess
796
+
797
+ interface _GetNetworkRoutesResponseSuccess
798
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkRoutesResponse]
799
+ def route_table_arn: () -> ::String
800
+ def core_network_segment_edge: () -> Types::CoreNetworkSegmentEdgeIdentifier
801
+ def route_table_type: () -> ("TRANSIT_GATEWAY_ROUTE_TABLE" | "CORE_NETWORK_SEGMENT")
802
+ def route_table_timestamp: () -> ::Time
803
+ def network_routes: () -> ::Array[Types::NetworkRoute]
804
+ end
805
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_network_routes-instance_method
806
+ def get_network_routes: (
807
+ global_network_id: ::String,
808
+ route_table_identifier: {
809
+ transit_gateway_route_table_arn: ::String?,
810
+ core_network_segment_edge: {
811
+ core_network_id: ::String?,
812
+ segment_name: ::String?,
813
+ edge_location: ::String?
814
+ }?
815
+ },
816
+ ?exact_cidr_matches: Array[::String],
817
+ ?longest_prefix_matches: Array[::String],
818
+ ?subnet_of_matches: Array[::String],
819
+ ?supernet_of_matches: Array[::String],
820
+ ?prefix_list_ids: Array[::String],
821
+ ?states: Array[("ACTIVE" | "BLACKHOLE")],
822
+ ?types: Array[("PROPAGATED" | "STATIC")],
823
+ ?destination_filters: Hash[::String, Array[::String]]
824
+ ) -> _GetNetworkRoutesResponseSuccess
825
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkRoutesResponseSuccess
826
+
827
+ interface _GetNetworkTelemetryResponseSuccess
828
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetNetworkTelemetryResponse]
829
+ def network_telemetry: () -> ::Array[Types::NetworkTelemetry]
830
+ def next_token: () -> ::String
831
+ end
832
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_network_telemetry-instance_method
833
+ def get_network_telemetry: (
834
+ global_network_id: ::String,
835
+ ?core_network_id: ::String,
836
+ ?registered_gateway_arn: ::String,
837
+ ?aws_region: ::String,
838
+ ?account_id: ::String,
839
+ ?resource_type: ::String,
840
+ ?resource_arn: ::String,
841
+ ?max_results: ::Integer,
842
+ ?next_token: ::String
843
+ ) -> _GetNetworkTelemetryResponseSuccess
844
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetNetworkTelemetryResponseSuccess
845
+
846
+ interface _GetResourcePolicyResponseSuccess
847
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
848
+ def policy_document: () -> ::String
849
+ end
850
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_resource_policy-instance_method
851
+ def get_resource_policy: (
852
+ resource_arn: ::String
853
+ ) -> _GetResourcePolicyResponseSuccess
854
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcePolicyResponseSuccess
855
+
856
+ interface _GetRouteAnalysisResponseSuccess
857
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRouteAnalysisResponse]
858
+ def route_analysis: () -> Types::RouteAnalysis
859
+ end
860
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_route_analysis-instance_method
861
+ def get_route_analysis: (
862
+ global_network_id: ::String,
863
+ route_analysis_id: ::String
864
+ ) -> _GetRouteAnalysisResponseSuccess
865
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRouteAnalysisResponseSuccess
866
+
867
+ interface _GetSiteToSiteVpnAttachmentResponseSuccess
868
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSiteToSiteVpnAttachmentResponse]
869
+ def site_to_site_vpn_attachment: () -> Types::SiteToSiteVpnAttachment
870
+ end
871
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_site_to_site_vpn_attachment-instance_method
872
+ def get_site_to_site_vpn_attachment: (
873
+ attachment_id: ::String
874
+ ) -> _GetSiteToSiteVpnAttachmentResponseSuccess
875
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSiteToSiteVpnAttachmentResponseSuccess
876
+
877
+ interface _GetSitesResponseSuccess
878
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSitesResponse]
879
+ def sites: () -> ::Array[Types::Site]
880
+ def next_token: () -> ::String
881
+ end
882
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_sites-instance_method
883
+ def get_sites: (
884
+ global_network_id: ::String,
885
+ ?site_ids: Array[::String],
886
+ ?max_results: ::Integer,
887
+ ?next_token: ::String
888
+ ) -> _GetSitesResponseSuccess
889
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSitesResponseSuccess
890
+
891
+ interface _GetTransitGatewayConnectPeerAssociationsResponseSuccess
892
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTransitGatewayConnectPeerAssociationsResponse]
893
+ def transit_gateway_connect_peer_associations: () -> ::Array[Types::TransitGatewayConnectPeerAssociation]
894
+ def next_token: () -> ::String
895
+ end
896
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_transit_gateway_connect_peer_associations-instance_method
897
+ def get_transit_gateway_connect_peer_associations: (
898
+ global_network_id: ::String,
899
+ ?transit_gateway_connect_peer_arns: Array[::String],
900
+ ?max_results: ::Integer,
901
+ ?next_token: ::String
902
+ ) -> _GetTransitGatewayConnectPeerAssociationsResponseSuccess
903
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTransitGatewayConnectPeerAssociationsResponseSuccess
904
+
905
+ interface _GetTransitGatewayPeeringResponseSuccess
906
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTransitGatewayPeeringResponse]
907
+ def transit_gateway_peering: () -> Types::TransitGatewayPeering
908
+ end
909
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_transit_gateway_peering-instance_method
910
+ def get_transit_gateway_peering: (
911
+ peering_id: ::String
912
+ ) -> _GetTransitGatewayPeeringResponseSuccess
913
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTransitGatewayPeeringResponseSuccess
914
+
915
+ interface _GetTransitGatewayRegistrationsResponseSuccess
916
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTransitGatewayRegistrationsResponse]
917
+ def transit_gateway_registrations: () -> ::Array[Types::TransitGatewayRegistration]
918
+ def next_token: () -> ::String
919
+ end
920
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_transit_gateway_registrations-instance_method
921
+ def get_transit_gateway_registrations: (
922
+ global_network_id: ::String,
923
+ ?transit_gateway_arns: Array[::String],
924
+ ?max_results: ::Integer,
925
+ ?next_token: ::String
926
+ ) -> _GetTransitGatewayRegistrationsResponseSuccess
927
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTransitGatewayRegistrationsResponseSuccess
928
+
929
+ interface _GetTransitGatewayRouteTableAttachmentResponseSuccess
930
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTransitGatewayRouteTableAttachmentResponse]
931
+ def transit_gateway_route_table_attachment: () -> Types::TransitGatewayRouteTableAttachment
932
+ end
933
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_transit_gateway_route_table_attachment-instance_method
934
+ def get_transit_gateway_route_table_attachment: (
935
+ attachment_id: ::String
936
+ ) -> _GetTransitGatewayRouteTableAttachmentResponseSuccess
937
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTransitGatewayRouteTableAttachmentResponseSuccess
938
+
939
+ interface _GetVpcAttachmentResponseSuccess
940
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVpcAttachmentResponse]
941
+ def vpc_attachment: () -> Types::VpcAttachment
942
+ end
943
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#get_vpc_attachment-instance_method
944
+ def get_vpc_attachment: (
945
+ attachment_id: ::String
946
+ ) -> _GetVpcAttachmentResponseSuccess
947
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVpcAttachmentResponseSuccess
948
+
949
+ interface _ListAttachmentsResponseSuccess
950
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAttachmentsResponse]
951
+ def attachments: () -> ::Array[Types::Attachment]
952
+ def next_token: () -> ::String
953
+ end
954
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_attachments-instance_method
955
+ def list_attachments: (
956
+ ?core_network_id: ::String,
957
+ ?attachment_type: ("CONNECT" | "SITE_TO_SITE_VPN" | "VPC" | "TRANSIT_GATEWAY_ROUTE_TABLE"),
958
+ ?edge_location: ::String,
959
+ ?state: ("REJECTED" | "PENDING_ATTACHMENT_ACCEPTANCE" | "CREATING" | "FAILED" | "AVAILABLE" | "UPDATING" | "PENDING_NETWORK_UPDATE" | "PENDING_TAG_ACCEPTANCE" | "DELETING"),
960
+ ?max_results: ::Integer,
961
+ ?next_token: ::String
962
+ ) -> _ListAttachmentsResponseSuccess
963
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAttachmentsResponseSuccess
964
+
965
+ interface _ListConnectPeersResponseSuccess
966
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectPeersResponse]
967
+ def connect_peers: () -> ::Array[Types::ConnectPeerSummary]
968
+ def next_token: () -> ::String
969
+ end
970
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_connect_peers-instance_method
971
+ def list_connect_peers: (
972
+ ?core_network_id: ::String,
973
+ ?connect_attachment_id: ::String,
974
+ ?max_results: ::Integer,
975
+ ?next_token: ::String
976
+ ) -> _ListConnectPeersResponseSuccess
977
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectPeersResponseSuccess
978
+
979
+ interface _ListCoreNetworkPolicyVersionsResponseSuccess
980
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCoreNetworkPolicyVersionsResponse]
981
+ def core_network_policy_versions: () -> ::Array[Types::CoreNetworkPolicyVersion]
982
+ def next_token: () -> ::String
983
+ end
984
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_core_network_policy_versions-instance_method
985
+ def list_core_network_policy_versions: (
986
+ core_network_id: ::String,
987
+ ?max_results: ::Integer,
988
+ ?next_token: ::String
989
+ ) -> _ListCoreNetworkPolicyVersionsResponseSuccess
990
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCoreNetworkPolicyVersionsResponseSuccess
991
+
992
+ interface _ListCoreNetworksResponseSuccess
993
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCoreNetworksResponse]
994
+ def core_networks: () -> ::Array[Types::CoreNetworkSummary]
995
+ def next_token: () -> ::String
996
+ end
997
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_core_networks-instance_method
998
+ def list_core_networks: (
999
+ ?max_results: ::Integer,
1000
+ ?next_token: ::String
1001
+ ) -> _ListCoreNetworksResponseSuccess
1002
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCoreNetworksResponseSuccess
1003
+
1004
+ interface _ListOrganizationServiceAccessStatusResponseSuccess
1005
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOrganizationServiceAccessStatusResponse]
1006
+ def organization_status: () -> Types::OrganizationStatus
1007
+ def next_token: () -> ::String
1008
+ end
1009
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_organization_service_access_status-instance_method
1010
+ def list_organization_service_access_status: (
1011
+ ?max_results: ::Integer,
1012
+ ?next_token: ::String
1013
+ ) -> _ListOrganizationServiceAccessStatusResponseSuccess
1014
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOrganizationServiceAccessStatusResponseSuccess
1015
+
1016
+ interface _ListPeeringsResponseSuccess
1017
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPeeringsResponse]
1018
+ def peerings: () -> ::Array[Types::Peering]
1019
+ def next_token: () -> ::String
1020
+ end
1021
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_peerings-instance_method
1022
+ def list_peerings: (
1023
+ ?core_network_id: ::String,
1024
+ ?peering_type: ("TRANSIT_GATEWAY"),
1025
+ ?edge_location: ::String,
1026
+ ?state: ("CREATING" | "FAILED" | "AVAILABLE" | "DELETING"),
1027
+ ?max_results: ::Integer,
1028
+ ?next_token: ::String
1029
+ ) -> _ListPeeringsResponseSuccess
1030
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPeeringsResponseSuccess
1031
+
1032
+ interface _ListTagsForResourceResponseSuccess
1033
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
1034
+ def tag_list: () -> ::Array[Types::Tag]
1035
+ end
1036
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_tags_for_resource-instance_method
1037
+ def list_tags_for_resource: (
1038
+ resource_arn: ::String
1039
+ ) -> _ListTagsForResourceResponseSuccess
1040
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
1041
+
1042
+ interface _PutCoreNetworkPolicyResponseSuccess
1043
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutCoreNetworkPolicyResponse]
1044
+ def core_network_policy: () -> Types::CoreNetworkPolicy
1045
+ end
1046
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#put_core_network_policy-instance_method
1047
+ def put_core_network_policy: (
1048
+ core_network_id: ::String,
1049
+ policy_document: ::String,
1050
+ ?description: ::String,
1051
+ ?latest_version_id: ::Integer,
1052
+ ?client_token: ::String
1053
+ ) -> _PutCoreNetworkPolicyResponseSuccess
1054
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutCoreNetworkPolicyResponseSuccess
1055
+
1056
+ interface _PutResourcePolicyResponseSuccess
1057
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
1058
+ end
1059
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#put_resource_policy-instance_method
1060
+ def put_resource_policy: (
1061
+ policy_document: ::String,
1062
+ resource_arn: ::String
1063
+ ) -> _PutResourcePolicyResponseSuccess
1064
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourcePolicyResponseSuccess
1065
+
1066
+ interface _RegisterTransitGatewayResponseSuccess
1067
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterTransitGatewayResponse]
1068
+ def transit_gateway_registration: () -> Types::TransitGatewayRegistration
1069
+ end
1070
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#register_transit_gateway-instance_method
1071
+ def register_transit_gateway: (
1072
+ global_network_id: ::String,
1073
+ transit_gateway_arn: ::String
1074
+ ) -> _RegisterTransitGatewayResponseSuccess
1075
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterTransitGatewayResponseSuccess
1076
+
1077
+ interface _RejectAttachmentResponseSuccess
1078
+ include ::Seahorse::Client::_ResponseSuccess[Types::RejectAttachmentResponse]
1079
+ def attachment: () -> Types::Attachment
1080
+ end
1081
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#reject_attachment-instance_method
1082
+ def reject_attachment: (
1083
+ attachment_id: ::String
1084
+ ) -> _RejectAttachmentResponseSuccess
1085
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectAttachmentResponseSuccess
1086
+
1087
+ interface _RestoreCoreNetworkPolicyVersionResponseSuccess
1088
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestoreCoreNetworkPolicyVersionResponse]
1089
+ def core_network_policy: () -> Types::CoreNetworkPolicy
1090
+ end
1091
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#restore_core_network_policy_version-instance_method
1092
+ def restore_core_network_policy_version: (
1093
+ core_network_id: ::String,
1094
+ policy_version_id: ::Integer
1095
+ ) -> _RestoreCoreNetworkPolicyVersionResponseSuccess
1096
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreCoreNetworkPolicyVersionResponseSuccess
1097
+
1098
+ interface _StartOrganizationServiceAccessUpdateResponseSuccess
1099
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartOrganizationServiceAccessUpdateResponse]
1100
+ def organization_status: () -> Types::OrganizationStatus
1101
+ end
1102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#start_organization_service_access_update-instance_method
1103
+ def start_organization_service_access_update: (
1104
+ action: ::String
1105
+ ) -> _StartOrganizationServiceAccessUpdateResponseSuccess
1106
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartOrganizationServiceAccessUpdateResponseSuccess
1107
+
1108
+ interface _StartRouteAnalysisResponseSuccess
1109
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRouteAnalysisResponse]
1110
+ def route_analysis: () -> Types::RouteAnalysis
1111
+ end
1112
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#start_route_analysis-instance_method
1113
+ def start_route_analysis: (
1114
+ global_network_id: ::String,
1115
+ source: {
1116
+ transit_gateway_attachment_arn: ::String?,
1117
+ ip_address: ::String?
1118
+ },
1119
+ destination: {
1120
+ transit_gateway_attachment_arn: ::String?,
1121
+ ip_address: ::String?
1122
+ },
1123
+ ?include_return_path: bool,
1124
+ ?use_middleboxes: bool
1125
+ ) -> _StartRouteAnalysisResponseSuccess
1126
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRouteAnalysisResponseSuccess
1127
+
1128
+ interface _TagResourceResponseSuccess
1129
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
1130
+ end
1131
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#tag_resource-instance_method
1132
+ def tag_resource: (
1133
+ resource_arn: ::String,
1134
+ tags: Array[
1135
+ {
1136
+ key: ::String?,
1137
+ value: ::String?
1138
+ },
1139
+ ]
1140
+ ) -> _TagResourceResponseSuccess
1141
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
1142
+
1143
+ interface _UntagResourceResponseSuccess
1144
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
1145
+ end
1146
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#untag_resource-instance_method
1147
+ def untag_resource: (
1148
+ resource_arn: ::String,
1149
+ tag_keys: Array[::String]
1150
+ ) -> _UntagResourceResponseSuccess
1151
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
1152
+
1153
+ interface _UpdateConnectionResponseSuccess
1154
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectionResponse]
1155
+ def connection: () -> Types::Connection
1156
+ end
1157
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#update_connection-instance_method
1158
+ def update_connection: (
1159
+ global_network_id: ::String,
1160
+ connection_id: ::String,
1161
+ ?link_id: ::String,
1162
+ ?connected_link_id: ::String,
1163
+ ?description: ::String
1164
+ ) -> _UpdateConnectionResponseSuccess
1165
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionResponseSuccess
1166
+
1167
+ interface _UpdateCoreNetworkResponseSuccess
1168
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCoreNetworkResponse]
1169
+ def core_network: () -> Types::CoreNetwork
1170
+ end
1171
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#update_core_network-instance_method
1172
+ def update_core_network: (
1173
+ core_network_id: ::String,
1174
+ ?description: ::String
1175
+ ) -> _UpdateCoreNetworkResponseSuccess
1176
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCoreNetworkResponseSuccess
1177
+
1178
+ interface _UpdateDeviceResponseSuccess
1179
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDeviceResponse]
1180
+ def device: () -> Types::Device
1181
+ end
1182
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#update_device-instance_method
1183
+ def update_device: (
1184
+ global_network_id: ::String,
1185
+ device_id: ::String,
1186
+ ?aws_location: {
1187
+ zone: ::String?,
1188
+ subnet_arn: ::String?
1189
+ },
1190
+ ?description: ::String,
1191
+ ?type: ::String,
1192
+ ?vendor: ::String,
1193
+ ?model: ::String,
1194
+ ?serial_number: ::String,
1195
+ ?location: {
1196
+ address: ::String?,
1197
+ latitude: ::String?,
1198
+ longitude: ::String?
1199
+ },
1200
+ ?site_id: ::String
1201
+ ) -> _UpdateDeviceResponseSuccess
1202
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDeviceResponseSuccess
1203
+
1204
+ interface _UpdateGlobalNetworkResponseSuccess
1205
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGlobalNetworkResponse]
1206
+ def global_network: () -> Types::GlobalNetwork
1207
+ end
1208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#update_global_network-instance_method
1209
+ def update_global_network: (
1210
+ global_network_id: ::String,
1211
+ ?description: ::String
1212
+ ) -> _UpdateGlobalNetworkResponseSuccess
1213
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlobalNetworkResponseSuccess
1214
+
1215
+ interface _UpdateLinkResponseSuccess
1216
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLinkResponse]
1217
+ def link: () -> Types::Link
1218
+ end
1219
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#update_link-instance_method
1220
+ def update_link: (
1221
+ global_network_id: ::String,
1222
+ link_id: ::String,
1223
+ ?description: ::String,
1224
+ ?type: ::String,
1225
+ ?bandwidth: {
1226
+ upload_speed: ::Integer?,
1227
+ download_speed: ::Integer?
1228
+ },
1229
+ ?provider: ::String
1230
+ ) -> _UpdateLinkResponseSuccess
1231
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLinkResponseSuccess
1232
+
1233
+ interface _UpdateNetworkResourceMetadataResponseSuccess
1234
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNetworkResourceMetadataResponse]
1235
+ def resource_arn: () -> ::String
1236
+ def metadata: () -> ::Hash[::String, ::String]
1237
+ end
1238
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#update_network_resource_metadata-instance_method
1239
+ def update_network_resource_metadata: (
1240
+ global_network_id: ::String,
1241
+ resource_arn: ::String,
1242
+ metadata: Hash[::String, ::String]
1243
+ ) -> _UpdateNetworkResourceMetadataResponseSuccess
1244
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNetworkResourceMetadataResponseSuccess
1245
+
1246
+ interface _UpdateSiteResponseSuccess
1247
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSiteResponse]
1248
+ def site: () -> Types::Site
1249
+ end
1250
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#update_site-instance_method
1251
+ def update_site: (
1252
+ global_network_id: ::String,
1253
+ site_id: ::String,
1254
+ ?description: ::String,
1255
+ ?location: {
1256
+ address: ::String?,
1257
+ latitude: ::String?,
1258
+ longitude: ::String?
1259
+ }
1260
+ ) -> _UpdateSiteResponseSuccess
1261
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSiteResponseSuccess
1262
+
1263
+ interface _UpdateVpcAttachmentResponseSuccess
1264
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVpcAttachmentResponse]
1265
+ def vpc_attachment: () -> Types::VpcAttachment
1266
+ end
1267
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#update_vpc_attachment-instance_method
1268
+ def update_vpc_attachment: (
1269
+ attachment_id: ::String,
1270
+ ?add_subnet_arns: Array[::String],
1271
+ ?remove_subnet_arns: Array[::String],
1272
+ ?options: {
1273
+ ipv_6_support: bool?,
1274
+ appliance_mode_support: bool?
1275
+ }
1276
+ ) -> _UpdateVpcAttachmentResponseSuccess
1277
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVpcAttachmentResponseSuccess
1278
+ end
1279
+ end
1280
+ end
1281
+