@aws-sdk/client-ec2 3.564.0 → 3.567.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.
|
@@ -26,8 +26,8 @@ declare const DeleteTransitGatewayRouteTableCommand_base: {
|
|
|
26
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
27
|
};
|
|
28
28
|
/**
|
|
29
|
-
* <p>Deletes the specified transit gateway route table.
|
|
30
|
-
*
|
|
29
|
+
* <p>Deletes the specified transit gateway route table. If there are any route tables associated with
|
|
30
|
+
* the transit gateway route table, you must first run <a>DisassociateRouteTable</a> before you can delete the transit gateway route table. This removes any route tables associated with the transit gateway route table.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -6297,7 +6297,10 @@ export interface LaunchTemplateInstanceNetworkInterfaceSpecificationRequest {
|
|
|
6297
6297
|
*/
|
|
6298
6298
|
Description?: string;
|
|
6299
6299
|
/**
|
|
6300
|
-
* <p>The device index for the network interface attachment
|
|
6300
|
+
* <p>The device index for the network interface attachment. Each network interface requires
|
|
6301
|
+
* a device index. If you create a launch template that includes secondary network interfaces
|
|
6302
|
+
* but not a primary network interface, then you must add a primary network interface as a
|
|
6303
|
+
* launch parameter when you launch an instance from the template.</p>
|
|
6301
6304
|
* @public
|
|
6302
6305
|
*/
|
|
6303
6306
|
DeviceIndex?: number;
|
|
@@ -4839,7 +4839,10 @@ export type VolumeState = (typeof VolumeState)[keyof typeof VolumeState];
|
|
|
4839
4839
|
*/
|
|
4840
4840
|
export interface Volume {
|
|
4841
4841
|
/**
|
|
4842
|
-
* <
|
|
4842
|
+
* <note>
|
|
4843
|
+
* <p>This parameter is not returned by CreateVolume.</p>
|
|
4844
|
+
* </note>
|
|
4845
|
+
* <p>Information about the volume attachments.</p>
|
|
4843
4846
|
* @public
|
|
4844
4847
|
*/
|
|
4845
4848
|
Attachments?: VolumeAttachment[];
|
|
@@ -4907,7 +4910,10 @@ export interface Volume {
|
|
|
4907
4910
|
*/
|
|
4908
4911
|
VolumeType?: VolumeType;
|
|
4909
4912
|
/**
|
|
4910
|
-
* <
|
|
4913
|
+
* <note>
|
|
4914
|
+
* <p>This parameter is not returned by CreateVolume.</p>
|
|
4915
|
+
* </note>
|
|
4916
|
+
* <p>Indicates whether the volume was created using fast snapshot restore.</p>
|
|
4911
4917
|
* @public
|
|
4912
4918
|
*/
|
|
4913
4919
|
FastRestored?: boolean;
|
|
@@ -4922,7 +4928,10 @@ export interface Volume {
|
|
|
4922
4928
|
*/
|
|
4923
4929
|
Throughput?: number;
|
|
4924
4930
|
/**
|
|
4925
|
-
* <
|
|
4931
|
+
* <note>
|
|
4932
|
+
* <p>This parameter is not returned by CreateVolume.</p>
|
|
4933
|
+
* </note>
|
|
4934
|
+
* <p>Reserved for future use.</p>
|
|
4926
4935
|
* @public
|
|
4927
4936
|
*/
|
|
4928
4937
|
SseType?: SSEType;
|
|
@@ -1454,6 +1454,13 @@ export interface DescribeTransitGatewaysRequest {
|
|
|
1454
1454
|
* <p>
|
|
1455
1455
|
* <code>transit-gateway-id</code> - The ID of the transit gateway.</p>
|
|
1456
1456
|
* </li>
|
|
1457
|
+
* <li>
|
|
1458
|
+
* <p>
|
|
1459
|
+
* <code>tag-key </code>- The key/value combination of a tag assigned to the resource. Use the
|
|
1460
|
+
* tag key in the filter name and the tag value as the filter value. For example, to
|
|
1461
|
+
* find all resources that have a tag with the key <code>Owner</code> and the value <code>TeamA</code>, specify
|
|
1462
|
+
* <code>tag:Owner</code> for the filter name and <code>TeamA</code> for the filter value.</p>
|
|
1463
|
+
* </li>
|
|
1457
1464
|
* </ul>
|
|
1458
1465
|
* @public
|
|
1459
1466
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.567.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-ec2",
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.567.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.567.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.567.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.567.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.567.0",
|
|
28
|
+
"@aws-sdk/middleware-sdk-ec2": "3.567.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.567.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.567.0",
|
|
31
|
+
"@aws-sdk/types": "3.567.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.567.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.567.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.567.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.2.0",
|
|
36
36
|
"@smithy/core": "^1.4.2",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.5.0",
|
|
@@ -62,8 +62,7 @@
|
|
|
62
62
|
"uuid": "^9.0.1"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@
|
|
66
|
-
"@tsconfig/node14": "1.0.3",
|
|
65
|
+
"@tsconfig/node16": "16.1.3",
|
|
67
66
|
"@types/node": "^14.14.31",
|
|
68
67
|
"@types/uuid": "^9.0.4",
|
|
69
68
|
"concurrently": "7.0.0",
|
|
@@ -72,7 +71,7 @@
|
|
|
72
71
|
"typescript": "~4.9.5"
|
|
73
72
|
},
|
|
74
73
|
"engines": {
|
|
75
|
-
"node": ">=
|
|
74
|
+
"node": ">=16.0.0"
|
|
76
75
|
},
|
|
77
76
|
"typesVersions": {
|
|
78
77
|
"<4.0": {
|