@aws-sdk/client-ec2 3.972.0 → 3.974.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/index.js +60 -16
- package/dist-es/schemas/schemas_0.js +59 -16
- package/dist-types/commands/AttachVolumeCommand.d.ts +2 -0
- package/dist-types/commands/CopyVolumesCommand.d.ts +1 -0
- package/dist-types/commands/CreateImageCommand.d.ts +1 -0
- package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -0
- package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -0
- package/dist-types/commands/CreateVolumeCommand.d.ts +1 -0
- package/dist-types/commands/DescribeImageAttributeCommand.d.ts +1 -0
- package/dist-types/commands/DescribeImagesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInstanceTypesCommand.d.ts +17 -0
- package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeVolumesCommand.d.ts +1 -0
- package/dist-types/commands/DetachVolumeCommand.d.ts +1 -0
- package/dist-types/commands/GetInstanceUefiDataCommand.d.ts +2 -1
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -0
- package/dist-types/commands/RegisterImageCommand.d.ts +1 -0
- package/dist-types/commands/RequestSpotFleetCommand.d.ts +1 -0
- package/dist-types/commands/RequestSpotInstancesCommand.d.ts +2 -0
- package/dist-types/commands/RunInstancesCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +10 -0
- package/dist-types/models/models_1.d.ts +15 -0
- package/dist-types/models/models_3.d.ts +5 -0
- package/dist-types/models/models_4.d.ts +66 -21
- package/dist-types/models/models_5.d.ts +22 -16
- package/dist-types/models/models_6.d.ts +15 -41
- package/dist-types/models/models_7.d.ts +42 -1
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetInstanceUefiDataCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/dist-types/ts3.4/models/models_1.d.ts +3 -0
- package/dist-types/ts3.4/models/models_3.d.ts +1 -0
- package/dist-types/ts3.4/models/models_4.d.ts +14 -5
- package/dist-types/ts3.4/models/models_5.d.ts +5 -5
- package/dist-types/ts3.4/models/models_6.d.ts +4 -9
- package/dist-types/ts3.4/models/models_7.d.ts +9 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +18 -18
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.974.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.972.
|
|
29
|
-
"@aws-sdk/middleware-sdk-ec2": "3.972.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.972.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.972.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
24
|
+
"@aws-sdk/core": "^3.973.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.1",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.1",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.1",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.1",
|
|
29
|
+
"@aws-sdk/middleware-sdk-ec2": "^3.972.1",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "^3.972.1",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "^3.972.1",
|
|
32
|
+
"@aws-sdk/types": "^3.973.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.972.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.1",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "^3.972.1",
|
|
36
36
|
"@smithy/config-resolver": "^4.4.6",
|
|
37
|
-
"@smithy/core": "^3.
|
|
37
|
+
"@smithy/core": "^3.21.0",
|
|
38
38
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
39
39
|
"@smithy/hash-node": "^4.2.8",
|
|
40
40
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
41
41
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
42
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
43
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.4.10",
|
|
43
|
+
"@smithy/middleware-retry": "^4.4.26",
|
|
44
44
|
"@smithy/middleware-serde": "^4.2.9",
|
|
45
45
|
"@smithy/middleware-stack": "^4.2.8",
|
|
46
46
|
"@smithy/node-config-provider": "^4.3.8",
|
|
47
47
|
"@smithy/node-http-handler": "^4.4.8",
|
|
48
48
|
"@smithy/protocol-http": "^5.3.8",
|
|
49
|
-
"@smithy/smithy-client": "^4.10.
|
|
49
|
+
"@smithy/smithy-client": "^4.10.11",
|
|
50
50
|
"@smithy/types": "^4.12.0",
|
|
51
51
|
"@smithy/url-parser": "^4.2.8",
|
|
52
52
|
"@smithy/util-base64": "^4.3.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.3.25",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.2.28",
|
|
57
57
|
"@smithy/util-endpoints": "^3.2.8",
|
|
58
58
|
"@smithy/util-middleware": "^4.2.8",
|
|
59
59
|
"@smithy/util-retry": "^4.2.8",
|