aws-sdk-directconnect 1.15.0 → 1.16.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/lib/aws-sdk-directconnect.rb +1 -1
- data/lib/aws-sdk-directconnect/client.rb +417 -50
- data/lib/aws-sdk-directconnect/client_api.rb +151 -11
- data/lib/aws-sdk-directconnect/types.rb +454 -35
- metadata +2 -2
@@ -12,6 +12,8 @@ module Aws::DirectConnect
|
|
12
12
|
include Seahorse::Model
|
13
13
|
|
14
14
|
ASN = Shapes::IntegerShape.new(name: 'ASN')
|
15
|
+
AcceptDirectConnectGatewayAssociationProposalRequest = Shapes::StructureShape.new(name: 'AcceptDirectConnectGatewayAssociationProposalRequest')
|
16
|
+
AcceptDirectConnectGatewayAssociationProposalResult = Shapes::StructureShape.new(name: 'AcceptDirectConnectGatewayAssociationProposalResult')
|
15
17
|
AddressFamily = Shapes::StringShape.new(name: 'AddressFamily')
|
16
18
|
AllocateConnectionOnInterconnectRequest = Shapes::StructureShape.new(name: 'AllocateConnectionOnInterconnectRequest')
|
17
19
|
AllocateHostedConnectionRequest = Shapes::StructureShape.new(name: 'AllocateHostedConnectionRequest')
|
@@ -21,6 +23,8 @@ module Aws::DirectConnect
|
|
21
23
|
AssociateConnectionWithLagRequest = Shapes::StructureShape.new(name: 'AssociateConnectionWithLagRequest')
|
22
24
|
AssociateHostedConnectionRequest = Shapes::StructureShape.new(name: 'AssociateHostedConnectionRequest')
|
23
25
|
AssociateVirtualInterfaceRequest = Shapes::StructureShape.new(name: 'AssociateVirtualInterfaceRequest')
|
26
|
+
AssociatedGateway = Shapes::StructureShape.new(name: 'AssociatedGateway')
|
27
|
+
AssociatedGatewayId = Shapes::StringShape.new(name: 'AssociatedGatewayId')
|
24
28
|
AvailablePortSpeeds = Shapes::ListShape.new(name: 'AvailablePortSpeeds')
|
25
29
|
AwsDevice = Shapes::StringShape.new(name: 'AwsDevice')
|
26
30
|
AwsDeviceV2 = Shapes::StringShape.new(name: 'AwsDeviceV2')
|
@@ -49,6 +53,8 @@ module Aws::DirectConnect
|
|
49
53
|
CreateBGPPeerRequest = Shapes::StructureShape.new(name: 'CreateBGPPeerRequest')
|
50
54
|
CreateBGPPeerResponse = Shapes::StructureShape.new(name: 'CreateBGPPeerResponse')
|
51
55
|
CreateConnectionRequest = Shapes::StructureShape.new(name: 'CreateConnectionRequest')
|
56
|
+
CreateDirectConnectGatewayAssociationProposalRequest = Shapes::StructureShape.new(name: 'CreateDirectConnectGatewayAssociationProposalRequest')
|
57
|
+
CreateDirectConnectGatewayAssociationProposalResult = Shapes::StructureShape.new(name: 'CreateDirectConnectGatewayAssociationProposalResult')
|
52
58
|
CreateDirectConnectGatewayAssociationRequest = Shapes::StructureShape.new(name: 'CreateDirectConnectGatewayAssociationRequest')
|
53
59
|
CreateDirectConnectGatewayAssociationResult = Shapes::StructureShape.new(name: 'CreateDirectConnectGatewayAssociationResult')
|
54
60
|
CreateDirectConnectGatewayRequest = Shapes::StructureShape.new(name: 'CreateDirectConnectGatewayRequest')
|
@@ -61,6 +67,8 @@ module Aws::DirectConnect
|
|
61
67
|
DeleteBGPPeerRequest = Shapes::StructureShape.new(name: 'DeleteBGPPeerRequest')
|
62
68
|
DeleteBGPPeerResponse = Shapes::StructureShape.new(name: 'DeleteBGPPeerResponse')
|
63
69
|
DeleteConnectionRequest = Shapes::StructureShape.new(name: 'DeleteConnectionRequest')
|
70
|
+
DeleteDirectConnectGatewayAssociationProposalRequest = Shapes::StructureShape.new(name: 'DeleteDirectConnectGatewayAssociationProposalRequest')
|
71
|
+
DeleteDirectConnectGatewayAssociationProposalResult = Shapes::StructureShape.new(name: 'DeleteDirectConnectGatewayAssociationProposalResult')
|
64
72
|
DeleteDirectConnectGatewayAssociationRequest = Shapes::StructureShape.new(name: 'DeleteDirectConnectGatewayAssociationRequest')
|
65
73
|
DeleteDirectConnectGatewayAssociationResult = Shapes::StructureShape.new(name: 'DeleteDirectConnectGatewayAssociationResult')
|
66
74
|
DeleteDirectConnectGatewayRequest = Shapes::StructureShape.new(name: 'DeleteDirectConnectGatewayRequest')
|
@@ -74,6 +82,8 @@ module Aws::DirectConnect
|
|
74
82
|
DescribeConnectionLoaResponse = Shapes::StructureShape.new(name: 'DescribeConnectionLoaResponse')
|
75
83
|
DescribeConnectionsOnInterconnectRequest = Shapes::StructureShape.new(name: 'DescribeConnectionsOnInterconnectRequest')
|
76
84
|
DescribeConnectionsRequest = Shapes::StructureShape.new(name: 'DescribeConnectionsRequest')
|
85
|
+
DescribeDirectConnectGatewayAssociationProposalsRequest = Shapes::StructureShape.new(name: 'DescribeDirectConnectGatewayAssociationProposalsRequest')
|
86
|
+
DescribeDirectConnectGatewayAssociationProposalsResult = Shapes::StructureShape.new(name: 'DescribeDirectConnectGatewayAssociationProposalsResult')
|
77
87
|
DescribeDirectConnectGatewayAssociationsRequest = Shapes::StructureShape.new(name: 'DescribeDirectConnectGatewayAssociationsRequest')
|
78
88
|
DescribeDirectConnectGatewayAssociationsResult = Shapes::StructureShape.new(name: 'DescribeDirectConnectGatewayAssociationsResult')
|
79
89
|
DescribeDirectConnectGatewayAttachmentsRequest = Shapes::StructureShape.new(name: 'DescribeDirectConnectGatewayAttachmentsRequest')
|
@@ -92,7 +102,12 @@ module Aws::DirectConnect
|
|
92
102
|
DirectConnectClientException = Shapes::StructureShape.new(name: 'DirectConnectClientException')
|
93
103
|
DirectConnectGateway = Shapes::StructureShape.new(name: 'DirectConnectGateway')
|
94
104
|
DirectConnectGatewayAssociation = Shapes::StructureShape.new(name: 'DirectConnectGatewayAssociation')
|
105
|
+
DirectConnectGatewayAssociationId = Shapes::StringShape.new(name: 'DirectConnectGatewayAssociationId')
|
95
106
|
DirectConnectGatewayAssociationList = Shapes::ListShape.new(name: 'DirectConnectGatewayAssociationList')
|
107
|
+
DirectConnectGatewayAssociationProposal = Shapes::StructureShape.new(name: 'DirectConnectGatewayAssociationProposal')
|
108
|
+
DirectConnectGatewayAssociationProposalId = Shapes::StringShape.new(name: 'DirectConnectGatewayAssociationProposalId')
|
109
|
+
DirectConnectGatewayAssociationProposalList = Shapes::ListShape.new(name: 'DirectConnectGatewayAssociationProposalList')
|
110
|
+
DirectConnectGatewayAssociationProposalState = Shapes::StringShape.new(name: 'DirectConnectGatewayAssociationProposalState')
|
96
111
|
DirectConnectGatewayAssociationState = Shapes::StringShape.new(name: 'DirectConnectGatewayAssociationState')
|
97
112
|
DirectConnectGatewayAttachment = Shapes::StructureShape.new(name: 'DirectConnectGatewayAttachment')
|
98
113
|
DirectConnectGatewayAttachmentList = Shapes::ListShape.new(name: 'DirectConnectGatewayAttachmentList')
|
@@ -105,6 +120,9 @@ module Aws::DirectConnect
|
|
105
120
|
DisassociateConnectionFromLagRequest = Shapes::StructureShape.new(name: 'DisassociateConnectionFromLagRequest')
|
106
121
|
DuplicateTagKeysException = Shapes::StructureShape.new(name: 'DuplicateTagKeysException')
|
107
122
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
123
|
+
GatewayIdToAssociate = Shapes::StringShape.new(name: 'GatewayIdToAssociate')
|
124
|
+
GatewayIdentifier = Shapes::StringShape.new(name: 'GatewayIdentifier')
|
125
|
+
GatewayType = Shapes::StringShape.new(name: 'GatewayType')
|
108
126
|
HasLogicalRedundancy = Shapes::StringShape.new(name: 'HasLogicalRedundancy')
|
109
127
|
Interconnect = Shapes::StructureShape.new(name: 'Interconnect')
|
110
128
|
InterconnectId = Shapes::StringShape.new(name: 'InterconnectId')
|
@@ -160,6 +178,8 @@ module Aws::DirectConnect
|
|
160
178
|
TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
|
161
179
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
162
180
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
181
|
+
UpdateDirectConnectGatewayAssociationRequest = Shapes::StructureShape.new(name: 'UpdateDirectConnectGatewayAssociationRequest')
|
182
|
+
UpdateDirectConnectGatewayAssociationResult = Shapes::StructureShape.new(name: 'UpdateDirectConnectGatewayAssociationResult')
|
163
183
|
UpdateLagRequest = Shapes::StructureShape.new(name: 'UpdateLagRequest')
|
164
184
|
UpdateVirtualInterfaceAttributesRequest = Shapes::StructureShape.new(name: 'UpdateVirtualInterfaceAttributesRequest')
|
165
185
|
VLAN = Shapes::IntegerShape.new(name: 'VLAN')
|
@@ -178,6 +198,15 @@ module Aws::DirectConnect
|
|
178
198
|
VirtualInterfaceType = Shapes::StringShape.new(name: 'VirtualInterfaceType')
|
179
199
|
VirtualInterfaces = Shapes::StructureShape.new(name: 'VirtualInterfaces')
|
180
200
|
|
201
|
+
AcceptDirectConnectGatewayAssociationProposalRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, required: true, location_name: "directConnectGatewayId"))
|
202
|
+
AcceptDirectConnectGatewayAssociationProposalRequest.add_member(:proposal_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposalId, required: true, location_name: "proposalId"))
|
203
|
+
AcceptDirectConnectGatewayAssociationProposalRequest.add_member(:associated_gateway_owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, required: true, location_name: "associatedGatewayOwnerAccount"))
|
204
|
+
AcceptDirectConnectGatewayAssociationProposalRequest.add_member(:override_allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "overrideAllowedPrefixesToDirectConnectGateway"))
|
205
|
+
AcceptDirectConnectGatewayAssociationProposalRequest.struct_class = Types::AcceptDirectConnectGatewayAssociationProposalRequest
|
206
|
+
|
207
|
+
AcceptDirectConnectGatewayAssociationProposalResult.add_member(:direct_connect_gateway_association, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociation, location_name: "directConnectGatewayAssociation"))
|
208
|
+
AcceptDirectConnectGatewayAssociationProposalResult.struct_class = Types::AcceptDirectConnectGatewayAssociationProposalResult
|
209
|
+
|
181
210
|
AllocateConnectionOnInterconnectRequest.add_member(:bandwidth, Shapes::ShapeRef.new(shape: Bandwidth, required: true, location_name: "bandwidth"))
|
182
211
|
AllocateConnectionOnInterconnectRequest.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, required: true, location_name: "connectionName"))
|
183
212
|
AllocateConnectionOnInterconnectRequest.add_member(:owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, required: true, location_name: "ownerAccount"))
|
@@ -214,6 +243,12 @@ module Aws::DirectConnect
|
|
214
243
|
AssociateVirtualInterfaceRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
|
215
244
|
AssociateVirtualInterfaceRequest.struct_class = Types::AssociateVirtualInterfaceRequest
|
216
245
|
|
246
|
+
AssociatedGateway.add_member(:id, Shapes::ShapeRef.new(shape: GatewayIdentifier, location_name: "id"))
|
247
|
+
AssociatedGateway.add_member(:type, Shapes::ShapeRef.new(shape: GatewayType, location_name: "type"))
|
248
|
+
AssociatedGateway.add_member(:owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, location_name: "ownerAccount"))
|
249
|
+
AssociatedGateway.add_member(:region, Shapes::ShapeRef.new(shape: Region, location_name: "region"))
|
250
|
+
AssociatedGateway.struct_class = Types::AssociatedGateway
|
251
|
+
|
217
252
|
AvailablePortSpeeds.member = Shapes::ShapeRef.new(shape: PortSpeed)
|
218
253
|
|
219
254
|
BGPPeer.add_member(:bgp_peer_id, Shapes::ShapeRef.new(shape: BGPPeerId, location_name: "bgpPeerId"))
|
@@ -236,7 +271,7 @@ module Aws::DirectConnect
|
|
236
271
|
ConfirmConnectionResponse.struct_class = Types::ConfirmConnectionResponse
|
237
272
|
|
238
273
|
ConfirmPrivateVirtualInterfaceRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, required: true, location_name: "virtualInterfaceId"))
|
239
|
-
ConfirmPrivateVirtualInterfaceRequest.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, location_name: "virtualGatewayId"))
|
274
|
+
ConfirmPrivateVirtualInterfaceRequest.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, deprecated: true, location_name: "virtualGatewayId"))
|
240
275
|
ConfirmPrivateVirtualInterfaceRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
241
276
|
ConfirmPrivateVirtualInterfaceRequest.struct_class = Types::ConfirmPrivateVirtualInterfaceRequest
|
242
277
|
|
@@ -284,8 +319,20 @@ module Aws::DirectConnect
|
|
284
319
|
CreateConnectionRequest.add_member(:lag_id, Shapes::ShapeRef.new(shape: LagId, location_name: "lagId"))
|
285
320
|
CreateConnectionRequest.struct_class = Types::CreateConnectionRequest
|
286
321
|
|
322
|
+
CreateDirectConnectGatewayAssociationProposalRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, required: true, location_name: "directConnectGatewayId"))
|
323
|
+
CreateDirectConnectGatewayAssociationProposalRequest.add_member(:direct_connect_gateway_owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, required: true, location_name: "directConnectGatewayOwnerAccount"))
|
324
|
+
CreateDirectConnectGatewayAssociationProposalRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: GatewayIdToAssociate, required: true, location_name: "gatewayId"))
|
325
|
+
CreateDirectConnectGatewayAssociationProposalRequest.add_member(:add_allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "addAllowedPrefixesToDirectConnectGateway"))
|
326
|
+
CreateDirectConnectGatewayAssociationProposalRequest.add_member(:remove_allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "removeAllowedPrefixesToDirectConnectGateway"))
|
327
|
+
CreateDirectConnectGatewayAssociationProposalRequest.struct_class = Types::CreateDirectConnectGatewayAssociationProposalRequest
|
328
|
+
|
329
|
+
CreateDirectConnectGatewayAssociationProposalResult.add_member(:direct_connect_gateway_association_proposal, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposal, location_name: "directConnectGatewayAssociationProposal"))
|
330
|
+
CreateDirectConnectGatewayAssociationProposalResult.struct_class = Types::CreateDirectConnectGatewayAssociationProposalResult
|
331
|
+
|
287
332
|
CreateDirectConnectGatewayAssociationRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, required: true, location_name: "directConnectGatewayId"))
|
288
|
-
CreateDirectConnectGatewayAssociationRequest.add_member(:
|
333
|
+
CreateDirectConnectGatewayAssociationRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: GatewayIdToAssociate, location_name: "gatewayId"))
|
334
|
+
CreateDirectConnectGatewayAssociationRequest.add_member(:add_allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "addAllowedPrefixesToDirectConnectGateway"))
|
335
|
+
CreateDirectConnectGatewayAssociationRequest.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, deprecated: true, location_name: "virtualGatewayId"))
|
289
336
|
CreateDirectConnectGatewayAssociationRequest.struct_class = Types::CreateDirectConnectGatewayAssociationRequest
|
290
337
|
|
291
338
|
CreateDirectConnectGatewayAssociationResult.add_member(:direct_connect_gateway_association, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociation, location_name: "directConnectGatewayAssociation"))
|
@@ -331,8 +378,15 @@ module Aws::DirectConnect
|
|
331
378
|
DeleteConnectionRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
|
332
379
|
DeleteConnectionRequest.struct_class = Types::DeleteConnectionRequest
|
333
380
|
|
334
|
-
|
335
|
-
|
381
|
+
DeleteDirectConnectGatewayAssociationProposalRequest.add_member(:proposal_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposalId, required: true, location_name: "proposalId"))
|
382
|
+
DeleteDirectConnectGatewayAssociationProposalRequest.struct_class = Types::DeleteDirectConnectGatewayAssociationProposalRequest
|
383
|
+
|
384
|
+
DeleteDirectConnectGatewayAssociationProposalResult.add_member(:direct_connect_gateway_association_proposal, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposal, location_name: "directConnectGatewayAssociationProposal"))
|
385
|
+
DeleteDirectConnectGatewayAssociationProposalResult.struct_class = Types::DeleteDirectConnectGatewayAssociationProposalResult
|
386
|
+
|
387
|
+
DeleteDirectConnectGatewayAssociationRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationId, location_name: "associationId"))
|
388
|
+
DeleteDirectConnectGatewayAssociationRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
389
|
+
DeleteDirectConnectGatewayAssociationRequest.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, deprecated: true, location_name: "virtualGatewayId"))
|
336
390
|
DeleteDirectConnectGatewayAssociationRequest.struct_class = Types::DeleteDirectConnectGatewayAssociationRequest
|
337
391
|
|
338
392
|
DeleteDirectConnectGatewayAssociationResult.add_member(:direct_connect_gateway_association, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociation, location_name: "directConnectGatewayAssociation"))
|
@@ -373,10 +427,23 @@ module Aws::DirectConnect
|
|
373
427
|
DescribeConnectionsRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, location_name: "connectionId"))
|
374
428
|
DescribeConnectionsRequest.struct_class = Types::DescribeConnectionsRequest
|
375
429
|
|
430
|
+
DescribeDirectConnectGatewayAssociationProposalsRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
431
|
+
DescribeDirectConnectGatewayAssociationProposalsRequest.add_member(:proposal_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposalId, location_name: "proposalId"))
|
432
|
+
DescribeDirectConnectGatewayAssociationProposalsRequest.add_member(:associated_gateway_id, Shapes::ShapeRef.new(shape: AssociatedGatewayId, location_name: "associatedGatewayId"))
|
433
|
+
DescribeDirectConnectGatewayAssociationProposalsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultSetSize, location_name: "maxResults"))
|
434
|
+
DescribeDirectConnectGatewayAssociationProposalsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
435
|
+
DescribeDirectConnectGatewayAssociationProposalsRequest.struct_class = Types::DescribeDirectConnectGatewayAssociationProposalsRequest
|
436
|
+
|
437
|
+
DescribeDirectConnectGatewayAssociationProposalsResult.add_member(:direct_connect_gateway_association_proposals, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposalList, location_name: "directConnectGatewayAssociationProposals"))
|
438
|
+
DescribeDirectConnectGatewayAssociationProposalsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
439
|
+
DescribeDirectConnectGatewayAssociationProposalsResult.struct_class = Types::DescribeDirectConnectGatewayAssociationProposalsResult
|
440
|
+
|
441
|
+
DescribeDirectConnectGatewayAssociationsRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationId, location_name: "associationId"))
|
442
|
+
DescribeDirectConnectGatewayAssociationsRequest.add_member(:associated_gateway_id, Shapes::ShapeRef.new(shape: AssociatedGatewayId, location_name: "associatedGatewayId"))
|
376
443
|
DescribeDirectConnectGatewayAssociationsRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
377
|
-
DescribeDirectConnectGatewayAssociationsRequest.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, location_name: "virtualGatewayId"))
|
378
444
|
DescribeDirectConnectGatewayAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultSetSize, location_name: "maxResults"))
|
379
445
|
DescribeDirectConnectGatewayAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
446
|
+
DescribeDirectConnectGatewayAssociationsRequest.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, deprecated: true, location_name: "virtualGatewayId"))
|
380
447
|
DescribeDirectConnectGatewayAssociationsRequest.struct_class = Types::DescribeDirectConnectGatewayAssociationsRequest
|
381
448
|
|
382
449
|
DescribeDirectConnectGatewayAssociationsResult.add_member(:direct_connect_gateway_associations, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationList, location_name: "directConnectGatewayAssociations"))
|
@@ -443,15 +510,30 @@ module Aws::DirectConnect
|
|
443
510
|
DirectConnectGateway.struct_class = Types::DirectConnectGateway
|
444
511
|
|
445
512
|
DirectConnectGatewayAssociation.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
446
|
-
DirectConnectGatewayAssociation.add_member(:
|
447
|
-
DirectConnectGatewayAssociation.add_member(:virtual_gateway_region, Shapes::ShapeRef.new(shape: VirtualGatewayRegion, location_name: "virtualGatewayRegion"))
|
448
|
-
DirectConnectGatewayAssociation.add_member(:virtual_gateway_owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, location_name: "virtualGatewayOwnerAccount"))
|
513
|
+
DirectConnectGatewayAssociation.add_member(:direct_connect_gateway_owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, location_name: "directConnectGatewayOwnerAccount"))
|
449
514
|
DirectConnectGatewayAssociation.add_member(:association_state, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationState, location_name: "associationState"))
|
450
515
|
DirectConnectGatewayAssociation.add_member(:state_change_error, Shapes::ShapeRef.new(shape: StateChangeError, location_name: "stateChangeError"))
|
516
|
+
DirectConnectGatewayAssociation.add_member(:associated_gateway, Shapes::ShapeRef.new(shape: AssociatedGateway, location_name: "associatedGateway"))
|
517
|
+
DirectConnectGatewayAssociation.add_member(:association_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationId, location_name: "associationId"))
|
518
|
+
DirectConnectGatewayAssociation.add_member(:allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "allowedPrefixesToDirectConnectGateway"))
|
519
|
+
DirectConnectGatewayAssociation.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, deprecated: true, location_name: "virtualGatewayId"))
|
520
|
+
DirectConnectGatewayAssociation.add_member(:virtual_gateway_region, Shapes::ShapeRef.new(shape: VirtualGatewayRegion, deprecated: true, location_name: "virtualGatewayRegion"))
|
521
|
+
DirectConnectGatewayAssociation.add_member(:virtual_gateway_owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, location_name: "virtualGatewayOwnerAccount"))
|
451
522
|
DirectConnectGatewayAssociation.struct_class = Types::DirectConnectGatewayAssociation
|
452
523
|
|
453
524
|
DirectConnectGatewayAssociationList.member = Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociation)
|
454
525
|
|
526
|
+
DirectConnectGatewayAssociationProposal.add_member(:proposal_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposalId, location_name: "proposalId"))
|
527
|
+
DirectConnectGatewayAssociationProposal.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
528
|
+
DirectConnectGatewayAssociationProposal.add_member(:direct_connect_gateway_owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, location_name: "directConnectGatewayOwnerAccount"))
|
529
|
+
DirectConnectGatewayAssociationProposal.add_member(:proposal_state, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposalState, location_name: "proposalState"))
|
530
|
+
DirectConnectGatewayAssociationProposal.add_member(:associated_gateway, Shapes::ShapeRef.new(shape: AssociatedGateway, location_name: "associatedGateway"))
|
531
|
+
DirectConnectGatewayAssociationProposal.add_member(:existing_allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "existingAllowedPrefixesToDirectConnectGateway"))
|
532
|
+
DirectConnectGatewayAssociationProposal.add_member(:requested_allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "requestedAllowedPrefixesToDirectConnectGateway"))
|
533
|
+
DirectConnectGatewayAssociationProposal.struct_class = Types::DirectConnectGatewayAssociationProposal
|
534
|
+
|
535
|
+
DirectConnectGatewayAssociationProposalList.member = Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposal)
|
536
|
+
|
455
537
|
DirectConnectGatewayAttachment.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
456
538
|
DirectConnectGatewayAttachment.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, location_name: "virtualInterfaceId"))
|
457
539
|
DirectConnectGatewayAttachment.add_member(:virtual_interface_region, Shapes::ShapeRef.new(shape: VirtualInterfaceRegion, location_name: "virtualInterfaceRegion"))
|
@@ -539,7 +621,7 @@ module Aws::DirectConnect
|
|
539
621
|
NewPrivateVirtualInterface.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
540
622
|
NewPrivateVirtualInterface.add_member(:customer_address, Shapes::ShapeRef.new(shape: CustomerAddress, location_name: "customerAddress"))
|
541
623
|
NewPrivateVirtualInterface.add_member(:address_family, Shapes::ShapeRef.new(shape: AddressFamily, location_name: "addressFamily"))
|
542
|
-
NewPrivateVirtualInterface.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, location_name: "virtualGatewayId"))
|
624
|
+
NewPrivateVirtualInterface.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, deprecated: true, location_name: "virtualGatewayId"))
|
543
625
|
NewPrivateVirtualInterface.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
544
626
|
NewPrivateVirtualInterface.struct_class = Types::NewPrivateVirtualInterface
|
545
627
|
|
@@ -606,6 +688,14 @@ module Aws::DirectConnect
|
|
606
688
|
|
607
689
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
608
690
|
|
691
|
+
UpdateDirectConnectGatewayAssociationRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationId, location_name: "associationId"))
|
692
|
+
UpdateDirectConnectGatewayAssociationRequest.add_member(:add_allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "addAllowedPrefixesToDirectConnectGateway"))
|
693
|
+
UpdateDirectConnectGatewayAssociationRequest.add_member(:remove_allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "removeAllowedPrefixesToDirectConnectGateway"))
|
694
|
+
UpdateDirectConnectGatewayAssociationRequest.struct_class = Types::UpdateDirectConnectGatewayAssociationRequest
|
695
|
+
|
696
|
+
UpdateDirectConnectGatewayAssociationResult.add_member(:direct_connect_gateway_association, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociation, location_name: "directConnectGatewayAssociation"))
|
697
|
+
UpdateDirectConnectGatewayAssociationResult.struct_class = Types::UpdateDirectConnectGatewayAssociationResult
|
698
|
+
|
609
699
|
UpdateLagRequest.add_member(:lag_id, Shapes::ShapeRef.new(shape: LagId, required: true, location_name: "lagId"))
|
610
700
|
UpdateLagRequest.add_member(:lag_name, Shapes::ShapeRef.new(shape: LagName, location_name: "lagName"))
|
611
701
|
UpdateLagRequest.add_member(:minimum_links, Shapes::ShapeRef.new(shape: Count, location_name: "minimumLinks"))
|
@@ -615,7 +705,7 @@ module Aws::DirectConnect
|
|
615
705
|
UpdateVirtualInterfaceAttributesRequest.add_member(:mtu, Shapes::ShapeRef.new(shape: MTU, location_name: "mtu"))
|
616
706
|
UpdateVirtualInterfaceAttributesRequest.struct_class = Types::UpdateVirtualInterfaceAttributesRequest
|
617
707
|
|
618
|
-
VirtualGateway.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, location_name: "virtualGatewayId"))
|
708
|
+
VirtualGateway.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, deprecated: true, location_name: "virtualGatewayId"))
|
619
709
|
VirtualGateway.add_member(:virtual_gateway_state, Shapes::ShapeRef.new(shape: VirtualGatewayState, location_name: "virtualGatewayState"))
|
620
710
|
VirtualGateway.struct_class = Types::VirtualGateway
|
621
711
|
|
@@ -641,7 +731,7 @@ module Aws::DirectConnect
|
|
641
731
|
VirtualInterface.add_member(:customer_router_config, Shapes::ShapeRef.new(shape: RouterConfig, location_name: "customerRouterConfig"))
|
642
732
|
VirtualInterface.add_member(:mtu, Shapes::ShapeRef.new(shape: MTU, location_name: "mtu"))
|
643
733
|
VirtualInterface.add_member(:jumbo_frame_capable, Shapes::ShapeRef.new(shape: JumboFrameCapable, location_name: "jumboFrameCapable"))
|
644
|
-
VirtualInterface.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, location_name: "virtualGatewayId"))
|
734
|
+
VirtualInterface.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, deprecated: true, location_name: "virtualGatewayId"))
|
645
735
|
VirtualInterface.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
646
736
|
VirtualInterface.add_member(:route_filter_prefixes, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "routeFilterPrefixes"))
|
647
737
|
VirtualInterface.add_member(:bgp_peers, Shapes::ShapeRef.new(shape: BGPPeerList, location_name: "bgpPeers"))
|
@@ -672,6 +762,16 @@ module Aws::DirectConnect
|
|
672
762
|
"uid" => "directconnect-2012-10-25",
|
673
763
|
}
|
674
764
|
|
765
|
+
api.add_operation(:accept_direct_connect_gateway_association_proposal, Seahorse::Model::Operation.new.tap do |o|
|
766
|
+
o.name = "AcceptDirectConnectGatewayAssociationProposal"
|
767
|
+
o.http_method = "POST"
|
768
|
+
o.http_request_uri = "/"
|
769
|
+
o.input = Shapes::ShapeRef.new(shape: AcceptDirectConnectGatewayAssociationProposalRequest)
|
770
|
+
o.output = Shapes::ShapeRef.new(shape: AcceptDirectConnectGatewayAssociationProposalResult)
|
771
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectServerException)
|
772
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
773
|
+
end)
|
774
|
+
|
675
775
|
api.add_operation(:allocate_connection_on_interconnect, Seahorse::Model::Operation.new.tap do |o|
|
676
776
|
o.name = "AllocateConnectionOnInterconnect"
|
677
777
|
o.http_method = "POST"
|
@@ -813,6 +913,16 @@ module Aws::DirectConnect
|
|
813
913
|
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
814
914
|
end)
|
815
915
|
|
916
|
+
api.add_operation(:create_direct_connect_gateway_association_proposal, Seahorse::Model::Operation.new.tap do |o|
|
917
|
+
o.name = "CreateDirectConnectGatewayAssociationProposal"
|
918
|
+
o.http_method = "POST"
|
919
|
+
o.http_request_uri = "/"
|
920
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDirectConnectGatewayAssociationProposalRequest)
|
921
|
+
o.output = Shapes::ShapeRef.new(shape: CreateDirectConnectGatewayAssociationProposalResult)
|
922
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectServerException)
|
923
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
924
|
+
end)
|
925
|
+
|
816
926
|
api.add_operation(:create_interconnect, Seahorse::Model::Operation.new.tap do |o|
|
817
927
|
o.name = "CreateInterconnect"
|
818
928
|
o.http_method = "POST"
|
@@ -893,6 +1003,16 @@ module Aws::DirectConnect
|
|
893
1003
|
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
894
1004
|
end)
|
895
1005
|
|
1006
|
+
api.add_operation(:delete_direct_connect_gateway_association_proposal, Seahorse::Model::Operation.new.tap do |o|
|
1007
|
+
o.name = "DeleteDirectConnectGatewayAssociationProposal"
|
1008
|
+
o.http_method = "POST"
|
1009
|
+
o.http_request_uri = "/"
|
1010
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteDirectConnectGatewayAssociationProposalRequest)
|
1011
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteDirectConnectGatewayAssociationProposalResult)
|
1012
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectServerException)
|
1013
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
1014
|
+
end)
|
1015
|
+
|
896
1016
|
api.add_operation(:delete_interconnect, Seahorse::Model::Operation.new.tap do |o|
|
897
1017
|
o.name = "DeleteInterconnect"
|
898
1018
|
o.http_method = "POST"
|
@@ -955,6 +1075,16 @@ module Aws::DirectConnect
|
|
955
1075
|
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
956
1076
|
end)
|
957
1077
|
|
1078
|
+
api.add_operation(:describe_direct_connect_gateway_association_proposals, Seahorse::Model::Operation.new.tap do |o|
|
1079
|
+
o.name = "DescribeDirectConnectGatewayAssociationProposals"
|
1080
|
+
o.http_method = "POST"
|
1081
|
+
o.http_request_uri = "/"
|
1082
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeDirectConnectGatewayAssociationProposalsRequest)
|
1083
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeDirectConnectGatewayAssociationProposalsResult)
|
1084
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectServerException)
|
1085
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
1086
|
+
end)
|
1087
|
+
|
958
1088
|
api.add_operation(:describe_direct_connect_gateway_associations, Seahorse::Model::Operation.new.tap do |o|
|
959
1089
|
o.name = "DescribeDirectConnectGatewayAssociations"
|
960
1090
|
o.http_method = "POST"
|
@@ -1108,6 +1238,16 @@ module Aws::DirectConnect
|
|
1108
1238
|
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
1109
1239
|
end)
|
1110
1240
|
|
1241
|
+
api.add_operation(:update_direct_connect_gateway_association, Seahorse::Model::Operation.new.tap do |o|
|
1242
|
+
o.name = "UpdateDirectConnectGatewayAssociation"
|
1243
|
+
o.http_method = "POST"
|
1244
|
+
o.http_request_uri = "/"
|
1245
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateDirectConnectGatewayAssociationRequest)
|
1246
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateDirectConnectGatewayAssociationResult)
|
1247
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectServerException)
|
1248
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
1249
|
+
end)
|
1250
|
+
|
1111
1251
|
api.add_operation(:update_lag, Seahorse::Model::Operation.new.tap do |o|
|
1112
1252
|
o.name = "UpdateLag"
|
1113
1253
|
o.http_method = "POST"
|
@@ -8,6 +8,59 @@
|
|
8
8
|
module Aws::DirectConnect
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# @note When making an API call, you may pass AcceptDirectConnectGatewayAssociationProposalRequest
|
12
|
+
# data as a hash:
|
13
|
+
#
|
14
|
+
# {
|
15
|
+
# direct_connect_gateway_id: "DirectConnectGatewayId", # required
|
16
|
+
# proposal_id: "DirectConnectGatewayAssociationProposalId", # required
|
17
|
+
# associated_gateway_owner_account: "OwnerAccount", # required
|
18
|
+
# override_allowed_prefixes_to_direct_connect_gateway: [
|
19
|
+
# {
|
20
|
+
# cidr: "CIDR",
|
21
|
+
# },
|
22
|
+
# ],
|
23
|
+
# }
|
24
|
+
#
|
25
|
+
# @!attribute [rw] direct_connect_gateway_id
|
26
|
+
# The ID of the Direct Connect gateway.
|
27
|
+
# @return [String]
|
28
|
+
#
|
29
|
+
# @!attribute [rw] proposal_id
|
30
|
+
# The ID of the request proposal.
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
# @!attribute [rw] associated_gateway_owner_account
|
34
|
+
# The ID of the AWS account that owns the virtual private gateway.
|
35
|
+
# @return [String]
|
36
|
+
#
|
37
|
+
# @!attribute [rw] override_allowed_prefixes_to_direct_connect_gateway
|
38
|
+
# Overrides the Amazon VPC prefixes advertised to the Direct Connect
|
39
|
+
# gateway.
|
40
|
+
# @return [Array<Types::RouteFilterPrefix>]
|
41
|
+
#
|
42
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AcceptDirectConnectGatewayAssociationProposalRequest AWS API Documentation
|
43
|
+
#
|
44
|
+
class AcceptDirectConnectGatewayAssociationProposalRequest < Struct.new(
|
45
|
+
:direct_connect_gateway_id,
|
46
|
+
:proposal_id,
|
47
|
+
:associated_gateway_owner_account,
|
48
|
+
:override_allowed_prefixes_to_direct_connect_gateway)
|
49
|
+
include Aws::Structure
|
50
|
+
end
|
51
|
+
|
52
|
+
# @!attribute [rw] direct_connect_gateway_association
|
53
|
+
# Information about an association between a Direct Connect gateway
|
54
|
+
# and a virtual private gateway.
|
55
|
+
# @return [Types::DirectConnectGatewayAssociation]
|
56
|
+
#
|
57
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AcceptDirectConnectGatewayAssociationProposalResult AWS API Documentation
|
58
|
+
#
|
59
|
+
class AcceptDirectConnectGatewayAssociationProposalResult < Struct.new(
|
60
|
+
:direct_connect_gateway_association)
|
61
|
+
include Aws::Structure
|
62
|
+
end
|
63
|
+
|
11
64
|
# @note When making an API call, you may pass AllocateConnectionOnInterconnectRequest
|
12
65
|
# data as a hash:
|
13
66
|
#
|
@@ -20,8 +73,11 @@ module Aws::DirectConnect
|
|
20
73
|
# }
|
21
74
|
#
|
22
75
|
# @!attribute [rw] bandwidth
|
23
|
-
# The bandwidth of the connection
|
24
|
-
#
|
76
|
+
# The bandwidth of the connection. The possible values are 50Mbps,
|
77
|
+
# 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps,
|
78
|
+
# and 10Gbps. Note that only those AWS Direct Connect Partners who
|
79
|
+
# have met specific requirements are allowed to create a 1Gbps, 2Gbps,
|
80
|
+
# 5Gbps or 10Gbps hosted connection.
|
25
81
|
# @return [String]
|
26
82
|
#
|
27
83
|
# @!attribute [rw] connection_name
|
@@ -73,8 +129,11 @@ module Aws::DirectConnect
|
|
73
129
|
# @return [String]
|
74
130
|
#
|
75
131
|
# @!attribute [rw] bandwidth
|
76
|
-
# The bandwidth of the
|
77
|
-
#
|
132
|
+
# The bandwidth of the connection. The possible values are 50Mbps,
|
133
|
+
# 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps,
|
134
|
+
# and 10Gbps. Note that only those AWS Direct Connect Partners who
|
135
|
+
# have met specific requirements are allowed to create a 1Gbps, 2Gbps,
|
136
|
+
# 5Gbps or 10Gbps hosted connection.
|
78
137
|
# @return [String]
|
79
138
|
#
|
80
139
|
# @!attribute [rw] connection_name
|
@@ -252,6 +311,35 @@ module Aws::DirectConnect
|
|
252
311
|
include Aws::Structure
|
253
312
|
end
|
254
313
|
|
314
|
+
# Information about the associated gateway.
|
315
|
+
#
|
316
|
+
# @!attribute [rw] id
|
317
|
+
# The ID of the associated gateway.
|
318
|
+
# @return [String]
|
319
|
+
#
|
320
|
+
# @!attribute [rw] type
|
321
|
+
# The type of associated gateway.
|
322
|
+
# @return [String]
|
323
|
+
#
|
324
|
+
# @!attribute [rw] owner_account
|
325
|
+
# The ID of the AWS account that owns the associated virtual private
|
326
|
+
# gateway.
|
327
|
+
# @return [String]
|
328
|
+
#
|
329
|
+
# @!attribute [rw] region
|
330
|
+
# The Region where the associated gateway is located.
|
331
|
+
# @return [String]
|
332
|
+
#
|
333
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociatedGateway AWS API Documentation
|
334
|
+
#
|
335
|
+
class AssociatedGateway < Struct.new(
|
336
|
+
:id,
|
337
|
+
:type,
|
338
|
+
:owner_account,
|
339
|
+
:region)
|
340
|
+
include Aws::Structure
|
341
|
+
end
|
342
|
+
|
255
343
|
# Information about a BGP peer.
|
256
344
|
#
|
257
345
|
# @!attribute [rw] bgp_peer_id
|
@@ -717,18 +805,94 @@ module Aws::DirectConnect
|
|
717
805
|
include Aws::Structure
|
718
806
|
end
|
719
807
|
|
808
|
+
# @note When making an API call, you may pass CreateDirectConnectGatewayAssociationProposalRequest
|
809
|
+
# data as a hash:
|
810
|
+
#
|
811
|
+
# {
|
812
|
+
# direct_connect_gateway_id: "DirectConnectGatewayId", # required
|
813
|
+
# direct_connect_gateway_owner_account: "OwnerAccount", # required
|
814
|
+
# gateway_id: "GatewayIdToAssociate", # required
|
815
|
+
# add_allowed_prefixes_to_direct_connect_gateway: [
|
816
|
+
# {
|
817
|
+
# cidr: "CIDR",
|
818
|
+
# },
|
819
|
+
# ],
|
820
|
+
# remove_allowed_prefixes_to_direct_connect_gateway: [
|
821
|
+
# {
|
822
|
+
# cidr: "CIDR",
|
823
|
+
# },
|
824
|
+
# ],
|
825
|
+
# }
|
826
|
+
#
|
827
|
+
# @!attribute [rw] direct_connect_gateway_id
|
828
|
+
# The ID of the Direct Connect gateway.
|
829
|
+
# @return [String]
|
830
|
+
#
|
831
|
+
# @!attribute [rw] direct_connect_gateway_owner_account
|
832
|
+
# The ID of the AWS account that owns the Direct Connect gateway.
|
833
|
+
# @return [String]
|
834
|
+
#
|
835
|
+
# @!attribute [rw] gateway_id
|
836
|
+
# The ID of the virtual private gateway.
|
837
|
+
# @return [String]
|
838
|
+
#
|
839
|
+
# @!attribute [rw] add_allowed_prefixes_to_direct_connect_gateway
|
840
|
+
# The Amazon VPC prefixes to advertise to the Direct Connect gateway.
|
841
|
+
# @return [Array<Types::RouteFilterPrefix>]
|
842
|
+
#
|
843
|
+
# @!attribute [rw] remove_allowed_prefixes_to_direct_connect_gateway
|
844
|
+
# The Amazon VPC prefixes to no longer advertise to the Direct Connect
|
845
|
+
# gateway.
|
846
|
+
# @return [Array<Types::RouteFilterPrefix>]
|
847
|
+
#
|
848
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateDirectConnectGatewayAssociationProposalRequest AWS API Documentation
|
849
|
+
#
|
850
|
+
class CreateDirectConnectGatewayAssociationProposalRequest < Struct.new(
|
851
|
+
:direct_connect_gateway_id,
|
852
|
+
:direct_connect_gateway_owner_account,
|
853
|
+
:gateway_id,
|
854
|
+
:add_allowed_prefixes_to_direct_connect_gateway,
|
855
|
+
:remove_allowed_prefixes_to_direct_connect_gateway)
|
856
|
+
include Aws::Structure
|
857
|
+
end
|
858
|
+
|
859
|
+
# @!attribute [rw] direct_connect_gateway_association_proposal
|
860
|
+
# Information about the Direct Connect gateway proposal.
|
861
|
+
# @return [Types::DirectConnectGatewayAssociationProposal]
|
862
|
+
#
|
863
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateDirectConnectGatewayAssociationProposalResult AWS API Documentation
|
864
|
+
#
|
865
|
+
class CreateDirectConnectGatewayAssociationProposalResult < Struct.new(
|
866
|
+
:direct_connect_gateway_association_proposal)
|
867
|
+
include Aws::Structure
|
868
|
+
end
|
869
|
+
|
720
870
|
# @note When making an API call, you may pass CreateDirectConnectGatewayAssociationRequest
|
721
871
|
# data as a hash:
|
722
872
|
#
|
723
873
|
# {
|
724
874
|
# direct_connect_gateway_id: "DirectConnectGatewayId", # required
|
725
|
-
#
|
875
|
+
# gateway_id: "GatewayIdToAssociate",
|
876
|
+
# add_allowed_prefixes_to_direct_connect_gateway: [
|
877
|
+
# {
|
878
|
+
# cidr: "CIDR",
|
879
|
+
# },
|
880
|
+
# ],
|
881
|
+
# virtual_gateway_id: "VirtualGatewayId",
|
726
882
|
# }
|
727
883
|
#
|
728
884
|
# @!attribute [rw] direct_connect_gateway_id
|
729
885
|
# The ID of the Direct Connect gateway.
|
730
886
|
# @return [String]
|
731
887
|
#
|
888
|
+
# @!attribute [rw] gateway_id
|
889
|
+
# The ID of the virtual private gateway.
|
890
|
+
# @return [String]
|
891
|
+
#
|
892
|
+
# @!attribute [rw] add_allowed_prefixes_to_direct_connect_gateway
|
893
|
+
# The Amazon VPC prefixes to advertise to the Direct Connect gateway
|
894
|
+
# @return [Array<Types::RouteFilterPrefix>]
|
895
|
+
#
|
732
896
|
# @!attribute [rw] virtual_gateway_id
|
733
897
|
# The ID of the virtual private gateway.
|
734
898
|
# @return [String]
|
@@ -737,6 +901,8 @@ module Aws::DirectConnect
|
|
737
901
|
#
|
738
902
|
class CreateDirectConnectGatewayAssociationRequest < Struct.new(
|
739
903
|
:direct_connect_gateway_id,
|
904
|
+
:gateway_id,
|
905
|
+
:add_allowed_prefixes_to_direct_connect_gateway,
|
740
906
|
:virtual_gateway_id)
|
741
907
|
include Aws::Structure
|
742
908
|
end
|
@@ -848,7 +1014,8 @@ module Aws::DirectConnect
|
|
848
1014
|
#
|
849
1015
|
# @!attribute [rw] connections_bandwidth
|
850
1016
|
# The bandwidth of the individual physical connections bundled by the
|
851
|
-
# LAG. The possible values are
|
1017
|
+
# LAG. The possible values are 50Mbps, 100Mbps, 200Mbps, 300Mbps,
|
1018
|
+
# 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and 10Gbps.
|
852
1019
|
# @return [String]
|
853
1020
|
#
|
854
1021
|
# @!attribute [rw] lag_name
|
@@ -1008,14 +1175,48 @@ module Aws::DirectConnect
|
|
1008
1175
|
include Aws::Structure
|
1009
1176
|
end
|
1010
1177
|
|
1178
|
+
# @note When making an API call, you may pass DeleteDirectConnectGatewayAssociationProposalRequest
|
1179
|
+
# data as a hash:
|
1180
|
+
#
|
1181
|
+
# {
|
1182
|
+
# proposal_id: "DirectConnectGatewayAssociationProposalId", # required
|
1183
|
+
# }
|
1184
|
+
#
|
1185
|
+
# @!attribute [rw] proposal_id
|
1186
|
+
# The ID of the proposal.
|
1187
|
+
# @return [String]
|
1188
|
+
#
|
1189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteDirectConnectGatewayAssociationProposalRequest AWS API Documentation
|
1190
|
+
#
|
1191
|
+
class DeleteDirectConnectGatewayAssociationProposalRequest < Struct.new(
|
1192
|
+
:proposal_id)
|
1193
|
+
include Aws::Structure
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
# @!attribute [rw] direct_connect_gateway_association_proposal
|
1197
|
+
# The ID of the virtual private gateway.
|
1198
|
+
# @return [Types::DirectConnectGatewayAssociationProposal]
|
1199
|
+
#
|
1200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteDirectConnectGatewayAssociationProposalResult AWS API Documentation
|
1201
|
+
#
|
1202
|
+
class DeleteDirectConnectGatewayAssociationProposalResult < Struct.new(
|
1203
|
+
:direct_connect_gateway_association_proposal)
|
1204
|
+
include Aws::Structure
|
1205
|
+
end
|
1206
|
+
|
1011
1207
|
# @note When making an API call, you may pass DeleteDirectConnectGatewayAssociationRequest
|
1012
1208
|
# data as a hash:
|
1013
1209
|
#
|
1014
1210
|
# {
|
1015
|
-
#
|
1016
|
-
#
|
1211
|
+
# association_id: "DirectConnectGatewayAssociationId",
|
1212
|
+
# direct_connect_gateway_id: "DirectConnectGatewayId",
|
1213
|
+
# virtual_gateway_id: "VirtualGatewayId",
|
1017
1214
|
# }
|
1018
1215
|
#
|
1216
|
+
# @!attribute [rw] association_id
|
1217
|
+
# The ID of the Direct Connect gateway association.
|
1218
|
+
# @return [String]
|
1219
|
+
#
|
1019
1220
|
# @!attribute [rw] direct_connect_gateway_id
|
1020
1221
|
# The ID of the Direct Connect gateway.
|
1021
1222
|
# @return [String]
|
@@ -1027,13 +1228,14 @@ module Aws::DirectConnect
|
|
1027
1228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteDirectConnectGatewayAssociationRequest AWS API Documentation
|
1028
1229
|
#
|
1029
1230
|
class DeleteDirectConnectGatewayAssociationRequest < Struct.new(
|
1231
|
+
:association_id,
|
1030
1232
|
:direct_connect_gateway_id,
|
1031
1233
|
:virtual_gateway_id)
|
1032
1234
|
include Aws::Structure
|
1033
1235
|
end
|
1034
1236
|
|
1035
1237
|
# @!attribute [rw] direct_connect_gateway_association
|
1036
|
-
#
|
1238
|
+
# Information about the deleted association.
|
1037
1239
|
# @return [Types::DirectConnectGatewayAssociation]
|
1038
1240
|
#
|
1039
1241
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteDirectConnectGatewayAssociationResult AWS API Documentation
|
@@ -1281,12 +1483,13 @@ module Aws::DirectConnect
|
|
1281
1483
|
include Aws::Structure
|
1282
1484
|
end
|
1283
1485
|
|
1284
|
-
# @note When making an API call, you may pass
|
1486
|
+
# @note When making an API call, you may pass DescribeDirectConnectGatewayAssociationProposalsRequest
|
1285
1487
|
# data as a hash:
|
1286
1488
|
#
|
1287
1489
|
# {
|
1288
1490
|
# direct_connect_gateway_id: "DirectConnectGatewayId",
|
1289
|
-
#
|
1491
|
+
# proposal_id: "DirectConnectGatewayAssociationProposalId",
|
1492
|
+
# associated_gateway_id: "AssociatedGatewayId",
|
1290
1493
|
# max_results: 1,
|
1291
1494
|
# next_token: "PaginationToken",
|
1292
1495
|
# }
|
@@ -1295,30 +1498,110 @@ module Aws::DirectConnect
|
|
1295
1498
|
# The ID of the Direct Connect gateway.
|
1296
1499
|
# @return [String]
|
1297
1500
|
#
|
1298
|
-
# @!attribute [rw]
|
1299
|
-
# The ID of the
|
1501
|
+
# @!attribute [rw] proposal_id
|
1502
|
+
# The ID of the proposal.
|
1503
|
+
# @return [String]
|
1504
|
+
#
|
1505
|
+
# @!attribute [rw] associated_gateway_id
|
1506
|
+
# The ID of the associated virtual private gateway.
|
1507
|
+
# @return [String]
|
1508
|
+
#
|
1509
|
+
# @!attribute [rw] max_results
|
1510
|
+
# The maximum number of results to return with a single call. To
|
1511
|
+
# retrieve the remaining results, make another call with the returned
|
1512
|
+
# `nextToken` value.
|
1513
|
+
#
|
1514
|
+
# If `MaxResults` is given a value larger than 100, only 100 results
|
1515
|
+
# are returned.
|
1516
|
+
# @return [Integer]
|
1517
|
+
#
|
1518
|
+
# @!attribute [rw] next_token
|
1519
|
+
# The token for the next page of results.
|
1520
|
+
# @return [String]
|
1521
|
+
#
|
1522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeDirectConnectGatewayAssociationProposalsRequest AWS API Documentation
|
1523
|
+
#
|
1524
|
+
class DescribeDirectConnectGatewayAssociationProposalsRequest < Struct.new(
|
1525
|
+
:direct_connect_gateway_id,
|
1526
|
+
:proposal_id,
|
1527
|
+
:associated_gateway_id,
|
1528
|
+
:max_results,
|
1529
|
+
:next_token)
|
1530
|
+
include Aws::Structure
|
1531
|
+
end
|
1532
|
+
|
1533
|
+
# @!attribute [rw] direct_connect_gateway_association_proposals
|
1534
|
+
# Describes the Direct Connect gateway association proposals.
|
1535
|
+
# @return [Array<Types::DirectConnectGatewayAssociationProposal>]
|
1536
|
+
#
|
1537
|
+
# @!attribute [rw] next_token
|
1538
|
+
# The token to use to retrieve the next page of results. This value is
|
1539
|
+
# `null` when there are no more results to return.
|
1540
|
+
# @return [String]
|
1541
|
+
#
|
1542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeDirectConnectGatewayAssociationProposalsResult AWS API Documentation
|
1543
|
+
#
|
1544
|
+
class DescribeDirectConnectGatewayAssociationProposalsResult < Struct.new(
|
1545
|
+
:direct_connect_gateway_association_proposals,
|
1546
|
+
:next_token)
|
1547
|
+
include Aws::Structure
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
# @note When making an API call, you may pass DescribeDirectConnectGatewayAssociationsRequest
|
1551
|
+
# data as a hash:
|
1552
|
+
#
|
1553
|
+
# {
|
1554
|
+
# association_id: "DirectConnectGatewayAssociationId",
|
1555
|
+
# associated_gateway_id: "AssociatedGatewayId",
|
1556
|
+
# direct_connect_gateway_id: "DirectConnectGatewayId",
|
1557
|
+
# max_results: 1,
|
1558
|
+
# next_token: "PaginationToken",
|
1559
|
+
# virtual_gateway_id: "VirtualGatewayId",
|
1560
|
+
# }
|
1561
|
+
#
|
1562
|
+
# @!attribute [rw] association_id
|
1563
|
+
# The ID of the Direct Connect gateway association.
|
1564
|
+
# @return [String]
|
1565
|
+
#
|
1566
|
+
# @!attribute [rw] associated_gateway_id
|
1567
|
+
# The ID of the associated gateway.
|
1568
|
+
# @return [String]
|
1569
|
+
#
|
1570
|
+
# @!attribute [rw] direct_connect_gateway_id
|
1571
|
+
# The ID of the Direct Connect gateway.
|
1300
1572
|
# @return [String]
|
1301
1573
|
#
|
1302
1574
|
# @!attribute [rw] max_results
|
1303
|
-
# The maximum number of
|
1575
|
+
# The maximum number of results to return with a single call. To
|
1576
|
+
# retrieve the remaining results, make another call with the returned
|
1577
|
+
# `nextToken` value.
|
1578
|
+
#
|
1579
|
+
# If `MaxResults` is given a value larger than 100, only 100 results
|
1580
|
+
# are returned.
|
1304
1581
|
# @return [Integer]
|
1305
1582
|
#
|
1306
1583
|
# @!attribute [rw] next_token
|
1307
1584
|
# The token provided in the previous call to retrieve the next page.
|
1308
1585
|
# @return [String]
|
1309
1586
|
#
|
1587
|
+
# @!attribute [rw] virtual_gateway_id
|
1588
|
+
# The ID of the virtual private gateway.
|
1589
|
+
# @return [String]
|
1590
|
+
#
|
1310
1591
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeDirectConnectGatewayAssociationsRequest AWS API Documentation
|
1311
1592
|
#
|
1312
1593
|
class DescribeDirectConnectGatewayAssociationsRequest < Struct.new(
|
1594
|
+
:association_id,
|
1595
|
+
:associated_gateway_id,
|
1313
1596
|
:direct_connect_gateway_id,
|
1314
|
-
:virtual_gateway_id,
|
1315
1597
|
:max_results,
|
1316
|
-
:next_token
|
1598
|
+
:next_token,
|
1599
|
+
:virtual_gateway_id)
|
1317
1600
|
include Aws::Structure
|
1318
1601
|
end
|
1319
1602
|
|
1320
1603
|
# @!attribute [rw] direct_connect_gateway_associations
|
1321
|
-
#
|
1604
|
+
# Information about the associations.
|
1322
1605
|
# @return [Array<Types::DirectConnectGatewayAssociation>]
|
1323
1606
|
#
|
1324
1607
|
# @!attribute [rw] next_token
|
@@ -1352,7 +1635,12 @@ module Aws::DirectConnect
|
|
1352
1635
|
# @return [String]
|
1353
1636
|
#
|
1354
1637
|
# @!attribute [rw] max_results
|
1355
|
-
# The maximum number of
|
1638
|
+
# The maximum number of results to return with a single call. To
|
1639
|
+
# retrieve the remaining results, make another call with the returned
|
1640
|
+
# `nextToken` value.
|
1641
|
+
#
|
1642
|
+
# If `MaxResults` is given a value larger than 100, only 100 results
|
1643
|
+
# are returned.
|
1356
1644
|
# @return [Integer]
|
1357
1645
|
#
|
1358
1646
|
# @!attribute [rw] next_token
|
@@ -1399,7 +1687,12 @@ module Aws::DirectConnect
|
|
1399
1687
|
# @return [String]
|
1400
1688
|
#
|
1401
1689
|
# @!attribute [rw] max_results
|
1402
|
-
# The maximum number of
|
1690
|
+
# The maximum number of results to return with a single call. To
|
1691
|
+
# retrieve the remaining results, make another call with the returned
|
1692
|
+
# `nextToken` value.
|
1693
|
+
#
|
1694
|
+
# If `MaxResults` is given a value larger than 100, only 100 results
|
1695
|
+
# are returned.
|
1403
1696
|
# @return [Integer]
|
1404
1697
|
#
|
1405
1698
|
# @!attribute [rw] next_token
|
@@ -1677,17 +1970,8 @@ module Aws::DirectConnect
|
|
1677
1970
|
# The ID of the Direct Connect gateway.
|
1678
1971
|
# @return [String]
|
1679
1972
|
#
|
1680
|
-
# @!attribute [rw]
|
1681
|
-
# The ID of the
|
1682
|
-
# virtual interfaces.
|
1683
|
-
# @return [String]
|
1684
|
-
#
|
1685
|
-
# @!attribute [rw] virtual_gateway_region
|
1686
|
-
# The AWS Region where the virtual private gateway is located.
|
1687
|
-
# @return [String]
|
1688
|
-
#
|
1689
|
-
# @!attribute [rw] virtual_gateway_owner_account
|
1690
|
-
# The ID of the AWS account that owns the virtual private gateway.
|
1973
|
+
# @!attribute [rw] direct_connect_gateway_owner_account
|
1974
|
+
# The ID of the AWS account that owns the associated gateway.
|
1691
1975
|
# @return [String]
|
1692
1976
|
#
|
1693
1977
|
# @!attribute [rw] association_state
|
@@ -1711,15 +1995,99 @@ module Aws::DirectConnect
|
|
1711
1995
|
# The error message if the state of an object failed to advance.
|
1712
1996
|
# @return [String]
|
1713
1997
|
#
|
1998
|
+
# @!attribute [rw] associated_gateway
|
1999
|
+
# Information about the associated virtual private gateway.
|
2000
|
+
# @return [Types::AssociatedGateway]
|
2001
|
+
#
|
2002
|
+
# @!attribute [rw] association_id
|
2003
|
+
# The ID of the Direct Connect gateway association.
|
2004
|
+
# @return [String]
|
2005
|
+
#
|
2006
|
+
# @!attribute [rw] allowed_prefixes_to_direct_connect_gateway
|
2007
|
+
# The Amazon VPC prefixes to advertise to the Direct Connect gateway.
|
2008
|
+
# @return [Array<Types::RouteFilterPrefix>]
|
2009
|
+
#
|
2010
|
+
# @!attribute [rw] virtual_gateway_id
|
2011
|
+
# The ID of the virtual private gateway. Applies only to private
|
2012
|
+
# virtual interfaces.
|
2013
|
+
# @return [String]
|
2014
|
+
#
|
2015
|
+
# @!attribute [rw] virtual_gateway_region
|
2016
|
+
# The AWS Region where the virtual private gateway is located.
|
2017
|
+
# @return [String]
|
2018
|
+
#
|
2019
|
+
# @!attribute [rw] virtual_gateway_owner_account
|
2020
|
+
# The ID of the AWS account that owns the virtual private gateway.
|
2021
|
+
# @return [String]
|
2022
|
+
#
|
1714
2023
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DirectConnectGatewayAssociation AWS API Documentation
|
1715
2024
|
#
|
1716
2025
|
class DirectConnectGatewayAssociation < Struct.new(
|
1717
2026
|
:direct_connect_gateway_id,
|
2027
|
+
:direct_connect_gateway_owner_account,
|
2028
|
+
:association_state,
|
2029
|
+
:state_change_error,
|
2030
|
+
:associated_gateway,
|
2031
|
+
:association_id,
|
2032
|
+
:allowed_prefixes_to_direct_connect_gateway,
|
1718
2033
|
:virtual_gateway_id,
|
1719
2034
|
:virtual_gateway_region,
|
1720
|
-
:virtual_gateway_owner_account
|
1721
|
-
|
1722
|
-
|
2035
|
+
:virtual_gateway_owner_account)
|
2036
|
+
include Aws::Structure
|
2037
|
+
end
|
2038
|
+
|
2039
|
+
# Information about the proposal request to attach a virtual private
|
2040
|
+
# gateway to a DDirect Connect gateway.
|
2041
|
+
#
|
2042
|
+
# @!attribute [rw] proposal_id
|
2043
|
+
# The ID of the association proposal.
|
2044
|
+
# @return [String]
|
2045
|
+
#
|
2046
|
+
# @!attribute [rw] direct_connect_gateway_id
|
2047
|
+
# The ID of the Direct Connect gateway.
|
2048
|
+
# @return [String]
|
2049
|
+
#
|
2050
|
+
# @!attribute [rw] direct_connect_gateway_owner_account
|
2051
|
+
# The ID of the AWS account that owns the Direct Connect gateway.
|
2052
|
+
# @return [String]
|
2053
|
+
#
|
2054
|
+
# @!attribute [rw] proposal_state
|
2055
|
+
# The state of the proposal. The following are possible values:
|
2056
|
+
#
|
2057
|
+
# * `accepted`\: The proposal has been accepted. The Direct Connect
|
2058
|
+
# gateway association is available to use in this state.
|
2059
|
+
#
|
2060
|
+
# * `deleted`\: The proposal has been deleted by the owner that made
|
2061
|
+
# the proposal. The Direct Connect gateway association cannot be
|
2062
|
+
# used in this state.
|
2063
|
+
#
|
2064
|
+
# * `requested`\: The proposal has been requested. The Direct Connect
|
2065
|
+
# gateway association cannot be used in this state.
|
2066
|
+
# @return [String]
|
2067
|
+
#
|
2068
|
+
# @!attribute [rw] associated_gateway
|
2069
|
+
# Information about the associated virtual private gateway.
|
2070
|
+
# @return [Types::AssociatedGateway]
|
2071
|
+
#
|
2072
|
+
# @!attribute [rw] existing_allowed_prefixes_to_direct_connect_gateway
|
2073
|
+
# The existing Amazon VPC prefixes advertised to the Direct Connect
|
2074
|
+
# gateway.
|
2075
|
+
# @return [Array<Types::RouteFilterPrefix>]
|
2076
|
+
#
|
2077
|
+
# @!attribute [rw] requested_allowed_prefixes_to_direct_connect_gateway
|
2078
|
+
# The Amazon VPC prefixes to advertise to the Direct Connect gateway.
|
2079
|
+
# @return [Array<Types::RouteFilterPrefix>]
|
2080
|
+
#
|
2081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DirectConnectGatewayAssociationProposal AWS API Documentation
|
2082
|
+
#
|
2083
|
+
class DirectConnectGatewayAssociationProposal < Struct.new(
|
2084
|
+
:proposal_id,
|
2085
|
+
:direct_connect_gateway_id,
|
2086
|
+
:direct_connect_gateway_owner_account,
|
2087
|
+
:proposal_state,
|
2088
|
+
:associated_gateway,
|
2089
|
+
:existing_allowed_prefixes_to_direct_connect_gateway,
|
2090
|
+
:requested_allowed_prefixes_to_direct_connect_gateway)
|
1723
2091
|
include Aws::Structure
|
1724
2092
|
end
|
1725
2093
|
|
@@ -1959,11 +2327,11 @@ module Aws::DirectConnect
|
|
1959
2327
|
# @return [Integer]
|
1960
2328
|
#
|
1961
2329
|
# @!attribute [rw] aws_device
|
1962
|
-
# The Direct Connect endpoint that hosts the LAG.
|
2330
|
+
# The AWS Direct Connect endpoint that hosts the LAG.
|
1963
2331
|
# @return [String]
|
1964
2332
|
#
|
1965
2333
|
# @!attribute [rw] aws_device_v2
|
1966
|
-
# The Direct Connect endpoint that hosts the LAG.
|
2334
|
+
# The AWS Direct Connect endpoint that hosts the LAG.
|
1967
2335
|
# @return [String]
|
1968
2336
|
#
|
1969
2337
|
# @!attribute [rw] connections
|
@@ -2526,6 +2894,57 @@ module Aws::DirectConnect
|
|
2526
2894
|
#
|
2527
2895
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
2528
2896
|
|
2897
|
+
# @note When making an API call, you may pass UpdateDirectConnectGatewayAssociationRequest
|
2898
|
+
# data as a hash:
|
2899
|
+
#
|
2900
|
+
# {
|
2901
|
+
# association_id: "DirectConnectGatewayAssociationId",
|
2902
|
+
# add_allowed_prefixes_to_direct_connect_gateway: [
|
2903
|
+
# {
|
2904
|
+
# cidr: "CIDR",
|
2905
|
+
# },
|
2906
|
+
# ],
|
2907
|
+
# remove_allowed_prefixes_to_direct_connect_gateway: [
|
2908
|
+
# {
|
2909
|
+
# cidr: "CIDR",
|
2910
|
+
# },
|
2911
|
+
# ],
|
2912
|
+
# }
|
2913
|
+
#
|
2914
|
+
# @!attribute [rw] association_id
|
2915
|
+
# The ID of the Direct Connect gateway association.
|
2916
|
+
# @return [String]
|
2917
|
+
#
|
2918
|
+
# @!attribute [rw] add_allowed_prefixes_to_direct_connect_gateway
|
2919
|
+
# The Amazon VPC prefixes to advertise to the Direct Connect gateway.
|
2920
|
+
# @return [Array<Types::RouteFilterPrefix>]
|
2921
|
+
#
|
2922
|
+
# @!attribute [rw] remove_allowed_prefixes_to_direct_connect_gateway
|
2923
|
+
# The Amazon VPC prefixes to no longer advertise to the Direct Connect
|
2924
|
+
# gateway.
|
2925
|
+
# @return [Array<Types::RouteFilterPrefix>]
|
2926
|
+
#
|
2927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateDirectConnectGatewayAssociationRequest AWS API Documentation
|
2928
|
+
#
|
2929
|
+
class UpdateDirectConnectGatewayAssociationRequest < Struct.new(
|
2930
|
+
:association_id,
|
2931
|
+
:add_allowed_prefixes_to_direct_connect_gateway,
|
2932
|
+
:remove_allowed_prefixes_to_direct_connect_gateway)
|
2933
|
+
include Aws::Structure
|
2934
|
+
end
|
2935
|
+
|
2936
|
+
# @!attribute [rw] direct_connect_gateway_association
|
2937
|
+
# Information about an association between a Direct Connect gateway
|
2938
|
+
# and a virtual private gateway.
|
2939
|
+
# @return [Types::DirectConnectGatewayAssociation]
|
2940
|
+
#
|
2941
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateDirectConnectGatewayAssociationResult AWS API Documentation
|
2942
|
+
#
|
2943
|
+
class UpdateDirectConnectGatewayAssociationResult < Struct.new(
|
2944
|
+
:direct_connect_gateway_association)
|
2945
|
+
include Aws::Structure
|
2946
|
+
end
|
2947
|
+
|
2529
2948
|
# @note When making an API call, you may pass UpdateLagRequest
|
2530
2949
|
# data as a hash:
|
2531
2950
|
#
|