@aws-sdk/client-auto-scaling 3.716.0 → 3.723.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 +404 -369
- package/dist-es/AutoScalingClient.js +1 -0
- package/dist-es/models/models_0.js +20 -20
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -247,7 +247,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
247
247
|
}, "resolveRuntimeExtensions");
|
|
248
248
|
|
|
249
249
|
// src/AutoScalingClient.ts
|
|
250
|
-
var
|
|
250
|
+
var AutoScalingClient = class extends import_smithy_client.Client {
|
|
251
|
+
static {
|
|
252
|
+
__name(this, "AutoScalingClient");
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* The resolved configuration of AutoScalingClient class. This is resolved and normalized from the {@link AutoScalingClientConfig | constructor configuration interface}.
|
|
256
|
+
*/
|
|
257
|
+
config;
|
|
251
258
|
constructor(...[configuration]) {
|
|
252
259
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
253
260
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -257,7 +264,7 @@ var _AutoScalingClient = class _AutoScalingClient extends import_smithy_client.C
|
|
|
257
264
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
258
265
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
259
266
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
260
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
267
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
261
268
|
super(_config_8);
|
|
262
269
|
this.config = _config_8;
|
|
263
270
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -285,8 +292,6 @@ var _AutoScalingClient = class _AutoScalingClient extends import_smithy_client.C
|
|
|
285
292
|
super.destroy();
|
|
286
293
|
}
|
|
287
294
|
};
|
|
288
|
-
__name(_AutoScalingClient, "AutoScalingClient");
|
|
289
|
-
var AutoScalingClient = _AutoScalingClient;
|
|
290
295
|
|
|
291
296
|
// src/AutoScaling.ts
|
|
292
297
|
|
|
@@ -303,7 +308,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
303
308
|
|
|
304
309
|
// src/models/AutoScalingServiceException.ts
|
|
305
310
|
|
|
306
|
-
var
|
|
311
|
+
var AutoScalingServiceException = class _AutoScalingServiceException extends import_smithy_client.ServiceException {
|
|
312
|
+
static {
|
|
313
|
+
__name(this, "AutoScalingServiceException");
|
|
314
|
+
}
|
|
307
315
|
/**
|
|
308
316
|
* @internal
|
|
309
317
|
*/
|
|
@@ -312,8 +320,6 @@ var _AutoScalingServiceException = class _AutoScalingServiceException extends im
|
|
|
312
320
|
Object.setPrototypeOf(this, _AutoScalingServiceException.prototype);
|
|
313
321
|
}
|
|
314
322
|
};
|
|
315
|
-
__name(_AutoScalingServiceException, "AutoScalingServiceException");
|
|
316
|
-
var AutoScalingServiceException = _AutoScalingServiceException;
|
|
317
323
|
|
|
318
324
|
// src/models/models_0.ts
|
|
319
325
|
var AcceleratorManufacturer = {
|
|
@@ -336,7 +342,12 @@ var AcceleratorType = {
|
|
|
336
342
|
GPU: "gpu",
|
|
337
343
|
INFERENCE: "inference"
|
|
338
344
|
};
|
|
339
|
-
var
|
|
345
|
+
var ActiveInstanceRefreshNotFoundFault = class _ActiveInstanceRefreshNotFoundFault extends AutoScalingServiceException {
|
|
346
|
+
static {
|
|
347
|
+
__name(this, "ActiveInstanceRefreshNotFoundFault");
|
|
348
|
+
}
|
|
349
|
+
name = "ActiveInstanceRefreshNotFoundFault";
|
|
350
|
+
$fault = "client";
|
|
340
351
|
/**
|
|
341
352
|
* @internal
|
|
342
353
|
*/
|
|
@@ -346,13 +357,9 @@ var _ActiveInstanceRefreshNotFoundFault = class _ActiveInstanceRefreshNotFoundFa
|
|
|
346
357
|
$fault: "client",
|
|
347
358
|
...opts
|
|
348
359
|
});
|
|
349
|
-
this.name = "ActiveInstanceRefreshNotFoundFault";
|
|
350
|
-
this.$fault = "client";
|
|
351
360
|
Object.setPrototypeOf(this, _ActiveInstanceRefreshNotFoundFault.prototype);
|
|
352
361
|
}
|
|
353
362
|
};
|
|
354
|
-
__name(_ActiveInstanceRefreshNotFoundFault, "ActiveInstanceRefreshNotFoundFault");
|
|
355
|
-
var ActiveInstanceRefreshNotFoundFault = _ActiveInstanceRefreshNotFoundFault;
|
|
356
363
|
var ScalingActivityStatusCode = {
|
|
357
364
|
Cancelled: "Cancelled",
|
|
358
365
|
Failed: "Failed",
|
|
@@ -368,7 +375,12 @@ var ScalingActivityStatusCode = {
|
|
|
368
375
|
WaitingForSpotInstanceId: "WaitingForSpotInstanceId",
|
|
369
376
|
WaitingForSpotInstanceRequestId: "WaitingForSpotInstanceRequestId"
|
|
370
377
|
};
|
|
371
|
-
var
|
|
378
|
+
var AlreadyExistsFault = class _AlreadyExistsFault extends AutoScalingServiceException {
|
|
379
|
+
static {
|
|
380
|
+
__name(this, "AlreadyExistsFault");
|
|
381
|
+
}
|
|
382
|
+
name = "AlreadyExistsFault";
|
|
383
|
+
$fault = "client";
|
|
372
384
|
/**
|
|
373
385
|
* @internal
|
|
374
386
|
*/
|
|
@@ -378,14 +390,15 @@ var _AlreadyExistsFault = class _AlreadyExistsFault extends AutoScalingServiceEx
|
|
|
378
390
|
$fault: "client",
|
|
379
391
|
...opts
|
|
380
392
|
});
|
|
381
|
-
this.name = "AlreadyExistsFault";
|
|
382
|
-
this.$fault = "client";
|
|
383
393
|
Object.setPrototypeOf(this, _AlreadyExistsFault.prototype);
|
|
384
394
|
}
|
|
385
395
|
};
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
396
|
+
var ResourceContentionFault = class _ResourceContentionFault extends AutoScalingServiceException {
|
|
397
|
+
static {
|
|
398
|
+
__name(this, "ResourceContentionFault");
|
|
399
|
+
}
|
|
400
|
+
name = "ResourceContentionFault";
|
|
401
|
+
$fault = "server";
|
|
389
402
|
/**
|
|
390
403
|
* @internal
|
|
391
404
|
*/
|
|
@@ -395,14 +408,15 @@ var _ResourceContentionFault = class _ResourceContentionFault extends AutoScalin
|
|
|
395
408
|
$fault: "server",
|
|
396
409
|
...opts
|
|
397
410
|
});
|
|
398
|
-
this.name = "ResourceContentionFault";
|
|
399
|
-
this.$fault = "server";
|
|
400
411
|
Object.setPrototypeOf(this, _ResourceContentionFault.prototype);
|
|
401
412
|
}
|
|
402
413
|
};
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
414
|
+
var ServiceLinkedRoleFailure = class _ServiceLinkedRoleFailure extends AutoScalingServiceException {
|
|
415
|
+
static {
|
|
416
|
+
__name(this, "ServiceLinkedRoleFailure");
|
|
417
|
+
}
|
|
418
|
+
name = "ServiceLinkedRoleFailure";
|
|
419
|
+
$fault = "server";
|
|
406
420
|
/**
|
|
407
421
|
* @internal
|
|
408
422
|
*/
|
|
@@ -412,14 +426,15 @@ var _ServiceLinkedRoleFailure = class _ServiceLinkedRoleFailure extends AutoScal
|
|
|
412
426
|
$fault: "server",
|
|
413
427
|
...opts
|
|
414
428
|
});
|
|
415
|
-
this.name = "ServiceLinkedRoleFailure";
|
|
416
|
-
this.$fault = "server";
|
|
417
429
|
Object.setPrototypeOf(this, _ServiceLinkedRoleFailure.prototype);
|
|
418
430
|
}
|
|
419
431
|
};
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
432
|
+
var LimitExceededFault = class _LimitExceededFault extends AutoScalingServiceException {
|
|
433
|
+
static {
|
|
434
|
+
__name(this, "LimitExceededFault");
|
|
435
|
+
}
|
|
436
|
+
name = "LimitExceededFault";
|
|
437
|
+
$fault = "client";
|
|
423
438
|
/**
|
|
424
439
|
* @internal
|
|
425
440
|
*/
|
|
@@ -429,13 +444,9 @@ var _LimitExceededFault = class _LimitExceededFault extends AutoScalingServiceEx
|
|
|
429
444
|
$fault: "client",
|
|
430
445
|
...opts
|
|
431
446
|
});
|
|
432
|
-
this.name = "LimitExceededFault";
|
|
433
|
-
this.$fault = "client";
|
|
434
447
|
Object.setPrototypeOf(this, _LimitExceededFault.prototype);
|
|
435
448
|
}
|
|
436
449
|
};
|
|
437
|
-
__name(_LimitExceededFault, "LimitExceededFault");
|
|
438
|
-
var LimitExceededFault = _LimitExceededFault;
|
|
439
450
|
var CapacityDistributionStrategy = {
|
|
440
451
|
BALANCED_BEST_EFFORT: "balanced-best-effort",
|
|
441
452
|
BALANCED_ONLY: "balanced-only"
|
|
@@ -486,7 +497,12 @@ var InstanceMetadataHttpTokensState = {
|
|
|
486
497
|
Optional: "optional",
|
|
487
498
|
Required: "required"
|
|
488
499
|
};
|
|
489
|
-
var
|
|
500
|
+
var ResourceInUseFault = class _ResourceInUseFault extends AutoScalingServiceException {
|
|
501
|
+
static {
|
|
502
|
+
__name(this, "ResourceInUseFault");
|
|
503
|
+
}
|
|
504
|
+
name = "ResourceInUseFault";
|
|
505
|
+
$fault = "client";
|
|
490
506
|
/**
|
|
491
507
|
* @internal
|
|
492
508
|
*/
|
|
@@ -496,14 +512,15 @@ var _ResourceInUseFault = class _ResourceInUseFault extends AutoScalingServiceEx
|
|
|
496
512
|
$fault: "client",
|
|
497
513
|
...opts
|
|
498
514
|
});
|
|
499
|
-
this.name = "ResourceInUseFault";
|
|
500
|
-
this.$fault = "client";
|
|
501
515
|
Object.setPrototypeOf(this, _ResourceInUseFault.prototype);
|
|
502
516
|
}
|
|
503
517
|
};
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
518
|
+
var ScalingActivityInProgressFault = class _ScalingActivityInProgressFault extends AutoScalingServiceException {
|
|
519
|
+
static {
|
|
520
|
+
__name(this, "ScalingActivityInProgressFault");
|
|
521
|
+
}
|
|
522
|
+
name = "ScalingActivityInProgressFault";
|
|
523
|
+
$fault = "client";
|
|
507
524
|
/**
|
|
508
525
|
* @internal
|
|
509
526
|
*/
|
|
@@ -513,13 +530,9 @@ var _ScalingActivityInProgressFault = class _ScalingActivityInProgressFault exte
|
|
|
513
530
|
$fault: "client",
|
|
514
531
|
...opts
|
|
515
532
|
});
|
|
516
|
-
this.name = "ScalingActivityInProgressFault";
|
|
517
|
-
this.$fault = "client";
|
|
518
533
|
Object.setPrototypeOf(this, _ScalingActivityInProgressFault.prototype);
|
|
519
534
|
}
|
|
520
535
|
};
|
|
521
|
-
__name(_ScalingActivityInProgressFault, "ScalingActivityInProgressFault");
|
|
522
|
-
var ScalingActivityInProgressFault = _ScalingActivityInProgressFault;
|
|
523
536
|
var LifecycleState = {
|
|
524
537
|
DETACHED: "Detached",
|
|
525
538
|
DETACHING: "Detaching",
|
|
@@ -553,7 +566,12 @@ var WarmPoolState = {
|
|
|
553
566
|
var WarmPoolStatus = {
|
|
554
567
|
PendingDelete: "PendingDelete"
|
|
555
568
|
};
|
|
556
|
-
var
|
|
569
|
+
var InvalidNextToken = class _InvalidNextToken extends AutoScalingServiceException {
|
|
570
|
+
static {
|
|
571
|
+
__name(this, "InvalidNextToken");
|
|
572
|
+
}
|
|
573
|
+
name = "InvalidNextToken";
|
|
574
|
+
$fault = "client";
|
|
557
575
|
/**
|
|
558
576
|
* @internal
|
|
559
577
|
*/
|
|
@@ -563,13 +581,9 @@ var _InvalidNextToken = class _InvalidNextToken extends AutoScalingServiceExcept
|
|
|
563
581
|
$fault: "client",
|
|
564
582
|
...opts
|
|
565
583
|
});
|
|
566
|
-
this.name = "InvalidNextToken";
|
|
567
|
-
this.$fault = "client";
|
|
568
584
|
Object.setPrototypeOf(this, _InvalidNextToken.prototype);
|
|
569
585
|
}
|
|
570
586
|
};
|
|
571
|
-
__name(_InvalidNextToken, "InvalidNextToken");
|
|
572
|
-
var InvalidNextToken = _InvalidNextToken;
|
|
573
587
|
var ScaleInProtectedInstances = {
|
|
574
588
|
Ignore: "Ignore",
|
|
575
589
|
Refresh: "Refresh",
|
|
@@ -631,7 +645,12 @@ var MetricType = {
|
|
|
631
645
|
ASGAverageNetworkIn: "ASGAverageNetworkIn",
|
|
632
646
|
ASGAverageNetworkOut: "ASGAverageNetworkOut"
|
|
633
647
|
};
|
|
634
|
-
var
|
|
648
|
+
var IrreversibleInstanceRefreshFault = class _IrreversibleInstanceRefreshFault extends AutoScalingServiceException {
|
|
649
|
+
static {
|
|
650
|
+
__name(this, "IrreversibleInstanceRefreshFault");
|
|
651
|
+
}
|
|
652
|
+
name = "IrreversibleInstanceRefreshFault";
|
|
653
|
+
$fault = "client";
|
|
635
654
|
/**
|
|
636
655
|
* @internal
|
|
637
656
|
*/
|
|
@@ -641,14 +660,15 @@ var _IrreversibleInstanceRefreshFault = class _IrreversibleInstanceRefreshFault
|
|
|
641
660
|
$fault: "client",
|
|
642
661
|
...opts
|
|
643
662
|
});
|
|
644
|
-
this.name = "IrreversibleInstanceRefreshFault";
|
|
645
|
-
this.$fault = "client";
|
|
646
663
|
Object.setPrototypeOf(this, _IrreversibleInstanceRefreshFault.prototype);
|
|
647
664
|
}
|
|
648
665
|
};
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
666
|
+
var InstanceRefreshInProgressFault = class _InstanceRefreshInProgressFault extends AutoScalingServiceException {
|
|
667
|
+
static {
|
|
668
|
+
__name(this, "InstanceRefreshInProgressFault");
|
|
669
|
+
}
|
|
670
|
+
name = "InstanceRefreshInProgressFault";
|
|
671
|
+
$fault = "client";
|
|
652
672
|
/**
|
|
653
673
|
* @internal
|
|
654
674
|
*/
|
|
@@ -658,13 +678,9 @@ var _InstanceRefreshInProgressFault = class _InstanceRefreshInProgressFault exte
|
|
|
658
678
|
$fault: "client",
|
|
659
679
|
...opts
|
|
660
680
|
});
|
|
661
|
-
this.name = "InstanceRefreshInProgressFault";
|
|
662
|
-
this.$fault = "client";
|
|
663
681
|
Object.setPrototypeOf(this, _InstanceRefreshInProgressFault.prototype);
|
|
664
682
|
}
|
|
665
683
|
};
|
|
666
|
-
__name(_InstanceRefreshInProgressFault, "InstanceRefreshInProgressFault");
|
|
667
|
-
var InstanceRefreshInProgressFault = _InstanceRefreshInProgressFault;
|
|
668
684
|
var RefreshStrategy = {
|
|
669
685
|
Rolling: "Rolling"
|
|
670
686
|
};
|
|
@@ -2308,11 +2324,10 @@ var se_AlarmList = /* @__PURE__ */ __name((input, context) => {
|
|
|
2308
2324
|
return entries;
|
|
2309
2325
|
}, "se_AlarmList");
|
|
2310
2326
|
var se_AlarmSpecification = /* @__PURE__ */ __name((input, context) => {
|
|
2311
|
-
var _a;
|
|
2312
2327
|
const entries = {};
|
|
2313
2328
|
if (input[_Al] != null) {
|
|
2314
2329
|
const memberEntries = se_AlarmList(input[_Al], context);
|
|
2315
|
-
if (
|
|
2330
|
+
if (input[_Al]?.length === 0) {
|
|
2316
2331
|
entries.Alarms = [];
|
|
2317
2332
|
}
|
|
2318
2333
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2335,11 +2350,10 @@ var se_AllowedInstanceTypes = /* @__PURE__ */ __name((input, context) => {
|
|
|
2335
2350
|
return entries;
|
|
2336
2351
|
}, "se_AllowedInstanceTypes");
|
|
2337
2352
|
var se_AttachInstancesQuery = /* @__PURE__ */ __name((input, context) => {
|
|
2338
|
-
var _a;
|
|
2339
2353
|
const entries = {};
|
|
2340
2354
|
if (input[_II] != null) {
|
|
2341
2355
|
const memberEntries = se_InstanceIds(input[_II], context);
|
|
2342
|
-
if (
|
|
2356
|
+
if (input[_II]?.length === 0) {
|
|
2343
2357
|
entries.InstanceIds = [];
|
|
2344
2358
|
}
|
|
2345
2359
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2353,14 +2367,13 @@ var se_AttachInstancesQuery = /* @__PURE__ */ __name((input, context) => {
|
|
|
2353
2367
|
return entries;
|
|
2354
2368
|
}, "se_AttachInstancesQuery");
|
|
2355
2369
|
var se_AttachLoadBalancersType = /* @__PURE__ */ __name((input, context) => {
|
|
2356
|
-
var _a;
|
|
2357
2370
|
const entries = {};
|
|
2358
2371
|
if (input[_ASGN] != null) {
|
|
2359
2372
|
entries[_ASGN] = input[_ASGN];
|
|
2360
2373
|
}
|
|
2361
2374
|
if (input[_LBN] != null) {
|
|
2362
2375
|
const memberEntries = se_LoadBalancerNames(input[_LBN], context);
|
|
2363
|
-
if (
|
|
2376
|
+
if (input[_LBN]?.length === 0) {
|
|
2364
2377
|
entries.LoadBalancerNames = [];
|
|
2365
2378
|
}
|
|
2366
2379
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2371,14 +2384,13 @@ var se_AttachLoadBalancersType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2371
2384
|
return entries;
|
|
2372
2385
|
}, "se_AttachLoadBalancersType");
|
|
2373
2386
|
var se_AttachLoadBalancerTargetGroupsType = /* @__PURE__ */ __name((input, context) => {
|
|
2374
|
-
var _a;
|
|
2375
2387
|
const entries = {};
|
|
2376
2388
|
if (input[_ASGN] != null) {
|
|
2377
2389
|
entries[_ASGN] = input[_ASGN];
|
|
2378
2390
|
}
|
|
2379
2391
|
if (input[_TGARN] != null) {
|
|
2380
2392
|
const memberEntries = se_TargetGroupARNs(input[_TGARN], context);
|
|
2381
|
-
if (
|
|
2393
|
+
if (input[_TGARN]?.length === 0) {
|
|
2382
2394
|
entries.TargetGroupARNs = [];
|
|
2383
2395
|
}
|
|
2384
2396
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2389,14 +2401,13 @@ var se_AttachLoadBalancerTargetGroupsType = /* @__PURE__ */ __name((input, conte
|
|
|
2389
2401
|
return entries;
|
|
2390
2402
|
}, "se_AttachLoadBalancerTargetGroupsType");
|
|
2391
2403
|
var se_AttachTrafficSourcesType = /* @__PURE__ */ __name((input, context) => {
|
|
2392
|
-
var _a;
|
|
2393
2404
|
const entries = {};
|
|
2394
2405
|
if (input[_ASGN] != null) {
|
|
2395
2406
|
entries[_ASGN] = input[_ASGN];
|
|
2396
2407
|
}
|
|
2397
2408
|
if (input[_TS] != null) {
|
|
2398
2409
|
const memberEntries = se_TrafficSources(input[_TS], context);
|
|
2399
|
-
if (
|
|
2410
|
+
if (input[_TS]?.length === 0) {
|
|
2400
2411
|
entries.TrafficSources = [];
|
|
2401
2412
|
}
|
|
2402
2413
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2422,11 +2433,10 @@ var se_AutoScalingGroupNames = /* @__PURE__ */ __name((input, context) => {
|
|
|
2422
2433
|
return entries;
|
|
2423
2434
|
}, "se_AutoScalingGroupNames");
|
|
2424
2435
|
var se_AutoScalingGroupNamesType = /* @__PURE__ */ __name((input, context) => {
|
|
2425
|
-
var _a, _b;
|
|
2426
2436
|
const entries = {};
|
|
2427
2437
|
if (input[_ASGNu] != null) {
|
|
2428
2438
|
const memberEntries = se_AutoScalingGroupNames(input[_ASGNu], context);
|
|
2429
|
-
if (
|
|
2439
|
+
if (input[_ASGNu]?.length === 0) {
|
|
2430
2440
|
entries.AutoScalingGroupNames = [];
|
|
2431
2441
|
}
|
|
2432
2442
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2442,7 +2452,7 @@ var se_AutoScalingGroupNamesType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2442
2452
|
}
|
|
2443
2453
|
if (input[_F] != null) {
|
|
2444
2454
|
const memberEntries = se_Filters(input[_F], context);
|
|
2445
|
-
if (
|
|
2455
|
+
if (input[_F]?.length === 0) {
|
|
2446
2456
|
entries.Filters = [];
|
|
2447
2457
|
}
|
|
2448
2458
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2515,14 +2525,13 @@ var se_BaselinePerformanceFactorsRequest = /* @__PURE__ */ __name((input, contex
|
|
|
2515
2525
|
return entries;
|
|
2516
2526
|
}, "se_BaselinePerformanceFactorsRequest");
|
|
2517
2527
|
var se_BatchDeleteScheduledActionType = /* @__PURE__ */ __name((input, context) => {
|
|
2518
|
-
var _a;
|
|
2519
2528
|
const entries = {};
|
|
2520
2529
|
if (input[_ASGN] != null) {
|
|
2521
2530
|
entries[_ASGN] = input[_ASGN];
|
|
2522
2531
|
}
|
|
2523
2532
|
if (input[_SAN] != null) {
|
|
2524
2533
|
const memberEntries = se_ScheduledActionNames(input[_SAN], context);
|
|
2525
|
-
if (
|
|
2534
|
+
if (input[_SAN]?.length === 0) {
|
|
2526
2535
|
entries.ScheduledActionNames = [];
|
|
2527
2536
|
}
|
|
2528
2537
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2533,14 +2542,13 @@ var se_BatchDeleteScheduledActionType = /* @__PURE__ */ __name((input, context)
|
|
|
2533
2542
|
return entries;
|
|
2534
2543
|
}, "se_BatchDeleteScheduledActionType");
|
|
2535
2544
|
var se_BatchPutScheduledUpdateGroupActionType = /* @__PURE__ */ __name((input, context) => {
|
|
2536
|
-
var _a;
|
|
2537
2545
|
const entries = {};
|
|
2538
2546
|
if (input[_ASGN] != null) {
|
|
2539
2547
|
entries[_ASGN] = input[_ASGN];
|
|
2540
2548
|
}
|
|
2541
2549
|
if (input[_SUGA] != null) {
|
|
2542
2550
|
const memberEntries = se_ScheduledUpdateGroupActionRequests(input[_SUGA], context);
|
|
2543
|
-
if (
|
|
2551
|
+
if (input[_SUGA]?.length === 0) {
|
|
2544
2552
|
entries.ScheduledUpdateGroupActions = [];
|
|
2545
2553
|
}
|
|
2546
2554
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2631,11 +2639,10 @@ var se_CapacityReservationSpecification = /* @__PURE__ */ __name((input, context
|
|
|
2631
2639
|
return entries;
|
|
2632
2640
|
}, "se_CapacityReservationSpecification");
|
|
2633
2641
|
var se_CapacityReservationTarget = /* @__PURE__ */ __name((input, context) => {
|
|
2634
|
-
var _a, _b;
|
|
2635
2642
|
const entries = {};
|
|
2636
2643
|
if (input[_CRI] != null) {
|
|
2637
2644
|
const memberEntries = se_CapacityReservationIds(input[_CRI], context);
|
|
2638
|
-
if (
|
|
2645
|
+
if (input[_CRI]?.length === 0) {
|
|
2639
2646
|
entries.CapacityReservationIds = [];
|
|
2640
2647
|
}
|
|
2641
2648
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2645,7 +2652,7 @@ var se_CapacityReservationTarget = /* @__PURE__ */ __name((input, context) => {
|
|
|
2645
2652
|
}
|
|
2646
2653
|
if (input[_CRRGA] != null) {
|
|
2647
2654
|
const memberEntries = se_CapacityReservationResourceGroupArns(input[_CRRGA], context);
|
|
2648
|
-
if (
|
|
2655
|
+
if (input[_CRRGA]?.length === 0) {
|
|
2649
2656
|
entries.CapacityReservationResourceGroupArns = [];
|
|
2650
2657
|
}
|
|
2651
2658
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2711,11 +2718,10 @@ var se_CpuManufacturers = /* @__PURE__ */ __name((input, context) => {
|
|
|
2711
2718
|
return entries;
|
|
2712
2719
|
}, "se_CpuManufacturers");
|
|
2713
2720
|
var se_CpuPerformanceFactorRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2714
|
-
var _a;
|
|
2715
2721
|
const entries = {};
|
|
2716
2722
|
if (input[_R] != null) {
|
|
2717
2723
|
const memberEntries = se_PerformanceFactorReferenceSetRequest(input[_R], context);
|
|
2718
|
-
if (
|
|
2724
|
+
if (input[_R]?.length === 0) {
|
|
2719
2725
|
entries.Reference = [];
|
|
2720
2726
|
}
|
|
2721
2727
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2726,7 +2732,6 @@ var se_CpuPerformanceFactorRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
2726
2732
|
return entries;
|
|
2727
2733
|
}, "se_CpuPerformanceFactorRequest");
|
|
2728
2734
|
var se_CreateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
2729
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
|
2730
2735
|
const entries = {};
|
|
2731
2736
|
if (input[_ASGN] != null) {
|
|
2732
2737
|
entries[_ASGN] = input[_ASGN];
|
|
@@ -2765,7 +2770,7 @@ var se_CreateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2765
2770
|
}
|
|
2766
2771
|
if (input[_AZ] != null) {
|
|
2767
2772
|
const memberEntries = se_AvailabilityZones(input[_AZ], context);
|
|
2768
|
-
if (
|
|
2773
|
+
if (input[_AZ]?.length === 0) {
|
|
2769
2774
|
entries.AvailabilityZones = [];
|
|
2770
2775
|
}
|
|
2771
2776
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2775,7 +2780,7 @@ var se_CreateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2775
2780
|
}
|
|
2776
2781
|
if (input[_LBN] != null) {
|
|
2777
2782
|
const memberEntries = se_LoadBalancerNames(input[_LBN], context);
|
|
2778
|
-
if (
|
|
2783
|
+
if (input[_LBN]?.length === 0) {
|
|
2779
2784
|
entries.LoadBalancerNames = [];
|
|
2780
2785
|
}
|
|
2781
2786
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2785,7 +2790,7 @@ var se_CreateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2785
2790
|
}
|
|
2786
2791
|
if (input[_TGARN] != null) {
|
|
2787
2792
|
const memberEntries = se_TargetGroupARNs(input[_TGARN], context);
|
|
2788
|
-
if (
|
|
2793
|
+
if (input[_TGARN]?.length === 0) {
|
|
2789
2794
|
entries.TargetGroupARNs = [];
|
|
2790
2795
|
}
|
|
2791
2796
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2807,7 +2812,7 @@ var se_CreateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2807
2812
|
}
|
|
2808
2813
|
if (input[_TP] != null) {
|
|
2809
2814
|
const memberEntries = se_TerminationPolicies(input[_TP], context);
|
|
2810
|
-
if (
|
|
2815
|
+
if (input[_TP]?.length === 0) {
|
|
2811
2816
|
entries.TerminationPolicies = [];
|
|
2812
2817
|
}
|
|
2813
2818
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2823,7 +2828,7 @@ var se_CreateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2823
2828
|
}
|
|
2824
2829
|
if (input[_LHSL] != null) {
|
|
2825
2830
|
const memberEntries = se_LifecycleHookSpecifications(input[_LHSL], context);
|
|
2826
|
-
if (
|
|
2831
|
+
if (input[_LHSL]?.length === 0) {
|
|
2827
2832
|
entries.LifecycleHookSpecificationList = [];
|
|
2828
2833
|
}
|
|
2829
2834
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2833,7 +2838,7 @@ var se_CreateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2833
2838
|
}
|
|
2834
2839
|
if (input[_T] != null) {
|
|
2835
2840
|
const memberEntries = se_Tags(input[_T], context);
|
|
2836
|
-
if (
|
|
2841
|
+
if (input[_T]?.length === 0) {
|
|
2837
2842
|
entries.Tags = [];
|
|
2838
2843
|
}
|
|
2839
2844
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2858,7 +2863,7 @@ var se_CreateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2858
2863
|
}
|
|
2859
2864
|
if (input[_TS] != null) {
|
|
2860
2865
|
const memberEntries = se_TrafficSources(input[_TS], context);
|
|
2861
|
-
if (
|
|
2866
|
+
if (input[_TS]?.length === 0) {
|
|
2862
2867
|
entries.TrafficSources = [];
|
|
2863
2868
|
}
|
|
2864
2869
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2900,7 +2905,6 @@ var se_CreateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
2900
2905
|
return entries;
|
|
2901
2906
|
}, "se_CreateAutoScalingGroupType");
|
|
2902
2907
|
var se_CreateLaunchConfigurationType = /* @__PURE__ */ __name((input, context) => {
|
|
2903
|
-
var _a, _b, _c;
|
|
2904
2908
|
const entries = {};
|
|
2905
2909
|
if (input[_LCN] != null) {
|
|
2906
2910
|
entries[_LCN] = input[_LCN];
|
|
@@ -2913,7 +2917,7 @@ var se_CreateLaunchConfigurationType = /* @__PURE__ */ __name((input, context) =
|
|
|
2913
2917
|
}
|
|
2914
2918
|
if (input[_SG] != null) {
|
|
2915
2919
|
const memberEntries = se_SecurityGroups(input[_SG], context);
|
|
2916
|
-
if (
|
|
2920
|
+
if (input[_SG]?.length === 0) {
|
|
2917
2921
|
entries.SecurityGroups = [];
|
|
2918
2922
|
}
|
|
2919
2923
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2926,7 +2930,7 @@ var se_CreateLaunchConfigurationType = /* @__PURE__ */ __name((input, context) =
|
|
|
2926
2930
|
}
|
|
2927
2931
|
if (input[_CLVPCSG] != null) {
|
|
2928
2932
|
const memberEntries = se_ClassicLinkVPCSecurityGroups(input[_CLVPCSG], context);
|
|
2929
|
-
if (
|
|
2933
|
+
if (input[_CLVPCSG]?.length === 0) {
|
|
2930
2934
|
entries.ClassicLinkVPCSecurityGroups = [];
|
|
2931
2935
|
}
|
|
2932
2936
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2951,7 +2955,7 @@ var se_CreateLaunchConfigurationType = /* @__PURE__ */ __name((input, context) =
|
|
|
2951
2955
|
}
|
|
2952
2956
|
if (input[_BDM] != null) {
|
|
2953
2957
|
const memberEntries = se_BlockDeviceMappings(input[_BDM], context);
|
|
2954
|
-
if (
|
|
2958
|
+
if (input[_BDM]?.length === 0) {
|
|
2955
2959
|
entries.BlockDeviceMappings = [];
|
|
2956
2960
|
}
|
|
2957
2961
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2991,11 +2995,10 @@ var se_CreateLaunchConfigurationType = /* @__PURE__ */ __name((input, context) =
|
|
|
2991
2995
|
return entries;
|
|
2992
2996
|
}, "se_CreateLaunchConfigurationType");
|
|
2993
2997
|
var se_CreateOrUpdateTagsType = /* @__PURE__ */ __name((input, context) => {
|
|
2994
|
-
var _a;
|
|
2995
2998
|
const entries = {};
|
|
2996
2999
|
if (input[_T] != null) {
|
|
2997
3000
|
const memberEntries = se_Tags(input[_T], context);
|
|
2998
|
-
if (
|
|
3001
|
+
if (input[_T]?.length === 0) {
|
|
2999
3002
|
entries.Tags = [];
|
|
3000
3003
|
}
|
|
3001
3004
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3006,7 +3009,6 @@ var se_CreateOrUpdateTagsType = /* @__PURE__ */ __name((input, context) => {
|
|
|
3006
3009
|
return entries;
|
|
3007
3010
|
}, "se_CreateOrUpdateTagsType");
|
|
3008
3011
|
var se_CustomizedMetricSpecification = /* @__PURE__ */ __name((input, context) => {
|
|
3009
|
-
var _a, _b;
|
|
3010
3012
|
const entries = {};
|
|
3011
3013
|
if (input[_MN] != null) {
|
|
3012
3014
|
entries[_MN] = input[_MN];
|
|
@@ -3016,7 +3018,7 @@ var se_CustomizedMetricSpecification = /* @__PURE__ */ __name((input, context) =
|
|
|
3016
3018
|
}
|
|
3017
3019
|
if (input[_D] != null) {
|
|
3018
3020
|
const memberEntries = se_MetricDimensions(input[_D], context);
|
|
3019
|
-
if (
|
|
3021
|
+
if (input[_D]?.length === 0) {
|
|
3020
3022
|
entries.Dimensions = [];
|
|
3021
3023
|
}
|
|
3022
3024
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3035,7 +3037,7 @@ var se_CustomizedMetricSpecification = /* @__PURE__ */ __name((input, context) =
|
|
|
3035
3037
|
}
|
|
3036
3038
|
if (input[_Me] != null) {
|
|
3037
3039
|
const memberEntries = se_TargetTrackingMetricDataQueries(input[_Me], context);
|
|
3038
|
-
if (
|
|
3040
|
+
if (input[_Me]?.length === 0) {
|
|
3039
3041
|
entries.Metrics = [];
|
|
3040
3042
|
}
|
|
3041
3043
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3096,11 +3098,10 @@ var se_DeleteScheduledActionType = /* @__PURE__ */ __name((input, context) => {
|
|
|
3096
3098
|
return entries;
|
|
3097
3099
|
}, "se_DeleteScheduledActionType");
|
|
3098
3100
|
var se_DeleteTagsType = /* @__PURE__ */ __name((input, context) => {
|
|
3099
|
-
var _a;
|
|
3100
3101
|
const entries = {};
|
|
3101
3102
|
if (input[_T] != null) {
|
|
3102
3103
|
const memberEntries = se_Tags(input[_T], context);
|
|
3103
|
-
if (
|
|
3104
|
+
if (input[_T]?.length === 0) {
|
|
3104
3105
|
entries.Tags = [];
|
|
3105
3106
|
}
|
|
3106
3107
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3121,11 +3122,10 @@ var se_DeleteWarmPoolType = /* @__PURE__ */ __name((input, context) => {
|
|
|
3121
3122
|
return entries;
|
|
3122
3123
|
}, "se_DeleteWarmPoolType");
|
|
3123
3124
|
var se_DescribeAutoScalingInstancesType = /* @__PURE__ */ __name((input, context) => {
|
|
3124
|
-
var _a;
|
|
3125
3125
|
const entries = {};
|
|
3126
3126
|
if (input[_II] != null) {
|
|
3127
3127
|
const memberEntries = se_InstanceIds(input[_II], context);
|
|
3128
|
-
if (
|
|
3128
|
+
if (input[_II]?.length === 0) {
|
|
3129
3129
|
entries.InstanceIds = [];
|
|
3130
3130
|
}
|
|
3131
3131
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3142,14 +3142,13 @@ var se_DescribeAutoScalingInstancesType = /* @__PURE__ */ __name((input, context
|
|
|
3142
3142
|
return entries;
|
|
3143
3143
|
}, "se_DescribeAutoScalingInstancesType");
|
|
3144
3144
|
var se_DescribeInstanceRefreshesType = /* @__PURE__ */ __name((input, context) => {
|
|
3145
|
-
var _a;
|
|
3146
3145
|
const entries = {};
|
|
3147
3146
|
if (input[_ASGN] != null) {
|
|
3148
3147
|
entries[_ASGN] = input[_ASGN];
|
|
3149
3148
|
}
|
|
3150
3149
|
if (input[_IRI] != null) {
|
|
3151
3150
|
const memberEntries = se_InstanceRefreshIds(input[_IRI], context);
|
|
3152
|
-
if (
|
|
3151
|
+
if (input[_IRI]?.length === 0) {
|
|
3153
3152
|
entries.InstanceRefreshIds = [];
|
|
3154
3153
|
}
|
|
3155
3154
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3166,14 +3165,13 @@ var se_DescribeInstanceRefreshesType = /* @__PURE__ */ __name((input, context) =
|
|
|
3166
3165
|
return entries;
|
|
3167
3166
|
}, "se_DescribeInstanceRefreshesType");
|
|
3168
3167
|
var se_DescribeLifecycleHooksType = /* @__PURE__ */ __name((input, context) => {
|
|
3169
|
-
var _a;
|
|
3170
3168
|
const entries = {};
|
|
3171
3169
|
if (input[_ASGN] != null) {
|
|
3172
3170
|
entries[_ASGN] = input[_ASGN];
|
|
3173
3171
|
}
|
|
3174
3172
|
if (input[_LHNi] != null) {
|
|
3175
3173
|
const memberEntries = se_LifecycleHookNames(input[_LHNi], context);
|
|
3176
|
-
if (
|
|
3174
|
+
if (input[_LHNi]?.length === 0) {
|
|
3177
3175
|
entries.LifecycleHookNames = [];
|
|
3178
3176
|
}
|
|
3179
3177
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3210,11 +3208,10 @@ var se_DescribeLoadBalancerTargetGroupsRequest = /* @__PURE__ */ __name((input,
|
|
|
3210
3208
|
return entries;
|
|
3211
3209
|
}, "se_DescribeLoadBalancerTargetGroupsRequest");
|
|
3212
3210
|
var se_DescribeNotificationConfigurationsType = /* @__PURE__ */ __name((input, context) => {
|
|
3213
|
-
var _a;
|
|
3214
3211
|
const entries = {};
|
|
3215
3212
|
if (input[_ASGNu] != null) {
|
|
3216
3213
|
const memberEntries = se_AutoScalingGroupNames(input[_ASGNu], context);
|
|
3217
|
-
if (
|
|
3214
|
+
if (input[_ASGNu]?.length === 0) {
|
|
3218
3215
|
entries.AutoScalingGroupNames = [];
|
|
3219
3216
|
}
|
|
3220
3217
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3231,14 +3228,13 @@ var se_DescribeNotificationConfigurationsType = /* @__PURE__ */ __name((input, c
|
|
|
3231
3228
|
return entries;
|
|
3232
3229
|
}, "se_DescribeNotificationConfigurationsType");
|
|
3233
3230
|
var se_DescribePoliciesType = /* @__PURE__ */ __name((input, context) => {
|
|
3234
|
-
var _a, _b;
|
|
3235
3231
|
const entries = {};
|
|
3236
3232
|
if (input[_ASGN] != null) {
|
|
3237
3233
|
entries[_ASGN] = input[_ASGN];
|
|
3238
3234
|
}
|
|
3239
3235
|
if (input[_PNo] != null) {
|
|
3240
3236
|
const memberEntries = se_PolicyNames(input[_PNo], context);
|
|
3241
|
-
if (
|
|
3237
|
+
if (input[_PNo]?.length === 0) {
|
|
3242
3238
|
entries.PolicyNames = [];
|
|
3243
3239
|
}
|
|
3244
3240
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3248,7 +3244,7 @@ var se_DescribePoliciesType = /* @__PURE__ */ __name((input, context) => {
|
|
|
3248
3244
|
}
|
|
3249
3245
|
if (input[_PTo] != null) {
|
|
3250
3246
|
const memberEntries = se_PolicyTypes(input[_PTo], context);
|
|
3251
|
-
if (
|
|
3247
|
+
if (input[_PTo]?.length === 0) {
|
|
3252
3248
|
entries.PolicyTypes = [];
|
|
3253
3249
|
}
|
|
3254
3250
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3265,11 +3261,10 @@ var se_DescribePoliciesType = /* @__PURE__ */ __name((input, context) => {
|
|
|
3265
3261
|
return entries;
|
|
3266
3262
|
}, "se_DescribePoliciesType");
|
|
3267
3263
|
var se_DescribeScalingActivitiesType = /* @__PURE__ */ __name((input, context) => {
|
|
3268
|
-
var _a;
|
|
3269
3264
|
const entries = {};
|
|
3270
3265
|
if (input[_AIc] != null) {
|
|
3271
3266
|
const memberEntries = se_ActivityIds(input[_AIc], context);
|
|
3272
|
-
if (
|
|
3267
|
+
if (input[_AIc]?.length === 0) {
|
|
3273
3268
|
entries.ActivityIds = [];
|
|
3274
3269
|
}
|
|
3275
3270
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3292,14 +3287,13 @@ var se_DescribeScalingActivitiesType = /* @__PURE__ */ __name((input, context) =
|
|
|
3292
3287
|
return entries;
|
|
3293
3288
|
}, "se_DescribeScalingActivitiesType");
|
|
3294
3289
|
var se_DescribeScheduledActionsType = /* @__PURE__ */ __name((input, context) => {
|
|
3295
|
-
var _a;
|
|
3296
3290
|
const entries = {};
|
|
3297
3291
|
if (input[_ASGN] != null) {
|
|
3298
3292
|
entries[_ASGN] = input[_ASGN];
|
|
3299
3293
|
}
|
|
3300
3294
|
if (input[_SAN] != null) {
|
|
3301
3295
|
const memberEntries = se_ScheduledActionNames(input[_SAN], context);
|
|
3302
|
-
if (
|
|
3296
|
+
if (input[_SAN]?.length === 0) {
|
|
3303
3297
|
entries.ScheduledActionNames = [];
|
|
3304
3298
|
}
|
|
3305
3299
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3322,11 +3316,10 @@ var se_DescribeScheduledActionsType = /* @__PURE__ */ __name((input, context) =>
|
|
|
3322
3316
|
return entries;
|
|
3323
3317
|
}, "se_DescribeScheduledActionsType");
|
|
3324
3318
|
var se_DescribeTagsType = /* @__PURE__ */ __name((input, context) => {
|
|
3325
|
-
var _a;
|
|
3326
3319
|
const entries = {};
|
|
3327
3320
|
if (input[_F] != null) {
|
|
3328
3321
|
const memberEntries = se_Filters(input[_F], context);
|
|
3329
|
-
if (
|
|
3322
|
+
if (input[_F]?.length === 0) {
|
|
3330
3323
|
entries.Filters = [];
|
|
3331
3324
|
}
|
|
3332
3325
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3390,11 +3383,10 @@ var se_DesiredConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
|
3390
3383
|
return entries;
|
|
3391
3384
|
}, "se_DesiredConfiguration");
|
|
3392
3385
|
var se_DetachInstancesQuery = /* @__PURE__ */ __name((input, context) => {
|
|
3393
|
-
var _a;
|
|
3394
3386
|
const entries = {};
|
|
3395
3387
|
if (input[_II] != null) {
|
|
3396
3388
|
const memberEntries = se_InstanceIds(input[_II], context);
|
|
3397
|
-
if (
|
|
3389
|
+
if (input[_II]?.length === 0) {
|
|
3398
3390
|
entries.InstanceIds = [];
|
|
3399
3391
|
}
|
|
3400
3392
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3411,14 +3403,13 @@ var se_DetachInstancesQuery = /* @__PURE__ */ __name((input, context) => {
|
|
|
3411
3403
|
return entries;
|
|
3412
3404
|
}, "se_DetachInstancesQuery");
|
|
3413
3405
|
var se_DetachLoadBalancersType = /* @__PURE__ */ __name((input, context) => {
|
|
3414
|
-
var _a;
|
|
3415
3406
|
const entries = {};
|
|
3416
3407
|
if (input[_ASGN] != null) {
|
|
3417
3408
|
entries[_ASGN] = input[_ASGN];
|
|
3418
3409
|
}
|
|
3419
3410
|
if (input[_LBN] != null) {
|
|
3420
3411
|
const memberEntries = se_LoadBalancerNames(input[_LBN], context);
|
|
3421
|
-
if (
|
|
3412
|
+
if (input[_LBN]?.length === 0) {
|
|
3422
3413
|
entries.LoadBalancerNames = [];
|
|
3423
3414
|
}
|
|
3424
3415
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3429,14 +3420,13 @@ var se_DetachLoadBalancersType = /* @__PURE__ */ __name((input, context) => {
|
|
|
3429
3420
|
return entries;
|
|
3430
3421
|
}, "se_DetachLoadBalancersType");
|
|
3431
3422
|
var se_DetachLoadBalancerTargetGroupsType = /* @__PURE__ */ __name((input, context) => {
|
|
3432
|
-
var _a;
|
|
3433
3423
|
const entries = {};
|
|
3434
3424
|
if (input[_ASGN] != null) {
|
|
3435
3425
|
entries[_ASGN] = input[_ASGN];
|
|
3436
3426
|
}
|
|
3437
3427
|
if (input[_TGARN] != null) {
|
|
3438
3428
|
const memberEntries = se_TargetGroupARNs(input[_TGARN], context);
|
|
3439
|
-
if (
|
|
3429
|
+
if (input[_TGARN]?.length === 0) {
|
|
3440
3430
|
entries.TargetGroupARNs = [];
|
|
3441
3431
|
}
|
|
3442
3432
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3447,14 +3437,13 @@ var se_DetachLoadBalancerTargetGroupsType = /* @__PURE__ */ __name((input, conte
|
|
|
3447
3437
|
return entries;
|
|
3448
3438
|
}, "se_DetachLoadBalancerTargetGroupsType");
|
|
3449
3439
|
var se_DetachTrafficSourcesType = /* @__PURE__ */ __name((input, context) => {
|
|
3450
|
-
var _a;
|
|
3451
3440
|
const entries = {};
|
|
3452
3441
|
if (input[_ASGN] != null) {
|
|
3453
3442
|
entries[_ASGN] = input[_ASGN];
|
|
3454
3443
|
}
|
|
3455
3444
|
if (input[_TS] != null) {
|
|
3456
3445
|
const memberEntries = se_TrafficSources(input[_TS], context);
|
|
3457
|
-
if (
|
|
3446
|
+
if (input[_TS]?.length === 0) {
|
|
3458
3447
|
entries.TrafficSources = [];
|
|
3459
3448
|
}
|
|
3460
3449
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3465,14 +3454,13 @@ var se_DetachTrafficSourcesType = /* @__PURE__ */ __name((input, context) => {
|
|
|
3465
3454
|
return entries;
|
|
3466
3455
|
}, "se_DetachTrafficSourcesType");
|
|
3467
3456
|
var se_DisableMetricsCollectionQuery = /* @__PURE__ */ __name((input, context) => {
|
|
3468
|
-
var _a;
|
|
3469
3457
|
const entries = {};
|
|
3470
3458
|
if (input[_ASGN] != null) {
|
|
3471
3459
|
entries[_ASGN] = input[_ASGN];
|
|
3472
3460
|
}
|
|
3473
3461
|
if (input[_Me] != null) {
|
|
3474
3462
|
const memberEntries = se_Metrics(input[_Me], context);
|
|
3475
|
-
if (
|
|
3463
|
+
if (input[_Me]?.length === 0) {
|
|
3476
3464
|
entries.Metrics = [];
|
|
3477
3465
|
}
|
|
3478
3466
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3508,14 +3496,13 @@ var se_Ebs = /* @__PURE__ */ __name((input, context) => {
|
|
|
3508
3496
|
return entries;
|
|
3509
3497
|
}, "se_Ebs");
|
|
3510
3498
|
var se_EnableMetricsCollectionQuery = /* @__PURE__ */ __name((input, context) => {
|
|
3511
|
-
var _a;
|
|
3512
3499
|
const entries = {};
|
|
3513
3500
|
if (input[_ASGN] != null) {
|
|
3514
3501
|
entries[_ASGN] = input[_ASGN];
|
|
3515
3502
|
}
|
|
3516
3503
|
if (input[_Me] != null) {
|
|
3517
3504
|
const memberEntries = se_Metrics(input[_Me], context);
|
|
3518
|
-
if (
|
|
3505
|
+
if (input[_Me]?.length === 0) {
|
|
3519
3506
|
entries.Metrics = [];
|
|
3520
3507
|
}
|
|
3521
3508
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3529,11 +3516,10 @@ var se_EnableMetricsCollectionQuery = /* @__PURE__ */ __name((input, context) =>
|
|
|
3529
3516
|
return entries;
|
|
3530
3517
|
}, "se_EnableMetricsCollectionQuery");
|
|
3531
3518
|
var se_EnterStandbyQuery = /* @__PURE__ */ __name((input, context) => {
|
|
3532
|
-
var _a;
|
|
3533
3519
|
const entries = {};
|
|
3534
3520
|
if (input[_II] != null) {
|
|
3535
3521
|
const memberEntries = se_InstanceIds(input[_II], context);
|
|
3536
|
-
if (
|
|
3522
|
+
if (input[_II]?.length === 0) {
|
|
3537
3523
|
entries.InstanceIds = [];
|
|
3538
3524
|
}
|
|
3539
3525
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3581,11 +3567,10 @@ var se_ExecutePolicyType = /* @__PURE__ */ __name((input, context) => {
|
|
|
3581
3567
|
return entries;
|
|
3582
3568
|
}, "se_ExecutePolicyType");
|
|
3583
3569
|
var se_ExitStandbyQuery = /* @__PURE__ */ __name((input, context) => {
|
|
3584
|
-
var _a;
|
|
3585
3570
|
const entries = {};
|
|
3586
3571
|
if (input[_II] != null) {
|
|
3587
3572
|
const memberEntries = se_InstanceIds(input[_II], context);
|
|
3588
|
-
if (
|
|
3573
|
+
if (input[_II]?.length === 0) {
|
|
3589
3574
|
entries.InstanceIds = [];
|
|
3590
3575
|
}
|
|
3591
3576
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3599,14 +3584,13 @@ var se_ExitStandbyQuery = /* @__PURE__ */ __name((input, context) => {
|
|
|
3599
3584
|
return entries;
|
|
3600
3585
|
}, "se_ExitStandbyQuery");
|
|
3601
3586
|
var se_Filter = /* @__PURE__ */ __name((input, context) => {
|
|
3602
|
-
var _a;
|
|
3603
3587
|
const entries = {};
|
|
3604
3588
|
if (input[_Na] != null) {
|
|
3605
3589
|
entries[_Na] = input[_Na];
|
|
3606
3590
|
}
|
|
3607
3591
|
if (input[_Va] != null) {
|
|
3608
3592
|
const memberEntries = se_Values(input[_Va], context);
|
|
3609
|
-
if (
|
|
3593
|
+
if (input[_Va]?.length === 0) {
|
|
3610
3594
|
entries.Values = [];
|
|
3611
3595
|
}
|
|
3612
3596
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3714,7 +3698,6 @@ var se_InstanceRefreshIds = /* @__PURE__ */ __name((input, context) => {
|
|
|
3714
3698
|
return entries;
|
|
3715
3699
|
}, "se_InstanceRefreshIds");
|
|
3716
3700
|
var se_InstanceRequirements = /* @__PURE__ */ __name((input, context) => {
|
|
3717
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
3718
3701
|
const entries = {};
|
|
3719
3702
|
if (input[_VCC] != null) {
|
|
3720
3703
|
const memberEntries = se_VCpuCountRequest(input[_VCC], context);
|
|
@@ -3732,7 +3715,7 @@ var se_InstanceRequirements = /* @__PURE__ */ __name((input, context) => {
|
|
|
3732
3715
|
}
|
|
3733
3716
|
if (input[_CM] != null) {
|
|
3734
3717
|
const memberEntries = se_CpuManufacturers(input[_CM], context);
|
|
3735
|
-
if (
|
|
3718
|
+
if (input[_CM]?.length === 0) {
|
|
3736
3719
|
entries.CpuManufacturers = [];
|
|
3737
3720
|
}
|
|
3738
3721
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3749,7 +3732,7 @@ var se_InstanceRequirements = /* @__PURE__ */ __name((input, context) => {
|
|
|
3749
3732
|
}
|
|
3750
3733
|
if (input[_EIT] != null) {
|
|
3751
3734
|
const memberEntries = se_ExcludedInstanceTypes(input[_EIT], context);
|
|
3752
|
-
if (
|
|
3735
|
+
if (input[_EIT]?.length === 0) {
|
|
3753
3736
|
entries.ExcludedInstanceTypes = [];
|
|
3754
3737
|
}
|
|
3755
3738
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3759,7 +3742,7 @@ var se_InstanceRequirements = /* @__PURE__ */ __name((input, context) => {
|
|
|
3759
3742
|
}
|
|
3760
3743
|
if (input[_IG] != null) {
|
|
3761
3744
|
const memberEntries = se_InstanceGenerations(input[_IG], context);
|
|
3762
|
-
if (
|
|
3745
|
+
if (input[_IG]?.length === 0) {
|
|
3763
3746
|
entries.InstanceGenerations = [];
|
|
3764
3747
|
}
|
|
3765
3748
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3797,7 +3780,7 @@ var se_InstanceRequirements = /* @__PURE__ */ __name((input, context) => {
|
|
|
3797
3780
|
}
|
|
3798
3781
|
if (input[_LST] != null) {
|
|
3799
3782
|
const memberEntries = se_LocalStorageTypes(input[_LST], context);
|
|
3800
|
-
if (
|
|
3783
|
+
if (input[_LST]?.length === 0) {
|
|
3801
3784
|
entries.LocalStorageTypes = [];
|
|
3802
3785
|
}
|
|
3803
3786
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3821,7 +3804,7 @@ var se_InstanceRequirements = /* @__PURE__ */ __name((input, context) => {
|
|
|
3821
3804
|
}
|
|
3822
3805
|
if (input[_AT] != null) {
|
|
3823
3806
|
const memberEntries = se_AcceleratorTypes(input[_AT], context);
|
|
3824
|
-
if (
|
|
3807
|
+
if (input[_AT]?.length === 0) {
|
|
3825
3808
|
entries.AcceleratorTypes = [];
|
|
3826
3809
|
}
|
|
3827
3810
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3838,7 +3821,7 @@ var se_InstanceRequirements = /* @__PURE__ */ __name((input, context) => {
|
|
|
3838
3821
|
}
|
|
3839
3822
|
if (input[_AM] != null) {
|
|
3840
3823
|
const memberEntries = se_AcceleratorManufacturers(input[_AM], context);
|
|
3841
|
-
if (
|
|
3824
|
+
if (input[_AM]?.length === 0) {
|
|
3842
3825
|
entries.AcceleratorManufacturers = [];
|
|
3843
3826
|
}
|
|
3844
3827
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3848,7 +3831,7 @@ var se_InstanceRequirements = /* @__PURE__ */ __name((input, context) => {
|
|
|
3848
3831
|
}
|
|
3849
3832
|
if (input[_AN] != null) {
|
|
3850
3833
|
const memberEntries = se_AcceleratorNames(input[_AN], context);
|
|
3851
|
-
if (
|
|
3834
|
+
if (input[_AN]?.length === 0) {
|
|
3852
3835
|
entries.AcceleratorNames = [];
|
|
3853
3836
|
}
|
|
3854
3837
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3872,7 +3855,7 @@ var se_InstanceRequirements = /* @__PURE__ */ __name((input, context) => {
|
|
|
3872
3855
|
}
|
|
3873
3856
|
if (input[_AIT] != null) {
|
|
3874
3857
|
const memberEntries = se_AllowedInstanceTypes(input[_AIT], context);
|
|
3875
|
-
if (
|
|
3858
|
+
if (input[_AIT]?.length === 0) {
|
|
3876
3859
|
entries.AllowedInstanceTypes = [];
|
|
3877
3860
|
}
|
|
3878
3861
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3931,11 +3914,10 @@ var se_LaunchConfigurationNames = /* @__PURE__ */ __name((input, context) => {
|
|
|
3931
3914
|
return entries;
|
|
3932
3915
|
}, "se_LaunchConfigurationNames");
|
|
3933
3916
|
var se_LaunchConfigurationNamesType = /* @__PURE__ */ __name((input, context) => {
|
|
3934
|
-
var _a;
|
|
3935
3917
|
const entries = {};
|
|
3936
3918
|
if (input[_LCNa] != null) {
|
|
3937
3919
|
const memberEntries = se_LaunchConfigurationNames(input[_LCNa], context);
|
|
3938
|
-
if (
|
|
3920
|
+
if (input[_LCNa]?.length === 0) {
|
|
3939
3921
|
entries.LaunchConfigurationNames = [];
|
|
3940
3922
|
}
|
|
3941
3923
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3959,7 +3941,6 @@ var se_LaunchConfigurationNameType = /* @__PURE__ */ __name((input, context) =>
|
|
|
3959
3941
|
return entries;
|
|
3960
3942
|
}, "se_LaunchConfigurationNameType");
|
|
3961
3943
|
var se_LaunchTemplate = /* @__PURE__ */ __name((input, context) => {
|
|
3962
|
-
var _a;
|
|
3963
3944
|
const entries = {};
|
|
3964
3945
|
if (input[_LTS] != null) {
|
|
3965
3946
|
const memberEntries = se_LaunchTemplateSpecification(input[_LTS], context);
|
|
@@ -3970,7 +3951,7 @@ var se_LaunchTemplate = /* @__PURE__ */ __name((input, context) => {
|
|
|
3970
3951
|
}
|
|
3971
3952
|
if (input[_O] != null) {
|
|
3972
3953
|
const memberEntries = se_Overrides(input[_O], context);
|
|
3973
|
-
if (
|
|
3954
|
+
if (input[_O]?.length === 0) {
|
|
3974
3955
|
entries.Overrides = [];
|
|
3975
3956
|
}
|
|
3976
3957
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4114,7 +4095,6 @@ var se_MemoryMiBRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
4114
4095
|
return entries;
|
|
4115
4096
|
}, "se_MemoryMiBRequest");
|
|
4116
4097
|
var se_Metric = /* @__PURE__ */ __name((input, context) => {
|
|
4117
|
-
var _a;
|
|
4118
4098
|
const entries = {};
|
|
4119
4099
|
if (input[_N] != null) {
|
|
4120
4100
|
entries[_N] = input[_N];
|
|
@@ -4124,7 +4104,7 @@ var se_Metric = /* @__PURE__ */ __name((input, context) => {
|
|
|
4124
4104
|
}
|
|
4125
4105
|
if (input[_D] != null) {
|
|
4126
4106
|
const memberEntries = se_MetricDimensions(input[_D], context);
|
|
4127
|
-
if (
|
|
4107
|
+
if (input[_D]?.length === 0) {
|
|
4128
4108
|
entries.Dimensions = [];
|
|
4129
4109
|
}
|
|
4130
4110
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4336,11 +4316,10 @@ var se_PredefinedMetricSpecification = /* @__PURE__ */ __name((input, context) =
|
|
|
4336
4316
|
return entries;
|
|
4337
4317
|
}, "se_PredefinedMetricSpecification");
|
|
4338
4318
|
var se_PredictiveScalingConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
4339
|
-
var _a;
|
|
4340
4319
|
const entries = {};
|
|
4341
4320
|
if (input[_MSet] != null) {
|
|
4342
4321
|
const memberEntries = se_PredictiveScalingMetricSpecifications(input[_MSet], context);
|
|
4343
|
-
if (
|
|
4322
|
+
if (input[_MSet]?.length === 0) {
|
|
4344
4323
|
entries.MetricSpecifications = [];
|
|
4345
4324
|
}
|
|
4346
4325
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4363,11 +4342,10 @@ var se_PredictiveScalingConfiguration = /* @__PURE__ */ __name((input, context)
|
|
|
4363
4342
|
return entries;
|
|
4364
4343
|
}, "se_PredictiveScalingConfiguration");
|
|
4365
4344
|
var se_PredictiveScalingCustomizedCapacityMetric = /* @__PURE__ */ __name((input, context) => {
|
|
4366
|
-
var _a;
|
|
4367
4345
|
const entries = {};
|
|
4368
4346
|
if (input[_MDQ] != null) {
|
|
4369
4347
|
const memberEntries = se_MetricDataQueries(input[_MDQ], context);
|
|
4370
|
-
if (
|
|
4348
|
+
if (input[_MDQ]?.length === 0) {
|
|
4371
4349
|
entries.MetricDataQueries = [];
|
|
4372
4350
|
}
|
|
4373
4351
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4378,11 +4356,10 @@ var se_PredictiveScalingCustomizedCapacityMetric = /* @__PURE__ */ __name((input
|
|
|
4378
4356
|
return entries;
|
|
4379
4357
|
}, "se_PredictiveScalingCustomizedCapacityMetric");
|
|
4380
4358
|
var se_PredictiveScalingCustomizedLoadMetric = /* @__PURE__ */ __name((input, context) => {
|
|
4381
|
-
var _a;
|
|
4382
4359
|
const entries = {};
|
|
4383
4360
|
if (input[_MDQ] != null) {
|
|
4384
4361
|
const memberEntries = se_MetricDataQueries(input[_MDQ], context);
|
|
4385
|
-
if (
|
|
4362
|
+
if (input[_MDQ]?.length === 0) {
|
|
4386
4363
|
entries.MetricDataQueries = [];
|
|
4387
4364
|
}
|
|
4388
4365
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4393,11 +4370,10 @@ var se_PredictiveScalingCustomizedLoadMetric = /* @__PURE__ */ __name((input, co
|
|
|
4393
4370
|
return entries;
|
|
4394
4371
|
}, "se_PredictiveScalingCustomizedLoadMetric");
|
|
4395
4372
|
var se_PredictiveScalingCustomizedScalingMetric = /* @__PURE__ */ __name((input, context) => {
|
|
4396
|
-
var _a;
|
|
4397
4373
|
const entries = {};
|
|
4398
4374
|
if (input[_MDQ] != null) {
|
|
4399
4375
|
const memberEntries = se_MetricDataQueries(input[_MDQ], context);
|
|
4400
|
-
if (
|
|
4376
|
+
if (input[_MDQ]?.length === 0) {
|
|
4401
4377
|
entries.MetricDataQueries = [];
|
|
4402
4378
|
}
|
|
4403
4379
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4542,7 +4518,6 @@ var se_PutLifecycleHookType = /* @__PURE__ */ __name((input, context) => {
|
|
|
4542
4518
|
return entries;
|
|
4543
4519
|
}, "se_PutLifecycleHookType");
|
|
4544
4520
|
var se_PutNotificationConfigurationType = /* @__PURE__ */ __name((input, context) => {
|
|
4545
|
-
var _a;
|
|
4546
4521
|
const entries = {};
|
|
4547
4522
|
if (input[_ASGN] != null) {
|
|
4548
4523
|
entries[_ASGN] = input[_ASGN];
|
|
@@ -4552,7 +4527,7 @@ var se_PutNotificationConfigurationType = /* @__PURE__ */ __name((input, context
|
|
|
4552
4527
|
}
|
|
4553
4528
|
if (input[_NTo] != null) {
|
|
4554
4529
|
const memberEntries = se_AutoScalingNotificationTypes(input[_NTo], context);
|
|
4555
|
-
if (
|
|
4530
|
+
if (input[_NTo]?.length === 0) {
|
|
4556
4531
|
entries.NotificationTypes = [];
|
|
4557
4532
|
}
|
|
4558
4533
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4563,7 +4538,6 @@ var se_PutNotificationConfigurationType = /* @__PURE__ */ __name((input, context
|
|
|
4563
4538
|
return entries;
|
|
4564
4539
|
}, "se_PutNotificationConfigurationType");
|
|
4565
4540
|
var se_PutScalingPolicyType = /* @__PURE__ */ __name((input, context) => {
|
|
4566
|
-
var _a;
|
|
4567
4541
|
const entries = {};
|
|
4568
4542
|
if (input[_ASGN] != null) {
|
|
4569
4543
|
entries[_ASGN] = input[_ASGN];
|
|
@@ -4594,7 +4568,7 @@ var se_PutScalingPolicyType = /* @__PURE__ */ __name((input, context) => {
|
|
|
4594
4568
|
}
|
|
4595
4569
|
if (input[_SAt] != null) {
|
|
4596
4570
|
const memberEntries = se_StepAdjustments(input[_SAt], context);
|
|
4597
|
-
if (
|
|
4571
|
+
if (input[_SAt]?.length === 0) {
|
|
4598
4572
|
entries.StepAdjustments = [];
|
|
4599
4573
|
}
|
|
4600
4574
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4698,7 +4672,6 @@ var se_RecordLifecycleActionHeartbeatType = /* @__PURE__ */ __name((input, conte
|
|
|
4698
4672
|
return entries;
|
|
4699
4673
|
}, "se_RecordLifecycleActionHeartbeatType");
|
|
4700
4674
|
var se_RefreshPreferences = /* @__PURE__ */ __name((input, context) => {
|
|
4701
|
-
var _a;
|
|
4702
4675
|
const entries = {};
|
|
4703
4676
|
if (input[_MHP] != null) {
|
|
4704
4677
|
entries[_MHP] = input[_MHP];
|
|
@@ -4708,7 +4681,7 @@ var se_RefreshPreferences = /* @__PURE__ */ __name((input, context) => {
|
|
|
4708
4681
|
}
|
|
4709
4682
|
if (input[_CP] != null) {
|
|
4710
4683
|
const memberEntries = se_CheckpointPercentages(input[_CP], context);
|
|
4711
|
-
if (
|
|
4684
|
+
if (input[_CP]?.length === 0) {
|
|
4712
4685
|
entries.CheckpointPercentages = [];
|
|
4713
4686
|
}
|
|
4714
4687
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4754,14 +4727,13 @@ var se_RollbackInstanceRefreshType = /* @__PURE__ */ __name((input, context) =>
|
|
|
4754
4727
|
return entries;
|
|
4755
4728
|
}, "se_RollbackInstanceRefreshType");
|
|
4756
4729
|
var se_ScalingProcessQuery = /* @__PURE__ */ __name((input, context) => {
|
|
4757
|
-
var _a;
|
|
4758
4730
|
const entries = {};
|
|
4759
4731
|
if (input[_ASGN] != null) {
|
|
4760
4732
|
entries[_ASGN] = input[_ASGN];
|
|
4761
4733
|
}
|
|
4762
4734
|
if (input[_SPc] != null) {
|
|
4763
4735
|
const memberEntries = se_ProcessNames(input[_SPc], context);
|
|
4764
|
-
if (
|
|
4736
|
+
if (input[_SPc]?.length === 0) {
|
|
4765
4737
|
entries.ScalingProcesses = [];
|
|
4766
4738
|
}
|
|
4767
4739
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -4865,11 +4837,10 @@ var se_SetInstanceHealthQuery = /* @__PURE__ */ __name((input, context) => {
|
|
|
4865
4837
|
return entries;
|
|
4866
4838
|
}, "se_SetInstanceHealthQuery");
|
|
4867
4839
|
var se_SetInstanceProtectionQuery = /* @__PURE__ */ __name((input, context) => {
|
|
4868
|
-
var _a;
|
|
4869
4840
|
const entries = {};
|
|
4870
4841
|
if (input[_II] != null) {
|
|
4871
4842
|
const memberEntries = se_InstanceIds(input[_II], context);
|
|
4872
|
-
if (
|
|
4843
|
+
if (input[_II]?.length === 0) {
|
|
4873
4844
|
entries.InstanceIds = [];
|
|
4874
4845
|
}
|
|
4875
4846
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5126,7 +5097,6 @@ var se_TrafficSources = /* @__PURE__ */ __name((input, context) => {
|
|
|
5126
5097
|
return entries;
|
|
5127
5098
|
}, "se_TrafficSources");
|
|
5128
5099
|
var se_UpdateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
5129
|
-
var _a, _b;
|
|
5130
5100
|
const entries = {};
|
|
5131
5101
|
if (input[_ASGN] != null) {
|
|
5132
5102
|
entries[_ASGN] = input[_ASGN];
|
|
@@ -5162,7 +5132,7 @@ var se_UpdateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
5162
5132
|
}
|
|
5163
5133
|
if (input[_AZ] != null) {
|
|
5164
5134
|
const memberEntries = se_AvailabilityZones(input[_AZ], context);
|
|
5165
|
-
if (
|
|
5135
|
+
if (input[_AZ]?.length === 0) {
|
|
5166
5136
|
entries.AvailabilityZones = [];
|
|
5167
5137
|
}
|
|
5168
5138
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5184,7 +5154,7 @@ var se_UpdateAutoScalingGroupType = /* @__PURE__ */ __name((input, context) => {
|
|
|
5184
5154
|
}
|
|
5185
5155
|
if (input[_TP] != null) {
|
|
5186
5156
|
const memberEntries = se_TerminationPolicies(input[_TP], context);
|
|
5187
|
-
if (
|
|
5157
|
+
if (input[_TP]?.length === 0) {
|
|
5188
5158
|
entries.TerminationPolicies = [];
|
|
5189
5159
|
}
|
|
5190
5160
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -7855,8 +7825,7 @@ var _m = "message";
|
|
|
7855
7825
|
var _me = "member";
|
|
7856
7826
|
var buildFormUrlencodedString = /* @__PURE__ */ __name((formEntries) => Object.entries(formEntries).map(([key, value]) => (0, import_smithy_client.extendedEncodeURIComponent)(key) + "=" + (0, import_smithy_client.extendedEncodeURIComponent)(value)).join("&"), "buildFormUrlencodedString");
|
|
7857
7827
|
var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
7858
|
-
|
|
7859
|
-
if (((_a = data.Error) == null ? void 0 : _a.Code) !== void 0) {
|
|
7828
|
+
if (data.Error?.Code !== void 0) {
|
|
7860
7829
|
return data.Error.Code;
|
|
7861
7830
|
}
|
|
7862
7831
|
if (output.statusCode == 404) {
|
|
@@ -7865,911 +7834,976 @@ var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
|
7865
7834
|
}, "loadQueryErrorCode");
|
|
7866
7835
|
|
|
7867
7836
|
// src/commands/AttachInstancesCommand.ts
|
|
7868
|
-
var
|
|
7837
|
+
var AttachInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7869
7838
|
return [
|
|
7870
7839
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7871
7840
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7872
7841
|
];
|
|
7873
7842
|
}).s("AutoScaling_2011_01_01", "AttachInstances", {}).n("AutoScalingClient", "AttachInstancesCommand").f(void 0, void 0).ser(se_AttachInstancesCommand).de(de_AttachInstancesCommand).build() {
|
|
7843
|
+
static {
|
|
7844
|
+
__name(this, "AttachInstancesCommand");
|
|
7845
|
+
}
|
|
7874
7846
|
};
|
|
7875
|
-
__name(_AttachInstancesCommand, "AttachInstancesCommand");
|
|
7876
|
-
var AttachInstancesCommand = _AttachInstancesCommand;
|
|
7877
7847
|
|
|
7878
7848
|
// src/commands/AttachLoadBalancersCommand.ts
|
|
7879
7849
|
|
|
7880
7850
|
|
|
7881
7851
|
|
|
7882
|
-
var
|
|
7852
|
+
var AttachLoadBalancersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7883
7853
|
return [
|
|
7884
7854
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7885
7855
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7886
7856
|
];
|
|
7887
7857
|
}).s("AutoScaling_2011_01_01", "AttachLoadBalancers", {}).n("AutoScalingClient", "AttachLoadBalancersCommand").f(void 0, void 0).ser(se_AttachLoadBalancersCommand).de(de_AttachLoadBalancersCommand).build() {
|
|
7858
|
+
static {
|
|
7859
|
+
__name(this, "AttachLoadBalancersCommand");
|
|
7860
|
+
}
|
|
7888
7861
|
};
|
|
7889
|
-
__name(_AttachLoadBalancersCommand, "AttachLoadBalancersCommand");
|
|
7890
|
-
var AttachLoadBalancersCommand = _AttachLoadBalancersCommand;
|
|
7891
7862
|
|
|
7892
7863
|
// src/commands/AttachLoadBalancerTargetGroupsCommand.ts
|
|
7893
7864
|
|
|
7894
7865
|
|
|
7895
7866
|
|
|
7896
|
-
var
|
|
7867
|
+
var AttachLoadBalancerTargetGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7897
7868
|
return [
|
|
7898
7869
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7899
7870
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7900
7871
|
];
|
|
7901
7872
|
}).s("AutoScaling_2011_01_01", "AttachLoadBalancerTargetGroups", {}).n("AutoScalingClient", "AttachLoadBalancerTargetGroupsCommand").f(void 0, void 0).ser(se_AttachLoadBalancerTargetGroupsCommand).de(de_AttachLoadBalancerTargetGroupsCommand).build() {
|
|
7873
|
+
static {
|
|
7874
|
+
__name(this, "AttachLoadBalancerTargetGroupsCommand");
|
|
7875
|
+
}
|
|
7902
7876
|
};
|
|
7903
|
-
__name(_AttachLoadBalancerTargetGroupsCommand, "AttachLoadBalancerTargetGroupsCommand");
|
|
7904
|
-
var AttachLoadBalancerTargetGroupsCommand = _AttachLoadBalancerTargetGroupsCommand;
|
|
7905
7877
|
|
|
7906
7878
|
// src/commands/AttachTrafficSourcesCommand.ts
|
|
7907
7879
|
|
|
7908
7880
|
|
|
7909
7881
|
|
|
7910
|
-
var
|
|
7882
|
+
var AttachTrafficSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7911
7883
|
return [
|
|
7912
7884
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7913
7885
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7914
7886
|
];
|
|
7915
7887
|
}).s("AutoScaling_2011_01_01", "AttachTrafficSources", {}).n("AutoScalingClient", "AttachTrafficSourcesCommand").f(void 0, void 0).ser(se_AttachTrafficSourcesCommand).de(de_AttachTrafficSourcesCommand).build() {
|
|
7888
|
+
static {
|
|
7889
|
+
__name(this, "AttachTrafficSourcesCommand");
|
|
7890
|
+
}
|
|
7916
7891
|
};
|
|
7917
|
-
__name(_AttachTrafficSourcesCommand, "AttachTrafficSourcesCommand");
|
|
7918
|
-
var AttachTrafficSourcesCommand = _AttachTrafficSourcesCommand;
|
|
7919
7892
|
|
|
7920
7893
|
// src/commands/BatchDeleteScheduledActionCommand.ts
|
|
7921
7894
|
|
|
7922
7895
|
|
|
7923
7896
|
|
|
7924
|
-
var
|
|
7897
|
+
var BatchDeleteScheduledActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7925
7898
|
return [
|
|
7926
7899
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7927
7900
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7928
7901
|
];
|
|
7929
7902
|
}).s("AutoScaling_2011_01_01", "BatchDeleteScheduledAction", {}).n("AutoScalingClient", "BatchDeleteScheduledActionCommand").f(void 0, void 0).ser(se_BatchDeleteScheduledActionCommand).de(de_BatchDeleteScheduledActionCommand).build() {
|
|
7903
|
+
static {
|
|
7904
|
+
__name(this, "BatchDeleteScheduledActionCommand");
|
|
7905
|
+
}
|
|
7930
7906
|
};
|
|
7931
|
-
__name(_BatchDeleteScheduledActionCommand, "BatchDeleteScheduledActionCommand");
|
|
7932
|
-
var BatchDeleteScheduledActionCommand = _BatchDeleteScheduledActionCommand;
|
|
7933
7907
|
|
|
7934
7908
|
// src/commands/BatchPutScheduledUpdateGroupActionCommand.ts
|
|
7935
7909
|
|
|
7936
7910
|
|
|
7937
7911
|
|
|
7938
|
-
var
|
|
7912
|
+
var BatchPutScheduledUpdateGroupActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7939
7913
|
return [
|
|
7940
7914
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7941
7915
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7942
7916
|
];
|
|
7943
7917
|
}).s("AutoScaling_2011_01_01", "BatchPutScheduledUpdateGroupAction", {}).n("AutoScalingClient", "BatchPutScheduledUpdateGroupActionCommand").f(void 0, void 0).ser(se_BatchPutScheduledUpdateGroupActionCommand).de(de_BatchPutScheduledUpdateGroupActionCommand).build() {
|
|
7918
|
+
static {
|
|
7919
|
+
__name(this, "BatchPutScheduledUpdateGroupActionCommand");
|
|
7920
|
+
}
|
|
7944
7921
|
};
|
|
7945
|
-
__name(_BatchPutScheduledUpdateGroupActionCommand, "BatchPutScheduledUpdateGroupActionCommand");
|
|
7946
|
-
var BatchPutScheduledUpdateGroupActionCommand = _BatchPutScheduledUpdateGroupActionCommand;
|
|
7947
7922
|
|
|
7948
7923
|
// src/commands/CancelInstanceRefreshCommand.ts
|
|
7949
7924
|
|
|
7950
7925
|
|
|
7951
7926
|
|
|
7952
|
-
var
|
|
7927
|
+
var CancelInstanceRefreshCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7953
7928
|
return [
|
|
7954
7929
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7955
7930
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7956
7931
|
];
|
|
7957
7932
|
}).s("AutoScaling_2011_01_01", "CancelInstanceRefresh", {}).n("AutoScalingClient", "CancelInstanceRefreshCommand").f(void 0, void 0).ser(se_CancelInstanceRefreshCommand).de(de_CancelInstanceRefreshCommand).build() {
|
|
7933
|
+
static {
|
|
7934
|
+
__name(this, "CancelInstanceRefreshCommand");
|
|
7935
|
+
}
|
|
7958
7936
|
};
|
|
7959
|
-
__name(_CancelInstanceRefreshCommand, "CancelInstanceRefreshCommand");
|
|
7960
|
-
var CancelInstanceRefreshCommand = _CancelInstanceRefreshCommand;
|
|
7961
7937
|
|
|
7962
7938
|
// src/commands/CompleteLifecycleActionCommand.ts
|
|
7963
7939
|
|
|
7964
7940
|
|
|
7965
7941
|
|
|
7966
|
-
var
|
|
7942
|
+
var CompleteLifecycleActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7967
7943
|
return [
|
|
7968
7944
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7969
7945
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7970
7946
|
];
|
|
7971
7947
|
}).s("AutoScaling_2011_01_01", "CompleteLifecycleAction", {}).n("AutoScalingClient", "CompleteLifecycleActionCommand").f(void 0, void 0).ser(se_CompleteLifecycleActionCommand).de(de_CompleteLifecycleActionCommand).build() {
|
|
7948
|
+
static {
|
|
7949
|
+
__name(this, "CompleteLifecycleActionCommand");
|
|
7950
|
+
}
|
|
7972
7951
|
};
|
|
7973
|
-
__name(_CompleteLifecycleActionCommand, "CompleteLifecycleActionCommand");
|
|
7974
|
-
var CompleteLifecycleActionCommand = _CompleteLifecycleActionCommand;
|
|
7975
7952
|
|
|
7976
7953
|
// src/commands/CreateAutoScalingGroupCommand.ts
|
|
7977
7954
|
|
|
7978
7955
|
|
|
7979
7956
|
|
|
7980
|
-
var
|
|
7957
|
+
var CreateAutoScalingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7981
7958
|
return [
|
|
7982
7959
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7983
7960
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7984
7961
|
];
|
|
7985
7962
|
}).s("AutoScaling_2011_01_01", "CreateAutoScalingGroup", {}).n("AutoScalingClient", "CreateAutoScalingGroupCommand").f(void 0, void 0).ser(se_CreateAutoScalingGroupCommand).de(de_CreateAutoScalingGroupCommand).build() {
|
|
7963
|
+
static {
|
|
7964
|
+
__name(this, "CreateAutoScalingGroupCommand");
|
|
7965
|
+
}
|
|
7986
7966
|
};
|
|
7987
|
-
__name(_CreateAutoScalingGroupCommand, "CreateAutoScalingGroupCommand");
|
|
7988
|
-
var CreateAutoScalingGroupCommand = _CreateAutoScalingGroupCommand;
|
|
7989
7967
|
|
|
7990
7968
|
// src/commands/CreateLaunchConfigurationCommand.ts
|
|
7991
7969
|
|
|
7992
7970
|
|
|
7993
7971
|
|
|
7994
|
-
var
|
|
7972
|
+
var CreateLaunchConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7995
7973
|
return [
|
|
7996
7974
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7997
7975
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7998
7976
|
];
|
|
7999
7977
|
}).s("AutoScaling_2011_01_01", "CreateLaunchConfiguration", {}).n("AutoScalingClient", "CreateLaunchConfigurationCommand").f(void 0, void 0).ser(se_CreateLaunchConfigurationCommand).de(de_CreateLaunchConfigurationCommand).build() {
|
|
7978
|
+
static {
|
|
7979
|
+
__name(this, "CreateLaunchConfigurationCommand");
|
|
7980
|
+
}
|
|
8000
7981
|
};
|
|
8001
|
-
__name(_CreateLaunchConfigurationCommand, "CreateLaunchConfigurationCommand");
|
|
8002
|
-
var CreateLaunchConfigurationCommand = _CreateLaunchConfigurationCommand;
|
|
8003
7982
|
|
|
8004
7983
|
// src/commands/CreateOrUpdateTagsCommand.ts
|
|
8005
7984
|
|
|
8006
7985
|
|
|
8007
7986
|
|
|
8008
|
-
var
|
|
7987
|
+
var CreateOrUpdateTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8009
7988
|
return [
|
|
8010
7989
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8011
7990
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8012
7991
|
];
|
|
8013
7992
|
}).s("AutoScaling_2011_01_01", "CreateOrUpdateTags", {}).n("AutoScalingClient", "CreateOrUpdateTagsCommand").f(void 0, void 0).ser(se_CreateOrUpdateTagsCommand).de(de_CreateOrUpdateTagsCommand).build() {
|
|
7993
|
+
static {
|
|
7994
|
+
__name(this, "CreateOrUpdateTagsCommand");
|
|
7995
|
+
}
|
|
8014
7996
|
};
|
|
8015
|
-
__name(_CreateOrUpdateTagsCommand, "CreateOrUpdateTagsCommand");
|
|
8016
|
-
var CreateOrUpdateTagsCommand = _CreateOrUpdateTagsCommand;
|
|
8017
7997
|
|
|
8018
7998
|
// src/commands/DeleteAutoScalingGroupCommand.ts
|
|
8019
7999
|
|
|
8020
8000
|
|
|
8021
8001
|
|
|
8022
|
-
var
|
|
8002
|
+
var DeleteAutoScalingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8023
8003
|
return [
|
|
8024
8004
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8025
8005
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8026
8006
|
];
|
|
8027
8007
|
}).s("AutoScaling_2011_01_01", "DeleteAutoScalingGroup", {}).n("AutoScalingClient", "DeleteAutoScalingGroupCommand").f(void 0, void 0).ser(se_DeleteAutoScalingGroupCommand).de(de_DeleteAutoScalingGroupCommand).build() {
|
|
8008
|
+
static {
|
|
8009
|
+
__name(this, "DeleteAutoScalingGroupCommand");
|
|
8010
|
+
}
|
|
8028
8011
|
};
|
|
8029
|
-
__name(_DeleteAutoScalingGroupCommand, "DeleteAutoScalingGroupCommand");
|
|
8030
|
-
var DeleteAutoScalingGroupCommand = _DeleteAutoScalingGroupCommand;
|
|
8031
8012
|
|
|
8032
8013
|
// src/commands/DeleteLaunchConfigurationCommand.ts
|
|
8033
8014
|
|
|
8034
8015
|
|
|
8035
8016
|
|
|
8036
|
-
var
|
|
8017
|
+
var DeleteLaunchConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8037
8018
|
return [
|
|
8038
8019
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8039
8020
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8040
8021
|
];
|
|
8041
8022
|
}).s("AutoScaling_2011_01_01", "DeleteLaunchConfiguration", {}).n("AutoScalingClient", "DeleteLaunchConfigurationCommand").f(void 0, void 0).ser(se_DeleteLaunchConfigurationCommand).de(de_DeleteLaunchConfigurationCommand).build() {
|
|
8023
|
+
static {
|
|
8024
|
+
__name(this, "DeleteLaunchConfigurationCommand");
|
|
8025
|
+
}
|
|
8042
8026
|
};
|
|
8043
|
-
__name(_DeleteLaunchConfigurationCommand, "DeleteLaunchConfigurationCommand");
|
|
8044
|
-
var DeleteLaunchConfigurationCommand = _DeleteLaunchConfigurationCommand;
|
|
8045
8027
|
|
|
8046
8028
|
// src/commands/DeleteLifecycleHookCommand.ts
|
|
8047
8029
|
|
|
8048
8030
|
|
|
8049
8031
|
|
|
8050
|
-
var
|
|
8032
|
+
var DeleteLifecycleHookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8051
8033
|
return [
|
|
8052
8034
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8053
8035
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8054
8036
|
];
|
|
8055
8037
|
}).s("AutoScaling_2011_01_01", "DeleteLifecycleHook", {}).n("AutoScalingClient", "DeleteLifecycleHookCommand").f(void 0, void 0).ser(se_DeleteLifecycleHookCommand).de(de_DeleteLifecycleHookCommand).build() {
|
|
8038
|
+
static {
|
|
8039
|
+
__name(this, "DeleteLifecycleHookCommand");
|
|
8040
|
+
}
|
|
8056
8041
|
};
|
|
8057
|
-
__name(_DeleteLifecycleHookCommand, "DeleteLifecycleHookCommand");
|
|
8058
|
-
var DeleteLifecycleHookCommand = _DeleteLifecycleHookCommand;
|
|
8059
8042
|
|
|
8060
8043
|
// src/commands/DeleteNotificationConfigurationCommand.ts
|
|
8061
8044
|
|
|
8062
8045
|
|
|
8063
8046
|
|
|
8064
|
-
var
|
|
8047
|
+
var DeleteNotificationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8065
8048
|
return [
|
|
8066
8049
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8067
8050
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8068
8051
|
];
|
|
8069
8052
|
}).s("AutoScaling_2011_01_01", "DeleteNotificationConfiguration", {}).n("AutoScalingClient", "DeleteNotificationConfigurationCommand").f(void 0, void 0).ser(se_DeleteNotificationConfigurationCommand).de(de_DeleteNotificationConfigurationCommand).build() {
|
|
8053
|
+
static {
|
|
8054
|
+
__name(this, "DeleteNotificationConfigurationCommand");
|
|
8055
|
+
}
|
|
8070
8056
|
};
|
|
8071
|
-
__name(_DeleteNotificationConfigurationCommand, "DeleteNotificationConfigurationCommand");
|
|
8072
|
-
var DeleteNotificationConfigurationCommand = _DeleteNotificationConfigurationCommand;
|
|
8073
8057
|
|
|
8074
8058
|
// src/commands/DeletePolicyCommand.ts
|
|
8075
8059
|
|
|
8076
8060
|
|
|
8077
8061
|
|
|
8078
|
-
var
|
|
8062
|
+
var DeletePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8079
8063
|
return [
|
|
8080
8064
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8081
8065
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8082
8066
|
];
|
|
8083
8067
|
}).s("AutoScaling_2011_01_01", "DeletePolicy", {}).n("AutoScalingClient", "DeletePolicyCommand").f(void 0, void 0).ser(se_DeletePolicyCommand).de(de_DeletePolicyCommand).build() {
|
|
8068
|
+
static {
|
|
8069
|
+
__name(this, "DeletePolicyCommand");
|
|
8070
|
+
}
|
|
8084
8071
|
};
|
|
8085
|
-
__name(_DeletePolicyCommand, "DeletePolicyCommand");
|
|
8086
|
-
var DeletePolicyCommand = _DeletePolicyCommand;
|
|
8087
8072
|
|
|
8088
8073
|
// src/commands/DeleteScheduledActionCommand.ts
|
|
8089
8074
|
|
|
8090
8075
|
|
|
8091
8076
|
|
|
8092
|
-
var
|
|
8077
|
+
var DeleteScheduledActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8093
8078
|
return [
|
|
8094
8079
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8095
8080
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8096
8081
|
];
|
|
8097
8082
|
}).s("AutoScaling_2011_01_01", "DeleteScheduledAction", {}).n("AutoScalingClient", "DeleteScheduledActionCommand").f(void 0, void 0).ser(se_DeleteScheduledActionCommand).de(de_DeleteScheduledActionCommand).build() {
|
|
8083
|
+
static {
|
|
8084
|
+
__name(this, "DeleteScheduledActionCommand");
|
|
8085
|
+
}
|
|
8098
8086
|
};
|
|
8099
|
-
__name(_DeleteScheduledActionCommand, "DeleteScheduledActionCommand");
|
|
8100
|
-
var DeleteScheduledActionCommand = _DeleteScheduledActionCommand;
|
|
8101
8087
|
|
|
8102
8088
|
// src/commands/DeleteTagsCommand.ts
|
|
8103
8089
|
|
|
8104
8090
|
|
|
8105
8091
|
|
|
8106
|
-
var
|
|
8092
|
+
var DeleteTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8107
8093
|
return [
|
|
8108
8094
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8109
8095
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8110
8096
|
];
|
|
8111
8097
|
}).s("AutoScaling_2011_01_01", "DeleteTags", {}).n("AutoScalingClient", "DeleteTagsCommand").f(void 0, void 0).ser(se_DeleteTagsCommand).de(de_DeleteTagsCommand).build() {
|
|
8098
|
+
static {
|
|
8099
|
+
__name(this, "DeleteTagsCommand");
|
|
8100
|
+
}
|
|
8112
8101
|
};
|
|
8113
|
-
__name(_DeleteTagsCommand, "DeleteTagsCommand");
|
|
8114
|
-
var DeleteTagsCommand = _DeleteTagsCommand;
|
|
8115
8102
|
|
|
8116
8103
|
// src/commands/DeleteWarmPoolCommand.ts
|
|
8117
8104
|
|
|
8118
8105
|
|
|
8119
8106
|
|
|
8120
|
-
var
|
|
8107
|
+
var DeleteWarmPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8121
8108
|
return [
|
|
8122
8109
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8123
8110
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8124
8111
|
];
|
|
8125
8112
|
}).s("AutoScaling_2011_01_01", "DeleteWarmPool", {}).n("AutoScalingClient", "DeleteWarmPoolCommand").f(void 0, void 0).ser(se_DeleteWarmPoolCommand).de(de_DeleteWarmPoolCommand).build() {
|
|
8113
|
+
static {
|
|
8114
|
+
__name(this, "DeleteWarmPoolCommand");
|
|
8115
|
+
}
|
|
8126
8116
|
};
|
|
8127
|
-
__name(_DeleteWarmPoolCommand, "DeleteWarmPoolCommand");
|
|
8128
|
-
var DeleteWarmPoolCommand = _DeleteWarmPoolCommand;
|
|
8129
8117
|
|
|
8130
8118
|
// src/commands/DescribeAccountLimitsCommand.ts
|
|
8131
8119
|
|
|
8132
8120
|
|
|
8133
8121
|
|
|
8134
|
-
var
|
|
8122
|
+
var DescribeAccountLimitsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8135
8123
|
return [
|
|
8136
8124
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8137
8125
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8138
8126
|
];
|
|
8139
8127
|
}).s("AutoScaling_2011_01_01", "DescribeAccountLimits", {}).n("AutoScalingClient", "DescribeAccountLimitsCommand").f(void 0, void 0).ser(se_DescribeAccountLimitsCommand).de(de_DescribeAccountLimitsCommand).build() {
|
|
8128
|
+
static {
|
|
8129
|
+
__name(this, "DescribeAccountLimitsCommand");
|
|
8130
|
+
}
|
|
8140
8131
|
};
|
|
8141
|
-
__name(_DescribeAccountLimitsCommand, "DescribeAccountLimitsCommand");
|
|
8142
|
-
var DescribeAccountLimitsCommand = _DescribeAccountLimitsCommand;
|
|
8143
8132
|
|
|
8144
8133
|
// src/commands/DescribeAdjustmentTypesCommand.ts
|
|
8145
8134
|
|
|
8146
8135
|
|
|
8147
8136
|
|
|
8148
|
-
var
|
|
8137
|
+
var DescribeAdjustmentTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8149
8138
|
return [
|
|
8150
8139
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8151
8140
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8152
8141
|
];
|
|
8153
8142
|
}).s("AutoScaling_2011_01_01", "DescribeAdjustmentTypes", {}).n("AutoScalingClient", "DescribeAdjustmentTypesCommand").f(void 0, void 0).ser(se_DescribeAdjustmentTypesCommand).de(de_DescribeAdjustmentTypesCommand).build() {
|
|
8143
|
+
static {
|
|
8144
|
+
__name(this, "DescribeAdjustmentTypesCommand");
|
|
8145
|
+
}
|
|
8154
8146
|
};
|
|
8155
|
-
__name(_DescribeAdjustmentTypesCommand, "DescribeAdjustmentTypesCommand");
|
|
8156
|
-
var DescribeAdjustmentTypesCommand = _DescribeAdjustmentTypesCommand;
|
|
8157
8147
|
|
|
8158
8148
|
// src/commands/DescribeAutoScalingGroupsCommand.ts
|
|
8159
8149
|
|
|
8160
8150
|
|
|
8161
8151
|
|
|
8162
|
-
var
|
|
8152
|
+
var DescribeAutoScalingGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8163
8153
|
return [
|
|
8164
8154
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8165
8155
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8166
8156
|
];
|
|
8167
8157
|
}).s("AutoScaling_2011_01_01", "DescribeAutoScalingGroups", {}).n("AutoScalingClient", "DescribeAutoScalingGroupsCommand").f(void 0, void 0).ser(se_DescribeAutoScalingGroupsCommand).de(de_DescribeAutoScalingGroupsCommand).build() {
|
|
8158
|
+
static {
|
|
8159
|
+
__name(this, "DescribeAutoScalingGroupsCommand");
|
|
8160
|
+
}
|
|
8168
8161
|
};
|
|
8169
|
-
__name(_DescribeAutoScalingGroupsCommand, "DescribeAutoScalingGroupsCommand");
|
|
8170
|
-
var DescribeAutoScalingGroupsCommand = _DescribeAutoScalingGroupsCommand;
|
|
8171
8162
|
|
|
8172
8163
|
// src/commands/DescribeAutoScalingInstancesCommand.ts
|
|
8173
8164
|
|
|
8174
8165
|
|
|
8175
8166
|
|
|
8176
|
-
var
|
|
8167
|
+
var DescribeAutoScalingInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8177
8168
|
return [
|
|
8178
8169
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8179
8170
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8180
8171
|
];
|
|
8181
8172
|
}).s("AutoScaling_2011_01_01", "DescribeAutoScalingInstances", {}).n("AutoScalingClient", "DescribeAutoScalingInstancesCommand").f(void 0, void 0).ser(se_DescribeAutoScalingInstancesCommand).de(de_DescribeAutoScalingInstancesCommand).build() {
|
|
8173
|
+
static {
|
|
8174
|
+
__name(this, "DescribeAutoScalingInstancesCommand");
|
|
8175
|
+
}
|
|
8182
8176
|
};
|
|
8183
|
-
__name(_DescribeAutoScalingInstancesCommand, "DescribeAutoScalingInstancesCommand");
|
|
8184
|
-
var DescribeAutoScalingInstancesCommand = _DescribeAutoScalingInstancesCommand;
|
|
8185
8177
|
|
|
8186
8178
|
// src/commands/DescribeAutoScalingNotificationTypesCommand.ts
|
|
8187
8179
|
|
|
8188
8180
|
|
|
8189
8181
|
|
|
8190
|
-
var
|
|
8182
|
+
var DescribeAutoScalingNotificationTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8191
8183
|
return [
|
|
8192
8184
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8193
8185
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8194
8186
|
];
|
|
8195
8187
|
}).s("AutoScaling_2011_01_01", "DescribeAutoScalingNotificationTypes", {}).n("AutoScalingClient", "DescribeAutoScalingNotificationTypesCommand").f(void 0, void 0).ser(se_DescribeAutoScalingNotificationTypesCommand).de(de_DescribeAutoScalingNotificationTypesCommand).build() {
|
|
8188
|
+
static {
|
|
8189
|
+
__name(this, "DescribeAutoScalingNotificationTypesCommand");
|
|
8190
|
+
}
|
|
8196
8191
|
};
|
|
8197
|
-
__name(_DescribeAutoScalingNotificationTypesCommand, "DescribeAutoScalingNotificationTypesCommand");
|
|
8198
|
-
var DescribeAutoScalingNotificationTypesCommand = _DescribeAutoScalingNotificationTypesCommand;
|
|
8199
8192
|
|
|
8200
8193
|
// src/commands/DescribeInstanceRefreshesCommand.ts
|
|
8201
8194
|
|
|
8202
8195
|
|
|
8203
8196
|
|
|
8204
|
-
var
|
|
8197
|
+
var DescribeInstanceRefreshesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8205
8198
|
return [
|
|
8206
8199
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8207
8200
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8208
8201
|
];
|
|
8209
8202
|
}).s("AutoScaling_2011_01_01", "DescribeInstanceRefreshes", {}).n("AutoScalingClient", "DescribeInstanceRefreshesCommand").f(void 0, void 0).ser(se_DescribeInstanceRefreshesCommand).de(de_DescribeInstanceRefreshesCommand).build() {
|
|
8203
|
+
static {
|
|
8204
|
+
__name(this, "DescribeInstanceRefreshesCommand");
|
|
8205
|
+
}
|
|
8210
8206
|
};
|
|
8211
|
-
__name(_DescribeInstanceRefreshesCommand, "DescribeInstanceRefreshesCommand");
|
|
8212
|
-
var DescribeInstanceRefreshesCommand = _DescribeInstanceRefreshesCommand;
|
|
8213
8207
|
|
|
8214
8208
|
// src/commands/DescribeLaunchConfigurationsCommand.ts
|
|
8215
8209
|
|
|
8216
8210
|
|
|
8217
8211
|
|
|
8218
|
-
var
|
|
8212
|
+
var DescribeLaunchConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8219
8213
|
return [
|
|
8220
8214
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8221
8215
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8222
8216
|
];
|
|
8223
8217
|
}).s("AutoScaling_2011_01_01", "DescribeLaunchConfigurations", {}).n("AutoScalingClient", "DescribeLaunchConfigurationsCommand").f(void 0, void 0).ser(se_DescribeLaunchConfigurationsCommand).de(de_DescribeLaunchConfigurationsCommand).build() {
|
|
8218
|
+
static {
|
|
8219
|
+
__name(this, "DescribeLaunchConfigurationsCommand");
|
|
8220
|
+
}
|
|
8224
8221
|
};
|
|
8225
|
-
__name(_DescribeLaunchConfigurationsCommand, "DescribeLaunchConfigurationsCommand");
|
|
8226
|
-
var DescribeLaunchConfigurationsCommand = _DescribeLaunchConfigurationsCommand;
|
|
8227
8222
|
|
|
8228
8223
|
// src/commands/DescribeLifecycleHooksCommand.ts
|
|
8229
8224
|
|
|
8230
8225
|
|
|
8231
8226
|
|
|
8232
|
-
var
|
|
8227
|
+
var DescribeLifecycleHooksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8233
8228
|
return [
|
|
8234
8229
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8235
8230
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8236
8231
|
];
|
|
8237
8232
|
}).s("AutoScaling_2011_01_01", "DescribeLifecycleHooks", {}).n("AutoScalingClient", "DescribeLifecycleHooksCommand").f(void 0, void 0).ser(se_DescribeLifecycleHooksCommand).de(de_DescribeLifecycleHooksCommand).build() {
|
|
8233
|
+
static {
|
|
8234
|
+
__name(this, "DescribeLifecycleHooksCommand");
|
|
8235
|
+
}
|
|
8238
8236
|
};
|
|
8239
|
-
__name(_DescribeLifecycleHooksCommand, "DescribeLifecycleHooksCommand");
|
|
8240
|
-
var DescribeLifecycleHooksCommand = _DescribeLifecycleHooksCommand;
|
|
8241
8237
|
|
|
8242
8238
|
// src/commands/DescribeLifecycleHookTypesCommand.ts
|
|
8243
8239
|
|
|
8244
8240
|
|
|
8245
8241
|
|
|
8246
|
-
var
|
|
8242
|
+
var DescribeLifecycleHookTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8247
8243
|
return [
|
|
8248
8244
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8249
8245
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8250
8246
|
];
|
|
8251
8247
|
}).s("AutoScaling_2011_01_01", "DescribeLifecycleHookTypes", {}).n("AutoScalingClient", "DescribeLifecycleHookTypesCommand").f(void 0, void 0).ser(se_DescribeLifecycleHookTypesCommand).de(de_DescribeLifecycleHookTypesCommand).build() {
|
|
8248
|
+
static {
|
|
8249
|
+
__name(this, "DescribeLifecycleHookTypesCommand");
|
|
8250
|
+
}
|
|
8252
8251
|
};
|
|
8253
|
-
__name(_DescribeLifecycleHookTypesCommand, "DescribeLifecycleHookTypesCommand");
|
|
8254
|
-
var DescribeLifecycleHookTypesCommand = _DescribeLifecycleHookTypesCommand;
|
|
8255
8252
|
|
|
8256
8253
|
// src/commands/DescribeLoadBalancersCommand.ts
|
|
8257
8254
|
|
|
8258
8255
|
|
|
8259
8256
|
|
|
8260
|
-
var
|
|
8257
|
+
var DescribeLoadBalancersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8261
8258
|
return [
|
|
8262
8259
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8263
8260
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8264
8261
|
];
|
|
8265
8262
|
}).s("AutoScaling_2011_01_01", "DescribeLoadBalancers", {}).n("AutoScalingClient", "DescribeLoadBalancersCommand").f(void 0, void 0).ser(se_DescribeLoadBalancersCommand).de(de_DescribeLoadBalancersCommand).build() {
|
|
8263
|
+
static {
|
|
8264
|
+
__name(this, "DescribeLoadBalancersCommand");
|
|
8265
|
+
}
|
|
8266
8266
|
};
|
|
8267
|
-
__name(_DescribeLoadBalancersCommand, "DescribeLoadBalancersCommand");
|
|
8268
|
-
var DescribeLoadBalancersCommand = _DescribeLoadBalancersCommand;
|
|
8269
8267
|
|
|
8270
8268
|
// src/commands/DescribeLoadBalancerTargetGroupsCommand.ts
|
|
8271
8269
|
|
|
8272
8270
|
|
|
8273
8271
|
|
|
8274
|
-
var
|
|
8272
|
+
var DescribeLoadBalancerTargetGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8275
8273
|
return [
|
|
8276
8274
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8277
8275
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8278
8276
|
];
|
|
8279
8277
|
}).s("AutoScaling_2011_01_01", "DescribeLoadBalancerTargetGroups", {}).n("AutoScalingClient", "DescribeLoadBalancerTargetGroupsCommand").f(void 0, void 0).ser(se_DescribeLoadBalancerTargetGroupsCommand).de(de_DescribeLoadBalancerTargetGroupsCommand).build() {
|
|
8278
|
+
static {
|
|
8279
|
+
__name(this, "DescribeLoadBalancerTargetGroupsCommand");
|
|
8280
|
+
}
|
|
8280
8281
|
};
|
|
8281
|
-
__name(_DescribeLoadBalancerTargetGroupsCommand, "DescribeLoadBalancerTargetGroupsCommand");
|
|
8282
|
-
var DescribeLoadBalancerTargetGroupsCommand = _DescribeLoadBalancerTargetGroupsCommand;
|
|
8283
8282
|
|
|
8284
8283
|
// src/commands/DescribeMetricCollectionTypesCommand.ts
|
|
8285
8284
|
|
|
8286
8285
|
|
|
8287
8286
|
|
|
8288
|
-
var
|
|
8287
|
+
var DescribeMetricCollectionTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8289
8288
|
return [
|
|
8290
8289
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8291
8290
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8292
8291
|
];
|
|
8293
8292
|
}).s("AutoScaling_2011_01_01", "DescribeMetricCollectionTypes", {}).n("AutoScalingClient", "DescribeMetricCollectionTypesCommand").f(void 0, void 0).ser(se_DescribeMetricCollectionTypesCommand).de(de_DescribeMetricCollectionTypesCommand).build() {
|
|
8293
|
+
static {
|
|
8294
|
+
__name(this, "DescribeMetricCollectionTypesCommand");
|
|
8295
|
+
}
|
|
8294
8296
|
};
|
|
8295
|
-
__name(_DescribeMetricCollectionTypesCommand, "DescribeMetricCollectionTypesCommand");
|
|
8296
|
-
var DescribeMetricCollectionTypesCommand = _DescribeMetricCollectionTypesCommand;
|
|
8297
8297
|
|
|
8298
8298
|
// src/commands/DescribeNotificationConfigurationsCommand.ts
|
|
8299
8299
|
|
|
8300
8300
|
|
|
8301
8301
|
|
|
8302
|
-
var
|
|
8302
|
+
var DescribeNotificationConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8303
8303
|
return [
|
|
8304
8304
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8305
8305
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8306
8306
|
];
|
|
8307
8307
|
}).s("AutoScaling_2011_01_01", "DescribeNotificationConfigurations", {}).n("AutoScalingClient", "DescribeNotificationConfigurationsCommand").f(void 0, void 0).ser(se_DescribeNotificationConfigurationsCommand).de(de_DescribeNotificationConfigurationsCommand).build() {
|
|
8308
|
+
static {
|
|
8309
|
+
__name(this, "DescribeNotificationConfigurationsCommand");
|
|
8310
|
+
}
|
|
8308
8311
|
};
|
|
8309
|
-
__name(_DescribeNotificationConfigurationsCommand, "DescribeNotificationConfigurationsCommand");
|
|
8310
|
-
var DescribeNotificationConfigurationsCommand = _DescribeNotificationConfigurationsCommand;
|
|
8311
8312
|
|
|
8312
8313
|
// src/commands/DescribePoliciesCommand.ts
|
|
8313
8314
|
|
|
8314
8315
|
|
|
8315
8316
|
|
|
8316
|
-
var
|
|
8317
|
+
var DescribePoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8317
8318
|
return [
|
|
8318
8319
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8319
8320
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8320
8321
|
];
|
|
8321
8322
|
}).s("AutoScaling_2011_01_01", "DescribePolicies", {}).n("AutoScalingClient", "DescribePoliciesCommand").f(void 0, void 0).ser(se_DescribePoliciesCommand).de(de_DescribePoliciesCommand).build() {
|
|
8323
|
+
static {
|
|
8324
|
+
__name(this, "DescribePoliciesCommand");
|
|
8325
|
+
}
|
|
8322
8326
|
};
|
|
8323
|
-
__name(_DescribePoliciesCommand, "DescribePoliciesCommand");
|
|
8324
|
-
var DescribePoliciesCommand = _DescribePoliciesCommand;
|
|
8325
8327
|
|
|
8326
8328
|
// src/commands/DescribeScalingActivitiesCommand.ts
|
|
8327
8329
|
|
|
8328
8330
|
|
|
8329
8331
|
|
|
8330
|
-
var
|
|
8332
|
+
var DescribeScalingActivitiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8331
8333
|
return [
|
|
8332
8334
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8333
8335
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8334
8336
|
];
|
|
8335
8337
|
}).s("AutoScaling_2011_01_01", "DescribeScalingActivities", {}).n("AutoScalingClient", "DescribeScalingActivitiesCommand").f(void 0, void 0).ser(se_DescribeScalingActivitiesCommand).de(de_DescribeScalingActivitiesCommand).build() {
|
|
8338
|
+
static {
|
|
8339
|
+
__name(this, "DescribeScalingActivitiesCommand");
|
|
8340
|
+
}
|
|
8336
8341
|
};
|
|
8337
|
-
__name(_DescribeScalingActivitiesCommand, "DescribeScalingActivitiesCommand");
|
|
8338
|
-
var DescribeScalingActivitiesCommand = _DescribeScalingActivitiesCommand;
|
|
8339
8342
|
|
|
8340
8343
|
// src/commands/DescribeScalingProcessTypesCommand.ts
|
|
8341
8344
|
|
|
8342
8345
|
|
|
8343
8346
|
|
|
8344
|
-
var
|
|
8347
|
+
var DescribeScalingProcessTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8345
8348
|
return [
|
|
8346
8349
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8347
8350
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8348
8351
|
];
|
|
8349
8352
|
}).s("AutoScaling_2011_01_01", "DescribeScalingProcessTypes", {}).n("AutoScalingClient", "DescribeScalingProcessTypesCommand").f(void 0, void 0).ser(se_DescribeScalingProcessTypesCommand).de(de_DescribeScalingProcessTypesCommand).build() {
|
|
8353
|
+
static {
|
|
8354
|
+
__name(this, "DescribeScalingProcessTypesCommand");
|
|
8355
|
+
}
|
|
8350
8356
|
};
|
|
8351
|
-
__name(_DescribeScalingProcessTypesCommand, "DescribeScalingProcessTypesCommand");
|
|
8352
|
-
var DescribeScalingProcessTypesCommand = _DescribeScalingProcessTypesCommand;
|
|
8353
8357
|
|
|
8354
8358
|
// src/commands/DescribeScheduledActionsCommand.ts
|
|
8355
8359
|
|
|
8356
8360
|
|
|
8357
8361
|
|
|
8358
|
-
var
|
|
8362
|
+
var DescribeScheduledActionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8359
8363
|
return [
|
|
8360
8364
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8361
8365
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8362
8366
|
];
|
|
8363
8367
|
}).s("AutoScaling_2011_01_01", "DescribeScheduledActions", {}).n("AutoScalingClient", "DescribeScheduledActionsCommand").f(void 0, void 0).ser(se_DescribeScheduledActionsCommand).de(de_DescribeScheduledActionsCommand).build() {
|
|
8368
|
+
static {
|
|
8369
|
+
__name(this, "DescribeScheduledActionsCommand");
|
|
8370
|
+
}
|
|
8364
8371
|
};
|
|
8365
|
-
__name(_DescribeScheduledActionsCommand, "DescribeScheduledActionsCommand");
|
|
8366
|
-
var DescribeScheduledActionsCommand = _DescribeScheduledActionsCommand;
|
|
8367
8372
|
|
|
8368
8373
|
// src/commands/DescribeTagsCommand.ts
|
|
8369
8374
|
|
|
8370
8375
|
|
|
8371
8376
|
|
|
8372
|
-
var
|
|
8377
|
+
var DescribeTagsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8373
8378
|
return [
|
|
8374
8379
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8375
8380
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8376
8381
|
];
|
|
8377
8382
|
}).s("AutoScaling_2011_01_01", "DescribeTags", {}).n("AutoScalingClient", "DescribeTagsCommand").f(void 0, void 0).ser(se_DescribeTagsCommand).de(de_DescribeTagsCommand).build() {
|
|
8383
|
+
static {
|
|
8384
|
+
__name(this, "DescribeTagsCommand");
|
|
8385
|
+
}
|
|
8378
8386
|
};
|
|
8379
|
-
__name(_DescribeTagsCommand, "DescribeTagsCommand");
|
|
8380
|
-
var DescribeTagsCommand = _DescribeTagsCommand;
|
|
8381
8387
|
|
|
8382
8388
|
// src/commands/DescribeTerminationPolicyTypesCommand.ts
|
|
8383
8389
|
|
|
8384
8390
|
|
|
8385
8391
|
|
|
8386
|
-
var
|
|
8392
|
+
var DescribeTerminationPolicyTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8387
8393
|
return [
|
|
8388
8394
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8389
8395
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8390
8396
|
];
|
|
8391
8397
|
}).s("AutoScaling_2011_01_01", "DescribeTerminationPolicyTypes", {}).n("AutoScalingClient", "DescribeTerminationPolicyTypesCommand").f(void 0, void 0).ser(se_DescribeTerminationPolicyTypesCommand).de(de_DescribeTerminationPolicyTypesCommand).build() {
|
|
8398
|
+
static {
|
|
8399
|
+
__name(this, "DescribeTerminationPolicyTypesCommand");
|
|
8400
|
+
}
|
|
8392
8401
|
};
|
|
8393
|
-
__name(_DescribeTerminationPolicyTypesCommand, "DescribeTerminationPolicyTypesCommand");
|
|
8394
|
-
var DescribeTerminationPolicyTypesCommand = _DescribeTerminationPolicyTypesCommand;
|
|
8395
8402
|
|
|
8396
8403
|
// src/commands/DescribeTrafficSourcesCommand.ts
|
|
8397
8404
|
|
|
8398
8405
|
|
|
8399
8406
|
|
|
8400
|
-
var
|
|
8407
|
+
var DescribeTrafficSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8401
8408
|
return [
|
|
8402
8409
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8403
8410
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8404
8411
|
];
|
|
8405
8412
|
}).s("AutoScaling_2011_01_01", "DescribeTrafficSources", {}).n("AutoScalingClient", "DescribeTrafficSourcesCommand").f(void 0, void 0).ser(se_DescribeTrafficSourcesCommand).de(de_DescribeTrafficSourcesCommand).build() {
|
|
8413
|
+
static {
|
|
8414
|
+
__name(this, "DescribeTrafficSourcesCommand");
|
|
8415
|
+
}
|
|
8406
8416
|
};
|
|
8407
|
-
__name(_DescribeTrafficSourcesCommand, "DescribeTrafficSourcesCommand");
|
|
8408
|
-
var DescribeTrafficSourcesCommand = _DescribeTrafficSourcesCommand;
|
|
8409
8417
|
|
|
8410
8418
|
// src/commands/DescribeWarmPoolCommand.ts
|
|
8411
8419
|
|
|
8412
8420
|
|
|
8413
8421
|
|
|
8414
|
-
var
|
|
8422
|
+
var DescribeWarmPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8415
8423
|
return [
|
|
8416
8424
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8417
8425
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8418
8426
|
];
|
|
8419
8427
|
}).s("AutoScaling_2011_01_01", "DescribeWarmPool", {}).n("AutoScalingClient", "DescribeWarmPoolCommand").f(void 0, void 0).ser(se_DescribeWarmPoolCommand).de(de_DescribeWarmPoolCommand).build() {
|
|
8428
|
+
static {
|
|
8429
|
+
__name(this, "DescribeWarmPoolCommand");
|
|
8430
|
+
}
|
|
8420
8431
|
};
|
|
8421
|
-
__name(_DescribeWarmPoolCommand, "DescribeWarmPoolCommand");
|
|
8422
|
-
var DescribeWarmPoolCommand = _DescribeWarmPoolCommand;
|
|
8423
8432
|
|
|
8424
8433
|
// src/commands/DetachInstancesCommand.ts
|
|
8425
8434
|
|
|
8426
8435
|
|
|
8427
8436
|
|
|
8428
|
-
var
|
|
8437
|
+
var DetachInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8429
8438
|
return [
|
|
8430
8439
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8431
8440
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8432
8441
|
];
|
|
8433
8442
|
}).s("AutoScaling_2011_01_01", "DetachInstances", {}).n("AutoScalingClient", "DetachInstancesCommand").f(void 0, void 0).ser(se_DetachInstancesCommand).de(de_DetachInstancesCommand).build() {
|
|
8443
|
+
static {
|
|
8444
|
+
__name(this, "DetachInstancesCommand");
|
|
8445
|
+
}
|
|
8434
8446
|
};
|
|
8435
|
-
__name(_DetachInstancesCommand, "DetachInstancesCommand");
|
|
8436
|
-
var DetachInstancesCommand = _DetachInstancesCommand;
|
|
8437
8447
|
|
|
8438
8448
|
// src/commands/DetachLoadBalancersCommand.ts
|
|
8439
8449
|
|
|
8440
8450
|
|
|
8441
8451
|
|
|
8442
|
-
var
|
|
8452
|
+
var DetachLoadBalancersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8443
8453
|
return [
|
|
8444
8454
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8445
8455
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8446
8456
|
];
|
|
8447
8457
|
}).s("AutoScaling_2011_01_01", "DetachLoadBalancers", {}).n("AutoScalingClient", "DetachLoadBalancersCommand").f(void 0, void 0).ser(se_DetachLoadBalancersCommand).de(de_DetachLoadBalancersCommand).build() {
|
|
8458
|
+
static {
|
|
8459
|
+
__name(this, "DetachLoadBalancersCommand");
|
|
8460
|
+
}
|
|
8448
8461
|
};
|
|
8449
|
-
__name(_DetachLoadBalancersCommand, "DetachLoadBalancersCommand");
|
|
8450
|
-
var DetachLoadBalancersCommand = _DetachLoadBalancersCommand;
|
|
8451
8462
|
|
|
8452
8463
|
// src/commands/DetachLoadBalancerTargetGroupsCommand.ts
|
|
8453
8464
|
|
|
8454
8465
|
|
|
8455
8466
|
|
|
8456
|
-
var
|
|
8467
|
+
var DetachLoadBalancerTargetGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8457
8468
|
return [
|
|
8458
8469
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8459
8470
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8460
8471
|
];
|
|
8461
8472
|
}).s("AutoScaling_2011_01_01", "DetachLoadBalancerTargetGroups", {}).n("AutoScalingClient", "DetachLoadBalancerTargetGroupsCommand").f(void 0, void 0).ser(se_DetachLoadBalancerTargetGroupsCommand).de(de_DetachLoadBalancerTargetGroupsCommand).build() {
|
|
8473
|
+
static {
|
|
8474
|
+
__name(this, "DetachLoadBalancerTargetGroupsCommand");
|
|
8475
|
+
}
|
|
8462
8476
|
};
|
|
8463
|
-
__name(_DetachLoadBalancerTargetGroupsCommand, "DetachLoadBalancerTargetGroupsCommand");
|
|
8464
|
-
var DetachLoadBalancerTargetGroupsCommand = _DetachLoadBalancerTargetGroupsCommand;
|
|
8465
8477
|
|
|
8466
8478
|
// src/commands/DetachTrafficSourcesCommand.ts
|
|
8467
8479
|
|
|
8468
8480
|
|
|
8469
8481
|
|
|
8470
|
-
var
|
|
8482
|
+
var DetachTrafficSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8471
8483
|
return [
|
|
8472
8484
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8473
8485
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8474
8486
|
];
|
|
8475
8487
|
}).s("AutoScaling_2011_01_01", "DetachTrafficSources", {}).n("AutoScalingClient", "DetachTrafficSourcesCommand").f(void 0, void 0).ser(se_DetachTrafficSourcesCommand).de(de_DetachTrafficSourcesCommand).build() {
|
|
8488
|
+
static {
|
|
8489
|
+
__name(this, "DetachTrafficSourcesCommand");
|
|
8490
|
+
}
|
|
8476
8491
|
};
|
|
8477
|
-
__name(_DetachTrafficSourcesCommand, "DetachTrafficSourcesCommand");
|
|
8478
|
-
var DetachTrafficSourcesCommand = _DetachTrafficSourcesCommand;
|
|
8479
8492
|
|
|
8480
8493
|
// src/commands/DisableMetricsCollectionCommand.ts
|
|
8481
8494
|
|
|
8482
8495
|
|
|
8483
8496
|
|
|
8484
|
-
var
|
|
8497
|
+
var DisableMetricsCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8485
8498
|
return [
|
|
8486
8499
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8487
8500
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8488
8501
|
];
|
|
8489
8502
|
}).s("AutoScaling_2011_01_01", "DisableMetricsCollection", {}).n("AutoScalingClient", "DisableMetricsCollectionCommand").f(void 0, void 0).ser(se_DisableMetricsCollectionCommand).de(de_DisableMetricsCollectionCommand).build() {
|
|
8503
|
+
static {
|
|
8504
|
+
__name(this, "DisableMetricsCollectionCommand");
|
|
8505
|
+
}
|
|
8490
8506
|
};
|
|
8491
|
-
__name(_DisableMetricsCollectionCommand, "DisableMetricsCollectionCommand");
|
|
8492
|
-
var DisableMetricsCollectionCommand = _DisableMetricsCollectionCommand;
|
|
8493
8507
|
|
|
8494
8508
|
// src/commands/EnableMetricsCollectionCommand.ts
|
|
8495
8509
|
|
|
8496
8510
|
|
|
8497
8511
|
|
|
8498
|
-
var
|
|
8512
|
+
var EnableMetricsCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8499
8513
|
return [
|
|
8500
8514
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8501
8515
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8502
8516
|
];
|
|
8503
8517
|
}).s("AutoScaling_2011_01_01", "EnableMetricsCollection", {}).n("AutoScalingClient", "EnableMetricsCollectionCommand").f(void 0, void 0).ser(se_EnableMetricsCollectionCommand).de(de_EnableMetricsCollectionCommand).build() {
|
|
8518
|
+
static {
|
|
8519
|
+
__name(this, "EnableMetricsCollectionCommand");
|
|
8520
|
+
}
|
|
8504
8521
|
};
|
|
8505
|
-
__name(_EnableMetricsCollectionCommand, "EnableMetricsCollectionCommand");
|
|
8506
|
-
var EnableMetricsCollectionCommand = _EnableMetricsCollectionCommand;
|
|
8507
8522
|
|
|
8508
8523
|
// src/commands/EnterStandbyCommand.ts
|
|
8509
8524
|
|
|
8510
8525
|
|
|
8511
8526
|
|
|
8512
|
-
var
|
|
8527
|
+
var EnterStandbyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8513
8528
|
return [
|
|
8514
8529
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8515
8530
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8516
8531
|
];
|
|
8517
8532
|
}).s("AutoScaling_2011_01_01", "EnterStandby", {}).n("AutoScalingClient", "EnterStandbyCommand").f(void 0, void 0).ser(se_EnterStandbyCommand).de(de_EnterStandbyCommand).build() {
|
|
8533
|
+
static {
|
|
8534
|
+
__name(this, "EnterStandbyCommand");
|
|
8535
|
+
}
|
|
8518
8536
|
};
|
|
8519
|
-
__name(_EnterStandbyCommand, "EnterStandbyCommand");
|
|
8520
|
-
var EnterStandbyCommand = _EnterStandbyCommand;
|
|
8521
8537
|
|
|
8522
8538
|
// src/commands/ExecutePolicyCommand.ts
|
|
8523
8539
|
|
|
8524
8540
|
|
|
8525
8541
|
|
|
8526
|
-
var
|
|
8542
|
+
var ExecutePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8527
8543
|
return [
|
|
8528
8544
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8529
8545
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8530
8546
|
];
|
|
8531
8547
|
}).s("AutoScaling_2011_01_01", "ExecutePolicy", {}).n("AutoScalingClient", "ExecutePolicyCommand").f(void 0, void 0).ser(se_ExecutePolicyCommand).de(de_ExecutePolicyCommand).build() {
|
|
8548
|
+
static {
|
|
8549
|
+
__name(this, "ExecutePolicyCommand");
|
|
8550
|
+
}
|
|
8532
8551
|
};
|
|
8533
|
-
__name(_ExecutePolicyCommand, "ExecutePolicyCommand");
|
|
8534
|
-
var ExecutePolicyCommand = _ExecutePolicyCommand;
|
|
8535
8552
|
|
|
8536
8553
|
// src/commands/ExitStandbyCommand.ts
|
|
8537
8554
|
|
|
8538
8555
|
|
|
8539
8556
|
|
|
8540
|
-
var
|
|
8557
|
+
var ExitStandbyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8541
8558
|
return [
|
|
8542
8559
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8543
8560
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8544
8561
|
];
|
|
8545
8562
|
}).s("AutoScaling_2011_01_01", "ExitStandby", {}).n("AutoScalingClient", "ExitStandbyCommand").f(void 0, void 0).ser(se_ExitStandbyCommand).de(de_ExitStandbyCommand).build() {
|
|
8563
|
+
static {
|
|
8564
|
+
__name(this, "ExitStandbyCommand");
|
|
8565
|
+
}
|
|
8546
8566
|
};
|
|
8547
|
-
__name(_ExitStandbyCommand, "ExitStandbyCommand");
|
|
8548
|
-
var ExitStandbyCommand = _ExitStandbyCommand;
|
|
8549
8567
|
|
|
8550
8568
|
// src/commands/GetPredictiveScalingForecastCommand.ts
|
|
8551
8569
|
|
|
8552
8570
|
|
|
8553
8571
|
|
|
8554
|
-
var
|
|
8572
|
+
var GetPredictiveScalingForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8555
8573
|
return [
|
|
8556
8574
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8557
8575
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8558
8576
|
];
|
|
8559
8577
|
}).s("AutoScaling_2011_01_01", "GetPredictiveScalingForecast", {}).n("AutoScalingClient", "GetPredictiveScalingForecastCommand").f(void 0, void 0).ser(se_GetPredictiveScalingForecastCommand).de(de_GetPredictiveScalingForecastCommand).build() {
|
|
8578
|
+
static {
|
|
8579
|
+
__name(this, "GetPredictiveScalingForecastCommand");
|
|
8580
|
+
}
|
|
8560
8581
|
};
|
|
8561
|
-
__name(_GetPredictiveScalingForecastCommand, "GetPredictiveScalingForecastCommand");
|
|
8562
|
-
var GetPredictiveScalingForecastCommand = _GetPredictiveScalingForecastCommand;
|
|
8563
8582
|
|
|
8564
8583
|
// src/commands/PutLifecycleHookCommand.ts
|
|
8565
8584
|
|
|
8566
8585
|
|
|
8567
8586
|
|
|
8568
|
-
var
|
|
8587
|
+
var PutLifecycleHookCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8569
8588
|
return [
|
|
8570
8589
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8571
8590
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8572
8591
|
];
|
|
8573
8592
|
}).s("AutoScaling_2011_01_01", "PutLifecycleHook", {}).n("AutoScalingClient", "PutLifecycleHookCommand").f(void 0, void 0).ser(se_PutLifecycleHookCommand).de(de_PutLifecycleHookCommand).build() {
|
|
8593
|
+
static {
|
|
8594
|
+
__name(this, "PutLifecycleHookCommand");
|
|
8595
|
+
}
|
|
8574
8596
|
};
|
|
8575
|
-
__name(_PutLifecycleHookCommand, "PutLifecycleHookCommand");
|
|
8576
|
-
var PutLifecycleHookCommand = _PutLifecycleHookCommand;
|
|
8577
8597
|
|
|
8578
8598
|
// src/commands/PutNotificationConfigurationCommand.ts
|
|
8579
8599
|
|
|
8580
8600
|
|
|
8581
8601
|
|
|
8582
|
-
var
|
|
8602
|
+
var PutNotificationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8583
8603
|
return [
|
|
8584
8604
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8585
8605
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8586
8606
|
];
|
|
8587
8607
|
}).s("AutoScaling_2011_01_01", "PutNotificationConfiguration", {}).n("AutoScalingClient", "PutNotificationConfigurationCommand").f(void 0, void 0).ser(se_PutNotificationConfigurationCommand).de(de_PutNotificationConfigurationCommand).build() {
|
|
8608
|
+
static {
|
|
8609
|
+
__name(this, "PutNotificationConfigurationCommand");
|
|
8610
|
+
}
|
|
8588
8611
|
};
|
|
8589
|
-
__name(_PutNotificationConfigurationCommand, "PutNotificationConfigurationCommand");
|
|
8590
|
-
var PutNotificationConfigurationCommand = _PutNotificationConfigurationCommand;
|
|
8591
8612
|
|
|
8592
8613
|
// src/commands/PutScalingPolicyCommand.ts
|
|
8593
8614
|
|
|
8594
8615
|
|
|
8595
8616
|
|
|
8596
|
-
var
|
|
8617
|
+
var PutScalingPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8597
8618
|
return [
|
|
8598
8619
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8599
8620
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8600
8621
|
];
|
|
8601
8622
|
}).s("AutoScaling_2011_01_01", "PutScalingPolicy", {}).n("AutoScalingClient", "PutScalingPolicyCommand").f(void 0, void 0).ser(se_PutScalingPolicyCommand).de(de_PutScalingPolicyCommand).build() {
|
|
8623
|
+
static {
|
|
8624
|
+
__name(this, "PutScalingPolicyCommand");
|
|
8625
|
+
}
|
|
8602
8626
|
};
|
|
8603
|
-
__name(_PutScalingPolicyCommand, "PutScalingPolicyCommand");
|
|
8604
|
-
var PutScalingPolicyCommand = _PutScalingPolicyCommand;
|
|
8605
8627
|
|
|
8606
8628
|
// src/commands/PutScheduledUpdateGroupActionCommand.ts
|
|
8607
8629
|
|
|
8608
8630
|
|
|
8609
8631
|
|
|
8610
|
-
var
|
|
8632
|
+
var PutScheduledUpdateGroupActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8611
8633
|
return [
|
|
8612
8634
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8613
8635
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8614
8636
|
];
|
|
8615
8637
|
}).s("AutoScaling_2011_01_01", "PutScheduledUpdateGroupAction", {}).n("AutoScalingClient", "PutScheduledUpdateGroupActionCommand").f(void 0, void 0).ser(se_PutScheduledUpdateGroupActionCommand).de(de_PutScheduledUpdateGroupActionCommand).build() {
|
|
8638
|
+
static {
|
|
8639
|
+
__name(this, "PutScheduledUpdateGroupActionCommand");
|
|
8640
|
+
}
|
|
8616
8641
|
};
|
|
8617
|
-
__name(_PutScheduledUpdateGroupActionCommand, "PutScheduledUpdateGroupActionCommand");
|
|
8618
|
-
var PutScheduledUpdateGroupActionCommand = _PutScheduledUpdateGroupActionCommand;
|
|
8619
8642
|
|
|
8620
8643
|
// src/commands/PutWarmPoolCommand.ts
|
|
8621
8644
|
|
|
8622
8645
|
|
|
8623
8646
|
|
|
8624
|
-
var
|
|
8647
|
+
var PutWarmPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8625
8648
|
return [
|
|
8626
8649
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8627
8650
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8628
8651
|
];
|
|
8629
8652
|
}).s("AutoScaling_2011_01_01", "PutWarmPool", {}).n("AutoScalingClient", "PutWarmPoolCommand").f(void 0, void 0).ser(se_PutWarmPoolCommand).de(de_PutWarmPoolCommand).build() {
|
|
8653
|
+
static {
|
|
8654
|
+
__name(this, "PutWarmPoolCommand");
|
|
8655
|
+
}
|
|
8630
8656
|
};
|
|
8631
|
-
__name(_PutWarmPoolCommand, "PutWarmPoolCommand");
|
|
8632
|
-
var PutWarmPoolCommand = _PutWarmPoolCommand;
|
|
8633
8657
|
|
|
8634
8658
|
// src/commands/RecordLifecycleActionHeartbeatCommand.ts
|
|
8635
8659
|
|
|
8636
8660
|
|
|
8637
8661
|
|
|
8638
|
-
var
|
|
8662
|
+
var RecordLifecycleActionHeartbeatCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8639
8663
|
return [
|
|
8640
8664
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8641
8665
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8642
8666
|
];
|
|
8643
8667
|
}).s("AutoScaling_2011_01_01", "RecordLifecycleActionHeartbeat", {}).n("AutoScalingClient", "RecordLifecycleActionHeartbeatCommand").f(void 0, void 0).ser(se_RecordLifecycleActionHeartbeatCommand).de(de_RecordLifecycleActionHeartbeatCommand).build() {
|
|
8668
|
+
static {
|
|
8669
|
+
__name(this, "RecordLifecycleActionHeartbeatCommand");
|
|
8670
|
+
}
|
|
8644
8671
|
};
|
|
8645
|
-
__name(_RecordLifecycleActionHeartbeatCommand, "RecordLifecycleActionHeartbeatCommand");
|
|
8646
|
-
var RecordLifecycleActionHeartbeatCommand = _RecordLifecycleActionHeartbeatCommand;
|
|
8647
8672
|
|
|
8648
8673
|
// src/commands/ResumeProcessesCommand.ts
|
|
8649
8674
|
|
|
8650
8675
|
|
|
8651
8676
|
|
|
8652
|
-
var
|
|
8677
|
+
var ResumeProcessesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8653
8678
|
return [
|
|
8654
8679
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8655
8680
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8656
8681
|
];
|
|
8657
8682
|
}).s("AutoScaling_2011_01_01", "ResumeProcesses", {}).n("AutoScalingClient", "ResumeProcessesCommand").f(void 0, void 0).ser(se_ResumeProcessesCommand).de(de_ResumeProcessesCommand).build() {
|
|
8683
|
+
static {
|
|
8684
|
+
__name(this, "ResumeProcessesCommand");
|
|
8685
|
+
}
|
|
8658
8686
|
};
|
|
8659
|
-
__name(_ResumeProcessesCommand, "ResumeProcessesCommand");
|
|
8660
|
-
var ResumeProcessesCommand = _ResumeProcessesCommand;
|
|
8661
8687
|
|
|
8662
8688
|
// src/commands/RollbackInstanceRefreshCommand.ts
|
|
8663
8689
|
|
|
8664
8690
|
|
|
8665
8691
|
|
|
8666
|
-
var
|
|
8692
|
+
var RollbackInstanceRefreshCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8667
8693
|
return [
|
|
8668
8694
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8669
8695
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8670
8696
|
];
|
|
8671
8697
|
}).s("AutoScaling_2011_01_01", "RollbackInstanceRefresh", {}).n("AutoScalingClient", "RollbackInstanceRefreshCommand").f(void 0, void 0).ser(se_RollbackInstanceRefreshCommand).de(de_RollbackInstanceRefreshCommand).build() {
|
|
8698
|
+
static {
|
|
8699
|
+
__name(this, "RollbackInstanceRefreshCommand");
|
|
8700
|
+
}
|
|
8672
8701
|
};
|
|
8673
|
-
__name(_RollbackInstanceRefreshCommand, "RollbackInstanceRefreshCommand");
|
|
8674
|
-
var RollbackInstanceRefreshCommand = _RollbackInstanceRefreshCommand;
|
|
8675
8702
|
|
|
8676
8703
|
// src/commands/SetDesiredCapacityCommand.ts
|
|
8677
8704
|
|
|
8678
8705
|
|
|
8679
8706
|
|
|
8680
|
-
var
|
|
8707
|
+
var SetDesiredCapacityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8681
8708
|
return [
|
|
8682
8709
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8683
8710
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8684
8711
|
];
|
|
8685
8712
|
}).s("AutoScaling_2011_01_01", "SetDesiredCapacity", {}).n("AutoScalingClient", "SetDesiredCapacityCommand").f(void 0, void 0).ser(se_SetDesiredCapacityCommand).de(de_SetDesiredCapacityCommand).build() {
|
|
8713
|
+
static {
|
|
8714
|
+
__name(this, "SetDesiredCapacityCommand");
|
|
8715
|
+
}
|
|
8686
8716
|
};
|
|
8687
|
-
__name(_SetDesiredCapacityCommand, "SetDesiredCapacityCommand");
|
|
8688
|
-
var SetDesiredCapacityCommand = _SetDesiredCapacityCommand;
|
|
8689
8717
|
|
|
8690
8718
|
// src/commands/SetInstanceHealthCommand.ts
|
|
8691
8719
|
|
|
8692
8720
|
|
|
8693
8721
|
|
|
8694
|
-
var
|
|
8722
|
+
var SetInstanceHealthCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8695
8723
|
return [
|
|
8696
8724
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8697
8725
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8698
8726
|
];
|
|
8699
8727
|
}).s("AutoScaling_2011_01_01", "SetInstanceHealth", {}).n("AutoScalingClient", "SetInstanceHealthCommand").f(void 0, void 0).ser(se_SetInstanceHealthCommand).de(de_SetInstanceHealthCommand).build() {
|
|
8728
|
+
static {
|
|
8729
|
+
__name(this, "SetInstanceHealthCommand");
|
|
8730
|
+
}
|
|
8700
8731
|
};
|
|
8701
|
-
__name(_SetInstanceHealthCommand, "SetInstanceHealthCommand");
|
|
8702
|
-
var SetInstanceHealthCommand = _SetInstanceHealthCommand;
|
|
8703
8732
|
|
|
8704
8733
|
// src/commands/SetInstanceProtectionCommand.ts
|
|
8705
8734
|
|
|
8706
8735
|
|
|
8707
8736
|
|
|
8708
|
-
var
|
|
8737
|
+
var SetInstanceProtectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8709
8738
|
return [
|
|
8710
8739
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8711
8740
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8712
8741
|
];
|
|
8713
8742
|
}).s("AutoScaling_2011_01_01", "SetInstanceProtection", {}).n("AutoScalingClient", "SetInstanceProtectionCommand").f(void 0, void 0).ser(se_SetInstanceProtectionCommand).de(de_SetInstanceProtectionCommand).build() {
|
|
8743
|
+
static {
|
|
8744
|
+
__name(this, "SetInstanceProtectionCommand");
|
|
8745
|
+
}
|
|
8714
8746
|
};
|
|
8715
|
-
__name(_SetInstanceProtectionCommand, "SetInstanceProtectionCommand");
|
|
8716
|
-
var SetInstanceProtectionCommand = _SetInstanceProtectionCommand;
|
|
8717
8747
|
|
|
8718
8748
|
// src/commands/StartInstanceRefreshCommand.ts
|
|
8719
8749
|
|
|
8720
8750
|
|
|
8721
8751
|
|
|
8722
|
-
var
|
|
8752
|
+
var StartInstanceRefreshCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8723
8753
|
return [
|
|
8724
8754
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8725
8755
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8726
8756
|
];
|
|
8727
8757
|
}).s("AutoScaling_2011_01_01", "StartInstanceRefresh", {}).n("AutoScalingClient", "StartInstanceRefreshCommand").f(void 0, void 0).ser(se_StartInstanceRefreshCommand).de(de_StartInstanceRefreshCommand).build() {
|
|
8758
|
+
static {
|
|
8759
|
+
__name(this, "StartInstanceRefreshCommand");
|
|
8760
|
+
}
|
|
8728
8761
|
};
|
|
8729
|
-
__name(_StartInstanceRefreshCommand, "StartInstanceRefreshCommand");
|
|
8730
|
-
var StartInstanceRefreshCommand = _StartInstanceRefreshCommand;
|
|
8731
8762
|
|
|
8732
8763
|
// src/commands/SuspendProcessesCommand.ts
|
|
8733
8764
|
|
|
8734
8765
|
|
|
8735
8766
|
|
|
8736
|
-
var
|
|
8767
|
+
var SuspendProcessesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8737
8768
|
return [
|
|
8738
8769
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8739
8770
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8740
8771
|
];
|
|
8741
8772
|
}).s("AutoScaling_2011_01_01", "SuspendProcesses", {}).n("AutoScalingClient", "SuspendProcessesCommand").f(void 0, void 0).ser(se_SuspendProcessesCommand).de(de_SuspendProcessesCommand).build() {
|
|
8773
|
+
static {
|
|
8774
|
+
__name(this, "SuspendProcessesCommand");
|
|
8775
|
+
}
|
|
8742
8776
|
};
|
|
8743
|
-
__name(_SuspendProcessesCommand, "SuspendProcessesCommand");
|
|
8744
|
-
var SuspendProcessesCommand = _SuspendProcessesCommand;
|
|
8745
8777
|
|
|
8746
8778
|
// src/commands/TerminateInstanceInAutoScalingGroupCommand.ts
|
|
8747
8779
|
|
|
8748
8780
|
|
|
8749
8781
|
|
|
8750
|
-
var
|
|
8782
|
+
var TerminateInstanceInAutoScalingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8751
8783
|
return [
|
|
8752
8784
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8753
8785
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8754
8786
|
];
|
|
8755
8787
|
}).s("AutoScaling_2011_01_01", "TerminateInstanceInAutoScalingGroup", {}).n("AutoScalingClient", "TerminateInstanceInAutoScalingGroupCommand").f(void 0, void 0).ser(se_TerminateInstanceInAutoScalingGroupCommand).de(de_TerminateInstanceInAutoScalingGroupCommand).build() {
|
|
8788
|
+
static {
|
|
8789
|
+
__name(this, "TerminateInstanceInAutoScalingGroupCommand");
|
|
8790
|
+
}
|
|
8756
8791
|
};
|
|
8757
|
-
__name(_TerminateInstanceInAutoScalingGroupCommand, "TerminateInstanceInAutoScalingGroupCommand");
|
|
8758
|
-
var TerminateInstanceInAutoScalingGroupCommand = _TerminateInstanceInAutoScalingGroupCommand;
|
|
8759
8792
|
|
|
8760
8793
|
// src/commands/UpdateAutoScalingGroupCommand.ts
|
|
8761
8794
|
|
|
8762
8795
|
|
|
8763
8796
|
|
|
8764
|
-
var
|
|
8797
|
+
var UpdateAutoScalingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
8765
8798
|
return [
|
|
8766
8799
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
8767
8800
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
8768
8801
|
];
|
|
8769
8802
|
}).s("AutoScaling_2011_01_01", "UpdateAutoScalingGroup", {}).n("AutoScalingClient", "UpdateAutoScalingGroupCommand").f(void 0, void 0).ser(se_UpdateAutoScalingGroupCommand).de(de_UpdateAutoScalingGroupCommand).build() {
|
|
8803
|
+
static {
|
|
8804
|
+
__name(this, "UpdateAutoScalingGroupCommand");
|
|
8805
|
+
}
|
|
8770
8806
|
};
|
|
8771
|
-
__name(_UpdateAutoScalingGroupCommand, "UpdateAutoScalingGroupCommand");
|
|
8772
|
-
var UpdateAutoScalingGroupCommand = _UpdateAutoScalingGroupCommand;
|
|
8773
8807
|
|
|
8774
8808
|
// src/AutoScaling.ts
|
|
8775
8809
|
var commands = {
|
|
@@ -8839,10 +8873,11 @@ var commands = {
|
|
|
8839
8873
|
TerminateInstanceInAutoScalingGroupCommand,
|
|
8840
8874
|
UpdateAutoScalingGroupCommand
|
|
8841
8875
|
};
|
|
8842
|
-
var
|
|
8876
|
+
var AutoScaling = class extends AutoScalingClient {
|
|
8877
|
+
static {
|
|
8878
|
+
__name(this, "AutoScaling");
|
|
8879
|
+
}
|
|
8843
8880
|
};
|
|
8844
|
-
__name(_AutoScaling, "AutoScaling");
|
|
8845
|
-
var AutoScaling = _AutoScaling;
|
|
8846
8881
|
(0, import_smithy_client.createAggregatedClient)(commands, AutoScaling);
|
|
8847
8882
|
|
|
8848
8883
|
// src/pagination/DescribeAutoScalingGroupsPaginator.ts
|