@aws-sdk/client-outposts 3.948.0 → 3.953.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 (55) hide show
  1. package/dist-cjs/index.js +440 -296
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CancelCapacityTaskCommand.js +2 -2
  4. package/dist-es/commands/CancelOrderCommand.js +2 -2
  5. package/dist-es/commands/CreateOrderCommand.js +2 -2
  6. package/dist-es/commands/CreateOutpostCommand.js +2 -2
  7. package/dist-es/commands/CreateSiteCommand.js +2 -2
  8. package/dist-es/commands/DeleteOutpostCommand.js +2 -2
  9. package/dist-es/commands/DeleteSiteCommand.js +2 -2
  10. package/dist-es/commands/GetCapacityTaskCommand.js +2 -2
  11. package/dist-es/commands/GetCatalogItemCommand.js +2 -2
  12. package/dist-es/commands/GetConnectionCommand.js +2 -2
  13. package/dist-es/commands/GetOrderCommand.js +2 -2
  14. package/dist-es/commands/GetOutpostBillingInformationCommand.js +2 -2
  15. package/dist-es/commands/GetOutpostCommand.js +2 -2
  16. package/dist-es/commands/GetOutpostInstanceTypesCommand.js +2 -2
  17. package/dist-es/commands/GetOutpostSupportedInstanceTypesCommand.js +2 -2
  18. package/dist-es/commands/GetSiteAddressCommand.js +2 -2
  19. package/dist-es/commands/GetSiteCommand.js +2 -2
  20. package/dist-es/commands/ListAssetInstancesCommand.js +2 -2
  21. package/dist-es/commands/ListAssetsCommand.js +2 -2
  22. package/dist-es/commands/ListBlockingInstancesForCapacityTaskCommand.js +2 -2
  23. package/dist-es/commands/ListCapacityTasksCommand.js +2 -2
  24. package/dist-es/commands/ListCatalogItemsCommand.js +2 -2
  25. package/dist-es/commands/ListOrdersCommand.js +2 -2
  26. package/dist-es/commands/ListOutpostsCommand.js +2 -2
  27. package/dist-es/commands/ListSitesCommand.js +2 -2
  28. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  29. package/dist-es/commands/StartCapacityTaskCommand.js +2 -2
  30. package/dist-es/commands/StartConnectionCommand.js +2 -2
  31. package/dist-es/commands/StartOutpostDecommissionCommand.js +2 -2
  32. package/dist-es/commands/TagResourceCommand.js +2 -2
  33. package/dist-es/commands/UntagResourceCommand.js +2 -2
  34. package/dist-es/commands/UpdateOutpostCommand.js +2 -2
  35. package/dist-es/commands/UpdateSiteAddressCommand.js +2 -2
  36. package/dist-es/commands/UpdateSiteCommand.js +2 -2
  37. package/dist-es/commands/UpdateSiteRackPhysicalPropertiesCommand.js +2 -2
  38. package/dist-es/index.js +1 -0
  39. package/dist-es/runtimeConfig.shared.js +6 -1
  40. package/dist-es/schemas/schemas_0.js +275 -268
  41. package/dist-types/OutpostsClient.d.ts +1 -10
  42. package/dist-types/index.d.ts +1 -0
  43. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  44. package/dist-types/runtimeConfig.d.ts +6 -2
  45. package/dist-types/runtimeConfig.native.d.ts +6 -2
  46. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  47. package/dist-types/schemas/schemas_0.d.ts +138 -180
  48. package/dist-types/ts3.4/OutpostsClient.d.ts +0 -4
  49. package/dist-types/ts3.4/index.d.ts +1 -0
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +137 -180
  55. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class OutpostsClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let OutpostsServiceException$1 = class OutpostsServiceException extends smithyClient.ServiceException {
113
+ class OutpostsServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, OutpostsServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends OutpostsServiceException$1 {
120
+ class AccessDeniedException extends OutpostsServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends OutpostsServic
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let ConflictException$1 = class ConflictException extends OutpostsServiceException$1 {
133
+ }
134
+ class ConflictException extends OutpostsServiceException {
135
135
  name = "ConflictException";
136
136
  $fault = "client";
137
137
  Message;
@@ -148,8 +148,8 @@ let ConflictException$1 = class ConflictException extends OutpostsServiceExcepti
148
148
  this.ResourceId = opts.ResourceId;
149
149
  this.ResourceType = opts.ResourceType;
150
150
  }
151
- };
152
- let InternalServerException$1 = class InternalServerException extends OutpostsServiceException$1 {
151
+ }
152
+ class InternalServerException extends OutpostsServiceException {
153
153
  name = "InternalServerException";
154
154
  $fault = "server";
155
155
  Message;
@@ -162,8 +162,8 @@ let InternalServerException$1 = class InternalServerException extends OutpostsSe
162
162
  Object.setPrototypeOf(this, InternalServerException.prototype);
163
163
  this.Message = opts.Message;
164
164
  }
165
- };
166
- let NotFoundException$1 = class NotFoundException extends OutpostsServiceException$1 {
165
+ }
166
+ class NotFoundException extends OutpostsServiceException {
167
167
  name = "NotFoundException";
168
168
  $fault = "client";
169
169
  Message;
@@ -176,8 +176,8 @@ let NotFoundException$1 = class NotFoundException extends OutpostsServiceExcepti
176
176
  Object.setPrototypeOf(this, NotFoundException.prototype);
177
177
  this.Message = opts.Message;
178
178
  }
179
- };
180
- let ValidationException$1 = class ValidationException extends OutpostsServiceException$1 {
179
+ }
180
+ class ValidationException extends OutpostsServiceException {
181
181
  name = "ValidationException";
182
182
  $fault = "client";
183
183
  Message;
@@ -190,8 +190,8 @@ let ValidationException$1 = class ValidationException extends OutpostsServiceExc
190
190
  Object.setPrototypeOf(this, ValidationException.prototype);
191
191
  this.Message = opts.Message;
192
192
  }
193
- };
194
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends OutpostsServiceException$1 {
193
+ }
194
+ class ServiceQuotaExceededException extends OutpostsServiceException {
195
195
  name = "ServiceQuotaExceededException";
196
196
  $fault = "client";
197
197
  Message;
@@ -204,7 +204,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
204
204
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
205
205
  this.Message = opts.Message;
206
206
  }
207
- };
207
+ }
208
208
 
209
209
  const _A = "Address";
210
210
  const _ADE = "AccessDeniedException";
@@ -517,9 +517,9 @@ const _sLD = "siteListDefinition";
517
517
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.outposts";
518
518
  const _tK = "tagKeys";
519
519
  const n0 = "com.amazonaws.outposts";
520
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
521
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
522
- var Address = [
520
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
521
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
522
+ var Address$ = [
523
523
  3,
524
524
  n0,
525
525
  _A,
@@ -527,19 +527,19 @@ var Address = [
527
527
  [_CN, _CPN, _AL, _ALd, _ALdd, _C, _SOR, _DOC, _PC, _CC, _Mu],
528
528
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
529
529
  ];
530
- var AssetInfo = [
530
+ var AssetInfo$ = [
531
531
  3,
532
532
  n0,
533
533
  _AI,
534
534
  0,
535
535
  [_AIs, _RI, _AT, _CA, _ALs],
536
- [0, 0, 0, () => ComputeAttributes, () => AssetLocation],
536
+ [0, 0, 0, () => ComputeAttributes$, () => AssetLocation$],
537
537
  ];
538
- var AssetInstance = [3, n0, _AIss, 0, [_II, _IT, _AIs, _AIc, _ASN], [0, 0, 0, 0, 0]];
539
- var AssetInstanceTypeCapacity = [3, n0, _AITC, 0, [_IT, _Co], [0, 1]];
540
- var AssetLocation = [3, n0, _ALs, 0, [_RE], [1]];
541
- var BlockingInstance = [3, n0, _BI, 0, [_II, _AIc, _ASN], [0, 0, 0]];
542
- var CancelCapacityTaskInput = [
538
+ var AssetInstance$ = [3, n0, _AIss, 0, [_II, _IT, _AIs, _AIc, _ASN], [0, 0, 0, 0, 0]];
539
+ var AssetInstanceTypeCapacity$ = [3, n0, _AITC, 0, [_IT, _Co], [0, 1]];
540
+ var AssetLocation$ = [3, n0, _ALs, 0, [_RE], [1]];
541
+ var BlockingInstance$ = [3, n0, _BI, 0, [_II, _AIc, _ASN], [0, 0, 0]];
542
+ var CancelCapacityTaskInput$ = [
543
543
  3,
544
544
  n0,
545
545
  _CCTI,
@@ -550,11 +550,11 @@ var CancelCapacityTaskInput = [
550
550
  [0, 1],
551
551
  ],
552
552
  ];
553
- var CancelCapacityTaskOutput = [3, n0, _CCTO, 0, [], []];
554
- var CancelOrderInput = [3, n0, _COI, 0, [_OIr], [[0, 1]]];
555
- var CancelOrderOutput = [3, n0, _COO, 0, [], []];
556
- var CapacityTaskFailure = [3, n0, _CTF, 0, [_R, _T], [0, 0]];
557
- var CapacityTaskSummary = [
553
+ var CancelCapacityTaskOutput$ = [3, n0, _CCTO, 0, [], []];
554
+ var CancelOrderInput$ = [3, n0, _COI, 0, [_OIr], [[0, 1]]];
555
+ var CancelOrderOutput$ = [3, n0, _COO, 0, [], []];
556
+ var CapacityTaskFailure$ = [3, n0, _CTF, 0, [_R, _T], [0, 0]];
557
+ var CapacityTaskSummary$ = [
558
558
  3,
559
559
  n0,
560
560
  _CTS,
@@ -562,7 +562,7 @@ var CapacityTaskSummary = [
562
562
  [_CTI, _OIu, _OIr, _AIs, _CTSa, _CD, _CDo, _LMD],
563
563
  [0, 0, 0, 0, 0, 4, 4, 4],
564
564
  ];
565
- var CatalogItem = [
565
+ var CatalogItem$ = [
566
566
  3,
567
567
  n0,
568
568
  _CI,
@@ -570,7 +570,7 @@ var CatalogItem = [
570
570
  [_CII, _IS, _ECC, _PK, _WL, _SUG, _SS],
571
571
  [0, 0, () => EC2CapacityListDefinition, 1, 1, 64 | 1, 64 | 0],
572
572
  ];
573
- var ComputeAttributes = [
573
+ var ComputeAttributes$ = [
574
574
  3,
575
575
  n0,
576
576
  _CA,
@@ -578,9 +578,9 @@ var ComputeAttributes = [
578
578
  [_HI, _S, _IF, _ITC, _MV],
579
579
  [0, 0, 64 | 0, () => AssetInstanceCapacityList, 1],
580
580
  ];
581
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _RIe, _RT], [0, 0, 0]];
582
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
583
- var ConnectionDetails = [
581
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _RIe, _RT], [0, 0, 0]];
582
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
583
+ var ConnectionDetails$ = [
584
584
  3,
585
585
  n0,
586
586
  _CDon,
@@ -588,7 +588,7 @@ var ConnectionDetails = [
588
588
  [_CPK, _SPK, _SE, _CTA, _STA, _AIl],
589
589
  [0, 0, 0, 0, 0, 64 | 0],
590
590
  ];
591
- var CreateOrderInput = [
591
+ var CreateOrderInput$ = [
592
592
  3,
593
593
  n0,
594
594
  _COIr,
@@ -596,8 +596,8 @@ var CreateOrderInput = [
596
596
  [_OI, _LI, _PO, _PT],
597
597
  [0, () => LineItemRequestListDefinition, 0, 0],
598
598
  ];
599
- var CreateOrderOutput = [3, n0, _COOr, 0, [_O], [() => Order]];
600
- var CreateOutpostInput = [
599
+ var CreateOrderOutput$ = [3, n0, _COOr, 0, [_O], [() => Order$]];
600
+ var CreateOutpostInput$ = [
601
601
  3,
602
602
  n0,
603
603
  _COIre,
@@ -605,22 +605,22 @@ var CreateOutpostInput = [
605
605
  [_N, _D, _SI, _AZ, _AZI, _Ta, _SHT],
606
606
  [0, 0, 0, 0, 0, 128 | 0, 0],
607
607
  ];
608
- var CreateOutpostOutput = [3, n0, _COOre, 0, [_Ou], [() => Outpost]];
609
- var CreateSiteInput = [
608
+ var CreateOutpostOutput$ = [3, n0, _COOre, 0, [_Ou], [() => Outpost$]];
609
+ var CreateSiteInput$ = [
610
610
  3,
611
611
  n0,
612
612
  _CSI,
613
613
  0,
614
614
  [_N, _D, _No, _Ta, _OA, _SA, _RPP],
615
- [0, 0, 0, 128 | 0, () => Address, () => Address, () => RackPhysicalProperties],
616
- ];
617
- var CreateSiteOutput = [3, n0, _CSO, 0, [_Si], [() => Site]];
618
- var DeleteOutpostInput = [3, n0, _DOI, 0, [_OIu], [[0, 1]]];
619
- var DeleteOutpostOutput = [3, n0, _DOO, 0, [], []];
620
- var DeleteSiteInput = [3, n0, _DSI, 0, [_SI], [[0, 1]]];
621
- var DeleteSiteOutput = [3, n0, _DSO, 0, [], []];
622
- var EC2Capacity = [3, n0, _ECCa, 0, [_F, _MS, _Q], [0, 0, 0]];
623
- var GetCapacityTaskInput = [
615
+ [0, 0, 0, 128 | 0, () => Address$, () => Address$, () => RackPhysicalProperties$],
616
+ ];
617
+ var CreateSiteOutput$ = [3, n0, _CSO, 0, [_Si], [() => Site$]];
618
+ var DeleteOutpostInput$ = [3, n0, _DOI, 0, [_OIu], [[0, 1]]];
619
+ var DeleteOutpostOutput$ = [3, n0, _DOO, 0, [], []];
620
+ var DeleteSiteInput$ = [3, n0, _DSI, 0, [_SI], [[0, 1]]];
621
+ var DeleteSiteOutput$ = [3, n0, _DSO, 0, [], []];
622
+ var EC2Capacity$ = [3, n0, _ECCa, 0, [_F, _MS, _Q], [0, 0, 0]];
623
+ var GetCapacityTaskInput$ = [
624
624
  3,
625
625
  n0,
626
626
  _GCTI,
@@ -631,28 +631,28 @@ var GetCapacityTaskInput = [
631
631
  [0, 1],
632
632
  ],
633
633
  ];
634
- var GetCapacityTaskOutput = [
634
+ var GetCapacityTaskOutput$ = [
635
635
  3,
636
636
  n0,
637
637
  _GCTO,
638
638
  0,
639
639
  [_CTI, _OIu, _OIr, _AIs, _RIP, _ITE, _DR, _CTSa, _Fa, _CD, _CDo, _LMD, _TAOBI],
640
- [0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude, 2, 0, () => CapacityTaskFailure, 4, 4, 4, 0],
640
+ [0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude$, 2, 0, () => CapacityTaskFailure$, 4, 4, 4, 0],
641
641
  ];
642
- var GetCatalogItemInput = [3, n0, _GCII, 0, [_CII], [[0, 1]]];
643
- var GetCatalogItemOutput = [3, n0, _GCIO, 0, [_CI], [() => CatalogItem]];
644
- var GetConnectionRequest = [3, n0, _GCR, 0, [_CIo], [[0, 1]]];
645
- var GetConnectionResponse = [
642
+ var GetCatalogItemInput$ = [3, n0, _GCII, 0, [_CII], [[0, 1]]];
643
+ var GetCatalogItemOutput$ = [3, n0, _GCIO, 0, [_CI], [() => CatalogItem$]];
644
+ var GetConnectionRequest$ = [3, n0, _GCR, 0, [_CIo], [[0, 1]]];
645
+ var GetConnectionResponse$ = [
646
646
  3,
647
647
  n0,
648
648
  _GCRe,
649
649
  0,
650
650
  [_CIo, _CDon],
651
- [0, () => ConnectionDetails],
651
+ [0, () => ConnectionDetails$],
652
652
  ];
653
- var GetOrderInput = [3, n0, _GOI, 0, [_OIr], [[0, 1]]];
654
- var GetOrderOutput = [3, n0, _GOO, 0, [_O], [() => Order]];
655
- var GetOutpostBillingInformationInput = [
653
+ var GetOrderInput$ = [3, n0, _GOI, 0, [_OIr], [[0, 1]]];
654
+ var GetOrderOutput$ = [3, n0, _GOO, 0, [_O], [() => Order$]];
655
+ var GetOutpostBillingInformationInput$ = [
656
656
  3,
657
657
  n0,
658
658
  _GOBII,
@@ -664,7 +664,7 @@ var GetOutpostBillingInformationInput = [
664
664
  [0, 1],
665
665
  ],
666
666
  ];
667
- var GetOutpostBillingInformationOutput = [
667
+ var GetOutpostBillingInformationOutput$ = [
668
668
  3,
669
669
  n0,
670
670
  _GOBIO,
@@ -672,8 +672,8 @@ var GetOutpostBillingInformationOutput = [
672
672
  [_NT, _Su, _CED],
673
673
  [0, () => SubscriptionList, 0],
674
674
  ];
675
- var GetOutpostInput = [3, n0, _GOIe, 0, [_OIu], [[0, 1]]];
676
- var GetOutpostInstanceTypesInput = [
675
+ var GetOutpostInput$ = [3, n0, _GOIe, 0, [_OIu], [[0, 1]]];
676
+ var GetOutpostInstanceTypesInput$ = [
677
677
  3,
678
678
  n0,
679
679
  _GOITI,
@@ -685,7 +685,7 @@ var GetOutpostInstanceTypesInput = [
685
685
  [1, { [_hQ]: _MR }],
686
686
  ],
687
687
  ];
688
- var GetOutpostInstanceTypesOutput = [
688
+ var GetOutpostInstanceTypesOutput$ = [
689
689
  3,
690
690
  n0,
691
691
  _GOITO,
@@ -693,8 +693,8 @@ var GetOutpostInstanceTypesOutput = [
693
693
  [_ITn, _NT, _OIu, _OAu],
694
694
  [() => InstanceTypeListDefinition, 0, 0, 0],
695
695
  ];
696
- var GetOutpostOutput = [3, n0, _GOOe, 0, [_Ou], [() => Outpost]];
697
- var GetOutpostSupportedInstanceTypesInput = [
696
+ var GetOutpostOutput$ = [3, n0, _GOOe, 0, [_Ou], [() => Outpost$]];
697
+ var GetOutpostSupportedInstanceTypesInput$ = [
698
698
  3,
699
699
  n0,
700
700
  _GOSITI,
@@ -708,7 +708,7 @@ var GetOutpostSupportedInstanceTypesInput = [
708
708
  [0, { [_hQ]: _NT }],
709
709
  ],
710
710
  ];
711
- var GetOutpostSupportedInstanceTypesOutput = [
711
+ var GetOutpostSupportedInstanceTypesOutput$ = [
712
712
  3,
713
713
  n0,
714
714
  _GOSITO,
@@ -716,7 +716,7 @@ var GetOutpostSupportedInstanceTypesOutput = [
716
716
  [_ITn, _NT],
717
717
  [() => InstanceTypeListDefinition, 0],
718
718
  ];
719
- var GetSiteAddressInput = [
719
+ var GetSiteAddressInput$ = [
720
720
  3,
721
721
  n0,
722
722
  _GSAI,
@@ -727,25 +727,25 @@ var GetSiteAddressInput = [
727
727
  [0, { [_hQ]: _ATd }],
728
728
  ],
729
729
  ];
730
- var GetSiteAddressOutput = [3, n0, _GSAO, 0, [_SI, _ATd, _A], [0, 0, () => Address]];
731
- var GetSiteInput = [3, n0, _GSI, 0, [_SI], [[0, 1]]];
732
- var GetSiteOutput = [3, n0, _GSO, 0, [_Si], [() => Site]];
733
- var InstancesToExclude = [3, n0, _ITE, 0, [_I, _AIcc, _Se], [64 | 0, 64 | 0, 64 | 0]];
734
- var InstanceTypeCapacity = [3, n0, _ITCn, 0, [_IT, _Co], [0, 1]];
735
- var InstanceTypeItem = [3, n0, _ITI, 0, [_IT, _VCPU], [0, 1]];
736
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
737
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
738
- var LineItem = [
730
+ var GetSiteAddressOutput$ = [3, n0, _GSAO, 0, [_SI, _ATd, _A], [0, 0, () => Address$]];
731
+ var GetSiteInput$ = [3, n0, _GSI, 0, [_SI], [[0, 1]]];
732
+ var GetSiteOutput$ = [3, n0, _GSO, 0, [_Si], [() => Site$]];
733
+ var InstancesToExclude$ = [3, n0, _ITE, 0, [_I, _AIcc, _Se], [64 | 0, 64 | 0, 64 | 0]];
734
+ var InstanceTypeCapacity$ = [3, n0, _ITCn, 0, [_IT, _Co], [0, 1]];
735
+ var InstanceTypeItem$ = [3, n0, _ITI, 0, [_IT, _VCPU], [0, 1]];
736
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
737
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
738
+ var LineItem$ = [
739
739
  3,
740
740
  n0,
741
741
  _LIi,
742
742
  0,
743
743
  [_CII, _LII, _Q, _St, _SIh, _AIL, _PLII, _POI],
744
- [0, 0, 1, 0, () => ShipmentInformation, () => LineItemAssetInformationList, 0, 0],
744
+ [0, 0, 1, 0, () => ShipmentInformation$, () => LineItemAssetInformationList, 0, 0],
745
745
  ];
746
- var LineItemAssetInformation = [3, n0, _LIAI, 0, [_AIs, _MAL], [0, 64 | 0]];
747
- var LineItemRequest = [3, n0, _LIR, 0, [_CII, _Q], [0, 1]];
748
- var ListAssetInstancesInput = [
746
+ var LineItemAssetInformation$ = [3, n0, _LIAI, 0, [_AIs, _MAL], [0, 64 | 0]];
747
+ var LineItemRequest$ = [3, n0, _LIR, 0, [_CII, _Q], [0, 1]];
748
+ var ListAssetInstancesInput$ = [
749
749
  3,
750
750
  n0,
751
751
  _LAII,
@@ -761,7 +761,7 @@ var ListAssetInstancesInput = [
761
761
  [0, { [_hQ]: _NT }],
762
762
  ],
763
763
  ];
764
- var ListAssetInstancesOutput = [
764
+ var ListAssetInstancesOutput$ = [
765
765
  3,
766
766
  n0,
767
767
  _LAIO,
@@ -769,7 +769,7 @@ var ListAssetInstancesOutput = [
769
769
  [_AIsse, _NT],
770
770
  [() => AssetInstanceList, 0],
771
771
  ];
772
- var ListAssetsInput = [
772
+ var ListAssetsInput$ = [
773
773
  3,
774
774
  n0,
775
775
  _LAI,
@@ -783,8 +783,8 @@ var ListAssetsInput = [
783
783
  [64 | 0, { [_hQ]: _SF }],
784
784
  ],
785
785
  ];
786
- var ListAssetsOutput = [3, n0, _LAO, 0, [_As, _NT], [() => AssetListDefinition, 0]];
787
- var ListBlockingInstancesForCapacityTaskInput = [
786
+ var ListAssetsOutput$ = [3, n0, _LAO, 0, [_As, _NT], [() => AssetListDefinition, 0]];
787
+ var ListBlockingInstancesForCapacityTaskInput$ = [
788
788
  3,
789
789
  n0,
790
790
  _LBIFCTI,
@@ -797,7 +797,7 @@ var ListBlockingInstancesForCapacityTaskInput = [
797
797
  [0, { [_hQ]: _NT }],
798
798
  ],
799
799
  ];
800
- var ListBlockingInstancesForCapacityTaskOutput = [
800
+ var ListBlockingInstancesForCapacityTaskOutput$ = [
801
801
  3,
802
802
  n0,
803
803
  _LBIFCTO,
@@ -805,7 +805,7 @@ var ListBlockingInstancesForCapacityTaskOutput = [
805
805
  [_BIl, _NT],
806
806
  [() => BlockingInstancesList, 0],
807
807
  ];
808
- var ListCapacityTasksInput = [
808
+ var ListCapacityTasksInput$ = [
809
809
  3,
810
810
  n0,
811
811
  _LCTI,
@@ -818,8 +818,8 @@ var ListCapacityTasksInput = [
818
818
  [64 | 0, { [_hQ]: _CTSF }],
819
819
  ],
820
820
  ];
821
- var ListCapacityTasksOutput = [3, n0, _LCTO, 0, [_CT, _NT], [() => CapacityTaskList, 0]];
822
- var ListCatalogItemsInput = [
821
+ var ListCapacityTasksOutput$ = [3, n0, _LCTO, 0, [_CT, _NT], [() => CapacityTaskList, 0]];
822
+ var ListCatalogItemsInput$ = [
823
823
  3,
824
824
  n0,
825
825
  _LCII,
@@ -833,7 +833,7 @@ var ListCatalogItemsInput = [
833
833
  [64 | 0, { [_hQ]: _ECFF }],
834
834
  ],
835
835
  ];
836
- var ListCatalogItemsOutput = [
836
+ var ListCatalogItemsOutput$ = [
837
837
  3,
838
838
  n0,
839
839
  _LCIO,
@@ -841,7 +841,7 @@ var ListCatalogItemsOutput = [
841
841
  [_CIa, _NT],
842
842
  [() => CatalogItemListDefinition, 0],
843
843
  ];
844
- var ListOrdersInput = [
844
+ var ListOrdersInput$ = [
845
845
  3,
846
846
  n0,
847
847
  _LOI,
@@ -853,7 +853,7 @@ var ListOrdersInput = [
853
853
  [1, { [_hQ]: _MR }],
854
854
  ],
855
855
  ];
856
- var ListOrdersOutput = [
856
+ var ListOrdersOutput$ = [
857
857
  3,
858
858
  n0,
859
859
  _LOO,
@@ -861,7 +861,7 @@ var ListOrdersOutput = [
861
861
  [_Or, _NT],
862
862
  [() => OrderSummaryListDefinition, 0],
863
863
  ];
864
- var ListOutpostsInput = [
864
+ var ListOutpostsInput$ = [
865
865
  3,
866
866
  n0,
867
867
  _LOIi,
@@ -875,8 +875,15 @@ var ListOutpostsInput = [
875
875
  [64 | 0, { [_hQ]: _AZIF }],
876
876
  ],
877
877
  ];
878
- var ListOutpostsOutput = [3, n0, _LOOi, 0, [_Out, _NT], [() => outpostListDefinition, 0]];
879
- var ListSitesInput = [
878
+ var ListOutpostsOutput$ = [
879
+ 3,
880
+ n0,
881
+ _LOOi,
882
+ 0,
883
+ [_Out, _NT],
884
+ [() => outpostListDefinition, 0],
885
+ ];
886
+ var ListSitesInput$ = [
880
887
  3,
881
888
  n0,
882
889
  _LSI,
@@ -890,12 +897,12 @@ var ListSitesInput = [
890
897
  [64 | 0, { [_hQ]: _OACF }],
891
898
  ],
892
899
  ];
893
- var ListSitesOutput = [3, n0, _LSO, 0, [_Sit, _NT], [() => siteListDefinition, 0]];
894
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
895
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
896
- var NotFoundException = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
897
- schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
898
- var Order = [
900
+ var ListSitesOutput$ = [3, n0, _LSO, 0, [_Sit, _NT], [() => siteListDefinition, 0]];
901
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
902
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_Ta], [128 | 0]];
903
+ var NotFoundException$ = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
904
+ schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
905
+ var Order$ = [
899
906
  3,
900
907
  n0,
901
908
  _O,
@@ -903,7 +910,7 @@ var Order = [
903
910
  [_OIu, _OIr, _St, _LI, _PO, _OSD, _OFD, _PT, _OT],
904
911
  [0, 0, 0, () => LineItemListDefinition, 0, 4, 4, 0, 0],
905
912
  ];
906
- var OrderSummary = [
913
+ var OrderSummary$ = [
907
914
  3,
908
915
  n0,
909
916
  _OS,
@@ -911,7 +918,7 @@ var OrderSummary = [
911
918
  [_OIu, _OIr, _OT, _St, _LICBS, _OSD, _OFD],
912
919
  [0, 0, 0, 0, 128 | 1, 4, 4],
913
920
  ];
914
- var Outpost = [
921
+ var Outpost$ = [
915
922
  3,
916
923
  n0,
917
924
  _Ou,
@@ -919,7 +926,7 @@ var Outpost = [
919
926
  [_OIu, _OIw, _OAu, _SI, _N, _D, _LCS, _AZ, _AZI, _Ta, _SAi, _SHT],
920
927
  [0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 0, 0],
921
928
  ];
922
- var RackPhysicalProperties = [
929
+ var RackPhysicalProperties$ = [
923
930
  3,
924
931
  n0,
925
932
  _RPP,
@@ -927,38 +934,38 @@ var RackPhysicalProperties = [
927
934
  [_PDK, _PP, _PCo, _PFD, _UG, _UC, _FOCT, _OSp, _MSWL],
928
935
  [0, 0, 0, 0, 0, 0, 0, 0, 0],
929
936
  ];
930
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
931
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
932
- var ShipmentInformation = [3, n0, _SIh, 0, [_STN, _SC], [0, 0]];
933
- var Site = [
937
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
938
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
939
+ var ShipmentInformation$ = [3, n0, _SIh, 0, [_STN, _SC], [0, 0]];
940
+ var Site$ = [
934
941
  3,
935
942
  n0,
936
943
  _Si,
937
944
  0,
938
945
  [_SI, _AIc, _N, _D, _Ta, _SAi, _No, _OACC, _OASOR, _OAC, _RPP],
939
- [0, 0, 0, 0, 128 | 0, 0, 0, 0, 0, 0, () => RackPhysicalProperties],
946
+ [0, 0, 0, 0, 128 | 0, 0, 0, 0, 0, 0, () => RackPhysicalProperties$],
940
947
  ];
941
- var StartCapacityTaskInput = [
948
+ var StartCapacityTaskInput$ = [
942
949
  3,
943
950
  n0,
944
951
  _SCTI,
945
952
  0,
946
953
  [_OI, _OIr, _AIs, _IP, _ITE, _DR, _TAOBI],
947
- [[0, 1], 0, 0, () => RequestedInstancePools, () => InstancesToExclude, 2, 0],
954
+ [[0, 1], 0, 0, () => RequestedInstancePools, () => InstancesToExclude$, 2, 0],
948
955
  ];
949
- var StartCapacityTaskOutput = [
956
+ var StartCapacityTaskOutput$ = [
950
957
  3,
951
958
  n0,
952
959
  _SCTO,
953
960
  0,
954
961
  [_CTI, _OIu, _OIr, _AIs, _RIP, _ITE, _DR, _CTSa, _Fa, _CD, _CDo, _LMD, _TAOBI],
955
- [0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude, 2, 0, () => CapacityTaskFailure, 4, 4, 4, 0],
962
+ [0, 0, 0, 0, () => RequestedInstancePools, () => InstancesToExclude$, 2, 0, () => CapacityTaskFailure$, 4, 4, 4, 0],
956
963
  ];
957
- var StartConnectionRequest = [3, n0, _SCR, 0, [_DSN, _AIs, _CPK, _NIDI], [0, 0, 0, 1]];
958
- var StartConnectionResponse = [3, n0, _SCRt, 0, [_CIo, _UIA], [0, 0]];
959
- var StartOutpostDecommissionInput = [3, n0, _SODI, 0, [_OI, _VO], [[0, 1], 2]];
960
- var StartOutpostDecommissionOutput = [3, n0, _SODO, 0, [_St, _BRT], [0, 64 | 0]];
961
- var Subscription = [
964
+ var StartConnectionRequest$ = [3, n0, _SCR, 0, [_DSN, _AIs, _CPK, _NIDI], [0, 0, 0, 1]];
965
+ var StartConnectionResponse$ = [3, n0, _SCRt, 0, [_CIo, _UIA], [0, 0]];
966
+ var StartOutpostDecommissionInput$ = [3, n0, _SODI, 0, [_OI, _VO], [[0, 1], 2]];
967
+ var StartOutpostDecommissionOutput$ = [3, n0, _SODO, 0, [_St, _BRT], [0, 64 | 0]];
968
+ var Subscription$ = [
962
969
  3,
963
970
  n0,
964
971
  _Sub,
@@ -966,9 +973,9 @@ var Subscription = [
966
973
  [_SIu, _ST, _SSu, _OIrd, _BD, _ED, _MRP, _UP],
967
974
  [0, 0, 0, 64 | 0, 4, 4, 1, 1],
968
975
  ];
969
- var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
970
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
971
- var UntagResourceRequest = [
976
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RA, _Ta], [[0, 1], 128 | 0]];
977
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
978
+ var UntagResourceRequest$ = [
972
979
  3,
973
980
  n0,
974
981
  _URR,
@@ -979,21 +986,21 @@ var UntagResourceRequest = [
979
986
  [64 | 0, { [_hQ]: _tK }],
980
987
  ],
981
988
  ];
982
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
983
- var UpdateOutpostInput = [3, n0, _UOI, 0, [_OIu, _N, _D, _SHT], [[0, 1], 0, 0, 0]];
984
- var UpdateOutpostOutput = [3, n0, _UOO, 0, [_Ou], [() => Outpost]];
985
- var UpdateSiteAddressInput = [
989
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
990
+ var UpdateOutpostInput$ = [3, n0, _UOI, 0, [_OIu, _N, _D, _SHT], [[0, 1], 0, 0, 0]];
991
+ var UpdateOutpostOutput$ = [3, n0, _UOO, 0, [_Ou], [() => Outpost$]];
992
+ var UpdateSiteAddressInput$ = [
986
993
  3,
987
994
  n0,
988
995
  _USAI,
989
996
  0,
990
997
  [_SI, _ATd, _A],
991
- [[0, 1], 0, () => Address],
998
+ [[0, 1], 0, () => Address$],
992
999
  ];
993
- var UpdateSiteAddressOutput = [3, n0, _USAO, 0, [_ATd, _A], [0, () => Address]];
994
- var UpdateSiteInput = [3, n0, _USI, 0, [_SI, _N, _D, _No], [[0, 1], 0, 0, 0]];
995
- var UpdateSiteOutput = [3, n0, _USO, 0, [_Si], [() => Site]];
996
- var UpdateSiteRackPhysicalPropertiesInput = [
1000
+ var UpdateSiteAddressOutput$ = [3, n0, _USAO, 0, [_ATd, _A], [0, () => Address$]];
1001
+ var UpdateSiteInput$ = [3, n0, _USI, 0, [_SI, _N, _D, _No], [[0, 1], 0, 0, 0]];
1002
+ var UpdateSiteOutput$ = [3, n0, _USO, 0, [_Si], [() => Site$]];
1003
+ var UpdateSiteRackPhysicalPropertiesInput$ = [
997
1004
  3,
998
1005
  n0,
999
1006
  _USRPPI,
@@ -1001,306 +1008,306 @@ var UpdateSiteRackPhysicalPropertiesInput = [
1001
1008
  [_SI, _PDK, _PP, _PCo, _PFD, _UG, _UC, _FOCT, _OSp, _MSWL],
1002
1009
  [[0, 1], 0, 0, 0, 0, 0, 0, 0, 0, 0],
1003
1010
  ];
1004
- var UpdateSiteRackPhysicalPropertiesOutput = [3, n0, _USRPPO, 0, [_Si], [() => Site]];
1005
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
1006
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1007
- var OutpostsServiceException = [-3, _sm, "OutpostsServiceException", 0, [], []];
1008
- schema.TypeRegistry.for(_sm).registerError(OutpostsServiceException, OutpostsServiceException$1);
1009
- var AssetInstanceCapacityList = [1, n0, _AICL, 0, () => AssetInstanceTypeCapacity];
1010
- var AssetInstanceList = [1, n0, _AILs, 0, () => AssetInstance];
1011
- var AssetListDefinition = [1, n0, _ALD, 0, () => AssetInfo];
1012
- var BlockingInstancesList = [1, n0, _BIL, 0, () => BlockingInstance];
1013
- var CapacityTaskList = [1, n0, _CTL, 0, () => CapacityTaskSummary];
1014
- var CatalogItemListDefinition = [1, n0, _CILD, 0, () => CatalogItem];
1015
- var EC2CapacityListDefinition = [1, n0, _ECCLD, 0, () => EC2Capacity];
1016
- var InstanceTypeListDefinition = [1, n0, _ITLD, 0, () => InstanceTypeItem];
1017
- var LineItemAssetInformationList = [1, n0, _LIAIL, 0, () => LineItemAssetInformation];
1018
- var LineItemListDefinition = [1, n0, _LILD, 0, () => LineItem];
1019
- var LineItemRequestListDefinition = [1, n0, _LIRLD, 0, () => LineItemRequest];
1020
- var OrderSummaryListDefinition = [1, n0, _OSLD, 0, () => OrderSummary];
1021
- var outpostListDefinition = [1, n0, _oLD, 0, () => Outpost];
1022
- var RequestedInstancePools = [1, n0, _RIP, 0, () => InstanceTypeCapacity];
1023
- var siteListDefinition = [1, n0, _sLD, 0, () => Site];
1024
- var SubscriptionList = [1, n0, _SL, 0, () => Subscription];
1025
- var CancelCapacityTask = [
1011
+ var UpdateSiteRackPhysicalPropertiesOutput$ = [3, n0, _USRPPO, 0, [_Si], [() => Site$]];
1012
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
1013
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1014
+ var OutpostsServiceException$ = [-3, _sm, "OutpostsServiceException", 0, [], []];
1015
+ schema.TypeRegistry.for(_sm).registerError(OutpostsServiceException$, OutpostsServiceException);
1016
+ var AssetInstanceCapacityList = [1, n0, _AICL, 0, () => AssetInstanceTypeCapacity$];
1017
+ var AssetInstanceList = [1, n0, _AILs, 0, () => AssetInstance$];
1018
+ var AssetListDefinition = [1, n0, _ALD, 0, () => AssetInfo$];
1019
+ var BlockingInstancesList = [1, n0, _BIL, 0, () => BlockingInstance$];
1020
+ var CapacityTaskList = [1, n0, _CTL, 0, () => CapacityTaskSummary$];
1021
+ var CatalogItemListDefinition = [1, n0, _CILD, 0, () => CatalogItem$];
1022
+ var EC2CapacityListDefinition = [1, n0, _ECCLD, 0, () => EC2Capacity$];
1023
+ var InstanceTypeListDefinition = [1, n0, _ITLD, 0, () => InstanceTypeItem$];
1024
+ var LineItemAssetInformationList = [1, n0, _LIAIL, 0, () => LineItemAssetInformation$];
1025
+ var LineItemListDefinition = [1, n0, _LILD, 0, () => LineItem$];
1026
+ var LineItemRequestListDefinition = [1, n0, _LIRLD, 0, () => LineItemRequest$];
1027
+ var OrderSummaryListDefinition = [1, n0, _OSLD, 0, () => OrderSummary$];
1028
+ var outpostListDefinition = [1, n0, _oLD, 0, () => Outpost$];
1029
+ var RequestedInstancePools = [1, n0, _RIP, 0, () => InstanceTypeCapacity$];
1030
+ var siteListDefinition = [1, n0, _sLD, 0, () => Site$];
1031
+ var SubscriptionList = [1, n0, _SL, 0, () => Subscription$];
1032
+ var CancelCapacityTask$ = [
1026
1033
  9,
1027
1034
  n0,
1028
1035
  _CCT,
1029
1036
  { [_h]: ["POST", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}", 200] },
1030
- () => CancelCapacityTaskInput,
1031
- () => CancelCapacityTaskOutput,
1037
+ () => CancelCapacityTaskInput$,
1038
+ () => CancelCapacityTaskOutput$,
1032
1039
  ];
1033
- var CancelOrder = [
1040
+ var CancelOrder$ = [
1034
1041
  9,
1035
1042
  n0,
1036
1043
  _CO,
1037
1044
  { [_h]: ["POST", "/orders/{OrderId}/cancel", 200] },
1038
- () => CancelOrderInput,
1039
- () => CancelOrderOutput,
1045
+ () => CancelOrderInput$,
1046
+ () => CancelOrderOutput$,
1040
1047
  ];
1041
- var CreateOrder = [
1048
+ var CreateOrder$ = [
1042
1049
  9,
1043
1050
  n0,
1044
1051
  _COr,
1045
1052
  { [_h]: ["POST", "/orders", 200] },
1046
- () => CreateOrderInput,
1047
- () => CreateOrderOutput,
1053
+ () => CreateOrderInput$,
1054
+ () => CreateOrderOutput$,
1048
1055
  ];
1049
- var CreateOutpost = [
1056
+ var CreateOutpost$ = [
1050
1057
  9,
1051
1058
  n0,
1052
1059
  _COre,
1053
1060
  { [_h]: ["POST", "/outposts", 200] },
1054
- () => CreateOutpostInput,
1055
- () => CreateOutpostOutput,
1061
+ () => CreateOutpostInput$,
1062
+ () => CreateOutpostOutput$,
1056
1063
  ];
1057
- var CreateSite = [
1064
+ var CreateSite$ = [
1058
1065
  9,
1059
1066
  n0,
1060
1067
  _CS,
1061
1068
  { [_h]: ["POST", "/sites", 200] },
1062
- () => CreateSiteInput,
1063
- () => CreateSiteOutput,
1069
+ () => CreateSiteInput$,
1070
+ () => CreateSiteOutput$,
1064
1071
  ];
1065
- var DeleteOutpost = [
1072
+ var DeleteOutpost$ = [
1066
1073
  9,
1067
1074
  n0,
1068
1075
  _DO,
1069
1076
  { [_h]: ["DELETE", "/outposts/{OutpostId}", 200] },
1070
- () => DeleteOutpostInput,
1071
- () => DeleteOutpostOutput,
1077
+ () => DeleteOutpostInput$,
1078
+ () => DeleteOutpostOutput$,
1072
1079
  ];
1073
- var DeleteSite = [
1080
+ var DeleteSite$ = [
1074
1081
  9,
1075
1082
  n0,
1076
1083
  _DS,
1077
1084
  { [_h]: ["DELETE", "/sites/{SiteId}", 200] },
1078
- () => DeleteSiteInput,
1079
- () => DeleteSiteOutput,
1085
+ () => DeleteSiteInput$,
1086
+ () => DeleteSiteOutput$,
1080
1087
  ];
1081
- var GetCapacityTask = [
1088
+ var GetCapacityTask$ = [
1082
1089
  9,
1083
1090
  n0,
1084
1091
  _GCT,
1085
1092
  { [_h]: ["GET", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}", 200] },
1086
- () => GetCapacityTaskInput,
1087
- () => GetCapacityTaskOutput,
1093
+ () => GetCapacityTaskInput$,
1094
+ () => GetCapacityTaskOutput$,
1088
1095
  ];
1089
- var GetCatalogItem = [
1096
+ var GetCatalogItem$ = [
1090
1097
  9,
1091
1098
  n0,
1092
1099
  _GCI,
1093
1100
  { [_h]: ["GET", "/catalog/item/{CatalogItemId}", 200] },
1094
- () => GetCatalogItemInput,
1095
- () => GetCatalogItemOutput,
1101
+ () => GetCatalogItemInput$,
1102
+ () => GetCatalogItemOutput$,
1096
1103
  ];
1097
- var GetConnection = [
1104
+ var GetConnection$ = [
1098
1105
  9,
1099
1106
  n0,
1100
1107
  _GC,
1101
1108
  { [_h]: ["GET", "/connections/{ConnectionId}", 200] },
1102
- () => GetConnectionRequest,
1103
- () => GetConnectionResponse,
1109
+ () => GetConnectionRequest$,
1110
+ () => GetConnectionResponse$,
1104
1111
  ];
1105
- var GetOrder = [
1112
+ var GetOrder$ = [
1106
1113
  9,
1107
1114
  n0,
1108
1115
  _GO,
1109
1116
  { [_h]: ["GET", "/orders/{OrderId}", 200] },
1110
- () => GetOrderInput,
1111
- () => GetOrderOutput,
1117
+ () => GetOrderInput$,
1118
+ () => GetOrderOutput$,
1112
1119
  ];
1113
- var GetOutpost = [
1120
+ var GetOutpost$ = [
1114
1121
  9,
1115
1122
  n0,
1116
1123
  _GOe,
1117
1124
  { [_h]: ["GET", "/outposts/{OutpostId}", 200] },
1118
- () => GetOutpostInput,
1119
- () => GetOutpostOutput,
1125
+ () => GetOutpostInput$,
1126
+ () => GetOutpostOutput$,
1120
1127
  ];
1121
- var GetOutpostBillingInformation = [
1128
+ var GetOutpostBillingInformation$ = [
1122
1129
  9,
1123
1130
  n0,
1124
1131
  _GOBI,
1125
1132
  { [_h]: ["GET", "/outpost/{OutpostIdentifier}/billing-information", 200] },
1126
- () => GetOutpostBillingInformationInput,
1127
- () => GetOutpostBillingInformationOutput,
1133
+ () => GetOutpostBillingInformationInput$,
1134
+ () => GetOutpostBillingInformationOutput$,
1128
1135
  ];
1129
- var GetOutpostInstanceTypes = [
1136
+ var GetOutpostInstanceTypes$ = [
1130
1137
  9,
1131
1138
  n0,
1132
1139
  _GOIT,
1133
1140
  { [_h]: ["GET", "/outposts/{OutpostId}/instanceTypes", 200] },
1134
- () => GetOutpostInstanceTypesInput,
1135
- () => GetOutpostInstanceTypesOutput,
1141
+ () => GetOutpostInstanceTypesInput$,
1142
+ () => GetOutpostInstanceTypesOutput$,
1136
1143
  ];
1137
- var GetOutpostSupportedInstanceTypes = [
1144
+ var GetOutpostSupportedInstanceTypes$ = [
1138
1145
  9,
1139
1146
  n0,
1140
1147
  _GOSIT,
1141
1148
  { [_h]: ["GET", "/outposts/{OutpostIdentifier}/supportedInstanceTypes", 200] },
1142
- () => GetOutpostSupportedInstanceTypesInput,
1143
- () => GetOutpostSupportedInstanceTypesOutput,
1149
+ () => GetOutpostSupportedInstanceTypesInput$,
1150
+ () => GetOutpostSupportedInstanceTypesOutput$,
1144
1151
  ];
1145
- var GetSite = [
1152
+ var GetSite$ = [
1146
1153
  9,
1147
1154
  n0,
1148
1155
  _GS,
1149
1156
  { [_h]: ["GET", "/sites/{SiteId}", 200] },
1150
- () => GetSiteInput,
1151
- () => GetSiteOutput,
1157
+ () => GetSiteInput$,
1158
+ () => GetSiteOutput$,
1152
1159
  ];
1153
- var GetSiteAddress = [
1160
+ var GetSiteAddress$ = [
1154
1161
  9,
1155
1162
  n0,
1156
1163
  _GSA,
1157
1164
  { [_h]: ["GET", "/sites/{SiteId}/address", 200] },
1158
- () => GetSiteAddressInput,
1159
- () => GetSiteAddressOutput,
1165
+ () => GetSiteAddressInput$,
1166
+ () => GetSiteAddressOutput$,
1160
1167
  ];
1161
- var ListAssetInstances = [
1168
+ var ListAssetInstances$ = [
1162
1169
  9,
1163
1170
  n0,
1164
1171
  _LAIi,
1165
1172
  { [_h]: ["GET", "/outposts/{OutpostIdentifier}/assetInstances", 200] },
1166
- () => ListAssetInstancesInput,
1167
- () => ListAssetInstancesOutput,
1173
+ () => ListAssetInstancesInput$,
1174
+ () => ListAssetInstancesOutput$,
1168
1175
  ];
1169
- var ListAssets = [
1176
+ var ListAssets$ = [
1170
1177
  9,
1171
1178
  n0,
1172
1179
  _LA,
1173
1180
  { [_h]: ["GET", "/outposts/{OutpostIdentifier}/assets", 200] },
1174
- () => ListAssetsInput,
1175
- () => ListAssetsOutput,
1181
+ () => ListAssetsInput$,
1182
+ () => ListAssetsOutput$,
1176
1183
  ];
1177
- var ListBlockingInstancesForCapacityTask = [
1184
+ var ListBlockingInstancesForCapacityTask$ = [
1178
1185
  9,
1179
1186
  n0,
1180
1187
  _LBIFCT,
1181
1188
  { [_h]: ["GET", "/outposts/{OutpostIdentifier}/capacity/{CapacityTaskId}/blockingInstances", 200] },
1182
- () => ListBlockingInstancesForCapacityTaskInput,
1183
- () => ListBlockingInstancesForCapacityTaskOutput,
1189
+ () => ListBlockingInstancesForCapacityTaskInput$,
1190
+ () => ListBlockingInstancesForCapacityTaskOutput$,
1184
1191
  ];
1185
- var ListCapacityTasks = [
1192
+ var ListCapacityTasks$ = [
1186
1193
  9,
1187
1194
  n0,
1188
1195
  _LCT,
1189
1196
  { [_h]: ["GET", "/capacity/tasks", 200] },
1190
- () => ListCapacityTasksInput,
1191
- () => ListCapacityTasksOutput,
1197
+ () => ListCapacityTasksInput$,
1198
+ () => ListCapacityTasksOutput$,
1192
1199
  ];
1193
- var ListCatalogItems = [
1200
+ var ListCatalogItems$ = [
1194
1201
  9,
1195
1202
  n0,
1196
1203
  _LCI,
1197
1204
  { [_h]: ["GET", "/catalog/items", 200] },
1198
- () => ListCatalogItemsInput,
1199
- () => ListCatalogItemsOutput,
1205
+ () => ListCatalogItemsInput$,
1206
+ () => ListCatalogItemsOutput$,
1200
1207
  ];
1201
- var ListOrders = [
1208
+ var ListOrders$ = [
1202
1209
  9,
1203
1210
  n0,
1204
1211
  _LO,
1205
1212
  { [_h]: ["GET", "/list-orders", 200] },
1206
- () => ListOrdersInput,
1207
- () => ListOrdersOutput,
1213
+ () => ListOrdersInput$,
1214
+ () => ListOrdersOutput$,
1208
1215
  ];
1209
- var ListOutposts = [
1216
+ var ListOutposts$ = [
1210
1217
  9,
1211
1218
  n0,
1212
1219
  _LOi,
1213
1220
  { [_h]: ["GET", "/outposts", 200] },
1214
- () => ListOutpostsInput,
1215
- () => ListOutpostsOutput,
1221
+ () => ListOutpostsInput$,
1222
+ () => ListOutpostsOutput$,
1216
1223
  ];
1217
- var ListSites = [
1224
+ var ListSites$ = [
1218
1225
  9,
1219
1226
  n0,
1220
1227
  _LS,
1221
1228
  { [_h]: ["GET", "/sites", 200] },
1222
- () => ListSitesInput,
1223
- () => ListSitesOutput,
1229
+ () => ListSitesInput$,
1230
+ () => ListSitesOutput$,
1224
1231
  ];
1225
- var ListTagsForResource = [
1232
+ var ListTagsForResource$ = [
1226
1233
  9,
1227
1234
  n0,
1228
1235
  _LTFR,
1229
1236
  { [_h]: ["GET", "/tags/{ResourceArn}", 200] },
1230
- () => ListTagsForResourceRequest,
1231
- () => ListTagsForResourceResponse,
1237
+ () => ListTagsForResourceRequest$,
1238
+ () => ListTagsForResourceResponse$,
1232
1239
  ];
1233
- var StartCapacityTask = [
1240
+ var StartCapacityTask$ = [
1234
1241
  9,
1235
1242
  n0,
1236
1243
  _SCT,
1237
1244
  { [_h]: ["POST", "/outposts/{OutpostIdentifier}/capacity", 200] },
1238
- () => StartCapacityTaskInput,
1239
- () => StartCapacityTaskOutput,
1245
+ () => StartCapacityTaskInput$,
1246
+ () => StartCapacityTaskOutput$,
1240
1247
  ];
1241
- var StartConnection = [
1248
+ var StartConnection$ = [
1242
1249
  9,
1243
1250
  n0,
1244
1251
  _SCt,
1245
1252
  { [_h]: ["POST", "/connections", 200] },
1246
- () => StartConnectionRequest,
1247
- () => StartConnectionResponse,
1253
+ () => StartConnectionRequest$,
1254
+ () => StartConnectionResponse$,
1248
1255
  ];
1249
- var StartOutpostDecommission = [
1256
+ var StartOutpostDecommission$ = [
1250
1257
  9,
1251
1258
  n0,
1252
1259
  _SOD,
1253
1260
  { [_h]: ["POST", "/outposts/{OutpostIdentifier}/decommission", 200] },
1254
- () => StartOutpostDecommissionInput,
1255
- () => StartOutpostDecommissionOutput,
1261
+ () => StartOutpostDecommissionInput$,
1262
+ () => StartOutpostDecommissionOutput$,
1256
1263
  ];
1257
- var TagResource = [
1264
+ var TagResource$ = [
1258
1265
  9,
1259
1266
  n0,
1260
1267
  _TR,
1261
1268
  { [_h]: ["POST", "/tags/{ResourceArn}", 200] },
1262
- () => TagResourceRequest,
1263
- () => TagResourceResponse,
1269
+ () => TagResourceRequest$,
1270
+ () => TagResourceResponse$,
1264
1271
  ];
1265
- var UntagResource = [
1272
+ var UntagResource$ = [
1266
1273
  9,
1267
1274
  n0,
1268
1275
  _UR,
1269
1276
  { [_h]: ["DELETE", "/tags/{ResourceArn}", 200] },
1270
- () => UntagResourceRequest,
1271
- () => UntagResourceResponse,
1277
+ () => UntagResourceRequest$,
1278
+ () => UntagResourceResponse$,
1272
1279
  ];
1273
- var UpdateOutpost = [
1280
+ var UpdateOutpost$ = [
1274
1281
  9,
1275
1282
  n0,
1276
1283
  _UO,
1277
1284
  { [_h]: ["PATCH", "/outposts/{OutpostId}", 200] },
1278
- () => UpdateOutpostInput,
1279
- () => UpdateOutpostOutput,
1285
+ () => UpdateOutpostInput$,
1286
+ () => UpdateOutpostOutput$,
1280
1287
  ];
1281
- var UpdateSite = [
1288
+ var UpdateSite$ = [
1282
1289
  9,
1283
1290
  n0,
1284
1291
  _US,
1285
1292
  { [_h]: ["PATCH", "/sites/{SiteId}", 200] },
1286
- () => UpdateSiteInput,
1287
- () => UpdateSiteOutput,
1293
+ () => UpdateSiteInput$,
1294
+ () => UpdateSiteOutput$,
1288
1295
  ];
1289
- var UpdateSiteAddress = [
1296
+ var UpdateSiteAddress$ = [
1290
1297
  9,
1291
1298
  n0,
1292
1299
  _USA,
1293
1300
  { [_h]: ["PUT", "/sites/{SiteId}/address", 200] },
1294
- () => UpdateSiteAddressInput,
1295
- () => UpdateSiteAddressOutput,
1301
+ () => UpdateSiteAddressInput$,
1302
+ () => UpdateSiteAddressOutput$,
1296
1303
  ];
1297
- var UpdateSiteRackPhysicalProperties = [
1304
+ var UpdateSiteRackPhysicalProperties$ = [
1298
1305
  9,
1299
1306
  n0,
1300
1307
  _USRPP,
1301
1308
  { [_h]: ["PATCH", "/sites/{SiteId}/rackPhysicalProperties", 200] },
1302
- () => UpdateSiteRackPhysicalPropertiesInput,
1303
- () => UpdateSiteRackPhysicalPropertiesOutput,
1309
+ () => UpdateSiteRackPhysicalPropertiesInput$,
1310
+ () => UpdateSiteRackPhysicalPropertiesOutput$,
1304
1311
  ];
1305
1312
 
1306
1313
  class CancelCapacityTaskCommand extends smithyClient.Command
@@ -1311,7 +1318,7 @@ class CancelCapacityTaskCommand extends smithyClient.Command
1311
1318
  })
1312
1319
  .s("OutpostsOlafService", "CancelCapacityTask", {})
1313
1320
  .n("OutpostsClient", "CancelCapacityTaskCommand")
1314
- .sc(CancelCapacityTask)
1321
+ .sc(CancelCapacityTask$)
1315
1322
  .build() {
1316
1323
  }
1317
1324
 
@@ -1323,7 +1330,7 @@ class CancelOrderCommand extends smithyClient.Command
1323
1330
  })
1324
1331
  .s("OutpostsOlafService", "CancelOrder", {})
1325
1332
  .n("OutpostsClient", "CancelOrderCommand")
1326
- .sc(CancelOrder)
1333
+ .sc(CancelOrder$)
1327
1334
  .build() {
1328
1335
  }
1329
1336
 
@@ -1335,7 +1342,7 @@ class CreateOrderCommand extends smithyClient.Command
1335
1342
  })
1336
1343
  .s("OutpostsOlafService", "CreateOrder", {})
1337
1344
  .n("OutpostsClient", "CreateOrderCommand")
1338
- .sc(CreateOrder)
1345
+ .sc(CreateOrder$)
1339
1346
  .build() {
1340
1347
  }
1341
1348
 
@@ -1347,7 +1354,7 @@ class CreateOutpostCommand extends smithyClient.Command
1347
1354
  })
1348
1355
  .s("OutpostsOlafService", "CreateOutpost", {})
1349
1356
  .n("OutpostsClient", "CreateOutpostCommand")
1350
- .sc(CreateOutpost)
1357
+ .sc(CreateOutpost$)
1351
1358
  .build() {
1352
1359
  }
1353
1360
 
@@ -1359,7 +1366,7 @@ class CreateSiteCommand extends smithyClient.Command
1359
1366
  })
1360
1367
  .s("OutpostsOlafService", "CreateSite", {})
1361
1368
  .n("OutpostsClient", "CreateSiteCommand")
1362
- .sc(CreateSite)
1369
+ .sc(CreateSite$)
1363
1370
  .build() {
1364
1371
  }
1365
1372
 
@@ -1371,7 +1378,7 @@ class DeleteOutpostCommand extends smithyClient.Command
1371
1378
  })
1372
1379
  .s("OutpostsOlafService", "DeleteOutpost", {})
1373
1380
  .n("OutpostsClient", "DeleteOutpostCommand")
1374
- .sc(DeleteOutpost)
1381
+ .sc(DeleteOutpost$)
1375
1382
  .build() {
1376
1383
  }
1377
1384
 
@@ -1383,7 +1390,7 @@ class DeleteSiteCommand extends smithyClient.Command
1383
1390
  })
1384
1391
  .s("OutpostsOlafService", "DeleteSite", {})
1385
1392
  .n("OutpostsClient", "DeleteSiteCommand")
1386
- .sc(DeleteSite)
1393
+ .sc(DeleteSite$)
1387
1394
  .build() {
1388
1395
  }
1389
1396
 
@@ -1395,7 +1402,7 @@ class GetCapacityTaskCommand extends smithyClient.Command
1395
1402
  })
1396
1403
  .s("OutpostsOlafService", "GetCapacityTask", {})
1397
1404
  .n("OutpostsClient", "GetCapacityTaskCommand")
1398
- .sc(GetCapacityTask)
1405
+ .sc(GetCapacityTask$)
1399
1406
  .build() {
1400
1407
  }
1401
1408
 
@@ -1407,7 +1414,7 @@ class GetCatalogItemCommand extends smithyClient.Command
1407
1414
  })
1408
1415
  .s("OutpostsOlafService", "GetCatalogItem", {})
1409
1416
  .n("OutpostsClient", "GetCatalogItemCommand")
1410
- .sc(GetCatalogItem)
1417
+ .sc(GetCatalogItem$)
1411
1418
  .build() {
1412
1419
  }
1413
1420
 
@@ -1419,7 +1426,7 @@ class GetConnectionCommand extends smithyClient.Command
1419
1426
  })
1420
1427
  .s("OutpostsOlafService", "GetConnection", {})
1421
1428
  .n("OutpostsClient", "GetConnectionCommand")
1422
- .sc(GetConnection)
1429
+ .sc(GetConnection$)
1423
1430
  .build() {
1424
1431
  }
1425
1432
 
@@ -1431,7 +1438,7 @@ class GetOrderCommand extends smithyClient.Command
1431
1438
  })
1432
1439
  .s("OutpostsOlafService", "GetOrder", {})
1433
1440
  .n("OutpostsClient", "GetOrderCommand")
1434
- .sc(GetOrder)
1441
+ .sc(GetOrder$)
1435
1442
  .build() {
1436
1443
  }
1437
1444
 
@@ -1443,7 +1450,7 @@ class GetOutpostBillingInformationCommand extends smithyClient.Command
1443
1450
  })
1444
1451
  .s("OutpostsOlafService", "GetOutpostBillingInformation", {})
1445
1452
  .n("OutpostsClient", "GetOutpostBillingInformationCommand")
1446
- .sc(GetOutpostBillingInformation)
1453
+ .sc(GetOutpostBillingInformation$)
1447
1454
  .build() {
1448
1455
  }
1449
1456
 
@@ -1455,7 +1462,7 @@ class GetOutpostCommand extends smithyClient.Command
1455
1462
  })
1456
1463
  .s("OutpostsOlafService", "GetOutpost", {})
1457
1464
  .n("OutpostsClient", "GetOutpostCommand")
1458
- .sc(GetOutpost)
1465
+ .sc(GetOutpost$)
1459
1466
  .build() {
1460
1467
  }
1461
1468
 
@@ -1467,7 +1474,7 @@ class GetOutpostInstanceTypesCommand extends smithyClient.Command
1467
1474
  })
1468
1475
  .s("OutpostsOlafService", "GetOutpostInstanceTypes", {})
1469
1476
  .n("OutpostsClient", "GetOutpostInstanceTypesCommand")
1470
- .sc(GetOutpostInstanceTypes)
1477
+ .sc(GetOutpostInstanceTypes$)
1471
1478
  .build() {
1472
1479
  }
1473
1480
 
@@ -1479,7 +1486,7 @@ class GetOutpostSupportedInstanceTypesCommand extends smithyClient.Command
1479
1486
  })
1480
1487
  .s("OutpostsOlafService", "GetOutpostSupportedInstanceTypes", {})
1481
1488
  .n("OutpostsClient", "GetOutpostSupportedInstanceTypesCommand")
1482
- .sc(GetOutpostSupportedInstanceTypes)
1489
+ .sc(GetOutpostSupportedInstanceTypes$)
1483
1490
  .build() {
1484
1491
  }
1485
1492
 
@@ -1491,7 +1498,7 @@ class GetSiteAddressCommand extends smithyClient.Command
1491
1498
  })
1492
1499
  .s("OutpostsOlafService", "GetSiteAddress", {})
1493
1500
  .n("OutpostsClient", "GetSiteAddressCommand")
1494
- .sc(GetSiteAddress)
1501
+ .sc(GetSiteAddress$)
1495
1502
  .build() {
1496
1503
  }
1497
1504
 
@@ -1503,7 +1510,7 @@ class GetSiteCommand extends smithyClient.Command
1503
1510
  })
1504
1511
  .s("OutpostsOlafService", "GetSite", {})
1505
1512
  .n("OutpostsClient", "GetSiteCommand")
1506
- .sc(GetSite)
1513
+ .sc(GetSite$)
1507
1514
  .build() {
1508
1515
  }
1509
1516
 
@@ -1515,7 +1522,7 @@ class ListAssetInstancesCommand extends smithyClient.Command
1515
1522
  })
1516
1523
  .s("OutpostsOlafService", "ListAssetInstances", {})
1517
1524
  .n("OutpostsClient", "ListAssetInstancesCommand")
1518
- .sc(ListAssetInstances)
1525
+ .sc(ListAssetInstances$)
1519
1526
  .build() {
1520
1527
  }
1521
1528
 
@@ -1527,7 +1534,7 @@ class ListAssetsCommand extends smithyClient.Command
1527
1534
  })
1528
1535
  .s("OutpostsOlafService", "ListAssets", {})
1529
1536
  .n("OutpostsClient", "ListAssetsCommand")
1530
- .sc(ListAssets)
1537
+ .sc(ListAssets$)
1531
1538
  .build() {
1532
1539
  }
1533
1540
 
@@ -1539,7 +1546,7 @@ class ListBlockingInstancesForCapacityTaskCommand extends smithyClient.Command
1539
1546
  })
1540
1547
  .s("OutpostsOlafService", "ListBlockingInstancesForCapacityTask", {})
1541
1548
  .n("OutpostsClient", "ListBlockingInstancesForCapacityTaskCommand")
1542
- .sc(ListBlockingInstancesForCapacityTask)
1549
+ .sc(ListBlockingInstancesForCapacityTask$)
1543
1550
  .build() {
1544
1551
  }
1545
1552
 
@@ -1551,7 +1558,7 @@ class ListCapacityTasksCommand extends smithyClient.Command
1551
1558
  })
1552
1559
  .s("OutpostsOlafService", "ListCapacityTasks", {})
1553
1560
  .n("OutpostsClient", "ListCapacityTasksCommand")
1554
- .sc(ListCapacityTasks)
1561
+ .sc(ListCapacityTasks$)
1555
1562
  .build() {
1556
1563
  }
1557
1564
 
@@ -1563,7 +1570,7 @@ class ListCatalogItemsCommand extends smithyClient.Command
1563
1570
  })
1564
1571
  .s("OutpostsOlafService", "ListCatalogItems", {})
1565
1572
  .n("OutpostsClient", "ListCatalogItemsCommand")
1566
- .sc(ListCatalogItems)
1573
+ .sc(ListCatalogItems$)
1567
1574
  .build() {
1568
1575
  }
1569
1576
 
@@ -1575,7 +1582,7 @@ class ListOrdersCommand extends smithyClient.Command
1575
1582
  })
1576
1583
  .s("OutpostsOlafService", "ListOrders", {})
1577
1584
  .n("OutpostsClient", "ListOrdersCommand")
1578
- .sc(ListOrders)
1585
+ .sc(ListOrders$)
1579
1586
  .build() {
1580
1587
  }
1581
1588
 
@@ -1587,7 +1594,7 @@ class ListOutpostsCommand extends smithyClient.Command
1587
1594
  })
1588
1595
  .s("OutpostsOlafService", "ListOutposts", {})
1589
1596
  .n("OutpostsClient", "ListOutpostsCommand")
1590
- .sc(ListOutposts)
1597
+ .sc(ListOutposts$)
1591
1598
  .build() {
1592
1599
  }
1593
1600
 
@@ -1599,7 +1606,7 @@ class ListSitesCommand extends smithyClient.Command
1599
1606
  })
1600
1607
  .s("OutpostsOlafService", "ListSites", {})
1601
1608
  .n("OutpostsClient", "ListSitesCommand")
1602
- .sc(ListSites)
1609
+ .sc(ListSites$)
1603
1610
  .build() {
1604
1611
  }
1605
1612
 
@@ -1611,7 +1618,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1611
1618
  })
1612
1619
  .s("OutpostsOlafService", "ListTagsForResource", {})
1613
1620
  .n("OutpostsClient", "ListTagsForResourceCommand")
1614
- .sc(ListTagsForResource)
1621
+ .sc(ListTagsForResource$)
1615
1622
  .build() {
1616
1623
  }
1617
1624
 
@@ -1623,7 +1630,7 @@ class StartCapacityTaskCommand extends smithyClient.Command
1623
1630
  })
1624
1631
  .s("OutpostsOlafService", "StartCapacityTask", {})
1625
1632
  .n("OutpostsClient", "StartCapacityTaskCommand")
1626
- .sc(StartCapacityTask)
1633
+ .sc(StartCapacityTask$)
1627
1634
  .build() {
1628
1635
  }
1629
1636
 
@@ -1635,7 +1642,7 @@ class StartConnectionCommand extends smithyClient.Command
1635
1642
  })
1636
1643
  .s("OutpostsOlafService", "StartConnection", {})
1637
1644
  .n("OutpostsClient", "StartConnectionCommand")
1638
- .sc(StartConnection)
1645
+ .sc(StartConnection$)
1639
1646
  .build() {
1640
1647
  }
1641
1648
 
@@ -1647,7 +1654,7 @@ class StartOutpostDecommissionCommand extends smithyClient.Command
1647
1654
  })
1648
1655
  .s("OutpostsOlafService", "StartOutpostDecommission", {})
1649
1656
  .n("OutpostsClient", "StartOutpostDecommissionCommand")
1650
- .sc(StartOutpostDecommission)
1657
+ .sc(StartOutpostDecommission$)
1651
1658
  .build() {
1652
1659
  }
1653
1660
 
@@ -1659,7 +1666,7 @@ class TagResourceCommand extends smithyClient.Command
1659
1666
  })
1660
1667
  .s("OutpostsOlafService", "TagResource", {})
1661
1668
  .n("OutpostsClient", "TagResourceCommand")
1662
- .sc(TagResource)
1669
+ .sc(TagResource$)
1663
1670
  .build() {
1664
1671
  }
1665
1672
 
@@ -1671,7 +1678,7 @@ class UntagResourceCommand extends smithyClient.Command
1671
1678
  })
1672
1679
  .s("OutpostsOlafService", "UntagResource", {})
1673
1680
  .n("OutpostsClient", "UntagResourceCommand")
1674
- .sc(UntagResource)
1681
+ .sc(UntagResource$)
1675
1682
  .build() {
1676
1683
  }
1677
1684
 
@@ -1683,7 +1690,7 @@ class UpdateOutpostCommand extends smithyClient.Command
1683
1690
  })
1684
1691
  .s("OutpostsOlafService", "UpdateOutpost", {})
1685
1692
  .n("OutpostsClient", "UpdateOutpostCommand")
1686
- .sc(UpdateOutpost)
1693
+ .sc(UpdateOutpost$)
1687
1694
  .build() {
1688
1695
  }
1689
1696
 
@@ -1695,7 +1702,7 @@ class UpdateSiteAddressCommand extends smithyClient.Command
1695
1702
  })
1696
1703
  .s("OutpostsOlafService", "UpdateSiteAddress", {})
1697
1704
  .n("OutpostsClient", "UpdateSiteAddressCommand")
1698
- .sc(UpdateSiteAddress)
1705
+ .sc(UpdateSiteAddress$)
1699
1706
  .build() {
1700
1707
  }
1701
1708
 
@@ -1707,7 +1714,7 @@ class UpdateSiteCommand extends smithyClient.Command
1707
1714
  })
1708
1715
  .s("OutpostsOlafService", "UpdateSite", {})
1709
1716
  .n("OutpostsClient", "UpdateSiteCommand")
1710
- .sc(UpdateSite)
1717
+ .sc(UpdateSite$)
1711
1718
  .build() {
1712
1719
  }
1713
1720
 
@@ -1719,7 +1726,7 @@ class UpdateSiteRackPhysicalPropertiesCommand extends smithyClient.Command
1719
1726
  })
1720
1727
  .s("OutpostsOlafService", "UpdateSiteRackPhysicalProperties", {})
1721
1728
  .n("OutpostsClient", "UpdateSiteRackPhysicalPropertiesCommand")
1722
- .sc(UpdateSiteRackPhysicalProperties)
1729
+ .sc(UpdateSiteRackPhysicalProperties$)
1723
1730
  .build() {
1724
1731
  }
1725
1732
 
@@ -1995,81 +2002,218 @@ Object.defineProperty(exports, "__Client", {
1995
2002
  get: function () { return smithyClient.Client; }
1996
2003
  });
1997
2004
  exports.AWSServiceName = AWSServiceName;
1998
- exports.AccessDeniedException = AccessDeniedException$1;
2005
+ exports.AccessDeniedException = AccessDeniedException;
2006
+ exports.AccessDeniedException$ = AccessDeniedException$;
2007
+ exports.Address$ = Address$;
1999
2008
  exports.AddressType = AddressType;
2009
+ exports.AssetInfo$ = AssetInfo$;
2010
+ exports.AssetInstance$ = AssetInstance$;
2011
+ exports.AssetInstanceTypeCapacity$ = AssetInstanceTypeCapacity$;
2012
+ exports.AssetLocation$ = AssetLocation$;
2000
2013
  exports.AssetState = AssetState;
2001
2014
  exports.AssetType = AssetType;
2015
+ exports.BlockingInstance$ = BlockingInstance$;
2002
2016
  exports.BlockingResourceType = BlockingResourceType;
2017
+ exports.CancelCapacityTask$ = CancelCapacityTask$;
2003
2018
  exports.CancelCapacityTaskCommand = CancelCapacityTaskCommand;
2019
+ exports.CancelCapacityTaskInput$ = CancelCapacityTaskInput$;
2020
+ exports.CancelCapacityTaskOutput$ = CancelCapacityTaskOutput$;
2021
+ exports.CancelOrder$ = CancelOrder$;
2004
2022
  exports.CancelOrderCommand = CancelOrderCommand;
2023
+ exports.CancelOrderInput$ = CancelOrderInput$;
2024
+ exports.CancelOrderOutput$ = CancelOrderOutput$;
2025
+ exports.CapacityTaskFailure$ = CapacityTaskFailure$;
2005
2026
  exports.CapacityTaskFailureType = CapacityTaskFailureType;
2006
2027
  exports.CapacityTaskStatus = CapacityTaskStatus;
2028
+ exports.CapacityTaskSummary$ = CapacityTaskSummary$;
2029
+ exports.CatalogItem$ = CatalogItem$;
2007
2030
  exports.CatalogItemClass = CatalogItemClass;
2008
2031
  exports.CatalogItemStatus = CatalogItemStatus;
2009
2032
  exports.ComputeAssetState = ComputeAssetState;
2010
- exports.ConflictException = ConflictException$1;
2033
+ exports.ComputeAttributes$ = ComputeAttributes$;
2034
+ exports.ConflictException = ConflictException;
2035
+ exports.ConflictException$ = ConflictException$;
2036
+ exports.ConnectionDetails$ = ConnectionDetails$;
2037
+ exports.CreateOrder$ = CreateOrder$;
2011
2038
  exports.CreateOrderCommand = CreateOrderCommand;
2039
+ exports.CreateOrderInput$ = CreateOrderInput$;
2040
+ exports.CreateOrderOutput$ = CreateOrderOutput$;
2041
+ exports.CreateOutpost$ = CreateOutpost$;
2012
2042
  exports.CreateOutpostCommand = CreateOutpostCommand;
2043
+ exports.CreateOutpostInput$ = CreateOutpostInput$;
2044
+ exports.CreateOutpostOutput$ = CreateOutpostOutput$;
2045
+ exports.CreateSite$ = CreateSite$;
2013
2046
  exports.CreateSiteCommand = CreateSiteCommand;
2047
+ exports.CreateSiteInput$ = CreateSiteInput$;
2048
+ exports.CreateSiteOutput$ = CreateSiteOutput$;
2014
2049
  exports.DecommissionRequestStatus = DecommissionRequestStatus;
2050
+ exports.DeleteOutpost$ = DeleteOutpost$;
2015
2051
  exports.DeleteOutpostCommand = DeleteOutpostCommand;
2052
+ exports.DeleteOutpostInput$ = DeleteOutpostInput$;
2053
+ exports.DeleteOutpostOutput$ = DeleteOutpostOutput$;
2054
+ exports.DeleteSite$ = DeleteSite$;
2016
2055
  exports.DeleteSiteCommand = DeleteSiteCommand;
2056
+ exports.DeleteSiteInput$ = DeleteSiteInput$;
2057
+ exports.DeleteSiteOutput$ = DeleteSiteOutput$;
2058
+ exports.EC2Capacity$ = EC2Capacity$;
2017
2059
  exports.FiberOpticCableType = FiberOpticCableType;
2060
+ exports.GetCapacityTask$ = GetCapacityTask$;
2018
2061
  exports.GetCapacityTaskCommand = GetCapacityTaskCommand;
2062
+ exports.GetCapacityTaskInput$ = GetCapacityTaskInput$;
2063
+ exports.GetCapacityTaskOutput$ = GetCapacityTaskOutput$;
2064
+ exports.GetCatalogItem$ = GetCatalogItem$;
2019
2065
  exports.GetCatalogItemCommand = GetCatalogItemCommand;
2066
+ exports.GetCatalogItemInput$ = GetCatalogItemInput$;
2067
+ exports.GetCatalogItemOutput$ = GetCatalogItemOutput$;
2068
+ exports.GetConnection$ = GetConnection$;
2020
2069
  exports.GetConnectionCommand = GetConnectionCommand;
2070
+ exports.GetConnectionRequest$ = GetConnectionRequest$;
2071
+ exports.GetConnectionResponse$ = GetConnectionResponse$;
2072
+ exports.GetOrder$ = GetOrder$;
2021
2073
  exports.GetOrderCommand = GetOrderCommand;
2074
+ exports.GetOrderInput$ = GetOrderInput$;
2075
+ exports.GetOrderOutput$ = GetOrderOutput$;
2076
+ exports.GetOutpost$ = GetOutpost$;
2077
+ exports.GetOutpostBillingInformation$ = GetOutpostBillingInformation$;
2022
2078
  exports.GetOutpostBillingInformationCommand = GetOutpostBillingInformationCommand;
2079
+ exports.GetOutpostBillingInformationInput$ = GetOutpostBillingInformationInput$;
2080
+ exports.GetOutpostBillingInformationOutput$ = GetOutpostBillingInformationOutput$;
2023
2081
  exports.GetOutpostCommand = GetOutpostCommand;
2082
+ exports.GetOutpostInput$ = GetOutpostInput$;
2083
+ exports.GetOutpostInstanceTypes$ = GetOutpostInstanceTypes$;
2024
2084
  exports.GetOutpostInstanceTypesCommand = GetOutpostInstanceTypesCommand;
2085
+ exports.GetOutpostInstanceTypesInput$ = GetOutpostInstanceTypesInput$;
2086
+ exports.GetOutpostInstanceTypesOutput$ = GetOutpostInstanceTypesOutput$;
2087
+ exports.GetOutpostOutput$ = GetOutpostOutput$;
2088
+ exports.GetOutpostSupportedInstanceTypes$ = GetOutpostSupportedInstanceTypes$;
2025
2089
  exports.GetOutpostSupportedInstanceTypesCommand = GetOutpostSupportedInstanceTypesCommand;
2090
+ exports.GetOutpostSupportedInstanceTypesInput$ = GetOutpostSupportedInstanceTypesInput$;
2091
+ exports.GetOutpostSupportedInstanceTypesOutput$ = GetOutpostSupportedInstanceTypesOutput$;
2092
+ exports.GetSite$ = GetSite$;
2093
+ exports.GetSiteAddress$ = GetSiteAddress$;
2026
2094
  exports.GetSiteAddressCommand = GetSiteAddressCommand;
2095
+ exports.GetSiteAddressInput$ = GetSiteAddressInput$;
2096
+ exports.GetSiteAddressOutput$ = GetSiteAddressOutput$;
2027
2097
  exports.GetSiteCommand = GetSiteCommand;
2028
- exports.InternalServerException = InternalServerException$1;
2098
+ exports.GetSiteInput$ = GetSiteInput$;
2099
+ exports.GetSiteOutput$ = GetSiteOutput$;
2100
+ exports.InstanceTypeCapacity$ = InstanceTypeCapacity$;
2101
+ exports.InstanceTypeItem$ = InstanceTypeItem$;
2102
+ exports.InstancesToExclude$ = InstancesToExclude$;
2103
+ exports.InternalServerException = InternalServerException;
2104
+ exports.InternalServerException$ = InternalServerException$;
2105
+ exports.LineItem$ = LineItem$;
2106
+ exports.LineItemAssetInformation$ = LineItemAssetInformation$;
2107
+ exports.LineItemRequest$ = LineItemRequest$;
2029
2108
  exports.LineItemStatus = LineItemStatus;
2109
+ exports.ListAssetInstances$ = ListAssetInstances$;
2030
2110
  exports.ListAssetInstancesCommand = ListAssetInstancesCommand;
2111
+ exports.ListAssetInstancesInput$ = ListAssetInstancesInput$;
2112
+ exports.ListAssetInstancesOutput$ = ListAssetInstancesOutput$;
2113
+ exports.ListAssets$ = ListAssets$;
2031
2114
  exports.ListAssetsCommand = ListAssetsCommand;
2115
+ exports.ListAssetsInput$ = ListAssetsInput$;
2116
+ exports.ListAssetsOutput$ = ListAssetsOutput$;
2117
+ exports.ListBlockingInstancesForCapacityTask$ = ListBlockingInstancesForCapacityTask$;
2032
2118
  exports.ListBlockingInstancesForCapacityTaskCommand = ListBlockingInstancesForCapacityTaskCommand;
2119
+ exports.ListBlockingInstancesForCapacityTaskInput$ = ListBlockingInstancesForCapacityTaskInput$;
2120
+ exports.ListBlockingInstancesForCapacityTaskOutput$ = ListBlockingInstancesForCapacityTaskOutput$;
2121
+ exports.ListCapacityTasks$ = ListCapacityTasks$;
2033
2122
  exports.ListCapacityTasksCommand = ListCapacityTasksCommand;
2123
+ exports.ListCapacityTasksInput$ = ListCapacityTasksInput$;
2124
+ exports.ListCapacityTasksOutput$ = ListCapacityTasksOutput$;
2125
+ exports.ListCatalogItems$ = ListCatalogItems$;
2034
2126
  exports.ListCatalogItemsCommand = ListCatalogItemsCommand;
2127
+ exports.ListCatalogItemsInput$ = ListCatalogItemsInput$;
2128
+ exports.ListCatalogItemsOutput$ = ListCatalogItemsOutput$;
2129
+ exports.ListOrders$ = ListOrders$;
2035
2130
  exports.ListOrdersCommand = ListOrdersCommand;
2131
+ exports.ListOrdersInput$ = ListOrdersInput$;
2132
+ exports.ListOrdersOutput$ = ListOrdersOutput$;
2133
+ exports.ListOutposts$ = ListOutposts$;
2036
2134
  exports.ListOutpostsCommand = ListOutpostsCommand;
2135
+ exports.ListOutpostsInput$ = ListOutpostsInput$;
2136
+ exports.ListOutpostsOutput$ = ListOutpostsOutput$;
2137
+ exports.ListSites$ = ListSites$;
2037
2138
  exports.ListSitesCommand = ListSitesCommand;
2139
+ exports.ListSitesInput$ = ListSitesInput$;
2140
+ exports.ListSitesOutput$ = ListSitesOutput$;
2141
+ exports.ListTagsForResource$ = ListTagsForResource$;
2038
2142
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2143
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2144
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2039
2145
  exports.MaximumSupportedWeightLbs = MaximumSupportedWeightLbs;
2040
- exports.NotFoundException = NotFoundException$1;
2146
+ exports.NotFoundException = NotFoundException;
2147
+ exports.NotFoundException$ = NotFoundException$;
2041
2148
  exports.OpticalStandard = OpticalStandard;
2149
+ exports.Order$ = Order$;
2042
2150
  exports.OrderStatus = OrderStatus;
2151
+ exports.OrderSummary$ = OrderSummary$;
2043
2152
  exports.OrderType = OrderType;
2153
+ exports.Outpost$ = Outpost$;
2044
2154
  exports.Outposts = Outposts;
2045
2155
  exports.OutpostsClient = OutpostsClient;
2046
- exports.OutpostsServiceException = OutpostsServiceException$1;
2156
+ exports.OutpostsServiceException = OutpostsServiceException;
2157
+ exports.OutpostsServiceException$ = OutpostsServiceException$;
2047
2158
  exports.PaymentOption = PaymentOption;
2048
2159
  exports.PaymentTerm = PaymentTerm;
2049
2160
  exports.PowerConnector = PowerConnector;
2050
2161
  exports.PowerDrawKva = PowerDrawKva;
2051
2162
  exports.PowerFeedDrop = PowerFeedDrop;
2052
2163
  exports.PowerPhase = PowerPhase;
2164
+ exports.RackPhysicalProperties$ = RackPhysicalProperties$;
2053
2165
  exports.ResourceType = ResourceType;
2054
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2166
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2167
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2055
2168
  exports.ShipmentCarrier = ShipmentCarrier;
2169
+ exports.ShipmentInformation$ = ShipmentInformation$;
2170
+ exports.Site$ = Site$;
2171
+ exports.StartCapacityTask$ = StartCapacityTask$;
2056
2172
  exports.StartCapacityTaskCommand = StartCapacityTaskCommand;
2173
+ exports.StartCapacityTaskInput$ = StartCapacityTaskInput$;
2174
+ exports.StartCapacityTaskOutput$ = StartCapacityTaskOutput$;
2175
+ exports.StartConnection$ = StartConnection$;
2057
2176
  exports.StartConnectionCommand = StartConnectionCommand;
2177
+ exports.StartConnectionRequest$ = StartConnectionRequest$;
2178
+ exports.StartConnectionResponse$ = StartConnectionResponse$;
2179
+ exports.StartOutpostDecommission$ = StartOutpostDecommission$;
2058
2180
  exports.StartOutpostDecommissionCommand = StartOutpostDecommissionCommand;
2181
+ exports.StartOutpostDecommissionInput$ = StartOutpostDecommissionInput$;
2182
+ exports.StartOutpostDecommissionOutput$ = StartOutpostDecommissionOutput$;
2183
+ exports.Subscription$ = Subscription$;
2059
2184
  exports.SubscriptionStatus = SubscriptionStatus;
2060
2185
  exports.SubscriptionType = SubscriptionType;
2061
2186
  exports.SupportedHardwareType = SupportedHardwareType;
2062
2187
  exports.SupportedStorageEnum = SupportedStorageEnum;
2188
+ exports.TagResource$ = TagResource$;
2063
2189
  exports.TagResourceCommand = TagResourceCommand;
2190
+ exports.TagResourceRequest$ = TagResourceRequest$;
2191
+ exports.TagResourceResponse$ = TagResourceResponse$;
2064
2192
  exports.TaskActionOnBlockingInstances = TaskActionOnBlockingInstances;
2193
+ exports.UntagResource$ = UntagResource$;
2065
2194
  exports.UntagResourceCommand = UntagResourceCommand;
2195
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2196
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2197
+ exports.UpdateOutpost$ = UpdateOutpost$;
2066
2198
  exports.UpdateOutpostCommand = UpdateOutpostCommand;
2199
+ exports.UpdateOutpostInput$ = UpdateOutpostInput$;
2200
+ exports.UpdateOutpostOutput$ = UpdateOutpostOutput$;
2201
+ exports.UpdateSite$ = UpdateSite$;
2202
+ exports.UpdateSiteAddress$ = UpdateSiteAddress$;
2067
2203
  exports.UpdateSiteAddressCommand = UpdateSiteAddressCommand;
2204
+ exports.UpdateSiteAddressInput$ = UpdateSiteAddressInput$;
2205
+ exports.UpdateSiteAddressOutput$ = UpdateSiteAddressOutput$;
2068
2206
  exports.UpdateSiteCommand = UpdateSiteCommand;
2207
+ exports.UpdateSiteInput$ = UpdateSiteInput$;
2208
+ exports.UpdateSiteOutput$ = UpdateSiteOutput$;
2209
+ exports.UpdateSiteRackPhysicalProperties$ = UpdateSiteRackPhysicalProperties$;
2069
2210
  exports.UpdateSiteRackPhysicalPropertiesCommand = UpdateSiteRackPhysicalPropertiesCommand;
2211
+ exports.UpdateSiteRackPhysicalPropertiesInput$ = UpdateSiteRackPhysicalPropertiesInput$;
2212
+ exports.UpdateSiteRackPhysicalPropertiesOutput$ = UpdateSiteRackPhysicalPropertiesOutput$;
2070
2213
  exports.UplinkCount = UplinkCount;
2071
2214
  exports.UplinkGbps = UplinkGbps;
2072
- exports.ValidationException = ValidationException$1;
2215
+ exports.ValidationException = ValidationException;
2216
+ exports.ValidationException$ = ValidationException$;
2073
2217
  exports.paginateGetOutpostBillingInformation = paginateGetOutpostBillingInformation;
2074
2218
  exports.paginateGetOutpostInstanceTypes = paginateGetOutpostInstanceTypes;
2075
2219
  exports.paginateGetOutpostSupportedInstanceTypes = paginateGetOutpostSupportedInstanceTypes;