@aws-sdk/client-auto-scaling 3.933.0 → 3.935.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/README.md +8 -0
- package/dist-cjs/index.js +290 -182
- package/dist-es/AutoScaling.js +2 -0
- package/dist-es/commands/LaunchInstancesCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +187 -0
- package/dist-es/models/errors.js +135 -0
- package/dist-es/models/models_0.js +1 -304
- package/dist-es/schemas/schemas_0.js +77 -1
- package/dist-types/AutoScaling.d.ts +7 -0
- package/dist-types/AutoScalingClient.d.ts +3 -2
- package/dist-types/commands/LaunchInstancesCommand.d.ts +120 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +427 -0
- package/dist-types/models/errors.d.ts +147 -0
- package/dist-types/models/models_0.d.ts +196 -549
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/AutoScaling.d.ts +17 -0
- package/dist-types/ts3.4/AutoScalingClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/LaunchInstancesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +242 -0
- package/dist-types/ts3.4/models/errors.d.ts +81 -0
- package/dist-types/ts3.4/models/models_0.d.ts +64 -307
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { LaunchInstances } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class LaunchInstancesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AutoScaling_2011_01_01", "LaunchInstances", {})
|
|
13
|
+
.n("AutoScalingClient", "LaunchInstancesCommand")
|
|
14
|
+
.sc(LaunchInstances)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -48,6 +48,7 @@ export * from "./EnterStandbyCommand";
|
|
|
48
48
|
export * from "./ExecutePolicyCommand";
|
|
49
49
|
export * from "./ExitStandbyCommand";
|
|
50
50
|
export * from "./GetPredictiveScalingForecastCommand";
|
|
51
|
+
export * from "./LaunchInstancesCommand";
|
|
51
52
|
export * from "./PutLifecycleHookCommand";
|
|
52
53
|
export * from "./PutNotificationConfigurationCommand";
|
|
53
54
|
export * from "./PutScalingPolicyCommand";
|
package/dist-es/index.js
CHANGED
|
@@ -3,5 +3,6 @@ export * from "./AutoScaling";
|
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
5
|
export * from "./waiters";
|
|
6
|
-
export * from "./models";
|
|
6
|
+
export * from "./models/enums";
|
|
7
|
+
export * from "./models/errors";
|
|
7
8
|
export { AutoScalingServiceException } from "./models/AutoScalingServiceException";
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
export const AcceleratorManufacturer = {
|
|
2
|
+
AMAZON_WEB_SERVICES: "amazon-web-services",
|
|
3
|
+
AMD: "amd",
|
|
4
|
+
NVIDIA: "nvidia",
|
|
5
|
+
XILINX: "xilinx",
|
|
6
|
+
};
|
|
7
|
+
export const AcceleratorName = {
|
|
8
|
+
A100: "a100",
|
|
9
|
+
K80: "k80",
|
|
10
|
+
M60: "m60",
|
|
11
|
+
RADEON_PRO_V520: "radeon-pro-v520",
|
|
12
|
+
T4: "t4",
|
|
13
|
+
V100: "v100",
|
|
14
|
+
VU9P: "vu9p",
|
|
15
|
+
};
|
|
16
|
+
export const AcceleratorType = {
|
|
17
|
+
FPGA: "fpga",
|
|
18
|
+
GPU: "gpu",
|
|
19
|
+
INFERENCE: "inference",
|
|
20
|
+
};
|
|
21
|
+
export const ScalingActivityStatusCode = {
|
|
22
|
+
Cancelled: "Cancelled",
|
|
23
|
+
Failed: "Failed",
|
|
24
|
+
InProgress: "InProgress",
|
|
25
|
+
MidLifecycleAction: "MidLifecycleAction",
|
|
26
|
+
PendingSpotBidPlacement: "PendingSpotBidPlacement",
|
|
27
|
+
PreInService: "PreInService",
|
|
28
|
+
Successful: "Successful",
|
|
29
|
+
WaitingForConnectionDraining: "WaitingForConnectionDraining",
|
|
30
|
+
WaitingForELBConnectionDraining: "WaitingForELBConnectionDraining",
|
|
31
|
+
WaitingForInstanceId: "WaitingForInstanceId",
|
|
32
|
+
WaitingForInstanceWarmup: "WaitingForInstanceWarmup",
|
|
33
|
+
WaitingForSpotInstanceId: "WaitingForSpotInstanceId",
|
|
34
|
+
WaitingForSpotInstanceRequestId: "WaitingForSpotInstanceRequestId",
|
|
35
|
+
};
|
|
36
|
+
export const CapacityDistributionStrategy = {
|
|
37
|
+
BALANCED_BEST_EFFORT: "balanced-best-effort",
|
|
38
|
+
BALANCED_ONLY: "balanced-only",
|
|
39
|
+
};
|
|
40
|
+
export const ImpairedZoneHealthCheckBehavior = {
|
|
41
|
+
IgnoreUnhealthy: "IgnoreUnhealthy",
|
|
42
|
+
ReplaceUnhealthy: "ReplaceUnhealthy",
|
|
43
|
+
};
|
|
44
|
+
export const CapacityReservationPreference = {
|
|
45
|
+
CapacityReservationsFirst: "capacity-reservations-first",
|
|
46
|
+
CapacityReservationsOnly: "capacity-reservations-only",
|
|
47
|
+
Default: "default",
|
|
48
|
+
None: "none",
|
|
49
|
+
};
|
|
50
|
+
export const BareMetal = {
|
|
51
|
+
EXCLUDED: "excluded",
|
|
52
|
+
INCLUDED: "included",
|
|
53
|
+
REQUIRED: "required",
|
|
54
|
+
};
|
|
55
|
+
export const BurstablePerformance = {
|
|
56
|
+
EXCLUDED: "excluded",
|
|
57
|
+
INCLUDED: "included",
|
|
58
|
+
REQUIRED: "required",
|
|
59
|
+
};
|
|
60
|
+
export const CpuManufacturer = {
|
|
61
|
+
AMAZON_WEB_SERVICES: "amazon-web-services",
|
|
62
|
+
AMD: "amd",
|
|
63
|
+
APPLE: "apple",
|
|
64
|
+
INTEL: "intel",
|
|
65
|
+
};
|
|
66
|
+
export const InstanceGeneration = {
|
|
67
|
+
CURRENT: "current",
|
|
68
|
+
PREVIOUS: "previous",
|
|
69
|
+
};
|
|
70
|
+
export const LocalStorage = {
|
|
71
|
+
EXCLUDED: "excluded",
|
|
72
|
+
INCLUDED: "included",
|
|
73
|
+
REQUIRED: "required",
|
|
74
|
+
};
|
|
75
|
+
export const LocalStorageType = {
|
|
76
|
+
HDD: "hdd",
|
|
77
|
+
SSD: "ssd",
|
|
78
|
+
};
|
|
79
|
+
export const InstanceMetadataEndpointState = {
|
|
80
|
+
Disabled: "disabled",
|
|
81
|
+
Enabled: "enabled",
|
|
82
|
+
};
|
|
83
|
+
export const InstanceMetadataHttpTokensState = {
|
|
84
|
+
Optional: "optional",
|
|
85
|
+
Required: "required",
|
|
86
|
+
};
|
|
87
|
+
export const LifecycleState = {
|
|
88
|
+
DETACHED: "Detached",
|
|
89
|
+
DETACHING: "Detaching",
|
|
90
|
+
ENTERING_STANDBY: "EnteringStandby",
|
|
91
|
+
IN_SERVICE: "InService",
|
|
92
|
+
PENDING: "Pending",
|
|
93
|
+
PENDING_PROCEED: "Pending:Proceed",
|
|
94
|
+
PENDING_WAIT: "Pending:Wait",
|
|
95
|
+
QUARANTINED: "Quarantined",
|
|
96
|
+
STANDBY: "Standby",
|
|
97
|
+
TERMINATED: "Terminated",
|
|
98
|
+
TERMINATING: "Terminating",
|
|
99
|
+
TERMINATING_PROCEED: "Terminating:Proceed",
|
|
100
|
+
TERMINATING_WAIT: "Terminating:Wait",
|
|
101
|
+
WARMED_HIBERNATED: "Warmed:Hibernated",
|
|
102
|
+
WARMED_PENDING: "Warmed:Pending",
|
|
103
|
+
WARMED_PENDING_PROCEED: "Warmed:Pending:Proceed",
|
|
104
|
+
WARMED_PENDING_WAIT: "Warmed:Pending:Wait",
|
|
105
|
+
WARMED_RUNNING: "Warmed:Running",
|
|
106
|
+
WARMED_STOPPED: "Warmed:Stopped",
|
|
107
|
+
WARMED_TERMINATED: "Warmed:Terminated",
|
|
108
|
+
WARMED_TERMINATING: "Warmed:Terminating",
|
|
109
|
+
WARMED_TERMINATING_PROCEED: "Warmed:Terminating:Proceed",
|
|
110
|
+
WARMED_TERMINATING_WAIT: "Warmed:Terminating:Wait",
|
|
111
|
+
};
|
|
112
|
+
export const WarmPoolState = {
|
|
113
|
+
Hibernated: "Hibernated",
|
|
114
|
+
Running: "Running",
|
|
115
|
+
Stopped: "Stopped",
|
|
116
|
+
};
|
|
117
|
+
export const WarmPoolStatus = {
|
|
118
|
+
PendingDelete: "PendingDelete",
|
|
119
|
+
};
|
|
120
|
+
export const ScaleInProtectedInstances = {
|
|
121
|
+
Ignore: "Ignore",
|
|
122
|
+
Refresh: "Refresh",
|
|
123
|
+
Wait: "Wait",
|
|
124
|
+
};
|
|
125
|
+
export const StandbyInstances = {
|
|
126
|
+
Ignore: "Ignore",
|
|
127
|
+
Terminate: "Terminate",
|
|
128
|
+
Wait: "Wait",
|
|
129
|
+
};
|
|
130
|
+
export const InstanceRefreshStatus = {
|
|
131
|
+
Baking: "Baking",
|
|
132
|
+
Cancelled: "Cancelled",
|
|
133
|
+
Cancelling: "Cancelling",
|
|
134
|
+
Failed: "Failed",
|
|
135
|
+
InProgress: "InProgress",
|
|
136
|
+
Pending: "Pending",
|
|
137
|
+
RollbackFailed: "RollbackFailed",
|
|
138
|
+
RollbackInProgress: "RollbackInProgress",
|
|
139
|
+
RollbackSuccessful: "RollbackSuccessful",
|
|
140
|
+
Successful: "Successful",
|
|
141
|
+
};
|
|
142
|
+
export const PredictiveScalingMaxCapacityBreachBehavior = {
|
|
143
|
+
HonorMaxCapacity: "HonorMaxCapacity",
|
|
144
|
+
IncreaseMaxCapacity: "IncreaseMaxCapacity",
|
|
145
|
+
};
|
|
146
|
+
export const PredefinedLoadMetricType = {
|
|
147
|
+
ALBTargetGroupRequestCount: "ALBTargetGroupRequestCount",
|
|
148
|
+
ASGTotalCPUUtilization: "ASGTotalCPUUtilization",
|
|
149
|
+
ASGTotalNetworkIn: "ASGTotalNetworkIn",
|
|
150
|
+
ASGTotalNetworkOut: "ASGTotalNetworkOut",
|
|
151
|
+
};
|
|
152
|
+
export const PredefinedMetricPairType = {
|
|
153
|
+
ALBRequestCount: "ALBRequestCount",
|
|
154
|
+
ASGCPUUtilization: "ASGCPUUtilization",
|
|
155
|
+
ASGNetworkIn: "ASGNetworkIn",
|
|
156
|
+
ASGNetworkOut: "ASGNetworkOut",
|
|
157
|
+
};
|
|
158
|
+
export const PredefinedScalingMetricType = {
|
|
159
|
+
ALBRequestCountPerTarget: "ALBRequestCountPerTarget",
|
|
160
|
+
ASGAverageCPUUtilization: "ASGAverageCPUUtilization",
|
|
161
|
+
ASGAverageNetworkIn: "ASGAverageNetworkIn",
|
|
162
|
+
ASGAverageNetworkOut: "ASGAverageNetworkOut",
|
|
163
|
+
};
|
|
164
|
+
export const PredictiveScalingMode = {
|
|
165
|
+
ForecastAndScale: "ForecastAndScale",
|
|
166
|
+
ForecastOnly: "ForecastOnly",
|
|
167
|
+
};
|
|
168
|
+
export const MetricStatistic = {
|
|
169
|
+
Average: "Average",
|
|
170
|
+
Maximum: "Maximum",
|
|
171
|
+
Minimum: "Minimum",
|
|
172
|
+
SampleCount: "SampleCount",
|
|
173
|
+
Sum: "Sum",
|
|
174
|
+
};
|
|
175
|
+
export const MetricType = {
|
|
176
|
+
ALBRequestCountPerTarget: "ALBRequestCountPerTarget",
|
|
177
|
+
ASGAverageCPUUtilization: "ASGAverageCPUUtilization",
|
|
178
|
+
ASGAverageNetworkIn: "ASGAverageNetworkIn",
|
|
179
|
+
ASGAverageNetworkOut: "ASGAverageNetworkOut",
|
|
180
|
+
};
|
|
181
|
+
export const RetryStrategy = {
|
|
182
|
+
NONE: "none",
|
|
183
|
+
RETRY_WITH_GROUP_CONFIGURATION: "retry-with-group-configuration",
|
|
184
|
+
};
|
|
185
|
+
export const RefreshStrategy = {
|
|
186
|
+
Rolling: "Rolling",
|
|
187
|
+
};
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { AutoScalingServiceException as __BaseException } from "./AutoScalingServiceException";
|
|
2
|
+
export class ActiveInstanceRefreshNotFoundFault extends __BaseException {
|
|
3
|
+
name = "ActiveInstanceRefreshNotFoundFault";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "ActiveInstanceRefreshNotFoundFault",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, ActiveInstanceRefreshNotFoundFault.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class AlreadyExistsFault extends __BaseException {
|
|
15
|
+
name = "AlreadyExistsFault";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "AlreadyExistsFault",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, AlreadyExistsFault.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ResourceContentionFault extends __BaseException {
|
|
27
|
+
name = "ResourceContentionFault";
|
|
28
|
+
$fault = "server";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ResourceContentionFault",
|
|
32
|
+
$fault: "server",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ResourceContentionFault.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ServiceLinkedRoleFailure extends __BaseException {
|
|
39
|
+
name = "ServiceLinkedRoleFailure";
|
|
40
|
+
$fault = "server";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ServiceLinkedRoleFailure",
|
|
44
|
+
$fault: "server",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ServiceLinkedRoleFailure.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class LimitExceededFault extends __BaseException {
|
|
51
|
+
name = "LimitExceededFault";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "LimitExceededFault",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, LimitExceededFault.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class ResourceInUseFault extends __BaseException {
|
|
63
|
+
name = "ResourceInUseFault";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "ResourceInUseFault",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, ResourceInUseFault.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class ScalingActivityInProgressFault extends __BaseException {
|
|
75
|
+
name = "ScalingActivityInProgressFault";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "ScalingActivityInProgressFault",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, ScalingActivityInProgressFault.prototype);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
export class InvalidNextToken extends __BaseException {
|
|
87
|
+
name = "InvalidNextToken";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "InvalidNextToken",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
Object.setPrototypeOf(this, InvalidNextToken.prototype);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
export class IdempotentParameterMismatchError extends __BaseException {
|
|
99
|
+
name = "IdempotentParameterMismatchError";
|
|
100
|
+
$fault = "client";
|
|
101
|
+
Message;
|
|
102
|
+
constructor(opts) {
|
|
103
|
+
super({
|
|
104
|
+
name: "IdempotentParameterMismatchError",
|
|
105
|
+
$fault: "client",
|
|
106
|
+
...opts,
|
|
107
|
+
});
|
|
108
|
+
Object.setPrototypeOf(this, IdempotentParameterMismatchError.prototype);
|
|
109
|
+
this.Message = opts.Message;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
export class IrreversibleInstanceRefreshFault extends __BaseException {
|
|
113
|
+
name = "IrreversibleInstanceRefreshFault";
|
|
114
|
+
$fault = "client";
|
|
115
|
+
constructor(opts) {
|
|
116
|
+
super({
|
|
117
|
+
name: "IrreversibleInstanceRefreshFault",
|
|
118
|
+
$fault: "client",
|
|
119
|
+
...opts,
|
|
120
|
+
});
|
|
121
|
+
Object.setPrototypeOf(this, IrreversibleInstanceRefreshFault.prototype);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
export class InstanceRefreshInProgressFault extends __BaseException {
|
|
125
|
+
name = "InstanceRefreshInProgressFault";
|
|
126
|
+
$fault = "client";
|
|
127
|
+
constructor(opts) {
|
|
128
|
+
super({
|
|
129
|
+
name: "InstanceRefreshInProgressFault",
|
|
130
|
+
$fault: "client",
|
|
131
|
+
...opts,
|
|
132
|
+
});
|
|
133
|
+
Object.setPrototypeOf(this, InstanceRefreshInProgressFault.prototype);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -1,304 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const AcceleratorManufacturer = {
|
|
3
|
-
AMAZON_WEB_SERVICES: "amazon-web-services",
|
|
4
|
-
AMD: "amd",
|
|
5
|
-
NVIDIA: "nvidia",
|
|
6
|
-
XILINX: "xilinx",
|
|
7
|
-
};
|
|
8
|
-
export const AcceleratorName = {
|
|
9
|
-
A100: "a100",
|
|
10
|
-
K80: "k80",
|
|
11
|
-
M60: "m60",
|
|
12
|
-
RADEON_PRO_V520: "radeon-pro-v520",
|
|
13
|
-
T4: "t4",
|
|
14
|
-
V100: "v100",
|
|
15
|
-
VU9P: "vu9p",
|
|
16
|
-
};
|
|
17
|
-
export const AcceleratorType = {
|
|
18
|
-
FPGA: "fpga",
|
|
19
|
-
GPU: "gpu",
|
|
20
|
-
INFERENCE: "inference",
|
|
21
|
-
};
|
|
22
|
-
export class ActiveInstanceRefreshNotFoundFault extends __BaseException {
|
|
23
|
-
name = "ActiveInstanceRefreshNotFoundFault";
|
|
24
|
-
$fault = "client";
|
|
25
|
-
constructor(opts) {
|
|
26
|
-
super({
|
|
27
|
-
name: "ActiveInstanceRefreshNotFoundFault",
|
|
28
|
-
$fault: "client",
|
|
29
|
-
...opts,
|
|
30
|
-
});
|
|
31
|
-
Object.setPrototypeOf(this, ActiveInstanceRefreshNotFoundFault.prototype);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
export const ScalingActivityStatusCode = {
|
|
35
|
-
Cancelled: "Cancelled",
|
|
36
|
-
Failed: "Failed",
|
|
37
|
-
InProgress: "InProgress",
|
|
38
|
-
MidLifecycleAction: "MidLifecycleAction",
|
|
39
|
-
PendingSpotBidPlacement: "PendingSpotBidPlacement",
|
|
40
|
-
PreInService: "PreInService",
|
|
41
|
-
Successful: "Successful",
|
|
42
|
-
WaitingForConnectionDraining: "WaitingForConnectionDraining",
|
|
43
|
-
WaitingForELBConnectionDraining: "WaitingForELBConnectionDraining",
|
|
44
|
-
WaitingForInstanceId: "WaitingForInstanceId",
|
|
45
|
-
WaitingForInstanceWarmup: "WaitingForInstanceWarmup",
|
|
46
|
-
WaitingForSpotInstanceId: "WaitingForSpotInstanceId",
|
|
47
|
-
WaitingForSpotInstanceRequestId: "WaitingForSpotInstanceRequestId",
|
|
48
|
-
};
|
|
49
|
-
export class AlreadyExistsFault extends __BaseException {
|
|
50
|
-
name = "AlreadyExistsFault";
|
|
51
|
-
$fault = "client";
|
|
52
|
-
constructor(opts) {
|
|
53
|
-
super({
|
|
54
|
-
name: "AlreadyExistsFault",
|
|
55
|
-
$fault: "client",
|
|
56
|
-
...opts,
|
|
57
|
-
});
|
|
58
|
-
Object.setPrototypeOf(this, AlreadyExistsFault.prototype);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
export class ResourceContentionFault extends __BaseException {
|
|
62
|
-
name = "ResourceContentionFault";
|
|
63
|
-
$fault = "server";
|
|
64
|
-
constructor(opts) {
|
|
65
|
-
super({
|
|
66
|
-
name: "ResourceContentionFault",
|
|
67
|
-
$fault: "server",
|
|
68
|
-
...opts,
|
|
69
|
-
});
|
|
70
|
-
Object.setPrototypeOf(this, ResourceContentionFault.prototype);
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
export class ServiceLinkedRoleFailure extends __BaseException {
|
|
74
|
-
name = "ServiceLinkedRoleFailure";
|
|
75
|
-
$fault = "server";
|
|
76
|
-
constructor(opts) {
|
|
77
|
-
super({
|
|
78
|
-
name: "ServiceLinkedRoleFailure",
|
|
79
|
-
$fault: "server",
|
|
80
|
-
...opts,
|
|
81
|
-
});
|
|
82
|
-
Object.setPrototypeOf(this, ServiceLinkedRoleFailure.prototype);
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
export class LimitExceededFault extends __BaseException {
|
|
86
|
-
name = "LimitExceededFault";
|
|
87
|
-
$fault = "client";
|
|
88
|
-
constructor(opts) {
|
|
89
|
-
super({
|
|
90
|
-
name: "LimitExceededFault",
|
|
91
|
-
$fault: "client",
|
|
92
|
-
...opts,
|
|
93
|
-
});
|
|
94
|
-
Object.setPrototypeOf(this, LimitExceededFault.prototype);
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
export const CapacityDistributionStrategy = {
|
|
98
|
-
BALANCED_BEST_EFFORT: "balanced-best-effort",
|
|
99
|
-
BALANCED_ONLY: "balanced-only",
|
|
100
|
-
};
|
|
101
|
-
export const ImpairedZoneHealthCheckBehavior = {
|
|
102
|
-
IgnoreUnhealthy: "IgnoreUnhealthy",
|
|
103
|
-
ReplaceUnhealthy: "ReplaceUnhealthy",
|
|
104
|
-
};
|
|
105
|
-
export const CapacityReservationPreference = {
|
|
106
|
-
CapacityReservationsFirst: "capacity-reservations-first",
|
|
107
|
-
CapacityReservationsOnly: "capacity-reservations-only",
|
|
108
|
-
Default: "default",
|
|
109
|
-
None: "none",
|
|
110
|
-
};
|
|
111
|
-
export const BareMetal = {
|
|
112
|
-
EXCLUDED: "excluded",
|
|
113
|
-
INCLUDED: "included",
|
|
114
|
-
REQUIRED: "required",
|
|
115
|
-
};
|
|
116
|
-
export const BurstablePerformance = {
|
|
117
|
-
EXCLUDED: "excluded",
|
|
118
|
-
INCLUDED: "included",
|
|
119
|
-
REQUIRED: "required",
|
|
120
|
-
};
|
|
121
|
-
export const CpuManufacturer = {
|
|
122
|
-
AMAZON_WEB_SERVICES: "amazon-web-services",
|
|
123
|
-
AMD: "amd",
|
|
124
|
-
APPLE: "apple",
|
|
125
|
-
INTEL: "intel",
|
|
126
|
-
};
|
|
127
|
-
export const InstanceGeneration = {
|
|
128
|
-
CURRENT: "current",
|
|
129
|
-
PREVIOUS: "previous",
|
|
130
|
-
};
|
|
131
|
-
export const LocalStorage = {
|
|
132
|
-
EXCLUDED: "excluded",
|
|
133
|
-
INCLUDED: "included",
|
|
134
|
-
REQUIRED: "required",
|
|
135
|
-
};
|
|
136
|
-
export const LocalStorageType = {
|
|
137
|
-
HDD: "hdd",
|
|
138
|
-
SSD: "ssd",
|
|
139
|
-
};
|
|
140
|
-
export const InstanceMetadataEndpointState = {
|
|
141
|
-
Disabled: "disabled",
|
|
142
|
-
Enabled: "enabled",
|
|
143
|
-
};
|
|
144
|
-
export const InstanceMetadataHttpTokensState = {
|
|
145
|
-
Optional: "optional",
|
|
146
|
-
Required: "required",
|
|
147
|
-
};
|
|
148
|
-
export class ResourceInUseFault extends __BaseException {
|
|
149
|
-
name = "ResourceInUseFault";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "ResourceInUseFault",
|
|
154
|
-
$fault: "client",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, ResourceInUseFault.prototype);
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
export class ScalingActivityInProgressFault extends __BaseException {
|
|
161
|
-
name = "ScalingActivityInProgressFault";
|
|
162
|
-
$fault = "client";
|
|
163
|
-
constructor(opts) {
|
|
164
|
-
super({
|
|
165
|
-
name: "ScalingActivityInProgressFault",
|
|
166
|
-
$fault: "client",
|
|
167
|
-
...opts,
|
|
168
|
-
});
|
|
169
|
-
Object.setPrototypeOf(this, ScalingActivityInProgressFault.prototype);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
export const LifecycleState = {
|
|
173
|
-
DETACHED: "Detached",
|
|
174
|
-
DETACHING: "Detaching",
|
|
175
|
-
ENTERING_STANDBY: "EnteringStandby",
|
|
176
|
-
IN_SERVICE: "InService",
|
|
177
|
-
PENDING: "Pending",
|
|
178
|
-
PENDING_PROCEED: "Pending:Proceed",
|
|
179
|
-
PENDING_WAIT: "Pending:Wait",
|
|
180
|
-
QUARANTINED: "Quarantined",
|
|
181
|
-
STANDBY: "Standby",
|
|
182
|
-
TERMINATED: "Terminated",
|
|
183
|
-
TERMINATING: "Terminating",
|
|
184
|
-
TERMINATING_PROCEED: "Terminating:Proceed",
|
|
185
|
-
TERMINATING_WAIT: "Terminating:Wait",
|
|
186
|
-
WARMED_HIBERNATED: "Warmed:Hibernated",
|
|
187
|
-
WARMED_PENDING: "Warmed:Pending",
|
|
188
|
-
WARMED_PENDING_PROCEED: "Warmed:Pending:Proceed",
|
|
189
|
-
WARMED_PENDING_WAIT: "Warmed:Pending:Wait",
|
|
190
|
-
WARMED_RUNNING: "Warmed:Running",
|
|
191
|
-
WARMED_STOPPED: "Warmed:Stopped",
|
|
192
|
-
WARMED_TERMINATED: "Warmed:Terminated",
|
|
193
|
-
WARMED_TERMINATING: "Warmed:Terminating",
|
|
194
|
-
WARMED_TERMINATING_PROCEED: "Warmed:Terminating:Proceed",
|
|
195
|
-
WARMED_TERMINATING_WAIT: "Warmed:Terminating:Wait",
|
|
196
|
-
};
|
|
197
|
-
export const WarmPoolState = {
|
|
198
|
-
Hibernated: "Hibernated",
|
|
199
|
-
Running: "Running",
|
|
200
|
-
Stopped: "Stopped",
|
|
201
|
-
};
|
|
202
|
-
export const WarmPoolStatus = {
|
|
203
|
-
PendingDelete: "PendingDelete",
|
|
204
|
-
};
|
|
205
|
-
export class InvalidNextToken extends __BaseException {
|
|
206
|
-
name = "InvalidNextToken";
|
|
207
|
-
$fault = "client";
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "InvalidNextToken",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, InvalidNextToken.prototype);
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
export const ScaleInProtectedInstances = {
|
|
218
|
-
Ignore: "Ignore",
|
|
219
|
-
Refresh: "Refresh",
|
|
220
|
-
Wait: "Wait",
|
|
221
|
-
};
|
|
222
|
-
export const StandbyInstances = {
|
|
223
|
-
Ignore: "Ignore",
|
|
224
|
-
Terminate: "Terminate",
|
|
225
|
-
Wait: "Wait",
|
|
226
|
-
};
|
|
227
|
-
export const InstanceRefreshStatus = {
|
|
228
|
-
Baking: "Baking",
|
|
229
|
-
Cancelled: "Cancelled",
|
|
230
|
-
Cancelling: "Cancelling",
|
|
231
|
-
Failed: "Failed",
|
|
232
|
-
InProgress: "InProgress",
|
|
233
|
-
Pending: "Pending",
|
|
234
|
-
RollbackFailed: "RollbackFailed",
|
|
235
|
-
RollbackInProgress: "RollbackInProgress",
|
|
236
|
-
RollbackSuccessful: "RollbackSuccessful",
|
|
237
|
-
Successful: "Successful",
|
|
238
|
-
};
|
|
239
|
-
export const PredictiveScalingMaxCapacityBreachBehavior = {
|
|
240
|
-
HonorMaxCapacity: "HonorMaxCapacity",
|
|
241
|
-
IncreaseMaxCapacity: "IncreaseMaxCapacity",
|
|
242
|
-
};
|
|
243
|
-
export const PredefinedLoadMetricType = {
|
|
244
|
-
ALBTargetGroupRequestCount: "ALBTargetGroupRequestCount",
|
|
245
|
-
ASGTotalCPUUtilization: "ASGTotalCPUUtilization",
|
|
246
|
-
ASGTotalNetworkIn: "ASGTotalNetworkIn",
|
|
247
|
-
ASGTotalNetworkOut: "ASGTotalNetworkOut",
|
|
248
|
-
};
|
|
249
|
-
export const PredefinedMetricPairType = {
|
|
250
|
-
ALBRequestCount: "ALBRequestCount",
|
|
251
|
-
ASGCPUUtilization: "ASGCPUUtilization",
|
|
252
|
-
ASGNetworkIn: "ASGNetworkIn",
|
|
253
|
-
ASGNetworkOut: "ASGNetworkOut",
|
|
254
|
-
};
|
|
255
|
-
export const PredefinedScalingMetricType = {
|
|
256
|
-
ALBRequestCountPerTarget: "ALBRequestCountPerTarget",
|
|
257
|
-
ASGAverageCPUUtilization: "ASGAverageCPUUtilization",
|
|
258
|
-
ASGAverageNetworkIn: "ASGAverageNetworkIn",
|
|
259
|
-
ASGAverageNetworkOut: "ASGAverageNetworkOut",
|
|
260
|
-
};
|
|
261
|
-
export const PredictiveScalingMode = {
|
|
262
|
-
ForecastAndScale: "ForecastAndScale",
|
|
263
|
-
ForecastOnly: "ForecastOnly",
|
|
264
|
-
};
|
|
265
|
-
export const MetricStatistic = {
|
|
266
|
-
Average: "Average",
|
|
267
|
-
Maximum: "Maximum",
|
|
268
|
-
Minimum: "Minimum",
|
|
269
|
-
SampleCount: "SampleCount",
|
|
270
|
-
Sum: "Sum",
|
|
271
|
-
};
|
|
272
|
-
export const MetricType = {
|
|
273
|
-
ALBRequestCountPerTarget: "ALBRequestCountPerTarget",
|
|
274
|
-
ASGAverageCPUUtilization: "ASGAverageCPUUtilization",
|
|
275
|
-
ASGAverageNetworkIn: "ASGAverageNetworkIn",
|
|
276
|
-
ASGAverageNetworkOut: "ASGAverageNetworkOut",
|
|
277
|
-
};
|
|
278
|
-
export class IrreversibleInstanceRefreshFault extends __BaseException {
|
|
279
|
-
name = "IrreversibleInstanceRefreshFault";
|
|
280
|
-
$fault = "client";
|
|
281
|
-
constructor(opts) {
|
|
282
|
-
super({
|
|
283
|
-
name: "IrreversibleInstanceRefreshFault",
|
|
284
|
-
$fault: "client",
|
|
285
|
-
...opts,
|
|
286
|
-
});
|
|
287
|
-
Object.setPrototypeOf(this, IrreversibleInstanceRefreshFault.prototype);
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
export class InstanceRefreshInProgressFault extends __BaseException {
|
|
291
|
-
name = "InstanceRefreshInProgressFault";
|
|
292
|
-
$fault = "client";
|
|
293
|
-
constructor(opts) {
|
|
294
|
-
super({
|
|
295
|
-
name: "InstanceRefreshInProgressFault",
|
|
296
|
-
$fault: "client",
|
|
297
|
-
...opts,
|
|
298
|
-
});
|
|
299
|
-
Object.setPrototypeOf(this, InstanceRefreshInProgressFault.prototype);
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
export const RefreshStrategy = {
|
|
303
|
-
Rolling: "Rolling",
|
|
304
|
-
};
|
|
1
|
+
export {};
|