@aws-sdk/client-ec2 3.864.0 → 3.865.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 +54 -0
- package/dist-es/protocols/Aws_ec2.js +56 -0
- package/dist-types/EC2.d.ts +2 -0
- package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +1 -0
- package/dist-types/commands/CreateDefaultSubnetCommand.d.ts +3 -2
- package/dist-types/commands/CreateFleetCommand.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 +4 -2
- package/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +4 -1
- package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +2 -2
- package/dist-types/commands/DescribeByoipCidrsCommand.d.ts +3 -2
- package/dist-types/commands/DescribeConversionTasksCommand.d.ts +2 -0
- package/dist-types/commands/DescribeImagesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceStatusCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeManagedPrefixListsCommand.d.ts +1 -0
- package/dist-types/commands/DescribePrefixListsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -0
- package/dist-types/commands/DescribeVolumesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +4 -1
- package/dist-types/commands/DescribeVpcEndpointServicesCommand.d.ts +3 -0
- package/dist-types/commands/EnableImageDeregistrationProtectionCommand.d.ts +2 -1
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -0
- package/dist-types/commands/ImportInstanceCommand.d.ts +3 -0
- package/dist-types/commands/ImportVolumeCommand.d.ts +4 -1
- package/dist-types/commands/ModifyFleetCommand.d.ts +1 -0
- package/dist-types/commands/MoveAddressToVpcCommand.d.ts +2 -1
- package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +4 -2
- package/dist-types/commands/RegisterImageCommand.d.ts +8 -3
- package/dist-types/commands/ReleaseAddressCommand.d.ts +4 -4
- package/dist-types/commands/RequestSpotInstancesCommand.d.ts +1 -0
- package/dist-types/commands/RunInstancesCommand.d.ts +2 -0
- package/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +3 -2
- package/dist-types/models/models_1.d.ts +30 -4
- package/dist-types/models/models_2.d.ts +20 -1
- package/dist-types/models/models_3.d.ts +7 -0
- package/dist-types/models/models_4.d.ts +37 -2
- package/dist-types/models/models_5.d.ts +34 -0
- package/dist-types/models/models_6.d.ts +7 -0
- package/dist-types/models/models_7.d.ts +10 -1
- package/dist-types/ts3.4/EC2.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +4 -1
- package/dist-types/ts3.4/models/models_2.d.ts +4 -1
- package/dist-types/ts3.4/models/models_3.d.ts +1 -0
- package/dist-types/ts3.4/models/models_4.d.ts +3 -0
- package/dist-types/ts3.4/models/models_5.d.ts +3 -0
- package/dist-types/ts3.4/models/models_6.d.ts +1 -0
- package/dist-types/ts3.4/models/models_7.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1121,6 +1121,11 @@ export interface ImportInstanceVolumeDetailItem {
|
|
|
1121
1121
|
* @public
|
|
1122
1122
|
*/
|
|
1123
1123
|
AvailabilityZone?: string | undefined;
|
|
1124
|
+
/**
|
|
1125
|
+
* <p>The ID of the Availability Zone where the resulting instance will reside.</p>
|
|
1126
|
+
* @public
|
|
1127
|
+
*/
|
|
1128
|
+
AvailabilityZoneId?: string | undefined;
|
|
1124
1129
|
/**
|
|
1125
1130
|
* <p>The number of bytes converted so far.</p>
|
|
1126
1131
|
* @public
|
|
@@ -1188,6 +1193,11 @@ export interface ImportVolumeTaskDetails {
|
|
|
1188
1193
|
* @public
|
|
1189
1194
|
*/
|
|
1190
1195
|
AvailabilityZone?: string | undefined;
|
|
1196
|
+
/**
|
|
1197
|
+
* <p>The ID of the Availability Zone where the resulting volume will reside.</p>
|
|
1198
|
+
* @public
|
|
1199
|
+
*/
|
|
1200
|
+
AvailabilityZoneId?: string | undefined;
|
|
1191
1201
|
/**
|
|
1192
1202
|
* <p>The number of bytes converted so far.</p>
|
|
1193
1203
|
* @public
|
|
@@ -4531,7 +4541,7 @@ export interface DescribeImageAttributeRequest {
|
|
|
4531
4541
|
* <p>
|
|
4532
4542
|
* <b>Note</b>: The <code>blockDeviceMapping</code> attribute is
|
|
4533
4543
|
* deprecated. Using this attribute returns the <code>Client.AuthFailure</code> error. To get
|
|
4534
|
-
* information about the block device mappings for an AMI,
|
|
4544
|
+
* information about the block device mappings for an AMI, use the <a>DescribeImages</a> action.</p>
|
|
4535
4545
|
* @public
|
|
4536
4546
|
*/
|
|
4537
4547
|
Attribute: ImageAttributeName | undefined;
|
|
@@ -5199,11 +5209,21 @@ export interface Image {
|
|
|
5199
5209
|
ImageAllowed?: boolean | undefined;
|
|
5200
5210
|
/**
|
|
5201
5211
|
* <p>The ID of the source AMI from which the AMI was created.</p>
|
|
5212
|
+
* <p>The ID only appears if the AMI was created using <a>CreateImage</a>, <a>CopyImage</a>, or <a>CreateRestoreImageTask</a>. The ID does not appear
|
|
5213
|
+
* if the AMI was created using any other API. For some older AMIs, the ID might not be
|
|
5214
|
+
* available. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/identify-source-ami-used-to-create-new-ami.html">Identify the
|
|
5215
|
+
* source AMI used to create a new Amazon EC2 AMI</a> in the
|
|
5216
|
+
* <i>Amazon EC2 User Guide</i>.</p>
|
|
5202
5217
|
* @public
|
|
5203
5218
|
*/
|
|
5204
5219
|
SourceImageId?: string | undefined;
|
|
5205
5220
|
/**
|
|
5206
|
-
* <p>The Region of the source AMI
|
|
5221
|
+
* <p>The Region of the source AMI. </p>
|
|
5222
|
+
* <p>The Region only appears if the AMI was created using <a>CreateImage</a>, <a>CopyImage</a>, or <a>CreateRestoreImageTask</a>. The Region does not
|
|
5223
|
+
* appear if the AMI was created using any other API. For some older AMIs, the Region might not
|
|
5224
|
+
* be available. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/identify-source-ami-used-to-create-new-ami.html">Identify the
|
|
5225
|
+
* source AMI used to create a new Amazon EC2 AMI</a> in the
|
|
5226
|
+
* <i>Amazon EC2 User Guide</i>.</p>
|
|
5207
5227
|
* @public
|
|
5208
5228
|
*/
|
|
5209
5229
|
SourceImageRegion?: string | undefined;
|
|
@@ -6528,6 +6548,11 @@ export interface DescribeInstancesRequest {
|
|
|
6528
6548
|
* </li>
|
|
6529
6549
|
* <li>
|
|
6530
6550
|
* <p>
|
|
6551
|
+
* <code>availability-zone-id</code> - The ID of the Availability Zone of the
|
|
6552
|
+
* instance.</p>
|
|
6553
|
+
* </li>
|
|
6554
|
+
* <li>
|
|
6555
|
+
* <p>
|
|
6531
6556
|
* <code>block-device-mapping.attach-time</code> - The attach time for an EBS
|
|
6532
6557
|
* volume mapped to the instance, for example,
|
|
6533
6558
|
* <code>2022-09-15T17:15:20.000Z</code>.</p>
|
|
@@ -8416,6 +8441,11 @@ export interface DescribeInstanceStatusRequest {
|
|
|
8416
8441
|
* </li>
|
|
8417
8442
|
* <li>
|
|
8418
8443
|
* <p>
|
|
8444
|
+
* <code>availability-zone-id</code> - The ID of the Availability Zone of the
|
|
8445
|
+
* instance.</p>
|
|
8446
|
+
* </li>
|
|
8447
|
+
* <li>
|
|
8448
|
+
* <p>
|
|
8419
8449
|
* <code>event.code</code> - The code for the scheduled event
|
|
8420
8450
|
* (<code>instance-reboot</code> | <code>system-reboot</code> |
|
|
8421
8451
|
* <code>system-maintenance</code> | <code>instance-retirement</code> |
|
|
@@ -8693,6 +8723,11 @@ export interface InstanceStatus {
|
|
|
8693
8723
|
* @public
|
|
8694
8724
|
*/
|
|
8695
8725
|
AvailabilityZone?: string | undefined;
|
|
8726
|
+
/**
|
|
8727
|
+
* <p>The ID of the Availability Zone of the instance.</p>
|
|
8728
|
+
* @public
|
|
8729
|
+
*/
|
|
8730
|
+
AvailabilityZoneId?: string | undefined;
|
|
8696
8731
|
/**
|
|
8697
8732
|
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
|
|
8698
8733
|
* @public
|
|
@@ -7110,6 +7110,11 @@ export interface DescribeSpotInstanceRequestsRequest {
|
|
|
7110
7110
|
* </li>
|
|
7111
7111
|
* <li>
|
|
7112
7112
|
* <p>
|
|
7113
|
+
* <code>launched-availability-zone-id</code> - The ID of the Availability Zone
|
|
7114
|
+
* in which the request is launched.</p>
|
|
7115
|
+
* </li>
|
|
7116
|
+
* <li>
|
|
7117
|
+
* <p>
|
|
7113
7118
|
* <code>network-interface.addresses.primary</code> - Indicates whether the IP
|
|
7114
7119
|
* address is the primary private IP address.</p>
|
|
7115
7120
|
* </li>
|
|
@@ -7388,9 +7393,16 @@ export interface SpotInstanceRequest {
|
|
|
7388
7393
|
LaunchSpecification?: LaunchSpecification | undefined;
|
|
7389
7394
|
/**
|
|
7390
7395
|
* <p>The Availability Zone in which the request is launched.</p>
|
|
7396
|
+
* <p>Either <code>launchedAvailabilityZone</code> or <code>launchedAvailabilityZoneId</code> can be specified, but not both</p>
|
|
7391
7397
|
* @public
|
|
7392
7398
|
*/
|
|
7393
7399
|
LaunchedAvailabilityZone?: string | undefined;
|
|
7400
|
+
/**
|
|
7401
|
+
* <p>The ID of the Availability Zone in which the request is launched.</p>
|
|
7402
|
+
* <p>Either <code>launchedAvailabilityZone</code> or <code>launchedAvailabilityZoneId</code> can be specified, but not both</p>
|
|
7403
|
+
* @public
|
|
7404
|
+
*/
|
|
7405
|
+
LaunchedAvailabilityZoneId?: string | undefined;
|
|
7394
7406
|
/**
|
|
7395
7407
|
* <p>The product description associated with the Spot Instance.</p>
|
|
7396
7408
|
* @public
|
|
@@ -7485,6 +7497,12 @@ export interface DescribeSpotInstanceRequestsResult {
|
|
|
7485
7497
|
* @public
|
|
7486
7498
|
*/
|
|
7487
7499
|
export interface DescribeSpotPriceHistoryRequest {
|
|
7500
|
+
/**
|
|
7501
|
+
* <p>Filters the results by the specified ID of the Availability Zone.</p>
|
|
7502
|
+
* <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> can be specified, but not both</p>
|
|
7503
|
+
* @public
|
|
7504
|
+
*/
|
|
7505
|
+
AvailabilityZoneId?: string | undefined;
|
|
7488
7506
|
/**
|
|
7489
7507
|
* <p>Checks whether you have the required permissions for the action, without actually
|
|
7490
7508
|
* making the request, and provides an error response. If you have the required
|
|
@@ -7527,6 +7545,11 @@ export interface DescribeSpotPriceHistoryRequest {
|
|
|
7527
7545
|
* </li>
|
|
7528
7546
|
* <li>
|
|
7529
7547
|
* <p>
|
|
7548
|
+
* <code>availability-zone-id</code> - The ID of the Availability Zone for which
|
|
7549
|
+
* prices should be returned.</p>
|
|
7550
|
+
* </li>
|
|
7551
|
+
* <li>
|
|
7552
|
+
* <p>
|
|
7530
7553
|
* <code>instance-type</code> - The type of instance (for example,
|
|
7531
7554
|
* <code>m3.medium</code>).</p>
|
|
7532
7555
|
* </li>
|
|
@@ -7559,6 +7582,7 @@ export interface DescribeSpotPriceHistoryRequest {
|
|
|
7559
7582
|
Filters?: Filter[] | undefined;
|
|
7560
7583
|
/**
|
|
7561
7584
|
* <p>Filters the results by the specified Availability Zone.</p>
|
|
7585
|
+
* <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> can be specified, but not both</p>
|
|
7562
7586
|
* @public
|
|
7563
7587
|
*/
|
|
7564
7588
|
AvailabilityZone?: string | undefined;
|
|
@@ -7589,6 +7613,11 @@ export interface SpotPrice {
|
|
|
7589
7613
|
* @public
|
|
7590
7614
|
*/
|
|
7591
7615
|
AvailabilityZone?: string | undefined;
|
|
7616
|
+
/**
|
|
7617
|
+
* <p>The ID of the Availability Zone.</p>
|
|
7618
|
+
* @public
|
|
7619
|
+
*/
|
|
7620
|
+
AvailabilityZoneId?: string | undefined;
|
|
7592
7621
|
/**
|
|
7593
7622
|
* <p>The instance type.</p>
|
|
7594
7623
|
* @public
|
|
@@ -9793,6 +9822,11 @@ export interface DescribeVolumesRequest {
|
|
|
9793
9822
|
* </li>
|
|
9794
9823
|
* <li>
|
|
9795
9824
|
* <p>
|
|
9825
|
+
* <code>availability-zone-id</code> - The ID of the Availability Zone in which the
|
|
9826
|
+
* volume was created.</p>
|
|
9827
|
+
* </li>
|
|
9828
|
+
* <li>
|
|
9829
|
+
* <p>
|
|
9796
9830
|
* <code>create-time</code> - The time stamp when the volume was created.</p>
|
|
9797
9831
|
* </li>
|
|
9798
9832
|
* <li>
|
|
@@ -267,8 +267,15 @@ export interface ServiceDetail {
|
|
|
267
267
|
* @public
|
|
268
268
|
*/
|
|
269
269
|
ServiceRegion?: string | undefined;
|
|
270
|
+
/**
|
|
271
|
+
* <p>The IDs of the Availability Zones in which the service is available.</p>
|
|
272
|
+
* <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> can be specified, but not both</p>
|
|
273
|
+
* @public
|
|
274
|
+
*/
|
|
275
|
+
AvailabilityZoneIds?: string[] | undefined;
|
|
270
276
|
/**
|
|
271
277
|
* <p>The Availability Zones in which the service is available.</p>
|
|
278
|
+
* <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> can be specified, but not both</p>
|
|
272
279
|
* @public
|
|
273
280
|
*/
|
|
274
281
|
AvailabilityZones?: string[] | undefined;
|
|
@@ -1872,6 +1872,13 @@ export interface ImportSnapshotResult {
|
|
|
1872
1872
|
* @public
|
|
1873
1873
|
*/
|
|
1874
1874
|
export interface ImportVolumeRequest {
|
|
1875
|
+
/**
|
|
1876
|
+
* <p>The ID of the Availability Zone for the resulting EBS volume.</p>
|
|
1877
|
+
* <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> must be specified,
|
|
1878
|
+
* but not both.</p>
|
|
1879
|
+
* @public
|
|
1880
|
+
*/
|
|
1881
|
+
AvailabilityZoneId?: string | undefined;
|
|
1875
1882
|
/**
|
|
1876
1883
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
1877
1884
|
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
@@ -1881,9 +1888,11 @@ export interface ImportVolumeRequest {
|
|
|
1881
1888
|
DryRun?: boolean | undefined;
|
|
1882
1889
|
/**
|
|
1883
1890
|
* <p>The Availability Zone for the resulting EBS volume.</p>
|
|
1891
|
+
* <p>Either <code>AvailabilityZone</code> or <code>AvailabilityZoneId</code> must be specified,
|
|
1892
|
+
* but not both.</p>
|
|
1884
1893
|
* @public
|
|
1885
1894
|
*/
|
|
1886
|
-
AvailabilityZone
|
|
1895
|
+
AvailabilityZone?: string | undefined;
|
|
1887
1896
|
/**
|
|
1888
1897
|
* <p>The disk image.</p>
|
|
1889
1898
|
* @public
|
|
@@ -3734,6 +3734,7 @@ export interface EC2 {
|
|
|
3734
3734
|
options: __HttpHandlerOptions,
|
|
3735
3735
|
cb: (err: any, data?: CreateCustomerGatewayCommandOutput) => void
|
|
3736
3736
|
): void;
|
|
3737
|
+
createDefaultSubnet(): Promise<CreateDefaultSubnetCommandOutput>;
|
|
3737
3738
|
createDefaultSubnet(
|
|
3738
3739
|
args: CreateDefaultSubnetCommandInput,
|
|
3739
3740
|
options?: __HttpHandlerOptions
|
|
@@ -4772,6 +4773,7 @@ export interface EC2 {
|
|
|
4772
4773
|
data?: CreateVerifiedAccessTrustProviderCommandOutput
|
|
4773
4774
|
) => void
|
|
4774
4775
|
): void;
|
|
4776
|
+
createVolume(): Promise<CreateVolumeCommandOutput>;
|
|
4775
4777
|
createVolume(
|
|
4776
4778
|
args: CreateVolumeCommandInput,
|
|
4777
4779
|
options?: __HttpHandlerOptions
|
|
@@ -27,7 +27,7 @@ declare const CreateDefaultSubnetCommand_base: {
|
|
|
27
27
|
ServiceOutputTypes
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
|
-
input: CreateDefaultSubnetCommandInput
|
|
30
|
+
...[input]: [] | [CreateDefaultSubnetCommandInput]
|
|
31
31
|
): import("@smithy/smithy-client").CommandImpl<
|
|
32
32
|
CreateDefaultSubnetCommandInput,
|
|
33
33
|
CreateDefaultSubnetCommandOutput,
|
|
@@ -21,7 +21,7 @@ declare const CreateVolumeCommand_base: {
|
|
|
21
21
|
ServiceOutputTypes
|
|
22
22
|
>;
|
|
23
23
|
new (
|
|
24
|
-
input: CreateVolumeCommandInput
|
|
24
|
+
...[input]: [] | [CreateVolumeCommandInput]
|
|
25
25
|
): import("@smithy/smithy-client").CommandImpl<
|
|
26
26
|
CreateVolumeCommandInput,
|
|
27
27
|
CreateVolumeCommandOutput,
|
|
@@ -1422,9 +1422,10 @@ export interface CreateCustomerGatewayResult {
|
|
|
1422
1422
|
CustomerGateway?: CustomerGateway | undefined;
|
|
1423
1423
|
}
|
|
1424
1424
|
export interface CreateDefaultSubnetRequest {
|
|
1425
|
-
AvailabilityZone
|
|
1425
|
+
AvailabilityZone?: string | undefined;
|
|
1426
1426
|
DryRun?: boolean | undefined;
|
|
1427
1427
|
Ipv6Native?: boolean | undefined;
|
|
1428
|
+
AvailabilityZoneId?: string | undefined;
|
|
1428
1429
|
}
|
|
1429
1430
|
export declare const BlockPublicAccessMode: {
|
|
1430
1431
|
readonly block_bidirectional: "block-bidirectional";
|
|
@@ -1796,6 +1797,7 @@ export interface InstanceRequirementsRequest {
|
|
|
1796
1797
|
BaselinePerformanceFactors?: BaselinePerformanceFactorsRequest | undefined;
|
|
1797
1798
|
}
|
|
1798
1799
|
export interface Placement {
|
|
1800
|
+
AvailabilityZoneId?: string | undefined;
|
|
1799
1801
|
Affinity?: string | undefined;
|
|
1800
1802
|
GroupName?: string | undefined;
|
|
1801
1803
|
PartitionNumber?: number | undefined;
|
|
@@ -2831,6 +2833,7 @@ export interface OperatorRequest {
|
|
|
2831
2833
|
}
|
|
2832
2834
|
export interface LaunchTemplatePlacementRequest {
|
|
2833
2835
|
AvailabilityZone?: string | undefined;
|
|
2836
|
+
AvailabilityZoneId?: string | undefined;
|
|
2834
2837
|
Affinity?: string | undefined;
|
|
2835
2838
|
GroupName?: string | undefined;
|
|
2836
2839
|
HostId?: string | undefined;
|
|
@@ -114,6 +114,7 @@ export interface LaunchTemplateNetworkPerformanceOptions {
|
|
|
114
114
|
}
|
|
115
115
|
export interface LaunchTemplatePlacement {
|
|
116
116
|
AvailabilityZone?: string | undefined;
|
|
117
|
+
AvailabilityZoneId?: string | undefined;
|
|
117
118
|
Affinity?: string | undefined;
|
|
118
119
|
GroupName?: string | undefined;
|
|
119
120
|
HostId?: string | undefined;
|
|
@@ -2123,7 +2124,8 @@ export interface CreateVerifiedAccessTrustProviderResult {
|
|
|
2123
2124
|
VerifiedAccessTrustProvider?: VerifiedAccessTrustProvider | undefined;
|
|
2124
2125
|
}
|
|
2125
2126
|
export interface CreateVolumeRequest {
|
|
2126
|
-
AvailabilityZone
|
|
2127
|
+
AvailabilityZone?: string | undefined;
|
|
2128
|
+
AvailabilityZoneId?: string | undefined;
|
|
2127
2129
|
Encrypted?: boolean | undefined;
|
|
2128
2130
|
Iops?: number | undefined;
|
|
2129
2131
|
KmsKeyId?: string | undefined;
|
|
@@ -2149,6 +2151,7 @@ export declare const VolumeState: {
|
|
|
2149
2151
|
};
|
|
2150
2152
|
export type VolumeState = (typeof VolumeState)[keyof typeof VolumeState];
|
|
2151
2153
|
export interface Volume {
|
|
2154
|
+
AvailabilityZoneId?: string | undefined;
|
|
2152
2155
|
OutpostArn?: string | undefined;
|
|
2153
2156
|
Iops?: number | undefined;
|
|
2154
2157
|
Tags?: Tag[] | undefined;
|
|
@@ -162,6 +162,7 @@ export interface ServiceConfiguration {
|
|
|
162
162
|
ServiceId?: string | undefined;
|
|
163
163
|
ServiceName?: string | undefined;
|
|
164
164
|
ServiceState?: ServiceState | undefined;
|
|
165
|
+
AvailabilityZoneIds?: string[] | undefined;
|
|
165
166
|
AvailabilityZones?: string[] | undefined;
|
|
166
167
|
AcceptanceRequired?: boolean | undefined;
|
|
167
168
|
ManagesVpcEndpoints?: boolean | undefined;
|
|
@@ -314,6 +314,7 @@ export interface DiskImageVolumeDescription {
|
|
|
314
314
|
}
|
|
315
315
|
export interface ImportInstanceVolumeDetailItem {
|
|
316
316
|
AvailabilityZone?: string | undefined;
|
|
317
|
+
AvailabilityZoneId?: string | undefined;
|
|
317
318
|
BytesConverted?: number | undefined;
|
|
318
319
|
Description?: string | undefined;
|
|
319
320
|
Image?: DiskImageDescription | undefined;
|
|
@@ -329,6 +330,7 @@ export interface ImportInstanceTaskDetails {
|
|
|
329
330
|
}
|
|
330
331
|
export interface ImportVolumeTaskDetails {
|
|
331
332
|
AvailabilityZone?: string | undefined;
|
|
333
|
+
AvailabilityZoneId?: string | undefined;
|
|
332
334
|
BytesConverted?: number | undefined;
|
|
333
335
|
Description?: string | undefined;
|
|
334
336
|
Image?: DiskImageDescription | undefined;
|
|
@@ -1673,6 +1675,7 @@ export interface InstanceStatusSummary {
|
|
|
1673
1675
|
}
|
|
1674
1676
|
export interface InstanceStatus {
|
|
1675
1677
|
AvailabilityZone?: string | undefined;
|
|
1678
|
+
AvailabilityZoneId?: string | undefined;
|
|
1676
1679
|
OutpostArn?: string | undefined;
|
|
1677
1680
|
Operator?: OperatorResponse | undefined;
|
|
1678
1681
|
Events?: InstanceStatusEvent[] | undefined;
|
|
@@ -1354,6 +1354,7 @@ export interface SpotInstanceRequest {
|
|
|
1354
1354
|
LaunchGroup?: string | undefined;
|
|
1355
1355
|
LaunchSpecification?: LaunchSpecification | undefined;
|
|
1356
1356
|
LaunchedAvailabilityZone?: string | undefined;
|
|
1357
|
+
LaunchedAvailabilityZoneId?: string | undefined;
|
|
1357
1358
|
ProductDescription?: RIProductDescription | undefined;
|
|
1358
1359
|
SpotInstanceRequestId?: string | undefined;
|
|
1359
1360
|
SpotPrice?: string | undefined;
|
|
@@ -1370,6 +1371,7 @@ export interface DescribeSpotInstanceRequestsResult {
|
|
|
1370
1371
|
NextToken?: string | undefined;
|
|
1371
1372
|
}
|
|
1372
1373
|
export interface DescribeSpotPriceHistoryRequest {
|
|
1374
|
+
AvailabilityZoneId?: string | undefined;
|
|
1373
1375
|
DryRun?: boolean | undefined;
|
|
1374
1376
|
StartTime?: Date | undefined;
|
|
1375
1377
|
EndTime?: Date | undefined;
|
|
@@ -1382,6 +1384,7 @@ export interface DescribeSpotPriceHistoryRequest {
|
|
|
1382
1384
|
}
|
|
1383
1385
|
export interface SpotPrice {
|
|
1384
1386
|
AvailabilityZone?: string | undefined;
|
|
1387
|
+
AvailabilityZoneId?: string | undefined;
|
|
1385
1388
|
InstanceType?: _InstanceType | undefined;
|
|
1386
1389
|
ProductDescription?: RIProductDescription | undefined;
|
|
1387
1390
|
SpotPrice?: string | undefined;
|
|
@@ -116,6 +116,7 @@ export interface ServiceDetail {
|
|
|
116
116
|
ServiceId?: string | undefined;
|
|
117
117
|
ServiceType?: ServiceTypeDetail[] | undefined;
|
|
118
118
|
ServiceRegion?: string | undefined;
|
|
119
|
+
AvailabilityZoneIds?: string[] | undefined;
|
|
119
120
|
AvailabilityZones?: string[] | undefined;
|
|
120
121
|
Owner?: string | undefined;
|
|
121
122
|
BaseEndpointDnsNames?: string[] | undefined;
|
|
@@ -541,8 +541,9 @@ export interface ImportSnapshotResult {
|
|
|
541
541
|
Tags?: Tag[] | undefined;
|
|
542
542
|
}
|
|
543
543
|
export interface ImportVolumeRequest {
|
|
544
|
+
AvailabilityZoneId?: string | undefined;
|
|
544
545
|
DryRun?: boolean | undefined;
|
|
545
|
-
AvailabilityZone
|
|
546
|
+
AvailabilityZone?: string | undefined;
|
|
546
547
|
Image: DiskImageDetail | undefined;
|
|
547
548
|
Description?: string | undefined;
|
|
548
549
|
Volume: VolumeDetail | undefined;
|
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.865.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",
|