@aws-sdk/client-opensearchserverless 3.952.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 (61) hide show
  1. package/dist-cjs/index.js +573 -363
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/BatchGetCollectionCommand.js +2 -2
  4. package/dist-es/commands/BatchGetEffectiveLifecyclePolicyCommand.js +2 -2
  5. package/dist-es/commands/BatchGetLifecyclePolicyCommand.js +2 -2
  6. package/dist-es/commands/BatchGetVpcEndpointCommand.js +2 -2
  7. package/dist-es/commands/CreateAccessPolicyCommand.js +2 -2
  8. package/dist-es/commands/CreateCollectionCommand.js +2 -2
  9. package/dist-es/commands/CreateIndexCommand.js +2 -2
  10. package/dist-es/commands/CreateLifecyclePolicyCommand.js +2 -2
  11. package/dist-es/commands/CreateSecurityConfigCommand.js +2 -2
  12. package/dist-es/commands/CreateSecurityPolicyCommand.js +2 -2
  13. package/dist-es/commands/CreateVpcEndpointCommand.js +2 -2
  14. package/dist-es/commands/DeleteAccessPolicyCommand.js +2 -2
  15. package/dist-es/commands/DeleteCollectionCommand.js +2 -2
  16. package/dist-es/commands/DeleteIndexCommand.js +2 -2
  17. package/dist-es/commands/DeleteLifecyclePolicyCommand.js +2 -2
  18. package/dist-es/commands/DeleteSecurityConfigCommand.js +2 -2
  19. package/dist-es/commands/DeleteSecurityPolicyCommand.js +2 -2
  20. package/dist-es/commands/DeleteVpcEndpointCommand.js +2 -2
  21. package/dist-es/commands/GetAccessPolicyCommand.js +2 -2
  22. package/dist-es/commands/GetAccountSettingsCommand.js +2 -2
  23. package/dist-es/commands/GetIndexCommand.js +2 -2
  24. package/dist-es/commands/GetPoliciesStatsCommand.js +2 -2
  25. package/dist-es/commands/GetSecurityConfigCommand.js +2 -2
  26. package/dist-es/commands/GetSecurityPolicyCommand.js +2 -2
  27. package/dist-es/commands/ListAccessPoliciesCommand.js +2 -2
  28. package/dist-es/commands/ListCollectionsCommand.js +2 -2
  29. package/dist-es/commands/ListLifecyclePoliciesCommand.js +2 -2
  30. package/dist-es/commands/ListSecurityConfigsCommand.js +2 -2
  31. package/dist-es/commands/ListSecurityPoliciesCommand.js +2 -2
  32. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  33. package/dist-es/commands/ListVpcEndpointsCommand.js +2 -2
  34. package/dist-es/commands/TagResourceCommand.js +2 -2
  35. package/dist-es/commands/UntagResourceCommand.js +2 -2
  36. package/dist-es/commands/UpdateAccessPolicyCommand.js +2 -2
  37. package/dist-es/commands/UpdateAccountSettingsCommand.js +2 -2
  38. package/dist-es/commands/UpdateCollectionCommand.js +2 -2
  39. package/dist-es/commands/UpdateIndexCommand.js +2 -2
  40. package/dist-es/commands/UpdateLifecyclePolicyCommand.js +2 -2
  41. package/dist-es/commands/UpdateSecurityConfigCommand.js +2 -2
  42. package/dist-es/commands/UpdateSecurityPolicyCommand.js +2 -2
  43. package/dist-es/commands/UpdateVpcEndpointCommand.js +2 -2
  44. package/dist-es/index.js +1 -0
  45. package/dist-es/runtimeConfig.shared.js +6 -6
  46. package/dist-es/schemas/schemas_0.js +351 -312
  47. package/dist-types/OpenSearchServerlessClient.d.ts +1 -10
  48. package/dist-types/index.d.ts +1 -0
  49. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  50. package/dist-types/runtimeConfig.d.ts +6 -2
  51. package/dist-types/runtimeConfig.native.d.ts +6 -2
  52. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  53. package/dist-types/schemas/schemas_0.d.ts +172 -197
  54. package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +0 -4
  55. package/dist-types/ts3.4/index.d.ts +1 -0
  56. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  57. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  58. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  59. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  60. package/dist-types/ts3.4/schemas/schemas_0.d.ts +171 -197
  61. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class OpenSearchServerlessClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let OpenSearchServerlessServiceException$1 = class OpenSearchServerlessServiceException extends smithyClient.ServiceException {
113
+ class OpenSearchServerlessServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, OpenSearchServerlessServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let ConflictException$1 = class ConflictException extends OpenSearchServerlessServiceException$1 {
120
+ class ConflictException extends OpenSearchServerlessServiceException {
121
121
  name = "ConflictException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let ConflictException$1 = class ConflictException extends OpenSearchServerlessSe
128
128
  });
129
129
  Object.setPrototypeOf(this, ConflictException.prototype);
130
130
  }
131
- };
132
- let InternalServerException$1 = class InternalServerException extends OpenSearchServerlessServiceException$1 {
131
+ }
132
+ class InternalServerException extends OpenSearchServerlessServiceException {
133
133
  name = "InternalServerException";
134
134
  $fault = "server";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let InternalServerException$1 = class InternalServerException extends OpenSearch
140
140
  });
141
141
  Object.setPrototypeOf(this, InternalServerException.prototype);
142
142
  }
143
- };
144
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends OpenSearchServerlessServiceException$1 {
143
+ }
144
+ class ServiceQuotaExceededException extends OpenSearchServerlessServiceException {
145
145
  name = "ServiceQuotaExceededException";
146
146
  $fault = "client";
147
147
  resourceId;
@@ -160,8 +160,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
160
160
  this.serviceCode = opts.serviceCode;
161
161
  this.quotaCode = opts.quotaCode;
162
162
  }
163
- };
164
- let ValidationException$1 = class ValidationException extends OpenSearchServerlessServiceException$1 {
163
+ }
164
+ class ValidationException extends OpenSearchServerlessServiceException {
165
165
  name = "ValidationException";
166
166
  $fault = "client";
167
167
  constructor(opts) {
@@ -172,8 +172,8 @@ let ValidationException$1 = class ValidationException extends OpenSearchServerle
172
172
  });
173
173
  Object.setPrototypeOf(this, ValidationException.prototype);
174
174
  }
175
- };
176
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends OpenSearchServerlessServiceException$1 {
175
+ }
176
+ class ResourceNotFoundException extends OpenSearchServerlessServiceException {
177
177
  name = "ResourceNotFoundException";
178
178
  $fault = "client";
179
179
  constructor(opts) {
@@ -184,8 +184,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends OpenSe
184
184
  });
185
185
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
186
186
  }
187
- };
188
- let OcuLimitExceededException$1 = class OcuLimitExceededException extends OpenSearchServerlessServiceException$1 {
187
+ }
188
+ class OcuLimitExceededException extends OpenSearchServerlessServiceException {
189
189
  name = "OcuLimitExceededException";
190
190
  $fault = "client";
191
191
  constructor(opts) {
@@ -196,7 +196,7 @@ let OcuLimitExceededException$1 = class OcuLimitExceededException extends OpenSe
196
196
  });
197
197
  Object.setPrototypeOf(this, OcuLimitExceededException.prototype);
198
198
  }
199
- };
199
+ }
200
200
 
201
201
  const _APD = "AccessPolicyDetail";
202
202
  const _APS = "AccessPolicyStats";
@@ -492,7 +492,7 @@ const _vES = "vpcEndpointSummaries";
492
492
  const _vI = "vpcId";
493
493
  const _vO = "vectorOptions";
494
494
  const n0 = "com.amazonaws.opensearchserverless";
495
- var AccessPolicyDetail = [
495
+ var AccessPolicyDetail$ = [
496
496
  3,
497
497
  n0,
498
498
  _APD,
@@ -500,8 +500,8 @@ var AccessPolicyDetail = [
500
500
  [_t, _n, _pV, _d, _p, _cD, _lMD],
501
501
  [0, 0, 0, 0, 15, 1, 1],
502
502
  ];
503
- var AccessPolicyStats = [3, n0, _APS, 0, [_DPC], [1]];
504
- var AccessPolicySummary = [
503
+ var AccessPolicyStats$ = [3, n0, _APS, 0, [_DPC], [1]];
504
+ var AccessPolicySummary$ = [
505
505
  3,
506
506
  n0,
507
507
  _APSc,
@@ -509,9 +509,9 @@ var AccessPolicySummary = [
509
509
  [_t, _n, _pV, _d, _cD, _lMD],
510
510
  [0, 0, 0, 0, 1, 1],
511
511
  ];
512
- var AccountSettingsDetail = [3, n0, _ASD, 0, [_cL], [() => CapacityLimits]];
513
- var BatchGetCollectionRequest = [3, n0, _BGCR, 0, [_i, _na], [64 | 0, 64 | 0]];
514
- var BatchGetCollectionResponse = [
512
+ var AccountSettingsDetail$ = [3, n0, _ASD, 0, [_cL], [() => CapacityLimits$]];
513
+ var BatchGetCollectionRequest$ = [3, n0, _BGCR, 0, [_i, _na], [64 | 0, 64 | 0]];
514
+ var BatchGetCollectionResponse$ = [
515
515
  3,
516
516
  n0,
517
517
  _BGCRa,
@@ -519,7 +519,7 @@ var BatchGetCollectionResponse = [
519
519
  [_cDo, _cED],
520
520
  [() => CollectionDetails, () => CollectionErrorDetails],
521
521
  ];
522
- var BatchGetEffectiveLifecyclePolicyRequest = [
522
+ var BatchGetEffectiveLifecyclePolicyRequest$ = [
523
523
  3,
524
524
  n0,
525
525
  _BGELPR,
@@ -527,7 +527,7 @@ var BatchGetEffectiveLifecyclePolicyRequest = [
527
527
  [_rI],
528
528
  [() => LifecyclePolicyResourceIdentifiers],
529
529
  ];
530
- var BatchGetEffectiveLifecyclePolicyResponse = [
530
+ var BatchGetEffectiveLifecyclePolicyResponse$ = [
531
531
  3,
532
532
  n0,
533
533
  _BGELPRa,
@@ -535,7 +535,7 @@ var BatchGetEffectiveLifecyclePolicyResponse = [
535
535
  [_eLPD, _eLPED],
536
536
  [() => EffectiveLifecyclePolicyDetails, () => EffectiveLifecyclePolicyErrorDetails],
537
537
  ];
538
- var BatchGetLifecyclePolicyRequest = [
538
+ var BatchGetLifecyclePolicyRequest$ = [
539
539
  3,
540
540
  n0,
541
541
  _BGLPR,
@@ -543,7 +543,7 @@ var BatchGetLifecyclePolicyRequest = [
543
543
  [_id],
544
544
  [() => LifecyclePolicyIdentifiers],
545
545
  ];
546
- var BatchGetLifecyclePolicyResponse = [
546
+ var BatchGetLifecyclePolicyResponse$ = [
547
547
  3,
548
548
  n0,
549
549
  _BGLPRa,
@@ -551,8 +551,8 @@ var BatchGetLifecyclePolicyResponse = [
551
551
  [_lPD, _lPED],
552
552
  [() => LifecyclePolicyDetails, () => LifecyclePolicyErrorDetails],
553
553
  ];
554
- var BatchGetVpcEndpointRequest = [3, n0, _BGVER, 0, [_i], [64 | 0]];
555
- var BatchGetVpcEndpointResponse = [
554
+ var BatchGetVpcEndpointRequest$ = [3, n0, _BGVER, 0, [_i], [64 | 0]];
555
+ var BatchGetVpcEndpointResponse$ = [
556
556
  3,
557
557
  n0,
558
558
  _BGVERa,
@@ -560,21 +560,21 @@ var BatchGetVpcEndpointResponse = [
560
560
  [_vED, _vEED],
561
561
  [() => VpcEndpointDetails, () => VpcEndpointErrorDetails],
562
562
  ];
563
- var CapacityLimits = [3, n0, _CL, 0, [_mICIOCU, _mSCIOCU], [1, 1]];
564
- var CollectionDetail = [
563
+ var CapacityLimits$ = [3, n0, _CL, 0, [_mICIOCU, _mSCIOCU], [1, 1]];
564
+ var CollectionDetail$ = [
565
565
  3,
566
566
  n0,
567
567
  _CD,
568
568
  0,
569
569
  [_id_, _n, _s, _t, _d, _a, _kKA, _sR, _vO, _cD, _lMD, _cE, _dE, _fE, _fC, _fM],
570
- [0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions, 1, 1, 0, 0, () => FipsEndpoints, 0, 0],
571
- ];
572
- var CollectionErrorDetail = [3, n0, _CED, 0, [_id_, _n, _eM, _eC], [0, 0, 0, 0]];
573
- var CollectionFilters = [3, n0, _CF, 0, [_n, _s], [0, 0]];
574
- var CollectionSummary = [3, n0, _CS, 0, [_id_, _n, _s, _a], [0, 0, 0, 0]];
575
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
576
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
577
- var CreateAccessPolicyRequest = [
570
+ [0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions$, 1, 1, 0, 0, () => FipsEndpoints$, 0, 0],
571
+ ];
572
+ var CollectionErrorDetail$ = [3, n0, _CED, 0, [_id_, _n, _eM, _eC], [0, 0, 0, 0]];
573
+ var CollectionFilters$ = [3, n0, _CF, 0, [_n, _s], [0, 0]];
574
+ var CollectionSummary$ = [3, n0, _CS, 0, [_id_, _n, _s, _a], [0, 0, 0, 0]];
575
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
576
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
577
+ var CreateAccessPolicyRequest$ = [
578
578
  3,
579
579
  n0,
580
580
  _CAPR,
@@ -582,25 +582,32 @@ var CreateAccessPolicyRequest = [
582
582
  [_t, _n, _d, _p, _cT],
583
583
  [0, 0, 0, 0, [0, 4]],
584
584
  ];
585
- var CreateAccessPolicyResponse = [3, n0, _CAPRr, 0, [_aPD], [() => AccessPolicyDetail]];
586
- var CreateCollectionDetail = [
585
+ var CreateAccessPolicyResponse$ = [3, n0, _CAPRr, 0, [_aPD], [() => AccessPolicyDetail$]];
586
+ var CreateCollectionDetail$ = [
587
587
  3,
588
588
  n0,
589
589
  _CCD,
590
590
  0,
591
591
  [_id_, _n, _s, _t, _d, _a, _kKA, _sR, _vO, _cD, _lMD],
592
- [0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions, 1, 1],
592
+ [0, 0, 0, 0, 0, 0, 0, 0, () => VectorOptions$, 1, 1],
593
593
  ];
594
- var CreateCollectionRequest = [
594
+ var CreateCollectionRequest$ = [
595
595
  3,
596
596
  n0,
597
597
  _CCR,
598
598
  0,
599
599
  [_n, _t, _d, _ta, _sR, _vO, _cT],
600
- [0, 0, 0, () => Tags, 0, () => VectorOptions, [0, 4]],
600
+ [0, 0, 0, () => Tags, 0, () => VectorOptions$, [0, 4]],
601
+ ];
602
+ var CreateCollectionResponse$ = [
603
+ 3,
604
+ n0,
605
+ _CCRr,
606
+ 0,
607
+ [_cCD],
608
+ [() => CreateCollectionDetail$],
601
609
  ];
602
- var CreateCollectionResponse = [3, n0, _CCRr, 0, [_cCD], [() => CreateCollectionDetail]];
603
- var CreateIamIdentityCenterConfigOptions = [
610
+ var CreateIamIdentityCenterConfigOptions$ = [
604
611
  3,
605
612
  n0,
606
613
  _CIICCO,
@@ -608,9 +615,9 @@ var CreateIamIdentityCenterConfigOptions = [
608
615
  [_iA, _uA, _gA],
609
616
  [0, 0, 0],
610
617
  ];
611
- var CreateIndexRequest = [3, n0, _CIR, 0, [_id_, _iN, _iS], [0, 0, 15]];
612
- var CreateIndexResponse = [3, n0, _CIRr, 0, [], []];
613
- var CreateLifecyclePolicyRequest = [
618
+ var CreateIndexRequest$ = [3, n0, _CIR, 0, [_id_, _iN, _iS], [0, 0, 15]];
619
+ var CreateIndexResponse$ = [3, n0, _CIRr, 0, [], []];
620
+ var CreateLifecyclePolicyRequest$ = [
614
621
  3,
615
622
  n0,
616
623
  _CLPR,
@@ -618,15 +625,15 @@ var CreateLifecyclePolicyRequest = [
618
625
  [_t, _n, _d, _p, _cT],
619
626
  [0, 0, 0, 0, [0, 4]],
620
627
  ];
621
- var CreateLifecyclePolicyResponse = [
628
+ var CreateLifecyclePolicyResponse$ = [
622
629
  3,
623
630
  n0,
624
631
  _CLPRr,
625
632
  0,
626
633
  [_lPDi],
627
- [() => LifecyclePolicyDetail],
634
+ [() => LifecyclePolicyDetail$],
628
635
  ];
629
- var CreateSecurityConfigRequest = [
636
+ var CreateSecurityConfigRequest$ = [
630
637
  3,
631
638
  n0,
632
639
  _CSCR,
@@ -636,21 +643,21 @@ var CreateSecurityConfigRequest = [
636
643
  0,
637
644
  0,
638
645
  0,
639
- () => SamlConfigOptions,
640
- () => CreateIamIdentityCenterConfigOptions,
641
- () => IamFederationConfigOptions,
646
+ () => SamlConfigOptions$,
647
+ () => CreateIamIdentityCenterConfigOptions$,
648
+ () => IamFederationConfigOptions$,
642
649
  [0, 4],
643
650
  ],
644
651
  ];
645
- var CreateSecurityConfigResponse = [
652
+ var CreateSecurityConfigResponse$ = [
646
653
  3,
647
654
  n0,
648
655
  _CSCRr,
649
656
  0,
650
657
  [_sCD],
651
- [() => SecurityConfigDetail],
658
+ [() => SecurityConfigDetail$],
652
659
  ];
653
- var CreateSecurityPolicyRequest = [
660
+ var CreateSecurityPolicyRequest$ = [
654
661
  3,
655
662
  n0,
656
663
  _CSPR,
@@ -658,16 +665,16 @@ var CreateSecurityPolicyRequest = [
658
665
  [_t, _n, _d, _p, _cT],
659
666
  [0, 0, 0, 0, [0, 4]],
660
667
  ];
661
- var CreateSecurityPolicyResponse = [
668
+ var CreateSecurityPolicyResponse$ = [
662
669
  3,
663
670
  n0,
664
671
  _CSPRr,
665
672
  0,
666
673
  [_sPD],
667
- [() => SecurityPolicyDetail],
674
+ [() => SecurityPolicyDetail$],
668
675
  ];
669
- var CreateVpcEndpointDetail = [3, n0, _CVED, 0, [_id_, _n, _s], [0, 0, 0]];
670
- var CreateVpcEndpointRequest = [
676
+ var CreateVpcEndpointDetail$ = [3, n0, _CVED, 0, [_id_, _n, _s], [0, 0, 0]];
677
+ var CreateVpcEndpointRequest$ = [
671
678
  3,
672
679
  n0,
673
680
  _CVER,
@@ -675,38 +682,45 @@ var CreateVpcEndpointRequest = [
675
682
  [_n, _vI, _sI, _sGI, _cT],
676
683
  [0, 0, 64 | 0, 64 | 0, [0, 4]],
677
684
  ];
678
- var CreateVpcEndpointResponse = [
685
+ var CreateVpcEndpointResponse$ = [
679
686
  3,
680
687
  n0,
681
688
  _CVERr,
682
689
  0,
683
690
  [_cVED],
684
- [() => CreateVpcEndpointDetail],
685
- ];
686
- var DeleteAccessPolicyRequest = [3, n0, _DAPR, 0, [_t, _n, _cT], [0, 0, [0, 4]]];
687
- var DeleteAccessPolicyResponse = [3, n0, _DAPRe, 0, [], []];
688
- var DeleteCollectionDetail = [3, n0, _DCD, 0, [_id_, _n, _s], [0, 0, 0]];
689
- var DeleteCollectionRequest = [3, n0, _DCR, 0, [_id_, _cT], [0, [0, 4]]];
690
- var DeleteCollectionResponse = [3, n0, _DCRe, 0, [_dCD], [() => DeleteCollectionDetail]];
691
- var DeleteIndexRequest = [3, n0, _DIR, 0, [_id_, _iN], [0, 0]];
692
- var DeleteIndexResponse = [3, n0, _DIRe, 0, [], []];
693
- var DeleteLifecyclePolicyRequest = [3, n0, _DLPR, 0, [_t, _n, _cT], [0, 0, [0, 4]]];
694
- var DeleteLifecyclePolicyResponse = [3, n0, _DLPRe, 0, [], []];
695
- var DeleteSecurityConfigRequest = [3, n0, _DSCR, 0, [_id_, _cT], [0, [0, 4]]];
696
- var DeleteSecurityConfigResponse = [3, n0, _DSCRe, 0, [], []];
697
- var DeleteSecurityPolicyRequest = [3, n0, _DSPR, 0, [_t, _n, _cT], [0, 0, [0, 4]]];
698
- var DeleteSecurityPolicyResponse = [3, n0, _DSPRe, 0, [], []];
699
- var DeleteVpcEndpointDetail = [3, n0, _DVED, 0, [_id_, _n, _s], [0, 0, 0]];
700
- var DeleteVpcEndpointRequest = [3, n0, _DVER, 0, [_id_, _cT], [0, [0, 4]]];
701
- var DeleteVpcEndpointResponse = [
691
+ [() => CreateVpcEndpointDetail$],
692
+ ];
693
+ var DeleteAccessPolicyRequest$ = [3, n0, _DAPR, 0, [_t, _n, _cT], [0, 0, [0, 4]]];
694
+ var DeleteAccessPolicyResponse$ = [3, n0, _DAPRe, 0, [], []];
695
+ var DeleteCollectionDetail$ = [3, n0, _DCD, 0, [_id_, _n, _s], [0, 0, 0]];
696
+ var DeleteCollectionRequest$ = [3, n0, _DCR, 0, [_id_, _cT], [0, [0, 4]]];
697
+ var DeleteCollectionResponse$ = [
698
+ 3,
699
+ n0,
700
+ _DCRe,
701
+ 0,
702
+ [_dCD],
703
+ [() => DeleteCollectionDetail$],
704
+ ];
705
+ var DeleteIndexRequest$ = [3, n0, _DIR, 0, [_id_, _iN], [0, 0]];
706
+ var DeleteIndexResponse$ = [3, n0, _DIRe, 0, [], []];
707
+ var DeleteLifecyclePolicyRequest$ = [3, n0, _DLPR, 0, [_t, _n, _cT], [0, 0, [0, 4]]];
708
+ var DeleteLifecyclePolicyResponse$ = [3, n0, _DLPRe, 0, [], []];
709
+ var DeleteSecurityConfigRequest$ = [3, n0, _DSCR, 0, [_id_, _cT], [0, [0, 4]]];
710
+ var DeleteSecurityConfigResponse$ = [3, n0, _DSCRe, 0, [], []];
711
+ var DeleteSecurityPolicyRequest$ = [3, n0, _DSPR, 0, [_t, _n, _cT], [0, 0, [0, 4]]];
712
+ var DeleteSecurityPolicyResponse$ = [3, n0, _DSPRe, 0, [], []];
713
+ var DeleteVpcEndpointDetail$ = [3, n0, _DVED, 0, [_id_, _n, _s], [0, 0, 0]];
714
+ var DeleteVpcEndpointRequest$ = [3, n0, _DVER, 0, [_id_, _cT], [0, [0, 4]]];
715
+ var DeleteVpcEndpointResponse$ = [
702
716
  3,
703
717
  n0,
704
718
  _DVERe,
705
719
  0,
706
720
  [_dVED],
707
- [() => DeleteVpcEndpointDetail],
721
+ [() => DeleteVpcEndpointDetail$],
708
722
  ];
709
- var EffectiveLifecyclePolicyDetail = [
723
+ var EffectiveLifecyclePolicyDetail$ = [
710
724
  3,
711
725
  n0,
712
726
  _ELPD,
@@ -714,7 +728,7 @@ var EffectiveLifecyclePolicyDetail = [
714
728
  [_t, _r, _pN, _rT, _rP, _nMRP],
715
729
  [0, 0, 0, 0, 0, 2],
716
730
  ];
717
- var EffectiveLifecyclePolicyErrorDetail = [
731
+ var EffectiveLifecyclePolicyErrorDetail$ = [
718
732
  3,
719
733
  n0,
720
734
  _ELPED,
@@ -722,35 +736,49 @@ var EffectiveLifecyclePolicyErrorDetail = [
722
736
  [_t, _r, _eM, _eC],
723
737
  [0, 0, 0, 0],
724
738
  ];
725
- var FipsEndpoints = [3, n0, _FE, 0, [_cE, _dE], [0, 0]];
726
- var GetAccessPolicyRequest = [3, n0, _GAPR, 0, [_t, _n], [0, 0]];
727
- var GetAccessPolicyResponse = [3, n0, _GAPRe, 0, [_aPD], [() => AccessPolicyDetail]];
728
- var GetAccountSettingsRequest = [3, n0, _GASR, 0, [], []];
729
- var GetAccountSettingsResponse = [
739
+ var FipsEndpoints$ = [3, n0, _FE, 0, [_cE, _dE], [0, 0]];
740
+ var GetAccessPolicyRequest$ = [3, n0, _GAPR, 0, [_t, _n], [0, 0]];
741
+ var GetAccessPolicyResponse$ = [3, n0, _GAPRe, 0, [_aPD], [() => AccessPolicyDetail$]];
742
+ var GetAccountSettingsRequest$ = [3, n0, _GASR, 0, [], []];
743
+ var GetAccountSettingsResponse$ = [
730
744
  3,
731
745
  n0,
732
746
  _GASRe,
733
747
  0,
734
748
  [_aSD],
735
- [() => AccountSettingsDetail],
749
+ [() => AccountSettingsDetail$],
736
750
  ];
737
- var GetIndexRequest = [3, n0, _GIR, 0, [_id_, _iN], [0, 0]];
738
- var GetIndexResponse = [3, n0, _GIRe, 0, [_iS], [15]];
739
- var GetPoliciesStatsRequest = [3, n0, _GPSR, 0, [], []];
740
- var GetPoliciesStatsResponse = [
751
+ var GetIndexRequest$ = [3, n0, _GIR, 0, [_id_, _iN], [0, 0]];
752
+ var GetIndexResponse$ = [3, n0, _GIRe, 0, [_iS], [15]];
753
+ var GetPoliciesStatsRequest$ = [3, n0, _GPSR, 0, [], []];
754
+ var GetPoliciesStatsResponse$ = [
741
755
  3,
742
756
  n0,
743
757
  _GPSRe,
744
758
  0,
745
759
  [_APS, _SPS, _SCS, _LPS, _TPC],
746
- [() => AccessPolicyStats, () => SecurityPolicyStats, () => SecurityConfigStats, () => LifecyclePolicyStats, 1],
747
- ];
748
- var GetSecurityConfigRequest = [3, n0, _GSCR, 0, [_id_], [0]];
749
- var GetSecurityConfigResponse = [3, n0, _GSCRe, 0, [_sCD], [() => SecurityConfigDetail]];
750
- var GetSecurityPolicyRequest = [3, n0, _GSPR, 0, [_t, _n], [0, 0]];
751
- var GetSecurityPolicyResponse = [3, n0, _GSPRe, 0, [_sPD], [() => SecurityPolicyDetail]];
752
- var IamFederationConfigOptions = [3, n0, _IFCO, 0, [_gA, _uA], [0, 0]];
753
- var IamIdentityCenterConfigOptions = [
760
+ [() => AccessPolicyStats$, () => SecurityPolicyStats$, () => SecurityConfigStats$, () => LifecyclePolicyStats$, 1],
761
+ ];
762
+ var GetSecurityConfigRequest$ = [3, n0, _GSCR, 0, [_id_], [0]];
763
+ var GetSecurityConfigResponse$ = [
764
+ 3,
765
+ n0,
766
+ _GSCRe,
767
+ 0,
768
+ [_sCD],
769
+ [() => SecurityConfigDetail$],
770
+ ];
771
+ var GetSecurityPolicyRequest$ = [3, n0, _GSPR, 0, [_t, _n], [0, 0]];
772
+ var GetSecurityPolicyResponse$ = [
773
+ 3,
774
+ n0,
775
+ _GSPRe,
776
+ 0,
777
+ [_sPD],
778
+ [() => SecurityPolicyDetail$],
779
+ ];
780
+ var IamFederationConfigOptions$ = [3, n0, _IFCO, 0, [_gA, _uA], [0, 0]];
781
+ var IamIdentityCenterConfigOptions$ = [
754
782
  3,
755
783
  n0,
756
784
  _IICCO,
@@ -758,9 +786,9 @@ var IamIdentityCenterConfigOptions = [
758
786
  [_iA, _aA, _aN, _aD, _uA, _gA],
759
787
  [0, 0, 0, 0, 0, 0],
760
788
  ];
761
- var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
762
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
763
- var LifecyclePolicyDetail = [
789
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
790
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
791
+ var LifecyclePolicyDetail$ = [
764
792
  3,
765
793
  n0,
766
794
  _LPD,
@@ -768,11 +796,11 @@ var LifecyclePolicyDetail = [
768
796
  [_t, _n, _pV, _d, _p, _cD, _lMD],
769
797
  [0, 0, 0, 0, 15, 1, 1],
770
798
  ];
771
- var LifecyclePolicyErrorDetail = [3, n0, _LPED, 0, [_t, _n, _eM, _eC], [0, 0, 0, 0]];
772
- var LifecyclePolicyIdentifier = [3, n0, _LPI, 0, [_t, _n], [0, 0]];
773
- var LifecyclePolicyResourceIdentifier = [3, n0, _LPRI, 0, [_t, _r], [0, 0]];
774
- var LifecyclePolicyStats = [3, n0, _LPS, 0, [_RPC], [1]];
775
- var LifecyclePolicySummary = [
799
+ var LifecyclePolicyErrorDetail$ = [3, n0, _LPED, 0, [_t, _n, _eM, _eC], [0, 0, 0, 0]];
800
+ var LifecyclePolicyIdentifier$ = [3, n0, _LPI, 0, [_t, _n], [0, 0]];
801
+ var LifecyclePolicyResourceIdentifier$ = [3, n0, _LPRI, 0, [_t, _r], [0, 0]];
802
+ var LifecyclePolicyStats$ = [3, n0, _LPS, 0, [_RPC], [1]];
803
+ var LifecyclePolicySummary$ = [
776
804
  3,
777
805
  n0,
778
806
  _LPSi,
@@ -780,8 +808,8 @@ var LifecyclePolicySummary = [
780
808
  [_t, _n, _pV, _d, _cD, _lMD],
781
809
  [0, 0, 0, 0, 1, 1],
782
810
  ];
783
- var ListAccessPoliciesRequest = [3, n0, _LAPR, 0, [_t, _r, _nT, _mR], [0, 64 | 0, 0, 1]];
784
- var ListAccessPoliciesResponse = [
811
+ var ListAccessPoliciesRequest$ = [3, n0, _LAPR, 0, [_t, _r, _nT, _mR], [0, 64 | 0, 0, 1]];
812
+ var ListAccessPoliciesResponse$ = [
785
813
  3,
786
814
  n0,
787
815
  _LAPRi,
@@ -789,15 +817,15 @@ var ListAccessPoliciesResponse = [
789
817
  [_aPS, _nT],
790
818
  [() => AccessPolicySummaries, 0],
791
819
  ];
792
- var ListCollectionsRequest = [
820
+ var ListCollectionsRequest$ = [
793
821
  3,
794
822
  n0,
795
823
  _LCR,
796
824
  0,
797
825
  [_cF, _nT, _mR],
798
- [() => CollectionFilters, 0, 1],
826
+ [() => CollectionFilters$, 0, 1],
799
827
  ];
800
- var ListCollectionsResponse = [
828
+ var ListCollectionsResponse$ = [
801
829
  3,
802
830
  n0,
803
831
  _LCRi,
@@ -805,7 +833,7 @@ var ListCollectionsResponse = [
805
833
  [_cS, _nT],
806
834
  [() => CollectionSummaries, 0],
807
835
  ];
808
- var ListLifecyclePoliciesRequest = [
836
+ var ListLifecyclePoliciesRequest$ = [
809
837
  3,
810
838
  n0,
811
839
  _LLPR,
@@ -813,7 +841,7 @@ var ListLifecyclePoliciesRequest = [
813
841
  [_t, _re, _nT, _mR],
814
842
  [0, 64 | 0, 0, 1],
815
843
  ];
816
- var ListLifecyclePoliciesResponse = [
844
+ var ListLifecyclePoliciesResponse$ = [
817
845
  3,
818
846
  n0,
819
847
  _LLPRi,
@@ -821,8 +849,8 @@ var ListLifecyclePoliciesResponse = [
821
849
  [_lPS, _nT],
822
850
  [() => LifecyclePolicySummaries, 0],
823
851
  ];
824
- var ListSecurityConfigsRequest = [3, n0, _LSCR, 0, [_t, _nT, _mR], [0, 0, 1]];
825
- var ListSecurityConfigsResponse = [
852
+ var ListSecurityConfigsRequest$ = [3, n0, _LSCR, 0, [_t, _nT, _mR], [0, 0, 1]];
853
+ var ListSecurityConfigsResponse$ = [
826
854
  3,
827
855
  n0,
828
856
  _LSCRi,
@@ -830,7 +858,7 @@ var ListSecurityConfigsResponse = [
830
858
  [_sCS, _nT],
831
859
  [() => SecurityConfigSummaries, 0],
832
860
  ];
833
- var ListSecurityPoliciesRequest = [
861
+ var ListSecurityPoliciesRequest$ = [
834
862
  3,
835
863
  n0,
836
864
  _LSPR,
@@ -838,7 +866,7 @@ var ListSecurityPoliciesRequest = [
838
866
  [_t, _r, _nT, _mR],
839
867
  [0, 64 | 0, 0, 1],
840
868
  ];
841
- var ListSecurityPoliciesResponse = [
869
+ var ListSecurityPoliciesResponse$ = [
842
870
  3,
843
871
  n0,
844
872
  _LSPRi,
@@ -846,17 +874,17 @@ var ListSecurityPoliciesResponse = [
846
874
  [_sPS, _nT],
847
875
  [() => SecurityPolicySummaries, 0],
848
876
  ];
849
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
850
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [() => Tags]];
851
- var ListVpcEndpointsRequest = [
877
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [0]];
878
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [() => Tags]];
879
+ var ListVpcEndpointsRequest$ = [
852
880
  3,
853
881
  n0,
854
882
  _LVER,
855
883
  0,
856
884
  [_vEF, _nT, _mR],
857
- [() => VpcEndpointFilters, 0, 1],
885
+ [() => VpcEndpointFilters$, 0, 1],
858
886
  ];
859
- var ListVpcEndpointsResponse = [
887
+ var ListVpcEndpointsResponse$ = [
860
888
  3,
861
889
  n0,
862
890
  _LVERi,
@@ -864,21 +892,31 @@ var ListVpcEndpointsResponse = [
864
892
  [_vES, _nT],
865
893
  [() => VpcEndpointSummaries, 0],
866
894
  ];
867
- var OcuLimitExceededException = [-3, n0, _OLEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
868
- schema.TypeRegistry.for(n0).registerError(OcuLimitExceededException, OcuLimitExceededException$1);
869
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
870
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
871
- var SamlConfigOptions = [3, n0, _SCO, 0, [_me, _uA, _gA, _oSSEI, _sT], [0, 0, 0, 0, 1]];
872
- var SecurityConfigDetail = [
895
+ var OcuLimitExceededException$ = [-3, n0, _OLEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
896
+ schema.TypeRegistry.for(n0).registerError(OcuLimitExceededException$, OcuLimitExceededException);
897
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
898
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
899
+ var SamlConfigOptions$ = [3, n0, _SCO, 0, [_me, _uA, _gA, _oSSEI, _sT], [0, 0, 0, 0, 1]];
900
+ var SecurityConfigDetail$ = [
873
901
  3,
874
902
  n0,
875
903
  _SCD,
876
904
  0,
877
905
  [_id_, _t, _cV, _d, _sO, _iICO, _iFO, _cD, _lMD],
878
- [0, 0, 0, 0, () => SamlConfigOptions, () => IamIdentityCenterConfigOptions, () => IamFederationConfigOptions, 1, 1],
906
+ [
907
+ 0,
908
+ 0,
909
+ 0,
910
+ 0,
911
+ () => SamlConfigOptions$,
912
+ () => IamIdentityCenterConfigOptions$,
913
+ () => IamFederationConfigOptions$,
914
+ 1,
915
+ 1,
916
+ ],
879
917
  ];
880
- var SecurityConfigStats = [3, n0, _SCS, 0, [_SCC], [1]];
881
- var SecurityConfigSummary = [
918
+ var SecurityConfigStats$ = [3, n0, _SCS, 0, [_SCC], [1]];
919
+ var SecurityConfigSummary$ = [
882
920
  3,
883
921
  n0,
884
922
  _SCSe,
@@ -886,7 +924,7 @@ var SecurityConfigSummary = [
886
924
  [_id_, _t, _cV, _d, _cD, _lMD],
887
925
  [0, 0, 0, 0, 1, 1],
888
926
  ];
889
- var SecurityPolicyDetail = [
927
+ var SecurityPolicyDetail$ = [
890
928
  3,
891
929
  n0,
892
930
  _SPD,
@@ -894,8 +932,8 @@ var SecurityPolicyDetail = [
894
932
  [_t, _n, _pV, _d, _p, _cD, _lMD],
895
933
  [0, 0, 0, 0, 15, 1, 1],
896
934
  ];
897
- var SecurityPolicyStats = [3, n0, _SPS, 0, [_EPC, _NPC], [1, 1]];
898
- var SecurityPolicySummary = [
935
+ var SecurityPolicyStats$ = [3, n0, _SPS, 0, [_EPC, _NPC], [1, 1]];
936
+ var SecurityPolicySummary$ = [
899
937
  3,
900
938
  n0,
901
939
  _SPSe,
@@ -903,7 +941,7 @@ var SecurityPolicySummary = [
903
941
  [_t, _n, _pV, _d, _cD, _lMD],
904
942
  [0, 0, 0, 0, 1, 1],
905
943
  ];
906
- var ServiceQuotaExceededException = [
944
+ var ServiceQuotaExceededException$ = [
907
945
  -3,
908
946
  n0,
909
947
  _SQEE,
@@ -911,13 +949,13 @@ var ServiceQuotaExceededException = [
911
949
  [_m, _rIe, _rT, _sC, _qC],
912
950
  [0, 0, 0, 0, 0],
913
951
  ];
914
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
915
- var Tag = [3, n0, _T, 0, [_k, _v], [0, 0]];
916
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [0, () => Tags]];
917
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
918
- var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
919
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
920
- var UpdateAccessPolicyRequest = [
952
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
953
+ var Tag$ = [3, n0, _T, 0, [_k, _v], [0, 0]];
954
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _ta], [0, () => Tags]];
955
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
956
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_rA, _tK], [0, 64 | 0]];
957
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
958
+ var UpdateAccessPolicyRequest$ = [
921
959
  3,
922
960
  n0,
923
961
  _UAPR,
@@ -925,17 +963,17 @@ var UpdateAccessPolicyRequest = [
925
963
  [_t, _n, _pV, _d, _p, _cT],
926
964
  [0, 0, 0, 0, 0, [0, 4]],
927
965
  ];
928
- var UpdateAccessPolicyResponse = [3, n0, _UAPRp, 0, [_aPD], [() => AccessPolicyDetail]];
929
- var UpdateAccountSettingsRequest = [3, n0, _UASR, 0, [_cL], [() => CapacityLimits]];
930
- var UpdateAccountSettingsResponse = [
966
+ var UpdateAccessPolicyResponse$ = [3, n0, _UAPRp, 0, [_aPD], [() => AccessPolicyDetail$]];
967
+ var UpdateAccountSettingsRequest$ = [3, n0, _UASR, 0, [_cL], [() => CapacityLimits$]];
968
+ var UpdateAccountSettingsResponse$ = [
931
969
  3,
932
970
  n0,
933
971
  _UASRp,
934
972
  0,
935
973
  [_aSD],
936
- [() => AccountSettingsDetail],
974
+ [() => AccountSettingsDetail$],
937
975
  ];
938
- var UpdateCollectionDetail = [
976
+ var UpdateCollectionDetail$ = [
939
977
  3,
940
978
  n0,
941
979
  _UCD,
@@ -943,12 +981,19 @@ var UpdateCollectionDetail = [
943
981
  [_id_, _n, _s, _t, _d, _a, _cD, _lMD],
944
982
  [0, 0, 0, 0, 0, 0, 1, 1],
945
983
  ];
946
- var UpdateCollectionRequest = [3, n0, _UCR, 0, [_id_, _d, _cT], [0, 0, [0, 4]]];
947
- var UpdateCollectionResponse = [3, n0, _UCRp, 0, [_uCD], [() => UpdateCollectionDetail]];
948
- var UpdateIamIdentityCenterConfigOptions = [3, n0, _UIICCO, 0, [_uA, _gA], [0, 0]];
949
- var UpdateIndexRequest = [3, n0, _UIR, 0, [_id_, _iN, _iS], [0, 0, 15]];
950
- var UpdateIndexResponse = [3, n0, _UIRp, 0, [], []];
951
- var UpdateLifecyclePolicyRequest = [
984
+ var UpdateCollectionRequest$ = [3, n0, _UCR, 0, [_id_, _d, _cT], [0, 0, [0, 4]]];
985
+ var UpdateCollectionResponse$ = [
986
+ 3,
987
+ n0,
988
+ _UCRp,
989
+ 0,
990
+ [_uCD],
991
+ [() => UpdateCollectionDetail$],
992
+ ];
993
+ var UpdateIamIdentityCenterConfigOptions$ = [3, n0, _UIICCO, 0, [_uA, _gA], [0, 0]];
994
+ var UpdateIndexRequest$ = [3, n0, _UIR, 0, [_id_, _iN, _iS], [0, 0, 15]];
995
+ var UpdateIndexResponse$ = [3, n0, _UIRp, 0, [], []];
996
+ var UpdateLifecyclePolicyRequest$ = [
952
997
  3,
953
998
  n0,
954
999
  _ULPR,
@@ -956,15 +1001,15 @@ var UpdateLifecyclePolicyRequest = [
956
1001
  [_t, _n, _pV, _d, _p, _cT],
957
1002
  [0, 0, 0, 0, 0, [0, 4]],
958
1003
  ];
959
- var UpdateLifecyclePolicyResponse = [
1004
+ var UpdateLifecyclePolicyResponse$ = [
960
1005
  3,
961
1006
  n0,
962
1007
  _ULPRp,
963
1008
  0,
964
1009
  [_lPDi],
965
- [() => LifecyclePolicyDetail],
1010
+ [() => LifecyclePolicyDetail$],
966
1011
  ];
967
- var UpdateSecurityConfigRequest = [
1012
+ var UpdateSecurityConfigRequest$ = [
968
1013
  3,
969
1014
  n0,
970
1015
  _USCR,
@@ -974,21 +1019,21 @@ var UpdateSecurityConfigRequest = [
974
1019
  0,
975
1020
  0,
976
1021
  0,
977
- () => SamlConfigOptions,
978
- () => UpdateIamIdentityCenterConfigOptions,
979
- () => IamFederationConfigOptions,
1022
+ () => SamlConfigOptions$,
1023
+ () => UpdateIamIdentityCenterConfigOptions$,
1024
+ () => IamFederationConfigOptions$,
980
1025
  [0, 4],
981
1026
  ],
982
1027
  ];
983
- var UpdateSecurityConfigResponse = [
1028
+ var UpdateSecurityConfigResponse$ = [
984
1029
  3,
985
1030
  n0,
986
1031
  _USCRp,
987
1032
  0,
988
1033
  [_sCD],
989
- [() => SecurityConfigDetail],
1034
+ [() => SecurityConfigDetail$],
990
1035
  ];
991
- var UpdateSecurityPolicyRequest = [
1036
+ var UpdateSecurityPolicyRequest$ = [
992
1037
  3,
993
1038
  n0,
994
1039
  _USPR,
@@ -996,15 +1041,15 @@ var UpdateSecurityPolicyRequest = [
996
1041
  [_t, _n, _pV, _d, _p, _cT],
997
1042
  [0, 0, 0, 0, 0, [0, 4]],
998
1043
  ];
999
- var UpdateSecurityPolicyResponse = [
1044
+ var UpdateSecurityPolicyResponse$ = [
1000
1045
  3,
1001
1046
  n0,
1002
1047
  _USPRp,
1003
1048
  0,
1004
1049
  [_sPD],
1005
- [() => SecurityPolicyDetail],
1050
+ [() => SecurityPolicyDetail$],
1006
1051
  ];
1007
- var UpdateVpcEndpointDetail = [
1052
+ var UpdateVpcEndpointDetail$ = [
1008
1053
  3,
1009
1054
  n0,
1010
1055
  _UVED,
@@ -1012,7 +1057,7 @@ var UpdateVpcEndpointDetail = [
1012
1057
  [_id_, _n, _s, _sI, _sGI, _lMD],
1013
1058
  [0, 0, 0, 64 | 0, 64 | 0, 1],
1014
1059
  ];
1015
- var UpdateVpcEndpointRequest = [
1060
+ var UpdateVpcEndpointRequest$ = [
1016
1061
  3,
1017
1062
  n0,
1018
1063
  _UVER,
@@ -1020,18 +1065,18 @@ var UpdateVpcEndpointRequest = [
1020
1065
  [_id_, _aSI, _rSI, _aSGI, _rSGI, _cT],
1021
1066
  [0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, [0, 4]],
1022
1067
  ];
1023
- var UpdateVpcEndpointResponse = [
1068
+ var UpdateVpcEndpointResponse$ = [
1024
1069
  3,
1025
1070
  n0,
1026
1071
  _UVERp,
1027
1072
  0,
1028
1073
  [_UVED],
1029
- [() => UpdateVpcEndpointDetail],
1074
+ [() => UpdateVpcEndpointDetail$],
1030
1075
  ];
1031
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1032
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1033
- var VectorOptions = [3, n0, _VO, 0, [_SVA], [0]];
1034
- var VpcEndpointDetail = [
1076
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1077
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1078
+ var VectorOptions$ = [3, n0, _VO, 0, [_SVA], [0]];
1079
+ var VpcEndpointDetail$ = [
1035
1080
  3,
1036
1081
  n0,
1037
1082
  _VED,
@@ -1039,10 +1084,10 @@ var VpcEndpointDetail = [
1039
1084
  [_id_, _n, _vI, _sI, _sGI, _s, _cD, _fC, _fM],
1040
1085
  [0, 0, 0, 64 | 0, 64 | 0, 0, 1, 0, 0],
1041
1086
  ];
1042
- var VpcEndpointErrorDetail = [3, n0, _VEED, 0, [_id_, _eM, _eC], [0, 0, 0]];
1043
- var VpcEndpointFilters = [3, n0, _VEF, 0, [_s], [0]];
1044
- var VpcEndpointSummary = [3, n0, _VES, 0, [_id_, _n, _s], [0, 0, 0]];
1045
- var OpenSearchServerlessServiceException = [
1087
+ var VpcEndpointErrorDetail$ = [3, n0, _VEED, 0, [_id_, _eM, _eC], [0, 0, 0]];
1088
+ var VpcEndpointFilters$ = [3, n0, _VEF, 0, [_s], [0]];
1089
+ var VpcEndpointSummary$ = [3, n0, _VES, 0, [_id_, _n, _s], [0, 0, 0]];
1090
+ var OpenSearchServerlessServiceException$ = [
1046
1091
  -3,
1047
1092
  _sm,
1048
1093
  "OpenSearchServerlessServiceException",
@@ -1050,328 +1095,322 @@ var OpenSearchServerlessServiceException = [
1050
1095
  [],
1051
1096
  [],
1052
1097
  ];
1053
- schema.TypeRegistry.for(_sm).registerError(OpenSearchServerlessServiceException, OpenSearchServerlessServiceException$1);
1054
- var AccessPolicySummaries = [1, n0, _APScc, 0, () => AccessPolicySummary];
1055
- var CollectionDetails = [1, n0, _CDo, 0, () => CollectionDetail];
1056
- var CollectionErrorDetails = [1, n0, _CEDo, 0, () => CollectionErrorDetail];
1057
- var CollectionSummaries = [1, n0, _CSo, 0, () => CollectionSummary];
1058
- var EffectiveLifecyclePolicyDetails = [1, n0, _ELPDf, 0, () => EffectiveLifecyclePolicyDetail];
1098
+ schema.TypeRegistry.for(_sm).registerError(OpenSearchServerlessServiceException$, OpenSearchServerlessServiceException);
1099
+ var AccessPolicySummaries = [1, n0, _APScc, 0, () => AccessPolicySummary$];
1100
+ var CollectionDetails = [1, n0, _CDo, 0, () => CollectionDetail$];
1101
+ var CollectionErrorDetails = [1, n0, _CEDo, 0, () => CollectionErrorDetail$];
1102
+ var CollectionSummaries = [1, n0, _CSo, 0, () => CollectionSummary$];
1103
+ var EffectiveLifecyclePolicyDetails = [1, n0, _ELPDf, 0, () => EffectiveLifecyclePolicyDetail$];
1059
1104
  var EffectiveLifecyclePolicyErrorDetails = [
1060
1105
  1,
1061
1106
  n0,
1062
1107
  _ELPEDf,
1063
1108
  0,
1064
- () => EffectiveLifecyclePolicyErrorDetail,
1065
- ];
1066
- var LifecyclePolicyDetails = [1, n0, _LPDi, 0, () => LifecyclePolicyDetail];
1067
- var LifecyclePolicyErrorDetails = [1, n0, _LPEDi, 0, () => LifecyclePolicyErrorDetail];
1068
- var LifecyclePolicyIdentifiers = [1, n0, _LPIi, 0, () => LifecyclePolicyIdentifier];
1069
- var LifecyclePolicyResourceIdentifiers = [
1070
- 1,
1071
- n0,
1072
- _LPRIi,
1073
- 0,
1074
- () => LifecyclePolicyResourceIdentifier,
1075
- ];
1076
- var LifecyclePolicySummaries = [1, n0, _LPSif, 0, () => LifecyclePolicySummary];
1077
- var SecurityConfigSummaries = [1, n0, _SCSec, 0, () => SecurityConfigSummary];
1078
- var SecurityPolicySummaries = [1, n0, _SPSec, 0, () => SecurityPolicySummary];
1079
- var Tags = [1, n0, _Ta, 0, () => Tag];
1080
- var VpcEndpointDetails = [1, n0, _VEDp, 0, () => VpcEndpointDetail];
1081
- var VpcEndpointErrorDetails = [1, n0, _VEEDp, 0, () => VpcEndpointErrorDetail];
1082
- var VpcEndpointSummaries = [1, n0, _VESp, 0, () => VpcEndpointSummary];
1083
- var BatchGetCollection = [
1109
+ () => EffectiveLifecyclePolicyErrorDetail$,
1110
+ ];
1111
+ var LifecyclePolicyDetails = [1, n0, _LPDi, 0, () => LifecyclePolicyDetail$];
1112
+ var LifecyclePolicyErrorDetails = [1, n0, _LPEDi, 0, () => LifecyclePolicyErrorDetail$];
1113
+ var LifecyclePolicyIdentifiers = [1, n0, _LPIi, 0, () => LifecyclePolicyIdentifier$];
1114
+ var LifecyclePolicyResourceIdentifiers = [1, n0, _LPRIi, 0, () => LifecyclePolicyResourceIdentifier$];
1115
+ var LifecyclePolicySummaries = [1, n0, _LPSif, 0, () => LifecyclePolicySummary$];
1116
+ var SecurityConfigSummaries = [1, n0, _SCSec, 0, () => SecurityConfigSummary$];
1117
+ var SecurityPolicySummaries = [1, n0, _SPSec, 0, () => SecurityPolicySummary$];
1118
+ var Tags = [1, n0, _Ta, 0, () => Tag$];
1119
+ var VpcEndpointDetails = [1, n0, _VEDp, 0, () => VpcEndpointDetail$];
1120
+ var VpcEndpointErrorDetails = [1, n0, _VEEDp, 0, () => VpcEndpointErrorDetail$];
1121
+ var VpcEndpointSummaries = [1, n0, _VESp, 0, () => VpcEndpointSummary$];
1122
+ var BatchGetCollection$ = [
1084
1123
  9,
1085
1124
  n0,
1086
1125
  _BGC,
1087
1126
  0,
1088
- () => BatchGetCollectionRequest,
1089
- () => BatchGetCollectionResponse,
1127
+ () => BatchGetCollectionRequest$,
1128
+ () => BatchGetCollectionResponse$,
1090
1129
  ];
1091
- var BatchGetEffectiveLifecyclePolicy = [
1130
+ var BatchGetEffectiveLifecyclePolicy$ = [
1092
1131
  9,
1093
1132
  n0,
1094
1133
  _BGELP,
1095
1134
  0,
1096
- () => BatchGetEffectiveLifecyclePolicyRequest,
1097
- () => BatchGetEffectiveLifecyclePolicyResponse,
1135
+ () => BatchGetEffectiveLifecyclePolicyRequest$,
1136
+ () => BatchGetEffectiveLifecyclePolicyResponse$,
1098
1137
  ];
1099
- var BatchGetLifecyclePolicy = [
1138
+ var BatchGetLifecyclePolicy$ = [
1100
1139
  9,
1101
1140
  n0,
1102
1141
  _BGLP,
1103
1142
  0,
1104
- () => BatchGetLifecyclePolicyRequest,
1105
- () => BatchGetLifecyclePolicyResponse,
1143
+ () => BatchGetLifecyclePolicyRequest$,
1144
+ () => BatchGetLifecyclePolicyResponse$,
1106
1145
  ];
1107
- var BatchGetVpcEndpoint = [
1146
+ var BatchGetVpcEndpoint$ = [
1108
1147
  9,
1109
1148
  n0,
1110
1149
  _BGVE,
1111
1150
  0,
1112
- () => BatchGetVpcEndpointRequest,
1113
- () => BatchGetVpcEndpointResponse,
1151
+ () => BatchGetVpcEndpointRequest$,
1152
+ () => BatchGetVpcEndpointResponse$,
1114
1153
  ];
1115
- var CreateAccessPolicy = [
1154
+ var CreateAccessPolicy$ = [
1116
1155
  9,
1117
1156
  n0,
1118
1157
  _CAP,
1119
1158
  2,
1120
- () => CreateAccessPolicyRequest,
1121
- () => CreateAccessPolicyResponse,
1159
+ () => CreateAccessPolicyRequest$,
1160
+ () => CreateAccessPolicyResponse$,
1122
1161
  ];
1123
- var CreateCollection = [
1162
+ var CreateCollection$ = [
1124
1163
  9,
1125
1164
  n0,
1126
1165
  _CC,
1127
1166
  2,
1128
- () => CreateCollectionRequest,
1129
- () => CreateCollectionResponse,
1167
+ () => CreateCollectionRequest$,
1168
+ () => CreateCollectionResponse$,
1130
1169
  ];
1131
- var CreateIndex = [9, n0, _CI, 2, () => CreateIndexRequest, () => CreateIndexResponse];
1132
- var CreateLifecyclePolicy = [
1170
+ var CreateIndex$ = [9, n0, _CI, 2, () => CreateIndexRequest$, () => CreateIndexResponse$];
1171
+ var CreateLifecyclePolicy$ = [
1133
1172
  9,
1134
1173
  n0,
1135
1174
  _CLP,
1136
1175
  2,
1137
- () => CreateLifecyclePolicyRequest,
1138
- () => CreateLifecyclePolicyResponse,
1176
+ () => CreateLifecyclePolicyRequest$,
1177
+ () => CreateLifecyclePolicyResponse$,
1139
1178
  ];
1140
- var CreateSecurityConfig = [
1179
+ var CreateSecurityConfig$ = [
1141
1180
  9,
1142
1181
  n0,
1143
1182
  _CSC,
1144
1183
  2,
1145
- () => CreateSecurityConfigRequest,
1146
- () => CreateSecurityConfigResponse,
1184
+ () => CreateSecurityConfigRequest$,
1185
+ () => CreateSecurityConfigResponse$,
1147
1186
  ];
1148
- var CreateSecurityPolicy = [
1187
+ var CreateSecurityPolicy$ = [
1149
1188
  9,
1150
1189
  n0,
1151
1190
  _CSP,
1152
1191
  2,
1153
- () => CreateSecurityPolicyRequest,
1154
- () => CreateSecurityPolicyResponse,
1192
+ () => CreateSecurityPolicyRequest$,
1193
+ () => CreateSecurityPolicyResponse$,
1155
1194
  ];
1156
- var CreateVpcEndpoint = [
1195
+ var CreateVpcEndpoint$ = [
1157
1196
  9,
1158
1197
  n0,
1159
1198
  _CVE,
1160
1199
  2,
1161
- () => CreateVpcEndpointRequest,
1162
- () => CreateVpcEndpointResponse,
1200
+ () => CreateVpcEndpointRequest$,
1201
+ () => CreateVpcEndpointResponse$,
1163
1202
  ];
1164
- var DeleteAccessPolicy = [
1203
+ var DeleteAccessPolicy$ = [
1165
1204
  9,
1166
1205
  n0,
1167
1206
  _DAP,
1168
1207
  2,
1169
- () => DeleteAccessPolicyRequest,
1170
- () => DeleteAccessPolicyResponse,
1208
+ () => DeleteAccessPolicyRequest$,
1209
+ () => DeleteAccessPolicyResponse$,
1171
1210
  ];
1172
- var DeleteCollection = [
1211
+ var DeleteCollection$ = [
1173
1212
  9,
1174
1213
  n0,
1175
1214
  _DC,
1176
1215
  2,
1177
- () => DeleteCollectionRequest,
1178
- () => DeleteCollectionResponse,
1216
+ () => DeleteCollectionRequest$,
1217
+ () => DeleteCollectionResponse$,
1179
1218
  ];
1180
- var DeleteIndex = [9, n0, _DI, 2, () => DeleteIndexRequest, () => DeleteIndexResponse];
1181
- var DeleteLifecyclePolicy = [
1219
+ var DeleteIndex$ = [9, n0, _DI, 2, () => DeleteIndexRequest$, () => DeleteIndexResponse$];
1220
+ var DeleteLifecyclePolicy$ = [
1182
1221
  9,
1183
1222
  n0,
1184
1223
  _DLP,
1185
1224
  2,
1186
- () => DeleteLifecyclePolicyRequest,
1187
- () => DeleteLifecyclePolicyResponse,
1225
+ () => DeleteLifecyclePolicyRequest$,
1226
+ () => DeleteLifecyclePolicyResponse$,
1188
1227
  ];
1189
- var DeleteSecurityConfig = [
1228
+ var DeleteSecurityConfig$ = [
1190
1229
  9,
1191
1230
  n0,
1192
1231
  _DSC,
1193
1232
  2,
1194
- () => DeleteSecurityConfigRequest,
1195
- () => DeleteSecurityConfigResponse,
1233
+ () => DeleteSecurityConfigRequest$,
1234
+ () => DeleteSecurityConfigResponse$,
1196
1235
  ];
1197
- var DeleteSecurityPolicy = [
1236
+ var DeleteSecurityPolicy$ = [
1198
1237
  9,
1199
1238
  n0,
1200
1239
  _DSP,
1201
1240
  2,
1202
- () => DeleteSecurityPolicyRequest,
1203
- () => DeleteSecurityPolicyResponse,
1241
+ () => DeleteSecurityPolicyRequest$,
1242
+ () => DeleteSecurityPolicyResponse$,
1204
1243
  ];
1205
- var DeleteVpcEndpoint = [
1244
+ var DeleteVpcEndpoint$ = [
1206
1245
  9,
1207
1246
  n0,
1208
1247
  _DVE,
1209
1248
  2,
1210
- () => DeleteVpcEndpointRequest,
1211
- () => DeleteVpcEndpointResponse,
1249
+ () => DeleteVpcEndpointRequest$,
1250
+ () => DeleteVpcEndpointResponse$,
1212
1251
  ];
1213
- var GetAccessPolicy = [
1252
+ var GetAccessPolicy$ = [
1214
1253
  9,
1215
1254
  n0,
1216
1255
  _GAP,
1217
1256
  0,
1218
- () => GetAccessPolicyRequest,
1219
- () => GetAccessPolicyResponse,
1257
+ () => GetAccessPolicyRequest$,
1258
+ () => GetAccessPolicyResponse$,
1220
1259
  ];
1221
- var GetAccountSettings = [
1260
+ var GetAccountSettings$ = [
1222
1261
  9,
1223
1262
  n0,
1224
1263
  _GAS,
1225
1264
  0,
1226
- () => GetAccountSettingsRequest,
1227
- () => GetAccountSettingsResponse,
1265
+ () => GetAccountSettingsRequest$,
1266
+ () => GetAccountSettingsResponse$,
1228
1267
  ];
1229
- var GetIndex = [9, n0, _GI, 0, () => GetIndexRequest, () => GetIndexResponse];
1230
- var GetPoliciesStats = [
1268
+ var GetIndex$ = [9, n0, _GI, 0, () => GetIndexRequest$, () => GetIndexResponse$];
1269
+ var GetPoliciesStats$ = [
1231
1270
  9,
1232
1271
  n0,
1233
1272
  _GPS,
1234
1273
  0,
1235
- () => GetPoliciesStatsRequest,
1236
- () => GetPoliciesStatsResponse,
1274
+ () => GetPoliciesStatsRequest$,
1275
+ () => GetPoliciesStatsResponse$,
1237
1276
  ];
1238
- var GetSecurityConfig = [
1277
+ var GetSecurityConfig$ = [
1239
1278
  9,
1240
1279
  n0,
1241
1280
  _GSC,
1242
1281
  0,
1243
- () => GetSecurityConfigRequest,
1244
- () => GetSecurityConfigResponse,
1282
+ () => GetSecurityConfigRequest$,
1283
+ () => GetSecurityConfigResponse$,
1245
1284
  ];
1246
- var GetSecurityPolicy = [
1285
+ var GetSecurityPolicy$ = [
1247
1286
  9,
1248
1287
  n0,
1249
1288
  _GSP,
1250
1289
  0,
1251
- () => GetSecurityPolicyRequest,
1252
- () => GetSecurityPolicyResponse,
1290
+ () => GetSecurityPolicyRequest$,
1291
+ () => GetSecurityPolicyResponse$,
1253
1292
  ];
1254
- var ListAccessPolicies = [
1293
+ var ListAccessPolicies$ = [
1255
1294
  9,
1256
1295
  n0,
1257
1296
  _LAP,
1258
1297
  0,
1259
- () => ListAccessPoliciesRequest,
1260
- () => ListAccessPoliciesResponse,
1298
+ () => ListAccessPoliciesRequest$,
1299
+ () => ListAccessPoliciesResponse$,
1261
1300
  ];
1262
- var ListCollections = [
1301
+ var ListCollections$ = [
1263
1302
  9,
1264
1303
  n0,
1265
1304
  _LC,
1266
1305
  0,
1267
- () => ListCollectionsRequest,
1268
- () => ListCollectionsResponse,
1306
+ () => ListCollectionsRequest$,
1307
+ () => ListCollectionsResponse$,
1269
1308
  ];
1270
- var ListLifecyclePolicies = [
1309
+ var ListLifecyclePolicies$ = [
1271
1310
  9,
1272
1311
  n0,
1273
1312
  _LLP,
1274
1313
  0,
1275
- () => ListLifecyclePoliciesRequest,
1276
- () => ListLifecyclePoliciesResponse,
1314
+ () => ListLifecyclePoliciesRequest$,
1315
+ () => ListLifecyclePoliciesResponse$,
1277
1316
  ];
1278
- var ListSecurityConfigs = [
1317
+ var ListSecurityConfigs$ = [
1279
1318
  9,
1280
1319
  n0,
1281
1320
  _LSC,
1282
1321
  0,
1283
- () => ListSecurityConfigsRequest,
1284
- () => ListSecurityConfigsResponse,
1322
+ () => ListSecurityConfigsRequest$,
1323
+ () => ListSecurityConfigsResponse$,
1285
1324
  ];
1286
- var ListSecurityPolicies = [
1325
+ var ListSecurityPolicies$ = [
1287
1326
  9,
1288
1327
  n0,
1289
1328
  _LSP,
1290
1329
  0,
1291
- () => ListSecurityPoliciesRequest,
1292
- () => ListSecurityPoliciesResponse,
1330
+ () => ListSecurityPoliciesRequest$,
1331
+ () => ListSecurityPoliciesResponse$,
1293
1332
  ];
1294
- var ListTagsForResource = [
1333
+ var ListTagsForResource$ = [
1295
1334
  9,
1296
1335
  n0,
1297
1336
  _LTFR,
1298
1337
  0,
1299
- () => ListTagsForResourceRequest,
1300
- () => ListTagsForResourceResponse,
1338
+ () => ListTagsForResourceRequest$,
1339
+ () => ListTagsForResourceResponse$,
1301
1340
  ];
1302
- var ListVpcEndpoints = [
1341
+ var ListVpcEndpoints$ = [
1303
1342
  9,
1304
1343
  n0,
1305
1344
  _LVE,
1306
1345
  0,
1307
- () => ListVpcEndpointsRequest,
1308
- () => ListVpcEndpointsResponse,
1346
+ () => ListVpcEndpointsRequest$,
1347
+ () => ListVpcEndpointsResponse$,
1309
1348
  ];
1310
- var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
1311
- var UntagResource = [
1349
+ var TagResource$ = [9, n0, _TR, 0, () => TagResourceRequest$, () => TagResourceResponse$];
1350
+ var UntagResource$ = [
1312
1351
  9,
1313
1352
  n0,
1314
1353
  _UR,
1315
1354
  0,
1316
- () => UntagResourceRequest,
1317
- () => UntagResourceResponse,
1355
+ () => UntagResourceRequest$,
1356
+ () => UntagResourceResponse$,
1318
1357
  ];
1319
- var UpdateAccessPolicy = [
1358
+ var UpdateAccessPolicy$ = [
1320
1359
  9,
1321
1360
  n0,
1322
1361
  _UAP,
1323
1362
  2,
1324
- () => UpdateAccessPolicyRequest,
1325
- () => UpdateAccessPolicyResponse,
1363
+ () => UpdateAccessPolicyRequest$,
1364
+ () => UpdateAccessPolicyResponse$,
1326
1365
  ];
1327
- var UpdateAccountSettings = [
1366
+ var UpdateAccountSettings$ = [
1328
1367
  9,
1329
1368
  n0,
1330
1369
  _UAS,
1331
1370
  0,
1332
- () => UpdateAccountSettingsRequest,
1333
- () => UpdateAccountSettingsResponse,
1371
+ () => UpdateAccountSettingsRequest$,
1372
+ () => UpdateAccountSettingsResponse$,
1334
1373
  ];
1335
- var UpdateCollection = [
1374
+ var UpdateCollection$ = [
1336
1375
  9,
1337
1376
  n0,
1338
1377
  _UC,
1339
1378
  2,
1340
- () => UpdateCollectionRequest,
1341
- () => UpdateCollectionResponse,
1379
+ () => UpdateCollectionRequest$,
1380
+ () => UpdateCollectionResponse$,
1342
1381
  ];
1343
- var UpdateIndex = [9, n0, _UI, 2, () => UpdateIndexRequest, () => UpdateIndexResponse];
1344
- var UpdateLifecyclePolicy = [
1382
+ var UpdateIndex$ = [9, n0, _UI, 2, () => UpdateIndexRequest$, () => UpdateIndexResponse$];
1383
+ var UpdateLifecyclePolicy$ = [
1345
1384
  9,
1346
1385
  n0,
1347
1386
  _ULP,
1348
1387
  2,
1349
- () => UpdateLifecyclePolicyRequest,
1350
- () => UpdateLifecyclePolicyResponse,
1388
+ () => UpdateLifecyclePolicyRequest$,
1389
+ () => UpdateLifecyclePolicyResponse$,
1351
1390
  ];
1352
- var UpdateSecurityConfig = [
1391
+ var UpdateSecurityConfig$ = [
1353
1392
  9,
1354
1393
  n0,
1355
1394
  _USC,
1356
1395
  2,
1357
- () => UpdateSecurityConfigRequest,
1358
- () => UpdateSecurityConfigResponse,
1396
+ () => UpdateSecurityConfigRequest$,
1397
+ () => UpdateSecurityConfigResponse$,
1359
1398
  ];
1360
- var UpdateSecurityPolicy = [
1399
+ var UpdateSecurityPolicy$ = [
1361
1400
  9,
1362
1401
  n0,
1363
1402
  _USP,
1364
1403
  2,
1365
- () => UpdateSecurityPolicyRequest,
1366
- () => UpdateSecurityPolicyResponse,
1404
+ () => UpdateSecurityPolicyRequest$,
1405
+ () => UpdateSecurityPolicyResponse$,
1367
1406
  ];
1368
- var UpdateVpcEndpoint = [
1407
+ var UpdateVpcEndpoint$ = [
1369
1408
  9,
1370
1409
  n0,
1371
1410
  _UVE,
1372
1411
  2,
1373
- () => UpdateVpcEndpointRequest,
1374
- () => UpdateVpcEndpointResponse,
1412
+ () => UpdateVpcEndpointRequest$,
1413
+ () => UpdateVpcEndpointResponse$,
1375
1414
  ];
1376
1415
 
1377
1416
  class BatchGetCollectionCommand extends smithyClient.Command
@@ -1382,7 +1421,7 @@ class BatchGetCollectionCommand extends smithyClient.Command
1382
1421
  })
1383
1422
  .s("OpenSearchServerless", "BatchGetCollection", {})
1384
1423
  .n("OpenSearchServerlessClient", "BatchGetCollectionCommand")
1385
- .sc(BatchGetCollection)
1424
+ .sc(BatchGetCollection$)
1386
1425
  .build() {
1387
1426
  }
1388
1427
 
@@ -1394,7 +1433,7 @@ class BatchGetEffectiveLifecyclePolicyCommand extends smithyClient.Command
1394
1433
  })
1395
1434
  .s("OpenSearchServerless", "BatchGetEffectiveLifecyclePolicy", {})
1396
1435
  .n("OpenSearchServerlessClient", "BatchGetEffectiveLifecyclePolicyCommand")
1397
- .sc(BatchGetEffectiveLifecyclePolicy)
1436
+ .sc(BatchGetEffectiveLifecyclePolicy$)
1398
1437
  .build() {
1399
1438
  }
1400
1439
 
@@ -1406,7 +1445,7 @@ class BatchGetLifecyclePolicyCommand extends smithyClient.Command
1406
1445
  })
1407
1446
  .s("OpenSearchServerless", "BatchGetLifecyclePolicy", {})
1408
1447
  .n("OpenSearchServerlessClient", "BatchGetLifecyclePolicyCommand")
1409
- .sc(BatchGetLifecyclePolicy)
1448
+ .sc(BatchGetLifecyclePolicy$)
1410
1449
  .build() {
1411
1450
  }
1412
1451
 
@@ -1418,7 +1457,7 @@ class BatchGetVpcEndpointCommand extends smithyClient.Command
1418
1457
  })
1419
1458
  .s("OpenSearchServerless", "BatchGetVpcEndpoint", {})
1420
1459
  .n("OpenSearchServerlessClient", "BatchGetVpcEndpointCommand")
1421
- .sc(BatchGetVpcEndpoint)
1460
+ .sc(BatchGetVpcEndpoint$)
1422
1461
  .build() {
1423
1462
  }
1424
1463
 
@@ -1430,7 +1469,7 @@ class CreateAccessPolicyCommand extends smithyClient.Command
1430
1469
  })
1431
1470
  .s("OpenSearchServerless", "CreateAccessPolicy", {})
1432
1471
  .n("OpenSearchServerlessClient", "CreateAccessPolicyCommand")
1433
- .sc(CreateAccessPolicy)
1472
+ .sc(CreateAccessPolicy$)
1434
1473
  .build() {
1435
1474
  }
1436
1475
 
@@ -1442,7 +1481,7 @@ class CreateCollectionCommand extends smithyClient.Command
1442
1481
  })
1443
1482
  .s("OpenSearchServerless", "CreateCollection", {})
1444
1483
  .n("OpenSearchServerlessClient", "CreateCollectionCommand")
1445
- .sc(CreateCollection)
1484
+ .sc(CreateCollection$)
1446
1485
  .build() {
1447
1486
  }
1448
1487
 
@@ -1454,7 +1493,7 @@ class CreateIndexCommand extends smithyClient.Command
1454
1493
  })
1455
1494
  .s("OpenSearchServerless", "CreateIndex", {})
1456
1495
  .n("OpenSearchServerlessClient", "CreateIndexCommand")
1457
- .sc(CreateIndex)
1496
+ .sc(CreateIndex$)
1458
1497
  .build() {
1459
1498
  }
1460
1499
 
@@ -1466,7 +1505,7 @@ class CreateLifecyclePolicyCommand extends smithyClient.Command
1466
1505
  })
1467
1506
  .s("OpenSearchServerless", "CreateLifecyclePolicy", {})
1468
1507
  .n("OpenSearchServerlessClient", "CreateLifecyclePolicyCommand")
1469
- .sc(CreateLifecyclePolicy)
1508
+ .sc(CreateLifecyclePolicy$)
1470
1509
  .build() {
1471
1510
  }
1472
1511
 
@@ -1478,7 +1517,7 @@ class CreateSecurityConfigCommand extends smithyClient.Command
1478
1517
  })
1479
1518
  .s("OpenSearchServerless", "CreateSecurityConfig", {})
1480
1519
  .n("OpenSearchServerlessClient", "CreateSecurityConfigCommand")
1481
- .sc(CreateSecurityConfig)
1520
+ .sc(CreateSecurityConfig$)
1482
1521
  .build() {
1483
1522
  }
1484
1523
 
@@ -1490,7 +1529,7 @@ class CreateSecurityPolicyCommand extends smithyClient.Command
1490
1529
  })
1491
1530
  .s("OpenSearchServerless", "CreateSecurityPolicy", {})
1492
1531
  .n("OpenSearchServerlessClient", "CreateSecurityPolicyCommand")
1493
- .sc(CreateSecurityPolicy)
1532
+ .sc(CreateSecurityPolicy$)
1494
1533
  .build() {
1495
1534
  }
1496
1535
 
@@ -1502,7 +1541,7 @@ class CreateVpcEndpointCommand extends smithyClient.Command
1502
1541
  })
1503
1542
  .s("OpenSearchServerless", "CreateVpcEndpoint", {})
1504
1543
  .n("OpenSearchServerlessClient", "CreateVpcEndpointCommand")
1505
- .sc(CreateVpcEndpoint)
1544
+ .sc(CreateVpcEndpoint$)
1506
1545
  .build() {
1507
1546
  }
1508
1547
 
@@ -1514,7 +1553,7 @@ class DeleteAccessPolicyCommand extends smithyClient.Command
1514
1553
  })
1515
1554
  .s("OpenSearchServerless", "DeleteAccessPolicy", {})
1516
1555
  .n("OpenSearchServerlessClient", "DeleteAccessPolicyCommand")
1517
- .sc(DeleteAccessPolicy)
1556
+ .sc(DeleteAccessPolicy$)
1518
1557
  .build() {
1519
1558
  }
1520
1559
 
@@ -1526,7 +1565,7 @@ class DeleteCollectionCommand extends smithyClient.Command
1526
1565
  })
1527
1566
  .s("OpenSearchServerless", "DeleteCollection", {})
1528
1567
  .n("OpenSearchServerlessClient", "DeleteCollectionCommand")
1529
- .sc(DeleteCollection)
1568
+ .sc(DeleteCollection$)
1530
1569
  .build() {
1531
1570
  }
1532
1571
 
@@ -1538,7 +1577,7 @@ class DeleteIndexCommand extends smithyClient.Command
1538
1577
  })
1539
1578
  .s("OpenSearchServerless", "DeleteIndex", {})
1540
1579
  .n("OpenSearchServerlessClient", "DeleteIndexCommand")
1541
- .sc(DeleteIndex)
1580
+ .sc(DeleteIndex$)
1542
1581
  .build() {
1543
1582
  }
1544
1583
 
@@ -1550,7 +1589,7 @@ class DeleteLifecyclePolicyCommand extends smithyClient.Command
1550
1589
  })
1551
1590
  .s("OpenSearchServerless", "DeleteLifecyclePolicy", {})
1552
1591
  .n("OpenSearchServerlessClient", "DeleteLifecyclePolicyCommand")
1553
- .sc(DeleteLifecyclePolicy)
1592
+ .sc(DeleteLifecyclePolicy$)
1554
1593
  .build() {
1555
1594
  }
1556
1595
 
@@ -1562,7 +1601,7 @@ class DeleteSecurityConfigCommand extends smithyClient.Command
1562
1601
  })
1563
1602
  .s("OpenSearchServerless", "DeleteSecurityConfig", {})
1564
1603
  .n("OpenSearchServerlessClient", "DeleteSecurityConfigCommand")
1565
- .sc(DeleteSecurityConfig)
1604
+ .sc(DeleteSecurityConfig$)
1566
1605
  .build() {
1567
1606
  }
1568
1607
 
@@ -1574,7 +1613,7 @@ class DeleteSecurityPolicyCommand extends smithyClient.Command
1574
1613
  })
1575
1614
  .s("OpenSearchServerless", "DeleteSecurityPolicy", {})
1576
1615
  .n("OpenSearchServerlessClient", "DeleteSecurityPolicyCommand")
1577
- .sc(DeleteSecurityPolicy)
1616
+ .sc(DeleteSecurityPolicy$)
1578
1617
  .build() {
1579
1618
  }
1580
1619
 
@@ -1586,7 +1625,7 @@ class DeleteVpcEndpointCommand extends smithyClient.Command
1586
1625
  })
1587
1626
  .s("OpenSearchServerless", "DeleteVpcEndpoint", {})
1588
1627
  .n("OpenSearchServerlessClient", "DeleteVpcEndpointCommand")
1589
- .sc(DeleteVpcEndpoint)
1628
+ .sc(DeleteVpcEndpoint$)
1590
1629
  .build() {
1591
1630
  }
1592
1631
 
@@ -1598,7 +1637,7 @@ class GetAccessPolicyCommand extends smithyClient.Command
1598
1637
  })
1599
1638
  .s("OpenSearchServerless", "GetAccessPolicy", {})
1600
1639
  .n("OpenSearchServerlessClient", "GetAccessPolicyCommand")
1601
- .sc(GetAccessPolicy)
1640
+ .sc(GetAccessPolicy$)
1602
1641
  .build() {
1603
1642
  }
1604
1643
 
@@ -1610,7 +1649,7 @@ class GetAccountSettingsCommand extends smithyClient.Command
1610
1649
  })
1611
1650
  .s("OpenSearchServerless", "GetAccountSettings", {})
1612
1651
  .n("OpenSearchServerlessClient", "GetAccountSettingsCommand")
1613
- .sc(GetAccountSettings)
1652
+ .sc(GetAccountSettings$)
1614
1653
  .build() {
1615
1654
  }
1616
1655
 
@@ -1622,7 +1661,7 @@ class GetIndexCommand extends smithyClient.Command
1622
1661
  })
1623
1662
  .s("OpenSearchServerless", "GetIndex", {})
1624
1663
  .n("OpenSearchServerlessClient", "GetIndexCommand")
1625
- .sc(GetIndex)
1664
+ .sc(GetIndex$)
1626
1665
  .build() {
1627
1666
  }
1628
1667
 
@@ -1634,7 +1673,7 @@ class GetPoliciesStatsCommand extends smithyClient.Command
1634
1673
  })
1635
1674
  .s("OpenSearchServerless", "GetPoliciesStats", {})
1636
1675
  .n("OpenSearchServerlessClient", "GetPoliciesStatsCommand")
1637
- .sc(GetPoliciesStats)
1676
+ .sc(GetPoliciesStats$)
1638
1677
  .build() {
1639
1678
  }
1640
1679
 
@@ -1646,7 +1685,7 @@ class GetSecurityConfigCommand extends smithyClient.Command
1646
1685
  })
1647
1686
  .s("OpenSearchServerless", "GetSecurityConfig", {})
1648
1687
  .n("OpenSearchServerlessClient", "GetSecurityConfigCommand")
1649
- .sc(GetSecurityConfig)
1688
+ .sc(GetSecurityConfig$)
1650
1689
  .build() {
1651
1690
  }
1652
1691
 
@@ -1658,7 +1697,7 @@ class GetSecurityPolicyCommand extends smithyClient.Command
1658
1697
  })
1659
1698
  .s("OpenSearchServerless", "GetSecurityPolicy", {})
1660
1699
  .n("OpenSearchServerlessClient", "GetSecurityPolicyCommand")
1661
- .sc(GetSecurityPolicy)
1700
+ .sc(GetSecurityPolicy$)
1662
1701
  .build() {
1663
1702
  }
1664
1703
 
@@ -1670,7 +1709,7 @@ class ListAccessPoliciesCommand extends smithyClient.Command
1670
1709
  })
1671
1710
  .s("OpenSearchServerless", "ListAccessPolicies", {})
1672
1711
  .n("OpenSearchServerlessClient", "ListAccessPoliciesCommand")
1673
- .sc(ListAccessPolicies)
1712
+ .sc(ListAccessPolicies$)
1674
1713
  .build() {
1675
1714
  }
1676
1715
 
@@ -1682,7 +1721,7 @@ class ListCollectionsCommand extends smithyClient.Command
1682
1721
  })
1683
1722
  .s("OpenSearchServerless", "ListCollections", {})
1684
1723
  .n("OpenSearchServerlessClient", "ListCollectionsCommand")
1685
- .sc(ListCollections)
1724
+ .sc(ListCollections$)
1686
1725
  .build() {
1687
1726
  }
1688
1727
 
@@ -1694,7 +1733,7 @@ class ListLifecyclePoliciesCommand extends smithyClient.Command
1694
1733
  })
1695
1734
  .s("OpenSearchServerless", "ListLifecyclePolicies", {})
1696
1735
  .n("OpenSearchServerlessClient", "ListLifecyclePoliciesCommand")
1697
- .sc(ListLifecyclePolicies)
1736
+ .sc(ListLifecyclePolicies$)
1698
1737
  .build() {
1699
1738
  }
1700
1739
 
@@ -1706,7 +1745,7 @@ class ListSecurityConfigsCommand extends smithyClient.Command
1706
1745
  })
1707
1746
  .s("OpenSearchServerless", "ListSecurityConfigs", {})
1708
1747
  .n("OpenSearchServerlessClient", "ListSecurityConfigsCommand")
1709
- .sc(ListSecurityConfigs)
1748
+ .sc(ListSecurityConfigs$)
1710
1749
  .build() {
1711
1750
  }
1712
1751
 
@@ -1718,7 +1757,7 @@ class ListSecurityPoliciesCommand extends smithyClient.Command
1718
1757
  })
1719
1758
  .s("OpenSearchServerless", "ListSecurityPolicies", {})
1720
1759
  .n("OpenSearchServerlessClient", "ListSecurityPoliciesCommand")
1721
- .sc(ListSecurityPolicies)
1760
+ .sc(ListSecurityPolicies$)
1722
1761
  .build() {
1723
1762
  }
1724
1763
 
@@ -1730,7 +1769,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1730
1769
  })
1731
1770
  .s("OpenSearchServerless", "ListTagsForResource", {})
1732
1771
  .n("OpenSearchServerlessClient", "ListTagsForResourceCommand")
1733
- .sc(ListTagsForResource)
1772
+ .sc(ListTagsForResource$)
1734
1773
  .build() {
1735
1774
  }
1736
1775
 
@@ -1742,7 +1781,7 @@ class ListVpcEndpointsCommand extends smithyClient.Command
1742
1781
  })
1743
1782
  .s("OpenSearchServerless", "ListVpcEndpoints", {})
1744
1783
  .n("OpenSearchServerlessClient", "ListVpcEndpointsCommand")
1745
- .sc(ListVpcEndpoints)
1784
+ .sc(ListVpcEndpoints$)
1746
1785
  .build() {
1747
1786
  }
1748
1787
 
@@ -1754,7 +1793,7 @@ class TagResourceCommand extends smithyClient.Command
1754
1793
  })
1755
1794
  .s("OpenSearchServerless", "TagResource", {})
1756
1795
  .n("OpenSearchServerlessClient", "TagResourceCommand")
1757
- .sc(TagResource)
1796
+ .sc(TagResource$)
1758
1797
  .build() {
1759
1798
  }
1760
1799
 
@@ -1766,7 +1805,7 @@ class UntagResourceCommand extends smithyClient.Command
1766
1805
  })
1767
1806
  .s("OpenSearchServerless", "UntagResource", {})
1768
1807
  .n("OpenSearchServerlessClient", "UntagResourceCommand")
1769
- .sc(UntagResource)
1808
+ .sc(UntagResource$)
1770
1809
  .build() {
1771
1810
  }
1772
1811
 
@@ -1778,7 +1817,7 @@ class UpdateAccessPolicyCommand extends smithyClient.Command
1778
1817
  })
1779
1818
  .s("OpenSearchServerless", "UpdateAccessPolicy", {})
1780
1819
  .n("OpenSearchServerlessClient", "UpdateAccessPolicyCommand")
1781
- .sc(UpdateAccessPolicy)
1820
+ .sc(UpdateAccessPolicy$)
1782
1821
  .build() {
1783
1822
  }
1784
1823
 
@@ -1790,7 +1829,7 @@ class UpdateAccountSettingsCommand extends smithyClient.Command
1790
1829
  })
1791
1830
  .s("OpenSearchServerless", "UpdateAccountSettings", {})
1792
1831
  .n("OpenSearchServerlessClient", "UpdateAccountSettingsCommand")
1793
- .sc(UpdateAccountSettings)
1832
+ .sc(UpdateAccountSettings$)
1794
1833
  .build() {
1795
1834
  }
1796
1835
 
@@ -1802,7 +1841,7 @@ class UpdateCollectionCommand extends smithyClient.Command
1802
1841
  })
1803
1842
  .s("OpenSearchServerless", "UpdateCollection", {})
1804
1843
  .n("OpenSearchServerlessClient", "UpdateCollectionCommand")
1805
- .sc(UpdateCollection)
1844
+ .sc(UpdateCollection$)
1806
1845
  .build() {
1807
1846
  }
1808
1847
 
@@ -1814,7 +1853,7 @@ class UpdateIndexCommand extends smithyClient.Command
1814
1853
  })
1815
1854
  .s("OpenSearchServerless", "UpdateIndex", {})
1816
1855
  .n("OpenSearchServerlessClient", "UpdateIndexCommand")
1817
- .sc(UpdateIndex)
1856
+ .sc(UpdateIndex$)
1818
1857
  .build() {
1819
1858
  }
1820
1859
 
@@ -1826,7 +1865,7 @@ class UpdateLifecyclePolicyCommand extends smithyClient.Command
1826
1865
  })
1827
1866
  .s("OpenSearchServerless", "UpdateLifecyclePolicy", {})
1828
1867
  .n("OpenSearchServerlessClient", "UpdateLifecyclePolicyCommand")
1829
- .sc(UpdateLifecyclePolicy)
1868
+ .sc(UpdateLifecyclePolicy$)
1830
1869
  .build() {
1831
1870
  }
1832
1871
 
@@ -1838,7 +1877,7 @@ class UpdateSecurityConfigCommand extends smithyClient.Command
1838
1877
  })
1839
1878
  .s("OpenSearchServerless", "UpdateSecurityConfig", {})
1840
1879
  .n("OpenSearchServerlessClient", "UpdateSecurityConfigCommand")
1841
- .sc(UpdateSecurityConfig)
1880
+ .sc(UpdateSecurityConfig$)
1842
1881
  .build() {
1843
1882
  }
1844
1883
 
@@ -1850,7 +1889,7 @@ class UpdateSecurityPolicyCommand extends smithyClient.Command
1850
1889
  })
1851
1890
  .s("OpenSearchServerless", "UpdateSecurityPolicy", {})
1852
1891
  .n("OpenSearchServerlessClient", "UpdateSecurityPolicyCommand")
1853
- .sc(UpdateSecurityPolicy)
1892
+ .sc(UpdateSecurityPolicy$)
1854
1893
  .build() {
1855
1894
  }
1856
1895
 
@@ -1862,7 +1901,7 @@ class UpdateVpcEndpointCommand extends smithyClient.Command
1862
1901
  })
1863
1902
  .s("OpenSearchServerless", "UpdateVpcEndpoint", {})
1864
1903
  .n("OpenSearchServerlessClient", "UpdateVpcEndpointCommand")
1865
- .sc(UpdateVpcEndpoint)
1904
+ .sc(UpdateVpcEndpoint$)
1866
1905
  .build() {
1867
1906
  }
1868
1907
 
@@ -1987,68 +2026,239 @@ Object.defineProperty(exports, "__Client", {
1987
2026
  enumerable: true,
1988
2027
  get: function () { return smithyClient.Client; }
1989
2028
  });
2029
+ exports.AccessPolicyDetail$ = AccessPolicyDetail$;
2030
+ exports.AccessPolicyStats$ = AccessPolicyStats$;
2031
+ exports.AccessPolicySummary$ = AccessPolicySummary$;
1990
2032
  exports.AccessPolicyType = AccessPolicyType;
2033
+ exports.AccountSettingsDetail$ = AccountSettingsDetail$;
2034
+ exports.BatchGetCollection$ = BatchGetCollection$;
1991
2035
  exports.BatchGetCollectionCommand = BatchGetCollectionCommand;
2036
+ exports.BatchGetCollectionRequest$ = BatchGetCollectionRequest$;
2037
+ exports.BatchGetCollectionResponse$ = BatchGetCollectionResponse$;
2038
+ exports.BatchGetEffectiveLifecyclePolicy$ = BatchGetEffectiveLifecyclePolicy$;
1992
2039
  exports.BatchGetEffectiveLifecyclePolicyCommand = BatchGetEffectiveLifecyclePolicyCommand;
2040
+ exports.BatchGetEffectiveLifecyclePolicyRequest$ = BatchGetEffectiveLifecyclePolicyRequest$;
2041
+ exports.BatchGetEffectiveLifecyclePolicyResponse$ = BatchGetEffectiveLifecyclePolicyResponse$;
2042
+ exports.BatchGetLifecyclePolicy$ = BatchGetLifecyclePolicy$;
1993
2043
  exports.BatchGetLifecyclePolicyCommand = BatchGetLifecyclePolicyCommand;
2044
+ exports.BatchGetLifecyclePolicyRequest$ = BatchGetLifecyclePolicyRequest$;
2045
+ exports.BatchGetLifecyclePolicyResponse$ = BatchGetLifecyclePolicyResponse$;
2046
+ exports.BatchGetVpcEndpoint$ = BatchGetVpcEndpoint$;
1994
2047
  exports.BatchGetVpcEndpointCommand = BatchGetVpcEndpointCommand;
2048
+ exports.BatchGetVpcEndpointRequest$ = BatchGetVpcEndpointRequest$;
2049
+ exports.BatchGetVpcEndpointResponse$ = BatchGetVpcEndpointResponse$;
2050
+ exports.CapacityLimits$ = CapacityLimits$;
2051
+ exports.CollectionDetail$ = CollectionDetail$;
2052
+ exports.CollectionErrorDetail$ = CollectionErrorDetail$;
2053
+ exports.CollectionFilters$ = CollectionFilters$;
1995
2054
  exports.CollectionStatus = CollectionStatus;
2055
+ exports.CollectionSummary$ = CollectionSummary$;
1996
2056
  exports.CollectionType = CollectionType;
1997
- exports.ConflictException = ConflictException$1;
2057
+ exports.ConflictException = ConflictException;
2058
+ exports.ConflictException$ = ConflictException$;
2059
+ exports.CreateAccessPolicy$ = CreateAccessPolicy$;
1998
2060
  exports.CreateAccessPolicyCommand = CreateAccessPolicyCommand;
2061
+ exports.CreateAccessPolicyRequest$ = CreateAccessPolicyRequest$;
2062
+ exports.CreateAccessPolicyResponse$ = CreateAccessPolicyResponse$;
2063
+ exports.CreateCollection$ = CreateCollection$;
1999
2064
  exports.CreateCollectionCommand = CreateCollectionCommand;
2065
+ exports.CreateCollectionDetail$ = CreateCollectionDetail$;
2066
+ exports.CreateCollectionRequest$ = CreateCollectionRequest$;
2067
+ exports.CreateCollectionResponse$ = CreateCollectionResponse$;
2068
+ exports.CreateIamIdentityCenterConfigOptions$ = CreateIamIdentityCenterConfigOptions$;
2069
+ exports.CreateIndex$ = CreateIndex$;
2000
2070
  exports.CreateIndexCommand = CreateIndexCommand;
2071
+ exports.CreateIndexRequest$ = CreateIndexRequest$;
2072
+ exports.CreateIndexResponse$ = CreateIndexResponse$;
2073
+ exports.CreateLifecyclePolicy$ = CreateLifecyclePolicy$;
2001
2074
  exports.CreateLifecyclePolicyCommand = CreateLifecyclePolicyCommand;
2075
+ exports.CreateLifecyclePolicyRequest$ = CreateLifecyclePolicyRequest$;
2076
+ exports.CreateLifecyclePolicyResponse$ = CreateLifecyclePolicyResponse$;
2077
+ exports.CreateSecurityConfig$ = CreateSecurityConfig$;
2002
2078
  exports.CreateSecurityConfigCommand = CreateSecurityConfigCommand;
2079
+ exports.CreateSecurityConfigRequest$ = CreateSecurityConfigRequest$;
2080
+ exports.CreateSecurityConfigResponse$ = CreateSecurityConfigResponse$;
2081
+ exports.CreateSecurityPolicy$ = CreateSecurityPolicy$;
2003
2082
  exports.CreateSecurityPolicyCommand = CreateSecurityPolicyCommand;
2083
+ exports.CreateSecurityPolicyRequest$ = CreateSecurityPolicyRequest$;
2084
+ exports.CreateSecurityPolicyResponse$ = CreateSecurityPolicyResponse$;
2085
+ exports.CreateVpcEndpoint$ = CreateVpcEndpoint$;
2004
2086
  exports.CreateVpcEndpointCommand = CreateVpcEndpointCommand;
2087
+ exports.CreateVpcEndpointDetail$ = CreateVpcEndpointDetail$;
2088
+ exports.CreateVpcEndpointRequest$ = CreateVpcEndpointRequest$;
2089
+ exports.CreateVpcEndpointResponse$ = CreateVpcEndpointResponse$;
2090
+ exports.DeleteAccessPolicy$ = DeleteAccessPolicy$;
2005
2091
  exports.DeleteAccessPolicyCommand = DeleteAccessPolicyCommand;
2092
+ exports.DeleteAccessPolicyRequest$ = DeleteAccessPolicyRequest$;
2093
+ exports.DeleteAccessPolicyResponse$ = DeleteAccessPolicyResponse$;
2094
+ exports.DeleteCollection$ = DeleteCollection$;
2006
2095
  exports.DeleteCollectionCommand = DeleteCollectionCommand;
2096
+ exports.DeleteCollectionDetail$ = DeleteCollectionDetail$;
2097
+ exports.DeleteCollectionRequest$ = DeleteCollectionRequest$;
2098
+ exports.DeleteCollectionResponse$ = DeleteCollectionResponse$;
2099
+ exports.DeleteIndex$ = DeleteIndex$;
2007
2100
  exports.DeleteIndexCommand = DeleteIndexCommand;
2101
+ exports.DeleteIndexRequest$ = DeleteIndexRequest$;
2102
+ exports.DeleteIndexResponse$ = DeleteIndexResponse$;
2103
+ exports.DeleteLifecyclePolicy$ = DeleteLifecyclePolicy$;
2008
2104
  exports.DeleteLifecyclePolicyCommand = DeleteLifecyclePolicyCommand;
2105
+ exports.DeleteLifecyclePolicyRequest$ = DeleteLifecyclePolicyRequest$;
2106
+ exports.DeleteLifecyclePolicyResponse$ = DeleteLifecyclePolicyResponse$;
2107
+ exports.DeleteSecurityConfig$ = DeleteSecurityConfig$;
2009
2108
  exports.DeleteSecurityConfigCommand = DeleteSecurityConfigCommand;
2109
+ exports.DeleteSecurityConfigRequest$ = DeleteSecurityConfigRequest$;
2110
+ exports.DeleteSecurityConfigResponse$ = DeleteSecurityConfigResponse$;
2111
+ exports.DeleteSecurityPolicy$ = DeleteSecurityPolicy$;
2010
2112
  exports.DeleteSecurityPolicyCommand = DeleteSecurityPolicyCommand;
2113
+ exports.DeleteSecurityPolicyRequest$ = DeleteSecurityPolicyRequest$;
2114
+ exports.DeleteSecurityPolicyResponse$ = DeleteSecurityPolicyResponse$;
2115
+ exports.DeleteVpcEndpoint$ = DeleteVpcEndpoint$;
2011
2116
  exports.DeleteVpcEndpointCommand = DeleteVpcEndpointCommand;
2117
+ exports.DeleteVpcEndpointDetail$ = DeleteVpcEndpointDetail$;
2118
+ exports.DeleteVpcEndpointRequest$ = DeleteVpcEndpointRequest$;
2119
+ exports.DeleteVpcEndpointResponse$ = DeleteVpcEndpointResponse$;
2120
+ exports.EffectiveLifecyclePolicyDetail$ = EffectiveLifecyclePolicyDetail$;
2121
+ exports.EffectiveLifecyclePolicyErrorDetail$ = EffectiveLifecyclePolicyErrorDetail$;
2122
+ exports.FipsEndpoints$ = FipsEndpoints$;
2123
+ exports.GetAccessPolicy$ = GetAccessPolicy$;
2012
2124
  exports.GetAccessPolicyCommand = GetAccessPolicyCommand;
2125
+ exports.GetAccessPolicyRequest$ = GetAccessPolicyRequest$;
2126
+ exports.GetAccessPolicyResponse$ = GetAccessPolicyResponse$;
2127
+ exports.GetAccountSettings$ = GetAccountSettings$;
2013
2128
  exports.GetAccountSettingsCommand = GetAccountSettingsCommand;
2129
+ exports.GetAccountSettingsRequest$ = GetAccountSettingsRequest$;
2130
+ exports.GetAccountSettingsResponse$ = GetAccountSettingsResponse$;
2131
+ exports.GetIndex$ = GetIndex$;
2014
2132
  exports.GetIndexCommand = GetIndexCommand;
2133
+ exports.GetIndexRequest$ = GetIndexRequest$;
2134
+ exports.GetIndexResponse$ = GetIndexResponse$;
2135
+ exports.GetPoliciesStats$ = GetPoliciesStats$;
2015
2136
  exports.GetPoliciesStatsCommand = GetPoliciesStatsCommand;
2137
+ exports.GetPoliciesStatsRequest$ = GetPoliciesStatsRequest$;
2138
+ exports.GetPoliciesStatsResponse$ = GetPoliciesStatsResponse$;
2139
+ exports.GetSecurityConfig$ = GetSecurityConfig$;
2016
2140
  exports.GetSecurityConfigCommand = GetSecurityConfigCommand;
2141
+ exports.GetSecurityConfigRequest$ = GetSecurityConfigRequest$;
2142
+ exports.GetSecurityConfigResponse$ = GetSecurityConfigResponse$;
2143
+ exports.GetSecurityPolicy$ = GetSecurityPolicy$;
2017
2144
  exports.GetSecurityPolicyCommand = GetSecurityPolicyCommand;
2145
+ exports.GetSecurityPolicyRequest$ = GetSecurityPolicyRequest$;
2146
+ exports.GetSecurityPolicyResponse$ = GetSecurityPolicyResponse$;
2147
+ exports.IamFederationConfigOptions$ = IamFederationConfigOptions$;
2148
+ exports.IamIdentityCenterConfigOptions$ = IamIdentityCenterConfigOptions$;
2018
2149
  exports.IamIdentityCenterGroupAttribute = IamIdentityCenterGroupAttribute;
2019
2150
  exports.IamIdentityCenterUserAttribute = IamIdentityCenterUserAttribute;
2020
- exports.InternalServerException = InternalServerException$1;
2151
+ exports.InternalServerException = InternalServerException;
2152
+ exports.InternalServerException$ = InternalServerException$;
2153
+ exports.LifecyclePolicyDetail$ = LifecyclePolicyDetail$;
2154
+ exports.LifecyclePolicyErrorDetail$ = LifecyclePolicyErrorDetail$;
2155
+ exports.LifecyclePolicyIdentifier$ = LifecyclePolicyIdentifier$;
2156
+ exports.LifecyclePolicyResourceIdentifier$ = LifecyclePolicyResourceIdentifier$;
2157
+ exports.LifecyclePolicyStats$ = LifecyclePolicyStats$;
2158
+ exports.LifecyclePolicySummary$ = LifecyclePolicySummary$;
2021
2159
  exports.LifecyclePolicyType = LifecyclePolicyType;
2160
+ exports.ListAccessPolicies$ = ListAccessPolicies$;
2022
2161
  exports.ListAccessPoliciesCommand = ListAccessPoliciesCommand;
2162
+ exports.ListAccessPoliciesRequest$ = ListAccessPoliciesRequest$;
2163
+ exports.ListAccessPoliciesResponse$ = ListAccessPoliciesResponse$;
2164
+ exports.ListCollections$ = ListCollections$;
2023
2165
  exports.ListCollectionsCommand = ListCollectionsCommand;
2166
+ exports.ListCollectionsRequest$ = ListCollectionsRequest$;
2167
+ exports.ListCollectionsResponse$ = ListCollectionsResponse$;
2168
+ exports.ListLifecyclePolicies$ = ListLifecyclePolicies$;
2024
2169
  exports.ListLifecyclePoliciesCommand = ListLifecyclePoliciesCommand;
2170
+ exports.ListLifecyclePoliciesRequest$ = ListLifecyclePoliciesRequest$;
2171
+ exports.ListLifecyclePoliciesResponse$ = ListLifecyclePoliciesResponse$;
2172
+ exports.ListSecurityConfigs$ = ListSecurityConfigs$;
2025
2173
  exports.ListSecurityConfigsCommand = ListSecurityConfigsCommand;
2174
+ exports.ListSecurityConfigsRequest$ = ListSecurityConfigsRequest$;
2175
+ exports.ListSecurityConfigsResponse$ = ListSecurityConfigsResponse$;
2176
+ exports.ListSecurityPolicies$ = ListSecurityPolicies$;
2026
2177
  exports.ListSecurityPoliciesCommand = ListSecurityPoliciesCommand;
2178
+ exports.ListSecurityPoliciesRequest$ = ListSecurityPoliciesRequest$;
2179
+ exports.ListSecurityPoliciesResponse$ = ListSecurityPoliciesResponse$;
2180
+ exports.ListTagsForResource$ = ListTagsForResource$;
2027
2181
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2182
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2183
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2184
+ exports.ListVpcEndpoints$ = ListVpcEndpoints$;
2028
2185
  exports.ListVpcEndpointsCommand = ListVpcEndpointsCommand;
2029
- exports.OcuLimitExceededException = OcuLimitExceededException$1;
2186
+ exports.ListVpcEndpointsRequest$ = ListVpcEndpointsRequest$;
2187
+ exports.ListVpcEndpointsResponse$ = ListVpcEndpointsResponse$;
2188
+ exports.OcuLimitExceededException = OcuLimitExceededException;
2189
+ exports.OcuLimitExceededException$ = OcuLimitExceededException$;
2030
2190
  exports.OpenSearchServerless = OpenSearchServerless;
2031
2191
  exports.OpenSearchServerlessClient = OpenSearchServerlessClient;
2032
- exports.OpenSearchServerlessServiceException = OpenSearchServerlessServiceException$1;
2033
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2192
+ exports.OpenSearchServerlessServiceException = OpenSearchServerlessServiceException;
2193
+ exports.OpenSearchServerlessServiceException$ = OpenSearchServerlessServiceException$;
2194
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2195
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2034
2196
  exports.ResourceType = ResourceType;
2197
+ exports.SamlConfigOptions$ = SamlConfigOptions$;
2198
+ exports.SecurityConfigDetail$ = SecurityConfigDetail$;
2199
+ exports.SecurityConfigStats$ = SecurityConfigStats$;
2200
+ exports.SecurityConfigSummary$ = SecurityConfigSummary$;
2035
2201
  exports.SecurityConfigType = SecurityConfigType;
2202
+ exports.SecurityPolicyDetail$ = SecurityPolicyDetail$;
2203
+ exports.SecurityPolicyStats$ = SecurityPolicyStats$;
2204
+ exports.SecurityPolicySummary$ = SecurityPolicySummary$;
2036
2205
  exports.SecurityPolicyType = SecurityPolicyType;
2037
2206
  exports.ServerlessVectorAccelerationStatus = ServerlessVectorAccelerationStatus;
2038
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2207
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2208
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2039
2209
  exports.StandbyReplicas = StandbyReplicas;
2210
+ exports.Tag$ = Tag$;
2211
+ exports.TagResource$ = TagResource$;
2040
2212
  exports.TagResourceCommand = TagResourceCommand;
2213
+ exports.TagResourceRequest$ = TagResourceRequest$;
2214
+ exports.TagResourceResponse$ = TagResourceResponse$;
2215
+ exports.UntagResource$ = UntagResource$;
2041
2216
  exports.UntagResourceCommand = UntagResourceCommand;
2217
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2218
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2219
+ exports.UpdateAccessPolicy$ = UpdateAccessPolicy$;
2042
2220
  exports.UpdateAccessPolicyCommand = UpdateAccessPolicyCommand;
2221
+ exports.UpdateAccessPolicyRequest$ = UpdateAccessPolicyRequest$;
2222
+ exports.UpdateAccessPolicyResponse$ = UpdateAccessPolicyResponse$;
2223
+ exports.UpdateAccountSettings$ = UpdateAccountSettings$;
2043
2224
  exports.UpdateAccountSettingsCommand = UpdateAccountSettingsCommand;
2225
+ exports.UpdateAccountSettingsRequest$ = UpdateAccountSettingsRequest$;
2226
+ exports.UpdateAccountSettingsResponse$ = UpdateAccountSettingsResponse$;
2227
+ exports.UpdateCollection$ = UpdateCollection$;
2044
2228
  exports.UpdateCollectionCommand = UpdateCollectionCommand;
2229
+ exports.UpdateCollectionDetail$ = UpdateCollectionDetail$;
2230
+ exports.UpdateCollectionRequest$ = UpdateCollectionRequest$;
2231
+ exports.UpdateCollectionResponse$ = UpdateCollectionResponse$;
2232
+ exports.UpdateIamIdentityCenterConfigOptions$ = UpdateIamIdentityCenterConfigOptions$;
2233
+ exports.UpdateIndex$ = UpdateIndex$;
2045
2234
  exports.UpdateIndexCommand = UpdateIndexCommand;
2235
+ exports.UpdateIndexRequest$ = UpdateIndexRequest$;
2236
+ exports.UpdateIndexResponse$ = UpdateIndexResponse$;
2237
+ exports.UpdateLifecyclePolicy$ = UpdateLifecyclePolicy$;
2046
2238
  exports.UpdateLifecyclePolicyCommand = UpdateLifecyclePolicyCommand;
2239
+ exports.UpdateLifecyclePolicyRequest$ = UpdateLifecyclePolicyRequest$;
2240
+ exports.UpdateLifecyclePolicyResponse$ = UpdateLifecyclePolicyResponse$;
2241
+ exports.UpdateSecurityConfig$ = UpdateSecurityConfig$;
2047
2242
  exports.UpdateSecurityConfigCommand = UpdateSecurityConfigCommand;
2243
+ exports.UpdateSecurityConfigRequest$ = UpdateSecurityConfigRequest$;
2244
+ exports.UpdateSecurityConfigResponse$ = UpdateSecurityConfigResponse$;
2245
+ exports.UpdateSecurityPolicy$ = UpdateSecurityPolicy$;
2048
2246
  exports.UpdateSecurityPolicyCommand = UpdateSecurityPolicyCommand;
2247
+ exports.UpdateSecurityPolicyRequest$ = UpdateSecurityPolicyRequest$;
2248
+ exports.UpdateSecurityPolicyResponse$ = UpdateSecurityPolicyResponse$;
2249
+ exports.UpdateVpcEndpoint$ = UpdateVpcEndpoint$;
2049
2250
  exports.UpdateVpcEndpointCommand = UpdateVpcEndpointCommand;
2050
- exports.ValidationException = ValidationException$1;
2251
+ exports.UpdateVpcEndpointDetail$ = UpdateVpcEndpointDetail$;
2252
+ exports.UpdateVpcEndpointRequest$ = UpdateVpcEndpointRequest$;
2253
+ exports.UpdateVpcEndpointResponse$ = UpdateVpcEndpointResponse$;
2254
+ exports.ValidationException = ValidationException;
2255
+ exports.ValidationException$ = ValidationException$;
2256
+ exports.VectorOptions$ = VectorOptions$;
2257
+ exports.VpcEndpointDetail$ = VpcEndpointDetail$;
2258
+ exports.VpcEndpointErrorDetail$ = VpcEndpointErrorDetail$;
2259
+ exports.VpcEndpointFilters$ = VpcEndpointFilters$;
2051
2260
  exports.VpcEndpointStatus = VpcEndpointStatus;
2261
+ exports.VpcEndpointSummary$ = VpcEndpointSummary$;
2052
2262
  exports.paginateListAccessPolicies = paginateListAccessPolicies;
2053
2263
  exports.paginateListCollections = paginateListCollections;
2054
2264
  exports.paginateListLifecyclePolicies = paginateListLifecyclePolicies;