@aws-sdk/client-application-auto-scaling 3.1075.0 → 3.1077.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 +1039 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ApplicationAutoScalingServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -131
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -700
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultApplicationAutoScalingHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "application-autoscaling",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultApplicationAutoScalingHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,900 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
86
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[g, i],
|
|
93
|
+
["https://application-autoscaling-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://application-autoscaling.{Region}.amazonaws.com", i],
|
|
96
|
+
["https://application-autoscaling-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://application-autoscaling.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
["https://application-autoscaling.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
101
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
102
|
+
]
|
|
103
|
+
};
|
|
104
|
+
const root = 2;
|
|
105
|
+
const r = 100_000_000;
|
|
106
|
+
const nodes = new Int32Array([
|
|
107
|
+
-1, 1, -1,
|
|
108
|
+
0, 13, 3,
|
|
109
|
+
1, 4, r + 12,
|
|
110
|
+
2, 5, r + 12,
|
|
111
|
+
3, 8, 6,
|
|
112
|
+
4, 7, r + 11,
|
|
113
|
+
5, r + 9, r + 10,
|
|
114
|
+
4, 11, 9,
|
|
115
|
+
6, 10, r + 8,
|
|
116
|
+
7, r + 6, r + 7,
|
|
117
|
+
5, 12, r + 5,
|
|
118
|
+
6, r + 4, r + 5,
|
|
119
|
+
3, r + 1, 14,
|
|
120
|
+
4, r + 2, r + 3,
|
|
121
|
+
]);
|
|
122
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
123
|
+
|
|
124
|
+
const cache = new EndpointCache({
|
|
125
|
+
size: 50,
|
|
126
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
127
|
+
});
|
|
128
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
129
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
130
|
+
endpointParams: endpointParams,
|
|
131
|
+
logger: context.logger,
|
|
132
|
+
}));
|
|
133
|
+
};
|
|
134
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
135
|
+
|
|
136
|
+
class ApplicationAutoScalingServiceException extends ServiceException {
|
|
137
|
+
constructor(options) {
|
|
138
|
+
super(options);
|
|
139
|
+
Object.setPrototypeOf(this, ApplicationAutoScalingServiceException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class ConcurrentUpdateException extends ApplicationAutoScalingServiceException {
|
|
144
|
+
name = "ConcurrentUpdateException";
|
|
145
|
+
$fault = "server";
|
|
146
|
+
Message;
|
|
147
|
+
constructor(opts) {
|
|
148
|
+
super({
|
|
149
|
+
name: "ConcurrentUpdateException",
|
|
150
|
+
$fault: "server",
|
|
151
|
+
...opts,
|
|
152
|
+
});
|
|
153
|
+
Object.setPrototypeOf(this, ConcurrentUpdateException.prototype);
|
|
154
|
+
this.Message = opts.Message;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
class InternalServiceException extends ApplicationAutoScalingServiceException {
|
|
158
|
+
name = "InternalServiceException";
|
|
159
|
+
$fault = "server";
|
|
160
|
+
Message;
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "InternalServiceException",
|
|
164
|
+
$fault: "server",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
168
|
+
this.Message = opts.Message;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
class ObjectNotFoundException extends ApplicationAutoScalingServiceException {
|
|
172
|
+
name = "ObjectNotFoundException";
|
|
173
|
+
$fault = "client";
|
|
174
|
+
Message;
|
|
175
|
+
constructor(opts) {
|
|
176
|
+
super({
|
|
177
|
+
name: "ObjectNotFoundException",
|
|
178
|
+
$fault: "client",
|
|
179
|
+
...opts,
|
|
180
|
+
});
|
|
181
|
+
Object.setPrototypeOf(this, ObjectNotFoundException.prototype);
|
|
182
|
+
this.Message = opts.Message;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
class ValidationException extends ApplicationAutoScalingServiceException {
|
|
186
|
+
name = "ValidationException";
|
|
187
|
+
$fault = "client";
|
|
188
|
+
Message;
|
|
189
|
+
constructor(opts) {
|
|
190
|
+
super({
|
|
191
|
+
name: "ValidationException",
|
|
192
|
+
$fault: "client",
|
|
193
|
+
...opts,
|
|
194
|
+
});
|
|
195
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
196
|
+
this.Message = opts.Message;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
class InvalidNextTokenException extends ApplicationAutoScalingServiceException {
|
|
200
|
+
name = "InvalidNextTokenException";
|
|
201
|
+
$fault = "client";
|
|
202
|
+
Message;
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "InvalidNextTokenException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
210
|
+
this.Message = opts.Message;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class FailedResourceAccessException extends ApplicationAutoScalingServiceException {
|
|
214
|
+
name = "FailedResourceAccessException";
|
|
215
|
+
$fault = "client";
|
|
216
|
+
Message;
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "FailedResourceAccessException",
|
|
220
|
+
$fault: "client",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
Object.setPrototypeOf(this, FailedResourceAccessException.prototype);
|
|
224
|
+
this.Message = opts.Message;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class ResourceNotFoundException extends ApplicationAutoScalingServiceException {
|
|
228
|
+
name = "ResourceNotFoundException";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
Message;
|
|
231
|
+
ResourceName;
|
|
232
|
+
constructor(opts) {
|
|
233
|
+
super({
|
|
234
|
+
name: "ResourceNotFoundException",
|
|
235
|
+
$fault: "client",
|
|
236
|
+
...opts,
|
|
237
|
+
});
|
|
238
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
239
|
+
this.Message = opts.Message;
|
|
240
|
+
this.ResourceName = opts.ResourceName;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
class LimitExceededException extends ApplicationAutoScalingServiceException {
|
|
244
|
+
name = "LimitExceededException";
|
|
245
|
+
$fault = "client";
|
|
246
|
+
Message;
|
|
247
|
+
constructor(opts) {
|
|
248
|
+
super({
|
|
249
|
+
name: "LimitExceededException",
|
|
250
|
+
$fault: "client",
|
|
251
|
+
...opts,
|
|
252
|
+
});
|
|
253
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
254
|
+
this.Message = opts.Message;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
class TooManyTagsException extends ApplicationAutoScalingServiceException {
|
|
258
|
+
name = "TooManyTagsException";
|
|
259
|
+
$fault = "client";
|
|
260
|
+
Message;
|
|
261
|
+
ResourceName;
|
|
262
|
+
constructor(opts) {
|
|
263
|
+
super({
|
|
264
|
+
name: "TooManyTagsException",
|
|
265
|
+
$fault: "client",
|
|
266
|
+
...opts,
|
|
267
|
+
});
|
|
268
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
269
|
+
this.Message = opts.Message;
|
|
270
|
+
this.ResourceName = opts.ResourceName;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
const _A = "Alarm";
|
|
275
|
+
const _AARN = "AlarmARN";
|
|
276
|
+
const _AI = "ActivityId";
|
|
277
|
+
const _AN = "AlarmName";
|
|
278
|
+
const _AT = "AdjustmentType";
|
|
279
|
+
const _Al = "Alarms";
|
|
280
|
+
const _C = "Code";
|
|
281
|
+
const _CC = "CurrentCapacity";
|
|
282
|
+
const _CCMS = "CustomizedCapacityMetricSpecification";
|
|
283
|
+
const _CF = "CapacityForecast";
|
|
284
|
+
const _CLMS = "CustomizedLoadMetricSpecification";
|
|
285
|
+
const _CMS = "CustomizedMetricSpecification";
|
|
286
|
+
const _CSMS = "CustomizedScalingMetricSpecification";
|
|
287
|
+
const _CT = "CreationTime";
|
|
288
|
+
const _CUE = "ConcurrentUpdateException";
|
|
289
|
+
const _Ca = "Cause";
|
|
290
|
+
const _Co = "Cooldown";
|
|
291
|
+
const _D = "Dimensions";
|
|
292
|
+
const _DSA = "DeleteScheduledAction";
|
|
293
|
+
const _DSAR = "DeleteScheduledActionRequest";
|
|
294
|
+
const _DSARe = "DeleteScheduledActionResponse";
|
|
295
|
+
const _DSARes = "DescribeScalingActivitiesRequest";
|
|
296
|
+
const _DSAResc = "DescribeScalingActivitiesResponse";
|
|
297
|
+
const _DSARescr = "DescribeScheduledActionsRequest";
|
|
298
|
+
const _DSARescri = "DescribeScheduledActionsResponse";
|
|
299
|
+
const _DSAe = "DescribeScalingActivities";
|
|
300
|
+
const _DSAes = "DescribeScheduledActions";
|
|
301
|
+
const _DSI = "DisableScaleIn";
|
|
302
|
+
const _DSIS = "DynamicScalingInSuspended";
|
|
303
|
+
const _DSOS = "DynamicScalingOutSuspended";
|
|
304
|
+
const _DSP = "DeleteScalingPolicy";
|
|
305
|
+
const _DSPR = "DeleteScalingPolicyRequest";
|
|
306
|
+
const _DSPRe = "DeleteScalingPolicyResponse";
|
|
307
|
+
const _DSPRes = "DescribeScalingPoliciesRequest";
|
|
308
|
+
const _DSPResc = "DescribeScalingPoliciesResponse";
|
|
309
|
+
const _DSPe = "DescribeScalingPolicies";
|
|
310
|
+
const _DST = "DeregisterScalableTarget";
|
|
311
|
+
const _DSTR = "DeregisterScalableTargetRequest";
|
|
312
|
+
const _DSTRe = "DeregisterScalableTargetResponse";
|
|
313
|
+
const _DSTRes = "DescribeScalableTargetsRequest";
|
|
314
|
+
const _DSTResc = "DescribeScalableTargetsResponse";
|
|
315
|
+
const _DSTe = "DescribeScalableTargets";
|
|
316
|
+
const _De = "Description";
|
|
317
|
+
const _Det = "Details";
|
|
318
|
+
const _E = "Expression";
|
|
319
|
+
const _ET = "EndTime";
|
|
320
|
+
const _FRAE = "FailedResourceAccessException";
|
|
321
|
+
const _GPSF = "GetPredictiveScalingForecast";
|
|
322
|
+
const _GPSFR = "GetPredictiveScalingForecastRequest";
|
|
323
|
+
const _GPSFRe = "GetPredictiveScalingForecastResponse";
|
|
324
|
+
const _I = "Id";
|
|
325
|
+
const _INSA = "IncludeNotScaledActivities";
|
|
326
|
+
const _INTE = "InvalidNextTokenException";
|
|
327
|
+
const _ISE = "InternalServiceException";
|
|
328
|
+
const _L = "Label";
|
|
329
|
+
const _LEE = "LimitExceededException";
|
|
330
|
+
const _LF = "LoadForecast";
|
|
331
|
+
const _LFo = "LoadForecasts";
|
|
332
|
+
const _LTFR = "ListTagsForResource";
|
|
333
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
334
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
335
|
+
const _M = "Message";
|
|
336
|
+
const _MAM = "MinAdjustmentMagnitude";
|
|
337
|
+
const _MAT = "MetricAggregationType";
|
|
338
|
+
const _MC = "MaxCapacity";
|
|
339
|
+
const _MCB = "MaxCapacityBuffer";
|
|
340
|
+
const _MCBB = "MaxCapacityBreachBehavior";
|
|
341
|
+
const _MCi = "MinCapacity";
|
|
342
|
+
const _MD = "MetricDimension";
|
|
343
|
+
const _MDQ = "MetricDataQueries";
|
|
344
|
+
const _MDe = "MetricDimensions";
|
|
345
|
+
const _MILB = "MetricIntervalLowerBound";
|
|
346
|
+
const _MIUB = "MetricIntervalUpperBound";
|
|
347
|
+
const _MN = "MetricName";
|
|
348
|
+
const _MR = "MaxResults";
|
|
349
|
+
const _MS = "MetricSpecification";
|
|
350
|
+
const _MSe = "MetricStat";
|
|
351
|
+
const _MSet = "MetricSpecifications";
|
|
352
|
+
const _Me = "Metrics";
|
|
353
|
+
const _Met = "Metric";
|
|
354
|
+
const _Mo = "Mode";
|
|
355
|
+
const _N = "Namespace";
|
|
356
|
+
const _NSR = "NotScaledReason";
|
|
357
|
+
const _NSRo = "NotScaledReasons";
|
|
358
|
+
const _NT = "NextToken";
|
|
359
|
+
const _Na = "Name";
|
|
360
|
+
const _ONFE = "ObjectNotFoundException";
|
|
361
|
+
const _PARN = "PolicyARN";
|
|
362
|
+
const _PC = "PredictedCapacity";
|
|
363
|
+
const _PLMS = "PredefinedLoadMetricSpecification";
|
|
364
|
+
const _PMPS = "PredefinedMetricPairSpecification";
|
|
365
|
+
const _PMS = "PredefinedMetricSpecification";
|
|
366
|
+
const _PMT = "PredefinedMetricType";
|
|
367
|
+
const _PN = "PolicyName";
|
|
368
|
+
const _PNo = "PolicyNames";
|
|
369
|
+
const _PSA = "PutScheduledAction";
|
|
370
|
+
const _PSAR = "PutScheduledActionRequest";
|
|
371
|
+
const _PSARu = "PutScheduledActionResponse";
|
|
372
|
+
const _PSCMS = "PredictiveScalingCustomizedMetricSpecification";
|
|
373
|
+
const _PSM = "PredictiveScalingMetric";
|
|
374
|
+
const _PSMD = "PredictiveScalingMetricDimension";
|
|
375
|
+
const _PSMDQ = "PredictiveScalingMetricDataQuery";
|
|
376
|
+
const _PSMDQr = "PredictiveScalingMetricDataQueries";
|
|
377
|
+
const _PSMDr = "PredictiveScalingMetricDimensions";
|
|
378
|
+
const _PSMS = "PredictiveScalingMetricSpecification";
|
|
379
|
+
const _PSMSr = "PredefinedScalingMetricSpecification";
|
|
380
|
+
const _PSMSre = "PredictiveScalingMetricStat";
|
|
381
|
+
const _PSMSred = "PredictiveScalingMetricSpecifications";
|
|
382
|
+
const _PSP = "PutScalingPolicy";
|
|
383
|
+
const _PSPC = "PredictiveScalingPolicyConfiguration";
|
|
384
|
+
const _PSPLMS = "PredictiveScalingPredefinedLoadMetricSpecification";
|
|
385
|
+
const _PSPMPS = "PredictiveScalingPredefinedMetricPairSpecification";
|
|
386
|
+
const _PSPR = "PutScalingPolicyRequest";
|
|
387
|
+
const _PSPRu = "PutScalingPolicyResponse";
|
|
388
|
+
const _PSPSMS = "PredictiveScalingPredefinedScalingMetricSpecification";
|
|
389
|
+
const _PT = "PolicyType";
|
|
390
|
+
const _RARN = "ResourceARN";
|
|
391
|
+
const _RARNo = "RoleARN";
|
|
392
|
+
const _RD = "ReturnData";
|
|
393
|
+
const _RI = "ResourceId";
|
|
394
|
+
const _RIe = "ResourceIds";
|
|
395
|
+
const _RL = "ResourceLabel";
|
|
396
|
+
const _RN = "ResourceName";
|
|
397
|
+
const _RNFE = "ResourceNotFoundException";
|
|
398
|
+
const _RST = "RegisterScalableTarget";
|
|
399
|
+
const _RSTR = "RegisterScalableTargetRequest";
|
|
400
|
+
const _RSTRe = "RegisterScalableTargetResponse";
|
|
401
|
+
const _S = "Statistic";
|
|
402
|
+
const _SA = "ScalingActivities";
|
|
403
|
+
const _SAARN = "ScheduledActionARN";
|
|
404
|
+
const _SAN = "ScheduledActionName";
|
|
405
|
+
const _SANc = "ScheduledActionNames";
|
|
406
|
+
const _SAc = "ScheduledActions";
|
|
407
|
+
const _SAca = "ScalingActivity";
|
|
408
|
+
const _SAcal = "ScalingAdjustment";
|
|
409
|
+
const _SAch = "ScheduledAction";
|
|
410
|
+
const _SAt = "StepAdjustment";
|
|
411
|
+
const _SAte = "StepAdjustments";
|
|
412
|
+
const _SBT = "SchedulingBufferTime";
|
|
413
|
+
const _SC = "StatusCode";
|
|
414
|
+
const _SD = "ScalableDimension";
|
|
415
|
+
const _SIC = "ScaleInCooldown";
|
|
416
|
+
const _SM = "StatusMessage";
|
|
417
|
+
const _SN = "ServiceNamespace";
|
|
418
|
+
const _SOC = "ScaleOutCooldown";
|
|
419
|
+
const _SP = "ScalingPolicies";
|
|
420
|
+
const _SPc = "ScalingPolicy";
|
|
421
|
+
const _SS = "SuspendedState";
|
|
422
|
+
const _SSPC = "StepScalingPolicyConfiguration";
|
|
423
|
+
const _SSS = "ScheduledScalingSuspended";
|
|
424
|
+
const _ST = "ScalableTargets";
|
|
425
|
+
const _STA = "ScalableTargetAction";
|
|
426
|
+
const _STARN = "ScalableTargetARN";
|
|
427
|
+
const _STc = "ScalableTarget";
|
|
428
|
+
const _STt = "StartTime";
|
|
429
|
+
const _Sc = "Schedule";
|
|
430
|
+
const _St = "Stat";
|
|
431
|
+
const _T = "Timestamps";
|
|
432
|
+
const _TK = "TagKeys";
|
|
433
|
+
const _TMTE = "TooManyTagsException";
|
|
434
|
+
const _TR = "TagResource";
|
|
435
|
+
const _TRR = "TagResourceRequest";
|
|
436
|
+
const _TRRa = "TagResourceResponse";
|
|
437
|
+
const _TTM = "TargetTrackingMetric";
|
|
438
|
+
const _TTMD = "TargetTrackingMetricDimension";
|
|
439
|
+
const _TTMDQ = "TargetTrackingMetricDataQuery";
|
|
440
|
+
const _TTMDQa = "TargetTrackingMetricDataQueries";
|
|
441
|
+
const _TTMDa = "TargetTrackingMetricDimensions";
|
|
442
|
+
const _TTMS = "TargetTrackingMetricStat";
|
|
443
|
+
const _TTSPC = "TargetTrackingScalingPolicyConfiguration";
|
|
444
|
+
const _TV = "TargetValue";
|
|
445
|
+
const _Ta = "Tags";
|
|
446
|
+
const _Ti = "Timezone";
|
|
447
|
+
const _U = "Unit";
|
|
448
|
+
const _UR = "UntagResource";
|
|
449
|
+
const _URR = "UntagResourceRequest";
|
|
450
|
+
const _URRn = "UntagResourceResponse";
|
|
451
|
+
const _UT = "UpdateTime";
|
|
452
|
+
const _V = "Values";
|
|
453
|
+
const _VE = "ValidationException";
|
|
454
|
+
const _Va = "Value";
|
|
455
|
+
const _aQE = "awsQueryError";
|
|
456
|
+
const _c = "client";
|
|
457
|
+
const _e = "error";
|
|
458
|
+
const _hE = "httpError";
|
|
459
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.applicationautoscaling";
|
|
460
|
+
const _se = "server";
|
|
461
|
+
const n0 = "com.amazonaws.applicationautoscaling";
|
|
462
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
463
|
+
var ApplicationAutoScalingServiceException$ = [-3, _s, "ApplicationAutoScalingServiceException", 0, [], []];
|
|
464
|
+
_s_registry.registerError(ApplicationAutoScalingServiceException$, ApplicationAutoScalingServiceException);
|
|
465
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
466
|
+
var ConcurrentUpdateException$ = [-3, n0, _CUE,
|
|
467
|
+
{ [_aQE]: [`ConcurrentUpdateException`, 500], [_e]: _se, [_hE]: 500 },
|
|
468
|
+
[_M],
|
|
469
|
+
[0]
|
|
470
|
+
];
|
|
471
|
+
n0_registry.registerError(ConcurrentUpdateException$, ConcurrentUpdateException);
|
|
472
|
+
var FailedResourceAccessException$ = [-3, n0, _FRAE,
|
|
473
|
+
{ [_aQE]: [`FailedResourceAccessException`, 400], [_e]: _c, [_hE]: 400 },
|
|
474
|
+
[_M],
|
|
475
|
+
[0]
|
|
476
|
+
];
|
|
477
|
+
n0_registry.registerError(FailedResourceAccessException$, FailedResourceAccessException);
|
|
478
|
+
var InternalServiceException$ = [-3, n0, _ISE,
|
|
479
|
+
{ [_aQE]: [`InternalServiceException`, 500], [_e]: _se, [_hE]: 500 },
|
|
480
|
+
[_M],
|
|
481
|
+
[0]
|
|
482
|
+
];
|
|
483
|
+
n0_registry.registerError(InternalServiceException$, InternalServiceException);
|
|
484
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
485
|
+
{ [_aQE]: [`InvalidNextTokenException`, 400], [_e]: _c, [_hE]: 400 },
|
|
486
|
+
[_M],
|
|
487
|
+
[0]
|
|
488
|
+
];
|
|
489
|
+
n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
490
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
491
|
+
{ [_aQE]: [`LimitExceededException`, 400], [_e]: _c, [_hE]: 400 },
|
|
492
|
+
[_M],
|
|
493
|
+
[0]
|
|
494
|
+
];
|
|
495
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
496
|
+
var ObjectNotFoundException$ = [-3, n0, _ONFE,
|
|
497
|
+
{ [_aQE]: [`ObjectNotFoundException`, 400], [_e]: _c, [_hE]: 400 },
|
|
498
|
+
[_M],
|
|
499
|
+
[0]
|
|
500
|
+
];
|
|
501
|
+
n0_registry.registerError(ObjectNotFoundException$, ObjectNotFoundException);
|
|
502
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
503
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
504
|
+
[_M, _RN],
|
|
505
|
+
[0, 0]
|
|
506
|
+
];
|
|
507
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
508
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
509
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
510
|
+
[_M, _RN],
|
|
511
|
+
[0, 0]
|
|
512
|
+
];
|
|
513
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
514
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
515
|
+
{ [_aQE]: [`ValidationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
516
|
+
[_M],
|
|
517
|
+
[0]
|
|
518
|
+
];
|
|
519
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
520
|
+
const errorTypeRegistries = [
|
|
521
|
+
_s_registry,
|
|
522
|
+
n0_registry,
|
|
523
|
+
];
|
|
524
|
+
var Alarm$ = [3, n0, _A,
|
|
525
|
+
0,
|
|
526
|
+
[_AN, _AARN],
|
|
527
|
+
[0, 0], 2
|
|
528
|
+
];
|
|
529
|
+
var CapacityForecast$ = [3, n0, _CF,
|
|
530
|
+
0,
|
|
531
|
+
[_T, _V],
|
|
532
|
+
[64 | 4, 64 | 1], 2
|
|
533
|
+
];
|
|
534
|
+
var CustomizedMetricSpecification$ = [3, n0, _CMS,
|
|
535
|
+
0,
|
|
536
|
+
[_MN, _N, _D, _S, _U, _Me],
|
|
537
|
+
[0, 0, () => MetricDimensions, 0, 0, () => TargetTrackingMetricDataQueries]
|
|
538
|
+
];
|
|
539
|
+
var DeleteScalingPolicyRequest$ = [3, n0, _DSPR,
|
|
540
|
+
0,
|
|
541
|
+
[_PN, _SN, _RI, _SD],
|
|
542
|
+
[0, 0, 0, 0], 4
|
|
543
|
+
];
|
|
544
|
+
var DeleteScalingPolicyResponse$ = [3, n0, _DSPRe,
|
|
545
|
+
0,
|
|
546
|
+
[],
|
|
547
|
+
[]
|
|
548
|
+
];
|
|
549
|
+
var DeleteScheduledActionRequest$ = [3, n0, _DSAR,
|
|
550
|
+
0,
|
|
551
|
+
[_SN, _SAN, _RI, _SD],
|
|
552
|
+
[0, 0, 0, 0], 4
|
|
553
|
+
];
|
|
554
|
+
var DeleteScheduledActionResponse$ = [3, n0, _DSARe,
|
|
555
|
+
0,
|
|
556
|
+
[],
|
|
557
|
+
[]
|
|
558
|
+
];
|
|
559
|
+
var DeregisterScalableTargetRequest$ = [3, n0, _DSTR,
|
|
560
|
+
0,
|
|
561
|
+
[_SN, _RI, _SD],
|
|
562
|
+
[0, 0, 0], 3
|
|
563
|
+
];
|
|
564
|
+
var DeregisterScalableTargetResponse$ = [3, n0, _DSTRe,
|
|
565
|
+
0,
|
|
566
|
+
[],
|
|
567
|
+
[]
|
|
568
|
+
];
|
|
569
|
+
var DescribeScalableTargetsRequest$ = [3, n0, _DSTRes,
|
|
570
|
+
0,
|
|
571
|
+
[_SN, _RIe, _SD, _MR, _NT],
|
|
572
|
+
[0, 64 | 0, 0, 1, 0], 1
|
|
573
|
+
];
|
|
574
|
+
var DescribeScalableTargetsResponse$ = [3, n0, _DSTResc,
|
|
575
|
+
0,
|
|
576
|
+
[_ST, _NT],
|
|
577
|
+
[() => ScalableTargets, 0]
|
|
578
|
+
];
|
|
579
|
+
var DescribeScalingActivitiesRequest$ = [3, n0, _DSARes,
|
|
580
|
+
0,
|
|
581
|
+
[_SN, _RI, _SD, _MR, _NT, _INSA],
|
|
582
|
+
[0, 0, 0, 1, 0, 2], 1
|
|
583
|
+
];
|
|
584
|
+
var DescribeScalingActivitiesResponse$ = [3, n0, _DSAResc,
|
|
585
|
+
0,
|
|
586
|
+
[_SA, _NT],
|
|
587
|
+
[() => ScalingActivities, 0]
|
|
588
|
+
];
|
|
589
|
+
var DescribeScalingPoliciesRequest$ = [3, n0, _DSPRes,
|
|
590
|
+
0,
|
|
591
|
+
[_SN, _PNo, _RI, _SD, _MR, _NT],
|
|
592
|
+
[0, 64 | 0, 0, 0, 1, 0], 1
|
|
593
|
+
];
|
|
594
|
+
var DescribeScalingPoliciesResponse$ = [3, n0, _DSPResc,
|
|
595
|
+
0,
|
|
596
|
+
[_SP, _NT],
|
|
597
|
+
[() => ScalingPolicies, 0]
|
|
598
|
+
];
|
|
599
|
+
var DescribeScheduledActionsRequest$ = [3, n0, _DSARescr,
|
|
600
|
+
0,
|
|
601
|
+
[_SN, _SANc, _RI, _SD, _MR, _NT],
|
|
602
|
+
[0, 64 | 0, 0, 0, 1, 0], 1
|
|
603
|
+
];
|
|
604
|
+
var DescribeScheduledActionsResponse$ = [3, n0, _DSARescri,
|
|
605
|
+
0,
|
|
606
|
+
[_SAc, _NT],
|
|
607
|
+
[() => ScheduledActions, 0]
|
|
608
|
+
];
|
|
609
|
+
var GetPredictiveScalingForecastRequest$ = [3, n0, _GPSFR,
|
|
610
|
+
0,
|
|
611
|
+
[_SN, _RI, _SD, _PN, _STt, _ET],
|
|
612
|
+
[0, 0, 0, 0, 4, 4], 6
|
|
613
|
+
];
|
|
614
|
+
var GetPredictiveScalingForecastResponse$ = [3, n0, _GPSFRe,
|
|
615
|
+
0,
|
|
616
|
+
[_LF, _CF, _UT],
|
|
617
|
+
[() => LoadForecasts, () => CapacityForecast$, 4]
|
|
618
|
+
];
|
|
619
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
620
|
+
0,
|
|
621
|
+
[_RARN],
|
|
622
|
+
[0], 1
|
|
623
|
+
];
|
|
624
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
625
|
+
0,
|
|
626
|
+
[_Ta],
|
|
627
|
+
[128 | 0]
|
|
628
|
+
];
|
|
629
|
+
var LoadForecast$ = [3, n0, _LF,
|
|
630
|
+
0,
|
|
631
|
+
[_T, _V, _MS],
|
|
632
|
+
[64 | 4, 64 | 1, () => PredictiveScalingMetricSpecification$], 3
|
|
633
|
+
];
|
|
634
|
+
var MetricDimension$ = [3, n0, _MD,
|
|
635
|
+
0,
|
|
636
|
+
[_Na, _Va],
|
|
637
|
+
[0, 0], 2
|
|
638
|
+
];
|
|
639
|
+
var NotScaledReason$ = [3, n0, _NSR,
|
|
640
|
+
0,
|
|
641
|
+
[_C, _MC, _MCi, _CC],
|
|
642
|
+
[0, 1, 1, 1], 1
|
|
643
|
+
];
|
|
644
|
+
var PredefinedMetricSpecification$ = [3, n0, _PMS,
|
|
645
|
+
0,
|
|
646
|
+
[_PMT, _RL],
|
|
647
|
+
[0, 0], 1
|
|
648
|
+
];
|
|
649
|
+
var PredictiveScalingCustomizedMetricSpecification$ = [3, n0, _PSCMS,
|
|
650
|
+
0,
|
|
651
|
+
[_MDQ],
|
|
652
|
+
[() => PredictiveScalingMetricDataQueries], 1
|
|
653
|
+
];
|
|
654
|
+
var PredictiveScalingMetric$ = [3, n0, _PSM,
|
|
655
|
+
0,
|
|
656
|
+
[_D, _MN, _N],
|
|
657
|
+
[() => PredictiveScalingMetricDimensions, 0, 0]
|
|
658
|
+
];
|
|
659
|
+
var PredictiveScalingMetricDataQuery$ = [3, n0, _PSMDQ,
|
|
660
|
+
0,
|
|
661
|
+
[_I, _E, _MSe, _L, _RD],
|
|
662
|
+
[0, 0, () => PredictiveScalingMetricStat$, 0, 2], 1
|
|
663
|
+
];
|
|
664
|
+
var PredictiveScalingMetricDimension$ = [3, n0, _PSMD,
|
|
665
|
+
0,
|
|
666
|
+
[_Na, _Va],
|
|
667
|
+
[0, 0], 2
|
|
668
|
+
];
|
|
669
|
+
var PredictiveScalingMetricSpecification$ = [3, n0, _PSMS,
|
|
670
|
+
0,
|
|
671
|
+
[_TV, _PMPS, _PSMSr, _PLMS, _CSMS, _CLMS, _CCMS],
|
|
672
|
+
[1, () => PredictiveScalingPredefinedMetricPairSpecification$, () => PredictiveScalingPredefinedScalingMetricSpecification$, () => PredictiveScalingPredefinedLoadMetricSpecification$, () => PredictiveScalingCustomizedMetricSpecification$, () => PredictiveScalingCustomizedMetricSpecification$, () => PredictiveScalingCustomizedMetricSpecification$], 1
|
|
673
|
+
];
|
|
674
|
+
var PredictiveScalingMetricStat$ = [3, n0, _PSMSre,
|
|
675
|
+
0,
|
|
676
|
+
[_Met, _St, _U],
|
|
677
|
+
[() => PredictiveScalingMetric$, 0, 0], 2
|
|
678
|
+
];
|
|
679
|
+
var PredictiveScalingPolicyConfiguration$ = [3, n0, _PSPC,
|
|
680
|
+
0,
|
|
681
|
+
[_MSet, _Mo, _SBT, _MCBB, _MCB],
|
|
682
|
+
[() => PredictiveScalingMetricSpecifications, 0, 1, 0, 1], 1
|
|
683
|
+
];
|
|
684
|
+
var PredictiveScalingPredefinedLoadMetricSpecification$ = [3, n0, _PSPLMS,
|
|
685
|
+
0,
|
|
686
|
+
[_PMT, _RL],
|
|
687
|
+
[0, 0], 1
|
|
688
|
+
];
|
|
689
|
+
var PredictiveScalingPredefinedMetricPairSpecification$ = [3, n0, _PSPMPS,
|
|
690
|
+
0,
|
|
691
|
+
[_PMT, _RL],
|
|
692
|
+
[0, 0], 1
|
|
693
|
+
];
|
|
694
|
+
var PredictiveScalingPredefinedScalingMetricSpecification$ = [3, n0, _PSPSMS,
|
|
695
|
+
0,
|
|
696
|
+
[_PMT, _RL],
|
|
697
|
+
[0, 0], 1
|
|
698
|
+
];
|
|
699
|
+
var PutScalingPolicyRequest$ = [3, n0, _PSPR,
|
|
700
|
+
0,
|
|
701
|
+
[_PN, _SN, _RI, _SD, _PT, _SSPC, _TTSPC, _PSPC],
|
|
702
|
+
[0, 0, 0, 0, 0, () => StepScalingPolicyConfiguration$, () => TargetTrackingScalingPolicyConfiguration$, () => PredictiveScalingPolicyConfiguration$], 4
|
|
703
|
+
];
|
|
704
|
+
var PutScalingPolicyResponse$ = [3, n0, _PSPRu,
|
|
705
|
+
0,
|
|
706
|
+
[_PARN, _Al],
|
|
707
|
+
[0, () => Alarms], 1
|
|
708
|
+
];
|
|
709
|
+
var PutScheduledActionRequest$ = [3, n0, _PSAR,
|
|
710
|
+
0,
|
|
711
|
+
[_SN, _SAN, _RI, _SD, _Sc, _Ti, _STt, _ET, _STA],
|
|
712
|
+
[0, 0, 0, 0, 0, 0, 4, 4, () => ScalableTargetAction$], 4
|
|
713
|
+
];
|
|
714
|
+
var PutScheduledActionResponse$ = [3, n0, _PSARu,
|
|
715
|
+
0,
|
|
716
|
+
[],
|
|
717
|
+
[]
|
|
718
|
+
];
|
|
719
|
+
var RegisterScalableTargetRequest$ = [3, n0, _RSTR,
|
|
720
|
+
0,
|
|
721
|
+
[_SN, _RI, _SD, _MCi, _MC, _RARNo, _SS, _Ta],
|
|
722
|
+
[0, 0, 0, 1, 1, 0, () => SuspendedState$, 128 | 0], 3
|
|
723
|
+
];
|
|
724
|
+
var RegisterScalableTargetResponse$ = [3, n0, _RSTRe,
|
|
725
|
+
0,
|
|
726
|
+
[_STARN],
|
|
727
|
+
[0]
|
|
728
|
+
];
|
|
729
|
+
var ScalableTarget$ = [3, n0, _STc,
|
|
730
|
+
0,
|
|
731
|
+
[_SN, _RI, _SD, _MCi, _MC, _RARNo, _CT, _PC, _SS, _STARN],
|
|
732
|
+
[0, 0, 0, 1, 1, 0, 4, 1, () => SuspendedState$, 0], 7
|
|
733
|
+
];
|
|
734
|
+
var ScalableTargetAction$ = [3, n0, _STA,
|
|
735
|
+
0,
|
|
736
|
+
[_MCi, _MC],
|
|
737
|
+
[1, 1]
|
|
738
|
+
];
|
|
739
|
+
var ScalingActivity$ = [3, n0, _SAca,
|
|
740
|
+
0,
|
|
741
|
+
[_AI, _SN, _RI, _SD, _De, _Ca, _STt, _SC, _ET, _SM, _Det, _NSRo],
|
|
742
|
+
[0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, () => NotScaledReasons], 8
|
|
743
|
+
];
|
|
744
|
+
var ScalingPolicy$ = [3, n0, _SPc,
|
|
745
|
+
0,
|
|
746
|
+
[_PARN, _PN, _SN, _RI, _SD, _PT, _CT, _SSPC, _TTSPC, _PSPC, _Al],
|
|
747
|
+
[0, 0, 0, 0, 0, 0, 4, () => StepScalingPolicyConfiguration$, () => TargetTrackingScalingPolicyConfiguration$, () => PredictiveScalingPolicyConfiguration$, () => Alarms], 7
|
|
748
|
+
];
|
|
749
|
+
var ScheduledAction$ = [3, n0, _SAch,
|
|
750
|
+
0,
|
|
751
|
+
[_SAN, _SAARN, _SN, _Sc, _RI, _CT, _Ti, _SD, _STt, _ET, _STA],
|
|
752
|
+
[0, 0, 0, 0, 0, 4, 0, 0, 4, 4, () => ScalableTargetAction$], 6
|
|
753
|
+
];
|
|
754
|
+
var StepAdjustment$ = [3, n0, _SAt,
|
|
755
|
+
0,
|
|
756
|
+
[_SAcal, _MILB, _MIUB],
|
|
757
|
+
[1, 1, 1], 1
|
|
758
|
+
];
|
|
759
|
+
var StepScalingPolicyConfiguration$ = [3, n0, _SSPC,
|
|
760
|
+
0,
|
|
761
|
+
[_AT, _SAte, _MAM, _Co, _MAT],
|
|
762
|
+
[0, () => StepAdjustments, 1, 1, 0]
|
|
763
|
+
];
|
|
764
|
+
var SuspendedState$ = [3, n0, _SS,
|
|
765
|
+
0,
|
|
766
|
+
[_DSIS, _DSOS, _SSS],
|
|
767
|
+
[2, 2, 2]
|
|
768
|
+
];
|
|
769
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
770
|
+
0,
|
|
771
|
+
[_RARN, _Ta],
|
|
772
|
+
[0, 128 | 0], 2
|
|
773
|
+
];
|
|
774
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
775
|
+
0,
|
|
776
|
+
[],
|
|
777
|
+
[]
|
|
778
|
+
];
|
|
779
|
+
var TargetTrackingMetric$ = [3, n0, _TTM,
|
|
780
|
+
0,
|
|
781
|
+
[_D, _MN, _N],
|
|
782
|
+
[() => TargetTrackingMetricDimensions, 0, 0]
|
|
783
|
+
];
|
|
784
|
+
var TargetTrackingMetricDataQuery$ = [3, n0, _TTMDQ,
|
|
785
|
+
0,
|
|
786
|
+
[_I, _E, _L, _MSe, _RD],
|
|
787
|
+
[0, 0, 0, () => TargetTrackingMetricStat$, 2], 1
|
|
788
|
+
];
|
|
789
|
+
var TargetTrackingMetricDimension$ = [3, n0, _TTMD,
|
|
790
|
+
0,
|
|
791
|
+
[_Na, _Va],
|
|
792
|
+
[0, 0], 2
|
|
793
|
+
];
|
|
794
|
+
var TargetTrackingMetricStat$ = [3, n0, _TTMS,
|
|
795
|
+
0,
|
|
796
|
+
[_Met, _St, _U],
|
|
797
|
+
[() => TargetTrackingMetric$, 0, 0], 2
|
|
798
|
+
];
|
|
799
|
+
var TargetTrackingScalingPolicyConfiguration$ = [3, n0, _TTSPC,
|
|
800
|
+
0,
|
|
801
|
+
[_TV, _PMS, _CMS, _SOC, _SIC, _DSI],
|
|
802
|
+
[1, () => PredefinedMetricSpecification$, () => CustomizedMetricSpecification$, 1, 1, 2], 1
|
|
803
|
+
];
|
|
804
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
805
|
+
0,
|
|
806
|
+
[_RARN, _TK],
|
|
807
|
+
[0, 64 | 0], 2
|
|
808
|
+
];
|
|
809
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
810
|
+
0,
|
|
811
|
+
[],
|
|
812
|
+
[]
|
|
813
|
+
];
|
|
814
|
+
var Alarms = [1, n0, _Al,
|
|
815
|
+
0, () => Alarm$
|
|
816
|
+
];
|
|
817
|
+
var LoadForecasts = [1, n0, _LFo,
|
|
818
|
+
0, () => LoadForecast$
|
|
819
|
+
];
|
|
820
|
+
var MetricDimensions = [1, n0, _MDe,
|
|
821
|
+
0, () => MetricDimension$
|
|
822
|
+
];
|
|
823
|
+
var NotScaledReasons = [1, n0, _NSRo,
|
|
824
|
+
0, () => NotScaledReason$
|
|
825
|
+
];
|
|
826
|
+
var PredictiveScalingMetricDataQueries = [1, n0, _PSMDQr,
|
|
827
|
+
0, () => PredictiveScalingMetricDataQuery$
|
|
828
|
+
];
|
|
829
|
+
var PredictiveScalingMetricDimensions = [1, n0, _PSMDr,
|
|
830
|
+
0, () => PredictiveScalingMetricDimension$
|
|
831
|
+
];
|
|
832
|
+
var PredictiveScalingMetricSpecifications = [1, n0, _PSMSred,
|
|
833
|
+
0, () => PredictiveScalingMetricSpecification$
|
|
834
|
+
];
|
|
835
|
+
var ScalableTargets = [1, n0, _ST,
|
|
836
|
+
0, () => ScalableTarget$
|
|
837
|
+
];
|
|
838
|
+
var ScalingActivities = [1, n0, _SA,
|
|
839
|
+
0, () => ScalingActivity$
|
|
840
|
+
];
|
|
841
|
+
var ScalingPolicies = [1, n0, _SP,
|
|
842
|
+
0, () => ScalingPolicy$
|
|
843
|
+
];
|
|
844
|
+
var ScheduledActions = [1, n0, _SAc,
|
|
845
|
+
0, () => ScheduledAction$
|
|
846
|
+
];
|
|
847
|
+
var StepAdjustments = [1, n0, _SAte,
|
|
848
|
+
0, () => StepAdjustment$
|
|
849
|
+
];
|
|
850
|
+
var TargetTrackingMetricDataQueries = [1, n0, _TTMDQa,
|
|
851
|
+
0, () => TargetTrackingMetricDataQuery$
|
|
852
|
+
];
|
|
853
|
+
var TargetTrackingMetricDimensions = [1, n0, _TTMDa,
|
|
854
|
+
0, () => TargetTrackingMetricDimension$
|
|
855
|
+
];
|
|
856
|
+
var DeleteScalingPolicy$ = [9, n0, _DSP,
|
|
857
|
+
0, () => DeleteScalingPolicyRequest$, () => DeleteScalingPolicyResponse$
|
|
858
|
+
];
|
|
859
|
+
var DeleteScheduledAction$ = [9, n0, _DSA,
|
|
860
|
+
0, () => DeleteScheduledActionRequest$, () => DeleteScheduledActionResponse$
|
|
861
|
+
];
|
|
862
|
+
var DeregisterScalableTarget$ = [9, n0, _DST,
|
|
863
|
+
0, () => DeregisterScalableTargetRequest$, () => DeregisterScalableTargetResponse$
|
|
864
|
+
];
|
|
865
|
+
var DescribeScalableTargets$ = [9, n0, _DSTe,
|
|
866
|
+
0, () => DescribeScalableTargetsRequest$, () => DescribeScalableTargetsResponse$
|
|
867
|
+
];
|
|
868
|
+
var DescribeScalingActivities$ = [9, n0, _DSAe,
|
|
869
|
+
0, () => DescribeScalingActivitiesRequest$, () => DescribeScalingActivitiesResponse$
|
|
870
|
+
];
|
|
871
|
+
var DescribeScalingPolicies$ = [9, n0, _DSPe,
|
|
872
|
+
0, () => DescribeScalingPoliciesRequest$, () => DescribeScalingPoliciesResponse$
|
|
873
|
+
];
|
|
874
|
+
var DescribeScheduledActions$ = [9, n0, _DSAes,
|
|
875
|
+
0, () => DescribeScheduledActionsRequest$, () => DescribeScheduledActionsResponse$
|
|
876
|
+
];
|
|
877
|
+
var GetPredictiveScalingForecast$ = [9, n0, _GPSF,
|
|
878
|
+
0, () => GetPredictiveScalingForecastRequest$, () => GetPredictiveScalingForecastResponse$
|
|
879
|
+
];
|
|
880
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
881
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
882
|
+
];
|
|
883
|
+
var PutScalingPolicy$ = [9, n0, _PSP,
|
|
884
|
+
0, () => PutScalingPolicyRequest$, () => PutScalingPolicyResponse$
|
|
885
|
+
];
|
|
886
|
+
var PutScheduledAction$ = [9, n0, _PSA,
|
|
887
|
+
0, () => PutScheduledActionRequest$, () => PutScheduledActionResponse$
|
|
888
|
+
];
|
|
889
|
+
var RegisterScalableTarget$ = [9, n0, _RST,
|
|
890
|
+
0, () => RegisterScalableTargetRequest$, () => RegisterScalableTargetResponse$
|
|
891
|
+
];
|
|
892
|
+
var TagResource$ = [9, n0, _TR,
|
|
893
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
894
|
+
];
|
|
895
|
+
var UntagResource$ = [9, n0, _UR,
|
|
896
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
897
|
+
];
|
|
898
|
+
|
|
899
|
+
const getRuntimeConfig$1 = (config) => {
|
|
900
|
+
return {
|
|
901
|
+
apiVersion: "2016-02-06",
|
|
902
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
903
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
904
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
905
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
906
|
+
extensions: config?.extensions ?? [],
|
|
907
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultApplicationAutoScalingHttpAuthSchemeProvider,
|
|
908
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
909
|
+
{
|
|
910
|
+
schemeId: "aws.auth#sigv4",
|
|
911
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
912
|
+
signer: new AwsSdkSigV4Signer(),
|
|
913
|
+
},
|
|
914
|
+
],
|
|
915
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
916
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
917
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
918
|
+
defaultNamespace: "com.amazonaws.applicationautoscaling",
|
|
919
|
+
errorTypeRegistries,
|
|
920
|
+
version: "2016-02-06",
|
|
921
|
+
serviceTarget: "AnyScaleFrontendService",
|
|
922
|
+
},
|
|
923
|
+
serviceId: config?.serviceId ?? "Application Auto Scaling",
|
|
924
|
+
sha256: config?.sha256 ?? Sha256,
|
|
925
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
926
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
927
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
928
|
+
};
|
|
929
|
+
};
|
|
930
|
+
|
|
931
|
+
const getRuntimeConfig = (config) => {
|
|
932
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
933
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
934
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
935
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
936
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
937
|
+
const loaderConfig = {
|
|
938
|
+
profile: config?.profile,
|
|
939
|
+
logger: clientSharedValues.logger,
|
|
940
|
+
};
|
|
941
|
+
return {
|
|
942
|
+
...clientSharedValues,
|
|
943
|
+
...config,
|
|
944
|
+
runtime: "node",
|
|
945
|
+
defaultsMode,
|
|
946
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
947
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
948
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
949
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
950
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
951
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
952
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
953
|
+
retryMode: config?.retryMode ??
|
|
954
|
+
loadConfig({
|
|
955
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
956
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
957
|
+
}, config),
|
|
958
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
959
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
960
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
961
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
962
|
+
};
|
|
963
|
+
};
|
|
964
|
+
|
|
34
965
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
966
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
967
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -429,31 +1360,124 @@ const MetricType = {
|
|
|
429
1360
|
};
|
|
430
1361
|
|
|
431
1362
|
exports.AdjustmentType = AdjustmentType;
|
|
1363
|
+
exports.Alarm$ = Alarm$;
|
|
432
1364
|
exports.ApplicationAutoScaling = ApplicationAutoScaling;
|
|
433
1365
|
exports.ApplicationAutoScalingClient = ApplicationAutoScalingClient;
|
|
1366
|
+
exports.ApplicationAutoScalingServiceException = ApplicationAutoScalingServiceException;
|
|
1367
|
+
exports.ApplicationAutoScalingServiceException$ = ApplicationAutoScalingServiceException$;
|
|
1368
|
+
exports.CapacityForecast$ = CapacityForecast$;
|
|
1369
|
+
exports.ConcurrentUpdateException = ConcurrentUpdateException;
|
|
1370
|
+
exports.ConcurrentUpdateException$ = ConcurrentUpdateException$;
|
|
1371
|
+
exports.CustomizedMetricSpecification$ = CustomizedMetricSpecification$;
|
|
1372
|
+
exports.DeleteScalingPolicy$ = DeleteScalingPolicy$;
|
|
434
1373
|
exports.DeleteScalingPolicyCommand = DeleteScalingPolicyCommand;
|
|
1374
|
+
exports.DeleteScalingPolicyRequest$ = DeleteScalingPolicyRequest$;
|
|
1375
|
+
exports.DeleteScalingPolicyResponse$ = DeleteScalingPolicyResponse$;
|
|
1376
|
+
exports.DeleteScheduledAction$ = DeleteScheduledAction$;
|
|
435
1377
|
exports.DeleteScheduledActionCommand = DeleteScheduledActionCommand;
|
|
1378
|
+
exports.DeleteScheduledActionRequest$ = DeleteScheduledActionRequest$;
|
|
1379
|
+
exports.DeleteScheduledActionResponse$ = DeleteScheduledActionResponse$;
|
|
1380
|
+
exports.DeregisterScalableTarget$ = DeregisterScalableTarget$;
|
|
436
1381
|
exports.DeregisterScalableTargetCommand = DeregisterScalableTargetCommand;
|
|
1382
|
+
exports.DeregisterScalableTargetRequest$ = DeregisterScalableTargetRequest$;
|
|
1383
|
+
exports.DeregisterScalableTargetResponse$ = DeregisterScalableTargetResponse$;
|
|
1384
|
+
exports.DescribeScalableTargets$ = DescribeScalableTargets$;
|
|
437
1385
|
exports.DescribeScalableTargetsCommand = DescribeScalableTargetsCommand;
|
|
1386
|
+
exports.DescribeScalableTargetsRequest$ = DescribeScalableTargetsRequest$;
|
|
1387
|
+
exports.DescribeScalableTargetsResponse$ = DescribeScalableTargetsResponse$;
|
|
1388
|
+
exports.DescribeScalingActivities$ = DescribeScalingActivities$;
|
|
438
1389
|
exports.DescribeScalingActivitiesCommand = DescribeScalingActivitiesCommand;
|
|
1390
|
+
exports.DescribeScalingActivitiesRequest$ = DescribeScalingActivitiesRequest$;
|
|
1391
|
+
exports.DescribeScalingActivitiesResponse$ = DescribeScalingActivitiesResponse$;
|
|
1392
|
+
exports.DescribeScalingPolicies$ = DescribeScalingPolicies$;
|
|
439
1393
|
exports.DescribeScalingPoliciesCommand = DescribeScalingPoliciesCommand;
|
|
1394
|
+
exports.DescribeScalingPoliciesRequest$ = DescribeScalingPoliciesRequest$;
|
|
1395
|
+
exports.DescribeScalingPoliciesResponse$ = DescribeScalingPoliciesResponse$;
|
|
1396
|
+
exports.DescribeScheduledActions$ = DescribeScheduledActions$;
|
|
440
1397
|
exports.DescribeScheduledActionsCommand = DescribeScheduledActionsCommand;
|
|
1398
|
+
exports.DescribeScheduledActionsRequest$ = DescribeScheduledActionsRequest$;
|
|
1399
|
+
exports.DescribeScheduledActionsResponse$ = DescribeScheduledActionsResponse$;
|
|
1400
|
+
exports.FailedResourceAccessException = FailedResourceAccessException;
|
|
1401
|
+
exports.FailedResourceAccessException$ = FailedResourceAccessException$;
|
|
1402
|
+
exports.GetPredictiveScalingForecast$ = GetPredictiveScalingForecast$;
|
|
441
1403
|
exports.GetPredictiveScalingForecastCommand = GetPredictiveScalingForecastCommand;
|
|
1404
|
+
exports.GetPredictiveScalingForecastRequest$ = GetPredictiveScalingForecastRequest$;
|
|
1405
|
+
exports.GetPredictiveScalingForecastResponse$ = GetPredictiveScalingForecastResponse$;
|
|
1406
|
+
exports.InternalServiceException = InternalServiceException;
|
|
1407
|
+
exports.InternalServiceException$ = InternalServiceException$;
|
|
1408
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
1409
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
1410
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1411
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1412
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
442
1413
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1414
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1415
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1416
|
+
exports.LoadForecast$ = LoadForecast$;
|
|
443
1417
|
exports.MetricAggregationType = MetricAggregationType;
|
|
1418
|
+
exports.MetricDimension$ = MetricDimension$;
|
|
444
1419
|
exports.MetricStatistic = MetricStatistic;
|
|
445
1420
|
exports.MetricType = MetricType;
|
|
1421
|
+
exports.NotScaledReason$ = NotScaledReason$;
|
|
1422
|
+
exports.ObjectNotFoundException = ObjectNotFoundException;
|
|
1423
|
+
exports.ObjectNotFoundException$ = ObjectNotFoundException$;
|
|
446
1424
|
exports.PolicyType = PolicyType;
|
|
1425
|
+
exports.PredefinedMetricSpecification$ = PredefinedMetricSpecification$;
|
|
1426
|
+
exports.PredictiveScalingCustomizedMetricSpecification$ = PredictiveScalingCustomizedMetricSpecification$;
|
|
447
1427
|
exports.PredictiveScalingMaxCapacityBreachBehavior = PredictiveScalingMaxCapacityBreachBehavior;
|
|
1428
|
+
exports.PredictiveScalingMetric$ = PredictiveScalingMetric$;
|
|
1429
|
+
exports.PredictiveScalingMetricDataQuery$ = PredictiveScalingMetricDataQuery$;
|
|
1430
|
+
exports.PredictiveScalingMetricDimension$ = PredictiveScalingMetricDimension$;
|
|
1431
|
+
exports.PredictiveScalingMetricSpecification$ = PredictiveScalingMetricSpecification$;
|
|
1432
|
+
exports.PredictiveScalingMetricStat$ = PredictiveScalingMetricStat$;
|
|
448
1433
|
exports.PredictiveScalingMode = PredictiveScalingMode;
|
|
1434
|
+
exports.PredictiveScalingPolicyConfiguration$ = PredictiveScalingPolicyConfiguration$;
|
|
1435
|
+
exports.PredictiveScalingPredefinedLoadMetricSpecification$ = PredictiveScalingPredefinedLoadMetricSpecification$;
|
|
1436
|
+
exports.PredictiveScalingPredefinedMetricPairSpecification$ = PredictiveScalingPredefinedMetricPairSpecification$;
|
|
1437
|
+
exports.PredictiveScalingPredefinedScalingMetricSpecification$ = PredictiveScalingPredefinedScalingMetricSpecification$;
|
|
1438
|
+
exports.PutScalingPolicy$ = PutScalingPolicy$;
|
|
449
1439
|
exports.PutScalingPolicyCommand = PutScalingPolicyCommand;
|
|
1440
|
+
exports.PutScalingPolicyRequest$ = PutScalingPolicyRequest$;
|
|
1441
|
+
exports.PutScalingPolicyResponse$ = PutScalingPolicyResponse$;
|
|
1442
|
+
exports.PutScheduledAction$ = PutScheduledAction$;
|
|
450
1443
|
exports.PutScheduledActionCommand = PutScheduledActionCommand;
|
|
1444
|
+
exports.PutScheduledActionRequest$ = PutScheduledActionRequest$;
|
|
1445
|
+
exports.PutScheduledActionResponse$ = PutScheduledActionResponse$;
|
|
1446
|
+
exports.RegisterScalableTarget$ = RegisterScalableTarget$;
|
|
451
1447
|
exports.RegisterScalableTargetCommand = RegisterScalableTargetCommand;
|
|
1448
|
+
exports.RegisterScalableTargetRequest$ = RegisterScalableTargetRequest$;
|
|
1449
|
+
exports.RegisterScalableTargetResponse$ = RegisterScalableTargetResponse$;
|
|
1450
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1451
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
452
1452
|
exports.ScalableDimension = ScalableDimension;
|
|
1453
|
+
exports.ScalableTarget$ = ScalableTarget$;
|
|
1454
|
+
exports.ScalableTargetAction$ = ScalableTargetAction$;
|
|
1455
|
+
exports.ScalingActivity$ = ScalingActivity$;
|
|
453
1456
|
exports.ScalingActivityStatusCode = ScalingActivityStatusCode;
|
|
1457
|
+
exports.ScalingPolicy$ = ScalingPolicy$;
|
|
1458
|
+
exports.ScheduledAction$ = ScheduledAction$;
|
|
454
1459
|
exports.ServiceNamespace = ServiceNamespace;
|
|
1460
|
+
exports.StepAdjustment$ = StepAdjustment$;
|
|
1461
|
+
exports.StepScalingPolicyConfiguration$ = StepScalingPolicyConfiguration$;
|
|
1462
|
+
exports.SuspendedState$ = SuspendedState$;
|
|
1463
|
+
exports.TagResource$ = TagResource$;
|
|
455
1464
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1465
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1466
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1467
|
+
exports.TargetTrackingMetric$ = TargetTrackingMetric$;
|
|
1468
|
+
exports.TargetTrackingMetricDataQuery$ = TargetTrackingMetricDataQuery$;
|
|
1469
|
+
exports.TargetTrackingMetricDimension$ = TargetTrackingMetricDimension$;
|
|
1470
|
+
exports.TargetTrackingMetricStat$ = TargetTrackingMetricStat$;
|
|
1471
|
+
exports.TargetTrackingScalingPolicyConfiguration$ = TargetTrackingScalingPolicyConfiguration$;
|
|
1472
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1473
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1474
|
+
exports.UntagResource$ = UntagResource$;
|
|
456
1475
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1476
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1477
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1478
|
+
exports.ValidationException = ValidationException;
|
|
1479
|
+
exports.ValidationException$ = ValidationException$;
|
|
1480
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
457
1481
|
exports.paginateDescribeScalableTargets = paginateDescribeScalableTargets;
|
|
458
1482
|
exports.paginateDescribeScalingActivities = paginateDescribeScalingActivities;
|
|
459
1483
|
exports.paginateDescribeScalingPolicies = paginateDescribeScalingPolicies;
|