@aws-sdk/client-ec2 3.1118.0 → 3.1119.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 CHANGED
@@ -70,7 +70,7 @@ const commonParams = {
70
70
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
71
71
  };
72
72
 
73
- var version = "3.1117.0";
73
+ var version = "3.1118.0";
74
74
  var packageInfo = {
75
75
  version: version};
76
76
 
@@ -40823,6 +40823,7 @@ const Tenancy = {
40823
40823
  };
40824
40824
  const VpcState = {
40825
40825
  available: "available",
40826
+ deleting: "deleting",
40826
40827
  pending: "pending",
40827
40828
  };
40828
40829
  const MacSystemIntegrityProtectionSettingStatus = {
@@ -40931,6 +40932,7 @@ const FleetType = {
40931
40932
  REQUEST: "request",
40932
40933
  };
40933
40934
  const InstanceLifecycle = {
40935
+ CAPACITY_BLOCK: "capacity-block",
40934
40936
  INTERRUPTIBLE_CAPACITY_RESERVATION: "interruptible-capacity-reservation",
40935
40937
  ON_DEMAND: "on-demand",
40936
40938
  SPOT: "spot",
@@ -2189,6 +2189,7 @@ export const Tenancy = {
2189
2189
  };
2190
2190
  export const VpcState = {
2191
2191
  available: "available",
2192
+ deleting: "deleting",
2192
2193
  pending: "pending",
2193
2194
  };
2194
2195
  export const MacSystemIntegrityProtectionSettingStatus = {
@@ -2297,6 +2298,7 @@ export const FleetType = {
2297
2298
  REQUEST: "request",
2298
2299
  };
2299
2300
  export const InstanceLifecycle = {
2301
+ CAPACITY_BLOCK: "capacity-block",
2300
2302
  INTERRUPTIBLE_CAPACITY_RESERVATION: "interruptible-capacity-reservation",
2301
2303
  ON_DEMAND: "on-demand",
2302
2304
  SPOT: "spot",
@@ -121,7 +121,7 @@ declare const CreateDefaultVpcCommand_base: {
121
121
  * // InternetGatewayBlockMode: "off" || "block-bidirectional" || "block-ingress",
122
122
  * // },
123
123
  * // VpcId: "STRING_VALUE",
124
- * // State: "pending" || "available",
124
+ * // State: "pending" || "available" || "deleting",
125
125
  * // CidrBlock: "STRING_VALUE",
126
126
  * // DhcpOptionsId: "STRING_VALUE",
127
127
  * // },
@@ -372,7 +372,7 @@ declare const CreateFleetCommand_base: {
372
372
  * // AvailabilityZoneId: "STRING_VALUE",
373
373
  * // },
374
374
  * // },
375
- * // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation",
375
+ * // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation" || "capacity-block",
376
376
  * // ErrorCode: "STRING_VALUE",
377
377
  * // ErrorMessage: "STRING_VALUE",
378
378
  * // },
@@ -495,7 +495,7 @@ declare const CreateFleetCommand_base: {
495
495
  * // AvailabilityZoneId: "STRING_VALUE",
496
496
  * // },
497
497
  * // },
498
- * // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation",
498
+ * // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation" || "capacity-block",
499
499
  * // InstanceIds: [ // InstanceIdsSet
500
500
  * // "STRING_VALUE",
501
501
  * // ],
@@ -159,7 +159,7 @@ declare const CreateVpcCommand_base: {
159
159
  * // InternetGatewayBlockMode: "off" || "block-bidirectional" || "block-ingress",
160
160
  * // },
161
161
  * // VpcId: "STRING_VALUE",
162
- * // State: "pending" || "available",
162
+ * // State: "pending" || "available" || "deleting",
163
163
  * // CidrBlock: "STRING_VALUE",
164
164
  * // DhcpOptionsId: "STRING_VALUE",
165
165
  * // },
@@ -362,7 +362,7 @@ declare const DescribeFleetsCommand_base: {
362
362
  * // AvailabilityZoneId: "STRING_VALUE",
363
363
  * // },
364
364
  * // },
365
- * // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation",
365
+ * // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation" || "capacity-block",
366
366
  * // ErrorCode: "STRING_VALUE",
367
367
  * // ErrorMessage: "STRING_VALUE",
368
368
  * // },
@@ -485,7 +485,7 @@ declare const DescribeFleetsCommand_base: {
485
485
  * // AvailabilityZoneId: "STRING_VALUE",
486
486
  * // },
487
487
  * // },
488
- * // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation",
488
+ * // Lifecycle: "spot" || "on-demand" || "interruptible-capacity-reservation" || "capacity-block",
489
489
  * // InstanceIds: [ // InstanceIdsSet
490
490
  * // "STRING_VALUE",
491
491
  * // ],
@@ -132,7 +132,7 @@ declare const DescribeVpcsCommand_base: {
132
132
  * // InternetGatewayBlockMode: "off" || "block-bidirectional" || "block-ingress",
133
133
  * // },
134
134
  * // VpcId: "STRING_VALUE",
135
- * // State: "pending" || "available",
135
+ * // State: "pending" || "available" || "deleting",
136
136
  * // CidrBlock: "STRING_VALUE",
137
137
  * // DhcpOptionsId: "STRING_VALUE",
138
138
  * // },
@@ -3089,6 +3089,7 @@ export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
3089
3089
  */
3090
3090
  export declare const VpcState: {
3091
3091
  readonly available: "available";
3092
+ readonly deleting: "deleting";
3092
3093
  readonly pending: "pending";
3093
3094
  };
3094
3095
  /**
@@ -3389,6 +3390,7 @@ export type FleetType = (typeof FleetType)[keyof typeof FleetType];
3389
3390
  * @enum
3390
3391
  */
3391
3392
  export declare const InstanceLifecycle: {
3393
+ readonly CAPACITY_BLOCK: "capacity-block";
3392
3394
  readonly INTERRUPTIBLE_CAPACITY_RESERVATION: "interruptible-capacity-reservation";
3393
3395
  readonly ON_DEMAND: "on-demand";
3394
3396
  readonly SPOT: "spot";
@@ -2357,6 +2357,7 @@ export declare const Tenancy: {
2357
2357
  export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
2358
2358
  export declare const VpcState: {
2359
2359
  readonly available: "available";
2360
+ readonly deleting: "deleting";
2360
2361
  readonly pending: "pending";
2361
2362
  };
2362
2363
  export type VpcState = (typeof VpcState)[keyof typeof VpcState];
@@ -2503,6 +2504,7 @@ export declare const FleetType: {
2503
2504
  };
2504
2505
  export type FleetType = (typeof FleetType)[keyof typeof FleetType];
2505
2506
  export declare const InstanceLifecycle: {
2507
+ readonly CAPACITY_BLOCK: "capacity-block";
2506
2508
  readonly INTERRUPTIBLE_CAPACITY_RESERVATION: "interruptible-capacity-reservation";
2507
2509
  readonly ON_DEMAND: "on-demand";
2508
2510
  readonly SPOT: "spot";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ec2",
3
- "version": "3.1118.0",
3
+ "version": "3.1119.0",
4
4
  "description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-ec2",
6
6
  "license": "Apache-2.0",