@aws-sdk/client-ec2 3.692.0 → 3.694.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 +1 -3
- package/dist-es/models/models_1.js +0 -2
- package/dist-types/commands/CreateFleetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +0 -2
- package/dist-types/ts3.4/models/models_1.d.ts +0 -2
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -64892,9 +64892,7 @@ var FleetOnDemandAllocationStrategy = {
|
|
|
64892
64892
|
PRIORITIZED: "prioritized"
|
|
64893
64893
|
};
|
|
64894
64894
|
var FleetCapacityReservationUsageStrategy = {
|
|
64895
|
-
|
|
64896
|
-
USE_CAPACITY_RESERVATIONS_FIRST: "use-capacity-reservations-first",
|
|
64897
|
-
USE_CAPACITY_RESERVATIONS_ONLY: "use-capacity-reservations-only"
|
|
64895
|
+
USE_CAPACITY_RESERVATIONS_FIRST: "use-capacity-reservations-first"
|
|
64898
64896
|
};
|
|
64899
64897
|
var SpotAllocationStrategy = {
|
|
64900
64898
|
CAPACITY_OPTIMIZED: "capacity-optimized",
|
|
@@ -960,9 +960,7 @@ export const FleetOnDemandAllocationStrategy = {
|
|
|
960
960
|
PRIORITIZED: "prioritized",
|
|
961
961
|
};
|
|
962
962
|
export const FleetCapacityReservationUsageStrategy = {
|
|
963
|
-
NONE: "none",
|
|
964
963
|
USE_CAPACITY_RESERVATIONS_FIRST: "use-capacity-reservations-first",
|
|
965
|
-
USE_CAPACITY_RESERVATIONS_ONLY: "use-capacity-reservations-only",
|
|
966
964
|
};
|
|
967
965
|
export const SpotAllocationStrategy = {
|
|
968
966
|
CAPACITY_OPTIMIZED: "capacity-optimized",
|
|
@@ -59,7 +59,7 @@ declare const CreateFleetCommand_base: {
|
|
|
59
59
|
* OnDemandOptions: { // OnDemandOptionsRequest
|
|
60
60
|
* AllocationStrategy: "lowest-price" || "prioritized",
|
|
61
61
|
* CapacityReservationOptions: { // CapacityReservationOptionsRequest
|
|
62
|
-
* UsageStrategy: "use-capacity-reservations-first"
|
|
62
|
+
* UsageStrategy: "use-capacity-reservations-first",
|
|
63
63
|
* },
|
|
64
64
|
* SingleInstanceType: true || false,
|
|
65
65
|
* SingleAvailabilityZone: true || false,
|
|
@@ -192,7 +192,7 @@ declare const DescribeFleetsCommand_base: {
|
|
|
192
192
|
* // OnDemandOptions: { // OnDemandOptions
|
|
193
193
|
* // AllocationStrategy: "lowest-price" || "prioritized",
|
|
194
194
|
* // CapacityReservationOptions: { // CapacityReservationOptions
|
|
195
|
-
* // UsageStrategy: "use-capacity-reservations-first"
|
|
195
|
+
* // UsageStrategy: "use-capacity-reservations-first",
|
|
196
196
|
* // },
|
|
197
197
|
* // SingleInstanceType: true || false,
|
|
198
198
|
* // SingleAvailabilityZone: true || false,
|
|
@@ -3670,9 +3670,7 @@ export type FleetOnDemandAllocationStrategy = (typeof FleetOnDemandAllocationStr
|
|
|
3670
3670
|
* @enum
|
|
3671
3671
|
*/
|
|
3672
3672
|
export declare const FleetCapacityReservationUsageStrategy: {
|
|
3673
|
-
readonly NONE: "none";
|
|
3674
3673
|
readonly USE_CAPACITY_RESERVATIONS_FIRST: "use-capacity-reservations-first";
|
|
3675
|
-
readonly USE_CAPACITY_RESERVATIONS_ONLY: "use-capacity-reservations-only";
|
|
3676
3674
|
};
|
|
3677
3675
|
/**
|
|
3678
3676
|
* @public
|
|
@@ -1446,9 +1446,7 @@ export declare const FleetOnDemandAllocationStrategy: {
|
|
|
1446
1446
|
export type FleetOnDemandAllocationStrategy =
|
|
1447
1447
|
(typeof FleetOnDemandAllocationStrategy)[keyof typeof FleetOnDemandAllocationStrategy];
|
|
1448
1448
|
export declare const FleetCapacityReservationUsageStrategy: {
|
|
1449
|
-
readonly NONE: "none";
|
|
1450
1449
|
readonly USE_CAPACITY_RESERVATIONS_FIRST: "use-capacity-reservations-first";
|
|
1451
|
-
readonly USE_CAPACITY_RESERVATIONS_ONLY: "use-capacity-reservations-only";
|
|
1452
1450
|
};
|
|
1453
1451
|
export type FleetCapacityReservationUsageStrategy =
|
|
1454
1452
|
(typeof FleetCapacityReservationUsageStrategy)[keyof typeof FleetCapacityReservationUsageStrategy];
|
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.694.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",
|
|
@@ -20,20 +20,20 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.693.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.693.0",
|
|
25
|
+
"@aws-sdk/core": "3.693.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.693.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.693.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.693.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.693.0",
|
|
30
|
+
"@aws-sdk/middleware-sdk-ec2": "3.693.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.693.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.693.0",
|
|
33
33
|
"@aws-sdk/types": "3.692.0",
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.693.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.693.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.693.0",
|
|
37
37
|
"@smithy/config-resolver": "^3.0.11",
|
|
38
38
|
"@smithy/core": "^2.5.2",
|
|
39
39
|
"@smithy/fetch-http-handler": "^4.1.0",
|