@aws-sdk/client-imagebuilder 3.721.0 → 3.724.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.
Files changed (31) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +473 -317
  3. package/dist-es/Imagebuilder.js +2 -0
  4. package/dist-es/ImagebuilderClient.js +1 -0
  5. package/dist-es/commands/ImportDiskImageCommand.js +22 -0
  6. package/dist-es/commands/index.js +1 -0
  7. package/dist-es/models/models_0.js +35 -34
  8. package/dist-es/protocols/Aws_restJson1.js +37 -0
  9. package/dist-types/Imagebuilder.d.ts +7 -0
  10. package/dist-types/ImagebuilderClient.d.ts +3 -2
  11. package/dist-types/commands/GetImageCommand.d.ts +1 -1
  12. package/dist-types/commands/ImportDiskImageCommand.d.ts +101 -0
  13. package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +1 -1
  14. package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +1 -1
  15. package/dist-types/commands/ListImagesCommand.d.ts +1 -1
  16. package/dist-types/commands/index.d.ts +1 -0
  17. package/dist-types/models/models_0.d.ts +114 -9
  18. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  19. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  20. package/dist-types/runtimeConfig.d.ts +1 -1
  21. package/dist-types/runtimeConfig.native.d.ts +2 -2
  22. package/dist-types/ts3.4/Imagebuilder.d.ts +17 -0
  23. package/dist-types/ts3.4/ImagebuilderClient.d.ts +6 -0
  24. package/dist-types/ts3.4/commands/ImportDiskImageCommand.d.ts +50 -0
  25. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +17 -0
  27. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
  31. package/package.json +43 -43
package/dist-cjs/index.js CHANGED
@@ -78,6 +78,7 @@ __export(src_exports, {
78
78
  ImagebuilderClient: () => ImagebuilderClient,
79
79
  ImagebuilderServiceException: () => ImagebuilderServiceException,
80
80
  ImportComponentCommand: () => ImportComponentCommand,
81
+ ImportDiskImageCommand: () => ImportDiskImageCommand,
81
82
  ImportVmImageCommand: () => ImportVmImageCommand,
82
83
  InvalidPaginationTokenException: () => InvalidPaginationTokenException,
83
84
  InvalidParameterCombinationException: () => InvalidParameterCombinationException,
@@ -271,7 +272,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
271
272
  }, "resolveRuntimeExtensions");
272
273
 
273
274
  // src/ImagebuilderClient.ts
274
- var _ImagebuilderClient = class _ImagebuilderClient extends import_smithy_client.Client {
275
+ var ImagebuilderClient = class extends import_smithy_client.Client {
276
+ static {
277
+ __name(this, "ImagebuilderClient");
278
+ }
279
+ /**
280
+ * The resolved configuration of ImagebuilderClient class. This is resolved and normalized from the {@link ImagebuilderClientConfig | constructor configuration interface}.
281
+ */
282
+ config;
275
283
  constructor(...[configuration]) {
276
284
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
277
285
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -281,7 +289,7 @@ var _ImagebuilderClient = class _ImagebuilderClient extends import_smithy_client
281
289
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
282
290
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
283
291
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
284
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
292
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
285
293
  super(_config_8);
286
294
  this.config = _config_8;
287
295
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -309,8 +317,6 @@ var _ImagebuilderClient = class _ImagebuilderClient extends import_smithy_client
309
317
  super.destroy();
310
318
  }
311
319
  };
312
- __name(_ImagebuilderClient, "ImagebuilderClient");
313
- var ImagebuilderClient = _ImagebuilderClient;
314
320
 
315
321
  // src/Imagebuilder.ts
316
322
 
@@ -328,7 +334,10 @@ var import_uuid = require("uuid");
328
334
 
329
335
  // src/models/ImagebuilderServiceException.ts
330
336
 
331
- var _ImagebuilderServiceException = class _ImagebuilderServiceException extends import_smithy_client.ServiceException {
337
+ var ImagebuilderServiceException = class _ImagebuilderServiceException extends import_smithy_client.ServiceException {
338
+ static {
339
+ __name(this, "ImagebuilderServiceException");
340
+ }
332
341
  /**
333
342
  * @internal
334
343
  */
@@ -337,8 +346,6 @@ var _ImagebuilderServiceException = class _ImagebuilderServiceException extends
337
346
  Object.setPrototypeOf(this, _ImagebuilderServiceException.prototype);
338
347
  }
339
348
  };
340
- __name(_ImagebuilderServiceException, "ImagebuilderServiceException");
341
- var ImagebuilderServiceException = _ImagebuilderServiceException;
342
349
 
343
350
  // src/models/models_0.ts
344
351
  var ImageStatus = {
@@ -357,10 +364,16 @@ var ImageStatus = {
357
364
  };
358
365
  var BuildType = {
359
366
  IMPORT: "IMPORT",
367
+ IMPORT_ISO: "IMPORT_ISO",
360
368
  SCHEDULED: "SCHEDULED",
361
369
  USER_INITIATED: "USER_INITIATED"
362
370
  };
363
- var _CallRateLimitExceededException = class _CallRateLimitExceededException extends ImagebuilderServiceException {
371
+ var CallRateLimitExceededException = class _CallRateLimitExceededException extends ImagebuilderServiceException {
372
+ static {
373
+ __name(this, "CallRateLimitExceededException");
374
+ }
375
+ name = "CallRateLimitExceededException";
376
+ $fault = "client";
364
377
  /**
365
378
  * @internal
366
379
  */
@@ -370,14 +383,15 @@ var _CallRateLimitExceededException = class _CallRateLimitExceededException exte
370
383
  $fault: "client",
371
384
  ...opts
372
385
  });
373
- this.name = "CallRateLimitExceededException";
374
- this.$fault = "client";
375
386
  Object.setPrototypeOf(this, _CallRateLimitExceededException.prototype);
376
387
  }
377
388
  };
378
- __name(_CallRateLimitExceededException, "CallRateLimitExceededException");
379
- var CallRateLimitExceededException = _CallRateLimitExceededException;
380
- var _ClientException = class _ClientException extends ImagebuilderServiceException {
389
+ var ClientException = class _ClientException extends ImagebuilderServiceException {
390
+ static {
391
+ __name(this, "ClientException");
392
+ }
393
+ name = "ClientException";
394
+ $fault = "client";
381
395
  /**
382
396
  * @internal
383
397
  */
@@ -387,14 +401,15 @@ var _ClientException = class _ClientException extends ImagebuilderServiceExcepti
387
401
  $fault: "client",
388
402
  ...opts
389
403
  });
390
- this.name = "ClientException";
391
- this.$fault = "client";
392
404
  Object.setPrototypeOf(this, _ClientException.prototype);
393
405
  }
394
406
  };
395
- __name(_ClientException, "ClientException");
396
- var ClientException = _ClientException;
397
- var _ForbiddenException = class _ForbiddenException extends ImagebuilderServiceException {
407
+ var ForbiddenException = class _ForbiddenException extends ImagebuilderServiceException {
408
+ static {
409
+ __name(this, "ForbiddenException");
410
+ }
411
+ name = "ForbiddenException";
412
+ $fault = "client";
398
413
  /**
399
414
  * @internal
400
415
  */
@@ -404,14 +419,15 @@ var _ForbiddenException = class _ForbiddenException extends ImagebuilderServiceE
404
419
  $fault: "client",
405
420
  ...opts
406
421
  });
407
- this.name = "ForbiddenException";
408
- this.$fault = "client";
409
422
  Object.setPrototypeOf(this, _ForbiddenException.prototype);
410
423
  }
411
424
  };
412
- __name(_ForbiddenException, "ForbiddenException");
413
- var ForbiddenException = _ForbiddenException;
414
- var _IdempotentParameterMismatchException = class _IdempotentParameterMismatchException extends ImagebuilderServiceException {
425
+ var IdempotentParameterMismatchException = class _IdempotentParameterMismatchException extends ImagebuilderServiceException {
426
+ static {
427
+ __name(this, "IdempotentParameterMismatchException");
428
+ }
429
+ name = "IdempotentParameterMismatchException";
430
+ $fault = "client";
415
431
  /**
416
432
  * @internal
417
433
  */
@@ -421,14 +437,15 @@ var _IdempotentParameterMismatchException = class _IdempotentParameterMismatchEx
421
437
  $fault: "client",
422
438
  ...opts
423
439
  });
424
- this.name = "IdempotentParameterMismatchException";
425
- this.$fault = "client";
426
440
  Object.setPrototypeOf(this, _IdempotentParameterMismatchException.prototype);
427
441
  }
428
442
  };
429
- __name(_IdempotentParameterMismatchException, "IdempotentParameterMismatchException");
430
- var IdempotentParameterMismatchException = _IdempotentParameterMismatchException;
431
- var _InvalidRequestException = class _InvalidRequestException extends ImagebuilderServiceException {
443
+ var InvalidRequestException = class _InvalidRequestException extends ImagebuilderServiceException {
444
+ static {
445
+ __name(this, "InvalidRequestException");
446
+ }
447
+ name = "InvalidRequestException";
448
+ $fault = "client";
432
449
  /**
433
450
  * @internal
434
451
  */
@@ -438,14 +455,15 @@ var _InvalidRequestException = class _InvalidRequestException extends Imagebuild
438
455
  $fault: "client",
439
456
  ...opts
440
457
  });
441
- this.name = "InvalidRequestException";
442
- this.$fault = "client";
443
458
  Object.setPrototypeOf(this, _InvalidRequestException.prototype);
444
459
  }
445
460
  };
446
- __name(_InvalidRequestException, "InvalidRequestException");
447
- var InvalidRequestException = _InvalidRequestException;
448
- var _ResourceInUseException = class _ResourceInUseException extends ImagebuilderServiceException {
461
+ var ResourceInUseException = class _ResourceInUseException extends ImagebuilderServiceException {
462
+ static {
463
+ __name(this, "ResourceInUseException");
464
+ }
465
+ name = "ResourceInUseException";
466
+ $fault = "client";
449
467
  /**
450
468
  * @internal
451
469
  */
@@ -455,14 +473,15 @@ var _ResourceInUseException = class _ResourceInUseException extends Imagebuilder
455
473
  $fault: "client",
456
474
  ...opts
457
475
  });
458
- this.name = "ResourceInUseException";
459
- this.$fault = "client";
460
476
  Object.setPrototypeOf(this, _ResourceInUseException.prototype);
461
477
  }
462
478
  };
463
- __name(_ResourceInUseException, "ResourceInUseException");
464
- var ResourceInUseException = _ResourceInUseException;
465
- var _ServiceException = class _ServiceException extends ImagebuilderServiceException {
479
+ var ServiceException = class _ServiceException extends ImagebuilderServiceException {
480
+ static {
481
+ __name(this, "ServiceException");
482
+ }
483
+ name = "ServiceException";
484
+ $fault = "server";
466
485
  /**
467
486
  * @internal
468
487
  */
@@ -472,14 +491,15 @@ var _ServiceException = class _ServiceException extends ImagebuilderServiceExcep
472
491
  $fault: "server",
473
492
  ...opts
474
493
  });
475
- this.name = "ServiceException";
476
- this.$fault = "server";
477
494
  Object.setPrototypeOf(this, _ServiceException.prototype);
478
495
  }
479
496
  };
480
- __name(_ServiceException, "ServiceException");
481
- var ServiceException = _ServiceException;
482
- var _ServiceUnavailableException = class _ServiceUnavailableException extends ImagebuilderServiceException {
497
+ var ServiceUnavailableException = class _ServiceUnavailableException extends ImagebuilderServiceException {
498
+ static {
499
+ __name(this, "ServiceUnavailableException");
500
+ }
501
+ name = "ServiceUnavailableException";
502
+ $fault = "server";
483
503
  /**
484
504
  * @internal
485
505
  */
@@ -489,13 +509,9 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Im
489
509
  $fault: "server",
490
510
  ...opts
491
511
  });
492
- this.name = "ServiceUnavailableException";
493
- this.$fault = "server";
494
512
  Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
495
513
  }
496
514
  };
497
- __name(_ServiceUnavailableException, "ServiceUnavailableException");
498
- var ServiceUnavailableException = _ServiceUnavailableException;
499
515
  var Platform = {
500
516
  LINUX: "Linux",
501
517
  MACOS: "macOS",
@@ -531,7 +547,12 @@ var EbsVolumeType = {
531
547
  ST1: "st1",
532
548
  STANDARD: "standard"
533
549
  };
534
- var _InvalidParameterCombinationException = class _InvalidParameterCombinationException extends ImagebuilderServiceException {
550
+ var InvalidParameterCombinationException = class _InvalidParameterCombinationException extends ImagebuilderServiceException {
551
+ static {
552
+ __name(this, "InvalidParameterCombinationException");
553
+ }
554
+ name = "InvalidParameterCombinationException";
555
+ $fault = "client";
535
556
  /**
536
557
  * @internal
537
558
  */
@@ -541,14 +562,15 @@ var _InvalidParameterCombinationException = class _InvalidParameterCombinationEx
541
562
  $fault: "client",
542
563
  ...opts
543
564
  });
544
- this.name = "InvalidParameterCombinationException";
545
- this.$fault = "client";
546
565
  Object.setPrototypeOf(this, _InvalidParameterCombinationException.prototype);
547
566
  }
548
567
  };
549
- __name(_InvalidParameterCombinationException, "InvalidParameterCombinationException");
550
- var InvalidParameterCombinationException = _InvalidParameterCombinationException;
551
- var _InvalidVersionNumberException = class _InvalidVersionNumberException extends ImagebuilderServiceException {
568
+ var InvalidVersionNumberException = class _InvalidVersionNumberException extends ImagebuilderServiceException {
569
+ static {
570
+ __name(this, "InvalidVersionNumberException");
571
+ }
572
+ name = "InvalidVersionNumberException";
573
+ $fault = "client";
552
574
  /**
553
575
  * @internal
554
576
  */
@@ -558,14 +580,15 @@ var _InvalidVersionNumberException = class _InvalidVersionNumberException extend
558
580
  $fault: "client",
559
581
  ...opts
560
582
  });
561
- this.name = "InvalidVersionNumberException";
562
- this.$fault = "client";
563
583
  Object.setPrototypeOf(this, _InvalidVersionNumberException.prototype);
564
584
  }
565
585
  };
566
- __name(_InvalidVersionNumberException, "InvalidVersionNumberException");
567
- var InvalidVersionNumberException = _InvalidVersionNumberException;
568
- var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends ImagebuilderServiceException {
586
+ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends ImagebuilderServiceException {
587
+ static {
588
+ __name(this, "ServiceQuotaExceededException");
589
+ }
590
+ name = "ServiceQuotaExceededException";
591
+ $fault = "client";
569
592
  /**
570
593
  * @internal
571
594
  */
@@ -575,14 +598,15 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
575
598
  $fault: "client",
576
599
  ...opts
577
600
  });
578
- this.name = "ServiceQuotaExceededException";
579
- this.$fault = "client";
580
601
  Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
581
602
  }
582
603
  };
583
- __name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
584
- var ServiceQuotaExceededException = _ServiceQuotaExceededException;
585
- var _ResourceAlreadyExistsException = class _ResourceAlreadyExistsException extends ImagebuilderServiceException {
604
+ var ResourceAlreadyExistsException = class _ResourceAlreadyExistsException extends ImagebuilderServiceException {
605
+ static {
606
+ __name(this, "ResourceAlreadyExistsException");
607
+ }
608
+ name = "ResourceAlreadyExistsException";
609
+ $fault = "client";
586
610
  /**
587
611
  * @internal
588
612
  */
@@ -592,13 +616,9 @@ var _ResourceAlreadyExistsException = class _ResourceAlreadyExistsException exte
592
616
  $fault: "client",
593
617
  ...opts
594
618
  });
595
- this.name = "ResourceAlreadyExistsException";
596
- this.$fault = "client";
597
619
  Object.setPrototypeOf(this, _ResourceAlreadyExistsException.prototype);
598
620
  }
599
621
  };
600
- __name(_ResourceAlreadyExistsException, "ResourceAlreadyExistsException");
601
- var ResourceAlreadyExistsException = _ResourceAlreadyExistsException;
602
622
  var DiskImageFormat = {
603
623
  RAW: "RAW",
604
624
  VHD: "VHD",
@@ -649,7 +669,12 @@ var WorkflowType = {
649
669
  DISTRIBUTION: "DISTRIBUTION",
650
670
  TEST: "TEST"
651
671
  };
652
- var _ResourceDependencyException = class _ResourceDependencyException extends ImagebuilderServiceException {
672
+ var ResourceDependencyException = class _ResourceDependencyException extends ImagebuilderServiceException {
673
+ static {
674
+ __name(this, "ResourceDependencyException");
675
+ }
676
+ name = "ResourceDependencyException";
677
+ $fault = "client";
653
678
  /**
654
679
  * @internal
655
680
  */
@@ -659,14 +684,15 @@ var _ResourceDependencyException = class _ResourceDependencyException extends Im
659
684
  $fault: "client",
660
685
  ...opts
661
686
  });
662
- this.name = "ResourceDependencyException";
663
- this.$fault = "client";
664
687
  Object.setPrototypeOf(this, _ResourceDependencyException.prototype);
665
688
  }
666
689
  };
667
- __name(_ResourceDependencyException, "ResourceDependencyException");
668
- var ResourceDependencyException = _ResourceDependencyException;
669
- var _ResourceNotFoundException = class _ResourceNotFoundException extends ImagebuilderServiceException {
690
+ var ResourceNotFoundException = class _ResourceNotFoundException extends ImagebuilderServiceException {
691
+ static {
692
+ __name(this, "ResourceNotFoundException");
693
+ }
694
+ name = "ResourceNotFoundException";
695
+ $fault = "client";
670
696
  /**
671
697
  * @internal
672
698
  */
@@ -676,13 +702,9 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Imageb
676
702
  $fault: "client",
677
703
  ...opts
678
704
  });
679
- this.name = "ResourceNotFoundException";
680
- this.$fault = "client";
681
705
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
682
706
  }
683
707
  };
684
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
685
- var ResourceNotFoundException = _ResourceNotFoundException;
686
708
  var ImageType = {
687
709
  AMI: "AMI",
688
710
  DOCKER: "DOCKER"
@@ -741,7 +763,12 @@ var WorkflowStepExecutionStatus = {
741
763
  RUNNING: "RUNNING",
742
764
  SKIPPED: "SKIPPED"
743
765
  };
744
- var _InvalidPaginationTokenException = class _InvalidPaginationTokenException extends ImagebuilderServiceException {
766
+ var InvalidPaginationTokenException = class _InvalidPaginationTokenException extends ImagebuilderServiceException {
767
+ static {
768
+ __name(this, "InvalidPaginationTokenException");
769
+ }
770
+ name = "InvalidPaginationTokenException";
771
+ $fault = "client";
745
772
  /**
746
773
  * @internal
747
774
  */
@@ -751,13 +778,9 @@ var _InvalidPaginationTokenException = class _InvalidPaginationTokenException ex
751
778
  $fault: "client",
752
779
  ...opts
753
780
  });
754
- this.name = "InvalidPaginationTokenException";
755
- this.$fault = "client";
756
781
  Object.setPrototypeOf(this, _InvalidPaginationTokenException.prototype);
757
782
  }
758
783
  };
759
- __name(_InvalidPaginationTokenException, "InvalidPaginationTokenException");
760
- var InvalidPaginationTokenException = _InvalidPaginationTokenException;
761
784
  var Ownership = {
762
785
  AMAZON: "Amazon",
763
786
  AWS_MARKETPLACE: "AWSMarketplace",
@@ -777,7 +800,12 @@ var LifecycleExecutionResourceStatus = {
777
800
  SKIPPED: "SKIPPED",
778
801
  SUCCESS: "SUCCESS"
779
802
  };
780
- var _InvalidParameterException = class _InvalidParameterException extends ImagebuilderServiceException {
803
+ var InvalidParameterException = class _InvalidParameterException extends ImagebuilderServiceException {
804
+ static {
805
+ __name(this, "InvalidParameterException");
806
+ }
807
+ name = "InvalidParameterException";
808
+ $fault = "client";
781
809
  /**
782
810
  * @internal
783
811
  */
@@ -787,14 +815,15 @@ var _InvalidParameterException = class _InvalidParameterException extends Imageb
787
815
  $fault: "client",
788
816
  ...opts
789
817
  });
790
- this.name = "InvalidParameterException";
791
- this.$fault = "client";
792
818
  Object.setPrototypeOf(this, _InvalidParameterException.prototype);
793
819
  }
794
820
  };
795
- __name(_InvalidParameterException, "InvalidParameterException");
796
- var InvalidParameterException = _InvalidParameterException;
797
- var _InvalidParameterValueException = class _InvalidParameterValueException extends ImagebuilderServiceException {
821
+ var InvalidParameterValueException = class _InvalidParameterValueException extends ImagebuilderServiceException {
822
+ static {
823
+ __name(this, "InvalidParameterValueException");
824
+ }
825
+ name = "InvalidParameterValueException";
826
+ $fault = "client";
798
827
  /**
799
828
  * @internal
800
829
  */
@@ -804,13 +833,9 @@ var _InvalidParameterValueException = class _InvalidParameterValueException exte
804
833
  $fault: "client",
805
834
  ...opts
806
835
  });
807
- this.name = "InvalidParameterValueException";
808
- this.$fault = "client";
809
836
  Object.setPrototypeOf(this, _InvalidParameterValueException.prototype);
810
837
  }
811
838
  };
812
- __name(_InvalidParameterValueException, "InvalidParameterValueException");
813
- var InvalidParameterValueException = _InvalidParameterValueException;
814
839
  var WorkflowStepActionType = {
815
840
  RESUME: "RESUME",
816
841
  STOP: "STOP"
@@ -1401,6 +1426,30 @@ var se_ImportComponentCommand = /* @__PURE__ */ __name(async (input, context) =>
1401
1426
  b.m("PUT").h(headers).b(body);
1402
1427
  return b.build();
1403
1428
  }, "se_ImportComponentCommand");
1429
+ var se_ImportDiskImageCommand = /* @__PURE__ */ __name(async (input, context) => {
1430
+ const b = (0, import_core.requestBuilder)(input, context);
1431
+ const headers = {
1432
+ "content-type": "application/json"
1433
+ };
1434
+ b.bp("/ImportDiskImage");
1435
+ let body;
1436
+ body = JSON.stringify(
1437
+ (0, import_smithy_client.take)(input, {
1438
+ clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
1439
+ description: [],
1440
+ executionRole: [],
1441
+ infrastructureConfigurationArn: [],
1442
+ name: [],
1443
+ osVersion: [],
1444
+ platform: [],
1445
+ semanticVersion: [],
1446
+ tags: (_) => (0, import_smithy_client._json)(_),
1447
+ uri: []
1448
+ })
1449
+ );
1450
+ b.m("PUT").h(headers).b(body);
1451
+ return b.build();
1452
+ }, "se_ImportDiskImageCommand");
1404
1453
  var se_ImportVmImageCommand = /* @__PURE__ */ __name(async (input, context) => {
1405
1454
  const b = (0, import_core.requestBuilder)(input, context);
1406
1455
  const headers = {
@@ -2644,6 +2693,21 @@ var de_ImportComponentCommand = /* @__PURE__ */ __name(async (output, context) =
2644
2693
  Object.assign(contents, doc);
2645
2694
  return contents;
2646
2695
  }, "de_ImportComponentCommand");
2696
+ var de_ImportDiskImageCommand = /* @__PURE__ */ __name(async (output, context) => {
2697
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2698
+ return de_CommandError(output, context);
2699
+ }
2700
+ const contents = (0, import_smithy_client.map)({
2701
+ $metadata: deserializeMetadata(output)
2702
+ });
2703
+ const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
2704
+ const doc = (0, import_smithy_client.take)(data, {
2705
+ clientToken: import_smithy_client.expectString,
2706
+ imageBuildVersionArn: import_smithy_client.expectString
2707
+ });
2708
+ Object.assign(contents, doc);
2709
+ return contents;
2710
+ }, "de_ImportDiskImageCommand");
2647
2711
  var de_ImportVmImageCommand = /* @__PURE__ */ __name(async (output, context) => {
2648
2712
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2649
2713
  return de_CommandError(output, context);
@@ -3707,1037 +3771,1126 @@ var _wBVA = "workflowBuildVersionArn";
3707
3771
  var _wEI = "workflowExecutionId";
3708
3772
 
3709
3773
  // src/commands/CancelImageCreationCommand.ts
3710
- var _CancelImageCreationCommand = class _CancelImageCreationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3774
+ var CancelImageCreationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3711
3775
  return [
3712
3776
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3713
3777
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3714
3778
  ];
3715
3779
  }).s("imagebuilder", "CancelImageCreation", {}).n("ImagebuilderClient", "CancelImageCreationCommand").f(void 0, void 0).ser(se_CancelImageCreationCommand).de(de_CancelImageCreationCommand).build() {
3780
+ static {
3781
+ __name(this, "CancelImageCreationCommand");
3782
+ }
3716
3783
  };
3717
- __name(_CancelImageCreationCommand, "CancelImageCreationCommand");
3718
- var CancelImageCreationCommand = _CancelImageCreationCommand;
3719
3784
 
3720
3785
  // src/commands/CancelLifecycleExecutionCommand.ts
3721
3786
 
3722
3787
 
3723
3788
 
3724
- var _CancelLifecycleExecutionCommand = class _CancelLifecycleExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3789
+ var CancelLifecycleExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3725
3790
  return [
3726
3791
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3727
3792
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3728
3793
  ];
3729
3794
  }).s("imagebuilder", "CancelLifecycleExecution", {}).n("ImagebuilderClient", "CancelLifecycleExecutionCommand").f(void 0, void 0).ser(se_CancelLifecycleExecutionCommand).de(de_CancelLifecycleExecutionCommand).build() {
3795
+ static {
3796
+ __name(this, "CancelLifecycleExecutionCommand");
3797
+ }
3730
3798
  };
3731
- __name(_CancelLifecycleExecutionCommand, "CancelLifecycleExecutionCommand");
3732
- var CancelLifecycleExecutionCommand = _CancelLifecycleExecutionCommand;
3733
3799
 
3734
3800
  // src/commands/CreateComponentCommand.ts
3735
3801
 
3736
3802
 
3737
3803
 
3738
- var _CreateComponentCommand = class _CreateComponentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3804
+ var CreateComponentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3739
3805
  return [
3740
3806
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3741
3807
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3742
3808
  ];
3743
3809
  }).s("imagebuilder", "CreateComponent", {}).n("ImagebuilderClient", "CreateComponentCommand").f(void 0, void 0).ser(se_CreateComponentCommand).de(de_CreateComponentCommand).build() {
3810
+ static {
3811
+ __name(this, "CreateComponentCommand");
3812
+ }
3744
3813
  };
3745
- __name(_CreateComponentCommand, "CreateComponentCommand");
3746
- var CreateComponentCommand = _CreateComponentCommand;
3747
3814
 
3748
3815
  // src/commands/CreateContainerRecipeCommand.ts
3749
3816
 
3750
3817
 
3751
3818
 
3752
- var _CreateContainerRecipeCommand = class _CreateContainerRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3819
+ var CreateContainerRecipeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3753
3820
  return [
3754
3821
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3755
3822
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3756
3823
  ];
3757
3824
  }).s("imagebuilder", "CreateContainerRecipe", {}).n("ImagebuilderClient", "CreateContainerRecipeCommand").f(void 0, void 0).ser(se_CreateContainerRecipeCommand).de(de_CreateContainerRecipeCommand).build() {
3825
+ static {
3826
+ __name(this, "CreateContainerRecipeCommand");
3827
+ }
3758
3828
  };
3759
- __name(_CreateContainerRecipeCommand, "CreateContainerRecipeCommand");
3760
- var CreateContainerRecipeCommand = _CreateContainerRecipeCommand;
3761
3829
 
3762
3830
  // src/commands/CreateDistributionConfigurationCommand.ts
3763
3831
 
3764
3832
 
3765
3833
 
3766
- var _CreateDistributionConfigurationCommand = class _CreateDistributionConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3834
+ var CreateDistributionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3767
3835
  return [
3768
3836
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3769
3837
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3770
3838
  ];
3771
3839
  }).s("imagebuilder", "CreateDistributionConfiguration", {}).n("ImagebuilderClient", "CreateDistributionConfigurationCommand").f(void 0, void 0).ser(se_CreateDistributionConfigurationCommand).de(de_CreateDistributionConfigurationCommand).build() {
3840
+ static {
3841
+ __name(this, "CreateDistributionConfigurationCommand");
3842
+ }
3772
3843
  };
3773
- __name(_CreateDistributionConfigurationCommand, "CreateDistributionConfigurationCommand");
3774
- var CreateDistributionConfigurationCommand = _CreateDistributionConfigurationCommand;
3775
3844
 
3776
3845
  // src/commands/CreateImageCommand.ts
3777
3846
 
3778
3847
 
3779
3848
 
3780
- var _CreateImageCommand = class _CreateImageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3849
+ var CreateImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3781
3850
  return [
3782
3851
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3783
3852
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3784
3853
  ];
3785
3854
  }).s("imagebuilder", "CreateImage", {}).n("ImagebuilderClient", "CreateImageCommand").f(void 0, void 0).ser(se_CreateImageCommand).de(de_CreateImageCommand).build() {
3855
+ static {
3856
+ __name(this, "CreateImageCommand");
3857
+ }
3786
3858
  };
3787
- __name(_CreateImageCommand, "CreateImageCommand");
3788
- var CreateImageCommand = _CreateImageCommand;
3789
3859
 
3790
3860
  // src/commands/CreateImagePipelineCommand.ts
3791
3861
 
3792
3862
 
3793
3863
 
3794
- var _CreateImagePipelineCommand = class _CreateImagePipelineCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3864
+ var CreateImagePipelineCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3795
3865
  return [
3796
3866
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3797
3867
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3798
3868
  ];
3799
3869
  }).s("imagebuilder", "CreateImagePipeline", {}).n("ImagebuilderClient", "CreateImagePipelineCommand").f(void 0, void 0).ser(se_CreateImagePipelineCommand).de(de_CreateImagePipelineCommand).build() {
3870
+ static {
3871
+ __name(this, "CreateImagePipelineCommand");
3872
+ }
3800
3873
  };
3801
- __name(_CreateImagePipelineCommand, "CreateImagePipelineCommand");
3802
- var CreateImagePipelineCommand = _CreateImagePipelineCommand;
3803
3874
 
3804
3875
  // src/commands/CreateImageRecipeCommand.ts
3805
3876
 
3806
3877
 
3807
3878
 
3808
- var _CreateImageRecipeCommand = class _CreateImageRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3879
+ var CreateImageRecipeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3809
3880
  return [
3810
3881
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3811
3882
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3812
3883
  ];
3813
3884
  }).s("imagebuilder", "CreateImageRecipe", {}).n("ImagebuilderClient", "CreateImageRecipeCommand").f(void 0, void 0).ser(se_CreateImageRecipeCommand).de(de_CreateImageRecipeCommand).build() {
3885
+ static {
3886
+ __name(this, "CreateImageRecipeCommand");
3887
+ }
3814
3888
  };
3815
- __name(_CreateImageRecipeCommand, "CreateImageRecipeCommand");
3816
- var CreateImageRecipeCommand = _CreateImageRecipeCommand;
3817
3889
 
3818
3890
  // src/commands/CreateInfrastructureConfigurationCommand.ts
3819
3891
 
3820
3892
 
3821
3893
 
3822
- var _CreateInfrastructureConfigurationCommand = class _CreateInfrastructureConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3894
+ var CreateInfrastructureConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3823
3895
  return [
3824
3896
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3825
3897
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3826
3898
  ];
3827
3899
  }).s("imagebuilder", "CreateInfrastructureConfiguration", {}).n("ImagebuilderClient", "CreateInfrastructureConfigurationCommand").f(void 0, void 0).ser(se_CreateInfrastructureConfigurationCommand).de(de_CreateInfrastructureConfigurationCommand).build() {
3900
+ static {
3901
+ __name(this, "CreateInfrastructureConfigurationCommand");
3902
+ }
3828
3903
  };
3829
- __name(_CreateInfrastructureConfigurationCommand, "CreateInfrastructureConfigurationCommand");
3830
- var CreateInfrastructureConfigurationCommand = _CreateInfrastructureConfigurationCommand;
3831
3904
 
3832
3905
  // src/commands/CreateLifecyclePolicyCommand.ts
3833
3906
 
3834
3907
 
3835
3908
 
3836
- var _CreateLifecyclePolicyCommand = class _CreateLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3909
+ var CreateLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3837
3910
  return [
3838
3911
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3839
3912
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3840
3913
  ];
3841
3914
  }).s("imagebuilder", "CreateLifecyclePolicy", {}).n("ImagebuilderClient", "CreateLifecyclePolicyCommand").f(void 0, void 0).ser(se_CreateLifecyclePolicyCommand).de(de_CreateLifecyclePolicyCommand).build() {
3915
+ static {
3916
+ __name(this, "CreateLifecyclePolicyCommand");
3917
+ }
3842
3918
  };
3843
- __name(_CreateLifecyclePolicyCommand, "CreateLifecyclePolicyCommand");
3844
- var CreateLifecyclePolicyCommand = _CreateLifecyclePolicyCommand;
3845
3919
 
3846
3920
  // src/commands/CreateWorkflowCommand.ts
3847
3921
 
3848
3922
 
3849
3923
 
3850
- var _CreateWorkflowCommand = class _CreateWorkflowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3924
+ var CreateWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3851
3925
  return [
3852
3926
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3853
3927
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3854
3928
  ];
3855
3929
  }).s("imagebuilder", "CreateWorkflow", {}).n("ImagebuilderClient", "CreateWorkflowCommand").f(void 0, void 0).ser(se_CreateWorkflowCommand).de(de_CreateWorkflowCommand).build() {
3930
+ static {
3931
+ __name(this, "CreateWorkflowCommand");
3932
+ }
3856
3933
  };
3857
- __name(_CreateWorkflowCommand, "CreateWorkflowCommand");
3858
- var CreateWorkflowCommand = _CreateWorkflowCommand;
3859
3934
 
3860
3935
  // src/commands/DeleteComponentCommand.ts
3861
3936
 
3862
3937
 
3863
3938
 
3864
- var _DeleteComponentCommand = class _DeleteComponentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3939
+ var DeleteComponentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3865
3940
  return [
3866
3941
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3867
3942
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3868
3943
  ];
3869
3944
  }).s("imagebuilder", "DeleteComponent", {}).n("ImagebuilderClient", "DeleteComponentCommand").f(void 0, void 0).ser(se_DeleteComponentCommand).de(de_DeleteComponentCommand).build() {
3945
+ static {
3946
+ __name(this, "DeleteComponentCommand");
3947
+ }
3870
3948
  };
3871
- __name(_DeleteComponentCommand, "DeleteComponentCommand");
3872
- var DeleteComponentCommand = _DeleteComponentCommand;
3873
3949
 
3874
3950
  // src/commands/DeleteContainerRecipeCommand.ts
3875
3951
 
3876
3952
 
3877
3953
 
3878
- var _DeleteContainerRecipeCommand = class _DeleteContainerRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3954
+ var DeleteContainerRecipeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3879
3955
  return [
3880
3956
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3881
3957
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3882
3958
  ];
3883
3959
  }).s("imagebuilder", "DeleteContainerRecipe", {}).n("ImagebuilderClient", "DeleteContainerRecipeCommand").f(void 0, void 0).ser(se_DeleteContainerRecipeCommand).de(de_DeleteContainerRecipeCommand).build() {
3960
+ static {
3961
+ __name(this, "DeleteContainerRecipeCommand");
3962
+ }
3884
3963
  };
3885
- __name(_DeleteContainerRecipeCommand, "DeleteContainerRecipeCommand");
3886
- var DeleteContainerRecipeCommand = _DeleteContainerRecipeCommand;
3887
3964
 
3888
3965
  // src/commands/DeleteDistributionConfigurationCommand.ts
3889
3966
 
3890
3967
 
3891
3968
 
3892
- var _DeleteDistributionConfigurationCommand = class _DeleteDistributionConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3969
+ var DeleteDistributionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3893
3970
  return [
3894
3971
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3895
3972
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3896
3973
  ];
3897
3974
  }).s("imagebuilder", "DeleteDistributionConfiguration", {}).n("ImagebuilderClient", "DeleteDistributionConfigurationCommand").f(void 0, void 0).ser(se_DeleteDistributionConfigurationCommand).de(de_DeleteDistributionConfigurationCommand).build() {
3975
+ static {
3976
+ __name(this, "DeleteDistributionConfigurationCommand");
3977
+ }
3898
3978
  };
3899
- __name(_DeleteDistributionConfigurationCommand, "DeleteDistributionConfigurationCommand");
3900
- var DeleteDistributionConfigurationCommand = _DeleteDistributionConfigurationCommand;
3901
3979
 
3902
3980
  // src/commands/DeleteImageCommand.ts
3903
3981
 
3904
3982
 
3905
3983
 
3906
- var _DeleteImageCommand = class _DeleteImageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3984
+ var DeleteImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3907
3985
  return [
3908
3986
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3909
3987
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3910
3988
  ];
3911
3989
  }).s("imagebuilder", "DeleteImage", {}).n("ImagebuilderClient", "DeleteImageCommand").f(void 0, void 0).ser(se_DeleteImageCommand).de(de_DeleteImageCommand).build() {
3990
+ static {
3991
+ __name(this, "DeleteImageCommand");
3992
+ }
3912
3993
  };
3913
- __name(_DeleteImageCommand, "DeleteImageCommand");
3914
- var DeleteImageCommand = _DeleteImageCommand;
3915
3994
 
3916
3995
  // src/commands/DeleteImagePipelineCommand.ts
3917
3996
 
3918
3997
 
3919
3998
 
3920
- var _DeleteImagePipelineCommand = class _DeleteImagePipelineCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3999
+ var DeleteImagePipelineCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3921
4000
  return [
3922
4001
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3923
4002
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3924
4003
  ];
3925
4004
  }).s("imagebuilder", "DeleteImagePipeline", {}).n("ImagebuilderClient", "DeleteImagePipelineCommand").f(void 0, void 0).ser(se_DeleteImagePipelineCommand).de(de_DeleteImagePipelineCommand).build() {
4005
+ static {
4006
+ __name(this, "DeleteImagePipelineCommand");
4007
+ }
3926
4008
  };
3927
- __name(_DeleteImagePipelineCommand, "DeleteImagePipelineCommand");
3928
- var DeleteImagePipelineCommand = _DeleteImagePipelineCommand;
3929
4009
 
3930
4010
  // src/commands/DeleteImageRecipeCommand.ts
3931
4011
 
3932
4012
 
3933
4013
 
3934
- var _DeleteImageRecipeCommand = class _DeleteImageRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4014
+ var DeleteImageRecipeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3935
4015
  return [
3936
4016
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3937
4017
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3938
4018
  ];
3939
4019
  }).s("imagebuilder", "DeleteImageRecipe", {}).n("ImagebuilderClient", "DeleteImageRecipeCommand").f(void 0, void 0).ser(se_DeleteImageRecipeCommand).de(de_DeleteImageRecipeCommand).build() {
4020
+ static {
4021
+ __name(this, "DeleteImageRecipeCommand");
4022
+ }
3940
4023
  };
3941
- __name(_DeleteImageRecipeCommand, "DeleteImageRecipeCommand");
3942
- var DeleteImageRecipeCommand = _DeleteImageRecipeCommand;
3943
4024
 
3944
4025
  // src/commands/DeleteInfrastructureConfigurationCommand.ts
3945
4026
 
3946
4027
 
3947
4028
 
3948
- var _DeleteInfrastructureConfigurationCommand = class _DeleteInfrastructureConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4029
+ var DeleteInfrastructureConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3949
4030
  return [
3950
4031
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3951
4032
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3952
4033
  ];
3953
4034
  }).s("imagebuilder", "DeleteInfrastructureConfiguration", {}).n("ImagebuilderClient", "DeleteInfrastructureConfigurationCommand").f(void 0, void 0).ser(se_DeleteInfrastructureConfigurationCommand).de(de_DeleteInfrastructureConfigurationCommand).build() {
4035
+ static {
4036
+ __name(this, "DeleteInfrastructureConfigurationCommand");
4037
+ }
3954
4038
  };
3955
- __name(_DeleteInfrastructureConfigurationCommand, "DeleteInfrastructureConfigurationCommand");
3956
- var DeleteInfrastructureConfigurationCommand = _DeleteInfrastructureConfigurationCommand;
3957
4039
 
3958
4040
  // src/commands/DeleteLifecyclePolicyCommand.ts
3959
4041
 
3960
4042
 
3961
4043
 
3962
- var _DeleteLifecyclePolicyCommand = class _DeleteLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4044
+ var DeleteLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3963
4045
  return [
3964
4046
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3965
4047
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3966
4048
  ];
3967
4049
  }).s("imagebuilder", "DeleteLifecyclePolicy", {}).n("ImagebuilderClient", "DeleteLifecyclePolicyCommand").f(void 0, void 0).ser(se_DeleteLifecyclePolicyCommand).de(de_DeleteLifecyclePolicyCommand).build() {
4050
+ static {
4051
+ __name(this, "DeleteLifecyclePolicyCommand");
4052
+ }
3968
4053
  };
3969
- __name(_DeleteLifecyclePolicyCommand, "DeleteLifecyclePolicyCommand");
3970
- var DeleteLifecyclePolicyCommand = _DeleteLifecyclePolicyCommand;
3971
4054
 
3972
4055
  // src/commands/DeleteWorkflowCommand.ts
3973
4056
 
3974
4057
 
3975
4058
 
3976
- var _DeleteWorkflowCommand = class _DeleteWorkflowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4059
+ var DeleteWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3977
4060
  return [
3978
4061
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3979
4062
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3980
4063
  ];
3981
4064
  }).s("imagebuilder", "DeleteWorkflow", {}).n("ImagebuilderClient", "DeleteWorkflowCommand").f(void 0, void 0).ser(se_DeleteWorkflowCommand).de(de_DeleteWorkflowCommand).build() {
4065
+ static {
4066
+ __name(this, "DeleteWorkflowCommand");
4067
+ }
3982
4068
  };
3983
- __name(_DeleteWorkflowCommand, "DeleteWorkflowCommand");
3984
- var DeleteWorkflowCommand = _DeleteWorkflowCommand;
3985
4069
 
3986
4070
  // src/commands/GetComponentCommand.ts
3987
4071
 
3988
4072
 
3989
4073
 
3990
- var _GetComponentCommand = class _GetComponentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4074
+ var GetComponentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3991
4075
  return [
3992
4076
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3993
4077
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3994
4078
  ];
3995
4079
  }).s("imagebuilder", "GetComponent", {}).n("ImagebuilderClient", "GetComponentCommand").f(void 0, void 0).ser(se_GetComponentCommand).de(de_GetComponentCommand).build() {
4080
+ static {
4081
+ __name(this, "GetComponentCommand");
4082
+ }
3996
4083
  };
3997
- __name(_GetComponentCommand, "GetComponentCommand");
3998
- var GetComponentCommand = _GetComponentCommand;
3999
4084
 
4000
4085
  // src/commands/GetComponentPolicyCommand.ts
4001
4086
 
4002
4087
 
4003
4088
 
4004
- var _GetComponentPolicyCommand = class _GetComponentPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4089
+ var GetComponentPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4005
4090
  return [
4006
4091
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4007
4092
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4008
4093
  ];
4009
4094
  }).s("imagebuilder", "GetComponentPolicy", {}).n("ImagebuilderClient", "GetComponentPolicyCommand").f(void 0, void 0).ser(se_GetComponentPolicyCommand).de(de_GetComponentPolicyCommand).build() {
4095
+ static {
4096
+ __name(this, "GetComponentPolicyCommand");
4097
+ }
4010
4098
  };
4011
- __name(_GetComponentPolicyCommand, "GetComponentPolicyCommand");
4012
- var GetComponentPolicyCommand = _GetComponentPolicyCommand;
4013
4099
 
4014
4100
  // src/commands/GetContainerRecipeCommand.ts
4015
4101
 
4016
4102
 
4017
4103
 
4018
- var _GetContainerRecipeCommand = class _GetContainerRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4104
+ var GetContainerRecipeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4019
4105
  return [
4020
4106
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4021
4107
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4022
4108
  ];
4023
4109
  }).s("imagebuilder", "GetContainerRecipe", {}).n("ImagebuilderClient", "GetContainerRecipeCommand").f(void 0, void 0).ser(se_GetContainerRecipeCommand).de(de_GetContainerRecipeCommand).build() {
4110
+ static {
4111
+ __name(this, "GetContainerRecipeCommand");
4112
+ }
4024
4113
  };
4025
- __name(_GetContainerRecipeCommand, "GetContainerRecipeCommand");
4026
- var GetContainerRecipeCommand = _GetContainerRecipeCommand;
4027
4114
 
4028
4115
  // src/commands/GetContainerRecipePolicyCommand.ts
4029
4116
 
4030
4117
 
4031
4118
 
4032
- var _GetContainerRecipePolicyCommand = class _GetContainerRecipePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4119
+ var GetContainerRecipePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4033
4120
  return [
4034
4121
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4035
4122
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4036
4123
  ];
4037
4124
  }).s("imagebuilder", "GetContainerRecipePolicy", {}).n("ImagebuilderClient", "GetContainerRecipePolicyCommand").f(void 0, void 0).ser(se_GetContainerRecipePolicyCommand).de(de_GetContainerRecipePolicyCommand).build() {
4125
+ static {
4126
+ __name(this, "GetContainerRecipePolicyCommand");
4127
+ }
4038
4128
  };
4039
- __name(_GetContainerRecipePolicyCommand, "GetContainerRecipePolicyCommand");
4040
- var GetContainerRecipePolicyCommand = _GetContainerRecipePolicyCommand;
4041
4129
 
4042
4130
  // src/commands/GetDistributionConfigurationCommand.ts
4043
4131
 
4044
4132
 
4045
4133
 
4046
- var _GetDistributionConfigurationCommand = class _GetDistributionConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4134
+ var GetDistributionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4047
4135
  return [
4048
4136
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4049
4137
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4050
4138
  ];
4051
4139
  }).s("imagebuilder", "GetDistributionConfiguration", {}).n("ImagebuilderClient", "GetDistributionConfigurationCommand").f(void 0, void 0).ser(se_GetDistributionConfigurationCommand).de(de_GetDistributionConfigurationCommand).build() {
4140
+ static {
4141
+ __name(this, "GetDistributionConfigurationCommand");
4142
+ }
4052
4143
  };
4053
- __name(_GetDistributionConfigurationCommand, "GetDistributionConfigurationCommand");
4054
- var GetDistributionConfigurationCommand = _GetDistributionConfigurationCommand;
4055
4144
 
4056
4145
  // src/commands/GetImageCommand.ts
4057
4146
 
4058
4147
 
4059
4148
 
4060
- var _GetImageCommand = class _GetImageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4149
+ var GetImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4061
4150
  return [
4062
4151
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4063
4152
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4064
4153
  ];
4065
4154
  }).s("imagebuilder", "GetImage", {}).n("ImagebuilderClient", "GetImageCommand").f(void 0, void 0).ser(se_GetImageCommand).de(de_GetImageCommand).build() {
4155
+ static {
4156
+ __name(this, "GetImageCommand");
4157
+ }
4066
4158
  };
4067
- __name(_GetImageCommand, "GetImageCommand");
4068
- var GetImageCommand = _GetImageCommand;
4069
4159
 
4070
4160
  // src/commands/GetImagePipelineCommand.ts
4071
4161
 
4072
4162
 
4073
4163
 
4074
- var _GetImagePipelineCommand = class _GetImagePipelineCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4164
+ var GetImagePipelineCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4075
4165
  return [
4076
4166
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4077
4167
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4078
4168
  ];
4079
4169
  }).s("imagebuilder", "GetImagePipeline", {}).n("ImagebuilderClient", "GetImagePipelineCommand").f(void 0, void 0).ser(se_GetImagePipelineCommand).de(de_GetImagePipelineCommand).build() {
4170
+ static {
4171
+ __name(this, "GetImagePipelineCommand");
4172
+ }
4080
4173
  };
4081
- __name(_GetImagePipelineCommand, "GetImagePipelineCommand");
4082
- var GetImagePipelineCommand = _GetImagePipelineCommand;
4083
4174
 
4084
4175
  // src/commands/GetImagePolicyCommand.ts
4085
4176
 
4086
4177
 
4087
4178
 
4088
- var _GetImagePolicyCommand = class _GetImagePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4179
+ var GetImagePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4089
4180
  return [
4090
4181
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4091
4182
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4092
4183
  ];
4093
4184
  }).s("imagebuilder", "GetImagePolicy", {}).n("ImagebuilderClient", "GetImagePolicyCommand").f(void 0, void 0).ser(se_GetImagePolicyCommand).de(de_GetImagePolicyCommand).build() {
4185
+ static {
4186
+ __name(this, "GetImagePolicyCommand");
4187
+ }
4094
4188
  };
4095
- __name(_GetImagePolicyCommand, "GetImagePolicyCommand");
4096
- var GetImagePolicyCommand = _GetImagePolicyCommand;
4097
4189
 
4098
4190
  // src/commands/GetImageRecipeCommand.ts
4099
4191
 
4100
4192
 
4101
4193
 
4102
- var _GetImageRecipeCommand = class _GetImageRecipeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4194
+ var GetImageRecipeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4103
4195
  return [
4104
4196
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4105
4197
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4106
4198
  ];
4107
4199
  }).s("imagebuilder", "GetImageRecipe", {}).n("ImagebuilderClient", "GetImageRecipeCommand").f(void 0, void 0).ser(se_GetImageRecipeCommand).de(de_GetImageRecipeCommand).build() {
4200
+ static {
4201
+ __name(this, "GetImageRecipeCommand");
4202
+ }
4108
4203
  };
4109
- __name(_GetImageRecipeCommand, "GetImageRecipeCommand");
4110
- var GetImageRecipeCommand = _GetImageRecipeCommand;
4111
4204
 
4112
4205
  // src/commands/GetImageRecipePolicyCommand.ts
4113
4206
 
4114
4207
 
4115
4208
 
4116
- var _GetImageRecipePolicyCommand = class _GetImageRecipePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4209
+ var GetImageRecipePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4117
4210
  return [
4118
4211
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4119
4212
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4120
4213
  ];
4121
4214
  }).s("imagebuilder", "GetImageRecipePolicy", {}).n("ImagebuilderClient", "GetImageRecipePolicyCommand").f(void 0, void 0).ser(se_GetImageRecipePolicyCommand).de(de_GetImageRecipePolicyCommand).build() {
4215
+ static {
4216
+ __name(this, "GetImageRecipePolicyCommand");
4217
+ }
4122
4218
  };
4123
- __name(_GetImageRecipePolicyCommand, "GetImageRecipePolicyCommand");
4124
- var GetImageRecipePolicyCommand = _GetImageRecipePolicyCommand;
4125
4219
 
4126
4220
  // src/commands/GetInfrastructureConfigurationCommand.ts
4127
4221
 
4128
4222
 
4129
4223
 
4130
- var _GetInfrastructureConfigurationCommand = class _GetInfrastructureConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4224
+ var GetInfrastructureConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4131
4225
  return [
4132
4226
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4133
4227
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4134
4228
  ];
4135
4229
  }).s("imagebuilder", "GetInfrastructureConfiguration", {}).n("ImagebuilderClient", "GetInfrastructureConfigurationCommand").f(void 0, void 0).ser(se_GetInfrastructureConfigurationCommand).de(de_GetInfrastructureConfigurationCommand).build() {
4230
+ static {
4231
+ __name(this, "GetInfrastructureConfigurationCommand");
4232
+ }
4136
4233
  };
4137
- __name(_GetInfrastructureConfigurationCommand, "GetInfrastructureConfigurationCommand");
4138
- var GetInfrastructureConfigurationCommand = _GetInfrastructureConfigurationCommand;
4139
4234
 
4140
4235
  // src/commands/GetLifecycleExecutionCommand.ts
4141
4236
 
4142
4237
 
4143
4238
 
4144
- var _GetLifecycleExecutionCommand = class _GetLifecycleExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4239
+ var GetLifecycleExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4145
4240
  return [
4146
4241
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4147
4242
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4148
4243
  ];
4149
4244
  }).s("imagebuilder", "GetLifecycleExecution", {}).n("ImagebuilderClient", "GetLifecycleExecutionCommand").f(void 0, void 0).ser(se_GetLifecycleExecutionCommand).de(de_GetLifecycleExecutionCommand).build() {
4245
+ static {
4246
+ __name(this, "GetLifecycleExecutionCommand");
4247
+ }
4150
4248
  };
4151
- __name(_GetLifecycleExecutionCommand, "GetLifecycleExecutionCommand");
4152
- var GetLifecycleExecutionCommand = _GetLifecycleExecutionCommand;
4153
4249
 
4154
4250
  // src/commands/GetLifecyclePolicyCommand.ts
4155
4251
 
4156
4252
 
4157
4253
 
4158
- var _GetLifecyclePolicyCommand = class _GetLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4254
+ var GetLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4159
4255
  return [
4160
4256
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4161
4257
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4162
4258
  ];
4163
4259
  }).s("imagebuilder", "GetLifecyclePolicy", {}).n("ImagebuilderClient", "GetLifecyclePolicyCommand").f(void 0, void 0).ser(se_GetLifecyclePolicyCommand).de(de_GetLifecyclePolicyCommand).build() {
4260
+ static {
4261
+ __name(this, "GetLifecyclePolicyCommand");
4262
+ }
4164
4263
  };
4165
- __name(_GetLifecyclePolicyCommand, "GetLifecyclePolicyCommand");
4166
- var GetLifecyclePolicyCommand = _GetLifecyclePolicyCommand;
4167
4264
 
4168
4265
  // src/commands/GetMarketplaceResourceCommand.ts
4169
4266
 
4170
4267
 
4171
4268
 
4172
- var _GetMarketplaceResourceCommand = class _GetMarketplaceResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4269
+ var GetMarketplaceResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4173
4270
  return [
4174
4271
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4175
4272
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4176
4273
  ];
4177
4274
  }).s("imagebuilder", "GetMarketplaceResource", {}).n("ImagebuilderClient", "GetMarketplaceResourceCommand").f(void 0, void 0).ser(se_GetMarketplaceResourceCommand).de(de_GetMarketplaceResourceCommand).build() {
4275
+ static {
4276
+ __name(this, "GetMarketplaceResourceCommand");
4277
+ }
4178
4278
  };
4179
- __name(_GetMarketplaceResourceCommand, "GetMarketplaceResourceCommand");
4180
- var GetMarketplaceResourceCommand = _GetMarketplaceResourceCommand;
4181
4279
 
4182
4280
  // src/commands/GetWorkflowCommand.ts
4183
4281
 
4184
4282
 
4185
4283
 
4186
- var _GetWorkflowCommand = class _GetWorkflowCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4284
+ var GetWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4187
4285
  return [
4188
4286
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4189
4287
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4190
4288
  ];
4191
4289
  }).s("imagebuilder", "GetWorkflow", {}).n("ImagebuilderClient", "GetWorkflowCommand").f(void 0, void 0).ser(se_GetWorkflowCommand).de(de_GetWorkflowCommand).build() {
4290
+ static {
4291
+ __name(this, "GetWorkflowCommand");
4292
+ }
4192
4293
  };
4193
- __name(_GetWorkflowCommand, "GetWorkflowCommand");
4194
- var GetWorkflowCommand = _GetWorkflowCommand;
4195
4294
 
4196
4295
  // src/commands/GetWorkflowExecutionCommand.ts
4197
4296
 
4198
4297
 
4199
4298
 
4200
- var _GetWorkflowExecutionCommand = class _GetWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4299
+ var GetWorkflowExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4201
4300
  return [
4202
4301
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4203
4302
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4204
4303
  ];
4205
4304
  }).s("imagebuilder", "GetWorkflowExecution", {}).n("ImagebuilderClient", "GetWorkflowExecutionCommand").f(void 0, void 0).ser(se_GetWorkflowExecutionCommand).de(de_GetWorkflowExecutionCommand).build() {
4305
+ static {
4306
+ __name(this, "GetWorkflowExecutionCommand");
4307
+ }
4206
4308
  };
4207
- __name(_GetWorkflowExecutionCommand, "GetWorkflowExecutionCommand");
4208
- var GetWorkflowExecutionCommand = _GetWorkflowExecutionCommand;
4209
4309
 
4210
4310
  // src/commands/GetWorkflowStepExecutionCommand.ts
4211
4311
 
4212
4312
 
4213
4313
 
4214
- var _GetWorkflowStepExecutionCommand = class _GetWorkflowStepExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4314
+ var GetWorkflowStepExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4215
4315
  return [
4216
4316
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4217
4317
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4218
4318
  ];
4219
4319
  }).s("imagebuilder", "GetWorkflowStepExecution", {}).n("ImagebuilderClient", "GetWorkflowStepExecutionCommand").f(void 0, void 0).ser(se_GetWorkflowStepExecutionCommand).de(de_GetWorkflowStepExecutionCommand).build() {
4320
+ static {
4321
+ __name(this, "GetWorkflowStepExecutionCommand");
4322
+ }
4220
4323
  };
4221
- __name(_GetWorkflowStepExecutionCommand, "GetWorkflowStepExecutionCommand");
4222
- var GetWorkflowStepExecutionCommand = _GetWorkflowStepExecutionCommand;
4223
4324
 
4224
4325
  // src/commands/ImportComponentCommand.ts
4225
4326
 
4226
4327
 
4227
4328
 
4228
- var _ImportComponentCommand = class _ImportComponentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4329
+ var ImportComponentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4229
4330
  return [
4230
4331
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4231
4332
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4232
4333
  ];
4233
4334
  }).s("imagebuilder", "ImportComponent", {}).n("ImagebuilderClient", "ImportComponentCommand").f(void 0, void 0).ser(se_ImportComponentCommand).de(de_ImportComponentCommand).build() {
4335
+ static {
4336
+ __name(this, "ImportComponentCommand");
4337
+ }
4338
+ };
4339
+
4340
+ // src/commands/ImportDiskImageCommand.ts
4341
+
4342
+
4343
+
4344
+ var ImportDiskImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4345
+ return [
4346
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4347
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4348
+ ];
4349
+ }).s("imagebuilder", "ImportDiskImage", {}).n("ImagebuilderClient", "ImportDiskImageCommand").f(void 0, void 0).ser(se_ImportDiskImageCommand).de(de_ImportDiskImageCommand).build() {
4350
+ static {
4351
+ __name(this, "ImportDiskImageCommand");
4352
+ }
4234
4353
  };
4235
- __name(_ImportComponentCommand, "ImportComponentCommand");
4236
- var ImportComponentCommand = _ImportComponentCommand;
4237
4354
 
4238
4355
  // src/commands/ImportVmImageCommand.ts
4239
4356
 
4240
4357
 
4241
4358
 
4242
- var _ImportVmImageCommand = class _ImportVmImageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4359
+ var ImportVmImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4243
4360
  return [
4244
4361
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4245
4362
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4246
4363
  ];
4247
4364
  }).s("imagebuilder", "ImportVmImage", {}).n("ImagebuilderClient", "ImportVmImageCommand").f(void 0, void 0).ser(se_ImportVmImageCommand).de(de_ImportVmImageCommand).build() {
4365
+ static {
4366
+ __name(this, "ImportVmImageCommand");
4367
+ }
4248
4368
  };
4249
- __name(_ImportVmImageCommand, "ImportVmImageCommand");
4250
- var ImportVmImageCommand = _ImportVmImageCommand;
4251
4369
 
4252
4370
  // src/commands/ListComponentBuildVersionsCommand.ts
4253
4371
 
4254
4372
 
4255
4373
 
4256
- var _ListComponentBuildVersionsCommand = class _ListComponentBuildVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4374
+ var ListComponentBuildVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4257
4375
  return [
4258
4376
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4259
4377
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4260
4378
  ];
4261
4379
  }).s("imagebuilder", "ListComponentBuildVersions", {}).n("ImagebuilderClient", "ListComponentBuildVersionsCommand").f(void 0, void 0).ser(se_ListComponentBuildVersionsCommand).de(de_ListComponentBuildVersionsCommand).build() {
4380
+ static {
4381
+ __name(this, "ListComponentBuildVersionsCommand");
4382
+ }
4262
4383
  };
4263
- __name(_ListComponentBuildVersionsCommand, "ListComponentBuildVersionsCommand");
4264
- var ListComponentBuildVersionsCommand = _ListComponentBuildVersionsCommand;
4265
4384
 
4266
4385
  // src/commands/ListComponentsCommand.ts
4267
4386
 
4268
4387
 
4269
4388
 
4270
- var _ListComponentsCommand = class _ListComponentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4389
+ var ListComponentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4271
4390
  return [
4272
4391
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4273
4392
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4274
4393
  ];
4275
4394
  }).s("imagebuilder", "ListComponents", {}).n("ImagebuilderClient", "ListComponentsCommand").f(void 0, void 0).ser(se_ListComponentsCommand).de(de_ListComponentsCommand).build() {
4395
+ static {
4396
+ __name(this, "ListComponentsCommand");
4397
+ }
4276
4398
  };
4277
- __name(_ListComponentsCommand, "ListComponentsCommand");
4278
- var ListComponentsCommand = _ListComponentsCommand;
4279
4399
 
4280
4400
  // src/commands/ListContainerRecipesCommand.ts
4281
4401
 
4282
4402
 
4283
4403
 
4284
- var _ListContainerRecipesCommand = class _ListContainerRecipesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4404
+ var ListContainerRecipesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4285
4405
  return [
4286
4406
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4287
4407
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4288
4408
  ];
4289
4409
  }).s("imagebuilder", "ListContainerRecipes", {}).n("ImagebuilderClient", "ListContainerRecipesCommand").f(void 0, void 0).ser(se_ListContainerRecipesCommand).de(de_ListContainerRecipesCommand).build() {
4410
+ static {
4411
+ __name(this, "ListContainerRecipesCommand");
4412
+ }
4290
4413
  };
4291
- __name(_ListContainerRecipesCommand, "ListContainerRecipesCommand");
4292
- var ListContainerRecipesCommand = _ListContainerRecipesCommand;
4293
4414
 
4294
4415
  // src/commands/ListDistributionConfigurationsCommand.ts
4295
4416
 
4296
4417
 
4297
4418
 
4298
- var _ListDistributionConfigurationsCommand = class _ListDistributionConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4419
+ var ListDistributionConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4299
4420
  return [
4300
4421
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4301
4422
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4302
4423
  ];
4303
4424
  }).s("imagebuilder", "ListDistributionConfigurations", {}).n("ImagebuilderClient", "ListDistributionConfigurationsCommand").f(void 0, void 0).ser(se_ListDistributionConfigurationsCommand).de(de_ListDistributionConfigurationsCommand).build() {
4425
+ static {
4426
+ __name(this, "ListDistributionConfigurationsCommand");
4427
+ }
4304
4428
  };
4305
- __name(_ListDistributionConfigurationsCommand, "ListDistributionConfigurationsCommand");
4306
- var ListDistributionConfigurationsCommand = _ListDistributionConfigurationsCommand;
4307
4429
 
4308
4430
  // src/commands/ListImageBuildVersionsCommand.ts
4309
4431
 
4310
4432
 
4311
4433
 
4312
- var _ListImageBuildVersionsCommand = class _ListImageBuildVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4434
+ var ListImageBuildVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4313
4435
  return [
4314
4436
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4315
4437
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4316
4438
  ];
4317
4439
  }).s("imagebuilder", "ListImageBuildVersions", {}).n("ImagebuilderClient", "ListImageBuildVersionsCommand").f(void 0, void 0).ser(se_ListImageBuildVersionsCommand).de(de_ListImageBuildVersionsCommand).build() {
4440
+ static {
4441
+ __name(this, "ListImageBuildVersionsCommand");
4442
+ }
4318
4443
  };
4319
- __name(_ListImageBuildVersionsCommand, "ListImageBuildVersionsCommand");
4320
- var ListImageBuildVersionsCommand = _ListImageBuildVersionsCommand;
4321
4444
 
4322
4445
  // src/commands/ListImagePackagesCommand.ts
4323
4446
 
4324
4447
 
4325
4448
 
4326
- var _ListImagePackagesCommand = class _ListImagePackagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4449
+ var ListImagePackagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4327
4450
  return [
4328
4451
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4329
4452
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4330
4453
  ];
4331
4454
  }).s("imagebuilder", "ListImagePackages", {}).n("ImagebuilderClient", "ListImagePackagesCommand").f(void 0, void 0).ser(se_ListImagePackagesCommand).de(de_ListImagePackagesCommand).build() {
4455
+ static {
4456
+ __name(this, "ListImagePackagesCommand");
4457
+ }
4332
4458
  };
4333
- __name(_ListImagePackagesCommand, "ListImagePackagesCommand");
4334
- var ListImagePackagesCommand = _ListImagePackagesCommand;
4335
4459
 
4336
4460
  // src/commands/ListImagePipelineImagesCommand.ts
4337
4461
 
4338
4462
 
4339
4463
 
4340
- var _ListImagePipelineImagesCommand = class _ListImagePipelineImagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4464
+ var ListImagePipelineImagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4341
4465
  return [
4342
4466
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4343
4467
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4344
4468
  ];
4345
4469
  }).s("imagebuilder", "ListImagePipelineImages", {}).n("ImagebuilderClient", "ListImagePipelineImagesCommand").f(void 0, void 0).ser(se_ListImagePipelineImagesCommand).de(de_ListImagePipelineImagesCommand).build() {
4470
+ static {
4471
+ __name(this, "ListImagePipelineImagesCommand");
4472
+ }
4346
4473
  };
4347
- __name(_ListImagePipelineImagesCommand, "ListImagePipelineImagesCommand");
4348
- var ListImagePipelineImagesCommand = _ListImagePipelineImagesCommand;
4349
4474
 
4350
4475
  // src/commands/ListImagePipelinesCommand.ts
4351
4476
 
4352
4477
 
4353
4478
 
4354
- var _ListImagePipelinesCommand = class _ListImagePipelinesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4479
+ var ListImagePipelinesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4355
4480
  return [
4356
4481
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4357
4482
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4358
4483
  ];
4359
4484
  }).s("imagebuilder", "ListImagePipelines", {}).n("ImagebuilderClient", "ListImagePipelinesCommand").f(void 0, void 0).ser(se_ListImagePipelinesCommand).de(de_ListImagePipelinesCommand).build() {
4485
+ static {
4486
+ __name(this, "ListImagePipelinesCommand");
4487
+ }
4360
4488
  };
4361
- __name(_ListImagePipelinesCommand, "ListImagePipelinesCommand");
4362
- var ListImagePipelinesCommand = _ListImagePipelinesCommand;
4363
4489
 
4364
4490
  // src/commands/ListImageRecipesCommand.ts
4365
4491
 
4366
4492
 
4367
4493
 
4368
- var _ListImageRecipesCommand = class _ListImageRecipesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4494
+ var ListImageRecipesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4369
4495
  return [
4370
4496
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4371
4497
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4372
4498
  ];
4373
4499
  }).s("imagebuilder", "ListImageRecipes", {}).n("ImagebuilderClient", "ListImageRecipesCommand").f(void 0, void 0).ser(se_ListImageRecipesCommand).de(de_ListImageRecipesCommand).build() {
4500
+ static {
4501
+ __name(this, "ListImageRecipesCommand");
4502
+ }
4374
4503
  };
4375
- __name(_ListImageRecipesCommand, "ListImageRecipesCommand");
4376
- var ListImageRecipesCommand = _ListImageRecipesCommand;
4377
4504
 
4378
4505
  // src/commands/ListImageScanFindingAggregationsCommand.ts
4379
4506
 
4380
4507
 
4381
4508
 
4382
- var _ListImageScanFindingAggregationsCommand = class _ListImageScanFindingAggregationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4509
+ var ListImageScanFindingAggregationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4383
4510
  return [
4384
4511
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4385
4512
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4386
4513
  ];
4387
4514
  }).s("imagebuilder", "ListImageScanFindingAggregations", {}).n("ImagebuilderClient", "ListImageScanFindingAggregationsCommand").f(void 0, void 0).ser(se_ListImageScanFindingAggregationsCommand).de(de_ListImageScanFindingAggregationsCommand).build() {
4515
+ static {
4516
+ __name(this, "ListImageScanFindingAggregationsCommand");
4517
+ }
4388
4518
  };
4389
- __name(_ListImageScanFindingAggregationsCommand, "ListImageScanFindingAggregationsCommand");
4390
- var ListImageScanFindingAggregationsCommand = _ListImageScanFindingAggregationsCommand;
4391
4519
 
4392
4520
  // src/commands/ListImageScanFindingsCommand.ts
4393
4521
 
4394
4522
 
4395
4523
 
4396
- var _ListImageScanFindingsCommand = class _ListImageScanFindingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4524
+ var ListImageScanFindingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4397
4525
  return [
4398
4526
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4399
4527
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4400
4528
  ];
4401
4529
  }).s("imagebuilder", "ListImageScanFindings", {}).n("ImagebuilderClient", "ListImageScanFindingsCommand").f(void 0, void 0).ser(se_ListImageScanFindingsCommand).de(de_ListImageScanFindingsCommand).build() {
4530
+ static {
4531
+ __name(this, "ListImageScanFindingsCommand");
4532
+ }
4402
4533
  };
4403
- __name(_ListImageScanFindingsCommand, "ListImageScanFindingsCommand");
4404
- var ListImageScanFindingsCommand = _ListImageScanFindingsCommand;
4405
4534
 
4406
4535
  // src/commands/ListImagesCommand.ts
4407
4536
 
4408
4537
 
4409
4538
 
4410
- var _ListImagesCommand = class _ListImagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4539
+ var ListImagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4411
4540
  return [
4412
4541
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4413
4542
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4414
4543
  ];
4415
4544
  }).s("imagebuilder", "ListImages", {}).n("ImagebuilderClient", "ListImagesCommand").f(void 0, void 0).ser(se_ListImagesCommand).de(de_ListImagesCommand).build() {
4545
+ static {
4546
+ __name(this, "ListImagesCommand");
4547
+ }
4416
4548
  };
4417
- __name(_ListImagesCommand, "ListImagesCommand");
4418
- var ListImagesCommand = _ListImagesCommand;
4419
4549
 
4420
4550
  // src/commands/ListInfrastructureConfigurationsCommand.ts
4421
4551
 
4422
4552
 
4423
4553
 
4424
- var _ListInfrastructureConfigurationsCommand = class _ListInfrastructureConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4554
+ var ListInfrastructureConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4425
4555
  return [
4426
4556
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4427
4557
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4428
4558
  ];
4429
4559
  }).s("imagebuilder", "ListInfrastructureConfigurations", {}).n("ImagebuilderClient", "ListInfrastructureConfigurationsCommand").f(void 0, void 0).ser(se_ListInfrastructureConfigurationsCommand).de(de_ListInfrastructureConfigurationsCommand).build() {
4560
+ static {
4561
+ __name(this, "ListInfrastructureConfigurationsCommand");
4562
+ }
4430
4563
  };
4431
- __name(_ListInfrastructureConfigurationsCommand, "ListInfrastructureConfigurationsCommand");
4432
- var ListInfrastructureConfigurationsCommand = _ListInfrastructureConfigurationsCommand;
4433
4564
 
4434
4565
  // src/commands/ListLifecycleExecutionResourcesCommand.ts
4435
4566
 
4436
4567
 
4437
4568
 
4438
- var _ListLifecycleExecutionResourcesCommand = class _ListLifecycleExecutionResourcesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4569
+ var ListLifecycleExecutionResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4439
4570
  return [
4440
4571
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4441
4572
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4442
4573
  ];
4443
4574
  }).s("imagebuilder", "ListLifecycleExecutionResources", {}).n("ImagebuilderClient", "ListLifecycleExecutionResourcesCommand").f(void 0, void 0).ser(se_ListLifecycleExecutionResourcesCommand).de(de_ListLifecycleExecutionResourcesCommand).build() {
4575
+ static {
4576
+ __name(this, "ListLifecycleExecutionResourcesCommand");
4577
+ }
4444
4578
  };
4445
- __name(_ListLifecycleExecutionResourcesCommand, "ListLifecycleExecutionResourcesCommand");
4446
- var ListLifecycleExecutionResourcesCommand = _ListLifecycleExecutionResourcesCommand;
4447
4579
 
4448
4580
  // src/commands/ListLifecycleExecutionsCommand.ts
4449
4581
 
4450
4582
 
4451
4583
 
4452
- var _ListLifecycleExecutionsCommand = class _ListLifecycleExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4584
+ var ListLifecycleExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4453
4585
  return [
4454
4586
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4455
4587
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4456
4588
  ];
4457
4589
  }).s("imagebuilder", "ListLifecycleExecutions", {}).n("ImagebuilderClient", "ListLifecycleExecutionsCommand").f(void 0, void 0).ser(se_ListLifecycleExecutionsCommand).de(de_ListLifecycleExecutionsCommand).build() {
4590
+ static {
4591
+ __name(this, "ListLifecycleExecutionsCommand");
4592
+ }
4458
4593
  };
4459
- __name(_ListLifecycleExecutionsCommand, "ListLifecycleExecutionsCommand");
4460
- var ListLifecycleExecutionsCommand = _ListLifecycleExecutionsCommand;
4461
4594
 
4462
4595
  // src/commands/ListLifecyclePoliciesCommand.ts
4463
4596
 
4464
4597
 
4465
4598
 
4466
- var _ListLifecyclePoliciesCommand = class _ListLifecyclePoliciesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4599
+ var ListLifecyclePoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4467
4600
  return [
4468
4601
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4469
4602
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4470
4603
  ];
4471
4604
  }).s("imagebuilder", "ListLifecyclePolicies", {}).n("ImagebuilderClient", "ListLifecyclePoliciesCommand").f(void 0, void 0).ser(se_ListLifecyclePoliciesCommand).de(de_ListLifecyclePoliciesCommand).build() {
4605
+ static {
4606
+ __name(this, "ListLifecyclePoliciesCommand");
4607
+ }
4472
4608
  };
4473
- __name(_ListLifecyclePoliciesCommand, "ListLifecyclePoliciesCommand");
4474
- var ListLifecyclePoliciesCommand = _ListLifecyclePoliciesCommand;
4475
4609
 
4476
4610
  // src/commands/ListTagsForResourceCommand.ts
4477
4611
 
4478
4612
 
4479
4613
 
4480
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4614
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4481
4615
  return [
4482
4616
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4483
4617
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4484
4618
  ];
4485
4619
  }).s("imagebuilder", "ListTagsForResource", {}).n("ImagebuilderClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
4620
+ static {
4621
+ __name(this, "ListTagsForResourceCommand");
4622
+ }
4486
4623
  };
4487
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
4488
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
4489
4624
 
4490
4625
  // src/commands/ListWaitingWorkflowStepsCommand.ts
4491
4626
 
4492
4627
 
4493
4628
 
4494
- var _ListWaitingWorkflowStepsCommand = class _ListWaitingWorkflowStepsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4629
+ var ListWaitingWorkflowStepsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4495
4630
  return [
4496
4631
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4497
4632
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4498
4633
  ];
4499
4634
  }).s("imagebuilder", "ListWaitingWorkflowSteps", {}).n("ImagebuilderClient", "ListWaitingWorkflowStepsCommand").f(void 0, void 0).ser(se_ListWaitingWorkflowStepsCommand).de(de_ListWaitingWorkflowStepsCommand).build() {
4635
+ static {
4636
+ __name(this, "ListWaitingWorkflowStepsCommand");
4637
+ }
4500
4638
  };
4501
- __name(_ListWaitingWorkflowStepsCommand, "ListWaitingWorkflowStepsCommand");
4502
- var ListWaitingWorkflowStepsCommand = _ListWaitingWorkflowStepsCommand;
4503
4639
 
4504
4640
  // src/commands/ListWorkflowBuildVersionsCommand.ts
4505
4641
 
4506
4642
 
4507
4643
 
4508
- var _ListWorkflowBuildVersionsCommand = class _ListWorkflowBuildVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4644
+ var ListWorkflowBuildVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4509
4645
  return [
4510
4646
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4511
4647
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4512
4648
  ];
4513
4649
  }).s("imagebuilder", "ListWorkflowBuildVersions", {}).n("ImagebuilderClient", "ListWorkflowBuildVersionsCommand").f(void 0, void 0).ser(se_ListWorkflowBuildVersionsCommand).de(de_ListWorkflowBuildVersionsCommand).build() {
4650
+ static {
4651
+ __name(this, "ListWorkflowBuildVersionsCommand");
4652
+ }
4514
4653
  };
4515
- __name(_ListWorkflowBuildVersionsCommand, "ListWorkflowBuildVersionsCommand");
4516
- var ListWorkflowBuildVersionsCommand = _ListWorkflowBuildVersionsCommand;
4517
4654
 
4518
4655
  // src/commands/ListWorkflowExecutionsCommand.ts
4519
4656
 
4520
4657
 
4521
4658
 
4522
- var _ListWorkflowExecutionsCommand = class _ListWorkflowExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4659
+ var ListWorkflowExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4523
4660
  return [
4524
4661
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4525
4662
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4526
4663
  ];
4527
4664
  }).s("imagebuilder", "ListWorkflowExecutions", {}).n("ImagebuilderClient", "ListWorkflowExecutionsCommand").f(void 0, void 0).ser(se_ListWorkflowExecutionsCommand).de(de_ListWorkflowExecutionsCommand).build() {
4665
+ static {
4666
+ __name(this, "ListWorkflowExecutionsCommand");
4667
+ }
4528
4668
  };
4529
- __name(_ListWorkflowExecutionsCommand, "ListWorkflowExecutionsCommand");
4530
- var ListWorkflowExecutionsCommand = _ListWorkflowExecutionsCommand;
4531
4669
 
4532
4670
  // src/commands/ListWorkflowsCommand.ts
4533
4671
 
4534
4672
 
4535
4673
 
4536
- var _ListWorkflowsCommand = class _ListWorkflowsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4674
+ var ListWorkflowsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4537
4675
  return [
4538
4676
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4539
4677
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4540
4678
  ];
4541
4679
  }).s("imagebuilder", "ListWorkflows", {}).n("ImagebuilderClient", "ListWorkflowsCommand").f(void 0, void 0).ser(se_ListWorkflowsCommand).de(de_ListWorkflowsCommand).build() {
4680
+ static {
4681
+ __name(this, "ListWorkflowsCommand");
4682
+ }
4542
4683
  };
4543
- __name(_ListWorkflowsCommand, "ListWorkflowsCommand");
4544
- var ListWorkflowsCommand = _ListWorkflowsCommand;
4545
4684
 
4546
4685
  // src/commands/ListWorkflowStepExecutionsCommand.ts
4547
4686
 
4548
4687
 
4549
4688
 
4550
- var _ListWorkflowStepExecutionsCommand = class _ListWorkflowStepExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4689
+ var ListWorkflowStepExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4551
4690
  return [
4552
4691
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4553
4692
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4554
4693
  ];
4555
4694
  }).s("imagebuilder", "ListWorkflowStepExecutions", {}).n("ImagebuilderClient", "ListWorkflowStepExecutionsCommand").f(void 0, void 0).ser(se_ListWorkflowStepExecutionsCommand).de(de_ListWorkflowStepExecutionsCommand).build() {
4695
+ static {
4696
+ __name(this, "ListWorkflowStepExecutionsCommand");
4697
+ }
4556
4698
  };
4557
- __name(_ListWorkflowStepExecutionsCommand, "ListWorkflowStepExecutionsCommand");
4558
- var ListWorkflowStepExecutionsCommand = _ListWorkflowStepExecutionsCommand;
4559
4699
 
4560
4700
  // src/commands/PutComponentPolicyCommand.ts
4561
4701
 
4562
4702
 
4563
4703
 
4564
- var _PutComponentPolicyCommand = class _PutComponentPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4704
+ var PutComponentPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4565
4705
  return [
4566
4706
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4567
4707
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4568
4708
  ];
4569
4709
  }).s("imagebuilder", "PutComponentPolicy", {}).n("ImagebuilderClient", "PutComponentPolicyCommand").f(void 0, void 0).ser(se_PutComponentPolicyCommand).de(de_PutComponentPolicyCommand).build() {
4710
+ static {
4711
+ __name(this, "PutComponentPolicyCommand");
4712
+ }
4570
4713
  };
4571
- __name(_PutComponentPolicyCommand, "PutComponentPolicyCommand");
4572
- var PutComponentPolicyCommand = _PutComponentPolicyCommand;
4573
4714
 
4574
4715
  // src/commands/PutContainerRecipePolicyCommand.ts
4575
4716
 
4576
4717
 
4577
4718
 
4578
- var _PutContainerRecipePolicyCommand = class _PutContainerRecipePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4719
+ var PutContainerRecipePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4579
4720
  return [
4580
4721
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4581
4722
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4582
4723
  ];
4583
4724
  }).s("imagebuilder", "PutContainerRecipePolicy", {}).n("ImagebuilderClient", "PutContainerRecipePolicyCommand").f(void 0, void 0).ser(se_PutContainerRecipePolicyCommand).de(de_PutContainerRecipePolicyCommand).build() {
4725
+ static {
4726
+ __name(this, "PutContainerRecipePolicyCommand");
4727
+ }
4584
4728
  };
4585
- __name(_PutContainerRecipePolicyCommand, "PutContainerRecipePolicyCommand");
4586
- var PutContainerRecipePolicyCommand = _PutContainerRecipePolicyCommand;
4587
4729
 
4588
4730
  // src/commands/PutImagePolicyCommand.ts
4589
4731
 
4590
4732
 
4591
4733
 
4592
- var _PutImagePolicyCommand = class _PutImagePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4734
+ var PutImagePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4593
4735
  return [
4594
4736
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4595
4737
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4596
4738
  ];
4597
4739
  }).s("imagebuilder", "PutImagePolicy", {}).n("ImagebuilderClient", "PutImagePolicyCommand").f(void 0, void 0).ser(se_PutImagePolicyCommand).de(de_PutImagePolicyCommand).build() {
4740
+ static {
4741
+ __name(this, "PutImagePolicyCommand");
4742
+ }
4598
4743
  };
4599
- __name(_PutImagePolicyCommand, "PutImagePolicyCommand");
4600
- var PutImagePolicyCommand = _PutImagePolicyCommand;
4601
4744
 
4602
4745
  // src/commands/PutImageRecipePolicyCommand.ts
4603
4746
 
4604
4747
 
4605
4748
 
4606
- var _PutImageRecipePolicyCommand = class _PutImageRecipePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4749
+ var PutImageRecipePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4607
4750
  return [
4608
4751
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4609
4752
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4610
4753
  ];
4611
4754
  }).s("imagebuilder", "PutImageRecipePolicy", {}).n("ImagebuilderClient", "PutImageRecipePolicyCommand").f(void 0, void 0).ser(se_PutImageRecipePolicyCommand).de(de_PutImageRecipePolicyCommand).build() {
4755
+ static {
4756
+ __name(this, "PutImageRecipePolicyCommand");
4757
+ }
4612
4758
  };
4613
- __name(_PutImageRecipePolicyCommand, "PutImageRecipePolicyCommand");
4614
- var PutImageRecipePolicyCommand = _PutImageRecipePolicyCommand;
4615
4759
 
4616
4760
  // src/commands/SendWorkflowStepActionCommand.ts
4617
4761
 
4618
4762
 
4619
4763
 
4620
- var _SendWorkflowStepActionCommand = class _SendWorkflowStepActionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4764
+ var SendWorkflowStepActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4621
4765
  return [
4622
4766
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4623
4767
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4624
4768
  ];
4625
4769
  }).s("imagebuilder", "SendWorkflowStepAction", {}).n("ImagebuilderClient", "SendWorkflowStepActionCommand").f(void 0, void 0).ser(se_SendWorkflowStepActionCommand).de(de_SendWorkflowStepActionCommand).build() {
4770
+ static {
4771
+ __name(this, "SendWorkflowStepActionCommand");
4772
+ }
4626
4773
  };
4627
- __name(_SendWorkflowStepActionCommand, "SendWorkflowStepActionCommand");
4628
- var SendWorkflowStepActionCommand = _SendWorkflowStepActionCommand;
4629
4774
 
4630
4775
  // src/commands/StartImagePipelineExecutionCommand.ts
4631
4776
 
4632
4777
 
4633
4778
 
4634
- var _StartImagePipelineExecutionCommand = class _StartImagePipelineExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4779
+ var StartImagePipelineExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4635
4780
  return [
4636
4781
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4637
4782
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4638
4783
  ];
4639
4784
  }).s("imagebuilder", "StartImagePipelineExecution", {}).n("ImagebuilderClient", "StartImagePipelineExecutionCommand").f(void 0, void 0).ser(se_StartImagePipelineExecutionCommand).de(de_StartImagePipelineExecutionCommand).build() {
4785
+ static {
4786
+ __name(this, "StartImagePipelineExecutionCommand");
4787
+ }
4640
4788
  };
4641
- __name(_StartImagePipelineExecutionCommand, "StartImagePipelineExecutionCommand");
4642
- var StartImagePipelineExecutionCommand = _StartImagePipelineExecutionCommand;
4643
4789
 
4644
4790
  // src/commands/StartResourceStateUpdateCommand.ts
4645
4791
 
4646
4792
 
4647
4793
 
4648
- var _StartResourceStateUpdateCommand = class _StartResourceStateUpdateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4794
+ var StartResourceStateUpdateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4649
4795
  return [
4650
4796
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4651
4797
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4652
4798
  ];
4653
4799
  }).s("imagebuilder", "StartResourceStateUpdate", {}).n("ImagebuilderClient", "StartResourceStateUpdateCommand").f(void 0, void 0).ser(se_StartResourceStateUpdateCommand).de(de_StartResourceStateUpdateCommand).build() {
4800
+ static {
4801
+ __name(this, "StartResourceStateUpdateCommand");
4802
+ }
4654
4803
  };
4655
- __name(_StartResourceStateUpdateCommand, "StartResourceStateUpdateCommand");
4656
- var StartResourceStateUpdateCommand = _StartResourceStateUpdateCommand;
4657
4804
 
4658
4805
  // src/commands/TagResourceCommand.ts
4659
4806
 
4660
4807
 
4661
4808
 
4662
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4809
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4663
4810
  return [
4664
4811
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4665
4812
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4666
4813
  ];
4667
4814
  }).s("imagebuilder", "TagResource", {}).n("ImagebuilderClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
4815
+ static {
4816
+ __name(this, "TagResourceCommand");
4817
+ }
4668
4818
  };
4669
- __name(_TagResourceCommand, "TagResourceCommand");
4670
- var TagResourceCommand = _TagResourceCommand;
4671
4819
 
4672
4820
  // src/commands/UntagResourceCommand.ts
4673
4821
 
4674
4822
 
4675
4823
 
4676
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4824
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4677
4825
  return [
4678
4826
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4679
4827
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4680
4828
  ];
4681
4829
  }).s("imagebuilder", "UntagResource", {}).n("ImagebuilderClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
4830
+ static {
4831
+ __name(this, "UntagResourceCommand");
4832
+ }
4682
4833
  };
4683
- __name(_UntagResourceCommand, "UntagResourceCommand");
4684
- var UntagResourceCommand = _UntagResourceCommand;
4685
4834
 
4686
4835
  // src/commands/UpdateDistributionConfigurationCommand.ts
4687
4836
 
4688
4837
 
4689
4838
 
4690
- var _UpdateDistributionConfigurationCommand = class _UpdateDistributionConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4839
+ var UpdateDistributionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4691
4840
  return [
4692
4841
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4693
4842
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4694
4843
  ];
4695
4844
  }).s("imagebuilder", "UpdateDistributionConfiguration", {}).n("ImagebuilderClient", "UpdateDistributionConfigurationCommand").f(void 0, void 0).ser(se_UpdateDistributionConfigurationCommand).de(de_UpdateDistributionConfigurationCommand).build() {
4845
+ static {
4846
+ __name(this, "UpdateDistributionConfigurationCommand");
4847
+ }
4696
4848
  };
4697
- __name(_UpdateDistributionConfigurationCommand, "UpdateDistributionConfigurationCommand");
4698
- var UpdateDistributionConfigurationCommand = _UpdateDistributionConfigurationCommand;
4699
4849
 
4700
4850
  // src/commands/UpdateImagePipelineCommand.ts
4701
4851
 
4702
4852
 
4703
4853
 
4704
- var _UpdateImagePipelineCommand = class _UpdateImagePipelineCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4854
+ var UpdateImagePipelineCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4705
4855
  return [
4706
4856
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4707
4857
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4708
4858
  ];
4709
4859
  }).s("imagebuilder", "UpdateImagePipeline", {}).n("ImagebuilderClient", "UpdateImagePipelineCommand").f(void 0, void 0).ser(se_UpdateImagePipelineCommand).de(de_UpdateImagePipelineCommand).build() {
4860
+ static {
4861
+ __name(this, "UpdateImagePipelineCommand");
4862
+ }
4710
4863
  };
4711
- __name(_UpdateImagePipelineCommand, "UpdateImagePipelineCommand");
4712
- var UpdateImagePipelineCommand = _UpdateImagePipelineCommand;
4713
4864
 
4714
4865
  // src/commands/UpdateInfrastructureConfigurationCommand.ts
4715
4866
 
4716
4867
 
4717
4868
 
4718
- var _UpdateInfrastructureConfigurationCommand = class _UpdateInfrastructureConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4869
+ var UpdateInfrastructureConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4719
4870
  return [
4720
4871
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4721
4872
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4722
4873
  ];
4723
4874
  }).s("imagebuilder", "UpdateInfrastructureConfiguration", {}).n("ImagebuilderClient", "UpdateInfrastructureConfigurationCommand").f(void 0, void 0).ser(se_UpdateInfrastructureConfigurationCommand).de(de_UpdateInfrastructureConfigurationCommand).build() {
4875
+ static {
4876
+ __name(this, "UpdateInfrastructureConfigurationCommand");
4877
+ }
4724
4878
  };
4725
- __name(_UpdateInfrastructureConfigurationCommand, "UpdateInfrastructureConfigurationCommand");
4726
- var UpdateInfrastructureConfigurationCommand = _UpdateInfrastructureConfigurationCommand;
4727
4879
 
4728
4880
  // src/commands/UpdateLifecyclePolicyCommand.ts
4729
4881
 
4730
4882
 
4731
4883
 
4732
- var _UpdateLifecyclePolicyCommand = class _UpdateLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4884
+ var UpdateLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4733
4885
  return [
4734
4886
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4735
4887
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4736
4888
  ];
4737
4889
  }).s("imagebuilder", "UpdateLifecyclePolicy", {}).n("ImagebuilderClient", "UpdateLifecyclePolicyCommand").f(void 0, void 0).ser(se_UpdateLifecyclePolicyCommand).de(de_UpdateLifecyclePolicyCommand).build() {
4890
+ static {
4891
+ __name(this, "UpdateLifecyclePolicyCommand");
4892
+ }
4738
4893
  };
4739
- __name(_UpdateLifecyclePolicyCommand, "UpdateLifecyclePolicyCommand");
4740
- var UpdateLifecyclePolicyCommand = _UpdateLifecyclePolicyCommand;
4741
4894
 
4742
4895
  // src/Imagebuilder.ts
4743
4896
  var commands = {
@@ -4779,6 +4932,7 @@ var commands = {
4779
4932
  GetWorkflowExecutionCommand,
4780
4933
  GetWorkflowStepExecutionCommand,
4781
4934
  ImportComponentCommand,
4935
+ ImportDiskImageCommand,
4782
4936
  ImportVmImageCommand,
4783
4937
  ListComponentBuildVersionsCommand,
4784
4938
  ListComponentsCommand,
@@ -4816,10 +4970,11 @@ var commands = {
4816
4970
  UpdateInfrastructureConfigurationCommand,
4817
4971
  UpdateLifecyclePolicyCommand
4818
4972
  };
4819
- var _Imagebuilder = class _Imagebuilder extends ImagebuilderClient {
4973
+ var Imagebuilder = class extends ImagebuilderClient {
4974
+ static {
4975
+ __name(this, "Imagebuilder");
4976
+ }
4820
4977
  };
4821
- __name(_Imagebuilder, "Imagebuilder");
4822
- var Imagebuilder = _Imagebuilder;
4823
4978
  (0, import_smithy_client.createAggregatedClient)(commands, Imagebuilder);
4824
4979
 
4825
4980
  // src/pagination/ListComponentBuildVersionsPaginator.ts
@@ -4951,6 +5106,7 @@ var paginateListWorkflows = (0, import_core.createPaginator)(ImagebuilderClient,
4951
5106
  GetWorkflowExecutionCommand,
4952
5107
  GetWorkflowStepExecutionCommand,
4953
5108
  ImportComponentCommand,
5109
+ ImportDiskImageCommand,
4954
5110
  ImportVmImageCommand,
4955
5111
  ListComponentBuildVersionsCommand,
4956
5112
  ListComponentsCommand,