@aws-sdk/client-application-auto-scaling 3.987.0 → 3.988.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 +33 -863
- package/dist-cjs/models/ApplicationAutoScalingServiceException.js +12 -0
- package/dist-cjs/models/errors.js +143 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +636 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +64 -58
- package/dist-types/schemas/schemas_0.d.ts +17 -10
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -10
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ApplicationAutoScalingServiceException = require('./models/ApplicationAutoScalingServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,763 +113,6 @@ class ApplicationAutoScalingClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ApplicationAutoScalingServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ApplicationAutoScalingServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ConcurrentUpdateException extends ApplicationAutoScalingServiceException {
|
|
121
|
-
name = "ConcurrentUpdateException";
|
|
122
|
-
$fault = "server";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "ConcurrentUpdateException",
|
|
127
|
-
$fault: "server",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, ConcurrentUpdateException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class InternalServiceException extends ApplicationAutoScalingServiceException {
|
|
135
|
-
name = "InternalServiceException";
|
|
136
|
-
$fault = "server";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "InternalServiceException",
|
|
141
|
-
$fault: "server",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class ObjectNotFoundException extends ApplicationAutoScalingServiceException {
|
|
149
|
-
name = "ObjectNotFoundException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ObjectNotFoundException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ObjectNotFoundException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ValidationException extends ApplicationAutoScalingServiceException {
|
|
163
|
-
name = "ValidationException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ValidationException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class InvalidNextTokenException extends ApplicationAutoScalingServiceException {
|
|
177
|
-
name = "InvalidNextTokenException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "InvalidNextTokenException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class FailedResourceAccessException extends ApplicationAutoScalingServiceException {
|
|
191
|
-
name = "FailedResourceAccessException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "FailedResourceAccessException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, FailedResourceAccessException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class ResourceNotFoundException extends ApplicationAutoScalingServiceException {
|
|
205
|
-
name = "ResourceNotFoundException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
Message;
|
|
208
|
-
ResourceName;
|
|
209
|
-
constructor(opts) {
|
|
210
|
-
super({
|
|
211
|
-
name: "ResourceNotFoundException",
|
|
212
|
-
$fault: "client",
|
|
213
|
-
...opts,
|
|
214
|
-
});
|
|
215
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
216
|
-
this.Message = opts.Message;
|
|
217
|
-
this.ResourceName = opts.ResourceName;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
class LimitExceededException extends ApplicationAutoScalingServiceException {
|
|
221
|
-
name = "LimitExceededException";
|
|
222
|
-
$fault = "client";
|
|
223
|
-
Message;
|
|
224
|
-
constructor(opts) {
|
|
225
|
-
super({
|
|
226
|
-
name: "LimitExceededException",
|
|
227
|
-
$fault: "client",
|
|
228
|
-
...opts,
|
|
229
|
-
});
|
|
230
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
231
|
-
this.Message = opts.Message;
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
class TooManyTagsException extends ApplicationAutoScalingServiceException {
|
|
235
|
-
name = "TooManyTagsException";
|
|
236
|
-
$fault = "client";
|
|
237
|
-
Message;
|
|
238
|
-
ResourceName;
|
|
239
|
-
constructor(opts) {
|
|
240
|
-
super({
|
|
241
|
-
name: "TooManyTagsException",
|
|
242
|
-
$fault: "client",
|
|
243
|
-
...opts,
|
|
244
|
-
});
|
|
245
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
246
|
-
this.Message = opts.Message;
|
|
247
|
-
this.ResourceName = opts.ResourceName;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
const _A = "Alarm";
|
|
252
|
-
const _AARN = "AlarmARN";
|
|
253
|
-
const _AI = "ActivityId";
|
|
254
|
-
const _AN = "AlarmName";
|
|
255
|
-
const _AT = "AdjustmentType";
|
|
256
|
-
const _Al = "Alarms";
|
|
257
|
-
const _C = "Code";
|
|
258
|
-
const _CC = "CurrentCapacity";
|
|
259
|
-
const _CCMS = "CustomizedCapacityMetricSpecification";
|
|
260
|
-
const _CF = "CapacityForecast";
|
|
261
|
-
const _CLMS = "CustomizedLoadMetricSpecification";
|
|
262
|
-
const _CMS = "CustomizedMetricSpecification";
|
|
263
|
-
const _CSMS = "CustomizedScalingMetricSpecification";
|
|
264
|
-
const _CT = "CreationTime";
|
|
265
|
-
const _CUE = "ConcurrentUpdateException";
|
|
266
|
-
const _Ca = "Cause";
|
|
267
|
-
const _Co = "Cooldown";
|
|
268
|
-
const _D = "Dimensions";
|
|
269
|
-
const _DSA = "DeleteScheduledAction";
|
|
270
|
-
const _DSAR = "DeleteScheduledActionRequest";
|
|
271
|
-
const _DSARe = "DeleteScheduledActionResponse";
|
|
272
|
-
const _DSARes = "DescribeScalingActivitiesRequest";
|
|
273
|
-
const _DSAResc = "DescribeScalingActivitiesResponse";
|
|
274
|
-
const _DSARescr = "DescribeScheduledActionsRequest";
|
|
275
|
-
const _DSARescri = "DescribeScheduledActionsResponse";
|
|
276
|
-
const _DSAe = "DescribeScalingActivities";
|
|
277
|
-
const _DSAes = "DescribeScheduledActions";
|
|
278
|
-
const _DSI = "DisableScaleIn";
|
|
279
|
-
const _DSIS = "DynamicScalingInSuspended";
|
|
280
|
-
const _DSOS = "DynamicScalingOutSuspended";
|
|
281
|
-
const _DSP = "DeleteScalingPolicy";
|
|
282
|
-
const _DSPR = "DeleteScalingPolicyRequest";
|
|
283
|
-
const _DSPRe = "DeleteScalingPolicyResponse";
|
|
284
|
-
const _DSPRes = "DescribeScalingPoliciesRequest";
|
|
285
|
-
const _DSPResc = "DescribeScalingPoliciesResponse";
|
|
286
|
-
const _DSPe = "DescribeScalingPolicies";
|
|
287
|
-
const _DST = "DeregisterScalableTarget";
|
|
288
|
-
const _DSTR = "DeregisterScalableTargetRequest";
|
|
289
|
-
const _DSTRe = "DeregisterScalableTargetResponse";
|
|
290
|
-
const _DSTRes = "DescribeScalableTargetsRequest";
|
|
291
|
-
const _DSTResc = "DescribeScalableTargetsResponse";
|
|
292
|
-
const _DSTe = "DescribeScalableTargets";
|
|
293
|
-
const _De = "Description";
|
|
294
|
-
const _Det = "Details";
|
|
295
|
-
const _E = "Expression";
|
|
296
|
-
const _ET = "EndTime";
|
|
297
|
-
const _FRAE = "FailedResourceAccessException";
|
|
298
|
-
const _GPSF = "GetPredictiveScalingForecast";
|
|
299
|
-
const _GPSFR = "GetPredictiveScalingForecastRequest";
|
|
300
|
-
const _GPSFRe = "GetPredictiveScalingForecastResponse";
|
|
301
|
-
const _I = "Id";
|
|
302
|
-
const _INSA = "IncludeNotScaledActivities";
|
|
303
|
-
const _INTE = "InvalidNextTokenException";
|
|
304
|
-
const _ISE = "InternalServiceException";
|
|
305
|
-
const _L = "Label";
|
|
306
|
-
const _LEE = "LimitExceededException";
|
|
307
|
-
const _LF = "LoadForecast";
|
|
308
|
-
const _LFo = "LoadForecasts";
|
|
309
|
-
const _LTFR = "ListTagsForResource";
|
|
310
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
311
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
312
|
-
const _M = "Message";
|
|
313
|
-
const _MAM = "MinAdjustmentMagnitude";
|
|
314
|
-
const _MAT = "MetricAggregationType";
|
|
315
|
-
const _MC = "MaxCapacity";
|
|
316
|
-
const _MCB = "MaxCapacityBuffer";
|
|
317
|
-
const _MCBB = "MaxCapacityBreachBehavior";
|
|
318
|
-
const _MCi = "MinCapacity";
|
|
319
|
-
const _MD = "MetricDimension";
|
|
320
|
-
const _MDQ = "MetricDataQueries";
|
|
321
|
-
const _MDe = "MetricDimensions";
|
|
322
|
-
const _MILB = "MetricIntervalLowerBound";
|
|
323
|
-
const _MIUB = "MetricIntervalUpperBound";
|
|
324
|
-
const _MN = "MetricName";
|
|
325
|
-
const _MR = "MaxResults";
|
|
326
|
-
const _MS = "MetricSpecification";
|
|
327
|
-
const _MSe = "MetricStat";
|
|
328
|
-
const _MSet = "MetricSpecifications";
|
|
329
|
-
const _Me = "Metrics";
|
|
330
|
-
const _Met = "Metric";
|
|
331
|
-
const _Mo = "Mode";
|
|
332
|
-
const _N = "Namespace";
|
|
333
|
-
const _NSR = "NotScaledReason";
|
|
334
|
-
const _NSRo = "NotScaledReasons";
|
|
335
|
-
const _NT = "NextToken";
|
|
336
|
-
const _Na = "Name";
|
|
337
|
-
const _ONFE = "ObjectNotFoundException";
|
|
338
|
-
const _PARN = "PolicyARN";
|
|
339
|
-
const _PC = "PredictedCapacity";
|
|
340
|
-
const _PLMS = "PredefinedLoadMetricSpecification";
|
|
341
|
-
const _PMPS = "PredefinedMetricPairSpecification";
|
|
342
|
-
const _PMS = "PredefinedMetricSpecification";
|
|
343
|
-
const _PMT = "PredefinedMetricType";
|
|
344
|
-
const _PN = "PolicyName";
|
|
345
|
-
const _PNo = "PolicyNames";
|
|
346
|
-
const _PSA = "PutScheduledAction";
|
|
347
|
-
const _PSAR = "PutScheduledActionRequest";
|
|
348
|
-
const _PSARu = "PutScheduledActionResponse";
|
|
349
|
-
const _PSCMS = "PredictiveScalingCustomizedMetricSpecification";
|
|
350
|
-
const _PSM = "PredictiveScalingMetric";
|
|
351
|
-
const _PSMD = "PredictiveScalingMetricDimension";
|
|
352
|
-
const _PSMDQ = "PredictiveScalingMetricDataQuery";
|
|
353
|
-
const _PSMDQr = "PredictiveScalingMetricDataQueries";
|
|
354
|
-
const _PSMDr = "PredictiveScalingMetricDimensions";
|
|
355
|
-
const _PSMS = "PredictiveScalingMetricSpecification";
|
|
356
|
-
const _PSMSr = "PredefinedScalingMetricSpecification";
|
|
357
|
-
const _PSMSre = "PredictiveScalingMetricStat";
|
|
358
|
-
const _PSMSred = "PredictiveScalingMetricSpecifications";
|
|
359
|
-
const _PSP = "PutScalingPolicy";
|
|
360
|
-
const _PSPC = "PredictiveScalingPolicyConfiguration";
|
|
361
|
-
const _PSPLMS = "PredictiveScalingPredefinedLoadMetricSpecification";
|
|
362
|
-
const _PSPMPS = "PredictiveScalingPredefinedMetricPairSpecification";
|
|
363
|
-
const _PSPR = "PutScalingPolicyRequest";
|
|
364
|
-
const _PSPRu = "PutScalingPolicyResponse";
|
|
365
|
-
const _PSPSMS = "PredictiveScalingPredefinedScalingMetricSpecification";
|
|
366
|
-
const _PT = "PolicyType";
|
|
367
|
-
const _RARN = "ResourceARN";
|
|
368
|
-
const _RARNo = "RoleARN";
|
|
369
|
-
const _RD = "ReturnData";
|
|
370
|
-
const _RI = "ResourceId";
|
|
371
|
-
const _RIe = "ResourceIds";
|
|
372
|
-
const _RL = "ResourceLabel";
|
|
373
|
-
const _RN = "ResourceName";
|
|
374
|
-
const _RNFE = "ResourceNotFoundException";
|
|
375
|
-
const _RST = "RegisterScalableTarget";
|
|
376
|
-
const _RSTR = "RegisterScalableTargetRequest";
|
|
377
|
-
const _RSTRe = "RegisterScalableTargetResponse";
|
|
378
|
-
const _S = "Statistic";
|
|
379
|
-
const _SA = "ScalingActivities";
|
|
380
|
-
const _SAARN = "ScheduledActionARN";
|
|
381
|
-
const _SAN = "ScheduledActionName";
|
|
382
|
-
const _SANc = "ScheduledActionNames";
|
|
383
|
-
const _SAc = "ScheduledActions";
|
|
384
|
-
const _SAca = "ScalingActivity";
|
|
385
|
-
const _SAcal = "ScalingAdjustment";
|
|
386
|
-
const _SAch = "ScheduledAction";
|
|
387
|
-
const _SAt = "StepAdjustment";
|
|
388
|
-
const _SAte = "StepAdjustments";
|
|
389
|
-
const _SBT = "SchedulingBufferTime";
|
|
390
|
-
const _SC = "StatusCode";
|
|
391
|
-
const _SD = "ScalableDimension";
|
|
392
|
-
const _SIC = "ScaleInCooldown";
|
|
393
|
-
const _SM = "StatusMessage";
|
|
394
|
-
const _SN = "ServiceNamespace";
|
|
395
|
-
const _SOC = "ScaleOutCooldown";
|
|
396
|
-
const _SP = "ScalingPolicies";
|
|
397
|
-
const _SPc = "ScalingPolicy";
|
|
398
|
-
const _SS = "SuspendedState";
|
|
399
|
-
const _SSPC = "StepScalingPolicyConfiguration";
|
|
400
|
-
const _SSS = "ScheduledScalingSuspended";
|
|
401
|
-
const _ST = "ScalableTargets";
|
|
402
|
-
const _STA = "ScalableTargetAction";
|
|
403
|
-
const _STARN = "ScalableTargetARN";
|
|
404
|
-
const _STc = "ScalableTarget";
|
|
405
|
-
const _STt = "StartTime";
|
|
406
|
-
const _Sc = "Schedule";
|
|
407
|
-
const _St = "Stat";
|
|
408
|
-
const _T = "Timestamps";
|
|
409
|
-
const _TK = "TagKeys";
|
|
410
|
-
const _TMTE = "TooManyTagsException";
|
|
411
|
-
const _TR = "TagResource";
|
|
412
|
-
const _TRR = "TagResourceRequest";
|
|
413
|
-
const _TRRa = "TagResourceResponse";
|
|
414
|
-
const _TTM = "TargetTrackingMetric";
|
|
415
|
-
const _TTMD = "TargetTrackingMetricDimension";
|
|
416
|
-
const _TTMDQ = "TargetTrackingMetricDataQuery";
|
|
417
|
-
const _TTMDQa = "TargetTrackingMetricDataQueries";
|
|
418
|
-
const _TTMDa = "TargetTrackingMetricDimensions";
|
|
419
|
-
const _TTMS = "TargetTrackingMetricStat";
|
|
420
|
-
const _TTSPC = "TargetTrackingScalingPolicyConfiguration";
|
|
421
|
-
const _TV = "TargetValue";
|
|
422
|
-
const _Ta = "Tags";
|
|
423
|
-
const _Ti = "Timezone";
|
|
424
|
-
const _U = "Unit";
|
|
425
|
-
const _UR = "UntagResource";
|
|
426
|
-
const _URR = "UntagResourceRequest";
|
|
427
|
-
const _URRn = "UntagResourceResponse";
|
|
428
|
-
const _UT = "UpdateTime";
|
|
429
|
-
const _V = "Values";
|
|
430
|
-
const _VE = "ValidationException";
|
|
431
|
-
const _Va = "Value";
|
|
432
|
-
const _aQE = "awsQueryError";
|
|
433
|
-
const _c = "client";
|
|
434
|
-
const _e = "error";
|
|
435
|
-
const _hE = "httpError";
|
|
436
|
-
const _s = "server";
|
|
437
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.applicationautoscaling";
|
|
438
|
-
const n0 = "com.amazonaws.applicationautoscaling";
|
|
439
|
-
var Alarm$ = [3, n0, _A,
|
|
440
|
-
0,
|
|
441
|
-
[_AN, _AARN],
|
|
442
|
-
[0, 0], 2
|
|
443
|
-
];
|
|
444
|
-
var CapacityForecast$ = [3, n0, _CF,
|
|
445
|
-
0,
|
|
446
|
-
[_T, _V],
|
|
447
|
-
[64 | 4, 64 | 1], 2
|
|
448
|
-
];
|
|
449
|
-
var ConcurrentUpdateException$ = [-3, n0, _CUE,
|
|
450
|
-
{ [_aQE]: [`ConcurrentUpdateException`, 500], [_e]: _s, [_hE]: 500 },
|
|
451
|
-
[_M],
|
|
452
|
-
[0]
|
|
453
|
-
];
|
|
454
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentUpdateException$, ConcurrentUpdateException);
|
|
455
|
-
var CustomizedMetricSpecification$ = [3, n0, _CMS,
|
|
456
|
-
0,
|
|
457
|
-
[_MN, _N, _D, _S, _U, _Me],
|
|
458
|
-
[0, 0, () => MetricDimensions, 0, 0, () => TargetTrackingMetricDataQueries]
|
|
459
|
-
];
|
|
460
|
-
var DeleteScalingPolicyRequest$ = [3, n0, _DSPR,
|
|
461
|
-
0,
|
|
462
|
-
[_PN, _SN, _RI, _SD],
|
|
463
|
-
[0, 0, 0, 0], 4
|
|
464
|
-
];
|
|
465
|
-
var DeleteScalingPolicyResponse$ = [3, n0, _DSPRe,
|
|
466
|
-
0,
|
|
467
|
-
[],
|
|
468
|
-
[]
|
|
469
|
-
];
|
|
470
|
-
var DeleteScheduledActionRequest$ = [3, n0, _DSAR,
|
|
471
|
-
0,
|
|
472
|
-
[_SN, _SAN, _RI, _SD],
|
|
473
|
-
[0, 0, 0, 0], 4
|
|
474
|
-
];
|
|
475
|
-
var DeleteScheduledActionResponse$ = [3, n0, _DSARe,
|
|
476
|
-
0,
|
|
477
|
-
[],
|
|
478
|
-
[]
|
|
479
|
-
];
|
|
480
|
-
var DeregisterScalableTargetRequest$ = [3, n0, _DSTR,
|
|
481
|
-
0,
|
|
482
|
-
[_SN, _RI, _SD],
|
|
483
|
-
[0, 0, 0], 3
|
|
484
|
-
];
|
|
485
|
-
var DeregisterScalableTargetResponse$ = [3, n0, _DSTRe,
|
|
486
|
-
0,
|
|
487
|
-
[],
|
|
488
|
-
[]
|
|
489
|
-
];
|
|
490
|
-
var DescribeScalableTargetsRequest$ = [3, n0, _DSTRes,
|
|
491
|
-
0,
|
|
492
|
-
[_SN, _RIe, _SD, _MR, _NT],
|
|
493
|
-
[0, 64 | 0, 0, 1, 0], 1
|
|
494
|
-
];
|
|
495
|
-
var DescribeScalableTargetsResponse$ = [3, n0, _DSTResc,
|
|
496
|
-
0,
|
|
497
|
-
[_ST, _NT],
|
|
498
|
-
[() => ScalableTargets, 0]
|
|
499
|
-
];
|
|
500
|
-
var DescribeScalingActivitiesRequest$ = [3, n0, _DSARes,
|
|
501
|
-
0,
|
|
502
|
-
[_SN, _RI, _SD, _MR, _NT, _INSA],
|
|
503
|
-
[0, 0, 0, 1, 0, 2], 1
|
|
504
|
-
];
|
|
505
|
-
var DescribeScalingActivitiesResponse$ = [3, n0, _DSAResc,
|
|
506
|
-
0,
|
|
507
|
-
[_SA, _NT],
|
|
508
|
-
[() => ScalingActivities, 0]
|
|
509
|
-
];
|
|
510
|
-
var DescribeScalingPoliciesRequest$ = [3, n0, _DSPRes,
|
|
511
|
-
0,
|
|
512
|
-
[_SN, _PNo, _RI, _SD, _MR, _NT],
|
|
513
|
-
[0, 64 | 0, 0, 0, 1, 0], 1
|
|
514
|
-
];
|
|
515
|
-
var DescribeScalingPoliciesResponse$ = [3, n0, _DSPResc,
|
|
516
|
-
0,
|
|
517
|
-
[_SP, _NT],
|
|
518
|
-
[() => ScalingPolicies, 0]
|
|
519
|
-
];
|
|
520
|
-
var DescribeScheduledActionsRequest$ = [3, n0, _DSARescr,
|
|
521
|
-
0,
|
|
522
|
-
[_SN, _SANc, _RI, _SD, _MR, _NT],
|
|
523
|
-
[0, 64 | 0, 0, 0, 1, 0], 1
|
|
524
|
-
];
|
|
525
|
-
var DescribeScheduledActionsResponse$ = [3, n0, _DSARescri,
|
|
526
|
-
0,
|
|
527
|
-
[_SAc, _NT],
|
|
528
|
-
[() => ScheduledActions, 0]
|
|
529
|
-
];
|
|
530
|
-
var FailedResourceAccessException$ = [-3, n0, _FRAE,
|
|
531
|
-
{ [_aQE]: [`FailedResourceAccessException`, 400], [_e]: _c, [_hE]: 400 },
|
|
532
|
-
[_M],
|
|
533
|
-
[0]
|
|
534
|
-
];
|
|
535
|
-
schema.TypeRegistry.for(n0).registerError(FailedResourceAccessException$, FailedResourceAccessException);
|
|
536
|
-
var GetPredictiveScalingForecastRequest$ = [3, n0, _GPSFR,
|
|
537
|
-
0,
|
|
538
|
-
[_SN, _RI, _SD, _PN, _STt, _ET],
|
|
539
|
-
[0, 0, 0, 0, 4, 4], 6
|
|
540
|
-
];
|
|
541
|
-
var GetPredictiveScalingForecastResponse$ = [3, n0, _GPSFRe,
|
|
542
|
-
0,
|
|
543
|
-
[_LF, _CF, _UT],
|
|
544
|
-
[() => LoadForecasts, () => CapacityForecast$, 4]
|
|
545
|
-
];
|
|
546
|
-
var InternalServiceException$ = [-3, n0, _ISE,
|
|
547
|
-
{ [_aQE]: [`InternalServiceException`, 500], [_e]: _s, [_hE]: 500 },
|
|
548
|
-
[_M],
|
|
549
|
-
[0]
|
|
550
|
-
];
|
|
551
|
-
schema.TypeRegistry.for(n0).registerError(InternalServiceException$, InternalServiceException);
|
|
552
|
-
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
553
|
-
{ [_aQE]: [`InvalidNextTokenException`, 400], [_e]: _c, [_hE]: 400 },
|
|
554
|
-
[_M],
|
|
555
|
-
[0]
|
|
556
|
-
];
|
|
557
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
558
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
559
|
-
{ [_aQE]: [`LimitExceededException`, 400], [_e]: _c, [_hE]: 400 },
|
|
560
|
-
[_M],
|
|
561
|
-
[0]
|
|
562
|
-
];
|
|
563
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
564
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
565
|
-
0,
|
|
566
|
-
[_RARN],
|
|
567
|
-
[0], 1
|
|
568
|
-
];
|
|
569
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
570
|
-
0,
|
|
571
|
-
[_Ta],
|
|
572
|
-
[128 | 0]
|
|
573
|
-
];
|
|
574
|
-
var LoadForecast$ = [3, n0, _LF,
|
|
575
|
-
0,
|
|
576
|
-
[_T, _V, _MS],
|
|
577
|
-
[64 | 4, 64 | 1, () => PredictiveScalingMetricSpecification$], 3
|
|
578
|
-
];
|
|
579
|
-
var MetricDimension$ = [3, n0, _MD,
|
|
580
|
-
0,
|
|
581
|
-
[_Na, _Va],
|
|
582
|
-
[0, 0], 2
|
|
583
|
-
];
|
|
584
|
-
var NotScaledReason$ = [3, n0, _NSR,
|
|
585
|
-
0,
|
|
586
|
-
[_C, _MC, _MCi, _CC],
|
|
587
|
-
[0, 1, 1, 1], 1
|
|
588
|
-
];
|
|
589
|
-
var ObjectNotFoundException$ = [-3, n0, _ONFE,
|
|
590
|
-
{ [_aQE]: [`ObjectNotFoundException`, 400], [_e]: _c, [_hE]: 400 },
|
|
591
|
-
[_M],
|
|
592
|
-
[0]
|
|
593
|
-
];
|
|
594
|
-
schema.TypeRegistry.for(n0).registerError(ObjectNotFoundException$, ObjectNotFoundException);
|
|
595
|
-
var PredefinedMetricSpecification$ = [3, n0, _PMS,
|
|
596
|
-
0,
|
|
597
|
-
[_PMT, _RL],
|
|
598
|
-
[0, 0], 1
|
|
599
|
-
];
|
|
600
|
-
var PredictiveScalingCustomizedMetricSpecification$ = [3, n0, _PSCMS,
|
|
601
|
-
0,
|
|
602
|
-
[_MDQ],
|
|
603
|
-
[() => PredictiveScalingMetricDataQueries], 1
|
|
604
|
-
];
|
|
605
|
-
var PredictiveScalingMetric$ = [3, n0, _PSM,
|
|
606
|
-
0,
|
|
607
|
-
[_D, _MN, _N],
|
|
608
|
-
[() => PredictiveScalingMetricDimensions, 0, 0]
|
|
609
|
-
];
|
|
610
|
-
var PredictiveScalingMetricDataQuery$ = [3, n0, _PSMDQ,
|
|
611
|
-
0,
|
|
612
|
-
[_I, _E, _MSe, _L, _RD],
|
|
613
|
-
[0, 0, () => PredictiveScalingMetricStat$, 0, 2], 1
|
|
614
|
-
];
|
|
615
|
-
var PredictiveScalingMetricDimension$ = [3, n0, _PSMD,
|
|
616
|
-
0,
|
|
617
|
-
[_Na, _Va],
|
|
618
|
-
[0, 0], 2
|
|
619
|
-
];
|
|
620
|
-
var PredictiveScalingMetricSpecification$ = [3, n0, _PSMS,
|
|
621
|
-
0,
|
|
622
|
-
[_TV, _PMPS, _PSMSr, _PLMS, _CSMS, _CLMS, _CCMS],
|
|
623
|
-
[1, () => PredictiveScalingPredefinedMetricPairSpecification$, () => PredictiveScalingPredefinedScalingMetricSpecification$, () => PredictiveScalingPredefinedLoadMetricSpecification$, () => PredictiveScalingCustomizedMetricSpecification$, () => PredictiveScalingCustomizedMetricSpecification$, () => PredictiveScalingCustomizedMetricSpecification$], 1
|
|
624
|
-
];
|
|
625
|
-
var PredictiveScalingMetricStat$ = [3, n0, _PSMSre,
|
|
626
|
-
0,
|
|
627
|
-
[_Met, _St, _U],
|
|
628
|
-
[() => PredictiveScalingMetric$, 0, 0], 2
|
|
629
|
-
];
|
|
630
|
-
var PredictiveScalingPolicyConfiguration$ = [3, n0, _PSPC,
|
|
631
|
-
0,
|
|
632
|
-
[_MSet, _Mo, _SBT, _MCBB, _MCB],
|
|
633
|
-
[() => PredictiveScalingMetricSpecifications, 0, 1, 0, 1], 1
|
|
634
|
-
];
|
|
635
|
-
var PredictiveScalingPredefinedLoadMetricSpecification$ = [3, n0, _PSPLMS,
|
|
636
|
-
0,
|
|
637
|
-
[_PMT, _RL],
|
|
638
|
-
[0, 0], 1
|
|
639
|
-
];
|
|
640
|
-
var PredictiveScalingPredefinedMetricPairSpecification$ = [3, n0, _PSPMPS,
|
|
641
|
-
0,
|
|
642
|
-
[_PMT, _RL],
|
|
643
|
-
[0, 0], 1
|
|
644
|
-
];
|
|
645
|
-
var PredictiveScalingPredefinedScalingMetricSpecification$ = [3, n0, _PSPSMS,
|
|
646
|
-
0,
|
|
647
|
-
[_PMT, _RL],
|
|
648
|
-
[0, 0], 1
|
|
649
|
-
];
|
|
650
|
-
var PutScalingPolicyRequest$ = [3, n0, _PSPR,
|
|
651
|
-
0,
|
|
652
|
-
[_PN, _SN, _RI, _SD, _PT, _SSPC, _TTSPC, _PSPC],
|
|
653
|
-
[0, 0, 0, 0, 0, () => StepScalingPolicyConfiguration$, () => TargetTrackingScalingPolicyConfiguration$, () => PredictiveScalingPolicyConfiguration$], 4
|
|
654
|
-
];
|
|
655
|
-
var PutScalingPolicyResponse$ = [3, n0, _PSPRu,
|
|
656
|
-
0,
|
|
657
|
-
[_PARN, _Al],
|
|
658
|
-
[0, () => Alarms], 1
|
|
659
|
-
];
|
|
660
|
-
var PutScheduledActionRequest$ = [3, n0, _PSAR,
|
|
661
|
-
0,
|
|
662
|
-
[_SN, _SAN, _RI, _SD, _Sc, _Ti, _STt, _ET, _STA],
|
|
663
|
-
[0, 0, 0, 0, 0, 0, 4, 4, () => ScalableTargetAction$], 4
|
|
664
|
-
];
|
|
665
|
-
var PutScheduledActionResponse$ = [3, n0, _PSARu,
|
|
666
|
-
0,
|
|
667
|
-
[],
|
|
668
|
-
[]
|
|
669
|
-
];
|
|
670
|
-
var RegisterScalableTargetRequest$ = [3, n0, _RSTR,
|
|
671
|
-
0,
|
|
672
|
-
[_SN, _RI, _SD, _MCi, _MC, _RARNo, _SS, _Ta],
|
|
673
|
-
[0, 0, 0, 1, 1, 0, () => SuspendedState$, 128 | 0], 3
|
|
674
|
-
];
|
|
675
|
-
var RegisterScalableTargetResponse$ = [3, n0, _RSTRe,
|
|
676
|
-
0,
|
|
677
|
-
[_STARN],
|
|
678
|
-
[0]
|
|
679
|
-
];
|
|
680
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
681
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
682
|
-
[_M, _RN],
|
|
683
|
-
[0, 0]
|
|
684
|
-
];
|
|
685
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
686
|
-
var ScalableTarget$ = [3, n0, _STc,
|
|
687
|
-
0,
|
|
688
|
-
[_SN, _RI, _SD, _MCi, _MC, _RARNo, _CT, _PC, _SS, _STARN],
|
|
689
|
-
[0, 0, 0, 1, 1, 0, 4, 1, () => SuspendedState$, 0], 7
|
|
690
|
-
];
|
|
691
|
-
var ScalableTargetAction$ = [3, n0, _STA,
|
|
692
|
-
0,
|
|
693
|
-
[_MCi, _MC],
|
|
694
|
-
[1, 1]
|
|
695
|
-
];
|
|
696
|
-
var ScalingActivity$ = [3, n0, _SAca,
|
|
697
|
-
0,
|
|
698
|
-
[_AI, _SN, _RI, _SD, _De, _Ca, _STt, _SC, _ET, _SM, _Det, _NSRo],
|
|
699
|
-
[0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, () => NotScaledReasons], 8
|
|
700
|
-
];
|
|
701
|
-
var ScalingPolicy$ = [3, n0, _SPc,
|
|
702
|
-
0,
|
|
703
|
-
[_PARN, _PN, _SN, _RI, _SD, _PT, _CT, _SSPC, _TTSPC, _PSPC, _Al],
|
|
704
|
-
[0, 0, 0, 0, 0, 0, 4, () => StepScalingPolicyConfiguration$, () => TargetTrackingScalingPolicyConfiguration$, () => PredictiveScalingPolicyConfiguration$, () => Alarms], 7
|
|
705
|
-
];
|
|
706
|
-
var ScheduledAction$ = [3, n0, _SAch,
|
|
707
|
-
0,
|
|
708
|
-
[_SAN, _SAARN, _SN, _Sc, _RI, _CT, _Ti, _SD, _STt, _ET, _STA],
|
|
709
|
-
[0, 0, 0, 0, 0, 4, 0, 0, 4, 4, () => ScalableTargetAction$], 6
|
|
710
|
-
];
|
|
711
|
-
var StepAdjustment$ = [3, n0, _SAt,
|
|
712
|
-
0,
|
|
713
|
-
[_SAcal, _MILB, _MIUB],
|
|
714
|
-
[1, 1, 1], 1
|
|
715
|
-
];
|
|
716
|
-
var StepScalingPolicyConfiguration$ = [3, n0, _SSPC,
|
|
717
|
-
0,
|
|
718
|
-
[_AT, _SAte, _MAM, _Co, _MAT],
|
|
719
|
-
[0, () => StepAdjustments, 1, 1, 0]
|
|
720
|
-
];
|
|
721
|
-
var SuspendedState$ = [3, n0, _SS,
|
|
722
|
-
0,
|
|
723
|
-
[_DSIS, _DSOS, _SSS],
|
|
724
|
-
[2, 2, 2]
|
|
725
|
-
];
|
|
726
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
727
|
-
0,
|
|
728
|
-
[_RARN, _Ta],
|
|
729
|
-
[0, 128 | 0], 2
|
|
730
|
-
];
|
|
731
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
732
|
-
0,
|
|
733
|
-
[],
|
|
734
|
-
[]
|
|
735
|
-
];
|
|
736
|
-
var TargetTrackingMetric$ = [3, n0, _TTM,
|
|
737
|
-
0,
|
|
738
|
-
[_D, _MN, _N],
|
|
739
|
-
[() => TargetTrackingMetricDimensions, 0, 0]
|
|
740
|
-
];
|
|
741
|
-
var TargetTrackingMetricDataQuery$ = [3, n0, _TTMDQ,
|
|
742
|
-
0,
|
|
743
|
-
[_I, _E, _L, _MSe, _RD],
|
|
744
|
-
[0, 0, 0, () => TargetTrackingMetricStat$, 2], 1
|
|
745
|
-
];
|
|
746
|
-
var TargetTrackingMetricDimension$ = [3, n0, _TTMD,
|
|
747
|
-
0,
|
|
748
|
-
[_Na, _Va],
|
|
749
|
-
[0, 0], 2
|
|
750
|
-
];
|
|
751
|
-
var TargetTrackingMetricStat$ = [3, n0, _TTMS,
|
|
752
|
-
0,
|
|
753
|
-
[_Met, _St, _U],
|
|
754
|
-
[() => TargetTrackingMetric$, 0, 0], 2
|
|
755
|
-
];
|
|
756
|
-
var TargetTrackingScalingPolicyConfiguration$ = [3, n0, _TTSPC,
|
|
757
|
-
0,
|
|
758
|
-
[_TV, _PMS, _CMS, _SOC, _SIC, _DSI],
|
|
759
|
-
[1, () => PredefinedMetricSpecification$, () => CustomizedMetricSpecification$, 1, 1, 2], 1
|
|
760
|
-
];
|
|
761
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
762
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
763
|
-
[_M, _RN],
|
|
764
|
-
[0, 0]
|
|
765
|
-
];
|
|
766
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
767
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
768
|
-
0,
|
|
769
|
-
[_RARN, _TK],
|
|
770
|
-
[0, 64 | 0], 2
|
|
771
|
-
];
|
|
772
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
773
|
-
0,
|
|
774
|
-
[],
|
|
775
|
-
[]
|
|
776
|
-
];
|
|
777
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
778
|
-
{ [_aQE]: [`ValidationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
779
|
-
[_M],
|
|
780
|
-
[0]
|
|
781
|
-
];
|
|
782
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
783
|
-
var ApplicationAutoScalingServiceException$ = [-3, _sm, "ApplicationAutoScalingServiceException", 0, [], []];
|
|
784
|
-
schema.TypeRegistry.for(_sm).registerError(ApplicationAutoScalingServiceException$, ApplicationAutoScalingServiceException);
|
|
785
|
-
var Alarms = [1, n0, _Al,
|
|
786
|
-
0, () => Alarm$
|
|
787
|
-
];
|
|
788
|
-
var LoadForecasts = [1, n0, _LFo,
|
|
789
|
-
0, () => LoadForecast$
|
|
790
|
-
];
|
|
791
|
-
var MetricDimensions = [1, n0, _MDe,
|
|
792
|
-
0, () => MetricDimension$
|
|
793
|
-
];
|
|
794
|
-
var NotScaledReasons = [1, n0, _NSRo,
|
|
795
|
-
0, () => NotScaledReason$
|
|
796
|
-
];
|
|
797
|
-
var PredictiveScalingMetricDataQueries = [1, n0, _PSMDQr,
|
|
798
|
-
0, () => PredictiveScalingMetricDataQuery$
|
|
799
|
-
];
|
|
800
|
-
var PredictiveScalingMetricDimensions = [1, n0, _PSMDr,
|
|
801
|
-
0, () => PredictiveScalingMetricDimension$
|
|
802
|
-
];
|
|
803
|
-
var PredictiveScalingMetricSpecifications = [1, n0, _PSMSred,
|
|
804
|
-
0, () => PredictiveScalingMetricSpecification$
|
|
805
|
-
];
|
|
806
|
-
var ScalableTargets = [1, n0, _ST,
|
|
807
|
-
0, () => ScalableTarget$
|
|
808
|
-
];
|
|
809
|
-
var ScalingActivities = [1, n0, _SA,
|
|
810
|
-
0, () => ScalingActivity$
|
|
811
|
-
];
|
|
812
|
-
var ScalingPolicies = [1, n0, _SP,
|
|
813
|
-
0, () => ScalingPolicy$
|
|
814
|
-
];
|
|
815
|
-
var ScheduledActions = [1, n0, _SAc,
|
|
816
|
-
0, () => ScheduledAction$
|
|
817
|
-
];
|
|
818
|
-
var StepAdjustments = [1, n0, _SAte,
|
|
819
|
-
0, () => StepAdjustment$
|
|
820
|
-
];
|
|
821
|
-
var TargetTrackingMetricDataQueries = [1, n0, _TTMDQa,
|
|
822
|
-
0, () => TargetTrackingMetricDataQuery$
|
|
823
|
-
];
|
|
824
|
-
var TargetTrackingMetricDimensions = [1, n0, _TTMDa,
|
|
825
|
-
0, () => TargetTrackingMetricDimension$
|
|
826
|
-
];
|
|
827
|
-
var DeleteScalingPolicy$ = [9, n0, _DSP,
|
|
828
|
-
0, () => DeleteScalingPolicyRequest$, () => DeleteScalingPolicyResponse$
|
|
829
|
-
];
|
|
830
|
-
var DeleteScheduledAction$ = [9, n0, _DSA,
|
|
831
|
-
0, () => DeleteScheduledActionRequest$, () => DeleteScheduledActionResponse$
|
|
832
|
-
];
|
|
833
|
-
var DeregisterScalableTarget$ = [9, n0, _DST,
|
|
834
|
-
0, () => DeregisterScalableTargetRequest$, () => DeregisterScalableTargetResponse$
|
|
835
|
-
];
|
|
836
|
-
var DescribeScalableTargets$ = [9, n0, _DSTe,
|
|
837
|
-
0, () => DescribeScalableTargetsRequest$, () => DescribeScalableTargetsResponse$
|
|
838
|
-
];
|
|
839
|
-
var DescribeScalingActivities$ = [9, n0, _DSAe,
|
|
840
|
-
0, () => DescribeScalingActivitiesRequest$, () => DescribeScalingActivitiesResponse$
|
|
841
|
-
];
|
|
842
|
-
var DescribeScalingPolicies$ = [9, n0, _DSPe,
|
|
843
|
-
0, () => DescribeScalingPoliciesRequest$, () => DescribeScalingPoliciesResponse$
|
|
844
|
-
];
|
|
845
|
-
var DescribeScheduledActions$ = [9, n0, _DSAes,
|
|
846
|
-
0, () => DescribeScheduledActionsRequest$, () => DescribeScheduledActionsResponse$
|
|
847
|
-
];
|
|
848
|
-
var GetPredictiveScalingForecast$ = [9, n0, _GPSF,
|
|
849
|
-
0, () => GetPredictiveScalingForecastRequest$, () => GetPredictiveScalingForecastResponse$
|
|
850
|
-
];
|
|
851
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
852
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
853
|
-
];
|
|
854
|
-
var PutScalingPolicy$ = [9, n0, _PSP,
|
|
855
|
-
0, () => PutScalingPolicyRequest$, () => PutScalingPolicyResponse$
|
|
856
|
-
];
|
|
857
|
-
var PutScheduledAction$ = [9, n0, _PSA,
|
|
858
|
-
0, () => PutScheduledActionRequest$, () => PutScheduledActionResponse$
|
|
859
|
-
];
|
|
860
|
-
var RegisterScalableTarget$ = [9, n0, _RST,
|
|
861
|
-
0, () => RegisterScalableTargetRequest$, () => RegisterScalableTargetResponse$
|
|
862
|
-
];
|
|
863
|
-
var TagResource$ = [9, n0, _TR,
|
|
864
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
865
|
-
];
|
|
866
|
-
var UntagResource$ = [9, n0, _UR,
|
|
867
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
868
|
-
];
|
|
869
|
-
|
|
870
116
|
class DeleteScalingPolicyCommand extends smithyClient.Command
|
|
871
117
|
.classBuilder()
|
|
872
118
|
.ep(commonParams)
|
|
@@ -875,7 +121,7 @@ class DeleteScalingPolicyCommand extends smithyClient.Command
|
|
|
875
121
|
})
|
|
876
122
|
.s("AnyScaleFrontendService", "DeleteScalingPolicy", {})
|
|
877
123
|
.n("ApplicationAutoScalingClient", "DeleteScalingPolicyCommand")
|
|
878
|
-
.sc(DeleteScalingPolicy$)
|
|
124
|
+
.sc(schemas_0.DeleteScalingPolicy$)
|
|
879
125
|
.build() {
|
|
880
126
|
}
|
|
881
127
|
|
|
@@ -887,7 +133,7 @@ class DeleteScheduledActionCommand extends smithyClient.Command
|
|
|
887
133
|
})
|
|
888
134
|
.s("AnyScaleFrontendService", "DeleteScheduledAction", {})
|
|
889
135
|
.n("ApplicationAutoScalingClient", "DeleteScheduledActionCommand")
|
|
890
|
-
.sc(DeleteScheduledAction$)
|
|
136
|
+
.sc(schemas_0.DeleteScheduledAction$)
|
|
891
137
|
.build() {
|
|
892
138
|
}
|
|
893
139
|
|
|
@@ -899,7 +145,7 @@ class DeregisterScalableTargetCommand extends smithyClient.Command
|
|
|
899
145
|
})
|
|
900
146
|
.s("AnyScaleFrontendService", "DeregisterScalableTarget", {})
|
|
901
147
|
.n("ApplicationAutoScalingClient", "DeregisterScalableTargetCommand")
|
|
902
|
-
.sc(DeregisterScalableTarget$)
|
|
148
|
+
.sc(schemas_0.DeregisterScalableTarget$)
|
|
903
149
|
.build() {
|
|
904
150
|
}
|
|
905
151
|
|
|
@@ -911,7 +157,7 @@ class DescribeScalableTargetsCommand extends smithyClient.Command
|
|
|
911
157
|
})
|
|
912
158
|
.s("AnyScaleFrontendService", "DescribeScalableTargets", {})
|
|
913
159
|
.n("ApplicationAutoScalingClient", "DescribeScalableTargetsCommand")
|
|
914
|
-
.sc(DescribeScalableTargets$)
|
|
160
|
+
.sc(schemas_0.DescribeScalableTargets$)
|
|
915
161
|
.build() {
|
|
916
162
|
}
|
|
917
163
|
|
|
@@ -923,7 +169,7 @@ class DescribeScalingActivitiesCommand extends smithyClient.Command
|
|
|
923
169
|
})
|
|
924
170
|
.s("AnyScaleFrontendService", "DescribeScalingActivities", {})
|
|
925
171
|
.n("ApplicationAutoScalingClient", "DescribeScalingActivitiesCommand")
|
|
926
|
-
.sc(DescribeScalingActivities$)
|
|
172
|
+
.sc(schemas_0.DescribeScalingActivities$)
|
|
927
173
|
.build() {
|
|
928
174
|
}
|
|
929
175
|
|
|
@@ -935,7 +181,7 @@ class DescribeScalingPoliciesCommand extends smithyClient.Command
|
|
|
935
181
|
})
|
|
936
182
|
.s("AnyScaleFrontendService", "DescribeScalingPolicies", {})
|
|
937
183
|
.n("ApplicationAutoScalingClient", "DescribeScalingPoliciesCommand")
|
|
938
|
-
.sc(DescribeScalingPolicies$)
|
|
184
|
+
.sc(schemas_0.DescribeScalingPolicies$)
|
|
939
185
|
.build() {
|
|
940
186
|
}
|
|
941
187
|
|
|
@@ -947,7 +193,7 @@ class DescribeScheduledActionsCommand extends smithyClient.Command
|
|
|
947
193
|
})
|
|
948
194
|
.s("AnyScaleFrontendService", "DescribeScheduledActions", {})
|
|
949
195
|
.n("ApplicationAutoScalingClient", "DescribeScheduledActionsCommand")
|
|
950
|
-
.sc(DescribeScheduledActions$)
|
|
196
|
+
.sc(schemas_0.DescribeScheduledActions$)
|
|
951
197
|
.build() {
|
|
952
198
|
}
|
|
953
199
|
|
|
@@ -959,7 +205,7 @@ class GetPredictiveScalingForecastCommand extends smithyClient.Command
|
|
|
959
205
|
})
|
|
960
206
|
.s("AnyScaleFrontendService", "GetPredictiveScalingForecast", {})
|
|
961
207
|
.n("ApplicationAutoScalingClient", "GetPredictiveScalingForecastCommand")
|
|
962
|
-
.sc(GetPredictiveScalingForecast$)
|
|
208
|
+
.sc(schemas_0.GetPredictiveScalingForecast$)
|
|
963
209
|
.build() {
|
|
964
210
|
}
|
|
965
211
|
|
|
@@ -971,7 +217,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
971
217
|
})
|
|
972
218
|
.s("AnyScaleFrontendService", "ListTagsForResource", {})
|
|
973
219
|
.n("ApplicationAutoScalingClient", "ListTagsForResourceCommand")
|
|
974
|
-
.sc(ListTagsForResource$)
|
|
220
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
975
221
|
.build() {
|
|
976
222
|
}
|
|
977
223
|
|
|
@@ -983,7 +229,7 @@ class PutScalingPolicyCommand extends smithyClient.Command
|
|
|
983
229
|
})
|
|
984
230
|
.s("AnyScaleFrontendService", "PutScalingPolicy", {})
|
|
985
231
|
.n("ApplicationAutoScalingClient", "PutScalingPolicyCommand")
|
|
986
|
-
.sc(PutScalingPolicy$)
|
|
232
|
+
.sc(schemas_0.PutScalingPolicy$)
|
|
987
233
|
.build() {
|
|
988
234
|
}
|
|
989
235
|
|
|
@@ -995,7 +241,7 @@ class PutScheduledActionCommand extends smithyClient.Command
|
|
|
995
241
|
})
|
|
996
242
|
.s("AnyScaleFrontendService", "PutScheduledAction", {})
|
|
997
243
|
.n("ApplicationAutoScalingClient", "PutScheduledActionCommand")
|
|
998
|
-
.sc(PutScheduledAction$)
|
|
244
|
+
.sc(schemas_0.PutScheduledAction$)
|
|
999
245
|
.build() {
|
|
1000
246
|
}
|
|
1001
247
|
|
|
@@ -1007,7 +253,7 @@ class RegisterScalableTargetCommand extends smithyClient.Command
|
|
|
1007
253
|
})
|
|
1008
254
|
.s("AnyScaleFrontendService", "RegisterScalableTarget", {})
|
|
1009
255
|
.n("ApplicationAutoScalingClient", "RegisterScalableTargetCommand")
|
|
1010
|
-
.sc(RegisterScalableTarget$)
|
|
256
|
+
.sc(schemas_0.RegisterScalableTarget$)
|
|
1011
257
|
.build() {
|
|
1012
258
|
}
|
|
1013
259
|
|
|
@@ -1019,7 +265,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1019
265
|
})
|
|
1020
266
|
.s("AnyScaleFrontendService", "TagResource", {})
|
|
1021
267
|
.n("ApplicationAutoScalingClient", "TagResourceCommand")
|
|
1022
|
-
.sc(TagResource$)
|
|
268
|
+
.sc(schemas_0.TagResource$)
|
|
1023
269
|
.build() {
|
|
1024
270
|
}
|
|
1025
271
|
|
|
@@ -1031,7 +277,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1031
277
|
})
|
|
1032
278
|
.s("AnyScaleFrontendService", "UntagResource", {})
|
|
1033
279
|
.n("ApplicationAutoScalingClient", "UntagResourceCommand")
|
|
1034
|
-
.sc(UntagResource$)
|
|
280
|
+
.sc(schemas_0.UntagResource$)
|
|
1035
281
|
.build() {
|
|
1036
282
|
}
|
|
1037
283
|
|
|
@@ -1190,125 +436,49 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1190
436
|
enumerable: true,
|
|
1191
437
|
get: function () { return smithyClient.Client; }
|
|
1192
438
|
});
|
|
439
|
+
Object.defineProperty(exports, "ApplicationAutoScalingServiceException", {
|
|
440
|
+
enumerable: true,
|
|
441
|
+
get: function () { return ApplicationAutoScalingServiceException.ApplicationAutoScalingServiceException; }
|
|
442
|
+
});
|
|
1193
443
|
exports.AdjustmentType = AdjustmentType;
|
|
1194
|
-
exports.Alarm$ = Alarm$;
|
|
1195
444
|
exports.ApplicationAutoScaling = ApplicationAutoScaling;
|
|
1196
445
|
exports.ApplicationAutoScalingClient = ApplicationAutoScalingClient;
|
|
1197
|
-
exports.ApplicationAutoScalingServiceException = ApplicationAutoScalingServiceException;
|
|
1198
|
-
exports.ApplicationAutoScalingServiceException$ = ApplicationAutoScalingServiceException$;
|
|
1199
|
-
exports.CapacityForecast$ = CapacityForecast$;
|
|
1200
|
-
exports.ConcurrentUpdateException = ConcurrentUpdateException;
|
|
1201
|
-
exports.ConcurrentUpdateException$ = ConcurrentUpdateException$;
|
|
1202
|
-
exports.CustomizedMetricSpecification$ = CustomizedMetricSpecification$;
|
|
1203
|
-
exports.DeleteScalingPolicy$ = DeleteScalingPolicy$;
|
|
1204
446
|
exports.DeleteScalingPolicyCommand = DeleteScalingPolicyCommand;
|
|
1205
|
-
exports.DeleteScalingPolicyRequest$ = DeleteScalingPolicyRequest$;
|
|
1206
|
-
exports.DeleteScalingPolicyResponse$ = DeleteScalingPolicyResponse$;
|
|
1207
|
-
exports.DeleteScheduledAction$ = DeleteScheduledAction$;
|
|
1208
447
|
exports.DeleteScheduledActionCommand = DeleteScheduledActionCommand;
|
|
1209
|
-
exports.DeleteScheduledActionRequest$ = DeleteScheduledActionRequest$;
|
|
1210
|
-
exports.DeleteScheduledActionResponse$ = DeleteScheduledActionResponse$;
|
|
1211
|
-
exports.DeregisterScalableTarget$ = DeregisterScalableTarget$;
|
|
1212
448
|
exports.DeregisterScalableTargetCommand = DeregisterScalableTargetCommand;
|
|
1213
|
-
exports.DeregisterScalableTargetRequest$ = DeregisterScalableTargetRequest$;
|
|
1214
|
-
exports.DeregisterScalableTargetResponse$ = DeregisterScalableTargetResponse$;
|
|
1215
|
-
exports.DescribeScalableTargets$ = DescribeScalableTargets$;
|
|
1216
449
|
exports.DescribeScalableTargetsCommand = DescribeScalableTargetsCommand;
|
|
1217
|
-
exports.DescribeScalableTargetsRequest$ = DescribeScalableTargetsRequest$;
|
|
1218
|
-
exports.DescribeScalableTargetsResponse$ = DescribeScalableTargetsResponse$;
|
|
1219
|
-
exports.DescribeScalingActivities$ = DescribeScalingActivities$;
|
|
1220
450
|
exports.DescribeScalingActivitiesCommand = DescribeScalingActivitiesCommand;
|
|
1221
|
-
exports.DescribeScalingActivitiesRequest$ = DescribeScalingActivitiesRequest$;
|
|
1222
|
-
exports.DescribeScalingActivitiesResponse$ = DescribeScalingActivitiesResponse$;
|
|
1223
|
-
exports.DescribeScalingPolicies$ = DescribeScalingPolicies$;
|
|
1224
451
|
exports.DescribeScalingPoliciesCommand = DescribeScalingPoliciesCommand;
|
|
1225
|
-
exports.DescribeScalingPoliciesRequest$ = DescribeScalingPoliciesRequest$;
|
|
1226
|
-
exports.DescribeScalingPoliciesResponse$ = DescribeScalingPoliciesResponse$;
|
|
1227
|
-
exports.DescribeScheduledActions$ = DescribeScheduledActions$;
|
|
1228
452
|
exports.DescribeScheduledActionsCommand = DescribeScheduledActionsCommand;
|
|
1229
|
-
exports.DescribeScheduledActionsRequest$ = DescribeScheduledActionsRequest$;
|
|
1230
|
-
exports.DescribeScheduledActionsResponse$ = DescribeScheduledActionsResponse$;
|
|
1231
|
-
exports.FailedResourceAccessException = FailedResourceAccessException;
|
|
1232
|
-
exports.FailedResourceAccessException$ = FailedResourceAccessException$;
|
|
1233
|
-
exports.GetPredictiveScalingForecast$ = GetPredictiveScalingForecast$;
|
|
1234
453
|
exports.GetPredictiveScalingForecastCommand = GetPredictiveScalingForecastCommand;
|
|
1235
|
-
exports.GetPredictiveScalingForecastRequest$ = GetPredictiveScalingForecastRequest$;
|
|
1236
|
-
exports.GetPredictiveScalingForecastResponse$ = GetPredictiveScalingForecastResponse$;
|
|
1237
|
-
exports.InternalServiceException = InternalServiceException;
|
|
1238
|
-
exports.InternalServiceException$ = InternalServiceException$;
|
|
1239
|
-
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
1240
|
-
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
1241
|
-
exports.LimitExceededException = LimitExceededException;
|
|
1242
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
1243
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1244
454
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1245
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1246
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1247
|
-
exports.LoadForecast$ = LoadForecast$;
|
|
1248
455
|
exports.MetricAggregationType = MetricAggregationType;
|
|
1249
|
-
exports.MetricDimension$ = MetricDimension$;
|
|
1250
456
|
exports.MetricStatistic = MetricStatistic;
|
|
1251
457
|
exports.MetricType = MetricType;
|
|
1252
|
-
exports.NotScaledReason$ = NotScaledReason$;
|
|
1253
|
-
exports.ObjectNotFoundException = ObjectNotFoundException;
|
|
1254
|
-
exports.ObjectNotFoundException$ = ObjectNotFoundException$;
|
|
1255
458
|
exports.PolicyType = PolicyType;
|
|
1256
|
-
exports.PredefinedMetricSpecification$ = PredefinedMetricSpecification$;
|
|
1257
|
-
exports.PredictiveScalingCustomizedMetricSpecification$ = PredictiveScalingCustomizedMetricSpecification$;
|
|
1258
459
|
exports.PredictiveScalingMaxCapacityBreachBehavior = PredictiveScalingMaxCapacityBreachBehavior;
|
|
1259
|
-
exports.PredictiveScalingMetric$ = PredictiveScalingMetric$;
|
|
1260
|
-
exports.PredictiveScalingMetricDataQuery$ = PredictiveScalingMetricDataQuery$;
|
|
1261
|
-
exports.PredictiveScalingMetricDimension$ = PredictiveScalingMetricDimension$;
|
|
1262
|
-
exports.PredictiveScalingMetricSpecification$ = PredictiveScalingMetricSpecification$;
|
|
1263
|
-
exports.PredictiveScalingMetricStat$ = PredictiveScalingMetricStat$;
|
|
1264
460
|
exports.PredictiveScalingMode = PredictiveScalingMode;
|
|
1265
|
-
exports.PredictiveScalingPolicyConfiguration$ = PredictiveScalingPolicyConfiguration$;
|
|
1266
|
-
exports.PredictiveScalingPredefinedLoadMetricSpecification$ = PredictiveScalingPredefinedLoadMetricSpecification$;
|
|
1267
|
-
exports.PredictiveScalingPredefinedMetricPairSpecification$ = PredictiveScalingPredefinedMetricPairSpecification$;
|
|
1268
|
-
exports.PredictiveScalingPredefinedScalingMetricSpecification$ = PredictiveScalingPredefinedScalingMetricSpecification$;
|
|
1269
|
-
exports.PutScalingPolicy$ = PutScalingPolicy$;
|
|
1270
461
|
exports.PutScalingPolicyCommand = PutScalingPolicyCommand;
|
|
1271
|
-
exports.PutScalingPolicyRequest$ = PutScalingPolicyRequest$;
|
|
1272
|
-
exports.PutScalingPolicyResponse$ = PutScalingPolicyResponse$;
|
|
1273
|
-
exports.PutScheduledAction$ = PutScheduledAction$;
|
|
1274
462
|
exports.PutScheduledActionCommand = PutScheduledActionCommand;
|
|
1275
|
-
exports.PutScheduledActionRequest$ = PutScheduledActionRequest$;
|
|
1276
|
-
exports.PutScheduledActionResponse$ = PutScheduledActionResponse$;
|
|
1277
|
-
exports.RegisterScalableTarget$ = RegisterScalableTarget$;
|
|
1278
463
|
exports.RegisterScalableTargetCommand = RegisterScalableTargetCommand;
|
|
1279
|
-
exports.RegisterScalableTargetRequest$ = RegisterScalableTargetRequest$;
|
|
1280
|
-
exports.RegisterScalableTargetResponse$ = RegisterScalableTargetResponse$;
|
|
1281
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1282
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1283
464
|
exports.ScalableDimension = ScalableDimension;
|
|
1284
|
-
exports.ScalableTarget$ = ScalableTarget$;
|
|
1285
|
-
exports.ScalableTargetAction$ = ScalableTargetAction$;
|
|
1286
|
-
exports.ScalingActivity$ = ScalingActivity$;
|
|
1287
465
|
exports.ScalingActivityStatusCode = ScalingActivityStatusCode;
|
|
1288
|
-
exports.ScalingPolicy$ = ScalingPolicy$;
|
|
1289
|
-
exports.ScheduledAction$ = ScheduledAction$;
|
|
1290
466
|
exports.ServiceNamespace = ServiceNamespace;
|
|
1291
|
-
exports.StepAdjustment$ = StepAdjustment$;
|
|
1292
|
-
exports.StepScalingPolicyConfiguration$ = StepScalingPolicyConfiguration$;
|
|
1293
|
-
exports.SuspendedState$ = SuspendedState$;
|
|
1294
|
-
exports.TagResource$ = TagResource$;
|
|
1295
467
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1296
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1297
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1298
|
-
exports.TargetTrackingMetric$ = TargetTrackingMetric$;
|
|
1299
|
-
exports.TargetTrackingMetricDataQuery$ = TargetTrackingMetricDataQuery$;
|
|
1300
|
-
exports.TargetTrackingMetricDimension$ = TargetTrackingMetricDimension$;
|
|
1301
|
-
exports.TargetTrackingMetricStat$ = TargetTrackingMetricStat$;
|
|
1302
|
-
exports.TargetTrackingScalingPolicyConfiguration$ = TargetTrackingScalingPolicyConfiguration$;
|
|
1303
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
1304
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1305
|
-
exports.UntagResource$ = UntagResource$;
|
|
1306
468
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1307
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1308
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1309
|
-
exports.ValidationException = ValidationException;
|
|
1310
|
-
exports.ValidationException$ = ValidationException$;
|
|
1311
469
|
exports.paginateDescribeScalableTargets = paginateDescribeScalableTargets;
|
|
1312
470
|
exports.paginateDescribeScalingActivities = paginateDescribeScalingActivities;
|
|
1313
471
|
exports.paginateDescribeScalingPolicies = paginateDescribeScalingPolicies;
|
|
1314
472
|
exports.paginateDescribeScheduledActions = paginateDescribeScheduledActions;
|
|
473
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
474
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
475
|
+
enumerable: true,
|
|
476
|
+
get: function () { return schemas_0[k]; }
|
|
477
|
+
});
|
|
478
|
+
});
|
|
479
|
+
Object.keys(errors).forEach(function (k) {
|
|
480
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
481
|
+
enumerable: true,
|
|
482
|
+
get: function () { return errors[k]; }
|
|
483
|
+
});
|
|
484
|
+
});
|