aws-sdk-networkmanager 1.72.0 → 1.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkmanager/client.rb +426 -19
- data/lib/aws-sdk-networkmanager/client_api.rb +269 -0
- data/lib/aws-sdk-networkmanager/types.rb +581 -2
- data/lib/aws-sdk-networkmanager.rb +1 -1
- data/sig/client.rbs +108 -0
- data/sig/types.rbs +160 -3
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -148,6 +148,7 @@ module Aws
|
|
|
148
148
|
core_network_id: ::String,
|
|
149
149
|
edge_location: ::String,
|
|
150
150
|
transport_attachment_id: ::String,
|
|
151
|
+
?routing_policy_label: ::String,
|
|
151
152
|
options: {
|
|
152
153
|
protocol: ("GRE" | "NO_ENCAP")?
|
|
153
154
|
},
|
|
@@ -225,6 +226,21 @@ module Aws
|
|
|
225
226
|
) -> _CreateCoreNetworkResponseSuccess
|
|
226
227
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCoreNetworkResponseSuccess
|
|
227
228
|
|
|
229
|
+
interface _CreateCoreNetworkPrefixListAssociationResponseSuccess
|
|
230
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCoreNetworkPrefixListAssociationResponse]
|
|
231
|
+
def core_network_id: () -> ::String
|
|
232
|
+
def prefix_list_arn: () -> ::String
|
|
233
|
+
def prefix_list_alias: () -> ::String
|
|
234
|
+
end
|
|
235
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#create_core_network_prefix_list_association-instance_method
|
|
236
|
+
def create_core_network_prefix_list_association: (
|
|
237
|
+
core_network_id: ::String,
|
|
238
|
+
prefix_list_arn: ::String,
|
|
239
|
+
prefix_list_alias: ::String,
|
|
240
|
+
?client_token: ::String
|
|
241
|
+
) -> _CreateCoreNetworkPrefixListAssociationResponseSuccess
|
|
242
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCoreNetworkPrefixListAssociationResponseSuccess
|
|
243
|
+
|
|
228
244
|
interface _CreateDeviceResponseSuccess
|
|
229
245
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDeviceResponse]
|
|
230
246
|
def device: () -> Types::Device
|
|
@@ -264,6 +280,7 @@ module Aws
|
|
|
264
280
|
def create_direct_connect_gateway_attachment: (
|
|
265
281
|
core_network_id: ::String,
|
|
266
282
|
direct_connect_gateway_arn: ::String,
|
|
283
|
+
?routing_policy_label: ::String,
|
|
267
284
|
edge_locations: Array[::String],
|
|
268
285
|
?tags: Array[
|
|
269
286
|
{
|
|
@@ -345,6 +362,7 @@ module Aws
|
|
|
345
362
|
def create_site_to_site_vpn_attachment: (
|
|
346
363
|
core_network_id: ::String,
|
|
347
364
|
vpn_connection_arn: ::String,
|
|
365
|
+
?routing_policy_label: ::String,
|
|
348
366
|
?tags: Array[
|
|
349
367
|
{
|
|
350
368
|
key: ::String?,
|
|
@@ -381,6 +399,7 @@ module Aws
|
|
|
381
399
|
def create_transit_gateway_route_table_attachment: (
|
|
382
400
|
peering_id: ::String,
|
|
383
401
|
transit_gateway_route_table_arn: ::String,
|
|
402
|
+
?routing_policy_label: ::String,
|
|
384
403
|
?tags: Array[
|
|
385
404
|
{
|
|
386
405
|
key: ::String?,
|
|
@@ -406,6 +425,7 @@ module Aws
|
|
|
406
425
|
dns_support: bool?,
|
|
407
426
|
security_group_referencing_support: bool?
|
|
408
427
|
},
|
|
428
|
+
?routing_policy_label: ::String,
|
|
409
429
|
?tags: Array[
|
|
410
430
|
{
|
|
411
431
|
key: ::String?,
|
|
@@ -468,6 +488,18 @@ module Aws
|
|
|
468
488
|
) -> _DeleteCoreNetworkPolicyVersionResponseSuccess
|
|
469
489
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCoreNetworkPolicyVersionResponseSuccess
|
|
470
490
|
|
|
491
|
+
interface _DeleteCoreNetworkPrefixListAssociationResponseSuccess
|
|
492
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCoreNetworkPrefixListAssociationResponse]
|
|
493
|
+
def core_network_id: () -> ::String
|
|
494
|
+
def prefix_list_arn: () -> ::String
|
|
495
|
+
end
|
|
496
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#delete_core_network_prefix_list_association-instance_method
|
|
497
|
+
def delete_core_network_prefix_list_association: (
|
|
498
|
+
core_network_id: ::String,
|
|
499
|
+
prefix_list_arn: ::String
|
|
500
|
+
) -> _DeleteCoreNetworkPrefixListAssociationResponseSuccess
|
|
501
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCoreNetworkPrefixListAssociationResponseSuccess
|
|
502
|
+
|
|
471
503
|
interface _DeleteDeviceResponseSuccess
|
|
472
504
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDeviceResponse]
|
|
473
505
|
def device: () -> Types::Device
|
|
@@ -988,6 +1020,20 @@ module Aws
|
|
|
988
1020
|
) -> _GetVpcAttachmentResponseSuccess
|
|
989
1021
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVpcAttachmentResponseSuccess
|
|
990
1022
|
|
|
1023
|
+
interface _ListAttachmentRoutingPolicyAssociationsResponseSuccess
|
|
1024
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAttachmentRoutingPolicyAssociationsResponse]
|
|
1025
|
+
def attachment_routing_policy_associations: () -> ::Array[Types::AttachmentRoutingPolicyAssociationSummary]
|
|
1026
|
+
def next_token: () -> ::String
|
|
1027
|
+
end
|
|
1028
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_attachment_routing_policy_associations-instance_method
|
|
1029
|
+
def list_attachment_routing_policy_associations: (
|
|
1030
|
+
core_network_id: ::String,
|
|
1031
|
+
?attachment_id: ::String,
|
|
1032
|
+
?max_results: ::Integer,
|
|
1033
|
+
?next_token: ::String
|
|
1034
|
+
) -> _ListAttachmentRoutingPolicyAssociationsResponseSuccess
|
|
1035
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAttachmentRoutingPolicyAssociationsResponseSuccess
|
|
1036
|
+
|
|
991
1037
|
interface _ListAttachmentsResponseSuccess
|
|
992
1038
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAttachmentsResponse]
|
|
993
1039
|
def attachments: () -> ::Array[Types::Attachment]
|
|
@@ -1031,6 +1077,40 @@ module Aws
|
|
|
1031
1077
|
) -> _ListCoreNetworkPolicyVersionsResponseSuccess
|
|
1032
1078
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCoreNetworkPolicyVersionsResponseSuccess
|
|
1033
1079
|
|
|
1080
|
+
interface _ListCoreNetworkPrefixListAssociationsResponseSuccess
|
|
1081
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCoreNetworkPrefixListAssociationsResponse]
|
|
1082
|
+
def prefix_list_associations: () -> ::Array[Types::PrefixListAssociation]
|
|
1083
|
+
def next_token: () -> ::String
|
|
1084
|
+
end
|
|
1085
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_core_network_prefix_list_associations-instance_method
|
|
1086
|
+
def list_core_network_prefix_list_associations: (
|
|
1087
|
+
core_network_id: ::String,
|
|
1088
|
+
?prefix_list_arn: ::String,
|
|
1089
|
+
?max_results: ::Integer,
|
|
1090
|
+
?next_token: ::String
|
|
1091
|
+
) -> _ListCoreNetworkPrefixListAssociationsResponseSuccess
|
|
1092
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCoreNetworkPrefixListAssociationsResponseSuccess
|
|
1093
|
+
|
|
1094
|
+
interface _ListCoreNetworkRoutingInformationResponseSuccess
|
|
1095
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCoreNetworkRoutingInformationResponse]
|
|
1096
|
+
def core_network_routing_information: () -> ::Array[Types::CoreNetworkRoutingInformation]
|
|
1097
|
+
def next_token: () -> ::String
|
|
1098
|
+
end
|
|
1099
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#list_core_network_routing_information-instance_method
|
|
1100
|
+
def list_core_network_routing_information: (
|
|
1101
|
+
core_network_id: ::String,
|
|
1102
|
+
segment_name: ::String,
|
|
1103
|
+
edge_location: ::String,
|
|
1104
|
+
?next_hop_filters: Hash[::String, Array[::String]],
|
|
1105
|
+
?local_preference_matches: Array[::String],
|
|
1106
|
+
?exact_as_path_matches: Array[::String],
|
|
1107
|
+
?med_matches: Array[::String],
|
|
1108
|
+
?community_matches: Array[::String],
|
|
1109
|
+
?max_results: ::Integer,
|
|
1110
|
+
?next_token: ::String
|
|
1111
|
+
) -> _ListCoreNetworkRoutingInformationResponseSuccess
|
|
1112
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCoreNetworkRoutingInformationResponseSuccess
|
|
1113
|
+
|
|
1034
1114
|
interface _ListCoreNetworksResponseSuccess
|
|
1035
1115
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListCoreNetworksResponse]
|
|
1036
1116
|
def core_networks: () -> ::Array[Types::CoreNetworkSummary]
|
|
@@ -1081,6 +1161,21 @@ module Aws
|
|
|
1081
1161
|
) -> _ListTagsForResourceResponseSuccess
|
|
1082
1162
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
|
1083
1163
|
|
|
1164
|
+
interface _PutAttachmentRoutingPolicyLabelResponseSuccess
|
|
1165
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutAttachmentRoutingPolicyLabelResponse]
|
|
1166
|
+
def core_network_id: () -> ::String
|
|
1167
|
+
def attachment_id: () -> ::String
|
|
1168
|
+
def routing_policy_label: () -> ::String
|
|
1169
|
+
end
|
|
1170
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#put_attachment_routing_policy_label-instance_method
|
|
1171
|
+
def put_attachment_routing_policy_label: (
|
|
1172
|
+
core_network_id: ::String,
|
|
1173
|
+
attachment_id: ::String,
|
|
1174
|
+
routing_policy_label: ::String,
|
|
1175
|
+
?client_token: ::String
|
|
1176
|
+
) -> _PutAttachmentRoutingPolicyLabelResponseSuccess
|
|
1177
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAttachmentRoutingPolicyLabelResponseSuccess
|
|
1178
|
+
|
|
1084
1179
|
interface _PutCoreNetworkPolicyResponseSuccess
|
|
1085
1180
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutCoreNetworkPolicyResponse]
|
|
1086
1181
|
def core_network_policy: () -> Types::CoreNetworkPolicy
|
|
@@ -1126,6 +1221,19 @@ module Aws
|
|
|
1126
1221
|
) -> _RejectAttachmentResponseSuccess
|
|
1127
1222
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectAttachmentResponseSuccess
|
|
1128
1223
|
|
|
1224
|
+
interface _RemoveAttachmentRoutingPolicyLabelResponseSuccess
|
|
1225
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RemoveAttachmentRoutingPolicyLabelResponse]
|
|
1226
|
+
def core_network_id: () -> ::String
|
|
1227
|
+
def attachment_id: () -> ::String
|
|
1228
|
+
def routing_policy_label: () -> ::String
|
|
1229
|
+
end
|
|
1230
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkManager/Client.html#remove_attachment_routing_policy_label-instance_method
|
|
1231
|
+
def remove_attachment_routing_policy_label: (
|
|
1232
|
+
core_network_id: ::String,
|
|
1233
|
+
attachment_id: ::String
|
|
1234
|
+
) -> _RemoveAttachmentRoutingPolicyLabelResponseSuccess
|
|
1235
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveAttachmentRoutingPolicyLabelResponseSuccess
|
|
1236
|
+
|
|
1129
1237
|
interface _RestoreCoreNetworkPolicyVersionResponseSuccess
|
|
1130
1238
|
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreCoreNetworkPolicyVersionResponse]
|
|
1131
1239
|
def core_network_policy: () -> Types::CoreNetworkPolicy
|
data/sig/types.rbs
CHANGED
|
@@ -109,13 +109,21 @@ module Aws::NetworkManager
|
|
|
109
109
|
end
|
|
110
110
|
|
|
111
111
|
class AttachmentError
|
|
112
|
-
attr_accessor code: ("VPC_NOT_FOUND" | "SUBNET_NOT_FOUND" | "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" | "SUBNET_NO_FREE_ADDRESSES" | "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" | "SUBNET_NO_IPV6_CIDRS" | "VPN_CONNECTION_NOT_FOUND" | "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" | "DIRECT_CONNECT_GATEWAY_NOT_FOUND" | "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" | "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF")
|
|
112
|
+
attr_accessor code: ("VPC_NOT_FOUND" | "SUBNET_NOT_FOUND" | "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" | "SUBNET_NO_FREE_ADDRESSES" | "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" | "SUBNET_NO_IPV6_CIDRS" | "VPN_CONNECTION_NOT_FOUND" | "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" | "DIRECT_CONNECT_GATEWAY_NOT_FOUND" | "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" | "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" | "VPN_EXISTING_ASSOCIATIONS" | "VPC_UNSUPPORTED_FEATURES")
|
|
113
113
|
attr_accessor message: ::String
|
|
114
114
|
attr_accessor resource_arn: ::String
|
|
115
115
|
attr_accessor request_id: ::String
|
|
116
116
|
SENSITIVE: []
|
|
117
117
|
end
|
|
118
118
|
|
|
119
|
+
class AttachmentRoutingPolicyAssociationSummary
|
|
120
|
+
attr_accessor attachment_id: ::String
|
|
121
|
+
attr_accessor pending_routing_policies: ::Array[::String]
|
|
122
|
+
attr_accessor associated_routing_policies: ::Array[::String]
|
|
123
|
+
attr_accessor routing_policy_label: ::String
|
|
124
|
+
SENSITIVE: []
|
|
125
|
+
end
|
|
126
|
+
|
|
119
127
|
class Bandwidth
|
|
120
128
|
attr_accessor upload_speed: ::Integer
|
|
121
129
|
attr_accessor download_speed: ::Integer
|
|
@@ -243,7 +251,7 @@ module Aws::NetworkManager
|
|
|
243
251
|
end
|
|
244
252
|
|
|
245
253
|
class CoreNetworkChange
|
|
246
|
-
attr_accessor type: ("CORE_NETWORK_SEGMENT" | "NETWORK_FUNCTION_GROUP" | "CORE_NETWORK_EDGE" | "ATTACHMENT_MAPPING" | "ATTACHMENT_ROUTE_PROPAGATION" | "ATTACHMENT_ROUTE_STATIC" | "CORE_NETWORK_CONFIGURATION" | "SEGMENTS_CONFIGURATION" | "SEGMENT_ACTIONS_CONFIGURATION" | "ATTACHMENT_POLICIES_CONFIGURATION")
|
|
254
|
+
attr_accessor type: ("CORE_NETWORK_SEGMENT" | "NETWORK_FUNCTION_GROUP" | "CORE_NETWORK_EDGE" | "ATTACHMENT_MAPPING" | "ATTACHMENT_ROUTE_PROPAGATION" | "ATTACHMENT_ROUTE_STATIC" | "ROUTING_POLICY" | "ROUTING_POLICY_SEGMENT_ASSOCIATION" | "ROUTING_POLICY_EDGE_ASSOCIATION" | "ROUTING_POLICY_ATTACHMENT_ASSOCIATION" | "CORE_NETWORK_CONFIGURATION" | "SEGMENTS_CONFIGURATION" | "SEGMENT_ACTIONS_CONFIGURATION" | "ATTACHMENT_POLICIES_CONFIGURATION")
|
|
247
255
|
attr_accessor action: ("ADD" | "MODIFY" | "REMOVE")
|
|
248
256
|
attr_accessor identifier: ::String
|
|
249
257
|
attr_accessor previous_values: Types::CoreNetworkChangeValues
|
|
@@ -253,7 +261,7 @@ module Aws::NetworkManager
|
|
|
253
261
|
end
|
|
254
262
|
|
|
255
263
|
class CoreNetworkChangeEvent
|
|
256
|
-
attr_accessor type: ("CORE_NETWORK_SEGMENT" | "NETWORK_FUNCTION_GROUP" | "CORE_NETWORK_EDGE" | "ATTACHMENT_MAPPING" | "ATTACHMENT_ROUTE_PROPAGATION" | "ATTACHMENT_ROUTE_STATIC" | "CORE_NETWORK_CONFIGURATION" | "SEGMENTS_CONFIGURATION" | "SEGMENT_ACTIONS_CONFIGURATION" | "ATTACHMENT_POLICIES_CONFIGURATION")
|
|
264
|
+
attr_accessor type: ("CORE_NETWORK_SEGMENT" | "NETWORK_FUNCTION_GROUP" | "CORE_NETWORK_EDGE" | "ATTACHMENT_MAPPING" | "ATTACHMENT_ROUTE_PROPAGATION" | "ATTACHMENT_ROUTE_STATIC" | "ROUTING_POLICY" | "ROUTING_POLICY_SEGMENT_ASSOCIATION" | "ROUTING_POLICY_EDGE_ASSOCIATION" | "ROUTING_POLICY_ATTACHMENT_ASSOCIATION" | "CORE_NETWORK_CONFIGURATION" | "SEGMENTS_CONFIGURATION" | "SEGMENT_ACTIONS_CONFIGURATION" | "ATTACHMENT_POLICIES_CONFIGURATION")
|
|
257
265
|
attr_accessor action: ("ADD" | "MODIFY" | "REMOVE")
|
|
258
266
|
attr_accessor identifier_path: ::String
|
|
259
267
|
attr_accessor event_time: ::Time
|
|
@@ -264,10 +272,13 @@ module Aws::NetworkManager
|
|
|
264
272
|
|
|
265
273
|
class CoreNetworkChangeEventValues
|
|
266
274
|
attr_accessor edge_location: ::String
|
|
275
|
+
attr_accessor peer_edge_location: ::String
|
|
276
|
+
attr_accessor routing_policy_direction: ("inbound" | "outbound")
|
|
267
277
|
attr_accessor segment_name: ::String
|
|
268
278
|
attr_accessor network_function_group_name: ::String
|
|
269
279
|
attr_accessor attachment_id: ::String
|
|
270
280
|
attr_accessor cidr: ::String
|
|
281
|
+
attr_accessor routing_policy_association_details: ::Array[Types::RoutingPolicyAssociationDetail]
|
|
271
282
|
SENSITIVE: []
|
|
272
283
|
end
|
|
273
284
|
|
|
@@ -284,6 +295,11 @@ module Aws::NetworkManager
|
|
|
284
295
|
attr_accessor vpn_ecmp_support: bool
|
|
285
296
|
attr_accessor dns_support: bool
|
|
286
297
|
attr_accessor security_group_referencing_support: bool
|
|
298
|
+
attr_accessor routing_policy_direction: ("inbound" | "outbound")
|
|
299
|
+
attr_accessor routing_policy: ::String
|
|
300
|
+
attr_accessor peer_edge_locations: ::Array[::String]
|
|
301
|
+
attr_accessor attachment_id: ::String
|
|
302
|
+
attr_accessor routing_policy_association_details: ::Array[Types::RoutingPolicyAssociationDetail]
|
|
287
303
|
SENSITIVE: []
|
|
288
304
|
end
|
|
289
305
|
|
|
@@ -343,6 +359,16 @@ module Aws::NetworkManager
|
|
|
343
359
|
SENSITIVE: []
|
|
344
360
|
end
|
|
345
361
|
|
|
362
|
+
class CoreNetworkRoutingInformation
|
|
363
|
+
attr_accessor prefix: ::String
|
|
364
|
+
attr_accessor next_hop: Types::RoutingInformationNextHop
|
|
365
|
+
attr_accessor local_preference: ::String
|
|
366
|
+
attr_accessor med: ::String
|
|
367
|
+
attr_accessor as_path: ::Array[::String]
|
|
368
|
+
attr_accessor communities: ::Array[::String]
|
|
369
|
+
SENSITIVE: []
|
|
370
|
+
end
|
|
371
|
+
|
|
346
372
|
class CoreNetworkSegment
|
|
347
373
|
attr_accessor name: ::String
|
|
348
374
|
attr_accessor edge_locations: ::Array[::String]
|
|
@@ -372,6 +398,7 @@ module Aws::NetworkManager
|
|
|
372
398
|
attr_accessor core_network_id: ::String
|
|
373
399
|
attr_accessor edge_location: ::String
|
|
374
400
|
attr_accessor transport_attachment_id: ::String
|
|
401
|
+
attr_accessor routing_policy_label: ::String
|
|
375
402
|
attr_accessor options: Types::ConnectAttachmentOptions
|
|
376
403
|
attr_accessor tags: ::Array[Types::Tag]
|
|
377
404
|
attr_accessor client_token: ::String
|
|
@@ -416,6 +443,21 @@ module Aws::NetworkManager
|
|
|
416
443
|
SENSITIVE: []
|
|
417
444
|
end
|
|
418
445
|
|
|
446
|
+
class CreateCoreNetworkPrefixListAssociationRequest
|
|
447
|
+
attr_accessor core_network_id: ::String
|
|
448
|
+
attr_accessor prefix_list_arn: ::String
|
|
449
|
+
attr_accessor prefix_list_alias: ::String
|
|
450
|
+
attr_accessor client_token: ::String
|
|
451
|
+
SENSITIVE: []
|
|
452
|
+
end
|
|
453
|
+
|
|
454
|
+
class CreateCoreNetworkPrefixListAssociationResponse
|
|
455
|
+
attr_accessor core_network_id: ::String
|
|
456
|
+
attr_accessor prefix_list_arn: ::String
|
|
457
|
+
attr_accessor prefix_list_alias: ::String
|
|
458
|
+
SENSITIVE: []
|
|
459
|
+
end
|
|
460
|
+
|
|
419
461
|
class CreateCoreNetworkRequest
|
|
420
462
|
attr_accessor global_network_id: ::String
|
|
421
463
|
attr_accessor description: ::String
|
|
@@ -452,6 +494,7 @@ module Aws::NetworkManager
|
|
|
452
494
|
class CreateDirectConnectGatewayAttachmentRequest
|
|
453
495
|
attr_accessor core_network_id: ::String
|
|
454
496
|
attr_accessor direct_connect_gateway_arn: ::String
|
|
497
|
+
attr_accessor routing_policy_label: ::String
|
|
455
498
|
attr_accessor edge_locations: ::Array[::String]
|
|
456
499
|
attr_accessor tags: ::Array[Types::Tag]
|
|
457
500
|
attr_accessor client_token: ::String
|
|
@@ -506,6 +549,7 @@ module Aws::NetworkManager
|
|
|
506
549
|
class CreateSiteToSiteVpnAttachmentRequest
|
|
507
550
|
attr_accessor core_network_id: ::String
|
|
508
551
|
attr_accessor vpn_connection_arn: ::String
|
|
552
|
+
attr_accessor routing_policy_label: ::String
|
|
509
553
|
attr_accessor tags: ::Array[Types::Tag]
|
|
510
554
|
attr_accessor client_token: ::String
|
|
511
555
|
SENSITIVE: []
|
|
@@ -532,6 +576,7 @@ module Aws::NetworkManager
|
|
|
532
576
|
class CreateTransitGatewayRouteTableAttachmentRequest
|
|
533
577
|
attr_accessor peering_id: ::String
|
|
534
578
|
attr_accessor transit_gateway_route_table_arn: ::String
|
|
579
|
+
attr_accessor routing_policy_label: ::String
|
|
535
580
|
attr_accessor tags: ::Array[Types::Tag]
|
|
536
581
|
attr_accessor client_token: ::String
|
|
537
582
|
SENSITIVE: []
|
|
@@ -547,6 +592,7 @@ module Aws::NetworkManager
|
|
|
547
592
|
attr_accessor vpc_arn: ::String
|
|
548
593
|
attr_accessor subnet_arns: ::Array[::String]
|
|
549
594
|
attr_accessor options: Types::VpcOptions
|
|
595
|
+
attr_accessor routing_policy_label: ::String
|
|
550
596
|
attr_accessor tags: ::Array[Types::Tag]
|
|
551
597
|
attr_accessor client_token: ::String
|
|
552
598
|
SENSITIVE: []
|
|
@@ -608,6 +654,18 @@ module Aws::NetworkManager
|
|
|
608
654
|
SENSITIVE: []
|
|
609
655
|
end
|
|
610
656
|
|
|
657
|
+
class DeleteCoreNetworkPrefixListAssociationRequest
|
|
658
|
+
attr_accessor core_network_id: ::String
|
|
659
|
+
attr_accessor prefix_list_arn: ::String
|
|
660
|
+
SENSITIVE: []
|
|
661
|
+
end
|
|
662
|
+
|
|
663
|
+
class DeleteCoreNetworkPrefixListAssociationResponse
|
|
664
|
+
attr_accessor core_network_id: ::String
|
|
665
|
+
attr_accessor prefix_list_arn: ::String
|
|
666
|
+
SENSITIVE: []
|
|
667
|
+
end
|
|
668
|
+
|
|
611
669
|
class DeleteCoreNetworkRequest
|
|
612
670
|
attr_accessor core_network_id: ::String
|
|
613
671
|
SENSITIVE: []
|
|
@@ -1193,6 +1251,20 @@ module Aws::NetworkManager
|
|
|
1193
1251
|
SENSITIVE: []
|
|
1194
1252
|
end
|
|
1195
1253
|
|
|
1254
|
+
class ListAttachmentRoutingPolicyAssociationsRequest
|
|
1255
|
+
attr_accessor core_network_id: ::String
|
|
1256
|
+
attr_accessor attachment_id: ::String
|
|
1257
|
+
attr_accessor max_results: ::Integer
|
|
1258
|
+
attr_accessor next_token: ::String
|
|
1259
|
+
SENSITIVE: []
|
|
1260
|
+
end
|
|
1261
|
+
|
|
1262
|
+
class ListAttachmentRoutingPolicyAssociationsResponse
|
|
1263
|
+
attr_accessor attachment_routing_policy_associations: ::Array[Types::AttachmentRoutingPolicyAssociationSummary]
|
|
1264
|
+
attr_accessor next_token: ::String
|
|
1265
|
+
SENSITIVE: []
|
|
1266
|
+
end
|
|
1267
|
+
|
|
1196
1268
|
class ListAttachmentsRequest
|
|
1197
1269
|
attr_accessor core_network_id: ::String
|
|
1198
1270
|
attr_accessor attachment_type: ("CONNECT" | "SITE_TO_SITE_VPN" | "VPC" | "DIRECT_CONNECT_GATEWAY" | "TRANSIT_GATEWAY_ROUTE_TABLE")
|
|
@@ -1236,6 +1308,40 @@ module Aws::NetworkManager
|
|
|
1236
1308
|
SENSITIVE: []
|
|
1237
1309
|
end
|
|
1238
1310
|
|
|
1311
|
+
class ListCoreNetworkPrefixListAssociationsRequest
|
|
1312
|
+
attr_accessor core_network_id: ::String
|
|
1313
|
+
attr_accessor prefix_list_arn: ::String
|
|
1314
|
+
attr_accessor max_results: ::Integer
|
|
1315
|
+
attr_accessor next_token: ::String
|
|
1316
|
+
SENSITIVE: []
|
|
1317
|
+
end
|
|
1318
|
+
|
|
1319
|
+
class ListCoreNetworkPrefixListAssociationsResponse
|
|
1320
|
+
attr_accessor prefix_list_associations: ::Array[Types::PrefixListAssociation]
|
|
1321
|
+
attr_accessor next_token: ::String
|
|
1322
|
+
SENSITIVE: []
|
|
1323
|
+
end
|
|
1324
|
+
|
|
1325
|
+
class ListCoreNetworkRoutingInformationRequest
|
|
1326
|
+
attr_accessor core_network_id: ::String
|
|
1327
|
+
attr_accessor segment_name: ::String
|
|
1328
|
+
attr_accessor edge_location: ::String
|
|
1329
|
+
attr_accessor next_hop_filters: ::Hash[::String, ::Array[::String]]
|
|
1330
|
+
attr_accessor local_preference_matches: ::Array[::String]
|
|
1331
|
+
attr_accessor exact_as_path_matches: ::Array[::String]
|
|
1332
|
+
attr_accessor med_matches: ::Array[::String]
|
|
1333
|
+
attr_accessor community_matches: ::Array[::String]
|
|
1334
|
+
attr_accessor max_results: ::Integer
|
|
1335
|
+
attr_accessor next_token: ::String
|
|
1336
|
+
SENSITIVE: []
|
|
1337
|
+
end
|
|
1338
|
+
|
|
1339
|
+
class ListCoreNetworkRoutingInformationResponse
|
|
1340
|
+
attr_accessor core_network_routing_information: ::Array[Types::CoreNetworkRoutingInformation]
|
|
1341
|
+
attr_accessor next_token: ::String
|
|
1342
|
+
SENSITIVE: []
|
|
1343
|
+
end
|
|
1344
|
+
|
|
1239
1345
|
class ListCoreNetworksRequest
|
|
1240
1346
|
attr_accessor max_results: ::Integer
|
|
1241
1347
|
attr_accessor next_token: ::String
|
|
@@ -1406,6 +1512,13 @@ module Aws::NetworkManager
|
|
|
1406
1512
|
SENSITIVE: []
|
|
1407
1513
|
end
|
|
1408
1514
|
|
|
1515
|
+
class PrefixListAssociation
|
|
1516
|
+
attr_accessor core_network_id: ::String
|
|
1517
|
+
attr_accessor prefix_list_arn: ::String
|
|
1518
|
+
attr_accessor prefix_list_alias: ::String
|
|
1519
|
+
SENSITIVE: []
|
|
1520
|
+
end
|
|
1521
|
+
|
|
1409
1522
|
class ProposedNetworkFunctionGroupChange
|
|
1410
1523
|
attr_accessor tags: ::Array[Types::Tag]
|
|
1411
1524
|
attr_accessor attachment_policy_rule_number: ::Integer
|
|
@@ -1420,6 +1533,21 @@ module Aws::NetworkManager
|
|
|
1420
1533
|
SENSITIVE: []
|
|
1421
1534
|
end
|
|
1422
1535
|
|
|
1536
|
+
class PutAttachmentRoutingPolicyLabelRequest
|
|
1537
|
+
attr_accessor core_network_id: ::String
|
|
1538
|
+
attr_accessor attachment_id: ::String
|
|
1539
|
+
attr_accessor routing_policy_label: ::String
|
|
1540
|
+
attr_accessor client_token: ::String
|
|
1541
|
+
SENSITIVE: []
|
|
1542
|
+
end
|
|
1543
|
+
|
|
1544
|
+
class PutAttachmentRoutingPolicyLabelResponse
|
|
1545
|
+
attr_accessor core_network_id: ::String
|
|
1546
|
+
attr_accessor attachment_id: ::String
|
|
1547
|
+
attr_accessor routing_policy_label: ::String
|
|
1548
|
+
SENSITIVE: []
|
|
1549
|
+
end
|
|
1550
|
+
|
|
1423
1551
|
class PutCoreNetworkPolicyRequest
|
|
1424
1552
|
attr_accessor core_network_id: ::String
|
|
1425
1553
|
attr_accessor policy_document: ::String
|
|
@@ -1470,6 +1598,19 @@ module Aws::NetworkManager
|
|
|
1470
1598
|
SENSITIVE: []
|
|
1471
1599
|
end
|
|
1472
1600
|
|
|
1601
|
+
class RemoveAttachmentRoutingPolicyLabelRequest
|
|
1602
|
+
attr_accessor core_network_id: ::String
|
|
1603
|
+
attr_accessor attachment_id: ::String
|
|
1604
|
+
SENSITIVE: []
|
|
1605
|
+
end
|
|
1606
|
+
|
|
1607
|
+
class RemoveAttachmentRoutingPolicyLabelResponse
|
|
1608
|
+
attr_accessor core_network_id: ::String
|
|
1609
|
+
attr_accessor attachment_id: ::String
|
|
1610
|
+
attr_accessor routing_policy_label: ::String
|
|
1611
|
+
SENSITIVE: []
|
|
1612
|
+
end
|
|
1613
|
+
|
|
1473
1614
|
class ResourceNotFoundException
|
|
1474
1615
|
attr_accessor message: ::String
|
|
1475
1616
|
attr_accessor resource_id: ::String
|
|
@@ -1537,6 +1678,22 @@ module Aws::NetworkManager
|
|
|
1537
1678
|
SENSITIVE: []
|
|
1538
1679
|
end
|
|
1539
1680
|
|
|
1681
|
+
class RoutingInformationNextHop
|
|
1682
|
+
attr_accessor ip_address: ::String
|
|
1683
|
+
attr_accessor core_network_attachment_id: ::String
|
|
1684
|
+
attr_accessor resource_id: ::String
|
|
1685
|
+
attr_accessor resource_type: ::String
|
|
1686
|
+
attr_accessor segment_name: ::String
|
|
1687
|
+
attr_accessor edge_location: ::String
|
|
1688
|
+
SENSITIVE: []
|
|
1689
|
+
end
|
|
1690
|
+
|
|
1691
|
+
class RoutingPolicyAssociationDetail
|
|
1692
|
+
attr_accessor routing_policy_names: ::Array[::String]
|
|
1693
|
+
attr_accessor shared_segments: ::Array[::String]
|
|
1694
|
+
SENSITIVE: []
|
|
1695
|
+
end
|
|
1696
|
+
|
|
1540
1697
|
class ServiceInsertionAction
|
|
1541
1698
|
attr_accessor action: ("send-via" | "send-to")
|
|
1542
1699
|
attr_accessor mode: ("dual-hop" | "single-hop")
|