@aws-sdk/client-elastic-beanstalk 3.721.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 +349 -297
- package/dist-es/ElasticBeanstalkClient.js +1 -0
- package/dist-es/models/models_0.js +38 -38
- 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
|
@@ -218,7 +218,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
218
218
|
}, "resolveRuntimeExtensions");
|
|
219
219
|
|
|
220
220
|
// src/ElasticBeanstalkClient.ts
|
|
221
|
-
var
|
|
221
|
+
var ElasticBeanstalkClient = class extends import_smithy_client.Client {
|
|
222
|
+
static {
|
|
223
|
+
__name(this, "ElasticBeanstalkClient");
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* The resolved configuration of ElasticBeanstalkClient class. This is resolved and normalized from the {@link ElasticBeanstalkClientConfig | constructor configuration interface}.
|
|
227
|
+
*/
|
|
228
|
+
config;
|
|
222
229
|
constructor(...[configuration]) {
|
|
223
230
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
224
231
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -228,7 +235,7 @@ var _ElasticBeanstalkClient = class _ElasticBeanstalkClient extends import_smith
|
|
|
228
235
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
229
236
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
230
237
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
231
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
238
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
232
239
|
super(_config_8);
|
|
233
240
|
this.config = _config_8;
|
|
234
241
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -256,8 +263,6 @@ var _ElasticBeanstalkClient = class _ElasticBeanstalkClient extends import_smith
|
|
|
256
263
|
super.destroy();
|
|
257
264
|
}
|
|
258
265
|
};
|
|
259
|
-
__name(_ElasticBeanstalkClient, "ElasticBeanstalkClient");
|
|
260
|
-
var ElasticBeanstalkClient = _ElasticBeanstalkClient;
|
|
261
266
|
|
|
262
267
|
// src/ElasticBeanstalk.ts
|
|
263
268
|
|
|
@@ -274,7 +279,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
274
279
|
|
|
275
280
|
// src/models/ElasticBeanstalkServiceException.ts
|
|
276
281
|
|
|
277
|
-
var
|
|
282
|
+
var ElasticBeanstalkServiceException = class _ElasticBeanstalkServiceException extends import_smithy_client.ServiceException {
|
|
283
|
+
static {
|
|
284
|
+
__name(this, "ElasticBeanstalkServiceException");
|
|
285
|
+
}
|
|
278
286
|
/**
|
|
279
287
|
* @internal
|
|
280
288
|
*/
|
|
@@ -283,11 +291,14 @@ var _ElasticBeanstalkServiceException = class _ElasticBeanstalkServiceException
|
|
|
283
291
|
Object.setPrototypeOf(this, _ElasticBeanstalkServiceException.prototype);
|
|
284
292
|
}
|
|
285
293
|
};
|
|
286
|
-
__name(_ElasticBeanstalkServiceException, "ElasticBeanstalkServiceException");
|
|
287
|
-
var ElasticBeanstalkServiceException = _ElasticBeanstalkServiceException;
|
|
288
294
|
|
|
289
295
|
// src/models/models_0.ts
|
|
290
|
-
var
|
|
296
|
+
var InsufficientPrivilegesException = class _InsufficientPrivilegesException extends ElasticBeanstalkServiceException {
|
|
297
|
+
static {
|
|
298
|
+
__name(this, "InsufficientPrivilegesException");
|
|
299
|
+
}
|
|
300
|
+
name = "InsufficientPrivilegesException";
|
|
301
|
+
$fault = "client";
|
|
291
302
|
/**
|
|
292
303
|
* @internal
|
|
293
304
|
*/
|
|
@@ -297,13 +308,9 @@ var _InsufficientPrivilegesException = class _InsufficientPrivilegesException ex
|
|
|
297
308
|
$fault: "client",
|
|
298
309
|
...opts
|
|
299
310
|
});
|
|
300
|
-
this.name = "InsufficientPrivilegesException";
|
|
301
|
-
this.$fault = "client";
|
|
302
311
|
Object.setPrototypeOf(this, _InsufficientPrivilegesException.prototype);
|
|
303
312
|
}
|
|
304
313
|
};
|
|
305
|
-
__name(_InsufficientPrivilegesException, "InsufficientPrivilegesException");
|
|
306
|
-
var InsufficientPrivilegesException = _InsufficientPrivilegesException;
|
|
307
314
|
var ActionHistoryStatus = {
|
|
308
315
|
Completed: "Completed",
|
|
309
316
|
Failed: "Failed",
|
|
@@ -335,7 +342,12 @@ var ApplicationVersionStatus = {
|
|
|
335
342
|
Processing: "Processing",
|
|
336
343
|
Unprocessed: "Unprocessed"
|
|
337
344
|
};
|
|
338
|
-
var
|
|
345
|
+
var ElasticBeanstalkServiceException2 = class _ElasticBeanstalkServiceException extends ElasticBeanstalkServiceException {
|
|
346
|
+
static {
|
|
347
|
+
__name(this, "ElasticBeanstalkServiceException");
|
|
348
|
+
}
|
|
349
|
+
name = "ElasticBeanstalkServiceException";
|
|
350
|
+
$fault = "client";
|
|
339
351
|
/**
|
|
340
352
|
* @internal
|
|
341
353
|
*/
|
|
@@ -345,14 +357,15 @@ var _ElasticBeanstalkServiceException2 = class _ElasticBeanstalkServiceException
|
|
|
345
357
|
$fault: "client",
|
|
346
358
|
...opts
|
|
347
359
|
});
|
|
348
|
-
this.
|
|
349
|
-
this.$fault = "client";
|
|
350
|
-
Object.setPrototypeOf(this, _ElasticBeanstalkServiceException2.prototype);
|
|
360
|
+
Object.setPrototypeOf(this, _ElasticBeanstalkServiceException.prototype);
|
|
351
361
|
}
|
|
352
362
|
};
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
363
|
+
var ManagedActionInvalidStateException = class _ManagedActionInvalidStateException extends ElasticBeanstalkServiceException {
|
|
364
|
+
static {
|
|
365
|
+
__name(this, "ManagedActionInvalidStateException");
|
|
366
|
+
}
|
|
367
|
+
name = "ManagedActionInvalidStateException";
|
|
368
|
+
$fault = "client";
|
|
356
369
|
/**
|
|
357
370
|
* @internal
|
|
358
371
|
*/
|
|
@@ -362,13 +375,9 @@ var _ManagedActionInvalidStateException = class _ManagedActionInvalidStateExcept
|
|
|
362
375
|
$fault: "client",
|
|
363
376
|
...opts
|
|
364
377
|
});
|
|
365
|
-
this.name = "ManagedActionInvalidStateException";
|
|
366
|
-
this.$fault = "client";
|
|
367
378
|
Object.setPrototypeOf(this, _ManagedActionInvalidStateException.prototype);
|
|
368
379
|
}
|
|
369
380
|
};
|
|
370
|
-
__name(_ManagedActionInvalidStateException, "ManagedActionInvalidStateException");
|
|
371
|
-
var ManagedActionInvalidStateException = _ManagedActionInvalidStateException;
|
|
372
381
|
var EnvironmentHealth = {
|
|
373
382
|
Green: "Green",
|
|
374
383
|
Grey: "Grey",
|
|
@@ -396,7 +405,12 @@ var EnvironmentStatus = {
|
|
|
396
405
|
Terminating: "Terminating",
|
|
397
406
|
Updating: "Updating"
|
|
398
407
|
};
|
|
399
|
-
var
|
|
408
|
+
var TooManyEnvironmentsException = class _TooManyEnvironmentsException extends ElasticBeanstalkServiceException {
|
|
409
|
+
static {
|
|
410
|
+
__name(this, "TooManyEnvironmentsException");
|
|
411
|
+
}
|
|
412
|
+
name = "TooManyEnvironmentsException";
|
|
413
|
+
$fault = "client";
|
|
400
414
|
/**
|
|
401
415
|
* @internal
|
|
402
416
|
*/
|
|
@@ -406,14 +420,15 @@ var _TooManyEnvironmentsException = class _TooManyEnvironmentsException extends
|
|
|
406
420
|
$fault: "client",
|
|
407
421
|
...opts
|
|
408
422
|
});
|
|
409
|
-
this.name = "TooManyEnvironmentsException";
|
|
410
|
-
this.$fault = "client";
|
|
411
423
|
Object.setPrototypeOf(this, _TooManyEnvironmentsException.prototype);
|
|
412
424
|
}
|
|
413
425
|
};
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
426
|
+
var TooManyApplicationsException = class _TooManyApplicationsException extends ElasticBeanstalkServiceException {
|
|
427
|
+
static {
|
|
428
|
+
__name(this, "TooManyApplicationsException");
|
|
429
|
+
}
|
|
430
|
+
name = "TooManyApplicationsException";
|
|
431
|
+
$fault = "client";
|
|
417
432
|
/**
|
|
418
433
|
* @internal
|
|
419
434
|
*/
|
|
@@ -423,14 +438,15 @@ var _TooManyApplicationsException = class _TooManyApplicationsException extends
|
|
|
423
438
|
$fault: "client",
|
|
424
439
|
...opts
|
|
425
440
|
});
|
|
426
|
-
this.name = "TooManyApplicationsException";
|
|
427
|
-
this.$fault = "client";
|
|
428
441
|
Object.setPrototypeOf(this, _TooManyApplicationsException.prototype);
|
|
429
442
|
}
|
|
430
443
|
};
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
444
|
+
var CodeBuildNotInServiceRegionException = class _CodeBuildNotInServiceRegionException extends ElasticBeanstalkServiceException {
|
|
445
|
+
static {
|
|
446
|
+
__name(this, "CodeBuildNotInServiceRegionException");
|
|
447
|
+
}
|
|
448
|
+
name = "CodeBuildNotInServiceRegionException";
|
|
449
|
+
$fault = "client";
|
|
434
450
|
/**
|
|
435
451
|
* @internal
|
|
436
452
|
*/
|
|
@@ -440,19 +456,20 @@ var _CodeBuildNotInServiceRegionException = class _CodeBuildNotInServiceRegionEx
|
|
|
440
456
|
$fault: "client",
|
|
441
457
|
...opts
|
|
442
458
|
});
|
|
443
|
-
this.name = "CodeBuildNotInServiceRegionException";
|
|
444
|
-
this.$fault = "client";
|
|
445
459
|
Object.setPrototypeOf(this, _CodeBuildNotInServiceRegionException.prototype);
|
|
446
460
|
}
|
|
447
461
|
};
|
|
448
|
-
__name(_CodeBuildNotInServiceRegionException, "CodeBuildNotInServiceRegionException");
|
|
449
|
-
var CodeBuildNotInServiceRegionException = _CodeBuildNotInServiceRegionException;
|
|
450
462
|
var ComputeType = {
|
|
451
463
|
BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",
|
|
452
464
|
BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",
|
|
453
465
|
BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL"
|
|
454
466
|
};
|
|
455
|
-
var
|
|
467
|
+
var S3LocationNotInServiceRegionException = class _S3LocationNotInServiceRegionException extends ElasticBeanstalkServiceException {
|
|
468
|
+
static {
|
|
469
|
+
__name(this, "S3LocationNotInServiceRegionException");
|
|
470
|
+
}
|
|
471
|
+
name = "S3LocationNotInServiceRegionException";
|
|
472
|
+
$fault = "client";
|
|
456
473
|
/**
|
|
457
474
|
* @internal
|
|
458
475
|
*/
|
|
@@ -462,14 +479,15 @@ var _S3LocationNotInServiceRegionException = class _S3LocationNotInServiceRegion
|
|
|
462
479
|
$fault: "client",
|
|
463
480
|
...opts
|
|
464
481
|
});
|
|
465
|
-
this.name = "S3LocationNotInServiceRegionException";
|
|
466
|
-
this.$fault = "client";
|
|
467
482
|
Object.setPrototypeOf(this, _S3LocationNotInServiceRegionException.prototype);
|
|
468
483
|
}
|
|
469
484
|
};
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
485
|
+
var TooManyApplicationVersionsException = class _TooManyApplicationVersionsException extends ElasticBeanstalkServiceException {
|
|
486
|
+
static {
|
|
487
|
+
__name(this, "TooManyApplicationVersionsException");
|
|
488
|
+
}
|
|
489
|
+
name = "TooManyApplicationVersionsException";
|
|
490
|
+
$fault = "client";
|
|
473
491
|
/**
|
|
474
492
|
* @internal
|
|
475
493
|
*/
|
|
@@ -479,19 +497,20 @@ var _TooManyApplicationVersionsException = class _TooManyApplicationVersionsExce
|
|
|
479
497
|
$fault: "client",
|
|
480
498
|
...opts
|
|
481
499
|
});
|
|
482
|
-
this.name = "TooManyApplicationVersionsException";
|
|
483
|
-
this.$fault = "client";
|
|
484
500
|
Object.setPrototypeOf(this, _TooManyApplicationVersionsException.prototype);
|
|
485
501
|
}
|
|
486
502
|
};
|
|
487
|
-
__name(_TooManyApplicationVersionsException, "TooManyApplicationVersionsException");
|
|
488
|
-
var TooManyApplicationVersionsException = _TooManyApplicationVersionsException;
|
|
489
503
|
var ConfigurationDeploymentStatus = {
|
|
490
504
|
deployed: "deployed",
|
|
491
505
|
failed: "failed",
|
|
492
506
|
pending: "pending"
|
|
493
507
|
};
|
|
494
|
-
var
|
|
508
|
+
var TooManyBucketsException = class _TooManyBucketsException extends ElasticBeanstalkServiceException {
|
|
509
|
+
static {
|
|
510
|
+
__name(this, "TooManyBucketsException");
|
|
511
|
+
}
|
|
512
|
+
name = "TooManyBucketsException";
|
|
513
|
+
$fault = "client";
|
|
495
514
|
/**
|
|
496
515
|
* @internal
|
|
497
516
|
*/
|
|
@@ -501,14 +520,15 @@ var _TooManyBucketsException = class _TooManyBucketsException extends ElasticBea
|
|
|
501
520
|
$fault: "client",
|
|
502
521
|
...opts
|
|
503
522
|
});
|
|
504
|
-
this.name = "TooManyBucketsException";
|
|
505
|
-
this.$fault = "client";
|
|
506
523
|
Object.setPrototypeOf(this, _TooManyBucketsException.prototype);
|
|
507
524
|
}
|
|
508
525
|
};
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
526
|
+
var TooManyConfigurationTemplatesException = class _TooManyConfigurationTemplatesException extends ElasticBeanstalkServiceException {
|
|
527
|
+
static {
|
|
528
|
+
__name(this, "TooManyConfigurationTemplatesException");
|
|
529
|
+
}
|
|
530
|
+
name = "TooManyConfigurationTemplatesException";
|
|
531
|
+
$fault = "client";
|
|
512
532
|
/**
|
|
513
533
|
* @internal
|
|
514
534
|
*/
|
|
@@ -518,13 +538,9 @@ var _TooManyConfigurationTemplatesException = class _TooManyConfigurationTemplat
|
|
|
518
538
|
$fault: "client",
|
|
519
539
|
...opts
|
|
520
540
|
});
|
|
521
|
-
this.name = "TooManyConfigurationTemplatesException";
|
|
522
|
-
this.$fault = "client";
|
|
523
541
|
Object.setPrototypeOf(this, _TooManyConfigurationTemplatesException.prototype);
|
|
524
542
|
}
|
|
525
543
|
};
|
|
526
|
-
__name(_TooManyConfigurationTemplatesException, "TooManyConfigurationTemplatesException");
|
|
527
|
-
var TooManyConfigurationTemplatesException = _TooManyConfigurationTemplatesException;
|
|
528
544
|
var PlatformStatus = {
|
|
529
545
|
Creating: "Creating",
|
|
530
546
|
Deleted: "Deleted",
|
|
@@ -532,7 +548,12 @@ var PlatformStatus = {
|
|
|
532
548
|
Failed: "Failed",
|
|
533
549
|
Ready: "Ready"
|
|
534
550
|
};
|
|
535
|
-
var
|
|
551
|
+
var TooManyPlatformsException = class _TooManyPlatformsException extends ElasticBeanstalkServiceException {
|
|
552
|
+
static {
|
|
553
|
+
__name(this, "TooManyPlatformsException");
|
|
554
|
+
}
|
|
555
|
+
name = "TooManyPlatformsException";
|
|
556
|
+
$fault = "client";
|
|
536
557
|
/**
|
|
537
558
|
* @internal
|
|
538
559
|
*/
|
|
@@ -542,14 +563,15 @@ var _TooManyPlatformsException = class _TooManyPlatformsException extends Elasti
|
|
|
542
563
|
$fault: "client",
|
|
543
564
|
...opts
|
|
544
565
|
});
|
|
545
|
-
this.name = "TooManyPlatformsException";
|
|
546
|
-
this.$fault = "client";
|
|
547
566
|
Object.setPrototypeOf(this, _TooManyPlatformsException.prototype);
|
|
548
567
|
}
|
|
549
568
|
};
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
569
|
+
var S3SubscriptionRequiredException = class _S3SubscriptionRequiredException extends ElasticBeanstalkServiceException {
|
|
570
|
+
static {
|
|
571
|
+
__name(this, "S3SubscriptionRequiredException");
|
|
572
|
+
}
|
|
573
|
+
name = "S3SubscriptionRequiredException";
|
|
574
|
+
$fault = "client";
|
|
553
575
|
/**
|
|
554
576
|
* @internal
|
|
555
577
|
*/
|
|
@@ -559,14 +581,15 @@ var _S3SubscriptionRequiredException = class _S3SubscriptionRequiredException ex
|
|
|
559
581
|
$fault: "client",
|
|
560
582
|
...opts
|
|
561
583
|
});
|
|
562
|
-
this.name = "S3SubscriptionRequiredException";
|
|
563
|
-
this.$fault = "client";
|
|
564
584
|
Object.setPrototypeOf(this, _S3SubscriptionRequiredException.prototype);
|
|
565
585
|
}
|
|
566
586
|
};
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
587
|
+
var OperationInProgressException = class _OperationInProgressException extends ElasticBeanstalkServiceException {
|
|
588
|
+
static {
|
|
589
|
+
__name(this, "OperationInProgressException");
|
|
590
|
+
}
|
|
591
|
+
name = "OperationInProgressException";
|
|
592
|
+
$fault = "client";
|
|
570
593
|
/**
|
|
571
594
|
* @internal
|
|
572
595
|
*/
|
|
@@ -576,14 +599,15 @@ var _OperationInProgressException = class _OperationInProgressException extends
|
|
|
576
599
|
$fault: "client",
|
|
577
600
|
...opts
|
|
578
601
|
});
|
|
579
|
-
this.name = "OperationInProgressException";
|
|
580
|
-
this.$fault = "client";
|
|
581
602
|
Object.setPrototypeOf(this, _OperationInProgressException.prototype);
|
|
582
603
|
}
|
|
583
604
|
};
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
605
|
+
var SourceBundleDeletionException = class _SourceBundleDeletionException extends ElasticBeanstalkServiceException {
|
|
606
|
+
static {
|
|
607
|
+
__name(this, "SourceBundleDeletionException");
|
|
608
|
+
}
|
|
609
|
+
name = "SourceBundleDeletionException";
|
|
610
|
+
$fault = "client";
|
|
587
611
|
/**
|
|
588
612
|
* @internal
|
|
589
613
|
*/
|
|
@@ -593,14 +617,15 @@ var _SourceBundleDeletionException = class _SourceBundleDeletionException extend
|
|
|
593
617
|
$fault: "client",
|
|
594
618
|
...opts
|
|
595
619
|
});
|
|
596
|
-
this.name = "SourceBundleDeletionException";
|
|
597
|
-
this.$fault = "client";
|
|
598
620
|
Object.setPrototypeOf(this, _SourceBundleDeletionException.prototype);
|
|
599
621
|
}
|
|
600
622
|
};
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
623
|
+
var PlatformVersionStillReferencedException = class _PlatformVersionStillReferencedException extends ElasticBeanstalkServiceException {
|
|
624
|
+
static {
|
|
625
|
+
__name(this, "PlatformVersionStillReferencedException");
|
|
626
|
+
}
|
|
627
|
+
name = "PlatformVersionStillReferencedException";
|
|
628
|
+
$fault = "client";
|
|
604
629
|
/**
|
|
605
630
|
* @internal
|
|
606
631
|
*/
|
|
@@ -610,13 +635,9 @@ var _PlatformVersionStillReferencedException = class _PlatformVersionStillRefere
|
|
|
610
635
|
$fault: "client",
|
|
611
636
|
...opts
|
|
612
637
|
});
|
|
613
|
-
this.name = "PlatformVersionStillReferencedException";
|
|
614
|
-
this.$fault = "client";
|
|
615
638
|
Object.setPrototypeOf(this, _PlatformVersionStillReferencedException.prototype);
|
|
616
639
|
}
|
|
617
640
|
};
|
|
618
|
-
__name(_PlatformVersionStillReferencedException, "PlatformVersionStillReferencedException");
|
|
619
|
-
var PlatformVersionStillReferencedException = _PlatformVersionStillReferencedException;
|
|
620
641
|
var ConfigurationOptionValueType = {
|
|
621
642
|
List: "List",
|
|
622
643
|
Scalar: "Scalar"
|
|
@@ -631,7 +652,12 @@ var EnvironmentHealthAttribute = {
|
|
|
631
652
|
RefreshedAt: "RefreshedAt",
|
|
632
653
|
Status: "Status"
|
|
633
654
|
};
|
|
634
|
-
var
|
|
655
|
+
var InvalidRequestException = class _InvalidRequestException extends ElasticBeanstalkServiceException {
|
|
656
|
+
static {
|
|
657
|
+
__name(this, "InvalidRequestException");
|
|
658
|
+
}
|
|
659
|
+
name = "InvalidRequestException";
|
|
660
|
+
$fault = "client";
|
|
635
661
|
/**
|
|
636
662
|
* @internal
|
|
637
663
|
*/
|
|
@@ -641,13 +667,9 @@ var _InvalidRequestException = class _InvalidRequestException extends ElasticBea
|
|
|
641
667
|
$fault: "client",
|
|
642
668
|
...opts
|
|
643
669
|
});
|
|
644
|
-
this.name = "InvalidRequestException";
|
|
645
|
-
this.$fault = "client";
|
|
646
670
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
647
671
|
}
|
|
648
672
|
};
|
|
649
|
-
__name(_InvalidRequestException, "InvalidRequestException");
|
|
650
|
-
var InvalidRequestException = _InvalidRequestException;
|
|
651
673
|
var FailureType = {
|
|
652
674
|
CancellationFailed: "CancellationFailed",
|
|
653
675
|
InternalFailure: "InternalFailure",
|
|
@@ -678,7 +700,12 @@ var InstancesHealthAttribute = {
|
|
|
678
700
|
RefreshedAt: "RefreshedAt",
|
|
679
701
|
System: "System"
|
|
680
702
|
};
|
|
681
|
-
var
|
|
703
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends ElasticBeanstalkServiceException {
|
|
704
|
+
static {
|
|
705
|
+
__name(this, "ResourceNotFoundException");
|
|
706
|
+
}
|
|
707
|
+
name = "ResourceNotFoundException";
|
|
708
|
+
$fault = "client";
|
|
682
709
|
/**
|
|
683
710
|
* @internal
|
|
684
711
|
*/
|
|
@@ -688,14 +715,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Elasti
|
|
|
688
715
|
$fault: "client",
|
|
689
716
|
...opts
|
|
690
717
|
});
|
|
691
|
-
this.name = "ResourceNotFoundException";
|
|
692
|
-
this.$fault = "client";
|
|
693
718
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
694
719
|
}
|
|
695
720
|
};
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
721
|
+
var ResourceTypeNotSupportedException = class _ResourceTypeNotSupportedException extends ElasticBeanstalkServiceException {
|
|
722
|
+
static {
|
|
723
|
+
__name(this, "ResourceTypeNotSupportedException");
|
|
724
|
+
}
|
|
725
|
+
name = "ResourceTypeNotSupportedException";
|
|
726
|
+
$fault = "client";
|
|
699
727
|
/**
|
|
700
728
|
* @internal
|
|
701
729
|
*/
|
|
@@ -705,18 +733,19 @@ var _ResourceTypeNotSupportedException = class _ResourceTypeNotSupportedExceptio
|
|
|
705
733
|
$fault: "client",
|
|
706
734
|
...opts
|
|
707
735
|
});
|
|
708
|
-
this.name = "ResourceTypeNotSupportedException";
|
|
709
|
-
this.$fault = "client";
|
|
710
736
|
Object.setPrototypeOf(this, _ResourceTypeNotSupportedException.prototype);
|
|
711
737
|
}
|
|
712
738
|
};
|
|
713
|
-
__name(_ResourceTypeNotSupportedException, "ResourceTypeNotSupportedException");
|
|
714
|
-
var ResourceTypeNotSupportedException = _ResourceTypeNotSupportedException;
|
|
715
739
|
var EnvironmentInfoType = {
|
|
716
740
|
bundle: "bundle",
|
|
717
741
|
tail: "tail"
|
|
718
742
|
};
|
|
719
|
-
var
|
|
743
|
+
var TooManyTagsException = class _TooManyTagsException extends ElasticBeanstalkServiceException {
|
|
744
|
+
static {
|
|
745
|
+
__name(this, "TooManyTagsException");
|
|
746
|
+
}
|
|
747
|
+
name = "TooManyTagsException";
|
|
748
|
+
$fault = "client";
|
|
720
749
|
/**
|
|
721
750
|
* @internal
|
|
722
751
|
*/
|
|
@@ -726,13 +755,9 @@ var _TooManyTagsException = class _TooManyTagsException extends ElasticBeanstalk
|
|
|
726
755
|
$fault: "client",
|
|
727
756
|
...opts
|
|
728
757
|
});
|
|
729
|
-
this.name = "TooManyTagsException";
|
|
730
|
-
this.$fault = "client";
|
|
731
758
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
732
759
|
}
|
|
733
760
|
};
|
|
734
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
735
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
736
761
|
var ValidationSeverity = {
|
|
737
762
|
error: "error",
|
|
738
763
|
warning: "warning"
|
|
@@ -2129,7 +2154,6 @@ var se_CheckDNSAvailabilityMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
2129
2154
|
return entries;
|
|
2130
2155
|
}, "se_CheckDNSAvailabilityMessage");
|
|
2131
2156
|
var se_ComposeEnvironmentsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2132
|
-
var _a;
|
|
2133
2157
|
const entries = {};
|
|
2134
2158
|
if (input[_ANp] != null) {
|
|
2135
2159
|
entries[_ANp] = input[_ANp];
|
|
@@ -2139,7 +2163,7 @@ var se_ComposeEnvironmentsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
2139
2163
|
}
|
|
2140
2164
|
if (input[_VL] != null) {
|
|
2141
2165
|
const memberEntries = se_VersionLabels(input[_VL], context);
|
|
2142
|
-
if (
|
|
2166
|
+
if (input[_VL]?.length === 0) {
|
|
2143
2167
|
entries.VersionLabels = [];
|
|
2144
2168
|
}
|
|
2145
2169
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2181,7 +2205,6 @@ var se_ConfigurationOptionSettingsList = /* @__PURE__ */ __name((input, context)
|
|
|
2181
2205
|
return entries;
|
|
2182
2206
|
}, "se_ConfigurationOptionSettingsList");
|
|
2183
2207
|
var se_CreateApplicationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2184
|
-
var _a;
|
|
2185
2208
|
const entries = {};
|
|
2186
2209
|
if (input[_ANp] != null) {
|
|
2187
2210
|
entries[_ANp] = input[_ANp];
|
|
@@ -2198,7 +2221,7 @@ var se_CreateApplicationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
2198
2221
|
}
|
|
2199
2222
|
if (input[_T] != null) {
|
|
2200
2223
|
const memberEntries = se_Tags(input[_T], context);
|
|
2201
|
-
if (
|
|
2224
|
+
if (input[_T]?.length === 0) {
|
|
2202
2225
|
entries.Tags = [];
|
|
2203
2226
|
}
|
|
2204
2227
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2209,7 +2232,6 @@ var se_CreateApplicationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
2209
2232
|
return entries;
|
|
2210
2233
|
}, "se_CreateApplicationMessage");
|
|
2211
2234
|
var se_CreateApplicationVersionMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2212
|
-
var _a;
|
|
2213
2235
|
const entries = {};
|
|
2214
2236
|
if (input[_ANp] != null) {
|
|
2215
2237
|
entries[_ANp] = input[_ANp];
|
|
@@ -2249,7 +2271,7 @@ var se_CreateApplicationVersionMessage = /* @__PURE__ */ __name((input, context)
|
|
|
2249
2271
|
}
|
|
2250
2272
|
if (input[_T] != null) {
|
|
2251
2273
|
const memberEntries = se_Tags(input[_T], context);
|
|
2252
|
-
if (
|
|
2274
|
+
if (input[_T]?.length === 0) {
|
|
2253
2275
|
entries.Tags = [];
|
|
2254
2276
|
}
|
|
2255
2277
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2260,7 +2282,6 @@ var se_CreateApplicationVersionMessage = /* @__PURE__ */ __name((input, context)
|
|
|
2260
2282
|
return entries;
|
|
2261
2283
|
}, "se_CreateApplicationVersionMessage");
|
|
2262
2284
|
var se_CreateConfigurationTemplateMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2263
|
-
var _a, _b;
|
|
2264
2285
|
const entries = {};
|
|
2265
2286
|
if (input[_ANp] != null) {
|
|
2266
2287
|
entries[_ANp] = input[_ANp];
|
|
@@ -2289,7 +2310,7 @@ var se_CreateConfigurationTemplateMessage = /* @__PURE__ */ __name((input, conte
|
|
|
2289
2310
|
}
|
|
2290
2311
|
if (input[_OS] != null) {
|
|
2291
2312
|
const memberEntries = se_ConfigurationOptionSettingsList(input[_OS], context);
|
|
2292
|
-
if (
|
|
2313
|
+
if (input[_OS]?.length === 0) {
|
|
2293
2314
|
entries.OptionSettings = [];
|
|
2294
2315
|
}
|
|
2295
2316
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2299,7 +2320,7 @@ var se_CreateConfigurationTemplateMessage = /* @__PURE__ */ __name((input, conte
|
|
|
2299
2320
|
}
|
|
2300
2321
|
if (input[_T] != null) {
|
|
2301
2322
|
const memberEntries = se_Tags(input[_T], context);
|
|
2302
|
-
if (
|
|
2323
|
+
if (input[_T]?.length === 0) {
|
|
2303
2324
|
entries.Tags = [];
|
|
2304
2325
|
}
|
|
2305
2326
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2310,7 +2331,6 @@ var se_CreateConfigurationTemplateMessage = /* @__PURE__ */ __name((input, conte
|
|
|
2310
2331
|
return entries;
|
|
2311
2332
|
}, "se_CreateConfigurationTemplateMessage");
|
|
2312
2333
|
var se_CreateEnvironmentMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2313
|
-
var _a, _b, _c;
|
|
2314
2334
|
const entries = {};
|
|
2315
2335
|
if (input[_ANp] != null) {
|
|
2316
2336
|
entries[_ANp] = input[_ANp];
|
|
@@ -2336,7 +2356,7 @@ var se_CreateEnvironmentMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
2336
2356
|
}
|
|
2337
2357
|
if (input[_T] != null) {
|
|
2338
2358
|
const memberEntries = se_Tags(input[_T], context);
|
|
2339
|
-
if (
|
|
2359
|
+
if (input[_T]?.length === 0) {
|
|
2340
2360
|
entries.Tags = [];
|
|
2341
2361
|
}
|
|
2342
2362
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2358,7 +2378,7 @@ var se_CreateEnvironmentMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
2358
2378
|
}
|
|
2359
2379
|
if (input[_OS] != null) {
|
|
2360
2380
|
const memberEntries = se_ConfigurationOptionSettingsList(input[_OS], context);
|
|
2361
|
-
if (
|
|
2381
|
+
if (input[_OS]?.length === 0) {
|
|
2362
2382
|
entries.OptionSettings = [];
|
|
2363
2383
|
}
|
|
2364
2384
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2368,7 +2388,7 @@ var se_CreateEnvironmentMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
2368
2388
|
}
|
|
2369
2389
|
if (input[_OTR] != null) {
|
|
2370
2390
|
const memberEntries = se_OptionsSpecifierList(input[_OTR], context);
|
|
2371
|
-
if (
|
|
2391
|
+
if (input[_OTR]?.length === 0) {
|
|
2372
2392
|
entries.OptionsToRemove = [];
|
|
2373
2393
|
}
|
|
2374
2394
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2382,7 +2402,6 @@ var se_CreateEnvironmentMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
2382
2402
|
return entries;
|
|
2383
2403
|
}, "se_CreateEnvironmentMessage");
|
|
2384
2404
|
var se_CreatePlatformVersionRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2385
|
-
var _a, _b;
|
|
2386
2405
|
const entries = {};
|
|
2387
2406
|
if (input[_PN] != null) {
|
|
2388
2407
|
entries[_PN] = input[_PN];
|
|
@@ -2402,7 +2421,7 @@ var se_CreatePlatformVersionRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
2402
2421
|
}
|
|
2403
2422
|
if (input[_OS] != null) {
|
|
2404
2423
|
const memberEntries = se_ConfigurationOptionSettingsList(input[_OS], context);
|
|
2405
|
-
if (
|
|
2424
|
+
if (input[_OS]?.length === 0) {
|
|
2406
2425
|
entries.OptionSettings = [];
|
|
2407
2426
|
}
|
|
2408
2427
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2412,7 +2431,7 @@ var se_CreatePlatformVersionRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
2412
2431
|
}
|
|
2413
2432
|
if (input[_T] != null) {
|
|
2414
2433
|
const memberEntries = se_Tags(input[_T], context);
|
|
2415
|
-
if (
|
|
2434
|
+
if (input[_T]?.length === 0) {
|
|
2416
2435
|
entries.Tags = [];
|
|
2417
2436
|
}
|
|
2418
2437
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2473,11 +2492,10 @@ var se_DeletePlatformVersionRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
2473
2492
|
return entries;
|
|
2474
2493
|
}, "se_DeletePlatformVersionRequest");
|
|
2475
2494
|
var se_DescribeApplicationsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2476
|
-
var _a;
|
|
2477
2495
|
const entries = {};
|
|
2478
2496
|
if (input[_ANpp] != null) {
|
|
2479
2497
|
const memberEntries = se_ApplicationNamesList(input[_ANpp], context);
|
|
2480
|
-
if (
|
|
2498
|
+
if (input[_ANpp]?.length === 0) {
|
|
2481
2499
|
entries.ApplicationNames = [];
|
|
2482
2500
|
}
|
|
2483
2501
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2488,14 +2506,13 @@ var se_DescribeApplicationsMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
2488
2506
|
return entries;
|
|
2489
2507
|
}, "se_DescribeApplicationsMessage");
|
|
2490
2508
|
var se_DescribeApplicationVersionsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2491
|
-
var _a;
|
|
2492
2509
|
const entries = {};
|
|
2493
2510
|
if (input[_ANp] != null) {
|
|
2494
2511
|
entries[_ANp] = input[_ANp];
|
|
2495
2512
|
}
|
|
2496
2513
|
if (input[_VL] != null) {
|
|
2497
2514
|
const memberEntries = se_VersionLabelsList(input[_VL], context);
|
|
2498
|
-
if (
|
|
2515
|
+
if (input[_VL]?.length === 0) {
|
|
2499
2516
|
entries.VersionLabels = [];
|
|
2500
2517
|
}
|
|
2501
2518
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2512,7 +2529,6 @@ var se_DescribeApplicationVersionsMessage = /* @__PURE__ */ __name((input, conte
|
|
|
2512
2529
|
return entries;
|
|
2513
2530
|
}, "se_DescribeApplicationVersionsMessage");
|
|
2514
2531
|
var se_DescribeConfigurationOptionsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2515
|
-
var _a;
|
|
2516
2532
|
const entries = {};
|
|
2517
2533
|
if (input[_ANp] != null) {
|
|
2518
2534
|
entries[_ANp] = input[_ANp];
|
|
@@ -2531,7 +2547,7 @@ var se_DescribeConfigurationOptionsMessage = /* @__PURE__ */ __name((input, cont
|
|
|
2531
2547
|
}
|
|
2532
2548
|
if (input[_O] != null) {
|
|
2533
2549
|
const memberEntries = se_OptionsSpecifierList(input[_O], context);
|
|
2534
|
-
if (
|
|
2550
|
+
if (input[_O]?.length === 0) {
|
|
2535
2551
|
entries.Options = [];
|
|
2536
2552
|
}
|
|
2537
2553
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2555,7 +2571,6 @@ var se_DescribeConfigurationSettingsMessage = /* @__PURE__ */ __name((input, con
|
|
|
2555
2571
|
return entries;
|
|
2556
2572
|
}, "se_DescribeConfigurationSettingsMessage");
|
|
2557
2573
|
var se_DescribeEnvironmentHealthRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2558
|
-
var _a;
|
|
2559
2574
|
const entries = {};
|
|
2560
2575
|
if (input[_EN] != null) {
|
|
2561
2576
|
entries[_EN] = input[_EN];
|
|
@@ -2565,7 +2580,7 @@ var se_DescribeEnvironmentHealthRequest = /* @__PURE__ */ __name((input, context
|
|
|
2565
2580
|
}
|
|
2566
2581
|
if (input[_ANt] != null) {
|
|
2567
2582
|
const memberEntries = se_EnvironmentHealthAttributes(input[_ANt], context);
|
|
2568
|
-
if (
|
|
2583
|
+
if (input[_ANt]?.length === 0) {
|
|
2569
2584
|
entries.AttributeNames = [];
|
|
2570
2585
|
}
|
|
2571
2586
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2615,7 +2630,6 @@ var se_DescribeEnvironmentResourcesMessage = /* @__PURE__ */ __name((input, cont
|
|
|
2615
2630
|
return entries;
|
|
2616
2631
|
}, "se_DescribeEnvironmentResourcesMessage");
|
|
2617
2632
|
var se_DescribeEnvironmentsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
2618
|
-
var _a, _b;
|
|
2619
2633
|
const entries = {};
|
|
2620
2634
|
if (input[_ANp] != null) {
|
|
2621
2635
|
entries[_ANp] = input[_ANp];
|
|
@@ -2625,7 +2639,7 @@ var se_DescribeEnvironmentsMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
2625
2639
|
}
|
|
2626
2640
|
if (input[_EIn] != null) {
|
|
2627
2641
|
const memberEntries = se_EnvironmentIdList(input[_EIn], context);
|
|
2628
|
-
if (
|
|
2642
|
+
if (input[_EIn]?.length === 0) {
|
|
2629
2643
|
entries.EnvironmentIds = [];
|
|
2630
2644
|
}
|
|
2631
2645
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2635,7 +2649,7 @@ var se_DescribeEnvironmentsMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
2635
2649
|
}
|
|
2636
2650
|
if (input[_ENn] != null) {
|
|
2637
2651
|
const memberEntries = se_EnvironmentNamesList(input[_ENn], context);
|
|
2638
|
-
if (
|
|
2652
|
+
if (input[_ENn]?.length === 0) {
|
|
2639
2653
|
entries.EnvironmentNames = [];
|
|
2640
2654
|
}
|
|
2641
2655
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2698,7 +2712,6 @@ var se_DescribeEventsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
2698
2712
|
return entries;
|
|
2699
2713
|
}, "se_DescribeEventsMessage");
|
|
2700
2714
|
var se_DescribeInstancesHealthRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2701
|
-
var _a;
|
|
2702
2715
|
const entries = {};
|
|
2703
2716
|
if (input[_EN] != null) {
|
|
2704
2717
|
entries[_EN] = input[_EN];
|
|
@@ -2708,7 +2721,7 @@ var se_DescribeInstancesHealthRequest = /* @__PURE__ */ __name((input, context)
|
|
|
2708
2721
|
}
|
|
2709
2722
|
if (input[_ANt] != null) {
|
|
2710
2723
|
const memberEntries = se_InstancesHealthAttributes(input[_ANt], context);
|
|
2711
|
-
if (
|
|
2724
|
+
if (input[_ANt]?.length === 0) {
|
|
2712
2725
|
entries.AttributeNames = [];
|
|
2713
2726
|
}
|
|
2714
2727
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2797,11 +2810,10 @@ var se_InstancesHealthAttributes = /* @__PURE__ */ __name((input, context) => {
|
|
|
2797
2810
|
return entries;
|
|
2798
2811
|
}, "se_InstancesHealthAttributes");
|
|
2799
2812
|
var se_ListPlatformBranchesRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2800
|
-
var _a;
|
|
2801
2813
|
const entries = {};
|
|
2802
2814
|
if (input[_F] != null) {
|
|
2803
2815
|
const memberEntries = se_SearchFilters(input[_F], context);
|
|
2804
|
-
if (
|
|
2816
|
+
if (input[_F]?.length === 0) {
|
|
2805
2817
|
entries.Filters = [];
|
|
2806
2818
|
}
|
|
2807
2819
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2818,11 +2830,10 @@ var se_ListPlatformBranchesRequest = /* @__PURE__ */ __name((input, context) =>
|
|
|
2818
2830
|
return entries;
|
|
2819
2831
|
}, "se_ListPlatformBranchesRequest");
|
|
2820
2832
|
var se_ListPlatformVersionsRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2821
|
-
var _a;
|
|
2822
2833
|
const entries = {};
|
|
2823
2834
|
if (input[_F] != null) {
|
|
2824
2835
|
const memberEntries = se_PlatformFilters(input[_F], context);
|
|
2825
|
-
if (
|
|
2836
|
+
if (input[_F]?.length === 0) {
|
|
2826
2837
|
entries.Filters = [];
|
|
2827
2838
|
}
|
|
2828
2839
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -2900,7 +2911,6 @@ var se_OptionsSpecifierList = /* @__PURE__ */ __name((input, context) => {
|
|
|
2900
2911
|
return entries;
|
|
2901
2912
|
}, "se_OptionsSpecifierList");
|
|
2902
2913
|
var se_PlatformFilter = /* @__PURE__ */ __name((input, context) => {
|
|
2903
|
-
var _a;
|
|
2904
2914
|
const entries = {};
|
|
2905
2915
|
if (input[_Ty] != null) {
|
|
2906
2916
|
entries[_Ty] = input[_Ty];
|
|
@@ -2910,7 +2920,7 @@ var se_PlatformFilter = /* @__PURE__ */ __name((input, context) => {
|
|
|
2910
2920
|
}
|
|
2911
2921
|
if (input[_Val] != null) {
|
|
2912
2922
|
const memberEntries = se_PlatformFilterValueList(input[_Val], context);
|
|
2913
|
-
if (
|
|
2923
|
+
if (input[_Val]?.length === 0) {
|
|
2914
2924
|
entries.Values = [];
|
|
2915
2925
|
}
|
|
2916
2926
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3004,7 +3014,6 @@ var se_S3Location = /* @__PURE__ */ __name((input, context) => {
|
|
|
3004
3014
|
return entries;
|
|
3005
3015
|
}, "se_S3Location");
|
|
3006
3016
|
var se_SearchFilter = /* @__PURE__ */ __name((input, context) => {
|
|
3007
|
-
var _a;
|
|
3008
3017
|
const entries = {};
|
|
3009
3018
|
if (input[_At] != null) {
|
|
3010
3019
|
entries[_At] = input[_At];
|
|
@@ -3014,7 +3023,7 @@ var se_SearchFilter = /* @__PURE__ */ __name((input, context) => {
|
|
|
3014
3023
|
}
|
|
3015
3024
|
if (input[_Val] != null) {
|
|
3016
3025
|
const memberEntries = se_SearchFilterValues(input[_Val], context);
|
|
3017
|
-
if (
|
|
3026
|
+
if (input[_Val]?.length === 0) {
|
|
3018
3027
|
entries.Values = [];
|
|
3019
3028
|
}
|
|
3020
3029
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3196,7 +3205,6 @@ var se_UpdateApplicationVersionMessage = /* @__PURE__ */ __name((input, context)
|
|
|
3196
3205
|
return entries;
|
|
3197
3206
|
}, "se_UpdateApplicationVersionMessage");
|
|
3198
3207
|
var se_UpdateConfigurationTemplateMessage = /* @__PURE__ */ __name((input, context) => {
|
|
3199
|
-
var _a, _b;
|
|
3200
3208
|
const entries = {};
|
|
3201
3209
|
if (input[_ANp] != null) {
|
|
3202
3210
|
entries[_ANp] = input[_ANp];
|
|
@@ -3209,7 +3217,7 @@ var se_UpdateConfigurationTemplateMessage = /* @__PURE__ */ __name((input, conte
|
|
|
3209
3217
|
}
|
|
3210
3218
|
if (input[_OS] != null) {
|
|
3211
3219
|
const memberEntries = se_ConfigurationOptionSettingsList(input[_OS], context);
|
|
3212
|
-
if (
|
|
3220
|
+
if (input[_OS]?.length === 0) {
|
|
3213
3221
|
entries.OptionSettings = [];
|
|
3214
3222
|
}
|
|
3215
3223
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3219,7 +3227,7 @@ var se_UpdateConfigurationTemplateMessage = /* @__PURE__ */ __name((input, conte
|
|
|
3219
3227
|
}
|
|
3220
3228
|
if (input[_OTR] != null) {
|
|
3221
3229
|
const memberEntries = se_OptionsSpecifierList(input[_OTR], context);
|
|
3222
|
-
if (
|
|
3230
|
+
if (input[_OTR]?.length === 0) {
|
|
3223
3231
|
entries.OptionsToRemove = [];
|
|
3224
3232
|
}
|
|
3225
3233
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3230,7 +3238,6 @@ var se_UpdateConfigurationTemplateMessage = /* @__PURE__ */ __name((input, conte
|
|
|
3230
3238
|
return entries;
|
|
3231
3239
|
}, "se_UpdateConfigurationTemplateMessage");
|
|
3232
3240
|
var se_UpdateEnvironmentMessage = /* @__PURE__ */ __name((input, context) => {
|
|
3233
|
-
var _a, _b;
|
|
3234
3241
|
const entries = {};
|
|
3235
3242
|
if (input[_ANp] != null) {
|
|
3236
3243
|
entries[_ANp] = input[_ANp];
|
|
@@ -3268,7 +3275,7 @@ var se_UpdateEnvironmentMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
3268
3275
|
}
|
|
3269
3276
|
if (input[_OS] != null) {
|
|
3270
3277
|
const memberEntries = se_ConfigurationOptionSettingsList(input[_OS], context);
|
|
3271
|
-
if (
|
|
3278
|
+
if (input[_OS]?.length === 0) {
|
|
3272
3279
|
entries.OptionSettings = [];
|
|
3273
3280
|
}
|
|
3274
3281
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3278,7 +3285,7 @@ var se_UpdateEnvironmentMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
3278
3285
|
}
|
|
3279
3286
|
if (input[_OTR] != null) {
|
|
3280
3287
|
const memberEntries = se_OptionsSpecifierList(input[_OTR], context);
|
|
3281
|
-
if (
|
|
3288
|
+
if (input[_OTR]?.length === 0) {
|
|
3282
3289
|
entries.OptionsToRemove = [];
|
|
3283
3290
|
}
|
|
3284
3291
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3289,14 +3296,13 @@ var se_UpdateEnvironmentMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
3289
3296
|
return entries;
|
|
3290
3297
|
}, "se_UpdateEnvironmentMessage");
|
|
3291
3298
|
var se_UpdateTagsForResourceMessage = /* @__PURE__ */ __name((input, context) => {
|
|
3292
|
-
var _a, _b;
|
|
3293
3299
|
const entries = {};
|
|
3294
3300
|
if (input[_RA] != null) {
|
|
3295
3301
|
entries[_RA] = input[_RA];
|
|
3296
3302
|
}
|
|
3297
3303
|
if (input[_TTA] != null) {
|
|
3298
3304
|
const memberEntries = se_TagList(input[_TTA], context);
|
|
3299
|
-
if (
|
|
3305
|
+
if (input[_TTA]?.length === 0) {
|
|
3300
3306
|
entries.TagsToAdd = [];
|
|
3301
3307
|
}
|
|
3302
3308
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3306,7 +3312,7 @@ var se_UpdateTagsForResourceMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
3306
3312
|
}
|
|
3307
3313
|
if (input[_TTR] != null) {
|
|
3308
3314
|
const memberEntries = se_TagKeyList(input[_TTR], context);
|
|
3309
|
-
if (
|
|
3315
|
+
if (input[_TTR]?.length === 0) {
|
|
3310
3316
|
entries.TagsToRemove = [];
|
|
3311
3317
|
}
|
|
3312
3318
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -3317,7 +3323,6 @@ var se_UpdateTagsForResourceMessage = /* @__PURE__ */ __name((input, context) =>
|
|
|
3317
3323
|
return entries;
|
|
3318
3324
|
}, "se_UpdateTagsForResourceMessage");
|
|
3319
3325
|
var se_ValidateConfigurationSettingsMessage = /* @__PURE__ */ __name((input, context) => {
|
|
3320
|
-
var _a;
|
|
3321
3326
|
const entries = {};
|
|
3322
3327
|
if (input[_ANp] != null) {
|
|
3323
3328
|
entries[_ANp] = input[_ANp];
|
|
@@ -3330,7 +3335,7 @@ var se_ValidateConfigurationSettingsMessage = /* @__PURE__ */ __name((input, con
|
|
|
3330
3335
|
}
|
|
3331
3336
|
if (input[_OS] != null) {
|
|
3332
3337
|
const memberEntries = se_ConfigurationOptionSettingsList(input[_OS], context);
|
|
3333
|
-
if (
|
|
3338
|
+
if (input[_OS]?.length === 0) {
|
|
3334
3339
|
entries.OptionSettings = [];
|
|
3335
3340
|
}
|
|
3336
3341
|
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
@@ -5267,8 +5272,7 @@ var _m = "member";
|
|
|
5267
5272
|
var _me = "message";
|
|
5268
5273
|
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");
|
|
5269
5274
|
var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
5270
|
-
|
|
5271
|
-
if (((_a = data.Error) == null ? void 0 : _a.Code) !== void 0) {
|
|
5275
|
+
if (data.Error?.Code !== void 0) {
|
|
5272
5276
|
return data.Error.Code;
|
|
5273
5277
|
}
|
|
5274
5278
|
if (output.statusCode == 404) {
|
|
@@ -5277,659 +5281,706 @@ var loadQueryErrorCode = /* @__PURE__ */ __name((output, data) => {
|
|
|
5277
5281
|
}, "loadQueryErrorCode");
|
|
5278
5282
|
|
|
5279
5283
|
// src/commands/AbortEnvironmentUpdateCommand.ts
|
|
5280
|
-
var
|
|
5284
|
+
var AbortEnvironmentUpdateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5281
5285
|
return [
|
|
5282
5286
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5283
5287
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5284
5288
|
];
|
|
5285
5289
|
}).s("AWSElasticBeanstalkService", "AbortEnvironmentUpdate", {}).n("ElasticBeanstalkClient", "AbortEnvironmentUpdateCommand").f(void 0, void 0).ser(se_AbortEnvironmentUpdateCommand).de(de_AbortEnvironmentUpdateCommand).build() {
|
|
5290
|
+
static {
|
|
5291
|
+
__name(this, "AbortEnvironmentUpdateCommand");
|
|
5292
|
+
}
|
|
5286
5293
|
};
|
|
5287
|
-
__name(_AbortEnvironmentUpdateCommand, "AbortEnvironmentUpdateCommand");
|
|
5288
|
-
var AbortEnvironmentUpdateCommand = _AbortEnvironmentUpdateCommand;
|
|
5289
5294
|
|
|
5290
5295
|
// src/commands/ApplyEnvironmentManagedActionCommand.ts
|
|
5291
5296
|
|
|
5292
5297
|
|
|
5293
5298
|
|
|
5294
|
-
var
|
|
5299
|
+
var ApplyEnvironmentManagedActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5295
5300
|
return [
|
|
5296
5301
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5297
5302
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5298
5303
|
];
|
|
5299
5304
|
}).s("AWSElasticBeanstalkService", "ApplyEnvironmentManagedAction", {}).n("ElasticBeanstalkClient", "ApplyEnvironmentManagedActionCommand").f(void 0, void 0).ser(se_ApplyEnvironmentManagedActionCommand).de(de_ApplyEnvironmentManagedActionCommand).build() {
|
|
5305
|
+
static {
|
|
5306
|
+
__name(this, "ApplyEnvironmentManagedActionCommand");
|
|
5307
|
+
}
|
|
5300
5308
|
};
|
|
5301
|
-
__name(_ApplyEnvironmentManagedActionCommand, "ApplyEnvironmentManagedActionCommand");
|
|
5302
|
-
var ApplyEnvironmentManagedActionCommand = _ApplyEnvironmentManagedActionCommand;
|
|
5303
5309
|
|
|
5304
5310
|
// src/commands/AssociateEnvironmentOperationsRoleCommand.ts
|
|
5305
5311
|
|
|
5306
5312
|
|
|
5307
5313
|
|
|
5308
|
-
var
|
|
5314
|
+
var AssociateEnvironmentOperationsRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5309
5315
|
return [
|
|
5310
5316
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5311
5317
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5312
5318
|
];
|
|
5313
5319
|
}).s("AWSElasticBeanstalkService", "AssociateEnvironmentOperationsRole", {}).n("ElasticBeanstalkClient", "AssociateEnvironmentOperationsRoleCommand").f(void 0, void 0).ser(se_AssociateEnvironmentOperationsRoleCommand).de(de_AssociateEnvironmentOperationsRoleCommand).build() {
|
|
5320
|
+
static {
|
|
5321
|
+
__name(this, "AssociateEnvironmentOperationsRoleCommand");
|
|
5322
|
+
}
|
|
5314
5323
|
};
|
|
5315
|
-
__name(_AssociateEnvironmentOperationsRoleCommand, "AssociateEnvironmentOperationsRoleCommand");
|
|
5316
|
-
var AssociateEnvironmentOperationsRoleCommand = _AssociateEnvironmentOperationsRoleCommand;
|
|
5317
5324
|
|
|
5318
5325
|
// src/commands/CheckDNSAvailabilityCommand.ts
|
|
5319
5326
|
|
|
5320
5327
|
|
|
5321
5328
|
|
|
5322
|
-
var
|
|
5329
|
+
var CheckDNSAvailabilityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5323
5330
|
return [
|
|
5324
5331
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5325
5332
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5326
5333
|
];
|
|
5327
5334
|
}).s("AWSElasticBeanstalkService", "CheckDNSAvailability", {}).n("ElasticBeanstalkClient", "CheckDNSAvailabilityCommand").f(void 0, void 0).ser(se_CheckDNSAvailabilityCommand).de(de_CheckDNSAvailabilityCommand).build() {
|
|
5335
|
+
static {
|
|
5336
|
+
__name(this, "CheckDNSAvailabilityCommand");
|
|
5337
|
+
}
|
|
5328
5338
|
};
|
|
5329
|
-
__name(_CheckDNSAvailabilityCommand, "CheckDNSAvailabilityCommand");
|
|
5330
|
-
var CheckDNSAvailabilityCommand = _CheckDNSAvailabilityCommand;
|
|
5331
5339
|
|
|
5332
5340
|
// src/commands/ComposeEnvironmentsCommand.ts
|
|
5333
5341
|
|
|
5334
5342
|
|
|
5335
5343
|
|
|
5336
|
-
var
|
|
5344
|
+
var ComposeEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5337
5345
|
return [
|
|
5338
5346
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5339
5347
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5340
5348
|
];
|
|
5341
5349
|
}).s("AWSElasticBeanstalkService", "ComposeEnvironments", {}).n("ElasticBeanstalkClient", "ComposeEnvironmentsCommand").f(void 0, void 0).ser(se_ComposeEnvironmentsCommand).de(de_ComposeEnvironmentsCommand).build() {
|
|
5350
|
+
static {
|
|
5351
|
+
__name(this, "ComposeEnvironmentsCommand");
|
|
5352
|
+
}
|
|
5342
5353
|
};
|
|
5343
|
-
__name(_ComposeEnvironmentsCommand, "ComposeEnvironmentsCommand");
|
|
5344
|
-
var ComposeEnvironmentsCommand = _ComposeEnvironmentsCommand;
|
|
5345
5354
|
|
|
5346
5355
|
// src/commands/CreateApplicationCommand.ts
|
|
5347
5356
|
|
|
5348
5357
|
|
|
5349
5358
|
|
|
5350
|
-
var
|
|
5359
|
+
var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5351
5360
|
return [
|
|
5352
5361
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5353
5362
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5354
5363
|
];
|
|
5355
5364
|
}).s("AWSElasticBeanstalkService", "CreateApplication", {}).n("ElasticBeanstalkClient", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
|
|
5365
|
+
static {
|
|
5366
|
+
__name(this, "CreateApplicationCommand");
|
|
5367
|
+
}
|
|
5356
5368
|
};
|
|
5357
|
-
__name(_CreateApplicationCommand, "CreateApplicationCommand");
|
|
5358
|
-
var CreateApplicationCommand = _CreateApplicationCommand;
|
|
5359
5369
|
|
|
5360
5370
|
// src/commands/CreateApplicationVersionCommand.ts
|
|
5361
5371
|
|
|
5362
5372
|
|
|
5363
5373
|
|
|
5364
|
-
var
|
|
5374
|
+
var CreateApplicationVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5365
5375
|
return [
|
|
5366
5376
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5367
5377
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5368
5378
|
];
|
|
5369
5379
|
}).s("AWSElasticBeanstalkService", "CreateApplicationVersion", {}).n("ElasticBeanstalkClient", "CreateApplicationVersionCommand").f(void 0, void 0).ser(se_CreateApplicationVersionCommand).de(de_CreateApplicationVersionCommand).build() {
|
|
5380
|
+
static {
|
|
5381
|
+
__name(this, "CreateApplicationVersionCommand");
|
|
5382
|
+
}
|
|
5370
5383
|
};
|
|
5371
|
-
__name(_CreateApplicationVersionCommand, "CreateApplicationVersionCommand");
|
|
5372
|
-
var CreateApplicationVersionCommand = _CreateApplicationVersionCommand;
|
|
5373
5384
|
|
|
5374
5385
|
// src/commands/CreateConfigurationTemplateCommand.ts
|
|
5375
5386
|
|
|
5376
5387
|
|
|
5377
5388
|
|
|
5378
|
-
var
|
|
5389
|
+
var CreateConfigurationTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5379
5390
|
return [
|
|
5380
5391
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5381
5392
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5382
5393
|
];
|
|
5383
5394
|
}).s("AWSElasticBeanstalkService", "CreateConfigurationTemplate", {}).n("ElasticBeanstalkClient", "CreateConfigurationTemplateCommand").f(void 0, void 0).ser(se_CreateConfigurationTemplateCommand).de(de_CreateConfigurationTemplateCommand).build() {
|
|
5395
|
+
static {
|
|
5396
|
+
__name(this, "CreateConfigurationTemplateCommand");
|
|
5397
|
+
}
|
|
5384
5398
|
};
|
|
5385
|
-
__name(_CreateConfigurationTemplateCommand, "CreateConfigurationTemplateCommand");
|
|
5386
|
-
var CreateConfigurationTemplateCommand = _CreateConfigurationTemplateCommand;
|
|
5387
5399
|
|
|
5388
5400
|
// src/commands/CreateEnvironmentCommand.ts
|
|
5389
5401
|
|
|
5390
5402
|
|
|
5391
5403
|
|
|
5392
|
-
var
|
|
5404
|
+
var CreateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5393
5405
|
return [
|
|
5394
5406
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5395
5407
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5396
5408
|
];
|
|
5397
5409
|
}).s("AWSElasticBeanstalkService", "CreateEnvironment", {}).n("ElasticBeanstalkClient", "CreateEnvironmentCommand").f(void 0, void 0).ser(se_CreateEnvironmentCommand).de(de_CreateEnvironmentCommand).build() {
|
|
5410
|
+
static {
|
|
5411
|
+
__name(this, "CreateEnvironmentCommand");
|
|
5412
|
+
}
|
|
5398
5413
|
};
|
|
5399
|
-
__name(_CreateEnvironmentCommand, "CreateEnvironmentCommand");
|
|
5400
|
-
var CreateEnvironmentCommand = _CreateEnvironmentCommand;
|
|
5401
5414
|
|
|
5402
5415
|
// src/commands/CreatePlatformVersionCommand.ts
|
|
5403
5416
|
|
|
5404
5417
|
|
|
5405
5418
|
|
|
5406
|
-
var
|
|
5419
|
+
var CreatePlatformVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5407
5420
|
return [
|
|
5408
5421
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5409
5422
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5410
5423
|
];
|
|
5411
5424
|
}).s("AWSElasticBeanstalkService", "CreatePlatformVersion", {}).n("ElasticBeanstalkClient", "CreatePlatformVersionCommand").f(void 0, void 0).ser(se_CreatePlatformVersionCommand).de(de_CreatePlatformVersionCommand).build() {
|
|
5425
|
+
static {
|
|
5426
|
+
__name(this, "CreatePlatformVersionCommand");
|
|
5427
|
+
}
|
|
5412
5428
|
};
|
|
5413
|
-
__name(_CreatePlatformVersionCommand, "CreatePlatformVersionCommand");
|
|
5414
|
-
var CreatePlatformVersionCommand = _CreatePlatformVersionCommand;
|
|
5415
5429
|
|
|
5416
5430
|
// src/commands/CreateStorageLocationCommand.ts
|
|
5417
5431
|
|
|
5418
5432
|
|
|
5419
5433
|
|
|
5420
|
-
var
|
|
5434
|
+
var CreateStorageLocationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5421
5435
|
return [
|
|
5422
5436
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5423
5437
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5424
5438
|
];
|
|
5425
5439
|
}).s("AWSElasticBeanstalkService", "CreateStorageLocation", {}).n("ElasticBeanstalkClient", "CreateStorageLocationCommand").f(void 0, void 0).ser(se_CreateStorageLocationCommand).de(de_CreateStorageLocationCommand).build() {
|
|
5440
|
+
static {
|
|
5441
|
+
__name(this, "CreateStorageLocationCommand");
|
|
5442
|
+
}
|
|
5426
5443
|
};
|
|
5427
|
-
__name(_CreateStorageLocationCommand, "CreateStorageLocationCommand");
|
|
5428
|
-
var CreateStorageLocationCommand = _CreateStorageLocationCommand;
|
|
5429
5444
|
|
|
5430
5445
|
// src/commands/DeleteApplicationCommand.ts
|
|
5431
5446
|
|
|
5432
5447
|
|
|
5433
5448
|
|
|
5434
|
-
var
|
|
5449
|
+
var DeleteApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5435
5450
|
return [
|
|
5436
5451
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5437
5452
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5438
5453
|
];
|
|
5439
5454
|
}).s("AWSElasticBeanstalkService", "DeleteApplication", {}).n("ElasticBeanstalkClient", "DeleteApplicationCommand").f(void 0, void 0).ser(se_DeleteApplicationCommand).de(de_DeleteApplicationCommand).build() {
|
|
5455
|
+
static {
|
|
5456
|
+
__name(this, "DeleteApplicationCommand");
|
|
5457
|
+
}
|
|
5440
5458
|
};
|
|
5441
|
-
__name(_DeleteApplicationCommand, "DeleteApplicationCommand");
|
|
5442
|
-
var DeleteApplicationCommand = _DeleteApplicationCommand;
|
|
5443
5459
|
|
|
5444
5460
|
// src/commands/DeleteApplicationVersionCommand.ts
|
|
5445
5461
|
|
|
5446
5462
|
|
|
5447
5463
|
|
|
5448
|
-
var
|
|
5464
|
+
var DeleteApplicationVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5449
5465
|
return [
|
|
5450
5466
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5451
5467
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5452
5468
|
];
|
|
5453
5469
|
}).s("AWSElasticBeanstalkService", "DeleteApplicationVersion", {}).n("ElasticBeanstalkClient", "DeleteApplicationVersionCommand").f(void 0, void 0).ser(se_DeleteApplicationVersionCommand).de(de_DeleteApplicationVersionCommand).build() {
|
|
5470
|
+
static {
|
|
5471
|
+
__name(this, "DeleteApplicationVersionCommand");
|
|
5472
|
+
}
|
|
5454
5473
|
};
|
|
5455
|
-
__name(_DeleteApplicationVersionCommand, "DeleteApplicationVersionCommand");
|
|
5456
|
-
var DeleteApplicationVersionCommand = _DeleteApplicationVersionCommand;
|
|
5457
5474
|
|
|
5458
5475
|
// src/commands/DeleteConfigurationTemplateCommand.ts
|
|
5459
5476
|
|
|
5460
5477
|
|
|
5461
5478
|
|
|
5462
|
-
var
|
|
5479
|
+
var DeleteConfigurationTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5463
5480
|
return [
|
|
5464
5481
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5465
5482
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5466
5483
|
];
|
|
5467
5484
|
}).s("AWSElasticBeanstalkService", "DeleteConfigurationTemplate", {}).n("ElasticBeanstalkClient", "DeleteConfigurationTemplateCommand").f(void 0, void 0).ser(se_DeleteConfigurationTemplateCommand).de(de_DeleteConfigurationTemplateCommand).build() {
|
|
5485
|
+
static {
|
|
5486
|
+
__name(this, "DeleteConfigurationTemplateCommand");
|
|
5487
|
+
}
|
|
5468
5488
|
};
|
|
5469
|
-
__name(_DeleteConfigurationTemplateCommand, "DeleteConfigurationTemplateCommand");
|
|
5470
|
-
var DeleteConfigurationTemplateCommand = _DeleteConfigurationTemplateCommand;
|
|
5471
5489
|
|
|
5472
5490
|
// src/commands/DeleteEnvironmentConfigurationCommand.ts
|
|
5473
5491
|
|
|
5474
5492
|
|
|
5475
5493
|
|
|
5476
|
-
var
|
|
5494
|
+
var DeleteEnvironmentConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5477
5495
|
return [
|
|
5478
5496
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5479
5497
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5480
5498
|
];
|
|
5481
5499
|
}).s("AWSElasticBeanstalkService", "DeleteEnvironmentConfiguration", {}).n("ElasticBeanstalkClient", "DeleteEnvironmentConfigurationCommand").f(void 0, void 0).ser(se_DeleteEnvironmentConfigurationCommand).de(de_DeleteEnvironmentConfigurationCommand).build() {
|
|
5500
|
+
static {
|
|
5501
|
+
__name(this, "DeleteEnvironmentConfigurationCommand");
|
|
5502
|
+
}
|
|
5482
5503
|
};
|
|
5483
|
-
__name(_DeleteEnvironmentConfigurationCommand, "DeleteEnvironmentConfigurationCommand");
|
|
5484
|
-
var DeleteEnvironmentConfigurationCommand = _DeleteEnvironmentConfigurationCommand;
|
|
5485
5504
|
|
|
5486
5505
|
// src/commands/DeletePlatformVersionCommand.ts
|
|
5487
5506
|
|
|
5488
5507
|
|
|
5489
5508
|
|
|
5490
|
-
var
|
|
5509
|
+
var DeletePlatformVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5491
5510
|
return [
|
|
5492
5511
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5493
5512
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5494
5513
|
];
|
|
5495
5514
|
}).s("AWSElasticBeanstalkService", "DeletePlatformVersion", {}).n("ElasticBeanstalkClient", "DeletePlatformVersionCommand").f(void 0, void 0).ser(se_DeletePlatformVersionCommand).de(de_DeletePlatformVersionCommand).build() {
|
|
5515
|
+
static {
|
|
5516
|
+
__name(this, "DeletePlatformVersionCommand");
|
|
5517
|
+
}
|
|
5496
5518
|
};
|
|
5497
|
-
__name(_DeletePlatformVersionCommand, "DeletePlatformVersionCommand");
|
|
5498
|
-
var DeletePlatformVersionCommand = _DeletePlatformVersionCommand;
|
|
5499
5519
|
|
|
5500
5520
|
// src/commands/DescribeAccountAttributesCommand.ts
|
|
5501
5521
|
|
|
5502
5522
|
|
|
5503
5523
|
|
|
5504
|
-
var
|
|
5524
|
+
var DescribeAccountAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5505
5525
|
return [
|
|
5506
5526
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5507
5527
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5508
5528
|
];
|
|
5509
5529
|
}).s("AWSElasticBeanstalkService", "DescribeAccountAttributes", {}).n("ElasticBeanstalkClient", "DescribeAccountAttributesCommand").f(void 0, void 0).ser(se_DescribeAccountAttributesCommand).de(de_DescribeAccountAttributesCommand).build() {
|
|
5530
|
+
static {
|
|
5531
|
+
__name(this, "DescribeAccountAttributesCommand");
|
|
5532
|
+
}
|
|
5510
5533
|
};
|
|
5511
|
-
__name(_DescribeAccountAttributesCommand, "DescribeAccountAttributesCommand");
|
|
5512
|
-
var DescribeAccountAttributesCommand = _DescribeAccountAttributesCommand;
|
|
5513
5534
|
|
|
5514
5535
|
// src/commands/DescribeApplicationsCommand.ts
|
|
5515
5536
|
|
|
5516
5537
|
|
|
5517
5538
|
|
|
5518
|
-
var
|
|
5539
|
+
var DescribeApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5519
5540
|
return [
|
|
5520
5541
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5521
5542
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5522
5543
|
];
|
|
5523
5544
|
}).s("AWSElasticBeanstalkService", "DescribeApplications", {}).n("ElasticBeanstalkClient", "DescribeApplicationsCommand").f(void 0, void 0).ser(se_DescribeApplicationsCommand).de(de_DescribeApplicationsCommand).build() {
|
|
5545
|
+
static {
|
|
5546
|
+
__name(this, "DescribeApplicationsCommand");
|
|
5547
|
+
}
|
|
5524
5548
|
};
|
|
5525
|
-
__name(_DescribeApplicationsCommand, "DescribeApplicationsCommand");
|
|
5526
|
-
var DescribeApplicationsCommand = _DescribeApplicationsCommand;
|
|
5527
5549
|
|
|
5528
5550
|
// src/commands/DescribeApplicationVersionsCommand.ts
|
|
5529
5551
|
|
|
5530
5552
|
|
|
5531
5553
|
|
|
5532
|
-
var
|
|
5554
|
+
var DescribeApplicationVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5533
5555
|
return [
|
|
5534
5556
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5535
5557
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5536
5558
|
];
|
|
5537
5559
|
}).s("AWSElasticBeanstalkService", "DescribeApplicationVersions", {}).n("ElasticBeanstalkClient", "DescribeApplicationVersionsCommand").f(void 0, void 0).ser(se_DescribeApplicationVersionsCommand).de(de_DescribeApplicationVersionsCommand).build() {
|
|
5560
|
+
static {
|
|
5561
|
+
__name(this, "DescribeApplicationVersionsCommand");
|
|
5562
|
+
}
|
|
5538
5563
|
};
|
|
5539
|
-
__name(_DescribeApplicationVersionsCommand, "DescribeApplicationVersionsCommand");
|
|
5540
|
-
var DescribeApplicationVersionsCommand = _DescribeApplicationVersionsCommand;
|
|
5541
5564
|
|
|
5542
5565
|
// src/commands/DescribeConfigurationOptionsCommand.ts
|
|
5543
5566
|
|
|
5544
5567
|
|
|
5545
5568
|
|
|
5546
|
-
var
|
|
5569
|
+
var DescribeConfigurationOptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5547
5570
|
return [
|
|
5548
5571
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5549
5572
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5550
5573
|
];
|
|
5551
5574
|
}).s("AWSElasticBeanstalkService", "DescribeConfigurationOptions", {}).n("ElasticBeanstalkClient", "DescribeConfigurationOptionsCommand").f(void 0, void 0).ser(se_DescribeConfigurationOptionsCommand).de(de_DescribeConfigurationOptionsCommand).build() {
|
|
5575
|
+
static {
|
|
5576
|
+
__name(this, "DescribeConfigurationOptionsCommand");
|
|
5577
|
+
}
|
|
5552
5578
|
};
|
|
5553
|
-
__name(_DescribeConfigurationOptionsCommand, "DescribeConfigurationOptionsCommand");
|
|
5554
|
-
var DescribeConfigurationOptionsCommand = _DescribeConfigurationOptionsCommand;
|
|
5555
5579
|
|
|
5556
5580
|
// src/commands/DescribeConfigurationSettingsCommand.ts
|
|
5557
5581
|
|
|
5558
5582
|
|
|
5559
5583
|
|
|
5560
|
-
var
|
|
5584
|
+
var DescribeConfigurationSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5561
5585
|
return [
|
|
5562
5586
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5563
5587
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5564
5588
|
];
|
|
5565
5589
|
}).s("AWSElasticBeanstalkService", "DescribeConfigurationSettings", {}).n("ElasticBeanstalkClient", "DescribeConfigurationSettingsCommand").f(void 0, void 0).ser(se_DescribeConfigurationSettingsCommand).de(de_DescribeConfigurationSettingsCommand).build() {
|
|
5590
|
+
static {
|
|
5591
|
+
__name(this, "DescribeConfigurationSettingsCommand");
|
|
5592
|
+
}
|
|
5566
5593
|
};
|
|
5567
|
-
__name(_DescribeConfigurationSettingsCommand, "DescribeConfigurationSettingsCommand");
|
|
5568
|
-
var DescribeConfigurationSettingsCommand = _DescribeConfigurationSettingsCommand;
|
|
5569
5594
|
|
|
5570
5595
|
// src/commands/DescribeEnvironmentHealthCommand.ts
|
|
5571
5596
|
|
|
5572
5597
|
|
|
5573
5598
|
|
|
5574
|
-
var
|
|
5599
|
+
var DescribeEnvironmentHealthCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5575
5600
|
return [
|
|
5576
5601
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5577
5602
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5578
5603
|
];
|
|
5579
5604
|
}).s("AWSElasticBeanstalkService", "DescribeEnvironmentHealth", {}).n("ElasticBeanstalkClient", "DescribeEnvironmentHealthCommand").f(void 0, void 0).ser(se_DescribeEnvironmentHealthCommand).de(de_DescribeEnvironmentHealthCommand).build() {
|
|
5605
|
+
static {
|
|
5606
|
+
__name(this, "DescribeEnvironmentHealthCommand");
|
|
5607
|
+
}
|
|
5580
5608
|
};
|
|
5581
|
-
__name(_DescribeEnvironmentHealthCommand, "DescribeEnvironmentHealthCommand");
|
|
5582
|
-
var DescribeEnvironmentHealthCommand = _DescribeEnvironmentHealthCommand;
|
|
5583
5609
|
|
|
5584
5610
|
// src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts
|
|
5585
5611
|
|
|
5586
5612
|
|
|
5587
5613
|
|
|
5588
|
-
var
|
|
5614
|
+
var DescribeEnvironmentManagedActionHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5589
5615
|
return [
|
|
5590
5616
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5591
5617
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5592
5618
|
];
|
|
5593
5619
|
}).s("AWSElasticBeanstalkService", "DescribeEnvironmentManagedActionHistory", {}).n("ElasticBeanstalkClient", "DescribeEnvironmentManagedActionHistoryCommand").f(void 0, void 0).ser(se_DescribeEnvironmentManagedActionHistoryCommand).de(de_DescribeEnvironmentManagedActionHistoryCommand).build() {
|
|
5620
|
+
static {
|
|
5621
|
+
__name(this, "DescribeEnvironmentManagedActionHistoryCommand");
|
|
5622
|
+
}
|
|
5594
5623
|
};
|
|
5595
|
-
__name(_DescribeEnvironmentManagedActionHistoryCommand, "DescribeEnvironmentManagedActionHistoryCommand");
|
|
5596
|
-
var DescribeEnvironmentManagedActionHistoryCommand = _DescribeEnvironmentManagedActionHistoryCommand;
|
|
5597
5624
|
|
|
5598
5625
|
// src/commands/DescribeEnvironmentManagedActionsCommand.ts
|
|
5599
5626
|
|
|
5600
5627
|
|
|
5601
5628
|
|
|
5602
|
-
var
|
|
5629
|
+
var DescribeEnvironmentManagedActionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5603
5630
|
return [
|
|
5604
5631
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5605
5632
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5606
5633
|
];
|
|
5607
5634
|
}).s("AWSElasticBeanstalkService", "DescribeEnvironmentManagedActions", {}).n("ElasticBeanstalkClient", "DescribeEnvironmentManagedActionsCommand").f(void 0, void 0).ser(se_DescribeEnvironmentManagedActionsCommand).de(de_DescribeEnvironmentManagedActionsCommand).build() {
|
|
5635
|
+
static {
|
|
5636
|
+
__name(this, "DescribeEnvironmentManagedActionsCommand");
|
|
5637
|
+
}
|
|
5608
5638
|
};
|
|
5609
|
-
__name(_DescribeEnvironmentManagedActionsCommand, "DescribeEnvironmentManagedActionsCommand");
|
|
5610
|
-
var DescribeEnvironmentManagedActionsCommand = _DescribeEnvironmentManagedActionsCommand;
|
|
5611
5639
|
|
|
5612
5640
|
// src/commands/DescribeEnvironmentResourcesCommand.ts
|
|
5613
5641
|
|
|
5614
5642
|
|
|
5615
5643
|
|
|
5616
|
-
var
|
|
5644
|
+
var DescribeEnvironmentResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5617
5645
|
return [
|
|
5618
5646
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5619
5647
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5620
5648
|
];
|
|
5621
5649
|
}).s("AWSElasticBeanstalkService", "DescribeEnvironmentResources", {}).n("ElasticBeanstalkClient", "DescribeEnvironmentResourcesCommand").f(void 0, void 0).ser(se_DescribeEnvironmentResourcesCommand).de(de_DescribeEnvironmentResourcesCommand).build() {
|
|
5650
|
+
static {
|
|
5651
|
+
__name(this, "DescribeEnvironmentResourcesCommand");
|
|
5652
|
+
}
|
|
5622
5653
|
};
|
|
5623
|
-
__name(_DescribeEnvironmentResourcesCommand, "DescribeEnvironmentResourcesCommand");
|
|
5624
|
-
var DescribeEnvironmentResourcesCommand = _DescribeEnvironmentResourcesCommand;
|
|
5625
5654
|
|
|
5626
5655
|
// src/commands/DescribeEnvironmentsCommand.ts
|
|
5627
5656
|
|
|
5628
5657
|
|
|
5629
5658
|
|
|
5630
|
-
var
|
|
5659
|
+
var DescribeEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5631
5660
|
return [
|
|
5632
5661
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5633
5662
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5634
5663
|
];
|
|
5635
5664
|
}).s("AWSElasticBeanstalkService", "DescribeEnvironments", {}).n("ElasticBeanstalkClient", "DescribeEnvironmentsCommand").f(void 0, void 0).ser(se_DescribeEnvironmentsCommand).de(de_DescribeEnvironmentsCommand).build() {
|
|
5665
|
+
static {
|
|
5666
|
+
__name(this, "DescribeEnvironmentsCommand");
|
|
5667
|
+
}
|
|
5636
5668
|
};
|
|
5637
|
-
__name(_DescribeEnvironmentsCommand, "DescribeEnvironmentsCommand");
|
|
5638
|
-
var DescribeEnvironmentsCommand = _DescribeEnvironmentsCommand;
|
|
5639
5669
|
|
|
5640
5670
|
// src/commands/DescribeEventsCommand.ts
|
|
5641
5671
|
|
|
5642
5672
|
|
|
5643
5673
|
|
|
5644
|
-
var
|
|
5674
|
+
var DescribeEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5645
5675
|
return [
|
|
5646
5676
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5647
5677
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5648
5678
|
];
|
|
5649
5679
|
}).s("AWSElasticBeanstalkService", "DescribeEvents", {}).n("ElasticBeanstalkClient", "DescribeEventsCommand").f(void 0, void 0).ser(se_DescribeEventsCommand).de(de_DescribeEventsCommand).build() {
|
|
5680
|
+
static {
|
|
5681
|
+
__name(this, "DescribeEventsCommand");
|
|
5682
|
+
}
|
|
5650
5683
|
};
|
|
5651
|
-
__name(_DescribeEventsCommand, "DescribeEventsCommand");
|
|
5652
|
-
var DescribeEventsCommand = _DescribeEventsCommand;
|
|
5653
5684
|
|
|
5654
5685
|
// src/commands/DescribeInstancesHealthCommand.ts
|
|
5655
5686
|
|
|
5656
5687
|
|
|
5657
5688
|
|
|
5658
|
-
var
|
|
5689
|
+
var DescribeInstancesHealthCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5659
5690
|
return [
|
|
5660
5691
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5661
5692
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5662
5693
|
];
|
|
5663
5694
|
}).s("AWSElasticBeanstalkService", "DescribeInstancesHealth", {}).n("ElasticBeanstalkClient", "DescribeInstancesHealthCommand").f(void 0, void 0).ser(se_DescribeInstancesHealthCommand).de(de_DescribeInstancesHealthCommand).build() {
|
|
5695
|
+
static {
|
|
5696
|
+
__name(this, "DescribeInstancesHealthCommand");
|
|
5697
|
+
}
|
|
5664
5698
|
};
|
|
5665
|
-
__name(_DescribeInstancesHealthCommand, "DescribeInstancesHealthCommand");
|
|
5666
|
-
var DescribeInstancesHealthCommand = _DescribeInstancesHealthCommand;
|
|
5667
5699
|
|
|
5668
5700
|
// src/commands/DescribePlatformVersionCommand.ts
|
|
5669
5701
|
|
|
5670
5702
|
|
|
5671
5703
|
|
|
5672
|
-
var
|
|
5704
|
+
var DescribePlatformVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5673
5705
|
return [
|
|
5674
5706
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5675
5707
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5676
5708
|
];
|
|
5677
5709
|
}).s("AWSElasticBeanstalkService", "DescribePlatformVersion", {}).n("ElasticBeanstalkClient", "DescribePlatformVersionCommand").f(void 0, void 0).ser(se_DescribePlatformVersionCommand).de(de_DescribePlatformVersionCommand).build() {
|
|
5710
|
+
static {
|
|
5711
|
+
__name(this, "DescribePlatformVersionCommand");
|
|
5712
|
+
}
|
|
5678
5713
|
};
|
|
5679
|
-
__name(_DescribePlatformVersionCommand, "DescribePlatformVersionCommand");
|
|
5680
|
-
var DescribePlatformVersionCommand = _DescribePlatformVersionCommand;
|
|
5681
5714
|
|
|
5682
5715
|
// src/commands/DisassociateEnvironmentOperationsRoleCommand.ts
|
|
5683
5716
|
|
|
5684
5717
|
|
|
5685
5718
|
|
|
5686
|
-
var
|
|
5719
|
+
var DisassociateEnvironmentOperationsRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5687
5720
|
return [
|
|
5688
5721
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5689
5722
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5690
5723
|
];
|
|
5691
5724
|
}).s("AWSElasticBeanstalkService", "DisassociateEnvironmentOperationsRole", {}).n("ElasticBeanstalkClient", "DisassociateEnvironmentOperationsRoleCommand").f(void 0, void 0).ser(se_DisassociateEnvironmentOperationsRoleCommand).de(de_DisassociateEnvironmentOperationsRoleCommand).build() {
|
|
5725
|
+
static {
|
|
5726
|
+
__name(this, "DisassociateEnvironmentOperationsRoleCommand");
|
|
5727
|
+
}
|
|
5692
5728
|
};
|
|
5693
|
-
__name(_DisassociateEnvironmentOperationsRoleCommand, "DisassociateEnvironmentOperationsRoleCommand");
|
|
5694
|
-
var DisassociateEnvironmentOperationsRoleCommand = _DisassociateEnvironmentOperationsRoleCommand;
|
|
5695
5729
|
|
|
5696
5730
|
// src/commands/ListAvailableSolutionStacksCommand.ts
|
|
5697
5731
|
|
|
5698
5732
|
|
|
5699
5733
|
|
|
5700
|
-
var
|
|
5734
|
+
var ListAvailableSolutionStacksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5701
5735
|
return [
|
|
5702
5736
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5703
5737
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5704
5738
|
];
|
|
5705
5739
|
}).s("AWSElasticBeanstalkService", "ListAvailableSolutionStacks", {}).n("ElasticBeanstalkClient", "ListAvailableSolutionStacksCommand").f(void 0, void 0).ser(se_ListAvailableSolutionStacksCommand).de(de_ListAvailableSolutionStacksCommand).build() {
|
|
5740
|
+
static {
|
|
5741
|
+
__name(this, "ListAvailableSolutionStacksCommand");
|
|
5742
|
+
}
|
|
5706
5743
|
};
|
|
5707
|
-
__name(_ListAvailableSolutionStacksCommand, "ListAvailableSolutionStacksCommand");
|
|
5708
|
-
var ListAvailableSolutionStacksCommand = _ListAvailableSolutionStacksCommand;
|
|
5709
5744
|
|
|
5710
5745
|
// src/commands/ListPlatformBranchesCommand.ts
|
|
5711
5746
|
|
|
5712
5747
|
|
|
5713
5748
|
|
|
5714
|
-
var
|
|
5749
|
+
var ListPlatformBranchesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5715
5750
|
return [
|
|
5716
5751
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5717
5752
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5718
5753
|
];
|
|
5719
5754
|
}).s("AWSElasticBeanstalkService", "ListPlatformBranches", {}).n("ElasticBeanstalkClient", "ListPlatformBranchesCommand").f(void 0, void 0).ser(se_ListPlatformBranchesCommand).de(de_ListPlatformBranchesCommand).build() {
|
|
5755
|
+
static {
|
|
5756
|
+
__name(this, "ListPlatformBranchesCommand");
|
|
5757
|
+
}
|
|
5720
5758
|
};
|
|
5721
|
-
__name(_ListPlatformBranchesCommand, "ListPlatformBranchesCommand");
|
|
5722
|
-
var ListPlatformBranchesCommand = _ListPlatformBranchesCommand;
|
|
5723
5759
|
|
|
5724
5760
|
// src/commands/ListPlatformVersionsCommand.ts
|
|
5725
5761
|
|
|
5726
5762
|
|
|
5727
5763
|
|
|
5728
|
-
var
|
|
5764
|
+
var ListPlatformVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5729
5765
|
return [
|
|
5730
5766
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5731
5767
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5732
5768
|
];
|
|
5733
5769
|
}).s("AWSElasticBeanstalkService", "ListPlatformVersions", {}).n("ElasticBeanstalkClient", "ListPlatformVersionsCommand").f(void 0, void 0).ser(se_ListPlatformVersionsCommand).de(de_ListPlatformVersionsCommand).build() {
|
|
5770
|
+
static {
|
|
5771
|
+
__name(this, "ListPlatformVersionsCommand");
|
|
5772
|
+
}
|
|
5734
5773
|
};
|
|
5735
|
-
__name(_ListPlatformVersionsCommand, "ListPlatformVersionsCommand");
|
|
5736
|
-
var ListPlatformVersionsCommand = _ListPlatformVersionsCommand;
|
|
5737
5774
|
|
|
5738
5775
|
// src/commands/ListTagsForResourceCommand.ts
|
|
5739
5776
|
|
|
5740
5777
|
|
|
5741
5778
|
|
|
5742
|
-
var
|
|
5779
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5743
5780
|
return [
|
|
5744
5781
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5745
5782
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5746
5783
|
];
|
|
5747
5784
|
}).s("AWSElasticBeanstalkService", "ListTagsForResource", {}).n("ElasticBeanstalkClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
5785
|
+
static {
|
|
5786
|
+
__name(this, "ListTagsForResourceCommand");
|
|
5787
|
+
}
|
|
5748
5788
|
};
|
|
5749
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
5750
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
5751
5789
|
|
|
5752
5790
|
// src/commands/RebuildEnvironmentCommand.ts
|
|
5753
5791
|
|
|
5754
5792
|
|
|
5755
5793
|
|
|
5756
|
-
var
|
|
5794
|
+
var RebuildEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5757
5795
|
return [
|
|
5758
5796
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5759
5797
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5760
5798
|
];
|
|
5761
5799
|
}).s("AWSElasticBeanstalkService", "RebuildEnvironment", {}).n("ElasticBeanstalkClient", "RebuildEnvironmentCommand").f(void 0, void 0).ser(se_RebuildEnvironmentCommand).de(de_RebuildEnvironmentCommand).build() {
|
|
5800
|
+
static {
|
|
5801
|
+
__name(this, "RebuildEnvironmentCommand");
|
|
5802
|
+
}
|
|
5762
5803
|
};
|
|
5763
|
-
__name(_RebuildEnvironmentCommand, "RebuildEnvironmentCommand");
|
|
5764
|
-
var RebuildEnvironmentCommand = _RebuildEnvironmentCommand;
|
|
5765
5804
|
|
|
5766
5805
|
// src/commands/RequestEnvironmentInfoCommand.ts
|
|
5767
5806
|
|
|
5768
5807
|
|
|
5769
5808
|
|
|
5770
|
-
var
|
|
5809
|
+
var RequestEnvironmentInfoCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5771
5810
|
return [
|
|
5772
5811
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5773
5812
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5774
5813
|
];
|
|
5775
5814
|
}).s("AWSElasticBeanstalkService", "RequestEnvironmentInfo", {}).n("ElasticBeanstalkClient", "RequestEnvironmentInfoCommand").f(void 0, void 0).ser(se_RequestEnvironmentInfoCommand).de(de_RequestEnvironmentInfoCommand).build() {
|
|
5815
|
+
static {
|
|
5816
|
+
__name(this, "RequestEnvironmentInfoCommand");
|
|
5817
|
+
}
|
|
5776
5818
|
};
|
|
5777
|
-
__name(_RequestEnvironmentInfoCommand, "RequestEnvironmentInfoCommand");
|
|
5778
|
-
var RequestEnvironmentInfoCommand = _RequestEnvironmentInfoCommand;
|
|
5779
5819
|
|
|
5780
5820
|
// src/commands/RestartAppServerCommand.ts
|
|
5781
5821
|
|
|
5782
5822
|
|
|
5783
5823
|
|
|
5784
|
-
var
|
|
5824
|
+
var RestartAppServerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5785
5825
|
return [
|
|
5786
5826
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5787
5827
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5788
5828
|
];
|
|
5789
5829
|
}).s("AWSElasticBeanstalkService", "RestartAppServer", {}).n("ElasticBeanstalkClient", "RestartAppServerCommand").f(void 0, void 0).ser(se_RestartAppServerCommand).de(de_RestartAppServerCommand).build() {
|
|
5830
|
+
static {
|
|
5831
|
+
__name(this, "RestartAppServerCommand");
|
|
5832
|
+
}
|
|
5790
5833
|
};
|
|
5791
|
-
__name(_RestartAppServerCommand, "RestartAppServerCommand");
|
|
5792
|
-
var RestartAppServerCommand = _RestartAppServerCommand;
|
|
5793
5834
|
|
|
5794
5835
|
// src/commands/RetrieveEnvironmentInfoCommand.ts
|
|
5795
5836
|
|
|
5796
5837
|
|
|
5797
5838
|
|
|
5798
|
-
var
|
|
5839
|
+
var RetrieveEnvironmentInfoCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5799
5840
|
return [
|
|
5800
5841
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5801
5842
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5802
5843
|
];
|
|
5803
5844
|
}).s("AWSElasticBeanstalkService", "RetrieveEnvironmentInfo", {}).n("ElasticBeanstalkClient", "RetrieveEnvironmentInfoCommand").f(void 0, void 0).ser(se_RetrieveEnvironmentInfoCommand).de(de_RetrieveEnvironmentInfoCommand).build() {
|
|
5845
|
+
static {
|
|
5846
|
+
__name(this, "RetrieveEnvironmentInfoCommand");
|
|
5847
|
+
}
|
|
5804
5848
|
};
|
|
5805
|
-
__name(_RetrieveEnvironmentInfoCommand, "RetrieveEnvironmentInfoCommand");
|
|
5806
|
-
var RetrieveEnvironmentInfoCommand = _RetrieveEnvironmentInfoCommand;
|
|
5807
5849
|
|
|
5808
5850
|
// src/commands/SwapEnvironmentCNAMEsCommand.ts
|
|
5809
5851
|
|
|
5810
5852
|
|
|
5811
5853
|
|
|
5812
|
-
var
|
|
5854
|
+
var SwapEnvironmentCNAMEsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5813
5855
|
return [
|
|
5814
5856
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5815
5857
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5816
5858
|
];
|
|
5817
5859
|
}).s("AWSElasticBeanstalkService", "SwapEnvironmentCNAMEs", {}).n("ElasticBeanstalkClient", "SwapEnvironmentCNAMEsCommand").f(void 0, void 0).ser(se_SwapEnvironmentCNAMEsCommand).de(de_SwapEnvironmentCNAMEsCommand).build() {
|
|
5860
|
+
static {
|
|
5861
|
+
__name(this, "SwapEnvironmentCNAMEsCommand");
|
|
5862
|
+
}
|
|
5818
5863
|
};
|
|
5819
|
-
__name(_SwapEnvironmentCNAMEsCommand, "SwapEnvironmentCNAMEsCommand");
|
|
5820
|
-
var SwapEnvironmentCNAMEsCommand = _SwapEnvironmentCNAMEsCommand;
|
|
5821
5864
|
|
|
5822
5865
|
// src/commands/TerminateEnvironmentCommand.ts
|
|
5823
5866
|
|
|
5824
5867
|
|
|
5825
5868
|
|
|
5826
|
-
var
|
|
5869
|
+
var TerminateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5827
5870
|
return [
|
|
5828
5871
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5829
5872
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5830
5873
|
];
|
|
5831
5874
|
}).s("AWSElasticBeanstalkService", "TerminateEnvironment", {}).n("ElasticBeanstalkClient", "TerminateEnvironmentCommand").f(void 0, void 0).ser(se_TerminateEnvironmentCommand).de(de_TerminateEnvironmentCommand).build() {
|
|
5875
|
+
static {
|
|
5876
|
+
__name(this, "TerminateEnvironmentCommand");
|
|
5877
|
+
}
|
|
5832
5878
|
};
|
|
5833
|
-
__name(_TerminateEnvironmentCommand, "TerminateEnvironmentCommand");
|
|
5834
|
-
var TerminateEnvironmentCommand = _TerminateEnvironmentCommand;
|
|
5835
5879
|
|
|
5836
5880
|
// src/commands/UpdateApplicationCommand.ts
|
|
5837
5881
|
|
|
5838
5882
|
|
|
5839
5883
|
|
|
5840
|
-
var
|
|
5884
|
+
var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5841
5885
|
return [
|
|
5842
5886
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5843
5887
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5844
5888
|
];
|
|
5845
5889
|
}).s("AWSElasticBeanstalkService", "UpdateApplication", {}).n("ElasticBeanstalkClient", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
|
|
5890
|
+
static {
|
|
5891
|
+
__name(this, "UpdateApplicationCommand");
|
|
5892
|
+
}
|
|
5846
5893
|
};
|
|
5847
|
-
__name(_UpdateApplicationCommand, "UpdateApplicationCommand");
|
|
5848
|
-
var UpdateApplicationCommand = _UpdateApplicationCommand;
|
|
5849
5894
|
|
|
5850
5895
|
// src/commands/UpdateApplicationResourceLifecycleCommand.ts
|
|
5851
5896
|
|
|
5852
5897
|
|
|
5853
5898
|
|
|
5854
|
-
var
|
|
5899
|
+
var UpdateApplicationResourceLifecycleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5855
5900
|
return [
|
|
5856
5901
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5857
5902
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5858
5903
|
];
|
|
5859
5904
|
}).s("AWSElasticBeanstalkService", "UpdateApplicationResourceLifecycle", {}).n("ElasticBeanstalkClient", "UpdateApplicationResourceLifecycleCommand").f(void 0, void 0).ser(se_UpdateApplicationResourceLifecycleCommand).de(de_UpdateApplicationResourceLifecycleCommand).build() {
|
|
5905
|
+
static {
|
|
5906
|
+
__name(this, "UpdateApplicationResourceLifecycleCommand");
|
|
5907
|
+
}
|
|
5860
5908
|
};
|
|
5861
|
-
__name(_UpdateApplicationResourceLifecycleCommand, "UpdateApplicationResourceLifecycleCommand");
|
|
5862
|
-
var UpdateApplicationResourceLifecycleCommand = _UpdateApplicationResourceLifecycleCommand;
|
|
5863
5909
|
|
|
5864
5910
|
// src/commands/UpdateApplicationVersionCommand.ts
|
|
5865
5911
|
|
|
5866
5912
|
|
|
5867
5913
|
|
|
5868
|
-
var
|
|
5914
|
+
var UpdateApplicationVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5869
5915
|
return [
|
|
5870
5916
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5871
5917
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5872
5918
|
];
|
|
5873
5919
|
}).s("AWSElasticBeanstalkService", "UpdateApplicationVersion", {}).n("ElasticBeanstalkClient", "UpdateApplicationVersionCommand").f(void 0, void 0).ser(se_UpdateApplicationVersionCommand).de(de_UpdateApplicationVersionCommand).build() {
|
|
5920
|
+
static {
|
|
5921
|
+
__name(this, "UpdateApplicationVersionCommand");
|
|
5922
|
+
}
|
|
5874
5923
|
};
|
|
5875
|
-
__name(_UpdateApplicationVersionCommand, "UpdateApplicationVersionCommand");
|
|
5876
|
-
var UpdateApplicationVersionCommand = _UpdateApplicationVersionCommand;
|
|
5877
5924
|
|
|
5878
5925
|
// src/commands/UpdateConfigurationTemplateCommand.ts
|
|
5879
5926
|
|
|
5880
5927
|
|
|
5881
5928
|
|
|
5882
|
-
var
|
|
5929
|
+
var UpdateConfigurationTemplateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5883
5930
|
return [
|
|
5884
5931
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5885
5932
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5886
5933
|
];
|
|
5887
5934
|
}).s("AWSElasticBeanstalkService", "UpdateConfigurationTemplate", {}).n("ElasticBeanstalkClient", "UpdateConfigurationTemplateCommand").f(void 0, void 0).ser(se_UpdateConfigurationTemplateCommand).de(de_UpdateConfigurationTemplateCommand).build() {
|
|
5935
|
+
static {
|
|
5936
|
+
__name(this, "UpdateConfigurationTemplateCommand");
|
|
5937
|
+
}
|
|
5888
5938
|
};
|
|
5889
|
-
__name(_UpdateConfigurationTemplateCommand, "UpdateConfigurationTemplateCommand");
|
|
5890
|
-
var UpdateConfigurationTemplateCommand = _UpdateConfigurationTemplateCommand;
|
|
5891
5939
|
|
|
5892
5940
|
// src/commands/UpdateEnvironmentCommand.ts
|
|
5893
5941
|
|
|
5894
5942
|
|
|
5895
5943
|
|
|
5896
|
-
var
|
|
5944
|
+
var UpdateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5897
5945
|
return [
|
|
5898
5946
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5899
5947
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5900
5948
|
];
|
|
5901
5949
|
}).s("AWSElasticBeanstalkService", "UpdateEnvironment", {}).n("ElasticBeanstalkClient", "UpdateEnvironmentCommand").f(void 0, void 0).ser(se_UpdateEnvironmentCommand).de(de_UpdateEnvironmentCommand).build() {
|
|
5950
|
+
static {
|
|
5951
|
+
__name(this, "UpdateEnvironmentCommand");
|
|
5952
|
+
}
|
|
5902
5953
|
};
|
|
5903
|
-
__name(_UpdateEnvironmentCommand, "UpdateEnvironmentCommand");
|
|
5904
|
-
var UpdateEnvironmentCommand = _UpdateEnvironmentCommand;
|
|
5905
5954
|
|
|
5906
5955
|
// src/commands/UpdateTagsForResourceCommand.ts
|
|
5907
5956
|
|
|
5908
5957
|
|
|
5909
5958
|
|
|
5910
|
-
var
|
|
5959
|
+
var UpdateTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5911
5960
|
return [
|
|
5912
5961
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5913
5962
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5914
5963
|
];
|
|
5915
5964
|
}).s("AWSElasticBeanstalkService", "UpdateTagsForResource", {}).n("ElasticBeanstalkClient", "UpdateTagsForResourceCommand").f(void 0, void 0).ser(se_UpdateTagsForResourceCommand).de(de_UpdateTagsForResourceCommand).build() {
|
|
5965
|
+
static {
|
|
5966
|
+
__name(this, "UpdateTagsForResourceCommand");
|
|
5967
|
+
}
|
|
5916
5968
|
};
|
|
5917
|
-
__name(_UpdateTagsForResourceCommand, "UpdateTagsForResourceCommand");
|
|
5918
|
-
var UpdateTagsForResourceCommand = _UpdateTagsForResourceCommand;
|
|
5919
5969
|
|
|
5920
5970
|
// src/commands/ValidateConfigurationSettingsCommand.ts
|
|
5921
5971
|
|
|
5922
5972
|
|
|
5923
5973
|
|
|
5924
|
-
var
|
|
5974
|
+
var ValidateConfigurationSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5925
5975
|
return [
|
|
5926
5976
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5927
5977
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5928
5978
|
];
|
|
5929
5979
|
}).s("AWSElasticBeanstalkService", "ValidateConfigurationSettings", {}).n("ElasticBeanstalkClient", "ValidateConfigurationSettingsCommand").f(void 0, void 0).ser(se_ValidateConfigurationSettingsCommand).de(de_ValidateConfigurationSettingsCommand).build() {
|
|
5980
|
+
static {
|
|
5981
|
+
__name(this, "ValidateConfigurationSettingsCommand");
|
|
5982
|
+
}
|
|
5930
5983
|
};
|
|
5931
|
-
__name(_ValidateConfigurationSettingsCommand, "ValidateConfigurationSettingsCommand");
|
|
5932
|
-
var ValidateConfigurationSettingsCommand = _ValidateConfigurationSettingsCommand;
|
|
5933
5984
|
|
|
5934
5985
|
// src/ElasticBeanstalk.ts
|
|
5935
5986
|
var commands = {
|
|
@@ -5981,10 +6032,11 @@ var commands = {
|
|
|
5981
6032
|
UpdateTagsForResourceCommand,
|
|
5982
6033
|
ValidateConfigurationSettingsCommand
|
|
5983
6034
|
};
|
|
5984
|
-
var
|
|
6035
|
+
var ElasticBeanstalk = class extends ElasticBeanstalkClient {
|
|
6036
|
+
static {
|
|
6037
|
+
__name(this, "ElasticBeanstalk");
|
|
6038
|
+
}
|
|
5985
6039
|
};
|
|
5986
|
-
__name(_ElasticBeanstalk, "ElasticBeanstalk");
|
|
5987
|
-
var ElasticBeanstalk = _ElasticBeanstalk;
|
|
5988
6040
|
(0, import_smithy_client.createAggregatedClient)(commands, ElasticBeanstalk);
|
|
5989
6041
|
|
|
5990
6042
|
// src/pagination/DescribeEnvironmentManagedActionHistoryPaginator.ts
|