@aws-sdk/client-direct-connect 3.699.0 → 3.700.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.
- package/dist-types/commands/AcceptDirectConnectGatewayAssociationProposalCommand.d.ts +5 -0
- package/dist-types/commands/CreateDirectConnectGatewayAssociationCommand.d.ts +5 -0
- package/dist-types/commands/DeleteDirectConnectGatewayAssociationCommand.d.ts +5 -0
- package/dist-types/commands/DescribeDirectConnectGatewayAssociationsCommand.d.ts +5 -0
- package/dist-types/commands/UpdateDirectConnectGatewayAssociationCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +26 -0
- package/dist-types/ts3.4/models/models_0.d.ts +6 -0
- package/package.json +1 -1
|
@@ -64,6 +64,11 @@ declare const AcceptDirectConnectGatewayAssociationProposalCommand_base: {
|
|
|
64
64
|
* // cidr: "STRING_VALUE",
|
|
65
65
|
* // },
|
|
66
66
|
* // ],
|
|
67
|
+
* // associatedCoreNetwork: { // AssociatedCoreNetwork
|
|
68
|
+
* // id: "STRING_VALUE",
|
|
69
|
+
* // ownerAccount: "STRING_VALUE",
|
|
70
|
+
* // attachmentId: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
67
72
|
* // virtualGatewayId: "STRING_VALUE",
|
|
68
73
|
* // virtualGatewayRegion: "STRING_VALUE",
|
|
69
74
|
* // virtualGatewayOwnerAccount: "STRING_VALUE",
|
|
@@ -65,6 +65,11 @@ declare const CreateDirectConnectGatewayAssociationCommand_base: {
|
|
|
65
65
|
* // cidr: "STRING_VALUE",
|
|
66
66
|
* // },
|
|
67
67
|
* // ],
|
|
68
|
+
* // associatedCoreNetwork: { // AssociatedCoreNetwork
|
|
69
|
+
* // id: "STRING_VALUE",
|
|
70
|
+
* // ownerAccount: "STRING_VALUE",
|
|
71
|
+
* // attachmentId: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
68
73
|
* // virtualGatewayId: "STRING_VALUE",
|
|
69
74
|
* // virtualGatewayRegion: "STRING_VALUE",
|
|
70
75
|
* // virtualGatewayOwnerAccount: "STRING_VALUE",
|
|
@@ -60,6 +60,11 @@ declare const DeleteDirectConnectGatewayAssociationCommand_base: {
|
|
|
60
60
|
* // cidr: "STRING_VALUE",
|
|
61
61
|
* // },
|
|
62
62
|
* // ],
|
|
63
|
+
* // associatedCoreNetwork: { // AssociatedCoreNetwork
|
|
64
|
+
* // id: "STRING_VALUE",
|
|
65
|
+
* // ownerAccount: "STRING_VALUE",
|
|
66
|
+
* // attachmentId: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
63
68
|
* // virtualGatewayId: "STRING_VALUE",
|
|
64
69
|
* // virtualGatewayRegion: "STRING_VALUE",
|
|
65
70
|
* // virtualGatewayOwnerAccount: "STRING_VALUE",
|
|
@@ -85,6 +85,11 @@ declare const DescribeDirectConnectGatewayAssociationsCommand_base: {
|
|
|
85
85
|
* // cidr: "STRING_VALUE",
|
|
86
86
|
* // },
|
|
87
87
|
* // ],
|
|
88
|
+
* // associatedCoreNetwork: { // AssociatedCoreNetwork
|
|
89
|
+
* // id: "STRING_VALUE",
|
|
90
|
+
* // ownerAccount: "STRING_VALUE",
|
|
91
|
+
* // attachmentId: "STRING_VALUE",
|
|
92
|
+
* // },
|
|
88
93
|
* // virtualGatewayId: "STRING_VALUE",
|
|
89
94
|
* // virtualGatewayRegion: "STRING_VALUE",
|
|
90
95
|
* // virtualGatewayOwnerAccount: "STRING_VALUE",
|
|
@@ -68,6 +68,11 @@ declare const UpdateDirectConnectGatewayAssociationCommand_base: {
|
|
|
68
68
|
* // cidr: "STRING_VALUE",
|
|
69
69
|
* // },
|
|
70
70
|
* // ],
|
|
71
|
+
* // associatedCoreNetwork: { // AssociatedCoreNetwork
|
|
72
|
+
* // id: "STRING_VALUE",
|
|
73
|
+
* // ownerAccount: "STRING_VALUE",
|
|
74
|
+
* // attachmentId: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
71
76
|
* // virtualGatewayId: "STRING_VALUE",
|
|
72
77
|
* // virtualGatewayRegion: "STRING_VALUE",
|
|
73
78
|
* // virtualGatewayOwnerAccount: "STRING_VALUE",
|
|
@@ -38,6 +38,27 @@ export interface AcceptDirectConnectGatewayAssociationProposalRequest {
|
|
|
38
38
|
*/
|
|
39
39
|
overrideAllowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
40
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>The Amazon Web Services Cloud WAN core network that the Direct Connect attachment is associated with.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export interface AssociatedCoreNetwork {
|
|
46
|
+
/**
|
|
47
|
+
* <p>The ID of the Cloud WAN core network.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
id?: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The account owner of the Cloud WAN core network.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
ownerAccount?: string | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>the ID of the Direct Connect attachment</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
attachmentId?: string | undefined;
|
|
61
|
+
}
|
|
41
62
|
/**
|
|
42
63
|
* @public
|
|
43
64
|
* @enum
|
|
@@ -154,6 +175,11 @@ export interface DirectConnectGatewayAssociation {
|
|
|
154
175
|
* @public
|
|
155
176
|
*/
|
|
156
177
|
allowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
178
|
+
/**
|
|
179
|
+
* <p>The ID of the Cloud WAN core network associated with the Direct Connect attachment.</p>
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
associatedCoreNetwork?: AssociatedCoreNetwork | undefined;
|
|
157
183
|
/**
|
|
158
184
|
* <p>The ID of the virtual private gateway. Applies only to private virtual interfaces.</p>
|
|
159
185
|
* @public
|
|
@@ -11,6 +11,11 @@ export interface AcceptDirectConnectGatewayAssociationProposalRequest {
|
|
|
11
11
|
| RouteFilterPrefix[]
|
|
12
12
|
| undefined;
|
|
13
13
|
}
|
|
14
|
+
export interface AssociatedCoreNetwork {
|
|
15
|
+
id?: string | undefined;
|
|
16
|
+
ownerAccount?: string | undefined;
|
|
17
|
+
attachmentId?: string | undefined;
|
|
18
|
+
}
|
|
14
19
|
export declare const GatewayType: {
|
|
15
20
|
readonly TransitGateway: "transitGateway";
|
|
16
21
|
readonly VirtualPrivateGateway: "virtualPrivateGateway";
|
|
@@ -39,6 +44,7 @@ export interface DirectConnectGatewayAssociation {
|
|
|
39
44
|
associatedGateway?: AssociatedGateway | undefined;
|
|
40
45
|
associationId?: string | undefined;
|
|
41
46
|
allowedPrefixesToDirectConnectGateway?: RouteFilterPrefix[] | undefined;
|
|
47
|
+
associatedCoreNetwork?: AssociatedCoreNetwork | undefined;
|
|
42
48
|
virtualGatewayId?: string | undefined;
|
|
43
49
|
virtualGatewayRegion?: string | undefined;
|
|
44
50
|
virtualGatewayOwnerAccount?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-direct-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Direct Connect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.700.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-direct-connect",
|