@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.
Files changed (37) hide show
  1. package/dist-cjs/index.js +21 -0
  2. package/dist-es/models/models_1.js +14 -0
  3. package/dist-es/protocols/Aws_ec2.js +7 -0
  4. package/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
  5. package/dist-types/commands/CreateFleetCommand.d.ts +4 -4
  6. package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
  8. package/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeFleetsCommand.d.ts +4 -4
  10. package/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeInstanceTypesCommand.d.ts +2 -2
  13. package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
  15. package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +2 -2
  18. package/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
  19. package/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -2
  21. package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
  22. package/dist-types/commands/ImportInstanceCommand.d.ts +1 -1
  23. package/dist-types/commands/ModifyFleetCommand.d.ts +1 -1
  24. package/dist-types/commands/ModifyReservedInstancesCommand.d.ts +1 -1
  25. package/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +1 -1
  26. package/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
  27. package/dist-types/commands/RequestSpotInstancesCommand.d.ts +2 -2
  28. package/dist-types/commands/RunInstancesCommand.d.ts +2 -2
  29. package/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +2 -3
  30. package/dist-types/commands/StopInstancesCommand.d.ts +10 -5
  31. package/dist-types/commands/TerminateInstancesCommand.d.ts +12 -4
  32. package/dist-types/models/models_1.d.ts +25 -5
  33. package/dist-types/models/models_4.d.ts +2 -2
  34. package/dist-types/models/models_8.d.ts +33 -15
  35. package/dist-types/ts3.4/models/models_1.d.ts +14 -0
  36. package/dist-types/ts3.4/models/models_8.d.ts +2 -0
  37. 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.848.0",
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",