@aws-sdk/client-ec2 3.848.0 → 3.852.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 +21 -0
- package/dist-es/models/models_1.js +14 -0
- package/dist-es/protocols/Aws_ec2.js +7 -0
- package/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
- package/dist-types/commands/CreateFleetCommand.d.ts +4 -4
- package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -1
- package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
- package/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +4 -4
- package/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceTypesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -2
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
- package/dist-types/commands/ImportInstanceCommand.d.ts +1 -1
- package/dist-types/commands/ModifyFleetCommand.d.ts +1 -1
- package/dist-types/commands/ModifyReservedInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +1 -1
- package/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
- package/dist-types/commands/RequestSpotInstancesCommand.d.ts +2 -2
- package/dist-types/commands/RunInstancesCommand.d.ts +2 -2
- package/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +2 -3
- package/dist-types/commands/StopInstancesCommand.d.ts +10 -5
- package/dist-types/commands/TerminateInstancesCommand.d.ts +12 -4
- package/dist-types/models/models_1.d.ts +25 -5
- package/dist-types/models/models_4.d.ts +2 -2
- package/dist-types/models/models_8.d.ts +33 -15
- package/dist-types/ts3.4/models/models_1.d.ts +14 -0
- package/dist-types/ts3.4/models/models_8.d.ts +2 -0
- package/package.json +1 -1
|
@@ -739,6 +739,7 @@ export interface StartVpcEndpointServicePrivateDnsVerificationResult {
|
|
|
739
739
|
export interface StopInstancesRequest {
|
|
740
740
|
InstanceIds: string[] | undefined;
|
|
741
741
|
Hibernate?: boolean | undefined;
|
|
742
|
+
SkipOsShutdown?: boolean | undefined;
|
|
742
743
|
DryRun?: boolean | undefined;
|
|
743
744
|
Force?: boolean | undefined;
|
|
744
745
|
}
|
|
@@ -763,6 +764,7 @@ export interface TerminateClientVpnConnectionsResult {
|
|
|
763
764
|
}
|
|
764
765
|
export interface TerminateInstancesRequest {
|
|
765
766
|
InstanceIds: string[] | undefined;
|
|
767
|
+
SkipOsShutdown?: boolean | undefined;
|
|
766
768
|
DryRun?: boolean | undefined;
|
|
767
769
|
}
|
|
768
770
|
export interface TerminateInstancesResult {
|
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.852.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",
|