@aws-sdk/client-ec2 3.567.0 → 3.568.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 +8 -0
- package/dist-cjs/index.js +111 -13
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/GetInstanceTpmEkPubCommand.js +25 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_5.js +13 -5
- package/dist-es/models/models_6.js +5 -0
- package/dist-es/protocols/Aws_ec2.js +66 -7
- package/dist-types/EC2.d.ts +7 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/GetInstanceTpmEkPubCommand.d.ts +66 -0
- package/dist-types/commands/GetIpamDiscoveredAccountsCommand.d.ts +1 -2
- package/dist-types/commands/ProvisionIpamPoolCidrCommand.d.ts +1 -1
- package/dist-types/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_5.d.ts +82 -123
- package/dist-types/models/models_6.d.ts +124 -91
- package/dist-types/models/models_7.d.ts +91 -1
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +17 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetInstanceTpmEkPubCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetIpamDiscoveredAccountsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ProvisionIpamPoolCidrCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_5.d.ts +26 -26
- package/dist-types/ts3.4/models/models_6.d.ts +26 -22
- package/dist-types/ts3.4/models/models_7.d.ts +22 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/package.json +5 -5
|
@@ -45,6 +45,7 @@ import {
|
|
|
45
45
|
Filter,
|
|
46
46
|
ImdsSupportValues,
|
|
47
47
|
InstanceTagNotificationAttribute,
|
|
48
|
+
IpamPoolCidr,
|
|
48
49
|
TpmSupportValues,
|
|
49
50
|
} from "./models_3";
|
|
50
51
|
import {
|
|
@@ -72,6 +73,27 @@ import {
|
|
|
72
73
|
InstanceMonitoring,
|
|
73
74
|
Status,
|
|
74
75
|
} from "./models_6";
|
|
76
|
+
export interface IpamCidrAuthorizationContext {
|
|
77
|
+
Message?: string;
|
|
78
|
+
Signature?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface ProvisionIpamPoolCidrRequest {
|
|
81
|
+
DryRun?: boolean;
|
|
82
|
+
IpamPoolId: string | undefined;
|
|
83
|
+
Cidr?: string;
|
|
84
|
+
CidrAuthorizationContext?: IpamCidrAuthorizationContext;
|
|
85
|
+
NetmaskLength?: number;
|
|
86
|
+
ClientToken?: string;
|
|
87
|
+
}
|
|
88
|
+
export interface ProvisionIpamPoolCidrResult {
|
|
89
|
+
IpamPoolCidr?: IpamPoolCidr;
|
|
90
|
+
}
|
|
91
|
+
export interface ProvisionPublicIpv4PoolCidrRequest {
|
|
92
|
+
DryRun?: boolean;
|
|
93
|
+
IpamPoolId: string | undefined;
|
|
94
|
+
PoolId: string | undefined;
|
|
95
|
+
NetmaskLength: number | undefined;
|
|
96
|
+
}
|
|
75
97
|
export interface ProvisionPublicIpv4PoolCidrResult {
|
|
76
98
|
PoolId?: string;
|
|
77
99
|
PoolAddressRange?: PublicIpv4PoolRange;
|
|
@@ -1775,6 +1775,10 @@ import {
|
|
|
1775
1775
|
GetInstanceMetadataDefaultsCommandInput,
|
|
1776
1776
|
GetInstanceMetadataDefaultsCommandOutput,
|
|
1777
1777
|
} from "../commands/GetInstanceMetadataDefaultsCommand";
|
|
1778
|
+
import {
|
|
1779
|
+
GetInstanceTpmEkPubCommandInput,
|
|
1780
|
+
GetInstanceTpmEkPubCommandOutput,
|
|
1781
|
+
} from "../commands/GetInstanceTpmEkPubCommand";
|
|
1778
1782
|
import {
|
|
1779
1783
|
GetInstanceTypesFromInstanceRequirementsCommandInput,
|
|
1780
1784
|
GetInstanceTypesFromInstanceRequirementsCommandOutput,
|
|
@@ -4255,6 +4259,10 @@ export declare const se_GetInstanceMetadataDefaultsCommand: (
|
|
|
4255
4259
|
input: GetInstanceMetadataDefaultsCommandInput,
|
|
4256
4260
|
context: __SerdeContext
|
|
4257
4261
|
) => Promise<__HttpRequest>;
|
|
4262
|
+
export declare const se_GetInstanceTpmEkPubCommand: (
|
|
4263
|
+
input: GetInstanceTpmEkPubCommandInput,
|
|
4264
|
+
context: __SerdeContext
|
|
4265
|
+
) => Promise<__HttpRequest>;
|
|
4258
4266
|
export declare const se_GetInstanceTypesFromInstanceRequirementsCommand: (
|
|
4259
4267
|
input: GetInstanceTypesFromInstanceRequirementsCommandInput,
|
|
4260
4268
|
context: __SerdeContext
|
|
@@ -6735,6 +6743,10 @@ export declare const de_GetInstanceMetadataDefaultsCommand: (
|
|
|
6735
6743
|
output: __HttpResponse,
|
|
6736
6744
|
context: __SerdeContext
|
|
6737
6745
|
) => Promise<GetInstanceMetadataDefaultsCommandOutput>;
|
|
6746
|
+
export declare const de_GetInstanceTpmEkPubCommand: (
|
|
6747
|
+
output: __HttpResponse,
|
|
6748
|
+
context: __SerdeContext
|
|
6749
|
+
) => Promise<GetInstanceTpmEkPubCommandOutput>;
|
|
6738
6750
|
export declare const de_GetInstanceTypesFromInstanceRequirementsCommand: (
|
|
6739
6751
|
output: __HttpResponse,
|
|
6740
6752
|
context: __SerdeContext
|
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.568.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
23
|
"@aws-sdk/core": "3.567.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.568.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.567.0",
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.568.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.567.0",
|
|
28
28
|
"@aws-sdk/middleware-sdk-ec2": "3.567.0",
|
|
29
29
|
"@aws-sdk/middleware-user-agent": "3.567.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@aws-sdk/types": "3.567.0",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.567.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.567.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.568.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",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@tsconfig/node16": "16.1.3",
|
|
66
|
-
"@types/node": "^
|
|
66
|
+
"@types/node": "^16.18.96",
|
|
67
67
|
"@types/uuid": "^9.0.4",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|