@aws-sdk/client-ec2 3.909.0 → 3.910.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 +175 -78
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/CopyVolumesCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +22 -9
- package/dist-es/models/models_2.js +0 -20
- package/dist-es/models/models_3.js +7 -4
- package/dist-es/models/models_4.js +4 -4
- package/dist-es/models/models_5.js +5 -5
- package/dist-es/models/models_6.js +5 -0
- package/dist-es/protocols/Aws_ec2.js +113 -36
- package/dist-types/EC2.d.ts +7 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/CopyVolumesCommand.d.ts +137 -0
- package/dist-types/commands/CreateVolumeCommand.d.ts +3 -1
- package/dist-types/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeVolumeStatusCommand.d.ts +3 -2
- package/dist-types/commands/DescribeVolumesCommand.d.ts +1 -0
- package/dist-types/commands/GetManagedPrefixListEntriesCommand.d.ts +2 -1
- package/dist-types/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +1 -2
- package/dist-types/commands/ProvisionIpamByoasnCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +309 -115
- package/dist-types/models/models_2.d.ts +104 -227
- package/dist-types/models/models_3.d.ts +45 -83
- package/dist-types/models/models_4.d.ts +83 -30
- package/dist-types/models/models_5.d.ts +37 -32
- package/dist-types/models/models_6.d.ts +32 -46
- package/dist-types/models/models_7.d.ts +52 -43
- package/dist-types/models/models_8.d.ts +44 -7
- 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/CopyVolumesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVolumeStatusCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetManagedPrefixListEntriesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ProvisionIpamByoasnCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +67 -31
- package/dist-types/ts3.4/models/models_2.d.ts +18 -57
- package/dist-types/ts3.4/models/models_3.d.ts +14 -15
- package/dist-types/ts3.4/models/models_4.d.ts +13 -10
- package/dist-types/ts3.4/models/models_5.d.ts +13 -14
- package/dist-types/ts3.4/models/models_6.d.ts +13 -12
- package/dist-types/ts3.4/models/models_7.d.ts +12 -11
- package/dist-types/ts3.4/models/models_8.d.ts +12 -1
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/package.json +35 -35
|
@@ -17,6 +17,7 @@ import {
|
|
|
17
17
|
Tag,
|
|
18
18
|
TagSpecification,
|
|
19
19
|
UnsuccessfulItem,
|
|
20
|
+
VolumeAttachment,
|
|
20
21
|
VpcCidrBlockAssociation,
|
|
21
22
|
VpcIpv6CidrBlockAssociation,
|
|
22
23
|
WeekDay,
|
|
@@ -69,6 +70,72 @@ export interface CopySnapshotResult {
|
|
|
69
70
|
Tags?: Tag[] | undefined;
|
|
70
71
|
SnapshotId?: string | undefined;
|
|
71
72
|
}
|
|
73
|
+
export declare const VolumeType: {
|
|
74
|
+
readonly gp2: "gp2";
|
|
75
|
+
readonly gp3: "gp3";
|
|
76
|
+
readonly io1: "io1";
|
|
77
|
+
readonly io2: "io2";
|
|
78
|
+
readonly sc1: "sc1";
|
|
79
|
+
readonly st1: "st1";
|
|
80
|
+
readonly standard: "standard";
|
|
81
|
+
};
|
|
82
|
+
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
83
|
+
export interface CopyVolumesRequest {
|
|
84
|
+
SourceVolumeId: string | undefined;
|
|
85
|
+
Iops?: number | undefined;
|
|
86
|
+
Size?: number | undefined;
|
|
87
|
+
VolumeType?: VolumeType | undefined;
|
|
88
|
+
DryRun?: boolean | undefined;
|
|
89
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
90
|
+
MultiAttachEnabled?: boolean | undefined;
|
|
91
|
+
Throughput?: number | undefined;
|
|
92
|
+
ClientToken?: string | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface OperatorResponse {
|
|
95
|
+
Managed?: boolean | undefined;
|
|
96
|
+
Principal?: string | undefined;
|
|
97
|
+
}
|
|
98
|
+
export declare const SSEType: {
|
|
99
|
+
readonly none: "none";
|
|
100
|
+
readonly sse_ebs: "sse-ebs";
|
|
101
|
+
readonly sse_kms: "sse-kms";
|
|
102
|
+
};
|
|
103
|
+
export type SSEType = (typeof SSEType)[keyof typeof SSEType];
|
|
104
|
+
export declare const VolumeState: {
|
|
105
|
+
readonly available: "available";
|
|
106
|
+
readonly creating: "creating";
|
|
107
|
+
readonly deleted: "deleted";
|
|
108
|
+
readonly deleting: "deleting";
|
|
109
|
+
readonly error: "error";
|
|
110
|
+
readonly in_use: "in-use";
|
|
111
|
+
};
|
|
112
|
+
export type VolumeState = (typeof VolumeState)[keyof typeof VolumeState];
|
|
113
|
+
export interface Volume {
|
|
114
|
+
AvailabilityZoneId?: string | undefined;
|
|
115
|
+
OutpostArn?: string | undefined;
|
|
116
|
+
SourceVolumeId?: string | undefined;
|
|
117
|
+
Iops?: number | undefined;
|
|
118
|
+
Tags?: Tag[] | undefined;
|
|
119
|
+
VolumeType?: VolumeType | undefined;
|
|
120
|
+
FastRestored?: boolean | undefined;
|
|
121
|
+
MultiAttachEnabled?: boolean | undefined;
|
|
122
|
+
Throughput?: number | undefined;
|
|
123
|
+
SseType?: SSEType | undefined;
|
|
124
|
+
Operator?: OperatorResponse | undefined;
|
|
125
|
+
VolumeInitializationRate?: number | undefined;
|
|
126
|
+
VolumeId?: string | undefined;
|
|
127
|
+
Size?: number | undefined;
|
|
128
|
+
SnapshotId?: string | undefined;
|
|
129
|
+
AvailabilityZone?: string | undefined;
|
|
130
|
+
State?: VolumeState | undefined;
|
|
131
|
+
CreateTime?: Date | undefined;
|
|
132
|
+
Attachments?: VolumeAttachment[] | undefined;
|
|
133
|
+
Encrypted?: boolean | undefined;
|
|
134
|
+
KmsKeyId?: string | undefined;
|
|
135
|
+
}
|
|
136
|
+
export interface CopyVolumesResult {
|
|
137
|
+
Volumes?: Volume[] | undefined;
|
|
138
|
+
}
|
|
72
139
|
export declare const CapacityReservationDeliveryPreference: {
|
|
73
140
|
readonly FIXED: "fixed";
|
|
74
141
|
readonly INCREMENTAL: "incremental";
|
|
@@ -1799,16 +1866,6 @@ export interface FleetLaunchTemplateSpecificationRequest {
|
|
|
1799
1866
|
LaunchTemplateName?: string | undefined;
|
|
1800
1867
|
Version?: string | undefined;
|
|
1801
1868
|
}
|
|
1802
|
-
export declare const VolumeType: {
|
|
1803
|
-
readonly gp2: "gp2";
|
|
1804
|
-
readonly gp3: "gp3";
|
|
1805
|
-
readonly io1: "io1";
|
|
1806
|
-
readonly io2: "io2";
|
|
1807
|
-
readonly sc1: "sc1";
|
|
1808
|
-
readonly st1: "st1";
|
|
1809
|
-
readonly standard: "standard";
|
|
1810
|
-
};
|
|
1811
|
-
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
1812
1869
|
export interface FleetEbsBlockDeviceRequest {
|
|
1813
1870
|
Encrypted?: boolean | undefined;
|
|
1814
1871
|
DeleteOnTermination?: boolean | undefined;
|
|
@@ -3077,10 +3134,6 @@ export interface CreateLaunchTemplateRequest {
|
|
|
3077
3134
|
Operator?: OperatorRequest | undefined;
|
|
3078
3135
|
TagSpecifications?: TagSpecification[] | undefined;
|
|
3079
3136
|
}
|
|
3080
|
-
export interface OperatorResponse {
|
|
3081
|
-
Managed?: boolean | undefined;
|
|
3082
|
-
Principal?: string | undefined;
|
|
3083
|
-
}
|
|
3084
3137
|
export interface LaunchTemplate {
|
|
3085
3138
|
LaunchTemplateId?: string | undefined;
|
|
3086
3139
|
LaunchTemplateName?: string | undefined;
|
|
@@ -3145,23 +3198,6 @@ export interface LaunchTemplateCpuOptions {
|
|
|
3145
3198
|
export interface CreditSpecification {
|
|
3146
3199
|
CpuCredits?: string | undefined;
|
|
3147
3200
|
}
|
|
3148
|
-
export interface ElasticGpuSpecificationResponse {
|
|
3149
|
-
Type?: string | undefined;
|
|
3150
|
-
}
|
|
3151
|
-
export interface LaunchTemplateElasticInferenceAcceleratorResponse {
|
|
3152
|
-
Type?: string | undefined;
|
|
3153
|
-
Count?: number | undefined;
|
|
3154
|
-
}
|
|
3155
|
-
export interface LaunchTemplateEnclaveOptions {
|
|
3156
|
-
Enabled?: boolean | undefined;
|
|
3157
|
-
}
|
|
3158
|
-
export interface LaunchTemplateHibernationOptions {
|
|
3159
|
-
Configured?: boolean | undefined;
|
|
3160
|
-
}
|
|
3161
|
-
export interface LaunchTemplateIamInstanceProfileSpecification {
|
|
3162
|
-
Arn?: string | undefined;
|
|
3163
|
-
Name?: string | undefined;
|
|
3164
|
-
}
|
|
3165
3201
|
export declare const CopySnapshotRequestFilterSensitiveLog: (
|
|
3166
3202
|
obj: CopySnapshotRequest
|
|
3167
3203
|
) => any;
|
|
@@ -28,13 +28,11 @@ import {
|
|
|
28
28
|
VerifiedAccessInstance,
|
|
29
29
|
VerifiedAccessSseSpecificationResponse,
|
|
30
30
|
VerifiedAccessTrustProvider,
|
|
31
|
-
VolumeAttachment,
|
|
32
31
|
} from "./models_0";
|
|
33
32
|
import {
|
|
34
33
|
_InstanceType,
|
|
35
34
|
ConnectionTrackingSpecificationRequest,
|
|
36
35
|
CreditSpecification,
|
|
37
|
-
ElasticGpuSpecificationResponse,
|
|
38
36
|
HostnameType,
|
|
39
37
|
InstanceBandwidthWeighting,
|
|
40
38
|
InstanceInterruptionBehavior,
|
|
@@ -45,11 +43,7 @@ import {
|
|
|
45
43
|
LaunchTemplateBlockDeviceMapping,
|
|
46
44
|
LaunchTemplateCapacityReservationSpecificationResponse,
|
|
47
45
|
LaunchTemplateCpuOptions,
|
|
48
|
-
LaunchTemplateElasticInferenceAcceleratorResponse,
|
|
49
|
-
LaunchTemplateEnclaveOptions,
|
|
50
|
-
LaunchTemplateHibernationOptions,
|
|
51
46
|
LaunchTemplateHttpTokensState,
|
|
52
|
-
LaunchTemplateIamInstanceProfileSpecification,
|
|
53
47
|
LaunchTemplateInstanceMetadataEndpointState,
|
|
54
48
|
LaunchTemplateInstanceMetadataProtocolIpv6,
|
|
55
49
|
LaunchTemplateInstanceMetadataTagsState,
|
|
@@ -62,12 +56,30 @@ import {
|
|
|
62
56
|
ShutdownBehavior,
|
|
63
57
|
SnapshotLocationEnum,
|
|
64
58
|
SpotInstanceType,
|
|
59
|
+
SSEType,
|
|
65
60
|
Subnet,
|
|
66
61
|
Tenancy,
|
|
67
62
|
ValidationWarning,
|
|
68
63
|
VolumeType,
|
|
69
64
|
Vpc,
|
|
70
65
|
} from "./models_1";
|
|
66
|
+
export interface ElasticGpuSpecificationResponse {
|
|
67
|
+
Type?: string | undefined;
|
|
68
|
+
}
|
|
69
|
+
export interface LaunchTemplateElasticInferenceAcceleratorResponse {
|
|
70
|
+
Type?: string | undefined;
|
|
71
|
+
Count?: number | undefined;
|
|
72
|
+
}
|
|
73
|
+
export interface LaunchTemplateEnclaveOptions {
|
|
74
|
+
Enabled?: boolean | undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface LaunchTemplateHibernationOptions {
|
|
77
|
+
Configured?: boolean | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface LaunchTemplateIamInstanceProfileSpecification {
|
|
80
|
+
Arn?: string | undefined;
|
|
81
|
+
Name?: string | undefined;
|
|
82
|
+
}
|
|
71
83
|
export interface LaunchTemplateSpotMarketOptions {
|
|
72
84
|
MaxPrice?: string | undefined;
|
|
73
85
|
SpotInstanceType?: SpotInstanceType | undefined;
|
|
@@ -1220,12 +1232,6 @@ export interface CreateSnapshotRequest {
|
|
|
1220
1232
|
Location?: SnapshotLocationEnum | undefined;
|
|
1221
1233
|
DryRun?: boolean | undefined;
|
|
1222
1234
|
}
|
|
1223
|
-
export declare const SSEType: {
|
|
1224
|
-
readonly none: "none";
|
|
1225
|
-
readonly sse_ebs: "sse-ebs";
|
|
1226
|
-
readonly sse_kms: "sse-kms";
|
|
1227
|
-
};
|
|
1228
|
-
export type SSEType = (typeof SSEType)[keyof typeof SSEType];
|
|
1229
1235
|
export declare const SnapshotState: {
|
|
1230
1236
|
readonly completed: "completed";
|
|
1231
1237
|
readonly error: "error";
|
|
@@ -2184,37 +2190,6 @@ export interface CreateVolumeRequest {
|
|
|
2184
2190
|
Operator?: OperatorRequest | undefined;
|
|
2185
2191
|
DryRun?: boolean | undefined;
|
|
2186
2192
|
}
|
|
2187
|
-
export declare const VolumeState: {
|
|
2188
|
-
readonly available: "available";
|
|
2189
|
-
readonly creating: "creating";
|
|
2190
|
-
readonly deleted: "deleted";
|
|
2191
|
-
readonly deleting: "deleting";
|
|
2192
|
-
readonly error: "error";
|
|
2193
|
-
readonly in_use: "in-use";
|
|
2194
|
-
};
|
|
2195
|
-
export type VolumeState = (typeof VolumeState)[keyof typeof VolumeState];
|
|
2196
|
-
export interface Volume {
|
|
2197
|
-
AvailabilityZoneId?: string | undefined;
|
|
2198
|
-
OutpostArn?: string | undefined;
|
|
2199
|
-
Iops?: number | undefined;
|
|
2200
|
-
Tags?: Tag[] | undefined;
|
|
2201
|
-
VolumeType?: VolumeType | undefined;
|
|
2202
|
-
FastRestored?: boolean | undefined;
|
|
2203
|
-
MultiAttachEnabled?: boolean | undefined;
|
|
2204
|
-
Throughput?: number | undefined;
|
|
2205
|
-
SseType?: SSEType | undefined;
|
|
2206
|
-
Operator?: OperatorResponse | undefined;
|
|
2207
|
-
VolumeInitializationRate?: number | undefined;
|
|
2208
|
-
VolumeId?: string | undefined;
|
|
2209
|
-
Size?: number | undefined;
|
|
2210
|
-
SnapshotId?: string | undefined;
|
|
2211
|
-
AvailabilityZone?: string | undefined;
|
|
2212
|
-
State?: VolumeState | undefined;
|
|
2213
|
-
CreateTime?: Date | undefined;
|
|
2214
|
-
Attachments?: VolumeAttachment[] | undefined;
|
|
2215
|
-
Encrypted?: boolean | undefined;
|
|
2216
|
-
KmsKeyId?: string | undefined;
|
|
2217
|
-
}
|
|
2218
2193
|
export interface CreateVpcRequest {
|
|
2219
2194
|
CidrBlock?: string | undefined;
|
|
2220
2195
|
Ipv6Pool?: string | undefined;
|
|
@@ -2285,20 +2260,6 @@ export interface DnsOptionsSpecification {
|
|
|
2285
2260
|
DnsRecordIpType?: DnsRecordIpType | undefined;
|
|
2286
2261
|
PrivateDnsOnlyForInboundResolverEndpoint?: boolean | undefined;
|
|
2287
2262
|
}
|
|
2288
|
-
export interface SubnetConfiguration {
|
|
2289
|
-
SubnetId?: string | undefined;
|
|
2290
|
-
Ipv4?: string | undefined;
|
|
2291
|
-
Ipv6?: string | undefined;
|
|
2292
|
-
}
|
|
2293
|
-
export declare const VpcEndpointType: {
|
|
2294
|
-
readonly Gateway: "Gateway";
|
|
2295
|
-
readonly GatewayLoadBalancer: "GatewayLoadBalancer";
|
|
2296
|
-
readonly Interface: "Interface";
|
|
2297
|
-
readonly Resource: "Resource";
|
|
2298
|
-
readonly ServiceNetwork: "ServiceNetwork";
|
|
2299
|
-
};
|
|
2300
|
-
export type VpcEndpointType =
|
|
2301
|
-
(typeof VpcEndpointType)[keyof typeof VpcEndpointType];
|
|
2302
2263
|
export declare const ResponseLaunchTemplateDataFilterSensitiveLog: (
|
|
2303
2264
|
obj: ResponseLaunchTemplateData
|
|
2304
2265
|
) => any;
|
|
@@ -49,7 +49,6 @@ import {
|
|
|
49
49
|
RouteServerEndpoint,
|
|
50
50
|
RouteServerPeer,
|
|
51
51
|
SubnetCidrReservation,
|
|
52
|
-
SubnetConfiguration,
|
|
53
52
|
TransitGateway,
|
|
54
53
|
TransitGatewayConnect,
|
|
55
54
|
TransitGatewayConnectPeer,
|
|
@@ -62,8 +61,21 @@ import {
|
|
|
62
61
|
VerifiedAccessEndpoint,
|
|
63
62
|
VerifiedAccessGroup,
|
|
64
63
|
VpcBlockPublicAccessExclusion,
|
|
65
|
-
VpcEndpointType,
|
|
66
64
|
} from "./models_2";
|
|
65
|
+
export interface SubnetConfiguration {
|
|
66
|
+
SubnetId?: string | undefined;
|
|
67
|
+
Ipv4?: string | undefined;
|
|
68
|
+
Ipv6?: string | undefined;
|
|
69
|
+
}
|
|
70
|
+
export declare const VpcEndpointType: {
|
|
71
|
+
readonly Gateway: "Gateway";
|
|
72
|
+
readonly GatewayLoadBalancer: "GatewayLoadBalancer";
|
|
73
|
+
readonly Interface: "Interface";
|
|
74
|
+
readonly Resource: "Resource";
|
|
75
|
+
readonly ServiceNetwork: "ServiceNetwork";
|
|
76
|
+
};
|
|
77
|
+
export type VpcEndpointType =
|
|
78
|
+
(typeof VpcEndpointType)[keyof typeof VpcEndpointType];
|
|
67
79
|
export interface CreateVpcEndpointRequest {
|
|
68
80
|
DryRun?: boolean | undefined;
|
|
69
81
|
VpcEndpointType?: VpcEndpointType | undefined;
|
|
@@ -1606,19 +1618,6 @@ export interface DescribeCapacityBlockStatusResult {
|
|
|
1606
1618
|
CapacityBlockStatuses?: CapacityBlockStatus[] | undefined;
|
|
1607
1619
|
NextToken?: string | undefined;
|
|
1608
1620
|
}
|
|
1609
|
-
export declare const CallerRole: {
|
|
1610
|
-
readonly odcr_owner: "odcr-owner";
|
|
1611
|
-
readonly unused_reservation_billing_owner: "unused-reservation-billing-owner";
|
|
1612
|
-
};
|
|
1613
|
-
export type CallerRole = (typeof CallerRole)[keyof typeof CallerRole];
|
|
1614
|
-
export interface DescribeCapacityReservationBillingRequestsRequest {
|
|
1615
|
-
CapacityReservationIds?: string[] | undefined;
|
|
1616
|
-
Role: CallerRole | undefined;
|
|
1617
|
-
NextToken?: string | undefined;
|
|
1618
|
-
MaxResults?: number | undefined;
|
|
1619
|
-
Filters?: Filter[] | undefined;
|
|
1620
|
-
DryRun?: boolean | undefined;
|
|
1621
|
-
}
|
|
1622
1621
|
export declare const VpnTunnelOptionsSpecificationFilterSensitiveLog: (
|
|
1623
1622
|
obj: VpnTunnelOptionsSpecification
|
|
1624
1623
|
) => any;
|
|
@@ -75,6 +75,19 @@ import {
|
|
|
75
75
|
IdFormat,
|
|
76
76
|
InstanceTagNotificationAttribute,
|
|
77
77
|
} from "./models_3";
|
|
78
|
+
export declare const CallerRole: {
|
|
79
|
+
readonly odcr_owner: "odcr-owner";
|
|
80
|
+
readonly unused_reservation_billing_owner: "unused-reservation-billing-owner";
|
|
81
|
+
};
|
|
82
|
+
export type CallerRole = (typeof CallerRole)[keyof typeof CallerRole];
|
|
83
|
+
export interface DescribeCapacityReservationBillingRequestsRequest {
|
|
84
|
+
CapacityReservationIds?: string[] | undefined;
|
|
85
|
+
Role: CallerRole | undefined;
|
|
86
|
+
NextToken?: string | undefined;
|
|
87
|
+
MaxResults?: number | undefined;
|
|
88
|
+
Filters?: Filter[] | undefined;
|
|
89
|
+
DryRun?: boolean | undefined;
|
|
90
|
+
}
|
|
78
91
|
export interface CapacityReservationInfo {
|
|
79
92
|
InstanceType?: string | undefined;
|
|
80
93
|
AvailabilityZone?: string | undefined;
|
|
@@ -2105,16 +2118,6 @@ export interface NeuronDeviceInfo {
|
|
|
2105
2118
|
CoreInfo?: NeuronDeviceCoreInfo | undefined;
|
|
2106
2119
|
MemoryInfo?: NeuronDeviceMemoryInfo | undefined;
|
|
2107
2120
|
}
|
|
2108
|
-
export interface NeuronInfo {
|
|
2109
|
-
NeuronDevices?: NeuronDeviceInfo[] | undefined;
|
|
2110
|
-
TotalNeuronDeviceMemoryInMiB?: number | undefined;
|
|
2111
|
-
}
|
|
2112
|
-
export declare const NitroEnclavesSupport: {
|
|
2113
|
-
readonly SUPPORTED: "supported";
|
|
2114
|
-
readonly UNSUPPORTED: "unsupported";
|
|
2115
|
-
};
|
|
2116
|
-
export type NitroEnclavesSupport =
|
|
2117
|
-
(typeof NitroEnclavesSupport)[keyof typeof NitroEnclavesSupport];
|
|
2118
2121
|
export declare const DiskImageDescriptionFilterSensitiveLog: (
|
|
2119
2122
|
obj: DiskImageDescription
|
|
2120
2123
|
) => any;
|
|
@@ -52,6 +52,7 @@ import {
|
|
|
52
52
|
Subnet,
|
|
53
53
|
TargetCapacityUnitType,
|
|
54
54
|
Tenancy,
|
|
55
|
+
Volume,
|
|
55
56
|
VolumeType,
|
|
56
57
|
} from "./models_1";
|
|
57
58
|
import {
|
|
@@ -95,7 +96,6 @@ import {
|
|
|
95
96
|
TransitGatewayRouteTableAnnouncement,
|
|
96
97
|
VerifiedAccessEndpoint,
|
|
97
98
|
VerifiedAccessGroup,
|
|
98
|
-
Volume,
|
|
99
99
|
} from "./models_2";
|
|
100
100
|
import { Byoasn, Filter, IdFormat } from "./models_3";
|
|
101
101
|
import {
|
|
@@ -110,12 +110,21 @@ import {
|
|
|
110
110
|
MediaAcceleratorInfo,
|
|
111
111
|
MemoryInfo,
|
|
112
112
|
NetworkInfo,
|
|
113
|
-
|
|
114
|
-
NitroEnclavesSupport,
|
|
113
|
+
NeuronDeviceInfo,
|
|
115
114
|
PermissionGroup,
|
|
116
115
|
ProductCode,
|
|
117
116
|
VirtualizationType,
|
|
118
117
|
} from "./models_4";
|
|
118
|
+
export interface NeuronInfo {
|
|
119
|
+
NeuronDevices?: NeuronDeviceInfo[] | undefined;
|
|
120
|
+
TotalNeuronDeviceMemoryInMiB?: number | undefined;
|
|
121
|
+
}
|
|
122
|
+
export declare const NitroEnclavesSupport: {
|
|
123
|
+
readonly SUPPORTED: "supported";
|
|
124
|
+
readonly UNSUPPORTED: "unsupported";
|
|
125
|
+
};
|
|
126
|
+
export type NitroEnclavesSupport =
|
|
127
|
+
(typeof NitroEnclavesSupport)[keyof typeof NitroEnclavesSupport];
|
|
119
128
|
export interface NitroTpmInfo {
|
|
120
129
|
SupportedVersions?: string[] | undefined;
|
|
121
130
|
}
|
|
@@ -2031,6 +2040,7 @@ export interface VolumeStatusEvent {
|
|
|
2031
2040
|
export declare const InitializationType: {
|
|
2032
2041
|
readonly default: "default";
|
|
2033
2042
|
readonly provisioned_rate: "provisioned-rate";
|
|
2043
|
+
readonly volume_copy: "volume-copy";
|
|
2034
2044
|
};
|
|
2035
2045
|
export type InitializationType =
|
|
2036
2046
|
(typeof InitializationType)[keyof typeof InitializationType];
|
|
@@ -2073,17 +2083,6 @@ export interface VolumeStatusItem {
|
|
|
2073
2083
|
InitializationStatusDetails?: InitializationStatusDetails | undefined;
|
|
2074
2084
|
AvailabilityZoneId?: string | undefined;
|
|
2075
2085
|
}
|
|
2076
|
-
export interface DescribeVolumeStatusResult {
|
|
2077
|
-
NextToken?: string | undefined;
|
|
2078
|
-
VolumeStatuses?: VolumeStatusItem[] | undefined;
|
|
2079
|
-
}
|
|
2080
|
-
export declare const VpcAttributeName: {
|
|
2081
|
-
readonly enableDnsHostnames: "enableDnsHostnames";
|
|
2082
|
-
readonly enableDnsSupport: "enableDnsSupport";
|
|
2083
|
-
readonly enableNetworkAddressUsageMetrics: "enableNetworkAddressUsageMetrics";
|
|
2084
|
-
};
|
|
2085
|
-
export type VpcAttributeName =
|
|
2086
|
-
(typeof VpcAttributeName)[keyof typeof VpcAttributeName];
|
|
2087
2086
|
export declare const DescribeLaunchTemplateVersionsResultFilterSensitiveLog: (
|
|
2088
2087
|
obj: DescribeLaunchTemplateVersionsResult
|
|
2089
2088
|
) => any;
|
|
@@ -36,11 +36,11 @@ import {
|
|
|
36
36
|
IpAddressType,
|
|
37
37
|
IpamResourceTag,
|
|
38
38
|
RequestIpamResourceTag,
|
|
39
|
+
SSEType,
|
|
39
40
|
Vpc,
|
|
40
41
|
} from "./models_1";
|
|
41
42
|
import {
|
|
42
43
|
ResponseLaunchTemplateData,
|
|
43
|
-
SSEType,
|
|
44
44
|
VpcBlockPublicAccessExclusion,
|
|
45
45
|
} from "./models_2";
|
|
46
46
|
import {
|
|
@@ -75,7 +75,18 @@ import {
|
|
|
75
75
|
PaymentOption,
|
|
76
76
|
VirtualizationType,
|
|
77
77
|
} from "./models_4";
|
|
78
|
-
import { ArchitectureType,
|
|
78
|
+
import { ArchitectureType, VolumeStatusItem } from "./models_5";
|
|
79
|
+
export interface DescribeVolumeStatusResult {
|
|
80
|
+
NextToken?: string | undefined;
|
|
81
|
+
VolumeStatuses?: VolumeStatusItem[] | undefined;
|
|
82
|
+
}
|
|
83
|
+
export declare const VpcAttributeName: {
|
|
84
|
+
readonly enableDnsHostnames: "enableDnsHostnames";
|
|
85
|
+
readonly enableDnsSupport: "enableDnsSupport";
|
|
86
|
+
readonly enableNetworkAddressUsageMetrics: "enableNetworkAddressUsageMetrics";
|
|
87
|
+
};
|
|
88
|
+
export type VpcAttributeName =
|
|
89
|
+
(typeof VpcAttributeName)[keyof typeof VpcAttributeName];
|
|
79
90
|
export interface DescribeVpcAttributeRequest {
|
|
80
91
|
Attribute: VpcAttributeName | undefined;
|
|
81
92
|
VpcId: string | undefined;
|
|
@@ -1649,16 +1660,6 @@ export interface PrefixListEntry {
|
|
|
1649
1660
|
Cidr?: string | undefined;
|
|
1650
1661
|
Description?: string | undefined;
|
|
1651
1662
|
}
|
|
1652
|
-
export interface GetManagedPrefixListEntriesResult {
|
|
1653
|
-
Entries?: PrefixListEntry[] | undefined;
|
|
1654
|
-
NextToken?: string | undefined;
|
|
1655
|
-
}
|
|
1656
|
-
export interface GetNetworkInsightsAccessScopeAnalysisFindingsRequest {
|
|
1657
|
-
NetworkInsightsAccessScopeAnalysisId: string | undefined;
|
|
1658
|
-
MaxResults?: number | undefined;
|
|
1659
|
-
NextToken?: string | undefined;
|
|
1660
|
-
DryRun?: boolean | undefined;
|
|
1661
|
-
}
|
|
1662
1663
|
export declare const DescribeVpnConnectionsResultFilterSensitiveLog: (
|
|
1663
1664
|
obj: DescribeVpnConnectionsResult
|
|
1664
1665
|
) => any;
|
|
@@ -79,7 +79,6 @@ import {
|
|
|
79
79
|
RouteServer,
|
|
80
80
|
RouteServerPersistRoutesAction,
|
|
81
81
|
SubnetCidrReservation,
|
|
82
|
-
SubnetConfiguration,
|
|
83
82
|
TrafficDirection,
|
|
84
83
|
TrafficMirrorFilter,
|
|
85
84
|
TrafficMirrorFilterRule,
|
|
@@ -97,7 +96,6 @@ import {
|
|
|
97
96
|
VpnEcmpSupportValue,
|
|
98
97
|
} from "./models_2";
|
|
99
98
|
import {
|
|
100
|
-
Byoasn,
|
|
101
99
|
Filter,
|
|
102
100
|
IKEVersionsRequestListValue,
|
|
103
101
|
PayerResponsibility,
|
|
@@ -107,6 +105,7 @@ import {
|
|
|
107
105
|
Phase2DHGroupNumbersRequestListValue,
|
|
108
106
|
Phase2EncryptionAlgorithmsRequestListValue,
|
|
109
107
|
Phase2IntegrityAlgorithmsRequestListValue,
|
|
108
|
+
SubnetConfiguration,
|
|
110
109
|
VpnConnection,
|
|
111
110
|
VpnTunnelLogOptionsSpecification,
|
|
112
111
|
} from "./models_3";
|
|
@@ -151,12 +150,23 @@ import {
|
|
|
151
150
|
InternetGatewayBlockMode,
|
|
152
151
|
IpamResourceCidr,
|
|
153
152
|
ManagedBy,
|
|
153
|
+
PrefixListEntry,
|
|
154
154
|
RouteServerPropagation,
|
|
155
155
|
SnapshotBlockPublicAccessState,
|
|
156
156
|
TransitGatewayPropagationState,
|
|
157
157
|
UnlimitedSupportedInstanceFamily,
|
|
158
158
|
VpcBlockPublicAccessOptions,
|
|
159
159
|
} from "./models_6";
|
|
160
|
+
export interface GetManagedPrefixListEntriesResult {
|
|
161
|
+
Entries?: PrefixListEntry[] | undefined;
|
|
162
|
+
NextToken?: string | undefined;
|
|
163
|
+
}
|
|
164
|
+
export interface GetNetworkInsightsAccessScopeAnalysisFindingsRequest {
|
|
165
|
+
NetworkInsightsAccessScopeAnalysisId: string | undefined;
|
|
166
|
+
MaxResults?: number | undefined;
|
|
167
|
+
NextToken?: string | undefined;
|
|
168
|
+
DryRun?: boolean | undefined;
|
|
169
|
+
}
|
|
160
170
|
export interface GetNetworkInsightsAccessScopeAnalysisFindingsResult {
|
|
161
171
|
NetworkInsightsAccessScopeAnalysisId?: string | undefined;
|
|
162
172
|
AnalysisStatus?: AnalysisStatus | undefined;
|
|
@@ -1906,15 +1916,6 @@ export interface AsnAuthorizationContext {
|
|
|
1906
1916
|
Message: string | undefined;
|
|
1907
1917
|
Signature: string | undefined;
|
|
1908
1918
|
}
|
|
1909
|
-
export interface ProvisionIpamByoasnRequest {
|
|
1910
|
-
DryRun?: boolean | undefined;
|
|
1911
|
-
IpamId: string | undefined;
|
|
1912
|
-
Asn: string | undefined;
|
|
1913
|
-
AsnAuthorizationContext: AsnAuthorizationContext | undefined;
|
|
1914
|
-
}
|
|
1915
|
-
export interface ProvisionIpamByoasnResult {
|
|
1916
|
-
Byoasn?: Byoasn | undefined;
|
|
1917
|
-
}
|
|
1918
1919
|
export declare const GetPasswordDataResultFilterSensitiveLog: (
|
|
1919
1920
|
obj: GetPasswordDataResult
|
|
1920
1921
|
) => any;
|
|
@@ -33,6 +33,7 @@ import {
|
|
|
33
33
|
Placement,
|
|
34
34
|
ShutdownBehavior,
|
|
35
35
|
SpotInstanceType,
|
|
36
|
+
SSEType,
|
|
36
37
|
} from "./models_1";
|
|
37
38
|
import {
|
|
38
39
|
IcmpTypeCode,
|
|
@@ -41,10 +42,10 @@ import {
|
|
|
41
42
|
ManagedPrefixList,
|
|
42
43
|
RuleAction,
|
|
43
44
|
SnapshotState,
|
|
44
|
-
SSEType,
|
|
45
45
|
TransitGatewayRoute,
|
|
46
46
|
} from "./models_2";
|
|
47
47
|
import {
|
|
48
|
+
Byoasn,
|
|
48
49
|
CapacityBlock,
|
|
49
50
|
CapacityBlockExtension,
|
|
50
51
|
Filter,
|
|
@@ -79,10 +80,20 @@ import {
|
|
|
79
80
|
} from "./models_5";
|
|
80
81
|
import { Purchase } from "./models_6";
|
|
81
82
|
import {
|
|
83
|
+
AsnAuthorizationContext,
|
|
82
84
|
CapacityReservationSpecification,
|
|
83
85
|
InstanceMonitoring,
|
|
84
86
|
Status,
|
|
85
87
|
} from "./models_7";
|
|
88
|
+
export interface ProvisionIpamByoasnRequest {
|
|
89
|
+
DryRun?: boolean | undefined;
|
|
90
|
+
IpamId: string | undefined;
|
|
91
|
+
Asn: string | undefined;
|
|
92
|
+
AsnAuthorizationContext: AsnAuthorizationContext | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface ProvisionIpamByoasnResult {
|
|
95
|
+
Byoasn?: Byoasn | undefined;
|
|
96
|
+
}
|
|
86
97
|
export interface IpamCidrAuthorizationContext {
|
|
87
98
|
Message?: string | undefined;
|
|
88
99
|
Signature?: string | undefined;
|
|
@@ -243,6 +243,10 @@ import {
|
|
|
243
243
|
CopySnapshotCommandInput,
|
|
244
244
|
CopySnapshotCommandOutput,
|
|
245
245
|
} from "../commands/CopySnapshotCommand";
|
|
246
|
+
import {
|
|
247
|
+
CopyVolumesCommandInput,
|
|
248
|
+
CopyVolumesCommandOutput,
|
|
249
|
+
} from "../commands/CopyVolumesCommand";
|
|
246
250
|
import {
|
|
247
251
|
CreateCapacityReservationBySplittingCommandInput,
|
|
248
252
|
CreateCapacityReservationBySplittingCommandOutput,
|
|
@@ -3019,6 +3023,10 @@ export declare const se_CopySnapshotCommand: (
|
|
|
3019
3023
|
input: CopySnapshotCommandInput,
|
|
3020
3024
|
context: __SerdeContext
|
|
3021
3025
|
) => Promise<__HttpRequest>;
|
|
3026
|
+
export declare const se_CopyVolumesCommand: (
|
|
3027
|
+
input: CopyVolumesCommandInput,
|
|
3028
|
+
context: __SerdeContext
|
|
3029
|
+
) => Promise<__HttpRequest>;
|
|
3022
3030
|
export declare const se_CreateCapacityReservationCommand: (
|
|
3023
3031
|
input: CreateCapacityReservationCommandInput,
|
|
3024
3032
|
context: __SerdeContext
|
|
@@ -5795,6 +5803,10 @@ export declare const de_CopySnapshotCommand: (
|
|
|
5795
5803
|
output: __HttpResponse,
|
|
5796
5804
|
context: __SerdeContext
|
|
5797
5805
|
) => Promise<CopySnapshotCommandOutput>;
|
|
5806
|
+
export declare const de_CopyVolumesCommand: (
|
|
5807
|
+
output: __HttpResponse,
|
|
5808
|
+
context: __SerdeContext
|
|
5809
|
+
) => Promise<CopyVolumesCommandOutput>;
|
|
5798
5810
|
export declare const de_CreateCapacityReservationCommand: (
|
|
5799
5811
|
output: __HttpResponse,
|
|
5800
5812
|
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.910.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,44 +20,44 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.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.
|
|
35
|
-
"@smithy/config-resolver": "^4.3.
|
|
36
|
-
"@smithy/core": "^3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.910.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.910.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.910.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.910.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.910.0",
|
|
28
|
+
"@aws-sdk/middleware-sdk-ec2": "3.910.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.910.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.910.0",
|
|
31
|
+
"@aws-sdk/types": "3.910.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.910.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.910.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.910.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.3.2",
|
|
36
|
+
"@smithy/core": "^3.16.1",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.3",
|
|
38
|
+
"@smithy/hash-node": "^4.2.2",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.2",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.2",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.3.3",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.3",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.2",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.2",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.2",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.1",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.2",
|
|
48
|
+
"@smithy/smithy-client": "^4.8.1",
|
|
49
|
+
"@smithy/types": "^4.7.1",
|
|
50
|
+
"@smithy/url-parser": "^4.2.2",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.2.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.2",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.3",
|
|
56
|
+
"@smithy/util-endpoints": "^3.2.2",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.2",
|
|
58
|
+
"@smithy/util-retry": "^4.2.2",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.0",
|
|
60
|
-
"@smithy/util-waiter": "^4.2.
|
|
60
|
+
"@smithy/util-waiter": "^4.2.2",
|
|
61
61
|
"@smithy/uuid": "^1.1.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|