@aws-sdk/client-ec2 3.373.0 → 3.376.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.
@@ -231,6 +231,7 @@ exports.SpotInstanceState = {
231
231
  active: "active",
232
232
  cancelled: "cancelled",
233
233
  closed: "closed",
234
+ disabled: "disabled",
234
235
  failed: "failed",
235
236
  open: "open",
236
237
  };
@@ -227,6 +227,7 @@ export const SpotInstanceState = {
227
227
  active: "active",
228
228
  cancelled: "cancelled",
229
229
  closed: "closed",
230
+ disabled: "disabled",
230
231
  failed: "failed",
231
232
  open: "open",
232
233
  };
@@ -169,7 +169,7 @@ export interface DescribeSpotInstanceRequestsCommandOutput extends DescribeSpotI
169
169
  * // ProductDescription: "Linux/UNIX" || "Linux/UNIX (Amazon VPC)" || "Windows" || "Windows (Amazon VPC)",
170
170
  * // SpotInstanceRequestId: "STRING_VALUE",
171
171
  * // SpotPrice: "STRING_VALUE",
172
- * // State: "open" || "active" || "closed" || "cancelled" || "failed",
172
+ * // State: "open" || "active" || "closed" || "cancelled" || "failed" || "disabled",
173
173
  * // Status: { // SpotInstanceStatus
174
174
  * // Code: "STRING_VALUE",
175
175
  * // Message: "STRING_VALUE",
@@ -260,7 +260,7 @@ export interface RequestSpotInstancesCommandOutput extends RequestSpotInstancesR
260
260
  * // ProductDescription: "Linux/UNIX" || "Linux/UNIX (Amazon VPC)" || "Windows" || "Windows (Amazon VPC)",
261
261
  * // SpotInstanceRequestId: "STRING_VALUE",
262
262
  * // SpotPrice: "STRING_VALUE",
263
- * // State: "open" || "active" || "closed" || "cancelled" || "failed",
263
+ * // State: "open" || "active" || "closed" || "cancelled" || "failed" || "disabled",
264
264
  * // Status: { // SpotInstanceStatus
265
265
  * // Code: "STRING_VALUE",
266
266
  * // Message: "STRING_VALUE",
@@ -7949,6 +7949,7 @@ export declare const SpotInstanceState: {
7949
7949
  readonly active: "active";
7950
7950
  readonly cancelled: "cancelled";
7951
7951
  readonly closed: "closed";
7952
+ readonly disabled: "disabled";
7952
7953
  readonly failed: "failed";
7953
7954
  readonly open: "open";
7954
7955
  };
@@ -1734,6 +1734,7 @@ export declare const SpotInstanceState: {
1734
1734
  readonly active: "active";
1735
1735
  readonly cancelled: "cancelled";
1736
1736
  readonly closed: "closed";
1737
+ readonly disabled: "disabled";
1737
1738
  readonly failed: "failed";
1738
1739
  readonly open: "open";
1739
1740
  };
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.373.0",
4
+ "version": "3.376.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",