@aws-sdk/client-direct-connect 3.1068.0 → 3.1070.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-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +229 -249
- package/dist-cjs/models/DirectConnectServiceException.js +4 -8
- package/dist-cjs/models/errors.js +21 -16
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +428 -278
- package/dist-es/models/errors.js +12 -0
- package/dist-es/schemas/schemas_0.js +40 -21
- package/dist-types/commands/AllocateConnectionOnInterconnectCommand.d.ts +6 -0
- package/dist-types/commands/AllocateHostedConnectionCommand.d.ts +6 -0
- package/dist-types/commands/AllocatePrivateVirtualInterfaceCommand.d.ts +5 -0
- package/dist-types/commands/AllocatePublicVirtualInterfaceCommand.d.ts +5 -0
- package/dist-types/commands/AllocateTransitVirtualInterfaceCommand.d.ts +5 -0
- package/dist-types/commands/AssociateConnectionWithLagCommand.d.ts +9 -0
- package/dist-types/commands/AssociateHostedConnectionCommand.d.ts +6 -0
- package/dist-types/commands/AssociateVirtualInterfaceCommand.d.ts +1 -0
- package/dist-types/commands/CreateBGPPeerCommand.d.ts +1 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +6 -0
- package/dist-types/commands/CreateLagCommand.d.ts +12 -0
- package/dist-types/commands/CreatePrivateVirtualInterfaceCommand.d.ts +5 -0
- package/dist-types/commands/CreatePublicVirtualInterfaceCommand.d.ts +5 -0
- package/dist-types/commands/CreateTransitVirtualInterfaceCommand.d.ts +5 -0
- package/dist-types/commands/DeleteBGPPeerCommand.d.ts +1 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteLagCommand.d.ts +12 -0
- package/dist-types/commands/DescribeConnectionsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeConnectionsOnInterconnectCommand.d.ts +6 -0
- package/dist-types/commands/DescribeHostedConnectionsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeLagsCommand.d.ts +12 -0
- package/dist-types/commands/DescribeVirtualInterfacesCommand.d.ts +2 -1
- package/dist-types/commands/DisassociateConnectionFromLagCommand.d.ts +6 -0
- package/dist-types/commands/UpdateConnectionCommand.d.ts +6 -0
- package/dist-types/commands/UpdateLagCommand.d.ts +12 -0
- package/dist-types/commands/UpdateVirtualInterfaceAttributesCommand.d.ts +2 -0
- package/dist-types/models/errors.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +427 -225
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/models/errors.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +9 -9
|
@@ -49,6 +49,7 @@ declare const UpdateVirtualInterfaceAttributesCommand_base: {
|
|
|
49
49
|
* mtu: Number("int"),
|
|
50
50
|
* enableSiteLink: true || false,
|
|
51
51
|
* virtualInterfaceName: "STRING_VALUE",
|
|
52
|
+
* rateLimit: "STRING_VALUE",
|
|
52
53
|
* };
|
|
53
54
|
* const command = new UpdateVirtualInterfaceAttributesCommand(input);
|
|
54
55
|
* const response = await client.send(command);
|
|
@@ -103,6 +104,7 @@ declare const UpdateVirtualInterfaceAttributesCommand_base: {
|
|
|
103
104
|
* // },
|
|
104
105
|
* // ],
|
|
105
106
|
* // siteLinkEnabled: true || false,
|
|
107
|
+
* // rateLimit: "STRING_VALUE",
|
|
106
108
|
* // };
|
|
107
109
|
*
|
|
108
110
|
* ```
|
|
@@ -48,3 +48,15 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
48
48
|
*/
|
|
49
49
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
50
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>The rate limiter limit has been exceeded for the connection. You cannot add more rate limiters to virtual interfaces on this connection.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class LimitExceededException extends __BaseException {
|
|
56
|
+
readonly name: "LimitExceededException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
62
|
+
}
|