@aws-sdk/client-ec2 3.420.0 → 3.422.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/README.md +7 -7
- package/dist-cjs/protocols/Aws_ec2.js +77 -0
- package/dist-es/protocols/Aws_ec2.js +77 -0
- package/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +4 -0
- package/dist-types/commands/CreatePlacementGroupCommand.d.ts +2 -1
- package/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +8 -0
- package/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +8 -0
- package/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +8 -0
- package/dist-types/commands/DeletePublicIpv4PoolCommand.d.ts +2 -1
- package/dist-types/commands/DeleteQueuedReservedInstancesCommand.d.ts +1 -2
- package/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +4 -0
- package/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +5 -1
- package/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +4 -0
- package/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +4 -0
- package/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +4 -0
- package/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +9 -1
- package/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +4 -0
- package/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +9 -1
- package/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +32 -15
- package/dist-types/models/models_1.d.ts +13 -11
- package/dist-types/models/models_2.d.ts +72 -32
- package/dist-types/models/models_3.d.ts +27 -63
- package/dist-types/models/models_4.d.ts +65 -55
- package/dist-types/models/models_5.d.ts +54 -33
- package/dist-types/models/models_6.d.ts +71 -47
- package/dist-types/models/models_7.d.ts +44 -1
- package/dist-types/ts3.4/commands/CreatePlacementGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeletePublicIpv4PoolCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteQueuedReservedInstancesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVerifiedAccessGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +5 -3
- package/dist-types/ts3.4/models/models_1.d.ts +3 -4
- package/dist-types/ts3.4/models/models_2.d.ts +14 -7
- package/dist-types/ts3.4/models/models_3.d.ts +7 -12
- package/dist-types/ts3.4/models/models_4.d.ts +12 -15
- package/dist-types/ts3.4/models/models_5.d.ts +13 -8
- package/dist-types/ts3.4/models/models_6.d.ts +17 -10
- package/dist-types/ts3.4/models/models_7.d.ts +8 -2
- package/package.json +3 -3
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.422.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.421.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.421.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.418.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.418.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.418.0",
|