@aws-sdk/client-mpa 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 (41) hide show
  1. package/dist-cjs/index.js +313 -225
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CancelSessionCommand.js +2 -2
  4. package/dist-es/commands/CreateApprovalTeamCommand.js +2 -2
  5. package/dist-es/commands/CreateIdentitySourceCommand.js +2 -2
  6. package/dist-es/commands/DeleteIdentitySourceCommand.js +2 -2
  7. package/dist-es/commands/DeleteInactiveApprovalTeamVersionCommand.js +2 -2
  8. package/dist-es/commands/GetApprovalTeamCommand.js +2 -2
  9. package/dist-es/commands/GetIdentitySourceCommand.js +2 -2
  10. package/dist-es/commands/GetPolicyVersionCommand.js +2 -2
  11. package/dist-es/commands/GetResourcePolicyCommand.js +2 -2
  12. package/dist-es/commands/GetSessionCommand.js +2 -2
  13. package/dist-es/commands/ListApprovalTeamsCommand.js +2 -2
  14. package/dist-es/commands/ListIdentitySourcesCommand.js +2 -2
  15. package/dist-es/commands/ListPoliciesCommand.js +2 -2
  16. package/dist-es/commands/ListPolicyVersionsCommand.js +2 -2
  17. package/dist-es/commands/ListResourcePoliciesCommand.js +2 -2
  18. package/dist-es/commands/ListSessionsCommand.js +2 -2
  19. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  20. package/dist-es/commands/StartActiveApprovalTeamDeletionCommand.js +2 -2
  21. package/dist-es/commands/TagResourceCommand.js +2 -2
  22. package/dist-es/commands/UntagResourceCommand.js +2 -2
  23. package/dist-es/commands/UpdateApprovalTeamCommand.js +2 -2
  24. package/dist-es/index.js +1 -0
  25. package/dist-es/runtimeConfig.shared.js +6 -1
  26. package/dist-es/schemas/schemas_0.js +185 -191
  27. package/dist-types/MPAClient.d.ts +1 -10
  28. package/dist-types/index.d.ts +1 -0
  29. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  30. package/dist-types/runtimeConfig.d.ts +6 -2
  31. package/dist-types/runtimeConfig.native.d.ts +6 -2
  32. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  33. package/dist-types/schemas/schemas_0.d.ts +95 -117
  34. package/dist-types/ts3.4/MPAClient.d.ts +0 -4
  35. package/dist-types/ts3.4/index.d.ts +1 -0
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  40. package/dist-types/ts3.4/schemas/schemas_0.d.ts +94 -119
  41. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -108,14 +108,14 @@ class MPAClient extends smithyClient.Client {
108
108
  }
109
109
  }
110
110
 
111
- let MPAServiceException$1 = class MPAServiceException extends smithyClient.ServiceException {
111
+ class MPAServiceException extends smithyClient.ServiceException {
112
112
  constructor(options) {
113
113
  super(options);
114
114
  Object.setPrototypeOf(this, MPAServiceException.prototype);
115
115
  }
116
- };
116
+ }
117
117
 
118
- let AccessDeniedException$1 = class AccessDeniedException extends MPAServiceException$1 {
118
+ class AccessDeniedException extends MPAServiceException {
119
119
  name = "AccessDeniedException";
120
120
  $fault = "client";
121
121
  Message;
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends MPAServiceExce
128
128
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
129
129
  this.Message = opts.Message;
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends MPAServiceException$1 {
131
+ }
132
+ class ConflictException extends MPAServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  Message;
@@ -142,8 +142,8 @@ let ConflictException$1 = class ConflictException extends MPAServiceException$1
142
142
  Object.setPrototypeOf(this, ConflictException.prototype);
143
143
  this.Message = opts.Message;
144
144
  }
145
- };
146
- let InternalServerException$1 = class InternalServerException extends MPAServiceException$1 {
145
+ }
146
+ class InternalServerException extends MPAServiceException {
147
147
  name = "InternalServerException";
148
148
  $fault = "server";
149
149
  $retryable = {};
@@ -157,8 +157,8 @@ let InternalServerException$1 = class InternalServerException extends MPAService
157
157
  Object.setPrototypeOf(this, InternalServerException.prototype);
158
158
  this.Message = opts.Message;
159
159
  }
160
- };
161
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends MPAServiceException$1 {
160
+ }
161
+ class ServiceQuotaExceededException extends MPAServiceException {
162
162
  name = "ServiceQuotaExceededException";
163
163
  $fault = "client";
164
164
  Message;
@@ -171,8 +171,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
171
171
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
172
172
  this.Message = opts.Message;
173
173
  }
174
- };
175
- let ThrottlingException$1 = class ThrottlingException extends MPAServiceException$1 {
174
+ }
175
+ class ThrottlingException extends MPAServiceException {
176
176
  name = "ThrottlingException";
177
177
  $fault = "client";
178
178
  Message;
@@ -185,8 +185,8 @@ let ThrottlingException$1 = class ThrottlingException extends MPAServiceExceptio
185
185
  Object.setPrototypeOf(this, ThrottlingException.prototype);
186
186
  this.Message = opts.Message;
187
187
  }
188
- };
189
- let ValidationException$1 = class ValidationException extends MPAServiceException$1 {
188
+ }
189
+ class ValidationException extends MPAServiceException {
190
190
  name = "ValidationException";
191
191
  $fault = "client";
192
192
  Message;
@@ -199,8 +199,8 @@ let ValidationException$1 = class ValidationException extends MPAServiceExceptio
199
199
  Object.setPrototypeOf(this, ValidationException.prototype);
200
200
  this.Message = opts.Message;
201
201
  }
202
- };
203
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends MPAServiceException$1 {
202
+ }
203
+ class ResourceNotFoundException extends MPAServiceException {
204
204
  name = "ResourceNotFoundException";
205
205
  $fault = "client";
206
206
  Message;
@@ -213,8 +213,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends MPASer
213
213
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
214
214
  this.Message = opts.Message;
215
215
  }
216
- };
217
- let InvalidParameterException$1 = class InvalidParameterException extends MPAServiceException$1 {
216
+ }
217
+ class InvalidParameterException extends MPAServiceException {
218
218
  name = "InvalidParameterException";
219
219
  $fault = "client";
220
220
  Message;
@@ -227,8 +227,8 @@ let InvalidParameterException$1 = class InvalidParameterException extends MPASer
227
227
  Object.setPrototypeOf(this, InvalidParameterException.prototype);
228
228
  this.Message = opts.Message;
229
229
  }
230
- };
231
- let TooManyTagsException$1 = class TooManyTagsException extends MPAServiceException$1 {
230
+ }
231
+ class TooManyTagsException extends MPAServiceException {
232
232
  name = "TooManyTagsException";
233
233
  $fault = "client";
234
234
  Message;
@@ -243,7 +243,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends MPAServiceExcept
243
243
  this.Message = opts.Message;
244
244
  this.ResourceName = opts.ResourceName;
245
245
  }
246
- };
246
+ }
247
247
 
248
248
  const _A = "Approvers";
249
249
  const _ACS = "ActionCompletionStrategy";
@@ -440,14 +440,14 @@ var SessionKey = [0, n0, _SK, 8, 0];
440
440
  var SessionValue = [0, n0, _SV, 8, 0];
441
441
  var TagKey = [0, n0, _TK, 8, 0];
442
442
  var TagValue = [0, n0, _TV, 8, 0];
443
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
444
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
445
- var ApprovalTeamRequestApprover = [3, n0, _ATRA, 0, [_PII, _PISA], [0, 0]];
446
- var CancelSessionRequest = [3, n0, _CSR, 0, [_SA], [[0, 1]]];
447
- var CancelSessionResponse = [3, n0, _CSRa, 0, [], []];
448
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
449
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
450
- var CreateApprovalTeamRequest = [
443
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
444
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
445
+ var ApprovalTeamRequestApprover$ = [3, n0, _ATRA, 0, [_PII, _PISA], [0, 0]];
446
+ var CancelSessionRequest$ = [3, n0, _CSR, 0, [_SA], [[0, 1]]];
447
+ var CancelSessionResponse$ = [3, n0, _CSRa, 0, [], []];
448
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
449
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
450
+ var CreateApprovalTeamRequest$ = [
451
451
  3,
452
452
  n0,
453
453
  _CATR,
@@ -455,7 +455,7 @@ var CreateApprovalTeamRequest = [
455
455
  [_CT, _AS, _A, _D, _P, _N, _T],
456
456
  [
457
457
  [0, 4],
458
- () => ApprovalStrategy,
458
+ () => ApprovalStrategy$,
459
459
  () => ApprovalTeamRequestApprovers,
460
460
  [() => Description, 0],
461
461
  () => PoliciesReferences,
@@ -463,18 +463,18 @@ var CreateApprovalTeamRequest = [
463
463
  [() => Tags, 0],
464
464
  ],
465
465
  ];
466
- var CreateApprovalTeamResponse = [3, n0, _CATRr, 0, [_CTr, _Ar, _N, _VI], [5, 0, 0, 0]];
467
- var CreateIdentitySourceRequest = [
466
+ var CreateApprovalTeamResponse$ = [3, n0, _CATRr, 0, [_CTr, _Ar, _N, _VI], [5, 0, 0, 0]];
467
+ var CreateIdentitySourceRequest$ = [
468
468
  3,
469
469
  n0,
470
470
  _CISR,
471
471
  0,
472
472
  [_ISP, _CT, _T],
473
- [() => IdentitySourceParameters, [0, 4], [() => Tags, 0]],
473
+ [() => IdentitySourceParameters$, [0, 4], [() => Tags, 0]],
474
474
  ];
475
- var CreateIdentitySourceResponse = [3, n0, _CISRr, 0, [_IST, _ISA, _CTr], [0, 0, 5]];
476
- var DeleteIdentitySourceRequest = [3, n0, _DISR, 0, [_ISA], [[0, 1]]];
477
- var DeleteInactiveApprovalTeamVersionRequest = [
475
+ var CreateIdentitySourceResponse$ = [3, n0, _CISRr, 0, [_IST, _ISA, _CTr], [0, 0, 5]];
476
+ var DeleteIdentitySourceRequest$ = [3, n0, _DISR, 0, [_ISA], [[0, 1]]];
477
+ var DeleteInactiveApprovalTeamVersionRequest$ = [
478
478
  3,
479
479
  n0,
480
480
  _DIATVR,
@@ -485,10 +485,10 @@ var DeleteInactiveApprovalTeamVersionRequest = [
485
485
  [0, 1],
486
486
  ],
487
487
  ];
488
- var DeleteInactiveApprovalTeamVersionResponse = [3, n0, _DIATVRe, 0, [], []];
489
- var Filter = [3, n0, _F, 0, [_FN, _O, _V], [0, 0, 0]];
490
- var GetApprovalTeamRequest = [3, n0, _GATR, 0, [_Ar], [[0, 1]]];
491
- var GetApprovalTeamResponse = [
488
+ var DeleteInactiveApprovalTeamVersionResponse$ = [3, n0, _DIATVRe, 0, [], []];
489
+ var Filter$ = [3, n0, _F, 0, [_FN, _O, _V], [0, 0, 0]];
490
+ var GetApprovalTeamRequest$ = [3, n0, _GATR, 0, [_Ar], [[0, 1]]];
491
+ var GetApprovalTeamResponse$ = [
492
492
  3,
493
493
  n0,
494
494
  _GATRe,
@@ -496,7 +496,7 @@ var GetApprovalTeamResponse = [
496
496
  [_CTr, _AS, _NOA, _A, _Ar, _D, _N, _S, _SC, _SM, _USA, _VI, _P, _LUT, _PU],
497
497
  [
498
498
  5,
499
- () => ApprovalStrategyResponse,
499
+ () => ApprovalStrategyResponse$,
500
500
  1,
501
501
  () => GetApprovalTeamResponseApprovers,
502
502
  0,
@@ -509,10 +509,10 @@ var GetApprovalTeamResponse = [
509
509
  0,
510
510
  () => PoliciesReferences,
511
511
  5,
512
- () => PendingUpdate,
512
+ () => PendingUpdate$,
513
513
  ],
514
514
  ];
515
- var GetApprovalTeamResponseApprover = [
515
+ var GetApprovalTeamResponseApprover$ = [
516
516
  3,
517
517
  n0,
518
518
  _GATRA,
@@ -520,19 +520,19 @@ var GetApprovalTeamResponseApprover = [
520
520
  [_AI, _RT, _PII, _PISA, _PIS],
521
521
  [0, 5, 0, 0, 0],
522
522
  ];
523
- var GetIdentitySourceRequest = [3, n0, _GISR, 0, [_ISA], [[0, 1]]];
524
- var GetIdentitySourceResponse = [
523
+ var GetIdentitySourceRequest$ = [3, n0, _GISR, 0, [_ISA], [[0, 1]]];
524
+ var GetIdentitySourceResponse$ = [
525
525
  3,
526
526
  n0,
527
527
  _GISRe,
528
528
  0,
529
529
  [_IST, _ISP, _ISA, _CTr, _S, _SC, _SM],
530
- [0, () => IdentitySourceParametersForGet, 0, 5, 0, 0, 0],
530
+ [0, () => IdentitySourceParametersForGet$, 0, 5, 0, 0, 0],
531
531
  ];
532
- var GetPolicyVersionRequest = [3, n0, _GPVR, 0, [_PVA], [[0, 1]]];
533
- var GetPolicyVersionResponse = [3, n0, _GPVRe, 0, [_PV], [[() => PolicyVersion, 0]]];
534
- var GetResourcePolicyRequest = [3, n0, _GRPR, 0, [_RA, _PN, _PT], [0, 0, 0]];
535
- var GetResourcePolicyResponse = [
532
+ var GetPolicyVersionRequest$ = [3, n0, _GPVR, 0, [_PVA], [[0, 1]]];
533
+ var GetPolicyVersionResponse$ = [3, n0, _GPVRe, 0, [_PV], [[() => PolicyVersion$, 0]]];
534
+ var GetResourcePolicyRequest$ = [3, n0, _GRPR, 0, [_RA, _PN, _PT], [0, 0, 0]];
535
+ var GetResourcePolicyResponse$ = [
536
536
  3,
537
537
  n0,
538
538
  _GRPRe,
@@ -540,8 +540,8 @@ var GetResourcePolicyResponse = [
540
540
  [_RA, _PT, _PVA, _PN, _PD],
541
541
  [0, 0, 0, 0, [() => PolicyDocument, 0]],
542
542
  ];
543
- var GetSessionRequest = [3, n0, _GSR, 0, [_SA], [[0, 1]]];
544
- var GetSessionResponse = [
543
+ var GetSessionRequest$ = [3, n0, _GSR, 0, [_SA], [[0, 1]]];
544
+ var GetSessionResponse$ = [
545
545
  3,
546
546
  n0,
547
547
  _GSRe,
@@ -576,7 +576,7 @@ var GetSessionResponse = [
576
576
  0,
577
577
  0,
578
578
  0,
579
- () => ApprovalStrategyResponse,
579
+ () => ApprovalStrategyResponse$,
580
580
  1,
581
581
  5,
582
582
  5,
@@ -597,7 +597,7 @@ var GetSessionResponse = [
597
597
  () => GetSessionResponseApproverResponses,
598
598
  ],
599
599
  ];
600
- var GetSessionResponseApproverResponse = [
600
+ var GetSessionResponseApproverResponse$ = [
601
601
  3,
602
602
  n0,
603
603
  _GSRAR,
@@ -605,23 +605,23 @@ var GetSessionResponseApproverResponse = [
605
605
  [_AI, _ISA, _II, _R, _RT],
606
606
  [0, 0, 0, 0, 5],
607
607
  ];
608
- var IamIdentityCenter = [3, n0, _IIC, 0, [_IA, _Re], [0, 0]];
609
- var IamIdentityCenterForGet = [3, n0, _IICFG, 0, [_IA, _APU, _Re], [0, 0, 0]];
610
- var IamIdentityCenterForList = [3, n0, _IICFL, 0, [_IA, _APU, _Re], [0, 0, 0]];
611
- var IdentitySourceForList = [
608
+ var IamIdentityCenter$ = [3, n0, _IIC, 0, [_IA, _Re], [0, 0]];
609
+ var IamIdentityCenterForGet$ = [3, n0, _IICFG, 0, [_IA, _APU, _Re], [0, 0, 0]];
610
+ var IamIdentityCenterForList$ = [3, n0, _IICFL, 0, [_IA, _APU, _Re], [0, 0, 0]];
611
+ var IdentitySourceForList$ = [
612
612
  3,
613
613
  n0,
614
614
  _ISFL,
615
615
  0,
616
616
  [_IST, _ISP, _ISA, _CTr, _S, _SC, _SM],
617
- [0, () => IdentitySourceParametersForList, 0, 5, 0, 0, 0],
617
+ [0, () => IdentitySourceParametersForList$, 0, 5, 0, 0, 0],
618
618
  ];
619
- var IdentitySourceParameters = [3, n0, _ISP, 0, [_IIC], [() => IamIdentityCenter]];
620
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
621
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
622
- var InvalidParameterException = [-3, n0, _IPE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
623
- schema.TypeRegistry.for(n0).registerError(InvalidParameterException, InvalidParameterException$1);
624
- var ListApprovalTeamsRequest = [
619
+ var IdentitySourceParameters$ = [3, n0, _ISP, 0, [_IIC], [() => IamIdentityCenter$]];
620
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
621
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
622
+ var InvalidParameterException$ = [-3, n0, _IPE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
623
+ schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
624
+ var ListApprovalTeamsRequest$ = [
625
625
  3,
626
626
  n0,
627
627
  _LATR,
@@ -632,7 +632,7 @@ var ListApprovalTeamsRequest = [
632
632
  [0, { [_hQ]: _NT }],
633
633
  ],
634
634
  ];
635
- var ListApprovalTeamsResponse = [
635
+ var ListApprovalTeamsResponse$ = [
636
636
  3,
637
637
  n0,
638
638
  _LATRi,
@@ -640,15 +640,15 @@ var ListApprovalTeamsResponse = [
640
640
  [_NT, _AT],
641
641
  [0, [() => ListApprovalTeamsResponseApprovalTeams, 0]],
642
642
  ];
643
- var ListApprovalTeamsResponseApprovalTeam = [
643
+ var ListApprovalTeamsResponseApprovalTeam$ = [
644
644
  3,
645
645
  n0,
646
646
  _LATRAT,
647
647
  0,
648
648
  [_CTr, _AS, _NOA, _Ar, _N, _D, _S, _SC, _SM],
649
- [5, () => ApprovalStrategyResponse, 1, 0, 0, [() => Description, 0], 0, 0, 0],
649
+ [5, () => ApprovalStrategyResponse$, 1, 0, 0, [() => Description, 0], 0, 0, 0],
650
650
  ];
651
- var ListIdentitySourcesRequest = [
651
+ var ListIdentitySourcesRequest$ = [
652
652
  3,
653
653
  n0,
654
654
  _LISR,
@@ -659,7 +659,7 @@ var ListIdentitySourcesRequest = [
659
659
  [0, { [_hQ]: _NT }],
660
660
  ],
661
661
  ];
662
- var ListIdentitySourcesResponse = [
662
+ var ListIdentitySourcesResponse$ = [
663
663
  3,
664
664
  n0,
665
665
  _LISRi,
@@ -667,7 +667,7 @@ var ListIdentitySourcesResponse = [
667
667
  [_NT, _IS],
668
668
  [0, () => IdentitySources],
669
669
  ];
670
- var ListPoliciesRequest = [
670
+ var ListPoliciesRequest$ = [
671
671
  3,
672
672
  n0,
673
673
  _LPR,
@@ -678,8 +678,8 @@ var ListPoliciesRequest = [
678
678
  [0, { [_hQ]: _NT }],
679
679
  ],
680
680
  ];
681
- var ListPoliciesResponse = [3, n0, _LPRi, 0, [_NT, _P], [0, () => Policies]];
682
- var ListPolicyVersionsRequest = [
681
+ var ListPoliciesResponse$ = [3, n0, _LPRi, 0, [_NT, _P], [0, () => Policies]];
682
+ var ListPolicyVersionsRequest$ = [
683
683
  3,
684
684
  n0,
685
685
  _LPVR,
@@ -691,7 +691,7 @@ var ListPolicyVersionsRequest = [
691
691
  [0, 1],
692
692
  ],
693
693
  ];
694
- var ListPolicyVersionsResponse = [
694
+ var ListPolicyVersionsResponse$ = [
695
695
  3,
696
696
  n0,
697
697
  _LPVRi,
@@ -699,7 +699,7 @@ var ListPolicyVersionsResponse = [
699
699
  [_NT, _PVo],
700
700
  [0, () => PolicyVersions],
701
701
  ];
702
- var ListResourcePoliciesRequest = [
702
+ var ListResourcePoliciesRequest$ = [
703
703
  3,
704
704
  n0,
705
705
  _LRPR,
@@ -711,7 +711,7 @@ var ListResourcePoliciesRequest = [
711
711
  [0, { [_hQ]: _NT }],
712
712
  ],
713
713
  ];
714
- var ListResourcePoliciesResponse = [
714
+ var ListResourcePoliciesResponse$ = [
715
715
  3,
716
716
  n0,
717
717
  _LRPRi,
@@ -719,7 +719,7 @@ var ListResourcePoliciesResponse = [
719
719
  [_NT, _RP],
720
720
  [0, () => ListResourcePoliciesResponseResourcePolicies],
721
721
  ];
722
- var ListResourcePoliciesResponseResourcePolicy = [
722
+ var ListResourcePoliciesResponseResourcePolicy$ = [
723
723
  3,
724
724
  n0,
725
725
  _LRPRRP,
@@ -727,7 +727,7 @@ var ListResourcePoliciesResponseResourcePolicy = [
727
727
  [_PA, _PT, _PN],
728
728
  [0, 0, 0],
729
729
  ];
730
- var ListSessionsRequest = [
730
+ var ListSessionsRequest$ = [
731
731
  3,
732
732
  n0,
733
733
  _LSR,
@@ -735,7 +735,7 @@ var ListSessionsRequest = [
735
735
  [_ATA, _MR, _NT, _Fi],
736
736
  [[0, 1], 1, 0, () => Filters],
737
737
  ];
738
- var ListSessionsResponse = [
738
+ var ListSessionsResponse$ = [
739
739
  3,
740
740
  n0,
741
741
  _LSRi,
@@ -743,7 +743,7 @@ var ListSessionsResponse = [
743
743
  [_NT, _Se],
744
744
  [0, [() => ListSessionsResponseSessions, 0]],
745
745
  ];
746
- var ListSessionsResponseSession = [
746
+ var ListSessionsResponseSession$ = [
747
747
  3,
748
748
  n0,
749
749
  _LSRS,
@@ -751,20 +751,20 @@ var ListSessionsResponseSession = [
751
751
  [_SA, _ATN, _ATA, _IT, _ET, _CTo, _D, _AN, _PRA, _RSP, _RPA, _RR, _RAI, _S, _SC, _SM, _ACS],
752
752
  [0, 0, 0, 5, 5, 5, [() => Description, 0], 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
753
753
  ];
754
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
755
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [[() => Tags, 0]]];
756
- var MofNApprovalStrategy = [3, n0, _MNAS, 0, [_MAR], [1]];
757
- var PendingUpdate = [
754
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
755
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [[() => Tags, 0]]];
756
+ var MofNApprovalStrategy$ = [3, n0, _MNAS, 0, [_MAR], [1]];
757
+ var PendingUpdate$ = [
758
758
  3,
759
759
  n0,
760
760
  _PU,
761
761
  0,
762
762
  [_VI, _D, _AS, _NOA, _S, _SC, _SM, _A, _UIT],
763
- [0, 0, () => ApprovalStrategyResponse, 1, 0, 0, 0, () => GetApprovalTeamResponseApprovers, 5],
763
+ [0, 0, () => ApprovalStrategyResponse$, 1, 0, 0, 0, () => GetApprovalTeamResponseApprovers, 5],
764
764
  ];
765
- var Policy = [3, n0, _Po, 0, [_Ar, _DV, _PT, _N], [0, 1, 0, 0]];
766
- var PolicyReference = [3, n0, _PR, 0, [_PA], [0]];
767
- var PolicyVersion = [
765
+ var Policy$ = [3, n0, _Po, 0, [_Ar, _DV, _PT, _N], [0, 1, 0, 0]];
766
+ var PolicyReference$ = [3, n0, _PR, 0, [_PA], [0]];
767
+ var PolicyVersion$ = [
768
768
  3,
769
769
  n0,
770
770
  _PV,
@@ -772,7 +772,7 @@ var PolicyVersion = [
772
772
  [_Ar, _PA, _VI, _PT, _ID, _N, _S, _CTr, _LUTa, _Do],
773
773
  [0, 0, 1, 0, 2, 0, 0, 5, 5, [() => PolicyDocument, 0]],
774
774
  ];
775
- var PolicyVersionSummary = [
775
+ var PolicyVersionSummary$ = [
776
776
  3,
777
777
  n0,
778
778
  _PVS,
@@ -780,11 +780,11 @@ var PolicyVersionSummary = [
780
780
  [_Ar, _PA, _VI, _PT, _ID, _N, _S, _CTr, _LUTa],
781
781
  [0, 0, 1, 0, 2, 0, 0, 5, 5],
782
782
  ];
783
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
784
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
785
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
786
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
787
- var StartActiveApprovalTeamDeletionRequest = [
783
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
784
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
785
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
786
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
787
+ var StartActiveApprovalTeamDeletionRequest$ = [
788
788
  3,
789
789
  n0,
790
790
  _SAATDR,
@@ -792,8 +792,8 @@ var StartActiveApprovalTeamDeletionRequest = [
792
792
  [_PWD, _Ar],
793
793
  [1, [0, 1]],
794
794
  ];
795
- var StartActiveApprovalTeamDeletionResponse = [3, n0, _SAATDRt, 0, [_DCT, _DST], [5, 5]];
796
- var TagResourceRequest = [
795
+ var StartActiveApprovalTeamDeletionResponse$ = [3, n0, _SAATDRt, 0, [_DCT, _DST], [5, 5]];
796
+ var TagResourceRequest$ = [
797
797
  3,
798
798
  n0,
799
799
  _TRR,
@@ -804,12 +804,12 @@ var TagResourceRequest = [
804
804
  [() => Tags, 0],
805
805
  ],
806
806
  ];
807
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
808
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
809
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
810
- var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M, _RN], [0, 0]];
811
- schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
812
- var UntagResourceRequest = [
807
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
808
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
809
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
810
+ var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M, _RN], [0, 0]];
811
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
812
+ var UntagResourceRequest$ = [
813
813
  3,
814
814
  n0,
815
815
  _URR,
@@ -820,244 +820,238 @@ var UntagResourceRequest = [
820
820
  [() => TagKeyList, 0],
821
821
  ],
822
822
  ];
823
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
824
- var UpdateApprovalTeamRequest = [
823
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
824
+ var UpdateApprovalTeamRequest$ = [
825
825
  3,
826
826
  n0,
827
827
  _UATR,
828
828
  0,
829
829
  [_AS, _A, _D, _Ar],
830
- [() => ApprovalStrategy, () => ApprovalTeamRequestApprovers, [() => Description, 0], [0, 1]],
830
+ [() => ApprovalStrategy$, () => ApprovalTeamRequestApprovers, [() => Description, 0], [0, 1]],
831
831
  ];
832
- var UpdateApprovalTeamResponse = [3, n0, _UATRp, 0, [_VI], [0]];
833
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
834
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
832
+ var UpdateApprovalTeamResponse$ = [3, n0, _UATRp, 0, [_VI], [0]];
833
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
834
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
835
835
  var __Unit = "unit";
836
- var MPAServiceException = [-3, _sm, "MPAServiceException", 0, [], []];
837
- schema.TypeRegistry.for(_sm).registerError(MPAServiceException, MPAServiceException$1);
838
- var ApprovalTeamRequestApprovers = [1, n0, _ATRAp, 0, () => ApprovalTeamRequestApprover];
839
- var Filters = [1, n0, _Fi, 0, () => Filter];
840
- var GetApprovalTeamResponseApprovers = [
841
- 1,
842
- n0,
843
- _GATRAe,
844
- 0,
845
- () => GetApprovalTeamResponseApprover,
846
- ];
836
+ var MPAServiceException$ = [-3, _sm, "MPAServiceException", 0, [], []];
837
+ schema.TypeRegistry.for(_sm).registerError(MPAServiceException$, MPAServiceException);
838
+ var ApprovalTeamRequestApprovers = [1, n0, _ATRAp, 0, () => ApprovalTeamRequestApprover$];
839
+ var Filters = [1, n0, _Fi, 0, () => Filter$];
840
+ var GetApprovalTeamResponseApprovers = [1, n0, _GATRAe, 0, () => GetApprovalTeamResponseApprover$];
847
841
  var GetSessionResponseApproverResponses = [
848
842
  1,
849
843
  n0,
850
844
  _GSRARe,
851
845
  0,
852
- () => GetSessionResponseApproverResponse,
846
+ () => GetSessionResponseApproverResponse$,
853
847
  ];
854
- var IdentitySources = [1, n0, _IS, 0, () => IdentitySourceForList];
848
+ var IdentitySources = [1, n0, _IS, 0, () => IdentitySourceForList$];
855
849
  var ListApprovalTeamsResponseApprovalTeams = [
856
850
  1,
857
851
  n0,
858
852
  _LATRATi,
859
853
  0,
860
- [() => ListApprovalTeamsResponseApprovalTeam, 0],
854
+ [() => ListApprovalTeamsResponseApprovalTeam$, 0],
861
855
  ];
862
856
  var ListResourcePoliciesResponseResourcePolicies = [
863
857
  1,
864
858
  n0,
865
859
  _LRPRRPi,
866
860
  0,
867
- () => ListResourcePoliciesResponseResourcePolicy,
861
+ () => ListResourcePoliciesResponseResourcePolicy$,
868
862
  ];
869
- var ListSessionsResponseSessions = [1, n0, _LSRSi, 0, [() => ListSessionsResponseSession, 0]];
870
- var Policies = [1, n0, _P, 0, () => Policy];
871
- var PoliciesReferences = [1, n0, _PRo, 0, () => PolicyReference];
872
- var PolicyVersions = [1, n0, _PVo, 0, () => PolicyVersionSummary];
863
+ var ListSessionsResponseSessions = [1, n0, _LSRSi, 0, [() => ListSessionsResponseSession$, 0]];
864
+ var Policies = [1, n0, _P, 0, () => Policy$];
865
+ var PoliciesReferences = [1, n0, _PRo, 0, () => PolicyReference$];
866
+ var PolicyVersions = [1, n0, _PVo, 0, () => PolicyVersionSummary$];
873
867
  var TagKeyList = [1, n0, _TKL, 8, [() => TagKey, 0]];
874
868
  var SessionMetadata = [2, n0, _SMe, 8, [() => SessionKey, 0], [() => SessionValue, 0]];
875
869
  var Tags = [2, n0, _T, 8, [() => TagKey, 0], [() => TagValue, 0]];
876
- var ApprovalStrategy = [3, n0, _AS, 0, [_MN], [() => MofNApprovalStrategy]];
877
- var ApprovalStrategyResponse = [3, n0, _ASR, 0, [_MN], [() => MofNApprovalStrategy]];
878
- var IdentitySourceParametersForGet = [
870
+ var ApprovalStrategy$ = [3, n0, _AS, 0, [_MN], [() => MofNApprovalStrategy$]];
871
+ var ApprovalStrategyResponse$ = [3, n0, _ASR, 0, [_MN], [() => MofNApprovalStrategy$]];
872
+ var IdentitySourceParametersForGet$ = [
879
873
  3,
880
874
  n0,
881
875
  _ISPFG,
882
876
  0,
883
877
  [_IIC],
884
- [() => IamIdentityCenterForGet],
878
+ [() => IamIdentityCenterForGet$],
885
879
  ];
886
- var IdentitySourceParametersForList = [
880
+ var IdentitySourceParametersForList$ = [
887
881
  3,
888
882
  n0,
889
883
  _ISPFL,
890
884
  0,
891
885
  [_IIC],
892
- [() => IamIdentityCenterForList],
886
+ [() => IamIdentityCenterForList$],
893
887
  ];
894
- var CancelSession = [
888
+ var CancelSession$ = [
895
889
  9,
896
890
  n0,
897
891
  _CS,
898
892
  { [_h]: ["PUT", "/sessions/{SessionArn}", 200] },
899
- () => CancelSessionRequest,
900
- () => CancelSessionResponse,
893
+ () => CancelSessionRequest$,
894
+ () => CancelSessionResponse$,
901
895
  ];
902
- var CreateApprovalTeam = [
896
+ var CreateApprovalTeam$ = [
903
897
  9,
904
898
  n0,
905
899
  _CAT,
906
900
  { [_h]: ["POST", "/approval-teams", 200] },
907
- () => CreateApprovalTeamRequest,
908
- () => CreateApprovalTeamResponse,
901
+ () => CreateApprovalTeamRequest$,
902
+ () => CreateApprovalTeamResponse$,
909
903
  ];
910
- var CreateIdentitySource = [
904
+ var CreateIdentitySource$ = [
911
905
  9,
912
906
  n0,
913
907
  _CIS,
914
908
  { [_h]: ["POST", "/identity-sources", 200] },
915
- () => CreateIdentitySourceRequest,
916
- () => CreateIdentitySourceResponse,
909
+ () => CreateIdentitySourceRequest$,
910
+ () => CreateIdentitySourceResponse$,
917
911
  ];
918
- var DeleteIdentitySource = [
912
+ var DeleteIdentitySource$ = [
919
913
  9,
920
914
  n0,
921
915
  _DIS,
922
916
  { [_h]: ["DELETE", "/identity-sources/{IdentitySourceArn}", 200] },
923
- () => DeleteIdentitySourceRequest,
917
+ () => DeleteIdentitySourceRequest$,
924
918
  () => __Unit,
925
919
  ];
926
- var DeleteInactiveApprovalTeamVersion = [
920
+ var DeleteInactiveApprovalTeamVersion$ = [
927
921
  9,
928
922
  n0,
929
923
  _DIATV,
930
924
  { [_h]: ["DELETE", "/approval-teams/{Arn}/{VersionId}", 200] },
931
- () => DeleteInactiveApprovalTeamVersionRequest,
932
- () => DeleteInactiveApprovalTeamVersionResponse,
925
+ () => DeleteInactiveApprovalTeamVersionRequest$,
926
+ () => DeleteInactiveApprovalTeamVersionResponse$,
933
927
  ];
934
- var GetApprovalTeam = [
928
+ var GetApprovalTeam$ = [
935
929
  9,
936
930
  n0,
937
931
  _GAT,
938
932
  { [_h]: ["GET", "/approval-teams/{Arn}", 200] },
939
- () => GetApprovalTeamRequest,
940
- () => GetApprovalTeamResponse,
933
+ () => GetApprovalTeamRequest$,
934
+ () => GetApprovalTeamResponse$,
941
935
  ];
942
- var GetIdentitySource = [
936
+ var GetIdentitySource$ = [
943
937
  9,
944
938
  n0,
945
939
  _GIS,
946
940
  { [_h]: ["GET", "/identity-sources/{IdentitySourceArn}", 200] },
947
- () => GetIdentitySourceRequest,
948
- () => GetIdentitySourceResponse,
941
+ () => GetIdentitySourceRequest$,
942
+ () => GetIdentitySourceResponse$,
949
943
  ];
950
- var GetPolicyVersion = [
944
+ var GetPolicyVersion$ = [
951
945
  9,
952
946
  n0,
953
947
  _GPV,
954
948
  { [_h]: ["GET", "/policy-versions/{PolicyVersionArn}", 200] },
955
- () => GetPolicyVersionRequest,
956
- () => GetPolicyVersionResponse,
949
+ () => GetPolicyVersionRequest$,
950
+ () => GetPolicyVersionResponse$,
957
951
  ];
958
- var GetResourcePolicy = [
952
+ var GetResourcePolicy$ = [
959
953
  9,
960
954
  n0,
961
955
  _GRP,
962
956
  { [_h]: ["POST", "/GetResourcePolicy", 200] },
963
- () => GetResourcePolicyRequest,
964
- () => GetResourcePolicyResponse,
957
+ () => GetResourcePolicyRequest$,
958
+ () => GetResourcePolicyResponse$,
965
959
  ];
966
- var GetSession = [
960
+ var GetSession$ = [
967
961
  9,
968
962
  n0,
969
963
  _GS,
970
964
  { [_h]: ["GET", "/sessions/{SessionArn}", 200] },
971
- () => GetSessionRequest,
972
- () => GetSessionResponse,
965
+ () => GetSessionRequest$,
966
+ () => GetSessionResponse$,
973
967
  ];
974
- var ListApprovalTeams = [
968
+ var ListApprovalTeams$ = [
975
969
  9,
976
970
  n0,
977
971
  _LAT,
978
972
  { [_h]: ["POST", "/approval-teams/?List", 200] },
979
- () => ListApprovalTeamsRequest,
980
- () => ListApprovalTeamsResponse,
973
+ () => ListApprovalTeamsRequest$,
974
+ () => ListApprovalTeamsResponse$,
981
975
  ];
982
- var ListIdentitySources = [
976
+ var ListIdentitySources$ = [
983
977
  9,
984
978
  n0,
985
979
  _LIS,
986
980
  { [_h]: ["POST", "/identity-sources/?List", 200] },
987
- () => ListIdentitySourcesRequest,
988
- () => ListIdentitySourcesResponse,
981
+ () => ListIdentitySourcesRequest$,
982
+ () => ListIdentitySourcesResponse$,
989
983
  ];
990
- var ListPolicies = [
984
+ var ListPolicies$ = [
991
985
  9,
992
986
  n0,
993
987
  _LP,
994
988
  { [_h]: ["POST", "/policies/?List", 200] },
995
- () => ListPoliciesRequest,
996
- () => ListPoliciesResponse,
989
+ () => ListPoliciesRequest$,
990
+ () => ListPoliciesResponse$,
997
991
  ];
998
- var ListPolicyVersions = [
992
+ var ListPolicyVersions$ = [
999
993
  9,
1000
994
  n0,
1001
995
  _LPV,
1002
996
  { [_h]: ["POST", "/policies/{PolicyArn}/?List", 200] },
1003
- () => ListPolicyVersionsRequest,
1004
- () => ListPolicyVersionsResponse,
997
+ () => ListPolicyVersionsRequest$,
998
+ () => ListPolicyVersionsResponse$,
1005
999
  ];
1006
- var ListResourcePolicies = [
1000
+ var ListResourcePolicies$ = [
1007
1001
  9,
1008
1002
  n0,
1009
1003
  _LRP,
1010
1004
  { [_h]: ["POST", "/resource-policies/{ResourceArn}/?List", 200] },
1011
- () => ListResourcePoliciesRequest,
1012
- () => ListResourcePoliciesResponse,
1005
+ () => ListResourcePoliciesRequest$,
1006
+ () => ListResourcePoliciesResponse$,
1013
1007
  ];
1014
- var ListSessions = [
1008
+ var ListSessions$ = [
1015
1009
  9,
1016
1010
  n0,
1017
1011
  _LS,
1018
1012
  { [_h]: ["POST", "/approval-teams/{ApprovalTeamArn}/sessions/?List", 200] },
1019
- () => ListSessionsRequest,
1020
- () => ListSessionsResponse,
1013
+ () => ListSessionsRequest$,
1014
+ () => ListSessionsResponse$,
1021
1015
  ];
1022
- var ListTagsForResource = [
1016
+ var ListTagsForResource$ = [
1023
1017
  9,
1024
1018
  n0,
1025
1019
  _LTFR,
1026
1020
  { [_h]: ["GET", "/tags/{ResourceArn}", 200] },
1027
- () => ListTagsForResourceRequest,
1028
- () => ListTagsForResourceResponse,
1021
+ () => ListTagsForResourceRequest$,
1022
+ () => ListTagsForResourceResponse$,
1029
1023
  ];
1030
- var StartActiveApprovalTeamDeletion = [
1024
+ var StartActiveApprovalTeamDeletion$ = [
1031
1025
  9,
1032
1026
  n0,
1033
1027
  _SAATD,
1034
1028
  { [_h]: ["POST", "/approval-teams/{Arn}?Delete", 200] },
1035
- () => StartActiveApprovalTeamDeletionRequest,
1036
- () => StartActiveApprovalTeamDeletionResponse,
1029
+ () => StartActiveApprovalTeamDeletionRequest$,
1030
+ () => StartActiveApprovalTeamDeletionResponse$,
1037
1031
  ];
1038
- var TagResource = [
1032
+ var TagResource$ = [
1039
1033
  9,
1040
1034
  n0,
1041
1035
  _TR,
1042
1036
  { [_h]: ["PUT", "/tags/{ResourceArn}", 200] },
1043
- () => TagResourceRequest,
1044
- () => TagResourceResponse,
1037
+ () => TagResourceRequest$,
1038
+ () => TagResourceResponse$,
1045
1039
  ];
1046
- var UntagResource = [
1040
+ var UntagResource$ = [
1047
1041
  9,
1048
1042
  n0,
1049
1043
  _UR,
1050
1044
  { [_h]: ["POST", "/tags/{ResourceArn}", 200] },
1051
- () => UntagResourceRequest,
1052
- () => UntagResourceResponse,
1045
+ () => UntagResourceRequest$,
1046
+ () => UntagResourceResponse$,
1053
1047
  ];
1054
- var UpdateApprovalTeam = [
1048
+ var UpdateApprovalTeam$ = [
1055
1049
  9,
1056
1050
  n0,
1057
1051
  _UAT,
1058
1052
  { [_h]: ["PATCH", "/approval-teams/{Arn}", 200] },
1059
- () => UpdateApprovalTeamRequest,
1060
- () => UpdateApprovalTeamResponse,
1053
+ () => UpdateApprovalTeamRequest$,
1054
+ () => UpdateApprovalTeamResponse$,
1061
1055
  ];
1062
1056
 
1063
1057
  class CancelSessionCommand extends smithyClient.Command
@@ -1068,7 +1062,7 @@ class CancelSessionCommand extends smithyClient.Command
1068
1062
  })
1069
1063
  .s("AWSFluffyCoreService", "CancelSession", {})
1070
1064
  .n("MPAClient", "CancelSessionCommand")
1071
- .sc(CancelSession)
1065
+ .sc(CancelSession$)
1072
1066
  .build() {
1073
1067
  }
1074
1068
 
@@ -1080,7 +1074,7 @@ class CreateApprovalTeamCommand extends smithyClient.Command
1080
1074
  })
1081
1075
  .s("AWSFluffyCoreService", "CreateApprovalTeam", {})
1082
1076
  .n("MPAClient", "CreateApprovalTeamCommand")
1083
- .sc(CreateApprovalTeam)
1077
+ .sc(CreateApprovalTeam$)
1084
1078
  .build() {
1085
1079
  }
1086
1080
 
@@ -1092,7 +1086,7 @@ class CreateIdentitySourceCommand extends smithyClient.Command
1092
1086
  })
1093
1087
  .s("AWSFluffyCoreService", "CreateIdentitySource", {})
1094
1088
  .n("MPAClient", "CreateIdentitySourceCommand")
1095
- .sc(CreateIdentitySource)
1089
+ .sc(CreateIdentitySource$)
1096
1090
  .build() {
1097
1091
  }
1098
1092
 
@@ -1104,7 +1098,7 @@ class DeleteIdentitySourceCommand extends smithyClient.Command
1104
1098
  })
1105
1099
  .s("AWSFluffyCoreService", "DeleteIdentitySource", {})
1106
1100
  .n("MPAClient", "DeleteIdentitySourceCommand")
1107
- .sc(DeleteIdentitySource)
1101
+ .sc(DeleteIdentitySource$)
1108
1102
  .build() {
1109
1103
  }
1110
1104
 
@@ -1116,7 +1110,7 @@ class DeleteInactiveApprovalTeamVersionCommand extends smithyClient.Command
1116
1110
  })
1117
1111
  .s("AWSFluffyCoreService", "DeleteInactiveApprovalTeamVersion", {})
1118
1112
  .n("MPAClient", "DeleteInactiveApprovalTeamVersionCommand")
1119
- .sc(DeleteInactiveApprovalTeamVersion)
1113
+ .sc(DeleteInactiveApprovalTeamVersion$)
1120
1114
  .build() {
1121
1115
  }
1122
1116
 
@@ -1128,7 +1122,7 @@ class GetApprovalTeamCommand extends smithyClient.Command
1128
1122
  })
1129
1123
  .s("AWSFluffyCoreService", "GetApprovalTeam", {})
1130
1124
  .n("MPAClient", "GetApprovalTeamCommand")
1131
- .sc(GetApprovalTeam)
1125
+ .sc(GetApprovalTeam$)
1132
1126
  .build() {
1133
1127
  }
1134
1128
 
@@ -1140,7 +1134,7 @@ class GetIdentitySourceCommand extends smithyClient.Command
1140
1134
  })
1141
1135
  .s("AWSFluffyCoreService", "GetIdentitySource", {})
1142
1136
  .n("MPAClient", "GetIdentitySourceCommand")
1143
- .sc(GetIdentitySource)
1137
+ .sc(GetIdentitySource$)
1144
1138
  .build() {
1145
1139
  }
1146
1140
 
@@ -1152,7 +1146,7 @@ class GetPolicyVersionCommand extends smithyClient.Command
1152
1146
  })
1153
1147
  .s("AWSFluffyCoreService", "GetPolicyVersion", {})
1154
1148
  .n("MPAClient", "GetPolicyVersionCommand")
1155
- .sc(GetPolicyVersion)
1149
+ .sc(GetPolicyVersion$)
1156
1150
  .build() {
1157
1151
  }
1158
1152
 
@@ -1164,7 +1158,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
1164
1158
  })
1165
1159
  .s("AWSFluffyCoreService", "GetResourcePolicy", {})
1166
1160
  .n("MPAClient", "GetResourcePolicyCommand")
1167
- .sc(GetResourcePolicy)
1161
+ .sc(GetResourcePolicy$)
1168
1162
  .build() {
1169
1163
  }
1170
1164
 
@@ -1176,7 +1170,7 @@ class GetSessionCommand extends smithyClient.Command
1176
1170
  })
1177
1171
  .s("AWSFluffyCoreService", "GetSession", {})
1178
1172
  .n("MPAClient", "GetSessionCommand")
1179
- .sc(GetSession)
1173
+ .sc(GetSession$)
1180
1174
  .build() {
1181
1175
  }
1182
1176
 
@@ -1188,7 +1182,7 @@ class ListApprovalTeamsCommand extends smithyClient.Command
1188
1182
  })
1189
1183
  .s("AWSFluffyCoreService", "ListApprovalTeams", {})
1190
1184
  .n("MPAClient", "ListApprovalTeamsCommand")
1191
- .sc(ListApprovalTeams)
1185
+ .sc(ListApprovalTeams$)
1192
1186
  .build() {
1193
1187
  }
1194
1188
 
@@ -1200,7 +1194,7 @@ class ListIdentitySourcesCommand extends smithyClient.Command
1200
1194
  })
1201
1195
  .s("AWSFluffyCoreService", "ListIdentitySources", {})
1202
1196
  .n("MPAClient", "ListIdentitySourcesCommand")
1203
- .sc(ListIdentitySources)
1197
+ .sc(ListIdentitySources$)
1204
1198
  .build() {
1205
1199
  }
1206
1200
 
@@ -1212,7 +1206,7 @@ class ListPoliciesCommand extends smithyClient.Command
1212
1206
  })
1213
1207
  .s("AWSFluffyCoreService", "ListPolicies", {})
1214
1208
  .n("MPAClient", "ListPoliciesCommand")
1215
- .sc(ListPolicies)
1209
+ .sc(ListPolicies$)
1216
1210
  .build() {
1217
1211
  }
1218
1212
 
@@ -1224,7 +1218,7 @@ class ListPolicyVersionsCommand extends smithyClient.Command
1224
1218
  })
1225
1219
  .s("AWSFluffyCoreService", "ListPolicyVersions", {})
1226
1220
  .n("MPAClient", "ListPolicyVersionsCommand")
1227
- .sc(ListPolicyVersions)
1221
+ .sc(ListPolicyVersions$)
1228
1222
  .build() {
1229
1223
  }
1230
1224
 
@@ -1236,7 +1230,7 @@ class ListResourcePoliciesCommand extends smithyClient.Command
1236
1230
  })
1237
1231
  .s("AWSFluffyCoreService", "ListResourcePolicies", {})
1238
1232
  .n("MPAClient", "ListResourcePoliciesCommand")
1239
- .sc(ListResourcePolicies)
1233
+ .sc(ListResourcePolicies$)
1240
1234
  .build() {
1241
1235
  }
1242
1236
 
@@ -1248,7 +1242,7 @@ class ListSessionsCommand extends smithyClient.Command
1248
1242
  })
1249
1243
  .s("AWSFluffyCoreService", "ListSessions", {})
1250
1244
  .n("MPAClient", "ListSessionsCommand")
1251
- .sc(ListSessions)
1245
+ .sc(ListSessions$)
1252
1246
  .build() {
1253
1247
  }
1254
1248
 
@@ -1260,7 +1254,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1260
1254
  })
1261
1255
  .s("AWSFluffyCoreService", "ListTagsForResource", {})
1262
1256
  .n("MPAClient", "ListTagsForResourceCommand")
1263
- .sc(ListTagsForResource)
1257
+ .sc(ListTagsForResource$)
1264
1258
  .build() {
1265
1259
  }
1266
1260
 
@@ -1272,7 +1266,7 @@ class StartActiveApprovalTeamDeletionCommand extends smithyClient.Command
1272
1266
  })
1273
1267
  .s("AWSFluffyCoreService", "StartActiveApprovalTeamDeletion", {})
1274
1268
  .n("MPAClient", "StartActiveApprovalTeamDeletionCommand")
1275
- .sc(StartActiveApprovalTeamDeletion)
1269
+ .sc(StartActiveApprovalTeamDeletion$)
1276
1270
  .build() {
1277
1271
  }
1278
1272
 
@@ -1284,7 +1278,7 @@ class TagResourceCommand extends smithyClient.Command
1284
1278
  })
1285
1279
  .s("AWSFluffyCoreService", "TagResource", {})
1286
1280
  .n("MPAClient", "TagResourceCommand")
1287
- .sc(TagResource)
1281
+ .sc(TagResource$)
1288
1282
  .build() {
1289
1283
  }
1290
1284
 
@@ -1296,7 +1290,7 @@ class UntagResourceCommand extends smithyClient.Command
1296
1290
  })
1297
1291
  .s("AWSFluffyCoreService", "UntagResource", {})
1298
1292
  .n("MPAClient", "UntagResourceCommand")
1299
- .sc(UntagResource)
1293
+ .sc(UntagResource$)
1300
1294
  .build() {
1301
1295
  }
1302
1296
 
@@ -1308,7 +1302,7 @@ class UpdateApprovalTeamCommand extends smithyClient.Command
1308
1302
  })
1309
1303
  .s("AWSFluffyCoreService", "UpdateApprovalTeam", {})
1310
1304
  .n("MPAClient", "UpdateApprovalTeamCommand")
1311
- .sc(UpdateApprovalTeam)
1305
+ .sc(UpdateApprovalTeam$)
1312
1306
  .build() {
1313
1307
  }
1314
1308
 
@@ -1453,54 +1447,148 @@ Object.defineProperty(exports, "__Client", {
1453
1447
  enumerable: true,
1454
1448
  get: function () { return smithyClient.Client; }
1455
1449
  });
1456
- exports.AccessDeniedException = AccessDeniedException$1;
1450
+ exports.AccessDeniedException = AccessDeniedException;
1451
+ exports.AccessDeniedException$ = AccessDeniedException$;
1457
1452
  exports.ActionCompletionStrategy = ActionCompletionStrategy;
1453
+ exports.ApprovalStrategy$ = ApprovalStrategy$;
1454
+ exports.ApprovalStrategyResponse$ = ApprovalStrategyResponse$;
1455
+ exports.ApprovalTeamRequestApprover$ = ApprovalTeamRequestApprover$;
1458
1456
  exports.ApprovalTeamStatus = ApprovalTeamStatus;
1459
1457
  exports.ApprovalTeamStatusCode = ApprovalTeamStatusCode;
1458
+ exports.CancelSession$ = CancelSession$;
1460
1459
  exports.CancelSessionCommand = CancelSessionCommand;
1461
- exports.ConflictException = ConflictException$1;
1460
+ exports.CancelSessionRequest$ = CancelSessionRequest$;
1461
+ exports.CancelSessionResponse$ = CancelSessionResponse$;
1462
+ exports.ConflictException = ConflictException;
1463
+ exports.ConflictException$ = ConflictException$;
1464
+ exports.CreateApprovalTeam$ = CreateApprovalTeam$;
1462
1465
  exports.CreateApprovalTeamCommand = CreateApprovalTeamCommand;
1466
+ exports.CreateApprovalTeamRequest$ = CreateApprovalTeamRequest$;
1467
+ exports.CreateApprovalTeamResponse$ = CreateApprovalTeamResponse$;
1468
+ exports.CreateIdentitySource$ = CreateIdentitySource$;
1463
1469
  exports.CreateIdentitySourceCommand = CreateIdentitySourceCommand;
1470
+ exports.CreateIdentitySourceRequest$ = CreateIdentitySourceRequest$;
1471
+ exports.CreateIdentitySourceResponse$ = CreateIdentitySourceResponse$;
1472
+ exports.DeleteIdentitySource$ = DeleteIdentitySource$;
1464
1473
  exports.DeleteIdentitySourceCommand = DeleteIdentitySourceCommand;
1474
+ exports.DeleteIdentitySourceRequest$ = DeleteIdentitySourceRequest$;
1475
+ exports.DeleteInactiveApprovalTeamVersion$ = DeleteInactiveApprovalTeamVersion$;
1465
1476
  exports.DeleteInactiveApprovalTeamVersionCommand = DeleteInactiveApprovalTeamVersionCommand;
1477
+ exports.DeleteInactiveApprovalTeamVersionRequest$ = DeleteInactiveApprovalTeamVersionRequest$;
1478
+ exports.DeleteInactiveApprovalTeamVersionResponse$ = DeleteInactiveApprovalTeamVersionResponse$;
1479
+ exports.Filter$ = Filter$;
1466
1480
  exports.FilterField = FilterField;
1481
+ exports.GetApprovalTeam$ = GetApprovalTeam$;
1467
1482
  exports.GetApprovalTeamCommand = GetApprovalTeamCommand;
1483
+ exports.GetApprovalTeamRequest$ = GetApprovalTeamRequest$;
1484
+ exports.GetApprovalTeamResponse$ = GetApprovalTeamResponse$;
1485
+ exports.GetApprovalTeamResponseApprover$ = GetApprovalTeamResponseApprover$;
1486
+ exports.GetIdentitySource$ = GetIdentitySource$;
1468
1487
  exports.GetIdentitySourceCommand = GetIdentitySourceCommand;
1488
+ exports.GetIdentitySourceRequest$ = GetIdentitySourceRequest$;
1489
+ exports.GetIdentitySourceResponse$ = GetIdentitySourceResponse$;
1490
+ exports.GetPolicyVersion$ = GetPolicyVersion$;
1469
1491
  exports.GetPolicyVersionCommand = GetPolicyVersionCommand;
1492
+ exports.GetPolicyVersionRequest$ = GetPolicyVersionRequest$;
1493
+ exports.GetPolicyVersionResponse$ = GetPolicyVersionResponse$;
1494
+ exports.GetResourcePolicy$ = GetResourcePolicy$;
1470
1495
  exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
1496
+ exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
1497
+ exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
1498
+ exports.GetSession$ = GetSession$;
1471
1499
  exports.GetSessionCommand = GetSessionCommand;
1500
+ exports.GetSessionRequest$ = GetSessionRequest$;
1501
+ exports.GetSessionResponse$ = GetSessionResponse$;
1502
+ exports.GetSessionResponseApproverResponse$ = GetSessionResponseApproverResponse$;
1503
+ exports.IamIdentityCenter$ = IamIdentityCenter$;
1504
+ exports.IamIdentityCenterForGet$ = IamIdentityCenterForGet$;
1505
+ exports.IamIdentityCenterForList$ = IamIdentityCenterForList$;
1506
+ exports.IdentitySourceForList$ = IdentitySourceForList$;
1507
+ exports.IdentitySourceParameters$ = IdentitySourceParameters$;
1508
+ exports.IdentitySourceParametersForGet$ = IdentitySourceParametersForGet$;
1509
+ exports.IdentitySourceParametersForList$ = IdentitySourceParametersForList$;
1472
1510
  exports.IdentitySourceStatus = IdentitySourceStatus;
1473
1511
  exports.IdentitySourceStatusCode = IdentitySourceStatusCode;
1474
1512
  exports.IdentitySourceType = IdentitySourceType;
1475
1513
  exports.IdentityStatus = IdentityStatus;
1476
- exports.InternalServerException = InternalServerException$1;
1477
- exports.InvalidParameterException = InvalidParameterException$1;
1514
+ exports.InternalServerException = InternalServerException;
1515
+ exports.InternalServerException$ = InternalServerException$;
1516
+ exports.InvalidParameterException = InvalidParameterException;
1517
+ exports.InvalidParameterException$ = InvalidParameterException$;
1518
+ exports.ListApprovalTeams$ = ListApprovalTeams$;
1478
1519
  exports.ListApprovalTeamsCommand = ListApprovalTeamsCommand;
1520
+ exports.ListApprovalTeamsRequest$ = ListApprovalTeamsRequest$;
1521
+ exports.ListApprovalTeamsResponse$ = ListApprovalTeamsResponse$;
1522
+ exports.ListApprovalTeamsResponseApprovalTeam$ = ListApprovalTeamsResponseApprovalTeam$;
1523
+ exports.ListIdentitySources$ = ListIdentitySources$;
1479
1524
  exports.ListIdentitySourcesCommand = ListIdentitySourcesCommand;
1525
+ exports.ListIdentitySourcesRequest$ = ListIdentitySourcesRequest$;
1526
+ exports.ListIdentitySourcesResponse$ = ListIdentitySourcesResponse$;
1527
+ exports.ListPolicies$ = ListPolicies$;
1480
1528
  exports.ListPoliciesCommand = ListPoliciesCommand;
1529
+ exports.ListPoliciesRequest$ = ListPoliciesRequest$;
1530
+ exports.ListPoliciesResponse$ = ListPoliciesResponse$;
1531
+ exports.ListPolicyVersions$ = ListPolicyVersions$;
1481
1532
  exports.ListPolicyVersionsCommand = ListPolicyVersionsCommand;
1533
+ exports.ListPolicyVersionsRequest$ = ListPolicyVersionsRequest$;
1534
+ exports.ListPolicyVersionsResponse$ = ListPolicyVersionsResponse$;
1535
+ exports.ListResourcePolicies$ = ListResourcePolicies$;
1482
1536
  exports.ListResourcePoliciesCommand = ListResourcePoliciesCommand;
1537
+ exports.ListResourcePoliciesRequest$ = ListResourcePoliciesRequest$;
1538
+ exports.ListResourcePoliciesResponse$ = ListResourcePoliciesResponse$;
1539
+ exports.ListResourcePoliciesResponseResourcePolicy$ = ListResourcePoliciesResponseResourcePolicy$;
1540
+ exports.ListSessions$ = ListSessions$;
1483
1541
  exports.ListSessionsCommand = ListSessionsCommand;
1542
+ exports.ListSessionsRequest$ = ListSessionsRequest$;
1543
+ exports.ListSessionsResponse$ = ListSessionsResponse$;
1544
+ exports.ListSessionsResponseSession$ = ListSessionsResponseSession$;
1545
+ exports.ListTagsForResource$ = ListTagsForResource$;
1484
1546
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1547
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1548
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1485
1549
  exports.MPA = MPA;
1486
1550
  exports.MPAClient = MPAClient;
1487
- exports.MPAServiceException = MPAServiceException$1;
1551
+ exports.MPAServiceException = MPAServiceException;
1552
+ exports.MPAServiceException$ = MPAServiceException$;
1553
+ exports.MofNApprovalStrategy$ = MofNApprovalStrategy$;
1488
1554
  exports.Operator = Operator;
1555
+ exports.PendingUpdate$ = PendingUpdate$;
1556
+ exports.Policy$ = Policy$;
1557
+ exports.PolicyReference$ = PolicyReference$;
1489
1558
  exports.PolicyStatus = PolicyStatus;
1490
1559
  exports.PolicyType = PolicyType;
1491
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1492
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1560
+ exports.PolicyVersion$ = PolicyVersion$;
1561
+ exports.PolicyVersionSummary$ = PolicyVersionSummary$;
1562
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1563
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1564
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1565
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1493
1566
  exports.SessionExecutionStatus = SessionExecutionStatus;
1494
1567
  exports.SessionResponse = SessionResponse;
1495
1568
  exports.SessionStatus = SessionStatus;
1496
1569
  exports.SessionStatusCode = SessionStatusCode;
1570
+ exports.StartActiveApprovalTeamDeletion$ = StartActiveApprovalTeamDeletion$;
1497
1571
  exports.StartActiveApprovalTeamDeletionCommand = StartActiveApprovalTeamDeletionCommand;
1572
+ exports.StartActiveApprovalTeamDeletionRequest$ = StartActiveApprovalTeamDeletionRequest$;
1573
+ exports.StartActiveApprovalTeamDeletionResponse$ = StartActiveApprovalTeamDeletionResponse$;
1574
+ exports.TagResource$ = TagResource$;
1498
1575
  exports.TagResourceCommand = TagResourceCommand;
1499
- exports.ThrottlingException = ThrottlingException$1;
1500
- exports.TooManyTagsException = TooManyTagsException$1;
1576
+ exports.TagResourceRequest$ = TagResourceRequest$;
1577
+ exports.TagResourceResponse$ = TagResourceResponse$;
1578
+ exports.ThrottlingException = ThrottlingException;
1579
+ exports.ThrottlingException$ = ThrottlingException$;
1580
+ exports.TooManyTagsException = TooManyTagsException;
1581
+ exports.TooManyTagsException$ = TooManyTagsException$;
1582
+ exports.UntagResource$ = UntagResource$;
1501
1583
  exports.UntagResourceCommand = UntagResourceCommand;
1584
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1585
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1586
+ exports.UpdateApprovalTeam$ = UpdateApprovalTeam$;
1502
1587
  exports.UpdateApprovalTeamCommand = UpdateApprovalTeamCommand;
1503
- exports.ValidationException = ValidationException$1;
1588
+ exports.UpdateApprovalTeamRequest$ = UpdateApprovalTeamRequest$;
1589
+ exports.UpdateApprovalTeamResponse$ = UpdateApprovalTeamResponse$;
1590
+ exports.ValidationException = ValidationException;
1591
+ exports.ValidationException$ = ValidationException$;
1504
1592
  exports.paginateListApprovalTeams = paginateListApprovalTeams;
1505
1593
  exports.paginateListIdentitySources = paginateListIdentitySources;
1506
1594
  exports.paginateListPolicies = paginateListPolicies;