@aws-sdk/client-direct-connect 3.323.0 → 3.326.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 +26 -0
- package/dist-types/commands/AllocateConnectionOnInterconnectCommand.d.ts +39 -0
- package/dist-types/commands/AllocateHostedConnectionCommand.d.ts +39 -0
- package/dist-types/commands/AllocatePrivateVirtualInterfaceCommand.d.ts +53 -0
- package/dist-types/commands/AllocatePublicVirtualInterfaceCommand.d.ts +53 -0
- package/dist-types/commands/AllocateTransitVirtualInterfaceCommand.d.ts +55 -0
- package/dist-types/commands/AssociateConnectionWithLagCommand.d.ts +39 -0
- package/dist-types/commands/AssociateHostedConnectionCommand.d.ts +39 -0
- package/dist-types/commands/AssociateMacSecKeyCommand.d.ts +14 -0
- package/dist-types/commands/AssociateVirtualInterfaceCommand.d.ts +53 -0
- package/dist-types/commands/ConfirmConnectionCommand.d.ts +6 -0
- package/dist-types/commands/ConfirmCustomerAgreementCommand.d.ts +6 -0
- package/dist-types/commands/ConfirmPrivateVirtualInterfaceCommand.d.ts +6 -0
- package/dist-types/commands/ConfirmPublicVirtualInterfaceCommand.d.ts +6 -0
- package/dist-types/commands/ConfirmTransitVirtualInterfaceCommand.d.ts +6 -0
- package/dist-types/commands/CreateBGPPeerCommand.d.ts +55 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +39 -0
- package/dist-types/commands/CreateDirectConnectGatewayAssociationCommand.d.ts +26 -0
- package/dist-types/commands/CreateDirectConnectGatewayAssociationProposalCommand.d.ts +27 -0
- package/dist-types/commands/CreateDirectConnectGatewayCommand.d.ts +13 -0
- package/dist-types/commands/CreateInterconnectCommand.d.ts +25 -0
- package/dist-types/commands/CreateLagCommand.d.ts +75 -0
- package/dist-types/commands/CreatePrivateVirtualInterfaceCommand.d.ts +53 -0
- package/dist-types/commands/CreatePublicVirtualInterfaceCommand.d.ts +53 -0
- package/dist-types/commands/CreateTransitVirtualInterfaceCommand.d.ts +55 -0
- package/dist-types/commands/DeleteBGPPeerCommand.d.ts +55 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +39 -0
- package/dist-types/commands/DeleteDirectConnectGatewayAssociationCommand.d.ts +26 -0
- package/dist-types/commands/DeleteDirectConnectGatewayAssociationProposalCommand.d.ts +27 -0
- package/dist-types/commands/DeleteDirectConnectGatewayCommand.d.ts +13 -0
- package/dist-types/commands/DeleteInterconnectCommand.d.ts +6 -0
- package/dist-types/commands/DeleteLagCommand.d.ts +75 -0
- package/dist-types/commands/DeleteVirtualInterfaceCommand.d.ts +6 -0
- package/dist-types/commands/DescribeConnectionLoaCommand.d.ts +9 -0
- package/dist-types/commands/DescribeConnectionsCommand.d.ts +43 -0
- package/dist-types/commands/DescribeConnectionsOnInterconnectCommand.d.ts +43 -0
- package/dist-types/commands/DescribeCustomerMetadataCommand.d.ts +12 -0
- package/dist-types/commands/DescribeDirectConnectGatewayAssociationProposalsCommand.d.ts +30 -0
- package/dist-types/commands/DescribeDirectConnectGatewayAssociationsCommand.d.ts +29 -0
- package/dist-types/commands/DescribeDirectConnectGatewayAttachmentsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeDirectConnectGatewaysCommand.d.ts +16 -0
- package/dist-types/commands/DescribeHostedConnectionsCommand.d.ts +43 -0
- package/dist-types/commands/DescribeInterconnectLoaCommand.d.ts +9 -0
- package/dist-types/commands/DescribeInterconnectsCommand.d.ts +29 -0
- package/dist-types/commands/DescribeLagsCommand.d.ts +79 -0
- package/dist-types/commands/DescribeLoaCommand.d.ts +7 -0
- package/dist-types/commands/DescribeLocationsCommand.d.ts +21 -0
- package/dist-types/commands/DescribeRouterConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVirtualGatewaysCommand.d.ts +11 -0
- package/dist-types/commands/DescribeVirtualInterfacesCommand.d.ts +57 -0
- package/dist-types/commands/DisassociateConnectionFromLagCommand.d.ts +39 -0
- package/dist-types/commands/DisassociateMacSecKeyCommand.d.ts +14 -0
- package/dist-types/commands/ListVirtualInterfaceTestHistoryCommand.d.ts +20 -0
- package/dist-types/commands/StartBgpFailoverTestCommand.d.ts +17 -0
- package/dist-types/commands/StopBgpFailoverTestCommand.d.ts +17 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateConnectionCommand.d.ts +39 -0
- package/dist-types/commands/UpdateDirectConnectGatewayAssociationCommand.d.ts +26 -0
- package/dist-types/commands/UpdateDirectConnectGatewayCommand.d.ts +13 -0
- package/dist-types/commands/UpdateLagCommand.d.ts +75 -0
- package/dist-types/commands/UpdateVirtualInterfaceAttributesCommand.d.ts +53 -0
- package/package.json +16 -16
|
@@ -35,6 +35,47 @@ export interface DescribeHostedConnectionsCommandOutput extends Connections, __M
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DescribeHostedConnectionsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // Connections
|
|
39
|
+
* // connections: [ // ConnectionList
|
|
40
|
+
* // { // Connection
|
|
41
|
+
* // ownerAccount: "STRING_VALUE",
|
|
42
|
+
* // connectionId: "STRING_VALUE",
|
|
43
|
+
* // connectionName: "STRING_VALUE",
|
|
44
|
+
* // connectionState: "ordering" || "requested" || "pending" || "available" || "down" || "deleting" || "deleted" || "rejected" || "unknown",
|
|
45
|
+
* // region: "STRING_VALUE",
|
|
46
|
+
* // location: "STRING_VALUE",
|
|
47
|
+
* // bandwidth: "STRING_VALUE",
|
|
48
|
+
* // vlan: Number("int"),
|
|
49
|
+
* // partnerName: "STRING_VALUE",
|
|
50
|
+
* // loaIssueTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // lagId: "STRING_VALUE",
|
|
52
|
+
* // awsDevice: "STRING_VALUE",
|
|
53
|
+
* // jumboFrameCapable: true || false,
|
|
54
|
+
* // awsDeviceV2: "STRING_VALUE",
|
|
55
|
+
* // awsLogicalDeviceId: "STRING_VALUE",
|
|
56
|
+
* // hasLogicalRedundancy: "unknown" || "yes" || "no",
|
|
57
|
+
* // tags: [ // TagList
|
|
58
|
+
* // { // Tag
|
|
59
|
+
* // key: "STRING_VALUE", // required
|
|
60
|
+
* // value: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // providerName: "STRING_VALUE",
|
|
64
|
+
* // macSecCapable: true || false,
|
|
65
|
+
* // portEncryptionStatus: "STRING_VALUE",
|
|
66
|
+
* // encryptionMode: "STRING_VALUE",
|
|
67
|
+
* // macSecKeys: [ // MacSecKeyList
|
|
68
|
+
* // { // MacSecKey
|
|
69
|
+
* // secretARN: "STRING_VALUE",
|
|
70
|
+
* // ckn: "STRING_VALUE",
|
|
71
|
+
* // state: "STRING_VALUE",
|
|
72
|
+
* // startOn: "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
38
79
|
* ```
|
|
39
80
|
*
|
|
40
81
|
* @param DescribeHostedConnectionsCommandInput - {@link DescribeHostedConnectionsCommandInput}
|
|
@@ -49,6 +90,8 @@ export interface DescribeHostedConnectionsCommandOutput extends Connections, __M
|
|
|
49
90
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
50
91
|
* <p>A server-side error occurred.</p>
|
|
51
92
|
*
|
|
93
|
+
* @throws {@link DirectConnectServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
52
95
|
*
|
|
53
96
|
*/
|
|
54
97
|
export declare class DescribeHostedConnectionsCommand extends $Command<DescribeHostedConnectionsCommandInput, DescribeHostedConnectionsCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -39,6 +39,13 @@ export interface DescribeInterconnectLoaCommandOutput extends DescribeInterconne
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DescribeInterconnectLoaCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // DescribeInterconnectLoaResponse
|
|
43
|
+
* // loa: { // Loa
|
|
44
|
+
* // loaContent: "BLOB_VALUE",
|
|
45
|
+
* // loaContentType: "application/pdf",
|
|
46
|
+
* // },
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
42
49
|
* ```
|
|
43
50
|
*
|
|
44
51
|
* @param DescribeInterconnectLoaCommandInput - {@link DescribeInterconnectLoaCommandInput}
|
|
@@ -53,6 +60,8 @@ export interface DescribeInterconnectLoaCommandOutput extends DescribeInterconne
|
|
|
53
60
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
54
61
|
* <p>A server-side error occurred.</p>
|
|
55
62
|
*
|
|
63
|
+
* @throws {@link DirectConnectServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
56
65
|
*
|
|
57
66
|
*/
|
|
58
67
|
export declare class DescribeInterconnectLoaCommand extends $Command<DescribeInterconnectLoaCommandInput, DescribeInterconnectLoaCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,33 @@ export interface DescribeInterconnectsCommandOutput extends Interconnects, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeInterconnectsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // Interconnects
|
|
35
|
+
* // interconnects: [ // InterconnectList
|
|
36
|
+
* // { // Interconnect
|
|
37
|
+
* // interconnectId: "STRING_VALUE",
|
|
38
|
+
* // interconnectName: "STRING_VALUE",
|
|
39
|
+
* // interconnectState: "requested" || "pending" || "available" || "down" || "deleting" || "deleted" || "unknown",
|
|
40
|
+
* // region: "STRING_VALUE",
|
|
41
|
+
* // location: "STRING_VALUE",
|
|
42
|
+
* // bandwidth: "STRING_VALUE",
|
|
43
|
+
* // loaIssueTime: new Date("TIMESTAMP"),
|
|
44
|
+
* // lagId: "STRING_VALUE",
|
|
45
|
+
* // awsDevice: "STRING_VALUE",
|
|
46
|
+
* // jumboFrameCapable: true || false,
|
|
47
|
+
* // awsDeviceV2: "STRING_VALUE",
|
|
48
|
+
* // awsLogicalDeviceId: "STRING_VALUE",
|
|
49
|
+
* // hasLogicalRedundancy: "unknown" || "yes" || "no",
|
|
50
|
+
* // tags: [ // TagList
|
|
51
|
+
* // { // Tag
|
|
52
|
+
* // key: "STRING_VALUE", // required
|
|
53
|
+
* // value: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // providerName: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
34
61
|
* ```
|
|
35
62
|
*
|
|
36
63
|
* @param DescribeInterconnectsCommandInput - {@link DescribeInterconnectsCommandInput}
|
|
@@ -45,6 +72,8 @@ export interface DescribeInterconnectsCommandOutput extends Interconnects, __Met
|
|
|
45
72
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
46
73
|
* <p>A server-side error occurred.</p>
|
|
47
74
|
*
|
|
75
|
+
* @throws {@link DirectConnectServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
48
77
|
*
|
|
49
78
|
*/
|
|
50
79
|
export declare class DescribeInterconnectsCommand extends $Command<DescribeInterconnectsCommandInput, DescribeInterconnectsCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,83 @@ export interface DescribeLagsCommandOutput extends Lags, __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeLagsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // Lags
|
|
35
|
+
* // lags: [ // LagList
|
|
36
|
+
* // { // Lag
|
|
37
|
+
* // connectionsBandwidth: "STRING_VALUE",
|
|
38
|
+
* // numberOfConnections: Number("int"),
|
|
39
|
+
* // lagId: "STRING_VALUE",
|
|
40
|
+
* // ownerAccount: "STRING_VALUE",
|
|
41
|
+
* // lagName: "STRING_VALUE",
|
|
42
|
+
* // lagState: "requested" || "pending" || "available" || "down" || "deleting" || "deleted" || "unknown",
|
|
43
|
+
* // location: "STRING_VALUE",
|
|
44
|
+
* // region: "STRING_VALUE",
|
|
45
|
+
* // minimumLinks: Number("int"),
|
|
46
|
+
* // awsDevice: "STRING_VALUE",
|
|
47
|
+
* // awsDeviceV2: "STRING_VALUE",
|
|
48
|
+
* // awsLogicalDeviceId: "STRING_VALUE",
|
|
49
|
+
* // connections: [ // ConnectionList
|
|
50
|
+
* // { // Connection
|
|
51
|
+
* // ownerAccount: "STRING_VALUE",
|
|
52
|
+
* // connectionId: "STRING_VALUE",
|
|
53
|
+
* // connectionName: "STRING_VALUE",
|
|
54
|
+
* // connectionState: "ordering" || "requested" || "pending" || "available" || "down" || "deleting" || "deleted" || "rejected" || "unknown",
|
|
55
|
+
* // region: "STRING_VALUE",
|
|
56
|
+
* // location: "STRING_VALUE",
|
|
57
|
+
* // bandwidth: "STRING_VALUE",
|
|
58
|
+
* // vlan: Number("int"),
|
|
59
|
+
* // partnerName: "STRING_VALUE",
|
|
60
|
+
* // loaIssueTime: new Date("TIMESTAMP"),
|
|
61
|
+
* // lagId: "STRING_VALUE",
|
|
62
|
+
* // awsDevice: "STRING_VALUE",
|
|
63
|
+
* // jumboFrameCapable: true || false,
|
|
64
|
+
* // awsDeviceV2: "STRING_VALUE",
|
|
65
|
+
* // awsLogicalDeviceId: "STRING_VALUE",
|
|
66
|
+
* // hasLogicalRedundancy: "unknown" || "yes" || "no",
|
|
67
|
+
* // tags: [ // TagList
|
|
68
|
+
* // { // Tag
|
|
69
|
+
* // key: "STRING_VALUE", // required
|
|
70
|
+
* // value: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // providerName: "STRING_VALUE",
|
|
74
|
+
* // macSecCapable: true || false,
|
|
75
|
+
* // portEncryptionStatus: "STRING_VALUE",
|
|
76
|
+
* // encryptionMode: "STRING_VALUE",
|
|
77
|
+
* // macSecKeys: [ // MacSecKeyList
|
|
78
|
+
* // { // MacSecKey
|
|
79
|
+
* // secretARN: "STRING_VALUE",
|
|
80
|
+
* // ckn: "STRING_VALUE",
|
|
81
|
+
* // state: "STRING_VALUE",
|
|
82
|
+
* // startOn: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
84
|
+
* // ],
|
|
85
|
+
* // },
|
|
86
|
+
* // ],
|
|
87
|
+
* // allowsHostedConnections: true || false,
|
|
88
|
+
* // jumboFrameCapable: true || false,
|
|
89
|
+
* // hasLogicalRedundancy: "unknown" || "yes" || "no",
|
|
90
|
+
* // tags: [
|
|
91
|
+
* // {
|
|
92
|
+
* // key: "STRING_VALUE", // required
|
|
93
|
+
* // value: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // ],
|
|
96
|
+
* // providerName: "STRING_VALUE",
|
|
97
|
+
* // macSecCapable: true || false,
|
|
98
|
+
* // encryptionMode: "STRING_VALUE",
|
|
99
|
+
* // macSecKeys: [
|
|
100
|
+
* // {
|
|
101
|
+
* // secretARN: "STRING_VALUE",
|
|
102
|
+
* // ckn: "STRING_VALUE",
|
|
103
|
+
* // state: "STRING_VALUE",
|
|
104
|
+
* // startOn: "STRING_VALUE",
|
|
105
|
+
* // },
|
|
106
|
+
* // ],
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // };
|
|
110
|
+
*
|
|
34
111
|
* ```
|
|
35
112
|
*
|
|
36
113
|
* @param DescribeLagsCommandInput - {@link DescribeLagsCommandInput}
|
|
@@ -45,6 +122,8 @@ export interface DescribeLagsCommandOutput extends Lags, __MetadataBearer {
|
|
|
45
122
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
46
123
|
* <p>A server-side error occurred.</p>
|
|
47
124
|
*
|
|
125
|
+
* @throws {@link DirectConnectServiceException}
|
|
126
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
48
127
|
*
|
|
49
128
|
*/
|
|
50
129
|
export declare class DescribeLagsCommand extends $Command<DescribeLagsCommandInput, DescribeLagsCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -36,6 +36,11 @@ export interface DescribeLoaCommandOutput extends Loa, __MetadataBearer {
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DescribeLoaCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // Loa
|
|
40
|
+
* // loaContent: "BLOB_VALUE",
|
|
41
|
+
* // loaContentType: "application/pdf",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
41
46
|
* @param DescribeLoaCommandInput - {@link DescribeLoaCommandInput}
|
|
@@ -50,6 +55,8 @@ export interface DescribeLoaCommandOutput extends Loa, __MetadataBearer {
|
|
|
50
55
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
51
56
|
* <p>A server-side error occurred.</p>
|
|
52
57
|
*
|
|
58
|
+
* @throws {@link DirectConnectServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
53
60
|
*
|
|
54
61
|
*/
|
|
55
62
|
export declare class DescribeLoaCommand extends $Command<DescribeLoaCommandInput, DescribeLoaCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -30,6 +30,25 @@ export interface DescribeLocationsCommandOutput extends Locations, __MetadataBea
|
|
|
30
30
|
* const input = {};
|
|
31
31
|
* const command = new DescribeLocationsCommand(input);
|
|
32
32
|
* const response = await client.send(command);
|
|
33
|
+
* // { // Locations
|
|
34
|
+
* // locations: [ // LocationList
|
|
35
|
+
* // { // Location
|
|
36
|
+
* // locationCode: "STRING_VALUE",
|
|
37
|
+
* // locationName: "STRING_VALUE",
|
|
38
|
+
* // region: "STRING_VALUE",
|
|
39
|
+
* // availablePortSpeeds: [ // AvailablePortSpeeds
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // availableProviders: [ // ProviderList
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // availableMacSecPortSpeeds: [ // AvailableMacSecPortSpeeds
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
33
52
|
* ```
|
|
34
53
|
*
|
|
35
54
|
* @param DescribeLocationsCommandInput - {@link DescribeLocationsCommandInput}
|
|
@@ -44,6 +63,8 @@ export interface DescribeLocationsCommandOutput extends Locations, __MetadataBea
|
|
|
44
63
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
45
64
|
* <p>A server-side error occurred.</p>
|
|
46
65
|
*
|
|
66
|
+
* @throws {@link DirectConnectServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
47
68
|
*
|
|
48
69
|
*/
|
|
49
70
|
export declare class DescribeLocationsCommand extends $Command<DescribeLocationsCommandInput, DescribeLocationsCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -34,6 +34,20 @@ export interface DescribeRouterConfigurationCommandOutput extends DescribeRouter
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribeRouterConfigurationCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DescribeRouterConfigurationResponse
|
|
38
|
+
* // customerRouterConfig: "STRING_VALUE",
|
|
39
|
+
* // router: { // RouterType
|
|
40
|
+
* // vendor: "STRING_VALUE",
|
|
41
|
+
* // platform: "STRING_VALUE",
|
|
42
|
+
* // software: "STRING_VALUE",
|
|
43
|
+
* // xsltTemplateName: "STRING_VALUE",
|
|
44
|
+
* // xsltTemplateNameForMacSec: "STRING_VALUE",
|
|
45
|
+
* // routerTypeIdentifier: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // virtualInterfaceId: "STRING_VALUE",
|
|
48
|
+
* // virtualInterfaceName: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
37
51
|
* ```
|
|
38
52
|
*
|
|
39
53
|
* @param DescribeRouterConfigurationCommandInput - {@link DescribeRouterConfigurationCommandInput}
|
|
@@ -48,6 +62,8 @@ export interface DescribeRouterConfigurationCommandOutput extends DescribeRouter
|
|
|
48
62
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
49
63
|
* <p>A server-side error occurred.</p>
|
|
50
64
|
*
|
|
65
|
+
* @throws {@link DirectConnectServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
51
67
|
*
|
|
52
68
|
*/
|
|
53
69
|
export declare class DescribeRouterConfigurationCommand extends $Command<DescribeRouterConfigurationCommandInput, DescribeRouterConfigurationCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeTagsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeTagsResponse
|
|
37
|
+
* // resourceTags: [ // ResourceTagList
|
|
38
|
+
* // { // ResourceTag
|
|
39
|
+
* // resourceArn: "STRING_VALUE",
|
|
40
|
+
* // tags: [ // TagList
|
|
41
|
+
* // { // Tag
|
|
42
|
+
* // key: "STRING_VALUE", // required
|
|
43
|
+
* // value: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param DescribeTagsCommandInput - {@link DescribeTagsCommandInput}
|
|
@@ -47,6 +61,8 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
|
|
|
47
61
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
48
62
|
* <p>A server-side error occurred.</p>
|
|
49
63
|
*
|
|
64
|
+
* @throws {@link DirectConnectServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
50
66
|
*
|
|
51
67
|
*/
|
|
52
68
|
export declare class DescribeTagsCommand extends $Command<DescribeTagsCommandInput, DescribeTagsCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -30,6 +30,15 @@ export interface DescribeVirtualGatewaysCommandOutput extends VirtualGateways, _
|
|
|
30
30
|
* const input = {};
|
|
31
31
|
* const command = new DescribeVirtualGatewaysCommand(input);
|
|
32
32
|
* const response = await client.send(command);
|
|
33
|
+
* // { // VirtualGateways
|
|
34
|
+
* // virtualGateways: [ // VirtualGatewayList
|
|
35
|
+
* // { // VirtualGateway
|
|
36
|
+
* // virtualGatewayId: "STRING_VALUE",
|
|
37
|
+
* // virtualGatewayState: "STRING_VALUE",
|
|
38
|
+
* // },
|
|
39
|
+
* // ],
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
33
42
|
* ```
|
|
34
43
|
*
|
|
35
44
|
* @param DescribeVirtualGatewaysCommandInput - {@link DescribeVirtualGatewaysCommandInput}
|
|
@@ -44,6 +53,8 @@ export interface DescribeVirtualGatewaysCommandOutput extends VirtualGateways, _
|
|
|
44
53
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
45
54
|
* <p>A server-side error occurred.</p>
|
|
46
55
|
*
|
|
56
|
+
* @throws {@link DirectConnectServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
47
58
|
*
|
|
48
59
|
*/
|
|
49
60
|
export declare class DescribeVirtualGatewaysCommand extends $Command<DescribeVirtualGatewaysCommandInput, DescribeVirtualGatewaysCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -36,6 +36,61 @@ export interface DescribeVirtualInterfacesCommandOutput extends VirtualInterface
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DescribeVirtualInterfacesCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // VirtualInterfaces
|
|
40
|
+
* // virtualInterfaces: [ // VirtualInterfaceList
|
|
41
|
+
* // { // VirtualInterface
|
|
42
|
+
* // ownerAccount: "STRING_VALUE",
|
|
43
|
+
* // virtualInterfaceId: "STRING_VALUE",
|
|
44
|
+
* // location: "STRING_VALUE",
|
|
45
|
+
* // connectionId: "STRING_VALUE",
|
|
46
|
+
* // virtualInterfaceType: "STRING_VALUE",
|
|
47
|
+
* // virtualInterfaceName: "STRING_VALUE",
|
|
48
|
+
* // vlan: Number("int"),
|
|
49
|
+
* // asn: Number("int"),
|
|
50
|
+
* // amazonSideAsn: Number("long"),
|
|
51
|
+
* // authKey: "STRING_VALUE",
|
|
52
|
+
* // amazonAddress: "STRING_VALUE",
|
|
53
|
+
* // customerAddress: "STRING_VALUE",
|
|
54
|
+
* // addressFamily: "ipv4" || "ipv6",
|
|
55
|
+
* // virtualInterfaceState: "confirming" || "verifying" || "pending" || "available" || "down" || "deleting" || "deleted" || "rejected" || "unknown",
|
|
56
|
+
* // customerRouterConfig: "STRING_VALUE",
|
|
57
|
+
* // mtu: Number("int"),
|
|
58
|
+
* // jumboFrameCapable: true || false,
|
|
59
|
+
* // virtualGatewayId: "STRING_VALUE",
|
|
60
|
+
* // directConnectGatewayId: "STRING_VALUE",
|
|
61
|
+
* // routeFilterPrefixes: [ // RouteFilterPrefixList
|
|
62
|
+
* // { // RouteFilterPrefix
|
|
63
|
+
* // cidr: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // bgpPeers: [ // BGPPeerList
|
|
67
|
+
* // { // BGPPeer
|
|
68
|
+
* // bgpPeerId: "STRING_VALUE",
|
|
69
|
+
* // asn: Number("int"),
|
|
70
|
+
* // authKey: "STRING_VALUE",
|
|
71
|
+
* // addressFamily: "ipv4" || "ipv6",
|
|
72
|
+
* // amazonAddress: "STRING_VALUE",
|
|
73
|
+
* // customerAddress: "STRING_VALUE",
|
|
74
|
+
* // bgpPeerState: "verifying" || "pending" || "available" || "deleting" || "deleted",
|
|
75
|
+
* // bgpStatus: "up" || "down" || "unknown",
|
|
76
|
+
* // awsDeviceV2: "STRING_VALUE",
|
|
77
|
+
* // awsLogicalDeviceId: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // region: "STRING_VALUE",
|
|
81
|
+
* // awsDeviceV2: "STRING_VALUE",
|
|
82
|
+
* // awsLogicalDeviceId: "STRING_VALUE",
|
|
83
|
+
* // tags: [ // TagList
|
|
84
|
+
* // { // Tag
|
|
85
|
+
* // key: "STRING_VALUE", // required
|
|
86
|
+
* // value: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // ],
|
|
89
|
+
* // siteLinkEnabled: true || false,
|
|
90
|
+
* // },
|
|
91
|
+
* // ],
|
|
92
|
+
* // };
|
|
93
|
+
*
|
|
39
94
|
* ```
|
|
40
95
|
*
|
|
41
96
|
* @param DescribeVirtualInterfacesCommandInput - {@link DescribeVirtualInterfacesCommandInput}
|
|
@@ -50,6 +105,8 @@ export interface DescribeVirtualInterfacesCommandOutput extends VirtualInterface
|
|
|
50
105
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
51
106
|
* <p>A server-side error occurred.</p>
|
|
52
107
|
*
|
|
108
|
+
* @throws {@link DirectConnectServiceException}
|
|
109
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
53
110
|
*
|
|
54
111
|
*/
|
|
55
112
|
export declare class DescribeVirtualInterfacesCommand extends $Command<DescribeVirtualInterfacesCommandInput, DescribeVirtualInterfacesCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -41,6 +41,43 @@ export interface DisassociateConnectionFromLagCommandOutput extends Connection,
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new DisassociateConnectionFromLagCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // Connection
|
|
45
|
+
* // ownerAccount: "STRING_VALUE",
|
|
46
|
+
* // connectionId: "STRING_VALUE",
|
|
47
|
+
* // connectionName: "STRING_VALUE",
|
|
48
|
+
* // connectionState: "ordering" || "requested" || "pending" || "available" || "down" || "deleting" || "deleted" || "rejected" || "unknown",
|
|
49
|
+
* // region: "STRING_VALUE",
|
|
50
|
+
* // location: "STRING_VALUE",
|
|
51
|
+
* // bandwidth: "STRING_VALUE",
|
|
52
|
+
* // vlan: Number("int"),
|
|
53
|
+
* // partnerName: "STRING_VALUE",
|
|
54
|
+
* // loaIssueTime: new Date("TIMESTAMP"),
|
|
55
|
+
* // lagId: "STRING_VALUE",
|
|
56
|
+
* // awsDevice: "STRING_VALUE",
|
|
57
|
+
* // jumboFrameCapable: true || false,
|
|
58
|
+
* // awsDeviceV2: "STRING_VALUE",
|
|
59
|
+
* // awsLogicalDeviceId: "STRING_VALUE",
|
|
60
|
+
* // hasLogicalRedundancy: "unknown" || "yes" || "no",
|
|
61
|
+
* // tags: [ // TagList
|
|
62
|
+
* // { // Tag
|
|
63
|
+
* // key: "STRING_VALUE", // required
|
|
64
|
+
* // value: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // providerName: "STRING_VALUE",
|
|
68
|
+
* // macSecCapable: true || false,
|
|
69
|
+
* // portEncryptionStatus: "STRING_VALUE",
|
|
70
|
+
* // encryptionMode: "STRING_VALUE",
|
|
71
|
+
* // macSecKeys: [ // MacSecKeyList
|
|
72
|
+
* // { // MacSecKey
|
|
73
|
+
* // secretARN: "STRING_VALUE",
|
|
74
|
+
* // ckn: "STRING_VALUE",
|
|
75
|
+
* // state: "STRING_VALUE",
|
|
76
|
+
* // startOn: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
44
81
|
* ```
|
|
45
82
|
*
|
|
46
83
|
* @param DisassociateConnectionFromLagCommandInput - {@link DisassociateConnectionFromLagCommandInput}
|
|
@@ -55,6 +92,8 @@ export interface DisassociateConnectionFromLagCommandOutput extends Connection,
|
|
|
55
92
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
56
93
|
* <p>A server-side error occurred.</p>
|
|
57
94
|
*
|
|
95
|
+
* @throws {@link DirectConnectServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
58
97
|
*
|
|
59
98
|
*/
|
|
60
99
|
export declare class DisassociateConnectionFromLagCommand extends $Command<DisassociateConnectionFromLagCommandInput, DisassociateConnectionFromLagCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -32,6 +32,18 @@ export interface DisassociateMacSecKeyCommandOutput extends DisassociateMacSecKe
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DisassociateMacSecKeyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DisassociateMacSecKeyResponse
|
|
36
|
+
* // connectionId: "STRING_VALUE",
|
|
37
|
+
* // macSecKeys: [ // MacSecKeyList
|
|
38
|
+
* // { // MacSecKey
|
|
39
|
+
* // secretARN: "STRING_VALUE",
|
|
40
|
+
* // ckn: "STRING_VALUE",
|
|
41
|
+
* // state: "STRING_VALUE",
|
|
42
|
+
* // startOn: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
35
47
|
* ```
|
|
36
48
|
*
|
|
37
49
|
* @param DisassociateMacSecKeyCommandInput - {@link DisassociateMacSecKeyCommandInput}
|
|
@@ -46,6 +58,8 @@ export interface DisassociateMacSecKeyCommandOutput extends DisassociateMacSecKe
|
|
|
46
58
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
47
59
|
* <p>A server-side error occurred.</p>
|
|
48
60
|
*
|
|
61
|
+
* @throws {@link DirectConnectServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
49
63
|
*
|
|
50
64
|
*/
|
|
51
65
|
export declare class DisassociateMacSecKeyCommand extends $Command<DisassociateMacSecKeyCommandInput, DisassociateMacSecKeyCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -38,6 +38,24 @@ export interface ListVirtualInterfaceTestHistoryCommandOutput extends ListVirtua
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListVirtualInterfaceTestHistoryCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListVirtualInterfaceTestHistoryResponse
|
|
42
|
+
* // virtualInterfaceTestHistory: [ // VirtualInterfaceTestHistoryList
|
|
43
|
+
* // { // VirtualInterfaceTestHistory
|
|
44
|
+
* // testId: "STRING_VALUE",
|
|
45
|
+
* // virtualInterfaceId: "STRING_VALUE",
|
|
46
|
+
* // bgpPeers: [ // BGPPeerIdList
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // status: "STRING_VALUE",
|
|
50
|
+
* // ownerAccount: "STRING_VALUE",
|
|
51
|
+
* // testDurationInMinutes: Number("int"),
|
|
52
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // nextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
41
59
|
* ```
|
|
42
60
|
*
|
|
43
61
|
* @param ListVirtualInterfaceTestHistoryCommandInput - {@link ListVirtualInterfaceTestHistoryCommandInput}
|
|
@@ -52,6 +70,8 @@ export interface ListVirtualInterfaceTestHistoryCommandOutput extends ListVirtua
|
|
|
52
70
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
53
71
|
* <p>A server-side error occurred.</p>
|
|
54
72
|
*
|
|
73
|
+
* @throws {@link DirectConnectServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
55
75
|
*
|
|
56
76
|
*/
|
|
57
77
|
export declare class ListVirtualInterfaceTestHistoryCommand extends $Command<ListVirtualInterfaceTestHistoryCommandInput, ListVirtualInterfaceTestHistoryCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -38,6 +38,21 @@ export interface StartBgpFailoverTestCommandOutput extends StartBgpFailoverTestR
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new StartBgpFailoverTestCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // StartBgpFailoverTestResponse
|
|
42
|
+
* // virtualInterfaceTest: { // VirtualInterfaceTestHistory
|
|
43
|
+
* // testId: "STRING_VALUE",
|
|
44
|
+
* // virtualInterfaceId: "STRING_VALUE",
|
|
45
|
+
* // bgpPeers: [ // BGPPeerIdList
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // status: "STRING_VALUE",
|
|
49
|
+
* // ownerAccount: "STRING_VALUE",
|
|
50
|
+
* // testDurationInMinutes: Number("int"),
|
|
51
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // },
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
41
56
|
* ```
|
|
42
57
|
*
|
|
43
58
|
* @param StartBgpFailoverTestCommandInput - {@link StartBgpFailoverTestCommandInput}
|
|
@@ -52,6 +67,8 @@ export interface StartBgpFailoverTestCommandOutput extends StartBgpFailoverTestR
|
|
|
52
67
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
53
68
|
* <p>A server-side error occurred.</p>
|
|
54
69
|
*
|
|
70
|
+
* @throws {@link DirectConnectServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
55
72
|
*
|
|
56
73
|
*/
|
|
57
74
|
export declare class StartBgpFailoverTestCommand extends $Command<StartBgpFailoverTestCommandInput, StartBgpFailoverTestCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -31,6 +31,21 @@ export interface StopBgpFailoverTestCommandOutput extends StopBgpFailoverTestRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopBgpFailoverTestCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StopBgpFailoverTestResponse
|
|
35
|
+
* // virtualInterfaceTest: { // VirtualInterfaceTestHistory
|
|
36
|
+
* // testId: "STRING_VALUE",
|
|
37
|
+
* // virtualInterfaceId: "STRING_VALUE",
|
|
38
|
+
* // bgpPeers: [ // BGPPeerIdList
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // status: "STRING_VALUE",
|
|
42
|
+
* // ownerAccount: "STRING_VALUE",
|
|
43
|
+
* // testDurationInMinutes: Number("int"),
|
|
44
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
45
|
+
* // endTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // },
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
34
49
|
* ```
|
|
35
50
|
*
|
|
36
51
|
* @param StopBgpFailoverTestCommandInput - {@link StopBgpFailoverTestCommandInput}
|
|
@@ -45,6 +60,8 @@ export interface StopBgpFailoverTestCommandOutput extends StopBgpFailoverTestRes
|
|
|
45
60
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
46
61
|
* <p>A server-side error occurred.</p>
|
|
47
62
|
*
|
|
63
|
+
* @throws {@link DirectConnectServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
48
65
|
*
|
|
49
66
|
*/
|
|
50
67
|
export declare class StopBgpFailoverTestCommand extends $Command<StopBgpFailoverTestCommandInput, StopBgpFailoverTestCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new TagResourceCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
58
60
|
* @throws {@link TooManyTagsException} (client fault)
|
|
59
61
|
* <p>You have reached the limit on the number of tags that can be assigned.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link DirectConnectServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DirectConnectClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
48
50
|
* @throws {@link DirectConnectServerException} (server fault)
|
|
49
51
|
* <p>A server-side error occurred.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link DirectConnectServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from DirectConnect service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DirectConnectClientResolvedConfig> {
|