@aws-sdk/client-verifiedpermissions 3.952.0 → 3.954.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +597 -390
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/BatchGetPolicyCommand.js +2 -2
- package/dist-es/commands/BatchIsAuthorizedCommand.js +2 -2
- package/dist-es/commands/BatchIsAuthorizedWithTokenCommand.js +2 -2
- package/dist-es/commands/CreateIdentitySourceCommand.js +2 -2
- package/dist-es/commands/CreatePolicyCommand.js +2 -2
- package/dist-es/commands/CreatePolicyStoreCommand.js +2 -2
- package/dist-es/commands/CreatePolicyTemplateCommand.js +2 -2
- package/dist-es/commands/DeleteIdentitySourceCommand.js +2 -2
- package/dist-es/commands/DeletePolicyCommand.js +2 -2
- package/dist-es/commands/DeletePolicyStoreCommand.js +2 -2
- package/dist-es/commands/DeletePolicyTemplateCommand.js +2 -2
- package/dist-es/commands/GetIdentitySourceCommand.js +2 -2
- package/dist-es/commands/GetPolicyCommand.js +2 -2
- package/dist-es/commands/GetPolicyStoreCommand.js +2 -2
- package/dist-es/commands/GetPolicyTemplateCommand.js +2 -2
- package/dist-es/commands/GetSchemaCommand.js +2 -2
- package/dist-es/commands/IsAuthorizedCommand.js +2 -2
- package/dist-es/commands/IsAuthorizedWithTokenCommand.js +2 -2
- package/dist-es/commands/ListIdentitySourcesCommand.js +2 -2
- package/dist-es/commands/ListPoliciesCommand.js +2 -2
- package/dist-es/commands/ListPolicyStoresCommand.js +2 -2
- package/dist-es/commands/ListPolicyTemplatesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutSchemaCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateIdentitySourceCommand.js +2 -2
- package/dist-es/commands/UpdatePolicyCommand.js +2 -2
- package/dist-es/commands/UpdatePolicyStoreCommand.js +2 -2
- package/dist-es/commands/UpdatePolicyTemplateCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +399 -364
- package/dist-types/VerifiedPermissionsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +173 -228
- package/dist-types/ts3.4/VerifiedPermissionsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +172 -230
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class VerifiedPermissionsClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class VerifiedPermissionsServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, VerifiedPermissionsServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends VerifiedPermissionsServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends VerifiedPermis
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class InternalServerException extends VerifiedPermissionsServiceException {
|
|
133
133
|
name = "InternalServerException";
|
|
134
134
|
$fault = "server";
|
|
135
135
|
$retryable = {};
|
|
@@ -141,8 +141,8 @@ let InternalServerException$1 = class InternalServerException extends VerifiedPe
|
|
|
141
141
|
});
|
|
142
142
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
143
143
|
}
|
|
144
|
-
}
|
|
145
|
-
|
|
144
|
+
}
|
|
145
|
+
class ThrottlingException extends VerifiedPermissionsServiceException {
|
|
146
146
|
name = "ThrottlingException";
|
|
147
147
|
$fault = "client";
|
|
148
148
|
$retryable = {
|
|
@@ -160,8 +160,8 @@ let ThrottlingException$1 = class ThrottlingException extends VerifiedPermission
|
|
|
160
160
|
this.serviceCode = opts.serviceCode;
|
|
161
161
|
this.quotaCode = opts.quotaCode;
|
|
162
162
|
}
|
|
163
|
-
}
|
|
164
|
-
|
|
163
|
+
}
|
|
164
|
+
class ValidationException extends VerifiedPermissionsServiceException {
|
|
165
165
|
name = "ValidationException";
|
|
166
166
|
$fault = "client";
|
|
167
167
|
fieldList;
|
|
@@ -174,8 +174,8 @@ let ValidationException$1 = class ValidationException extends VerifiedPermission
|
|
|
174
174
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
175
175
|
this.fieldList = opts.fieldList;
|
|
176
176
|
}
|
|
177
|
-
}
|
|
178
|
-
|
|
177
|
+
}
|
|
178
|
+
class ResourceNotFoundException extends VerifiedPermissionsServiceException {
|
|
179
179
|
name = "ResourceNotFoundException";
|
|
180
180
|
$fault = "client";
|
|
181
181
|
resourceId;
|
|
@@ -190,8 +190,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Verifi
|
|
|
190
190
|
this.resourceId = opts.resourceId;
|
|
191
191
|
this.resourceType = opts.resourceType;
|
|
192
192
|
}
|
|
193
|
-
}
|
|
194
|
-
|
|
193
|
+
}
|
|
194
|
+
class ConflictException extends VerifiedPermissionsServiceException {
|
|
195
195
|
name = "ConflictException";
|
|
196
196
|
$fault = "client";
|
|
197
197
|
resources;
|
|
@@ -204,8 +204,8 @@ let ConflictException$1 = class ConflictException extends VerifiedPermissionsSer
|
|
|
204
204
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
205
205
|
this.resources = opts.resources;
|
|
206
206
|
}
|
|
207
|
-
}
|
|
208
|
-
|
|
207
|
+
}
|
|
208
|
+
class ServiceQuotaExceededException extends VerifiedPermissionsServiceException {
|
|
209
209
|
name = "ServiceQuotaExceededException";
|
|
210
210
|
$fault = "client";
|
|
211
211
|
resourceId;
|
|
@@ -224,8 +224,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
224
224
|
this.serviceCode = opts.serviceCode;
|
|
225
225
|
this.quotaCode = opts.quotaCode;
|
|
226
226
|
}
|
|
227
|
-
}
|
|
228
|
-
|
|
227
|
+
}
|
|
228
|
+
class InvalidStateException extends VerifiedPermissionsServiceException {
|
|
229
229
|
name = "InvalidStateException";
|
|
230
230
|
$fault = "client";
|
|
231
231
|
constructor(opts) {
|
|
@@ -236,8 +236,8 @@ let InvalidStateException$1 = class InvalidStateException extends VerifiedPermis
|
|
|
236
236
|
});
|
|
237
237
|
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
238
238
|
}
|
|
239
|
-
}
|
|
240
|
-
|
|
239
|
+
}
|
|
240
|
+
class TooManyTagsException extends VerifiedPermissionsServiceException {
|
|
241
241
|
name = "TooManyTagsException";
|
|
242
242
|
$fault = "client";
|
|
243
243
|
resourceName;
|
|
@@ -250,7 +250,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends VerifiedPermissi
|
|
|
250
250
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
251
251
|
this.resourceName = opts.resourceName;
|
|
252
252
|
}
|
|
253
|
-
}
|
|
253
|
+
}
|
|
254
254
|
|
|
255
255
|
const _ADE = "AccessDeniedException";
|
|
256
256
|
const _AI = "ActionId";
|
|
@@ -603,9 +603,9 @@ var SchemaJson = [0, n0, _SJ, 8, 0];
|
|
|
603
603
|
var StaticPolicyDescription = [0, n0, _SPD, 8, 0];
|
|
604
604
|
var StringAttribute = [0, n0, _SA, 8, 0];
|
|
605
605
|
var Token = [0, n0, _T, 8, 0];
|
|
606
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
607
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
608
|
-
var ActionIdentifier = [
|
|
606
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
607
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
608
|
+
var ActionIdentifier$ = [
|
|
609
609
|
3,
|
|
610
610
|
n0,
|
|
611
611
|
_AIc,
|
|
@@ -616,10 +616,10 @@ var ActionIdentifier = [
|
|
|
616
616
|
[() => ActionId, 0],
|
|
617
617
|
],
|
|
618
618
|
];
|
|
619
|
-
var BatchGetPolicyErrorItem = [3, n0, _BGPEI, 0, [_co, _pSI, _pI, _m], [0, 0, 0, 0]];
|
|
620
|
-
var BatchGetPolicyInput = [3, n0, _BGPI, 0, [_r], [() => BatchGetPolicyInputList]];
|
|
621
|
-
var BatchGetPolicyInputItem = [3, n0, _BGPII, 0, [_pSI, _pI], [0, 0]];
|
|
622
|
-
var BatchGetPolicyOutput = [
|
|
619
|
+
var BatchGetPolicyErrorItem$ = [3, n0, _BGPEI, 0, [_co, _pSI, _pI, _m], [0, 0, 0, 0]];
|
|
620
|
+
var BatchGetPolicyInput$ = [3, n0, _BGPI, 0, [_r], [() => BatchGetPolicyInputList]];
|
|
621
|
+
var BatchGetPolicyInputItem$ = [3, n0, _BGPII, 0, [_pSI, _pI], [0, 0]];
|
|
622
|
+
var BatchGetPolicyOutput$ = [
|
|
623
623
|
3,
|
|
624
624
|
n0,
|
|
625
625
|
_BGPO,
|
|
@@ -627,36 +627,36 @@ var BatchGetPolicyOutput = [
|
|
|
627
627
|
[_re, _er],
|
|
628
628
|
[[() => BatchGetPolicyOutputList, 0], () => BatchGetPolicyErrorList],
|
|
629
629
|
];
|
|
630
|
-
var BatchGetPolicyOutputItem = [
|
|
630
|
+
var BatchGetPolicyOutputItem$ = [
|
|
631
631
|
3,
|
|
632
632
|
n0,
|
|
633
633
|
_BGPOI,
|
|
634
634
|
0,
|
|
635
635
|
[_pSI, _pI, _pT, _d, _cD, _lUD],
|
|
636
|
-
[0, 0, 0, [() => PolicyDefinitionDetail
|
|
636
|
+
[0, 0, 0, [() => PolicyDefinitionDetail$, 0], 5, 5],
|
|
637
637
|
];
|
|
638
|
-
var BatchIsAuthorizedInput = [
|
|
638
|
+
var BatchIsAuthorizedInput$ = [
|
|
639
639
|
3,
|
|
640
640
|
n0,
|
|
641
641
|
_BIAI,
|
|
642
642
|
0,
|
|
643
643
|
[_pSI, _en, _r],
|
|
644
|
-
[0, [() => EntitiesDefinition
|
|
644
|
+
[0, [() => EntitiesDefinition$, 0], [() => BatchIsAuthorizedInputList, 0]],
|
|
645
645
|
];
|
|
646
|
-
var BatchIsAuthorizedInputItem = [
|
|
646
|
+
var BatchIsAuthorizedInputItem$ = [
|
|
647
647
|
3,
|
|
648
648
|
n0,
|
|
649
649
|
_BIAII,
|
|
650
650
|
0,
|
|
651
651
|
[_p, _a, _res, _con],
|
|
652
652
|
[
|
|
653
|
-
[() => EntityIdentifier
|
|
654
|
-
[() => ActionIdentifier
|
|
655
|
-
[() => EntityIdentifier
|
|
656
|
-
[() => ContextDefinition
|
|
653
|
+
[() => EntityIdentifier$, 0],
|
|
654
|
+
[() => ActionIdentifier$, 0],
|
|
655
|
+
[() => EntityIdentifier$, 0],
|
|
656
|
+
[() => ContextDefinition$, 0],
|
|
657
657
|
],
|
|
658
658
|
];
|
|
659
|
-
var BatchIsAuthorizedOutput = [
|
|
659
|
+
var BatchIsAuthorizedOutput$ = [
|
|
660
660
|
3,
|
|
661
661
|
n0,
|
|
662
662
|
_BIAO,
|
|
@@ -664,15 +664,15 @@ var BatchIsAuthorizedOutput = [
|
|
|
664
664
|
[_re],
|
|
665
665
|
[[() => BatchIsAuthorizedOutputList, 0]],
|
|
666
666
|
];
|
|
667
|
-
var BatchIsAuthorizedOutputItem = [
|
|
667
|
+
var BatchIsAuthorizedOutputItem$ = [
|
|
668
668
|
3,
|
|
669
669
|
n0,
|
|
670
670
|
_BIAOI,
|
|
671
671
|
0,
|
|
672
672
|
[_req, _de, _dP, _er],
|
|
673
|
-
[[() => BatchIsAuthorizedInputItem
|
|
673
|
+
[[() => BatchIsAuthorizedInputItem$, 0], 0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0]],
|
|
674
674
|
];
|
|
675
|
-
var BatchIsAuthorizedWithTokenInput = [
|
|
675
|
+
var BatchIsAuthorizedWithTokenInput$ = [
|
|
676
676
|
3,
|
|
677
677
|
n0,
|
|
678
678
|
_BIAWTI,
|
|
@@ -682,43 +682,43 @@ var BatchIsAuthorizedWithTokenInput = [
|
|
|
682
682
|
0,
|
|
683
683
|
[() => Token, 0],
|
|
684
684
|
[() => Token, 0],
|
|
685
|
-
[() => EntitiesDefinition
|
|
685
|
+
[() => EntitiesDefinition$, 0],
|
|
686
686
|
[() => BatchIsAuthorizedWithTokenInputList, 0],
|
|
687
687
|
],
|
|
688
688
|
];
|
|
689
|
-
var BatchIsAuthorizedWithTokenInputItem = [
|
|
689
|
+
var BatchIsAuthorizedWithTokenInputItem$ = [
|
|
690
690
|
3,
|
|
691
691
|
n0,
|
|
692
692
|
_BIAWTII,
|
|
693
693
|
0,
|
|
694
694
|
[_a, _res, _con],
|
|
695
695
|
[
|
|
696
|
-
[() => ActionIdentifier
|
|
697
|
-
[() => EntityIdentifier
|
|
698
|
-
[() => ContextDefinition
|
|
696
|
+
[() => ActionIdentifier$, 0],
|
|
697
|
+
[() => EntityIdentifier$, 0],
|
|
698
|
+
[() => ContextDefinition$, 0],
|
|
699
699
|
],
|
|
700
700
|
];
|
|
701
|
-
var BatchIsAuthorizedWithTokenOutput = [
|
|
701
|
+
var BatchIsAuthorizedWithTokenOutput$ = [
|
|
702
702
|
3,
|
|
703
703
|
n0,
|
|
704
704
|
_BIAWTO,
|
|
705
705
|
0,
|
|
706
706
|
[_p, _re],
|
|
707
707
|
[
|
|
708
|
-
[() => EntityIdentifier
|
|
708
|
+
[() => EntityIdentifier$, 0],
|
|
709
709
|
[() => BatchIsAuthorizedWithTokenOutputList, 0],
|
|
710
710
|
],
|
|
711
711
|
];
|
|
712
|
-
var BatchIsAuthorizedWithTokenOutputItem = [
|
|
712
|
+
var BatchIsAuthorizedWithTokenOutputItem$ = [
|
|
713
713
|
3,
|
|
714
714
|
n0,
|
|
715
715
|
_BIAWTOI,
|
|
716
716
|
0,
|
|
717
717
|
[_req, _de, _dP, _er],
|
|
718
|
-
[[() => BatchIsAuthorizedWithTokenInputItem
|
|
718
|
+
[[() => BatchIsAuthorizedWithTokenInputItem$, 0], 0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0]],
|
|
719
719
|
];
|
|
720
|
-
var CognitoGroupConfiguration = [3, n0, _CGC, 0, [_gET], [[() => GroupEntityType, 0]]];
|
|
721
|
-
var CognitoGroupConfigurationDetail = [
|
|
720
|
+
var CognitoGroupConfiguration$ = [3, n0, _CGC, 0, [_gET], [[() => GroupEntityType, 0]]];
|
|
721
|
+
var CognitoGroupConfigurationDetail$ = [
|
|
722
722
|
3,
|
|
723
723
|
n0,
|
|
724
724
|
_CGCD,
|
|
@@ -726,7 +726,7 @@ var CognitoGroupConfigurationDetail = [
|
|
|
726
726
|
[_gET],
|
|
727
727
|
[[() => GroupEntityType, 0]],
|
|
728
728
|
];
|
|
729
|
-
var CognitoGroupConfigurationItem = [
|
|
729
|
+
var CognitoGroupConfigurationItem$ = [
|
|
730
730
|
3,
|
|
731
731
|
n0,
|
|
732
732
|
_CGCI,
|
|
@@ -734,31 +734,31 @@ var CognitoGroupConfigurationItem = [
|
|
|
734
734
|
[_gET],
|
|
735
735
|
[[() => GroupEntityType, 0]],
|
|
736
736
|
];
|
|
737
|
-
var CognitoUserPoolConfiguration = [
|
|
737
|
+
var CognitoUserPoolConfiguration$ = [
|
|
738
738
|
3,
|
|
739
739
|
n0,
|
|
740
740
|
_CUPC,
|
|
741
741
|
0,
|
|
742
742
|
[_uPA, _cI, _gC],
|
|
743
|
-
[0, [() => ClientIds, 0], [() => CognitoGroupConfiguration
|
|
743
|
+
[0, [() => ClientIds, 0], [() => CognitoGroupConfiguration$, 0]],
|
|
744
744
|
];
|
|
745
|
-
var CognitoUserPoolConfigurationDetail = [
|
|
745
|
+
var CognitoUserPoolConfigurationDetail$ = [
|
|
746
746
|
3,
|
|
747
747
|
n0,
|
|
748
748
|
_CUPCD,
|
|
749
749
|
0,
|
|
750
750
|
[_uPA, _cI, _i, _gC],
|
|
751
|
-
[0, [() => ClientIds, 0], 0, [() => CognitoGroupConfigurationDetail
|
|
751
|
+
[0, [() => ClientIds, 0], 0, [() => CognitoGroupConfigurationDetail$, 0]],
|
|
752
752
|
];
|
|
753
|
-
var CognitoUserPoolConfigurationItem = [
|
|
753
|
+
var CognitoUserPoolConfigurationItem$ = [
|
|
754
754
|
3,
|
|
755
755
|
n0,
|
|
756
756
|
_CUPCI,
|
|
757
757
|
0,
|
|
758
758
|
[_uPA, _cI, _i, _gC],
|
|
759
|
-
[0, [() => ClientIds, 0], 0, [() => CognitoGroupConfigurationItem
|
|
759
|
+
[0, [() => ClientIds, 0], 0, [() => CognitoGroupConfigurationItem$, 0]],
|
|
760
760
|
];
|
|
761
|
-
var ConflictException = [
|
|
761
|
+
var ConflictException$ = [
|
|
762
762
|
-3,
|
|
763
763
|
n0,
|
|
764
764
|
_CE,
|
|
@@ -766,42 +766,49 @@ var ConflictException = [
|
|
|
766
766
|
[_m, _reso],
|
|
767
767
|
[0, () => ResourceConflictList],
|
|
768
768
|
];
|
|
769
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
770
|
-
var CreateIdentitySourceInput = [
|
|
769
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
770
|
+
var CreateIdentitySourceInput$ = [
|
|
771
771
|
3,
|
|
772
772
|
n0,
|
|
773
773
|
_CISI,
|
|
774
774
|
0,
|
|
775
775
|
[_cT, _pSI, _conf, _pET],
|
|
776
|
-
[[0, 4], 0, [() => Configuration
|
|
776
|
+
[[0, 4], 0, [() => Configuration$, 0], [() => PrincipalEntityType, 0]],
|
|
777
777
|
];
|
|
778
|
-
var CreateIdentitySourceOutput = [
|
|
779
|
-
|
|
778
|
+
var CreateIdentitySourceOutput$ = [
|
|
779
|
+
3,
|
|
780
|
+
n0,
|
|
781
|
+
_CISO,
|
|
782
|
+
0,
|
|
783
|
+
[_cD, _iSI, _lUD, _pSI],
|
|
784
|
+
[5, 0, 5, 0],
|
|
785
|
+
];
|
|
786
|
+
var CreatePolicyInput$ = [
|
|
780
787
|
3,
|
|
781
788
|
n0,
|
|
782
789
|
_CPI,
|
|
783
790
|
0,
|
|
784
791
|
[_cT, _pSI, _d],
|
|
785
|
-
[[0, 4], 0, [() => PolicyDefinition
|
|
792
|
+
[[0, 4], 0, [() => PolicyDefinition$, 0]],
|
|
786
793
|
];
|
|
787
|
-
var CreatePolicyOutput = [
|
|
794
|
+
var CreatePolicyOutput$ = [
|
|
788
795
|
3,
|
|
789
796
|
n0,
|
|
790
797
|
_CPO,
|
|
791
798
|
0,
|
|
792
799
|
[_pSI, _pI, _pT, _p, _res, _ac, _cD, _lUD, _ef],
|
|
793
|
-
[0, 0, 0, [() => EntityIdentifier
|
|
800
|
+
[0, 0, 0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 5, 5, 0],
|
|
794
801
|
];
|
|
795
|
-
var CreatePolicyStoreInput = [
|
|
802
|
+
var CreatePolicyStoreInput$ = [
|
|
796
803
|
3,
|
|
797
804
|
n0,
|
|
798
805
|
_CPSI,
|
|
799
806
|
0,
|
|
800
807
|
[_cT, _vS, _des, _dPe, _t],
|
|
801
|
-
[[0, 4], () => ValidationSettings
|
|
808
|
+
[[0, 4], () => ValidationSettings$, [() => PolicyStoreDescription, 0], 0, 128 | 0],
|
|
802
809
|
];
|
|
803
|
-
var CreatePolicyStoreOutput = [3, n0, _CPSO, 0, [_pSI, _ar, _cD, _lUD], [0, 0, 5, 5]];
|
|
804
|
-
var CreatePolicyTemplateInput = [
|
|
810
|
+
var CreatePolicyStoreOutput$ = [3, n0, _CPSO, 0, [_pSI, _ar, _cD, _lUD], [0, 0, 5, 5]];
|
|
811
|
+
var CreatePolicyTemplateInput$ = [
|
|
805
812
|
3,
|
|
806
813
|
n0,
|
|
807
814
|
_CPTI,
|
|
@@ -809,17 +816,24 @@ var CreatePolicyTemplateInput = [
|
|
|
809
816
|
[_cT, _pSI, _des, _s],
|
|
810
817
|
[[0, 4], 0, [() => PolicyTemplateDescription, 0], [() => PolicyStatement, 0]],
|
|
811
818
|
];
|
|
812
|
-
var CreatePolicyTemplateOutput = [
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
var
|
|
821
|
-
var
|
|
822
|
-
var
|
|
819
|
+
var CreatePolicyTemplateOutput$ = [
|
|
820
|
+
3,
|
|
821
|
+
n0,
|
|
822
|
+
_CPTO,
|
|
823
|
+
0,
|
|
824
|
+
[_pSI, _pTI, _cD, _lUD],
|
|
825
|
+
[0, 0, 5, 5],
|
|
826
|
+
];
|
|
827
|
+
var DeleteIdentitySourceInput$ = [3, n0, _DISI, 0, [_pSI, _iSI], [0, 0]];
|
|
828
|
+
var DeleteIdentitySourceOutput$ = [3, n0, _DISO, 0, [], []];
|
|
829
|
+
var DeletePolicyInput$ = [3, n0, _DPI, 0, [_pSI, _pI], [0, 0]];
|
|
830
|
+
var DeletePolicyOutput$ = [3, n0, _DPO, 0, [], []];
|
|
831
|
+
var DeletePolicyStoreInput$ = [3, n0, _DPSI, 0, [_pSI], [0]];
|
|
832
|
+
var DeletePolicyStoreOutput$ = [3, n0, _DPSO, 0, [], []];
|
|
833
|
+
var DeletePolicyTemplateInput$ = [3, n0, _DPTI, 0, [_pSI, _pTI], [0, 0]];
|
|
834
|
+
var DeletePolicyTemplateOutput$ = [3, n0, _DPTO, 0, [], []];
|
|
835
|
+
var DeterminingPolicyItem$ = [3, n0, _DPIe, 0, [_pI], [0]];
|
|
836
|
+
var EntityIdentifier$ = [
|
|
823
837
|
3,
|
|
824
838
|
n0,
|
|
825
839
|
_EIn,
|
|
@@ -830,31 +844,31 @@ var EntityIdentifier = [
|
|
|
830
844
|
[() => EntityId, 0],
|
|
831
845
|
],
|
|
832
846
|
];
|
|
833
|
-
var EntityItem = [
|
|
847
|
+
var EntityItem$ = [
|
|
834
848
|
3,
|
|
835
849
|
n0,
|
|
836
850
|
_EInt,
|
|
837
851
|
0,
|
|
838
852
|
[_id, _at, _pa, _t],
|
|
839
853
|
[
|
|
840
|
-
[() => EntityIdentifier
|
|
854
|
+
[() => EntityIdentifier$, 0],
|
|
841
855
|
[() => EntityAttributes, 0],
|
|
842
856
|
[() => ParentList, 0],
|
|
843
857
|
[() => EntityCedarTags, 0],
|
|
844
858
|
],
|
|
845
859
|
];
|
|
846
|
-
var EvaluationErrorItem = [3, n0, _EEI, 8, [_eD], [0]];
|
|
847
|
-
var GetIdentitySourceInput = [3, n0, _GISI, 0, [_pSI, _iSI], [0, 0]];
|
|
848
|
-
var GetIdentitySourceOutput = [
|
|
860
|
+
var EvaluationErrorItem$ = [3, n0, _EEI, 8, [_eD], [0]];
|
|
861
|
+
var GetIdentitySourceInput$ = [3, n0, _GISI, 0, [_pSI, _iSI], [0, 0]];
|
|
862
|
+
var GetIdentitySourceOutput$ = [
|
|
849
863
|
3,
|
|
850
864
|
n0,
|
|
851
865
|
_GISO,
|
|
852
866
|
0,
|
|
853
867
|
[_cD, _det, _iSI, _lUD, _pSI, _pET, _conf],
|
|
854
|
-
[5, [() => IdentitySourceDetails
|
|
868
|
+
[5, [() => IdentitySourceDetails$, 0], 0, 5, 0, [() => PrincipalEntityType, 0], [() => ConfigurationDetail$, 0]],
|
|
855
869
|
];
|
|
856
|
-
var GetPolicyInput = [3, n0, _GPI, 0, [_pSI, _pI], [0, 0]];
|
|
857
|
-
var GetPolicyOutput = [
|
|
870
|
+
var GetPolicyInput$ = [3, n0, _GPI, 0, [_pSI, _pI], [0, 0]];
|
|
871
|
+
var GetPolicyOutput$ = [
|
|
858
872
|
3,
|
|
859
873
|
n0,
|
|
860
874
|
_GPO,
|
|
@@ -864,26 +878,26 @@ var GetPolicyOutput = [
|
|
|
864
878
|
0,
|
|
865
879
|
0,
|
|
866
880
|
0,
|
|
867
|
-
[() => EntityIdentifier
|
|
868
|
-
[() => EntityIdentifier
|
|
881
|
+
[() => EntityIdentifier$, 0],
|
|
882
|
+
[() => EntityIdentifier$, 0],
|
|
869
883
|
[() => ActionIdentifierList, 0],
|
|
870
|
-
[() => PolicyDefinitionDetail
|
|
884
|
+
[() => PolicyDefinitionDetail$, 0],
|
|
871
885
|
5,
|
|
872
886
|
5,
|
|
873
887
|
0,
|
|
874
888
|
],
|
|
875
889
|
];
|
|
876
|
-
var GetPolicyStoreInput = [3, n0, _GPSI, 0, [_pSI, _t], [0, 2]];
|
|
877
|
-
var GetPolicyStoreOutput = [
|
|
890
|
+
var GetPolicyStoreInput$ = [3, n0, _GPSI, 0, [_pSI, _t], [0, 2]];
|
|
891
|
+
var GetPolicyStoreOutput$ = [
|
|
878
892
|
3,
|
|
879
893
|
n0,
|
|
880
894
|
_GPSO,
|
|
881
895
|
0,
|
|
882
896
|
[_pSI, _ar, _vS, _cD, _lUD, _des, _dPe, _cV, _t],
|
|
883
|
-
[0, 0, () => ValidationSettings
|
|
897
|
+
[0, 0, () => ValidationSettings$, 5, 5, [() => PolicyStoreDescription, 0], 0, 0, 128 | 0],
|
|
884
898
|
];
|
|
885
|
-
var GetPolicyTemplateInput = [3, n0, _GPTI, 0, [_pSI, _pTI], [0, 0]];
|
|
886
|
-
var GetPolicyTemplateOutput = [
|
|
899
|
+
var GetPolicyTemplateInput$ = [3, n0, _GPTI, 0, [_pSI, _pTI], [0, 0]];
|
|
900
|
+
var GetPolicyTemplateOutput$ = [
|
|
887
901
|
3,
|
|
888
902
|
n0,
|
|
889
903
|
_GPTO,
|
|
@@ -891,8 +905,8 @@ var GetPolicyTemplateOutput = [
|
|
|
891
905
|
[_pSI, _pTI, _des, _s, _cD, _lUD],
|
|
892
906
|
[0, 0, [() => PolicyTemplateDescription, 0], [() => PolicyStatement, 0], 5, 5],
|
|
893
907
|
];
|
|
894
|
-
var GetSchemaInput = [3, n0, _GSI, 0, [_pSI], [0]];
|
|
895
|
-
var GetSchemaOutput = [
|
|
908
|
+
var GetSchemaInput$ = [3, n0, _GSI, 0, [_pSI], [0]];
|
|
909
|
+
var GetSchemaOutput$ = [
|
|
896
910
|
3,
|
|
897
911
|
n0,
|
|
898
912
|
_GSO,
|
|
@@ -900,7 +914,7 @@ var GetSchemaOutput = [
|
|
|
900
914
|
[_pSI, _sc, _cD, _lUD, _n],
|
|
901
915
|
[0, [() => SchemaJson, 0], 5, 5, [() => NamespaceList, 0]],
|
|
902
916
|
];
|
|
903
|
-
var IdentitySourceDetails = [
|
|
917
|
+
var IdentitySourceDetails$ = [
|
|
904
918
|
3,
|
|
905
919
|
n0,
|
|
906
920
|
_ISD,
|
|
@@ -908,16 +922,16 @@ var IdentitySourceDetails = [
|
|
|
908
922
|
[_cI, _uPA, _dU, _oII],
|
|
909
923
|
[[() => ClientIds, 0], 0, 0, 0],
|
|
910
924
|
];
|
|
911
|
-
var IdentitySourceFilter = [3, n0, _ISF, 0, [_pET], [[() => PrincipalEntityType, 0]]];
|
|
912
|
-
var IdentitySourceItem = [
|
|
925
|
+
var IdentitySourceFilter$ = [3, n0, _ISF, 0, [_pET], [[() => PrincipalEntityType, 0]]];
|
|
926
|
+
var IdentitySourceItem$ = [
|
|
913
927
|
3,
|
|
914
928
|
n0,
|
|
915
929
|
_ISI,
|
|
916
930
|
0,
|
|
917
931
|
[_cD, _det, _iSI, _lUD, _pSI, _pET, _conf],
|
|
918
|
-
[5, [() => IdentitySourceItemDetails
|
|
932
|
+
[5, [() => IdentitySourceItemDetails$, 0], 0, 5, 0, [() => PrincipalEntityType, 0], [() => ConfigurationItem$, 0]],
|
|
919
933
|
];
|
|
920
|
-
var IdentitySourceItemDetails = [
|
|
934
|
+
var IdentitySourceItemDetails$ = [
|
|
921
935
|
3,
|
|
922
936
|
n0,
|
|
923
937
|
_ISID,
|
|
@@ -925,11 +939,11 @@ var IdentitySourceItemDetails = [
|
|
|
925
939
|
[_cI, _uPA, _dU, _oII],
|
|
926
940
|
[[() => ClientIds, 0], 0, 0, 0],
|
|
927
941
|
];
|
|
928
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
929
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
930
|
-
var InvalidStateException = [-3, n0, _ISEn, { [_e]: _c, [_hE]: 406 }, [_m], [0]];
|
|
931
|
-
schema.TypeRegistry.for(n0).registerError(InvalidStateException
|
|
932
|
-
var IsAuthorizedInput = [
|
|
942
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
943
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
944
|
+
var InvalidStateException$ = [-3, n0, _ISEn, { [_e]: _c, [_hE]: 406 }, [_m], [0]];
|
|
945
|
+
schema.TypeRegistry.for(n0).registerError(InvalidStateException$, InvalidStateException);
|
|
946
|
+
var IsAuthorizedInput$ = [
|
|
933
947
|
3,
|
|
934
948
|
n0,
|
|
935
949
|
_IAI,
|
|
@@ -937,14 +951,14 @@ var IsAuthorizedInput = [
|
|
|
937
951
|
[_pSI, _p, _a, _res, _con, _en],
|
|
938
952
|
[
|
|
939
953
|
0,
|
|
940
|
-
[() => EntityIdentifier
|
|
941
|
-
[() => ActionIdentifier
|
|
942
|
-
[() => EntityIdentifier
|
|
943
|
-
[() => ContextDefinition
|
|
944
|
-
[() => EntitiesDefinition
|
|
954
|
+
[() => EntityIdentifier$, 0],
|
|
955
|
+
[() => ActionIdentifier$, 0],
|
|
956
|
+
[() => EntityIdentifier$, 0],
|
|
957
|
+
[() => ContextDefinition$, 0],
|
|
958
|
+
[() => EntitiesDefinition$, 0],
|
|
945
959
|
],
|
|
946
960
|
];
|
|
947
|
-
var IsAuthorizedOutput = [
|
|
961
|
+
var IsAuthorizedOutput$ = [
|
|
948
962
|
3,
|
|
949
963
|
n0,
|
|
950
964
|
_IAO,
|
|
@@ -952,7 +966,7 @@ var IsAuthorizedOutput = [
|
|
|
952
966
|
[_de, _dP, _er],
|
|
953
967
|
[0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0]],
|
|
954
968
|
];
|
|
955
|
-
var IsAuthorizedWithTokenInput = [
|
|
969
|
+
var IsAuthorizedWithTokenInput$ = [
|
|
956
970
|
3,
|
|
957
971
|
n0,
|
|
958
972
|
_IAWTI,
|
|
@@ -962,21 +976,21 @@ var IsAuthorizedWithTokenInput = [
|
|
|
962
976
|
0,
|
|
963
977
|
[() => Token, 0],
|
|
964
978
|
[() => Token, 0],
|
|
965
|
-
[() => ActionIdentifier
|
|
966
|
-
[() => EntityIdentifier
|
|
967
|
-
[() => ContextDefinition
|
|
968
|
-
[() => EntitiesDefinition
|
|
979
|
+
[() => ActionIdentifier$, 0],
|
|
980
|
+
[() => EntityIdentifier$, 0],
|
|
981
|
+
[() => ContextDefinition$, 0],
|
|
982
|
+
[() => EntitiesDefinition$, 0],
|
|
969
983
|
],
|
|
970
984
|
];
|
|
971
|
-
var IsAuthorizedWithTokenOutput = [
|
|
985
|
+
var IsAuthorizedWithTokenOutput$ = [
|
|
972
986
|
3,
|
|
973
987
|
n0,
|
|
974
988
|
_IAWTO,
|
|
975
989
|
0,
|
|
976
990
|
[_de, _dP, _er, _p],
|
|
977
|
-
[0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0], [() => EntityIdentifier
|
|
991
|
+
[0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0], [() => EntityIdentifier$, 0]],
|
|
978
992
|
];
|
|
979
|
-
var ListIdentitySourcesInput = [
|
|
993
|
+
var ListIdentitySourcesInput$ = [
|
|
980
994
|
3,
|
|
981
995
|
n0,
|
|
982
996
|
_LISI,
|
|
@@ -984,7 +998,7 @@ var ListIdentitySourcesInput = [
|
|
|
984
998
|
[_pSI, _nT, _mR, _f],
|
|
985
999
|
[0, 0, 1, [() => IdentitySourceFilters, 0]],
|
|
986
1000
|
];
|
|
987
|
-
var ListIdentitySourcesOutput = [
|
|
1001
|
+
var ListIdentitySourcesOutput$ = [
|
|
988
1002
|
3,
|
|
989
1003
|
n0,
|
|
990
1004
|
_LISO,
|
|
@@ -992,17 +1006,17 @@ var ListIdentitySourcesOutput = [
|
|
|
992
1006
|
[_nT, _iS],
|
|
993
1007
|
[0, [() => IdentitySources, 0]],
|
|
994
1008
|
];
|
|
995
|
-
var ListPoliciesInput = [
|
|
1009
|
+
var ListPoliciesInput$ = [
|
|
996
1010
|
3,
|
|
997
1011
|
n0,
|
|
998
1012
|
_LPI,
|
|
999
1013
|
0,
|
|
1000
1014
|
[_pSI, _nT, _mR, _fi],
|
|
1001
|
-
[0, 0, 1, [() => PolicyFilter
|
|
1015
|
+
[0, 0, 1, [() => PolicyFilter$, 0]],
|
|
1002
1016
|
];
|
|
1003
|
-
var ListPoliciesOutput = [3, n0, _LPO, 0, [_nT, _po], [0, [() => PolicyList, 0]]];
|
|
1004
|
-
var ListPolicyStoresInput = [3, n0, _LPSI, 0, [_nT, _mR], [0, 1]];
|
|
1005
|
-
var ListPolicyStoresOutput = [
|
|
1017
|
+
var ListPoliciesOutput$ = [3, n0, _LPO, 0, [_nT, _po], [0, [() => PolicyList, 0]]];
|
|
1018
|
+
var ListPolicyStoresInput$ = [3, n0, _LPSI, 0, [_nT, _mR], [0, 1]];
|
|
1019
|
+
var ListPolicyStoresOutput$ = [
|
|
1006
1020
|
3,
|
|
1007
1021
|
n0,
|
|
1008
1022
|
_LPSO,
|
|
@@ -1010,8 +1024,8 @@ var ListPolicyStoresOutput = [
|
|
|
1010
1024
|
[_nT, _pS],
|
|
1011
1025
|
[0, [() => PolicyStoreList, 0]],
|
|
1012
1026
|
];
|
|
1013
|
-
var ListPolicyTemplatesInput = [3, n0, _LPTI, 0, [_pSI, _nT, _mR], [0, 0, 1]];
|
|
1014
|
-
var ListPolicyTemplatesOutput = [
|
|
1027
|
+
var ListPolicyTemplatesInput$ = [3, n0, _LPTI, 0, [_pSI, _nT, _mR], [0, 0, 1]];
|
|
1028
|
+
var ListPolicyTemplatesOutput$ = [
|
|
1015
1029
|
3,
|
|
1016
1030
|
n0,
|
|
1017
1031
|
_LPTO,
|
|
@@ -1019,9 +1033,9 @@ var ListPolicyTemplatesOutput = [
|
|
|
1019
1033
|
[_nT, _pTo],
|
|
1020
1034
|
[0, [() => PolicyTemplatesList, 0]],
|
|
1021
1035
|
];
|
|
1022
|
-
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rA], [0]];
|
|
1023
|
-
var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_t], [128 | 0]];
|
|
1024
|
-
var OpenIdConnectAccessTokenConfiguration = [
|
|
1036
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_rA], [0]];
|
|
1037
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_t], [128 | 0]];
|
|
1038
|
+
var OpenIdConnectAccessTokenConfiguration$ = [
|
|
1025
1039
|
3,
|
|
1026
1040
|
n0,
|
|
1027
1041
|
_OICATC,
|
|
@@ -1029,7 +1043,7 @@ var OpenIdConnectAccessTokenConfiguration = [
|
|
|
1029
1043
|
[_pIC, _au],
|
|
1030
1044
|
[[() => Claim, 0], 64 | 0],
|
|
1031
1045
|
];
|
|
1032
|
-
var OpenIdConnectAccessTokenConfigurationDetail = [
|
|
1046
|
+
var OpenIdConnectAccessTokenConfigurationDetail$ = [
|
|
1033
1047
|
3,
|
|
1034
1048
|
n0,
|
|
1035
1049
|
_OICATCD,
|
|
@@ -1037,7 +1051,7 @@ var OpenIdConnectAccessTokenConfigurationDetail = [
|
|
|
1037
1051
|
[_pIC, _au],
|
|
1038
1052
|
[[() => Claim, 0], 64 | 0],
|
|
1039
1053
|
];
|
|
1040
|
-
var OpenIdConnectAccessTokenConfigurationItem = [
|
|
1054
|
+
var OpenIdConnectAccessTokenConfigurationItem$ = [
|
|
1041
1055
|
3,
|
|
1042
1056
|
n0,
|
|
1043
1057
|
_OICATCI,
|
|
@@ -1045,15 +1059,15 @@ var OpenIdConnectAccessTokenConfigurationItem = [
|
|
|
1045
1059
|
[_pIC, _au],
|
|
1046
1060
|
[[() => Claim, 0], 64 | 0],
|
|
1047
1061
|
];
|
|
1048
|
-
var OpenIdConnectConfiguration = [
|
|
1062
|
+
var OpenIdConnectConfiguration$ = [
|
|
1049
1063
|
3,
|
|
1050
1064
|
n0,
|
|
1051
1065
|
_OICC,
|
|
1052
1066
|
0,
|
|
1053
1067
|
[_i, _eIP, _gC, _tS],
|
|
1054
|
-
[0, [() => EntityIdPrefix, 0], [() => OpenIdConnectGroupConfiguration
|
|
1068
|
+
[0, [() => EntityIdPrefix, 0], [() => OpenIdConnectGroupConfiguration$, 0], [() => OpenIdConnectTokenSelection$, 0]],
|
|
1055
1069
|
];
|
|
1056
|
-
var OpenIdConnectConfigurationDetail = [
|
|
1070
|
+
var OpenIdConnectConfigurationDetail$ = [
|
|
1057
1071
|
3,
|
|
1058
1072
|
n0,
|
|
1059
1073
|
_OICCD,
|
|
@@ -1062,11 +1076,11 @@ var OpenIdConnectConfigurationDetail = [
|
|
|
1062
1076
|
[
|
|
1063
1077
|
0,
|
|
1064
1078
|
[() => EntityIdPrefix, 0],
|
|
1065
|
-
[() => OpenIdConnectGroupConfigurationDetail
|
|
1066
|
-
[() => OpenIdConnectTokenSelectionDetail
|
|
1079
|
+
[() => OpenIdConnectGroupConfigurationDetail$, 0],
|
|
1080
|
+
[() => OpenIdConnectTokenSelectionDetail$, 0],
|
|
1067
1081
|
],
|
|
1068
1082
|
];
|
|
1069
|
-
var OpenIdConnectConfigurationItem = [
|
|
1083
|
+
var OpenIdConnectConfigurationItem$ = [
|
|
1070
1084
|
3,
|
|
1071
1085
|
n0,
|
|
1072
1086
|
_OICCI,
|
|
@@ -1075,11 +1089,11 @@ var OpenIdConnectConfigurationItem = [
|
|
|
1075
1089
|
[
|
|
1076
1090
|
0,
|
|
1077
1091
|
[() => EntityIdPrefix, 0],
|
|
1078
|
-
[() => OpenIdConnectGroupConfigurationItem
|
|
1079
|
-
[() => OpenIdConnectTokenSelectionItem
|
|
1092
|
+
[() => OpenIdConnectGroupConfigurationItem$, 0],
|
|
1093
|
+
[() => OpenIdConnectTokenSelectionItem$, 0],
|
|
1080
1094
|
],
|
|
1081
1095
|
];
|
|
1082
|
-
var OpenIdConnectGroupConfiguration = [
|
|
1096
|
+
var OpenIdConnectGroupConfiguration$ = [
|
|
1083
1097
|
3,
|
|
1084
1098
|
n0,
|
|
1085
1099
|
_OICGC,
|
|
@@ -1090,7 +1104,7 @@ var OpenIdConnectGroupConfiguration = [
|
|
|
1090
1104
|
[() => GroupEntityType, 0],
|
|
1091
1105
|
],
|
|
1092
1106
|
];
|
|
1093
|
-
var OpenIdConnectGroupConfigurationDetail = [
|
|
1107
|
+
var OpenIdConnectGroupConfigurationDetail$ = [
|
|
1094
1108
|
3,
|
|
1095
1109
|
n0,
|
|
1096
1110
|
_OICGCD,
|
|
@@ -1101,7 +1115,7 @@ var OpenIdConnectGroupConfigurationDetail = [
|
|
|
1101
1115
|
[() => GroupEntityType, 0],
|
|
1102
1116
|
],
|
|
1103
1117
|
];
|
|
1104
|
-
var OpenIdConnectGroupConfigurationItem = [
|
|
1118
|
+
var OpenIdConnectGroupConfigurationItem$ = [
|
|
1105
1119
|
3,
|
|
1106
1120
|
n0,
|
|
1107
1121
|
_OICGCI,
|
|
@@ -1112,7 +1126,7 @@ var OpenIdConnectGroupConfigurationItem = [
|
|
|
1112
1126
|
[() => GroupEntityType, 0],
|
|
1113
1127
|
],
|
|
1114
1128
|
];
|
|
1115
|
-
var OpenIdConnectIdentityTokenConfiguration = [
|
|
1129
|
+
var OpenIdConnectIdentityTokenConfiguration$ = [
|
|
1116
1130
|
3,
|
|
1117
1131
|
n0,
|
|
1118
1132
|
_OICITC,
|
|
@@ -1123,7 +1137,7 @@ var OpenIdConnectIdentityTokenConfiguration = [
|
|
|
1123
1137
|
[() => ClientIds, 0],
|
|
1124
1138
|
],
|
|
1125
1139
|
];
|
|
1126
|
-
var OpenIdConnectIdentityTokenConfigurationDetail = [
|
|
1140
|
+
var OpenIdConnectIdentityTokenConfigurationDetail$ = [
|
|
1127
1141
|
3,
|
|
1128
1142
|
n0,
|
|
1129
1143
|
_OICITCD,
|
|
@@ -1134,7 +1148,7 @@ var OpenIdConnectIdentityTokenConfigurationDetail = [
|
|
|
1134
1148
|
[() => ClientIds, 0],
|
|
1135
1149
|
],
|
|
1136
1150
|
];
|
|
1137
|
-
var OpenIdConnectIdentityTokenConfigurationItem = [
|
|
1151
|
+
var OpenIdConnectIdentityTokenConfigurationItem$ = [
|
|
1138
1152
|
3,
|
|
1139
1153
|
n0,
|
|
1140
1154
|
_OICITCI,
|
|
@@ -1145,15 +1159,15 @@ var OpenIdConnectIdentityTokenConfigurationItem = [
|
|
|
1145
1159
|
[() => ClientIds, 0],
|
|
1146
1160
|
],
|
|
1147
1161
|
];
|
|
1148
|
-
var PolicyFilter = [
|
|
1162
|
+
var PolicyFilter$ = [
|
|
1149
1163
|
3,
|
|
1150
1164
|
n0,
|
|
1151
1165
|
_PF,
|
|
1152
1166
|
0,
|
|
1153
1167
|
[_p, _res, _pT, _pTI],
|
|
1154
|
-
[[() => EntityReference
|
|
1168
|
+
[[() => EntityReference$, 0], [() => EntityReference$, 0], 0, 0],
|
|
1155
1169
|
];
|
|
1156
|
-
var PolicyItem = [
|
|
1170
|
+
var PolicyItem$ = [
|
|
1157
1171
|
3,
|
|
1158
1172
|
n0,
|
|
1159
1173
|
_PI,
|
|
@@ -1163,16 +1177,16 @@ var PolicyItem = [
|
|
|
1163
1177
|
0,
|
|
1164
1178
|
0,
|
|
1165
1179
|
0,
|
|
1166
|
-
[() => EntityIdentifier
|
|
1167
|
-
[() => EntityIdentifier
|
|
1180
|
+
[() => EntityIdentifier$, 0],
|
|
1181
|
+
[() => EntityIdentifier$, 0],
|
|
1168
1182
|
[() => ActionIdentifierList, 0],
|
|
1169
|
-
[() => PolicyDefinitionItem
|
|
1183
|
+
[() => PolicyDefinitionItem$, 0],
|
|
1170
1184
|
5,
|
|
1171
1185
|
5,
|
|
1172
1186
|
0,
|
|
1173
1187
|
],
|
|
1174
1188
|
];
|
|
1175
|
-
var PolicyStoreItem = [
|
|
1189
|
+
var PolicyStoreItem$ = [
|
|
1176
1190
|
3,
|
|
1177
1191
|
n0,
|
|
1178
1192
|
_PSI,
|
|
@@ -1180,7 +1194,7 @@ var PolicyStoreItem = [
|
|
|
1180
1194
|
[_pSI, _ar, _cD, _lUD, _des],
|
|
1181
1195
|
[0, 0, 5, 5, [() => PolicyStoreDescription, 0]],
|
|
1182
1196
|
];
|
|
1183
|
-
var PolicyTemplateItem = [
|
|
1197
|
+
var PolicyTemplateItem$ = [
|
|
1184
1198
|
3,
|
|
1185
1199
|
n0,
|
|
1186
1200
|
_PTI,
|
|
@@ -1188,8 +1202,8 @@ var PolicyTemplateItem = [
|
|
|
1188
1202
|
[_pSI, _pTI, _des, _cD, _lUD],
|
|
1189
1203
|
[0, 0, [() => PolicyTemplateDescription, 0], 5, 5],
|
|
1190
1204
|
];
|
|
1191
|
-
var PutSchemaInput = [3, n0, _PSIu, 0, [_pSI, _d], [0, [() => SchemaDefinition
|
|
1192
|
-
var PutSchemaOutput = [
|
|
1205
|
+
var PutSchemaInput$ = [3, n0, _PSIu, 0, [_pSI, _d], [0, [() => SchemaDefinition$, 0]]];
|
|
1206
|
+
var PutSchemaOutput$ = [
|
|
1193
1207
|
3,
|
|
1194
1208
|
n0,
|
|
1195
1209
|
_PSO,
|
|
@@ -1197,8 +1211,8 @@ var PutSchemaOutput = [
|
|
|
1197
1211
|
[_pSI, _n, _cD, _lUD],
|
|
1198
1212
|
[0, [() => NamespaceList, 0], 5, 5],
|
|
1199
1213
|
];
|
|
1200
|
-
var ResourceConflict = [3, n0, _RC, 0, [_rI, _rT], [0, 0]];
|
|
1201
|
-
var ResourceNotFoundException = [
|
|
1214
|
+
var ResourceConflict$ = [3, n0, _RC, 0, [_rI, _rT], [0, 0]];
|
|
1215
|
+
var ResourceNotFoundException$ = [
|
|
1202
1216
|
-3,
|
|
1203
1217
|
n0,
|
|
1204
1218
|
_RNFE,
|
|
@@ -1206,8 +1220,8 @@ var ResourceNotFoundException = [
|
|
|
1206
1220
|
[_m, _rI, _rT],
|
|
1207
1221
|
[0, 0, 0],
|
|
1208
1222
|
];
|
|
1209
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
1210
|
-
var ServiceQuotaExceededException = [
|
|
1223
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1224
|
+
var ServiceQuotaExceededException$ = [
|
|
1211
1225
|
-3,
|
|
1212
1226
|
n0,
|
|
1213
1227
|
_SQEE,
|
|
@@ -1215,8 +1229,8 @@ var ServiceQuotaExceededException = [
|
|
|
1215
1229
|
[_m, _rI, _rT, _sC, _qC],
|
|
1216
1230
|
[0, 0, 0, 0, 0],
|
|
1217
1231
|
];
|
|
1218
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
1219
|
-
var StaticPolicyDefinition = [
|
|
1232
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1233
|
+
var StaticPolicyDefinition$ = [
|
|
1220
1234
|
3,
|
|
1221
1235
|
n0,
|
|
1222
1236
|
_SPDt,
|
|
@@ -1227,7 +1241,7 @@ var StaticPolicyDefinition = [
|
|
|
1227
1241
|
[() => PolicyStatement, 0],
|
|
1228
1242
|
],
|
|
1229
1243
|
];
|
|
1230
|
-
var StaticPolicyDefinitionDetail = [
|
|
1244
|
+
var StaticPolicyDefinitionDetail$ = [
|
|
1231
1245
|
3,
|
|
1232
1246
|
n0,
|
|
1233
1247
|
_SPDD,
|
|
@@ -1238,7 +1252,7 @@ var StaticPolicyDefinitionDetail = [
|
|
|
1238
1252
|
[() => PolicyStatement, 0],
|
|
1239
1253
|
],
|
|
1240
1254
|
];
|
|
1241
|
-
var StaticPolicyDefinitionItem = [
|
|
1255
|
+
var StaticPolicyDefinitionItem$ = [
|
|
1242
1256
|
3,
|
|
1243
1257
|
n0,
|
|
1244
1258
|
_SPDI,
|
|
@@ -1246,39 +1260,39 @@ var StaticPolicyDefinitionItem = [
|
|
|
1246
1260
|
[_des],
|
|
1247
1261
|
[[() => StaticPolicyDescription, 0]],
|
|
1248
1262
|
];
|
|
1249
|
-
var TagResourceInput = [3, n0, _TRI, 0, [_rA, _t], [0, 128 | 0]];
|
|
1250
|
-
var TagResourceOutput = [3, n0, _TRO, 0, [], []];
|
|
1251
|
-
var TemplateLinkedPolicyDefinition = [
|
|
1263
|
+
var TagResourceInput$ = [3, n0, _TRI, 0, [_rA, _t], [0, 128 | 0]];
|
|
1264
|
+
var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
|
|
1265
|
+
var TemplateLinkedPolicyDefinition$ = [
|
|
1252
1266
|
3,
|
|
1253
1267
|
n0,
|
|
1254
1268
|
_TLPD,
|
|
1255
1269
|
0,
|
|
1256
1270
|
[_pTI, _p, _res],
|
|
1257
|
-
[0, [() => EntityIdentifier
|
|
1271
|
+
[0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0]],
|
|
1258
1272
|
];
|
|
1259
|
-
var TemplateLinkedPolicyDefinitionDetail = [
|
|
1273
|
+
var TemplateLinkedPolicyDefinitionDetail$ = [
|
|
1260
1274
|
3,
|
|
1261
1275
|
n0,
|
|
1262
1276
|
_TLPDD,
|
|
1263
1277
|
0,
|
|
1264
1278
|
[_pTI, _p, _res],
|
|
1265
|
-
[0, [() => EntityIdentifier
|
|
1279
|
+
[0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0]],
|
|
1266
1280
|
];
|
|
1267
|
-
var TemplateLinkedPolicyDefinitionItem = [
|
|
1281
|
+
var TemplateLinkedPolicyDefinitionItem$ = [
|
|
1268
1282
|
3,
|
|
1269
1283
|
n0,
|
|
1270
1284
|
_TLPDI,
|
|
1271
1285
|
0,
|
|
1272
1286
|
[_pTI, _p, _res],
|
|
1273
|
-
[0, [() => EntityIdentifier
|
|
1287
|
+
[0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0]],
|
|
1274
1288
|
];
|
|
1275
|
-
var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m, _sC, _qC], [0, 0, 0]];
|
|
1276
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
1277
|
-
var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m, _rN], [0, 0]];
|
|
1278
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException
|
|
1279
|
-
var UntagResourceInput = [3, n0, _URI, 0, [_rA, _tK], [0, 64 | 0]];
|
|
1280
|
-
var UntagResourceOutput = [3, n0, _URO, 0, [], []];
|
|
1281
|
-
var UpdateCognitoGroupConfiguration = [
|
|
1289
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m, _sC, _qC], [0, 0, 0]];
|
|
1290
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1291
|
+
var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m, _rN], [0, 0]];
|
|
1292
|
+
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1293
|
+
var UntagResourceInput$ = [3, n0, _URI, 0, [_rA, _tK], [0, 64 | 0]];
|
|
1294
|
+
var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
|
|
1295
|
+
var UpdateCognitoGroupConfiguration$ = [
|
|
1282
1296
|
3,
|
|
1283
1297
|
n0,
|
|
1284
1298
|
_UCGC,
|
|
@@ -1286,24 +1300,31 @@ var UpdateCognitoGroupConfiguration = [
|
|
|
1286
1300
|
[_gET],
|
|
1287
1301
|
[[() => GroupEntityType, 0]],
|
|
1288
1302
|
];
|
|
1289
|
-
var UpdateCognitoUserPoolConfiguration = [
|
|
1303
|
+
var UpdateCognitoUserPoolConfiguration$ = [
|
|
1290
1304
|
3,
|
|
1291
1305
|
n0,
|
|
1292
1306
|
_UCUPC,
|
|
1293
1307
|
0,
|
|
1294
1308
|
[_uPA, _cI, _gC],
|
|
1295
|
-
[0, [() => ClientIds, 0], [() => UpdateCognitoGroupConfiguration
|
|
1309
|
+
[0, [() => ClientIds, 0], [() => UpdateCognitoGroupConfiguration$, 0]],
|
|
1296
1310
|
];
|
|
1297
|
-
var UpdateIdentitySourceInput = [
|
|
1311
|
+
var UpdateIdentitySourceInput$ = [
|
|
1298
1312
|
3,
|
|
1299
1313
|
n0,
|
|
1300
1314
|
_UISI,
|
|
1301
1315
|
0,
|
|
1302
1316
|
[_pSI, _iSI, _uC, _pET],
|
|
1303
|
-
[0, 0, [() => UpdateConfiguration
|
|
1317
|
+
[0, 0, [() => UpdateConfiguration$, 0], [() => PrincipalEntityType, 0]],
|
|
1318
|
+
];
|
|
1319
|
+
var UpdateIdentitySourceOutput$ = [
|
|
1320
|
+
3,
|
|
1321
|
+
n0,
|
|
1322
|
+
_UISO,
|
|
1323
|
+
0,
|
|
1324
|
+
[_cD, _iSI, _lUD, _pSI],
|
|
1325
|
+
[5, 0, 5, 0],
|
|
1304
1326
|
];
|
|
1305
|
-
var
|
|
1306
|
-
var UpdateOpenIdConnectAccessTokenConfiguration = [
|
|
1327
|
+
var UpdateOpenIdConnectAccessTokenConfiguration$ = [
|
|
1307
1328
|
3,
|
|
1308
1329
|
n0,
|
|
1309
1330
|
_UOICATC,
|
|
@@ -1311,7 +1332,7 @@ var UpdateOpenIdConnectAccessTokenConfiguration = [
|
|
|
1311
1332
|
[_pIC, _au],
|
|
1312
1333
|
[[() => Claim, 0], 64 | 0],
|
|
1313
1334
|
];
|
|
1314
|
-
var UpdateOpenIdConnectConfiguration = [
|
|
1335
|
+
var UpdateOpenIdConnectConfiguration$ = [
|
|
1315
1336
|
3,
|
|
1316
1337
|
n0,
|
|
1317
1338
|
_UOICC,
|
|
@@ -1320,11 +1341,11 @@ var UpdateOpenIdConnectConfiguration = [
|
|
|
1320
1341
|
[
|
|
1321
1342
|
0,
|
|
1322
1343
|
[() => EntityIdPrefix, 0],
|
|
1323
|
-
[() => UpdateOpenIdConnectGroupConfiguration
|
|
1324
|
-
[() => UpdateOpenIdConnectTokenSelection
|
|
1344
|
+
[() => UpdateOpenIdConnectGroupConfiguration$, 0],
|
|
1345
|
+
[() => UpdateOpenIdConnectTokenSelection$, 0],
|
|
1325
1346
|
],
|
|
1326
1347
|
];
|
|
1327
|
-
var UpdateOpenIdConnectGroupConfiguration = [
|
|
1348
|
+
var UpdateOpenIdConnectGroupConfiguration$ = [
|
|
1328
1349
|
3,
|
|
1329
1350
|
n0,
|
|
1330
1351
|
_UOICGC,
|
|
@@ -1335,7 +1356,7 @@ var UpdateOpenIdConnectGroupConfiguration = [
|
|
|
1335
1356
|
[() => GroupEntityType, 0],
|
|
1336
1357
|
],
|
|
1337
1358
|
];
|
|
1338
|
-
var UpdateOpenIdConnectIdentityTokenConfiguration = [
|
|
1359
|
+
var UpdateOpenIdConnectIdentityTokenConfiguration$ = [
|
|
1339
1360
|
3,
|
|
1340
1361
|
n0,
|
|
1341
1362
|
_UOICITC,
|
|
@@ -1346,32 +1367,32 @@ var UpdateOpenIdConnectIdentityTokenConfiguration = [
|
|
|
1346
1367
|
[() => ClientIds, 0],
|
|
1347
1368
|
],
|
|
1348
1369
|
];
|
|
1349
|
-
var UpdatePolicyInput = [
|
|
1370
|
+
var UpdatePolicyInput$ = [
|
|
1350
1371
|
3,
|
|
1351
1372
|
n0,
|
|
1352
1373
|
_UPI,
|
|
1353
1374
|
0,
|
|
1354
1375
|
[_pSI, _pI, _d],
|
|
1355
|
-
[0, 0, [() => UpdatePolicyDefinition
|
|
1376
|
+
[0, 0, [() => UpdatePolicyDefinition$, 0]],
|
|
1356
1377
|
];
|
|
1357
|
-
var UpdatePolicyOutput = [
|
|
1378
|
+
var UpdatePolicyOutput$ = [
|
|
1358
1379
|
3,
|
|
1359
1380
|
n0,
|
|
1360
1381
|
_UPO,
|
|
1361
1382
|
0,
|
|
1362
1383
|
[_pSI, _pI, _pT, _p, _res, _ac, _cD, _lUD, _ef],
|
|
1363
|
-
[0, 0, 0, [() => EntityIdentifier
|
|
1384
|
+
[0, 0, 0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 5, 5, 0],
|
|
1364
1385
|
];
|
|
1365
|
-
var UpdatePolicyStoreInput = [
|
|
1386
|
+
var UpdatePolicyStoreInput$ = [
|
|
1366
1387
|
3,
|
|
1367
1388
|
n0,
|
|
1368
1389
|
_UPSI,
|
|
1369
1390
|
0,
|
|
1370
1391
|
[_pSI, _vS, _dPe, _des],
|
|
1371
|
-
[0, () => ValidationSettings
|
|
1392
|
+
[0, () => ValidationSettings$, 0, [() => PolicyStoreDescription, 0]],
|
|
1372
1393
|
];
|
|
1373
|
-
var UpdatePolicyStoreOutput = [3, n0, _UPSO, 0, [_pSI, _ar, _cD, _lUD], [0, 0, 5, 5]];
|
|
1374
|
-
var UpdatePolicyTemplateInput = [
|
|
1394
|
+
var UpdatePolicyStoreOutput$ = [3, n0, _UPSO, 0, [_pSI, _ar, _cD, _lUD], [0, 0, 5, 5]];
|
|
1395
|
+
var UpdatePolicyTemplateInput$ = [
|
|
1375
1396
|
3,
|
|
1376
1397
|
n0,
|
|
1377
1398
|
_UPTI,
|
|
@@ -1379,8 +1400,15 @@ var UpdatePolicyTemplateInput = [
|
|
|
1379
1400
|
[_pSI, _pTI, _des, _s],
|
|
1380
1401
|
[0, 0, [() => PolicyTemplateDescription, 0], [() => PolicyStatement, 0]],
|
|
1381
1402
|
];
|
|
1382
|
-
var UpdatePolicyTemplateOutput = [
|
|
1383
|
-
|
|
1403
|
+
var UpdatePolicyTemplateOutput$ = [
|
|
1404
|
+
3,
|
|
1405
|
+
n0,
|
|
1406
|
+
_UPTO,
|
|
1407
|
+
0,
|
|
1408
|
+
[_pSI, _pTI, _cD, _lUD],
|
|
1409
|
+
[0, 0, 5, 5],
|
|
1410
|
+
];
|
|
1411
|
+
var UpdateStaticPolicyDefinition$ = [
|
|
1384
1412
|
3,
|
|
1385
1413
|
n0,
|
|
1386
1414
|
_USPD,
|
|
@@ -1391,7 +1419,7 @@ var UpdateStaticPolicyDefinition = [
|
|
|
1391
1419
|
[() => PolicyStatement, 0],
|
|
1392
1420
|
],
|
|
1393
1421
|
];
|
|
1394
|
-
var ValidationException = [
|
|
1422
|
+
var ValidationException$ = [
|
|
1395
1423
|
-3,
|
|
1396
1424
|
n0,
|
|
1397
1425
|
_VE,
|
|
@@ -1399,10 +1427,10 @@ var ValidationException = [
|
|
|
1399
1427
|
[_m, _fL],
|
|
1400
1428
|
[0, () => ValidationExceptionFieldList],
|
|
1401
1429
|
];
|
|
1402
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
1403
|
-
var ValidationExceptionField = [3, n0, _VEF, 0, [_pat, _m], [0, 0]];
|
|
1404
|
-
var ValidationSettings = [3, n0, _VS, 0, [_mo], [0]];
|
|
1405
|
-
var VerifiedPermissionsServiceException = [
|
|
1430
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1431
|
+
var ValidationExceptionField$ = [3, n0, _VEF, 0, [_pat, _m], [0, 0]];
|
|
1432
|
+
var ValidationSettings$ = [3, n0, _VS, 0, [_mo], [0]];
|
|
1433
|
+
var VerifiedPermissionsServiceException$ = [
|
|
1406
1434
|
-3,
|
|
1407
1435
|
_sm,
|
|
1408
1436
|
"VerifiedPermissionsServiceException",
|
|
@@ -1410,48 +1438,48 @@ var VerifiedPermissionsServiceException = [
|
|
|
1410
1438
|
[],
|
|
1411
1439
|
[],
|
|
1412
1440
|
];
|
|
1413
|
-
schema.TypeRegistry.for(_sm).registerError(VerifiedPermissionsServiceException
|
|
1414
|
-
var ActionIdentifierList = [1, n0, _AIL, 0, [() => ActionIdentifier
|
|
1415
|
-
var BatchGetPolicyErrorList = [1, n0, _BGPEL, 0, () => BatchGetPolicyErrorItem];
|
|
1416
|
-
var BatchGetPolicyInputList = [1, n0, _BGPIL, 0, () => BatchGetPolicyInputItem];
|
|
1417
|
-
var BatchGetPolicyOutputList = [1, n0, _BGPOL, 0, [() => BatchGetPolicyOutputItem
|
|
1418
|
-
var BatchIsAuthorizedInputList = [1, n0, _BIAIL, 0, [() => BatchIsAuthorizedInputItem
|
|
1419
|
-
var BatchIsAuthorizedOutputList = [1, n0, _BIAOL, 0, [() => BatchIsAuthorizedOutputItem
|
|
1441
|
+
schema.TypeRegistry.for(_sm).registerError(VerifiedPermissionsServiceException$, VerifiedPermissionsServiceException);
|
|
1442
|
+
var ActionIdentifierList = [1, n0, _AIL, 0, [() => ActionIdentifier$, 0]];
|
|
1443
|
+
var BatchGetPolicyErrorList = [1, n0, _BGPEL, 0, () => BatchGetPolicyErrorItem$];
|
|
1444
|
+
var BatchGetPolicyInputList = [1, n0, _BGPIL, 0, () => BatchGetPolicyInputItem$];
|
|
1445
|
+
var BatchGetPolicyOutputList = [1, n0, _BGPOL, 0, [() => BatchGetPolicyOutputItem$, 0]];
|
|
1446
|
+
var BatchIsAuthorizedInputList = [1, n0, _BIAIL, 0, [() => BatchIsAuthorizedInputItem$, 0]];
|
|
1447
|
+
var BatchIsAuthorizedOutputList = [1, n0, _BIAOL, 0, [() => BatchIsAuthorizedOutputItem$, 0]];
|
|
1420
1448
|
var BatchIsAuthorizedWithTokenInputList = [
|
|
1421
1449
|
1,
|
|
1422
1450
|
n0,
|
|
1423
1451
|
_BIAWTIL,
|
|
1424
1452
|
0,
|
|
1425
|
-
[() => BatchIsAuthorizedWithTokenInputItem
|
|
1453
|
+
[() => BatchIsAuthorizedWithTokenInputItem$, 0],
|
|
1426
1454
|
];
|
|
1427
1455
|
var BatchIsAuthorizedWithTokenOutputList = [
|
|
1428
1456
|
1,
|
|
1429
1457
|
n0,
|
|
1430
1458
|
_BIAWTOL,
|
|
1431
1459
|
0,
|
|
1432
|
-
[() => BatchIsAuthorizedWithTokenOutputItem
|
|
1460
|
+
[() => BatchIsAuthorizedWithTokenOutputItem$, 0],
|
|
1433
1461
|
];
|
|
1434
|
-
var CedarTagSetAttribute = [1, n0, _CTSA, 0, [() => CedarTagValue
|
|
1462
|
+
var CedarTagSetAttribute = [1, n0, _CTSA, 0, [() => CedarTagValue$, 0]];
|
|
1435
1463
|
var ClientIds = [1, n0, _CIl, 0, [() => ClientId, 0]];
|
|
1436
|
-
var DeterminingPolicyList = [1, n0, _DPL, 0, () => DeterminingPolicyItem];
|
|
1437
|
-
var EntityList = [1, n0, _EL, 0, [() => EntityItem
|
|
1438
|
-
var EvaluationErrorList = [1, n0, _EEL, 0, [() => EvaluationErrorItem
|
|
1439
|
-
var IdentitySourceFilters = [1, n0, _ISFd, 0, [() => IdentitySourceFilter
|
|
1440
|
-
var IdentitySources = [1, n0, _IS, 0, [() => IdentitySourceItem
|
|
1464
|
+
var DeterminingPolicyList = [1, n0, _DPL, 0, () => DeterminingPolicyItem$];
|
|
1465
|
+
var EntityList = [1, n0, _EL, 0, [() => EntityItem$, 0]];
|
|
1466
|
+
var EvaluationErrorList = [1, n0, _EEL, 0, [() => EvaluationErrorItem$, 0]];
|
|
1467
|
+
var IdentitySourceFilters = [1, n0, _ISFd, 0, [() => IdentitySourceFilter$, 0]];
|
|
1468
|
+
var IdentitySources = [1, n0, _IS, 0, [() => IdentitySourceItem$, 0]];
|
|
1441
1469
|
var NamespaceList = [1, n0, _NL, 0, [() => Namespace, 0]];
|
|
1442
|
-
var ParentList = [1, n0, _PL, 0, [() => EntityIdentifier
|
|
1443
|
-
var PolicyList = [1, n0, _PLo, 0, [() => PolicyItem
|
|
1444
|
-
var PolicyStoreList = [1, n0, _PSL, 0, [() => PolicyStoreItem
|
|
1445
|
-
var PolicyTemplatesList = [1, n0, _PTL, 0, [() => PolicyTemplateItem
|
|
1446
|
-
var ResourceConflictList = [1, n0, _RCL, 0, () => ResourceConflict];
|
|
1447
|
-
var SetAttribute = [1, n0, _SAe, 0, [() => AttributeValue
|
|
1448
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1449
|
-
var CedarTagRecordAttribute = [2, n0, _CTRA, 0, [0, 0], [() => CedarTagValue
|
|
1450
|
-
var ContextMap = [2, n0, _CM, 8, [0, 0], [() => AttributeValue
|
|
1451
|
-
var EntityAttributes = [2, n0, _EA, 0, [0, 0], [() => AttributeValue
|
|
1452
|
-
var EntityCedarTags = [2, n0, _ECT, 0, [0, 0], [() => CedarTagValue
|
|
1453
|
-
var RecordAttribute = [2, n0, _RA, 0, [0, 0], [() => AttributeValue
|
|
1454
|
-
var AttributeValue = [
|
|
1470
|
+
var ParentList = [1, n0, _PL, 0, [() => EntityIdentifier$, 0]];
|
|
1471
|
+
var PolicyList = [1, n0, _PLo, 0, [() => PolicyItem$, 0]];
|
|
1472
|
+
var PolicyStoreList = [1, n0, _PSL, 0, [() => PolicyStoreItem$, 0]];
|
|
1473
|
+
var PolicyTemplatesList = [1, n0, _PTL, 0, [() => PolicyTemplateItem$, 0]];
|
|
1474
|
+
var ResourceConflictList = [1, n0, _RCL, 0, () => ResourceConflict$];
|
|
1475
|
+
var SetAttribute = [1, n0, _SAe, 0, [() => AttributeValue$, 0]];
|
|
1476
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
|
|
1477
|
+
var CedarTagRecordAttribute = [2, n0, _CTRA, 0, [0, 0], [() => CedarTagValue$, 0]];
|
|
1478
|
+
var ContextMap = [2, n0, _CM, 8, [0, 0], [() => AttributeValue$, 0]];
|
|
1479
|
+
var EntityAttributes = [2, n0, _EA, 0, [0, 0], [() => AttributeValue$, 0]];
|
|
1480
|
+
var EntityCedarTags = [2, n0, _ECT, 0, [0, 0], [() => CedarTagValue$, 0]];
|
|
1481
|
+
var RecordAttribute = [2, n0, _RA, 0, [0, 0], [() => AttributeValue$, 0]];
|
|
1482
|
+
var AttributeValue$ = [
|
|
1455
1483
|
3,
|
|
1456
1484
|
n0,
|
|
1457
1485
|
_AV,
|
|
@@ -1459,7 +1487,7 @@ var AttributeValue = [
|
|
|
1459
1487
|
[_b, _eIn, _l, _st, _set, _rec, _ip, _dec, _da, _du],
|
|
1460
1488
|
[
|
|
1461
1489
|
[() => BooleanAttribute, 0],
|
|
1462
|
-
[() => EntityIdentifier
|
|
1490
|
+
[() => EntityIdentifier$, 0],
|
|
1463
1491
|
[() => LongAttribute, 0],
|
|
1464
1492
|
[() => StringAttribute, 0],
|
|
1465
1493
|
[() => SetAttribute, 0],
|
|
@@ -1470,7 +1498,7 @@ var AttributeValue = [
|
|
|
1470
1498
|
[() => Duration, 0],
|
|
1471
1499
|
],
|
|
1472
1500
|
];
|
|
1473
|
-
var CedarTagValue = [
|
|
1501
|
+
var CedarTagValue$ = [
|
|
1474
1502
|
3,
|
|
1475
1503
|
n0,
|
|
1476
1504
|
_CTV,
|
|
@@ -1478,7 +1506,7 @@ var CedarTagValue = [
|
|
|
1478
1506
|
[_b, _eIn, _l, _st, _set, _rec, _ip, _dec, _da, _du],
|
|
1479
1507
|
[
|
|
1480
1508
|
[() => BooleanAttribute, 0],
|
|
1481
|
-
[() => EntityIdentifier
|
|
1509
|
+
[() => EntityIdentifier$, 0],
|
|
1482
1510
|
[() => LongAttribute, 0],
|
|
1483
1511
|
[() => StringAttribute, 0],
|
|
1484
1512
|
[() => CedarTagSetAttribute, 0],
|
|
@@ -1489,40 +1517,40 @@ var CedarTagValue = [
|
|
|
1489
1517
|
[() => Duration, 0],
|
|
1490
1518
|
],
|
|
1491
1519
|
];
|
|
1492
|
-
var Configuration = [
|
|
1520
|
+
var Configuration$ = [
|
|
1493
1521
|
3,
|
|
1494
1522
|
n0,
|
|
1495
1523
|
_Co,
|
|
1496
1524
|
0,
|
|
1497
1525
|
[_cUPC, _oICC],
|
|
1498
1526
|
[
|
|
1499
|
-
[() => CognitoUserPoolConfiguration
|
|
1500
|
-
[() => OpenIdConnectConfiguration
|
|
1527
|
+
[() => CognitoUserPoolConfiguration$, 0],
|
|
1528
|
+
[() => OpenIdConnectConfiguration$, 0],
|
|
1501
1529
|
],
|
|
1502
1530
|
];
|
|
1503
|
-
var ConfigurationDetail = [
|
|
1531
|
+
var ConfigurationDetail$ = [
|
|
1504
1532
|
3,
|
|
1505
1533
|
n0,
|
|
1506
1534
|
_CD,
|
|
1507
1535
|
0,
|
|
1508
1536
|
[_cUPC, _oICC],
|
|
1509
1537
|
[
|
|
1510
|
-
[() => CognitoUserPoolConfigurationDetail
|
|
1511
|
-
[() => OpenIdConnectConfigurationDetail
|
|
1538
|
+
[() => CognitoUserPoolConfigurationDetail$, 0],
|
|
1539
|
+
[() => OpenIdConnectConfigurationDetail$, 0],
|
|
1512
1540
|
],
|
|
1513
1541
|
];
|
|
1514
|
-
var ConfigurationItem = [
|
|
1542
|
+
var ConfigurationItem$ = [
|
|
1515
1543
|
3,
|
|
1516
1544
|
n0,
|
|
1517
1545
|
_CIo,
|
|
1518
1546
|
0,
|
|
1519
1547
|
[_cUPC, _oICC],
|
|
1520
1548
|
[
|
|
1521
|
-
[() => CognitoUserPoolConfigurationItem
|
|
1522
|
-
[() => OpenIdConnectConfigurationItem
|
|
1549
|
+
[() => CognitoUserPoolConfigurationItem$, 0],
|
|
1550
|
+
[() => OpenIdConnectConfigurationItem$, 0],
|
|
1523
1551
|
],
|
|
1524
1552
|
];
|
|
1525
|
-
var ContextDefinition = [
|
|
1553
|
+
var ContextDefinition$ = [
|
|
1526
1554
|
3,
|
|
1527
1555
|
n0,
|
|
1528
1556
|
_CDo,
|
|
@@ -1533,7 +1561,7 @@ var ContextDefinition = [
|
|
|
1533
1561
|
[() => CedarJson, 0],
|
|
1534
1562
|
],
|
|
1535
1563
|
];
|
|
1536
|
-
var EntitiesDefinition = [
|
|
1564
|
+
var EntitiesDefinition$ = [
|
|
1537
1565
|
3,
|
|
1538
1566
|
n0,
|
|
1539
1567
|
_ED,
|
|
@@ -1544,273 +1572,280 @@ var EntitiesDefinition = [
|
|
|
1544
1572
|
[() => CedarJson, 0],
|
|
1545
1573
|
],
|
|
1546
1574
|
];
|
|
1547
|
-
var EntityReference = [3, n0, _ER, 0, [_u, _id], [2, [() => EntityIdentifier
|
|
1548
|
-
var OpenIdConnectTokenSelection = [
|
|
1575
|
+
var EntityReference$ = [3, n0, _ER, 0, [_u, _id], [2, [() => EntityIdentifier$, 0]]];
|
|
1576
|
+
var OpenIdConnectTokenSelection$ = [
|
|
1549
1577
|
3,
|
|
1550
1578
|
n0,
|
|
1551
1579
|
_OICTS,
|
|
1552
1580
|
0,
|
|
1553
1581
|
[_aTO, _iTO],
|
|
1554
1582
|
[
|
|
1555
|
-
[() => OpenIdConnectAccessTokenConfiguration
|
|
1556
|
-
[() => OpenIdConnectIdentityTokenConfiguration
|
|
1583
|
+
[() => OpenIdConnectAccessTokenConfiguration$, 0],
|
|
1584
|
+
[() => OpenIdConnectIdentityTokenConfiguration$, 0],
|
|
1557
1585
|
],
|
|
1558
1586
|
];
|
|
1559
|
-
var OpenIdConnectTokenSelectionDetail = [
|
|
1587
|
+
var OpenIdConnectTokenSelectionDetail$ = [
|
|
1560
1588
|
3,
|
|
1561
1589
|
n0,
|
|
1562
1590
|
_OICTSD,
|
|
1563
1591
|
0,
|
|
1564
1592
|
[_aTO, _iTO],
|
|
1565
1593
|
[
|
|
1566
|
-
[() => OpenIdConnectAccessTokenConfigurationDetail
|
|
1567
|
-
[() => OpenIdConnectIdentityTokenConfigurationDetail
|
|
1594
|
+
[() => OpenIdConnectAccessTokenConfigurationDetail$, 0],
|
|
1595
|
+
[() => OpenIdConnectIdentityTokenConfigurationDetail$, 0],
|
|
1568
1596
|
],
|
|
1569
1597
|
];
|
|
1570
|
-
var OpenIdConnectTokenSelectionItem = [
|
|
1598
|
+
var OpenIdConnectTokenSelectionItem$ = [
|
|
1571
1599
|
3,
|
|
1572
1600
|
n0,
|
|
1573
1601
|
_OICTSI,
|
|
1574
1602
|
0,
|
|
1575
1603
|
[_aTO, _iTO],
|
|
1576
1604
|
[
|
|
1577
|
-
[() => OpenIdConnectAccessTokenConfigurationItem
|
|
1578
|
-
[() => OpenIdConnectIdentityTokenConfigurationItem
|
|
1605
|
+
[() => OpenIdConnectAccessTokenConfigurationItem$, 0],
|
|
1606
|
+
[() => OpenIdConnectIdentityTokenConfigurationItem$, 0],
|
|
1579
1607
|
],
|
|
1580
1608
|
];
|
|
1581
|
-
var PolicyDefinition = [
|
|
1609
|
+
var PolicyDefinition$ = [
|
|
1582
1610
|
3,
|
|
1583
1611
|
n0,
|
|
1584
1612
|
_PD,
|
|
1585
1613
|
0,
|
|
1586
1614
|
[_sta, _tL],
|
|
1587
1615
|
[
|
|
1588
|
-
[() => StaticPolicyDefinition
|
|
1589
|
-
[() => TemplateLinkedPolicyDefinition
|
|
1616
|
+
[() => StaticPolicyDefinition$, 0],
|
|
1617
|
+
[() => TemplateLinkedPolicyDefinition$, 0],
|
|
1590
1618
|
],
|
|
1591
1619
|
];
|
|
1592
|
-
var PolicyDefinitionDetail = [
|
|
1620
|
+
var PolicyDefinitionDetail$ = [
|
|
1593
1621
|
3,
|
|
1594
1622
|
n0,
|
|
1595
1623
|
_PDD,
|
|
1596
1624
|
0,
|
|
1597
1625
|
[_sta, _tL],
|
|
1598
1626
|
[
|
|
1599
|
-
[() => StaticPolicyDefinitionDetail
|
|
1600
|
-
[() => TemplateLinkedPolicyDefinitionDetail
|
|
1627
|
+
[() => StaticPolicyDefinitionDetail$, 0],
|
|
1628
|
+
[() => TemplateLinkedPolicyDefinitionDetail$, 0],
|
|
1601
1629
|
],
|
|
1602
1630
|
];
|
|
1603
|
-
var PolicyDefinitionItem = [
|
|
1631
|
+
var PolicyDefinitionItem$ = [
|
|
1604
1632
|
3,
|
|
1605
1633
|
n0,
|
|
1606
1634
|
_PDI,
|
|
1607
1635
|
0,
|
|
1608
1636
|
[_sta, _tL],
|
|
1609
1637
|
[
|
|
1610
|
-
[() => StaticPolicyDefinitionItem
|
|
1611
|
-
[() => TemplateLinkedPolicyDefinitionItem
|
|
1638
|
+
[() => StaticPolicyDefinitionItem$, 0],
|
|
1639
|
+
[() => TemplateLinkedPolicyDefinitionItem$, 0],
|
|
1612
1640
|
],
|
|
1613
1641
|
];
|
|
1614
|
-
var SchemaDefinition = [3, n0, _SD, 0, [_cJ], [[() => SchemaJson, 0]]];
|
|
1615
|
-
var UpdateConfiguration = [
|
|
1642
|
+
var SchemaDefinition$ = [3, n0, _SD, 0, [_cJ], [[() => SchemaJson, 0]]];
|
|
1643
|
+
var UpdateConfiguration$ = [
|
|
1616
1644
|
3,
|
|
1617
1645
|
n0,
|
|
1618
1646
|
_UC,
|
|
1619
1647
|
0,
|
|
1620
1648
|
[_cUPC, _oICC],
|
|
1621
1649
|
[
|
|
1622
|
-
[() => UpdateCognitoUserPoolConfiguration
|
|
1623
|
-
[() => UpdateOpenIdConnectConfiguration
|
|
1650
|
+
[() => UpdateCognitoUserPoolConfiguration$, 0],
|
|
1651
|
+
[() => UpdateOpenIdConnectConfiguration$, 0],
|
|
1624
1652
|
],
|
|
1625
1653
|
];
|
|
1626
|
-
var UpdateOpenIdConnectTokenSelection = [
|
|
1654
|
+
var UpdateOpenIdConnectTokenSelection$ = [
|
|
1627
1655
|
3,
|
|
1628
1656
|
n0,
|
|
1629
1657
|
_UOICTS,
|
|
1630
1658
|
0,
|
|
1631
1659
|
[_aTO, _iTO],
|
|
1632
1660
|
[
|
|
1633
|
-
[() => UpdateOpenIdConnectAccessTokenConfiguration
|
|
1634
|
-
[() => UpdateOpenIdConnectIdentityTokenConfiguration
|
|
1661
|
+
[() => UpdateOpenIdConnectAccessTokenConfiguration$, 0],
|
|
1662
|
+
[() => UpdateOpenIdConnectIdentityTokenConfiguration$, 0],
|
|
1635
1663
|
],
|
|
1636
1664
|
];
|
|
1637
|
-
var UpdatePolicyDefinition = [
|
|
1665
|
+
var UpdatePolicyDefinition$ = [
|
|
1638
1666
|
3,
|
|
1639
1667
|
n0,
|
|
1640
1668
|
_UPD,
|
|
1641
1669
|
0,
|
|
1642
1670
|
[_sta],
|
|
1643
|
-
[[() => UpdateStaticPolicyDefinition
|
|
1671
|
+
[[() => UpdateStaticPolicyDefinition$, 0]],
|
|
1644
1672
|
];
|
|
1645
|
-
var BatchGetPolicy = [
|
|
1673
|
+
var BatchGetPolicy$ = [
|
|
1646
1674
|
9,
|
|
1647
1675
|
n0,
|
|
1648
1676
|
_BGP,
|
|
1649
1677
|
0,
|
|
1650
|
-
() => BatchGetPolicyInput
|
|
1651
|
-
() => BatchGetPolicyOutput
|
|
1678
|
+
() => BatchGetPolicyInput$,
|
|
1679
|
+
() => BatchGetPolicyOutput$,
|
|
1652
1680
|
];
|
|
1653
|
-
var BatchIsAuthorized = [
|
|
1681
|
+
var BatchIsAuthorized$ = [
|
|
1654
1682
|
9,
|
|
1655
1683
|
n0,
|
|
1656
1684
|
_BIA,
|
|
1657
1685
|
0,
|
|
1658
|
-
() => BatchIsAuthorizedInput
|
|
1659
|
-
() => BatchIsAuthorizedOutput
|
|
1686
|
+
() => BatchIsAuthorizedInput$,
|
|
1687
|
+
() => BatchIsAuthorizedOutput$,
|
|
1660
1688
|
];
|
|
1661
|
-
var BatchIsAuthorizedWithToken = [
|
|
1689
|
+
var BatchIsAuthorizedWithToken$ = [
|
|
1662
1690
|
9,
|
|
1663
1691
|
n0,
|
|
1664
1692
|
_BIAWT,
|
|
1665
1693
|
0,
|
|
1666
|
-
() => BatchIsAuthorizedWithTokenInput
|
|
1667
|
-
() => BatchIsAuthorizedWithTokenOutput
|
|
1694
|
+
() => BatchIsAuthorizedWithTokenInput$,
|
|
1695
|
+
() => BatchIsAuthorizedWithTokenOutput$,
|
|
1668
1696
|
];
|
|
1669
|
-
var CreateIdentitySource = [
|
|
1697
|
+
var CreateIdentitySource$ = [
|
|
1670
1698
|
9,
|
|
1671
1699
|
n0,
|
|
1672
1700
|
_CIS,
|
|
1673
1701
|
2,
|
|
1674
|
-
() => CreateIdentitySourceInput
|
|
1675
|
-
() => CreateIdentitySourceOutput
|
|
1702
|
+
() => CreateIdentitySourceInput$,
|
|
1703
|
+
() => CreateIdentitySourceOutput$,
|
|
1676
1704
|
];
|
|
1677
|
-
var CreatePolicy = [9, n0, _CP, 2, () => CreatePolicyInput
|
|
1678
|
-
var CreatePolicyStore = [
|
|
1705
|
+
var CreatePolicy$ = [9, n0, _CP, 2, () => CreatePolicyInput$, () => CreatePolicyOutput$];
|
|
1706
|
+
var CreatePolicyStore$ = [
|
|
1679
1707
|
9,
|
|
1680
1708
|
n0,
|
|
1681
1709
|
_CPS,
|
|
1682
1710
|
2,
|
|
1683
|
-
() => CreatePolicyStoreInput
|
|
1684
|
-
() => CreatePolicyStoreOutput
|
|
1711
|
+
() => CreatePolicyStoreInput$,
|
|
1712
|
+
() => CreatePolicyStoreOutput$,
|
|
1685
1713
|
];
|
|
1686
|
-
var CreatePolicyTemplate = [
|
|
1714
|
+
var CreatePolicyTemplate$ = [
|
|
1687
1715
|
9,
|
|
1688
1716
|
n0,
|
|
1689
1717
|
_CPT,
|
|
1690
1718
|
2,
|
|
1691
|
-
() => CreatePolicyTemplateInput
|
|
1692
|
-
() => CreatePolicyTemplateOutput
|
|
1719
|
+
() => CreatePolicyTemplateInput$,
|
|
1720
|
+
() => CreatePolicyTemplateOutput$,
|
|
1693
1721
|
];
|
|
1694
|
-
var DeleteIdentitySource = [
|
|
1722
|
+
var DeleteIdentitySource$ = [
|
|
1695
1723
|
9,
|
|
1696
1724
|
n0,
|
|
1697
1725
|
_DIS,
|
|
1698
1726
|
2,
|
|
1699
|
-
() => DeleteIdentitySourceInput
|
|
1700
|
-
() => DeleteIdentitySourceOutput
|
|
1727
|
+
() => DeleteIdentitySourceInput$,
|
|
1728
|
+
() => DeleteIdentitySourceOutput$,
|
|
1701
1729
|
];
|
|
1702
|
-
var DeletePolicy = [9, n0, _DP, 2, () => DeletePolicyInput
|
|
1703
|
-
var DeletePolicyStore = [
|
|
1730
|
+
var DeletePolicy$ = [9, n0, _DP, 2, () => DeletePolicyInput$, () => DeletePolicyOutput$];
|
|
1731
|
+
var DeletePolicyStore$ = [
|
|
1704
1732
|
9,
|
|
1705
1733
|
n0,
|
|
1706
1734
|
_DPS,
|
|
1707
1735
|
2,
|
|
1708
|
-
() => DeletePolicyStoreInput
|
|
1709
|
-
() => DeletePolicyStoreOutput
|
|
1736
|
+
() => DeletePolicyStoreInput$,
|
|
1737
|
+
() => DeletePolicyStoreOutput$,
|
|
1710
1738
|
];
|
|
1711
|
-
var DeletePolicyTemplate = [
|
|
1739
|
+
var DeletePolicyTemplate$ = [
|
|
1712
1740
|
9,
|
|
1713
1741
|
n0,
|
|
1714
1742
|
_DPT,
|
|
1715
1743
|
2,
|
|
1716
|
-
() => DeletePolicyTemplateInput
|
|
1717
|
-
() => DeletePolicyTemplateOutput
|
|
1744
|
+
() => DeletePolicyTemplateInput$,
|
|
1745
|
+
() => DeletePolicyTemplateOutput$,
|
|
1718
1746
|
];
|
|
1719
|
-
var GetIdentitySource = [
|
|
1747
|
+
var GetIdentitySource$ = [
|
|
1720
1748
|
9,
|
|
1721
1749
|
n0,
|
|
1722
1750
|
_GIS,
|
|
1723
1751
|
0,
|
|
1724
|
-
() => GetIdentitySourceInput
|
|
1725
|
-
() => GetIdentitySourceOutput
|
|
1752
|
+
() => GetIdentitySourceInput$,
|
|
1753
|
+
() => GetIdentitySourceOutput$,
|
|
1726
1754
|
];
|
|
1727
|
-
var GetPolicy = [9, n0, _GP, 0, () => GetPolicyInput
|
|
1728
|
-
var GetPolicyStore = [
|
|
1755
|
+
var GetPolicy$ = [9, n0, _GP, 0, () => GetPolicyInput$, () => GetPolicyOutput$];
|
|
1756
|
+
var GetPolicyStore$ = [
|
|
1729
1757
|
9,
|
|
1730
1758
|
n0,
|
|
1731
1759
|
_GPS,
|
|
1732
1760
|
0,
|
|
1733
|
-
() => GetPolicyStoreInput
|
|
1734
|
-
() => GetPolicyStoreOutput
|
|
1761
|
+
() => GetPolicyStoreInput$,
|
|
1762
|
+
() => GetPolicyStoreOutput$,
|
|
1735
1763
|
];
|
|
1736
|
-
var GetPolicyTemplate = [
|
|
1764
|
+
var GetPolicyTemplate$ = [
|
|
1737
1765
|
9,
|
|
1738
1766
|
n0,
|
|
1739
1767
|
_GPT,
|
|
1740
1768
|
0,
|
|
1741
|
-
() => GetPolicyTemplateInput
|
|
1742
|
-
() => GetPolicyTemplateOutput
|
|
1769
|
+
() => GetPolicyTemplateInput$,
|
|
1770
|
+
() => GetPolicyTemplateOutput$,
|
|
1743
1771
|
];
|
|
1744
|
-
var GetSchema = [9, n0, _GS, 0, () => GetSchemaInput
|
|
1745
|
-
var IsAuthorized = [9, n0, _IAs, 0, () => IsAuthorizedInput
|
|
1746
|
-
var IsAuthorizedWithToken = [
|
|
1772
|
+
var GetSchema$ = [9, n0, _GS, 0, () => GetSchemaInput$, () => GetSchemaOutput$];
|
|
1773
|
+
var IsAuthorized$ = [9, n0, _IAs, 0, () => IsAuthorizedInput$, () => IsAuthorizedOutput$];
|
|
1774
|
+
var IsAuthorizedWithToken$ = [
|
|
1747
1775
|
9,
|
|
1748
1776
|
n0,
|
|
1749
1777
|
_IAWT,
|
|
1750
1778
|
0,
|
|
1751
|
-
() => IsAuthorizedWithTokenInput
|
|
1752
|
-
() => IsAuthorizedWithTokenOutput
|
|
1779
|
+
() => IsAuthorizedWithTokenInput$,
|
|
1780
|
+
() => IsAuthorizedWithTokenOutput$,
|
|
1753
1781
|
];
|
|
1754
|
-
var ListIdentitySources = [
|
|
1782
|
+
var ListIdentitySources$ = [
|
|
1755
1783
|
9,
|
|
1756
1784
|
n0,
|
|
1757
1785
|
_LIS,
|
|
1758
1786
|
0,
|
|
1759
|
-
() => ListIdentitySourcesInput
|
|
1760
|
-
() => ListIdentitySourcesOutput
|
|
1787
|
+
() => ListIdentitySourcesInput$,
|
|
1788
|
+
() => ListIdentitySourcesOutput$,
|
|
1761
1789
|
];
|
|
1762
|
-
var ListPolicies = [9, n0, _LP, 0, () => ListPoliciesInput
|
|
1763
|
-
var ListPolicyStores = [
|
|
1790
|
+
var ListPolicies$ = [9, n0, _LP, 0, () => ListPoliciesInput$, () => ListPoliciesOutput$];
|
|
1791
|
+
var ListPolicyStores$ = [
|
|
1764
1792
|
9,
|
|
1765
1793
|
n0,
|
|
1766
1794
|
_LPS,
|
|
1767
1795
|
0,
|
|
1768
|
-
() => ListPolicyStoresInput
|
|
1769
|
-
() => ListPolicyStoresOutput
|
|
1796
|
+
() => ListPolicyStoresInput$,
|
|
1797
|
+
() => ListPolicyStoresOutput$,
|
|
1770
1798
|
];
|
|
1771
|
-
var ListPolicyTemplates = [
|
|
1799
|
+
var ListPolicyTemplates$ = [
|
|
1772
1800
|
9,
|
|
1773
1801
|
n0,
|
|
1774
1802
|
_LPT,
|
|
1775
1803
|
0,
|
|
1776
|
-
() => ListPolicyTemplatesInput
|
|
1777
|
-
() => ListPolicyTemplatesOutput
|
|
1804
|
+
() => ListPolicyTemplatesInput$,
|
|
1805
|
+
() => ListPolicyTemplatesOutput$,
|
|
1778
1806
|
];
|
|
1779
|
-
var ListTagsForResource = [
|
|
1807
|
+
var ListTagsForResource$ = [
|
|
1780
1808
|
9,
|
|
1781
1809
|
n0,
|
|
1782
1810
|
_LTFR,
|
|
1783
1811
|
0,
|
|
1784
|
-
() => ListTagsForResourceInput
|
|
1785
|
-
() => ListTagsForResourceOutput
|
|
1812
|
+
() => ListTagsForResourceInput$,
|
|
1813
|
+
() => ListTagsForResourceOutput$,
|
|
1814
|
+
];
|
|
1815
|
+
var PutSchema$ = [9, n0, _PSu, 2, () => PutSchemaInput$, () => PutSchemaOutput$];
|
|
1816
|
+
var TagResource$ = [9, n0, _TR, 0, () => TagResourceInput$, () => TagResourceOutput$];
|
|
1817
|
+
var UntagResource$ = [
|
|
1818
|
+
9,
|
|
1819
|
+
n0,
|
|
1820
|
+
_UR,
|
|
1821
|
+
0,
|
|
1822
|
+
() => UntagResourceInput$,
|
|
1823
|
+
() => UntagResourceOutput$,
|
|
1786
1824
|
];
|
|
1787
|
-
var
|
|
1788
|
-
var TagResource = [9, n0, _TR, 0, () => TagResourceInput, () => TagResourceOutput];
|
|
1789
|
-
var UntagResource = [9, n0, _UR, 0, () => UntagResourceInput, () => UntagResourceOutput];
|
|
1790
|
-
var UpdateIdentitySource = [
|
|
1825
|
+
var UpdateIdentitySource$ = [
|
|
1791
1826
|
9,
|
|
1792
1827
|
n0,
|
|
1793
1828
|
_UIS,
|
|
1794
1829
|
2,
|
|
1795
|
-
() => UpdateIdentitySourceInput
|
|
1796
|
-
() => UpdateIdentitySourceOutput
|
|
1830
|
+
() => UpdateIdentitySourceInput$,
|
|
1831
|
+
() => UpdateIdentitySourceOutput$,
|
|
1797
1832
|
];
|
|
1798
|
-
var UpdatePolicy = [9, n0, _UP, 2, () => UpdatePolicyInput
|
|
1799
|
-
var UpdatePolicyStore = [
|
|
1833
|
+
var UpdatePolicy$ = [9, n0, _UP, 2, () => UpdatePolicyInput$, () => UpdatePolicyOutput$];
|
|
1834
|
+
var UpdatePolicyStore$ = [
|
|
1800
1835
|
9,
|
|
1801
1836
|
n0,
|
|
1802
1837
|
_UPS,
|
|
1803
1838
|
2,
|
|
1804
|
-
() => UpdatePolicyStoreInput
|
|
1805
|
-
() => UpdatePolicyStoreOutput
|
|
1839
|
+
() => UpdatePolicyStoreInput$,
|
|
1840
|
+
() => UpdatePolicyStoreOutput$,
|
|
1806
1841
|
];
|
|
1807
|
-
var UpdatePolicyTemplate = [
|
|
1842
|
+
var UpdatePolicyTemplate$ = [
|
|
1808
1843
|
9,
|
|
1809
1844
|
n0,
|
|
1810
1845
|
_UPT,
|
|
1811
1846
|
2,
|
|
1812
|
-
() => UpdatePolicyTemplateInput
|
|
1813
|
-
() => UpdatePolicyTemplateOutput
|
|
1847
|
+
() => UpdatePolicyTemplateInput$,
|
|
1848
|
+
() => UpdatePolicyTemplateOutput$,
|
|
1814
1849
|
];
|
|
1815
1850
|
|
|
1816
1851
|
class BatchGetPolicyCommand extends smithyClient.Command
|
|
@@ -1821,7 +1856,7 @@ class BatchGetPolicyCommand extends smithyClient.Command
|
|
|
1821
1856
|
})
|
|
1822
1857
|
.s("VerifiedPermissions", "BatchGetPolicy", {})
|
|
1823
1858
|
.n("VerifiedPermissionsClient", "BatchGetPolicyCommand")
|
|
1824
|
-
.sc(BatchGetPolicy)
|
|
1859
|
+
.sc(BatchGetPolicy$)
|
|
1825
1860
|
.build() {
|
|
1826
1861
|
}
|
|
1827
1862
|
|
|
@@ -1833,7 +1868,7 @@ class BatchIsAuthorizedCommand extends smithyClient.Command
|
|
|
1833
1868
|
})
|
|
1834
1869
|
.s("VerifiedPermissions", "BatchIsAuthorized", {})
|
|
1835
1870
|
.n("VerifiedPermissionsClient", "BatchIsAuthorizedCommand")
|
|
1836
|
-
.sc(BatchIsAuthorized)
|
|
1871
|
+
.sc(BatchIsAuthorized$)
|
|
1837
1872
|
.build() {
|
|
1838
1873
|
}
|
|
1839
1874
|
|
|
@@ -1845,7 +1880,7 @@ class BatchIsAuthorizedWithTokenCommand extends smithyClient.Command
|
|
|
1845
1880
|
})
|
|
1846
1881
|
.s("VerifiedPermissions", "BatchIsAuthorizedWithToken", {})
|
|
1847
1882
|
.n("VerifiedPermissionsClient", "BatchIsAuthorizedWithTokenCommand")
|
|
1848
|
-
.sc(BatchIsAuthorizedWithToken)
|
|
1883
|
+
.sc(BatchIsAuthorizedWithToken$)
|
|
1849
1884
|
.build() {
|
|
1850
1885
|
}
|
|
1851
1886
|
|
|
@@ -1857,7 +1892,7 @@ class CreateIdentitySourceCommand extends smithyClient.Command
|
|
|
1857
1892
|
})
|
|
1858
1893
|
.s("VerifiedPermissions", "CreateIdentitySource", {})
|
|
1859
1894
|
.n("VerifiedPermissionsClient", "CreateIdentitySourceCommand")
|
|
1860
|
-
.sc(CreateIdentitySource)
|
|
1895
|
+
.sc(CreateIdentitySource$)
|
|
1861
1896
|
.build() {
|
|
1862
1897
|
}
|
|
1863
1898
|
|
|
@@ -1869,7 +1904,7 @@ class CreatePolicyCommand extends smithyClient.Command
|
|
|
1869
1904
|
})
|
|
1870
1905
|
.s("VerifiedPermissions", "CreatePolicy", {})
|
|
1871
1906
|
.n("VerifiedPermissionsClient", "CreatePolicyCommand")
|
|
1872
|
-
.sc(CreatePolicy)
|
|
1907
|
+
.sc(CreatePolicy$)
|
|
1873
1908
|
.build() {
|
|
1874
1909
|
}
|
|
1875
1910
|
|
|
@@ -1881,7 +1916,7 @@ class CreatePolicyStoreCommand extends smithyClient.Command
|
|
|
1881
1916
|
})
|
|
1882
1917
|
.s("VerifiedPermissions", "CreatePolicyStore", {})
|
|
1883
1918
|
.n("VerifiedPermissionsClient", "CreatePolicyStoreCommand")
|
|
1884
|
-
.sc(CreatePolicyStore)
|
|
1919
|
+
.sc(CreatePolicyStore$)
|
|
1885
1920
|
.build() {
|
|
1886
1921
|
}
|
|
1887
1922
|
|
|
@@ -1893,7 +1928,7 @@ class CreatePolicyTemplateCommand extends smithyClient.Command
|
|
|
1893
1928
|
})
|
|
1894
1929
|
.s("VerifiedPermissions", "CreatePolicyTemplate", {})
|
|
1895
1930
|
.n("VerifiedPermissionsClient", "CreatePolicyTemplateCommand")
|
|
1896
|
-
.sc(CreatePolicyTemplate)
|
|
1931
|
+
.sc(CreatePolicyTemplate$)
|
|
1897
1932
|
.build() {
|
|
1898
1933
|
}
|
|
1899
1934
|
|
|
@@ -1905,7 +1940,7 @@ class DeleteIdentitySourceCommand extends smithyClient.Command
|
|
|
1905
1940
|
})
|
|
1906
1941
|
.s("VerifiedPermissions", "DeleteIdentitySource", {})
|
|
1907
1942
|
.n("VerifiedPermissionsClient", "DeleteIdentitySourceCommand")
|
|
1908
|
-
.sc(DeleteIdentitySource)
|
|
1943
|
+
.sc(DeleteIdentitySource$)
|
|
1909
1944
|
.build() {
|
|
1910
1945
|
}
|
|
1911
1946
|
|
|
@@ -1917,7 +1952,7 @@ class DeletePolicyCommand extends smithyClient.Command
|
|
|
1917
1952
|
})
|
|
1918
1953
|
.s("VerifiedPermissions", "DeletePolicy", {})
|
|
1919
1954
|
.n("VerifiedPermissionsClient", "DeletePolicyCommand")
|
|
1920
|
-
.sc(DeletePolicy)
|
|
1955
|
+
.sc(DeletePolicy$)
|
|
1921
1956
|
.build() {
|
|
1922
1957
|
}
|
|
1923
1958
|
|
|
@@ -1929,7 +1964,7 @@ class DeletePolicyStoreCommand extends smithyClient.Command
|
|
|
1929
1964
|
})
|
|
1930
1965
|
.s("VerifiedPermissions", "DeletePolicyStore", {})
|
|
1931
1966
|
.n("VerifiedPermissionsClient", "DeletePolicyStoreCommand")
|
|
1932
|
-
.sc(DeletePolicyStore)
|
|
1967
|
+
.sc(DeletePolicyStore$)
|
|
1933
1968
|
.build() {
|
|
1934
1969
|
}
|
|
1935
1970
|
|
|
@@ -1941,7 +1976,7 @@ class DeletePolicyTemplateCommand extends smithyClient.Command
|
|
|
1941
1976
|
})
|
|
1942
1977
|
.s("VerifiedPermissions", "DeletePolicyTemplate", {})
|
|
1943
1978
|
.n("VerifiedPermissionsClient", "DeletePolicyTemplateCommand")
|
|
1944
|
-
.sc(DeletePolicyTemplate)
|
|
1979
|
+
.sc(DeletePolicyTemplate$)
|
|
1945
1980
|
.build() {
|
|
1946
1981
|
}
|
|
1947
1982
|
|
|
@@ -1953,7 +1988,7 @@ class GetIdentitySourceCommand extends smithyClient.Command
|
|
|
1953
1988
|
})
|
|
1954
1989
|
.s("VerifiedPermissions", "GetIdentitySource", {})
|
|
1955
1990
|
.n("VerifiedPermissionsClient", "GetIdentitySourceCommand")
|
|
1956
|
-
.sc(GetIdentitySource)
|
|
1991
|
+
.sc(GetIdentitySource$)
|
|
1957
1992
|
.build() {
|
|
1958
1993
|
}
|
|
1959
1994
|
|
|
@@ -1965,7 +2000,7 @@ class GetPolicyCommand extends smithyClient.Command
|
|
|
1965
2000
|
})
|
|
1966
2001
|
.s("VerifiedPermissions", "GetPolicy", {})
|
|
1967
2002
|
.n("VerifiedPermissionsClient", "GetPolicyCommand")
|
|
1968
|
-
.sc(GetPolicy)
|
|
2003
|
+
.sc(GetPolicy$)
|
|
1969
2004
|
.build() {
|
|
1970
2005
|
}
|
|
1971
2006
|
|
|
@@ -1977,7 +2012,7 @@ class GetPolicyStoreCommand extends smithyClient.Command
|
|
|
1977
2012
|
})
|
|
1978
2013
|
.s("VerifiedPermissions", "GetPolicyStore", {})
|
|
1979
2014
|
.n("VerifiedPermissionsClient", "GetPolicyStoreCommand")
|
|
1980
|
-
.sc(GetPolicyStore)
|
|
2015
|
+
.sc(GetPolicyStore$)
|
|
1981
2016
|
.build() {
|
|
1982
2017
|
}
|
|
1983
2018
|
|
|
@@ -1989,7 +2024,7 @@ class GetPolicyTemplateCommand extends smithyClient.Command
|
|
|
1989
2024
|
})
|
|
1990
2025
|
.s("VerifiedPermissions", "GetPolicyTemplate", {})
|
|
1991
2026
|
.n("VerifiedPermissionsClient", "GetPolicyTemplateCommand")
|
|
1992
|
-
.sc(GetPolicyTemplate)
|
|
2027
|
+
.sc(GetPolicyTemplate$)
|
|
1993
2028
|
.build() {
|
|
1994
2029
|
}
|
|
1995
2030
|
|
|
@@ -2001,7 +2036,7 @@ class GetSchemaCommand extends smithyClient.Command
|
|
|
2001
2036
|
})
|
|
2002
2037
|
.s("VerifiedPermissions", "GetSchema", {})
|
|
2003
2038
|
.n("VerifiedPermissionsClient", "GetSchemaCommand")
|
|
2004
|
-
.sc(GetSchema)
|
|
2039
|
+
.sc(GetSchema$)
|
|
2005
2040
|
.build() {
|
|
2006
2041
|
}
|
|
2007
2042
|
|
|
@@ -2013,7 +2048,7 @@ class IsAuthorizedCommand extends smithyClient.Command
|
|
|
2013
2048
|
})
|
|
2014
2049
|
.s("VerifiedPermissions", "IsAuthorized", {})
|
|
2015
2050
|
.n("VerifiedPermissionsClient", "IsAuthorizedCommand")
|
|
2016
|
-
.sc(IsAuthorized)
|
|
2051
|
+
.sc(IsAuthorized$)
|
|
2017
2052
|
.build() {
|
|
2018
2053
|
}
|
|
2019
2054
|
|
|
@@ -2025,7 +2060,7 @@ class IsAuthorizedWithTokenCommand extends smithyClient.Command
|
|
|
2025
2060
|
})
|
|
2026
2061
|
.s("VerifiedPermissions", "IsAuthorizedWithToken", {})
|
|
2027
2062
|
.n("VerifiedPermissionsClient", "IsAuthorizedWithTokenCommand")
|
|
2028
|
-
.sc(IsAuthorizedWithToken)
|
|
2063
|
+
.sc(IsAuthorizedWithToken$)
|
|
2029
2064
|
.build() {
|
|
2030
2065
|
}
|
|
2031
2066
|
|
|
@@ -2037,7 +2072,7 @@ class ListIdentitySourcesCommand extends smithyClient.Command
|
|
|
2037
2072
|
})
|
|
2038
2073
|
.s("VerifiedPermissions", "ListIdentitySources", {})
|
|
2039
2074
|
.n("VerifiedPermissionsClient", "ListIdentitySourcesCommand")
|
|
2040
|
-
.sc(ListIdentitySources)
|
|
2075
|
+
.sc(ListIdentitySources$)
|
|
2041
2076
|
.build() {
|
|
2042
2077
|
}
|
|
2043
2078
|
|
|
@@ -2049,7 +2084,7 @@ class ListPoliciesCommand extends smithyClient.Command
|
|
|
2049
2084
|
})
|
|
2050
2085
|
.s("VerifiedPermissions", "ListPolicies", {})
|
|
2051
2086
|
.n("VerifiedPermissionsClient", "ListPoliciesCommand")
|
|
2052
|
-
.sc(ListPolicies)
|
|
2087
|
+
.sc(ListPolicies$)
|
|
2053
2088
|
.build() {
|
|
2054
2089
|
}
|
|
2055
2090
|
|
|
@@ -2061,7 +2096,7 @@ class ListPolicyStoresCommand extends smithyClient.Command
|
|
|
2061
2096
|
})
|
|
2062
2097
|
.s("VerifiedPermissions", "ListPolicyStores", {})
|
|
2063
2098
|
.n("VerifiedPermissionsClient", "ListPolicyStoresCommand")
|
|
2064
|
-
.sc(ListPolicyStores)
|
|
2099
|
+
.sc(ListPolicyStores$)
|
|
2065
2100
|
.build() {
|
|
2066
2101
|
}
|
|
2067
2102
|
|
|
@@ -2073,7 +2108,7 @@ class ListPolicyTemplatesCommand extends smithyClient.Command
|
|
|
2073
2108
|
})
|
|
2074
2109
|
.s("VerifiedPermissions", "ListPolicyTemplates", {})
|
|
2075
2110
|
.n("VerifiedPermissionsClient", "ListPolicyTemplatesCommand")
|
|
2076
|
-
.sc(ListPolicyTemplates)
|
|
2111
|
+
.sc(ListPolicyTemplates$)
|
|
2077
2112
|
.build() {
|
|
2078
2113
|
}
|
|
2079
2114
|
|
|
@@ -2085,7 +2120,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2085
2120
|
})
|
|
2086
2121
|
.s("VerifiedPermissions", "ListTagsForResource", {})
|
|
2087
2122
|
.n("VerifiedPermissionsClient", "ListTagsForResourceCommand")
|
|
2088
|
-
.sc(ListTagsForResource)
|
|
2123
|
+
.sc(ListTagsForResource$)
|
|
2089
2124
|
.build() {
|
|
2090
2125
|
}
|
|
2091
2126
|
|
|
@@ -2097,7 +2132,7 @@ class PutSchemaCommand extends smithyClient.Command
|
|
|
2097
2132
|
})
|
|
2098
2133
|
.s("VerifiedPermissions", "PutSchema", {})
|
|
2099
2134
|
.n("VerifiedPermissionsClient", "PutSchemaCommand")
|
|
2100
|
-
.sc(PutSchema)
|
|
2135
|
+
.sc(PutSchema$)
|
|
2101
2136
|
.build() {
|
|
2102
2137
|
}
|
|
2103
2138
|
|
|
@@ -2109,7 +2144,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2109
2144
|
})
|
|
2110
2145
|
.s("VerifiedPermissions", "TagResource", {})
|
|
2111
2146
|
.n("VerifiedPermissionsClient", "TagResourceCommand")
|
|
2112
|
-
.sc(TagResource)
|
|
2147
|
+
.sc(TagResource$)
|
|
2113
2148
|
.build() {
|
|
2114
2149
|
}
|
|
2115
2150
|
|
|
@@ -2121,7 +2156,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2121
2156
|
})
|
|
2122
2157
|
.s("VerifiedPermissions", "UntagResource", {})
|
|
2123
2158
|
.n("VerifiedPermissionsClient", "UntagResourceCommand")
|
|
2124
|
-
.sc(UntagResource)
|
|
2159
|
+
.sc(UntagResource$)
|
|
2125
2160
|
.build() {
|
|
2126
2161
|
}
|
|
2127
2162
|
|
|
@@ -2133,7 +2168,7 @@ class UpdateIdentitySourceCommand extends smithyClient.Command
|
|
|
2133
2168
|
})
|
|
2134
2169
|
.s("VerifiedPermissions", "UpdateIdentitySource", {})
|
|
2135
2170
|
.n("VerifiedPermissionsClient", "UpdateIdentitySourceCommand")
|
|
2136
|
-
.sc(UpdateIdentitySource)
|
|
2171
|
+
.sc(UpdateIdentitySource$)
|
|
2137
2172
|
.build() {
|
|
2138
2173
|
}
|
|
2139
2174
|
|
|
@@ -2145,7 +2180,7 @@ class UpdatePolicyCommand extends smithyClient.Command
|
|
|
2145
2180
|
})
|
|
2146
2181
|
.s("VerifiedPermissions", "UpdatePolicy", {})
|
|
2147
2182
|
.n("VerifiedPermissionsClient", "UpdatePolicyCommand")
|
|
2148
|
-
.sc(UpdatePolicy)
|
|
2183
|
+
.sc(UpdatePolicy$)
|
|
2149
2184
|
.build() {
|
|
2150
2185
|
}
|
|
2151
2186
|
|
|
@@ -2157,7 +2192,7 @@ class UpdatePolicyStoreCommand extends smithyClient.Command
|
|
|
2157
2192
|
})
|
|
2158
2193
|
.s("VerifiedPermissions", "UpdatePolicyStore", {})
|
|
2159
2194
|
.n("VerifiedPermissionsClient", "UpdatePolicyStoreCommand")
|
|
2160
|
-
.sc(UpdatePolicyStore)
|
|
2195
|
+
.sc(UpdatePolicyStore$)
|
|
2161
2196
|
.build() {
|
|
2162
2197
|
}
|
|
2163
2198
|
|
|
@@ -2169,7 +2204,7 @@ class UpdatePolicyTemplateCommand extends smithyClient.Command
|
|
|
2169
2204
|
})
|
|
2170
2205
|
.s("VerifiedPermissions", "UpdatePolicyTemplate", {})
|
|
2171
2206
|
.n("VerifiedPermissionsClient", "UpdatePolicyTemplateCommand")
|
|
2172
|
-
.sc(UpdatePolicyTemplate)
|
|
2207
|
+
.sc(UpdatePolicyTemplate$)
|
|
2173
2208
|
.build() {
|
|
2174
2209
|
}
|
|
2175
2210
|
|
|
@@ -2264,57 +2299,229 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2264
2299
|
enumerable: true,
|
|
2265
2300
|
get: function () { return smithyClient.Client; }
|
|
2266
2301
|
});
|
|
2267
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
2302
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2303
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2304
|
+
exports.ActionIdentifier$ = ActionIdentifier$;
|
|
2305
|
+
exports.AttributeValue$ = AttributeValue$;
|
|
2306
|
+
exports.BatchGetPolicy$ = BatchGetPolicy$;
|
|
2268
2307
|
exports.BatchGetPolicyCommand = BatchGetPolicyCommand;
|
|
2269
2308
|
exports.BatchGetPolicyErrorCode = BatchGetPolicyErrorCode;
|
|
2309
|
+
exports.BatchGetPolicyErrorItem$ = BatchGetPolicyErrorItem$;
|
|
2310
|
+
exports.BatchGetPolicyInput$ = BatchGetPolicyInput$;
|
|
2311
|
+
exports.BatchGetPolicyInputItem$ = BatchGetPolicyInputItem$;
|
|
2312
|
+
exports.BatchGetPolicyOutput$ = BatchGetPolicyOutput$;
|
|
2313
|
+
exports.BatchGetPolicyOutputItem$ = BatchGetPolicyOutputItem$;
|
|
2314
|
+
exports.BatchIsAuthorized$ = BatchIsAuthorized$;
|
|
2270
2315
|
exports.BatchIsAuthorizedCommand = BatchIsAuthorizedCommand;
|
|
2316
|
+
exports.BatchIsAuthorizedInput$ = BatchIsAuthorizedInput$;
|
|
2317
|
+
exports.BatchIsAuthorizedInputItem$ = BatchIsAuthorizedInputItem$;
|
|
2318
|
+
exports.BatchIsAuthorizedOutput$ = BatchIsAuthorizedOutput$;
|
|
2319
|
+
exports.BatchIsAuthorizedOutputItem$ = BatchIsAuthorizedOutputItem$;
|
|
2320
|
+
exports.BatchIsAuthorizedWithToken$ = BatchIsAuthorizedWithToken$;
|
|
2271
2321
|
exports.BatchIsAuthorizedWithTokenCommand = BatchIsAuthorizedWithTokenCommand;
|
|
2322
|
+
exports.BatchIsAuthorizedWithTokenInput$ = BatchIsAuthorizedWithTokenInput$;
|
|
2323
|
+
exports.BatchIsAuthorizedWithTokenInputItem$ = BatchIsAuthorizedWithTokenInputItem$;
|
|
2324
|
+
exports.BatchIsAuthorizedWithTokenOutput$ = BatchIsAuthorizedWithTokenOutput$;
|
|
2325
|
+
exports.BatchIsAuthorizedWithTokenOutputItem$ = BatchIsAuthorizedWithTokenOutputItem$;
|
|
2326
|
+
exports.CedarTagValue$ = CedarTagValue$;
|
|
2272
2327
|
exports.CedarVersion = CedarVersion;
|
|
2273
|
-
exports.
|
|
2328
|
+
exports.CognitoGroupConfiguration$ = CognitoGroupConfiguration$;
|
|
2329
|
+
exports.CognitoGroupConfigurationDetail$ = CognitoGroupConfigurationDetail$;
|
|
2330
|
+
exports.CognitoGroupConfigurationItem$ = CognitoGroupConfigurationItem$;
|
|
2331
|
+
exports.CognitoUserPoolConfiguration$ = CognitoUserPoolConfiguration$;
|
|
2332
|
+
exports.CognitoUserPoolConfigurationDetail$ = CognitoUserPoolConfigurationDetail$;
|
|
2333
|
+
exports.CognitoUserPoolConfigurationItem$ = CognitoUserPoolConfigurationItem$;
|
|
2334
|
+
exports.Configuration$ = Configuration$;
|
|
2335
|
+
exports.ConfigurationDetail$ = ConfigurationDetail$;
|
|
2336
|
+
exports.ConfigurationItem$ = ConfigurationItem$;
|
|
2337
|
+
exports.ConflictException = ConflictException;
|
|
2338
|
+
exports.ConflictException$ = ConflictException$;
|
|
2339
|
+
exports.ContextDefinition$ = ContextDefinition$;
|
|
2340
|
+
exports.CreateIdentitySource$ = CreateIdentitySource$;
|
|
2274
2341
|
exports.CreateIdentitySourceCommand = CreateIdentitySourceCommand;
|
|
2342
|
+
exports.CreateIdentitySourceInput$ = CreateIdentitySourceInput$;
|
|
2343
|
+
exports.CreateIdentitySourceOutput$ = CreateIdentitySourceOutput$;
|
|
2344
|
+
exports.CreatePolicy$ = CreatePolicy$;
|
|
2275
2345
|
exports.CreatePolicyCommand = CreatePolicyCommand;
|
|
2346
|
+
exports.CreatePolicyInput$ = CreatePolicyInput$;
|
|
2347
|
+
exports.CreatePolicyOutput$ = CreatePolicyOutput$;
|
|
2348
|
+
exports.CreatePolicyStore$ = CreatePolicyStore$;
|
|
2276
2349
|
exports.CreatePolicyStoreCommand = CreatePolicyStoreCommand;
|
|
2350
|
+
exports.CreatePolicyStoreInput$ = CreatePolicyStoreInput$;
|
|
2351
|
+
exports.CreatePolicyStoreOutput$ = CreatePolicyStoreOutput$;
|
|
2352
|
+
exports.CreatePolicyTemplate$ = CreatePolicyTemplate$;
|
|
2277
2353
|
exports.CreatePolicyTemplateCommand = CreatePolicyTemplateCommand;
|
|
2354
|
+
exports.CreatePolicyTemplateInput$ = CreatePolicyTemplateInput$;
|
|
2355
|
+
exports.CreatePolicyTemplateOutput$ = CreatePolicyTemplateOutput$;
|
|
2278
2356
|
exports.Decision = Decision;
|
|
2357
|
+
exports.DeleteIdentitySource$ = DeleteIdentitySource$;
|
|
2279
2358
|
exports.DeleteIdentitySourceCommand = DeleteIdentitySourceCommand;
|
|
2359
|
+
exports.DeleteIdentitySourceInput$ = DeleteIdentitySourceInput$;
|
|
2360
|
+
exports.DeleteIdentitySourceOutput$ = DeleteIdentitySourceOutput$;
|
|
2361
|
+
exports.DeletePolicy$ = DeletePolicy$;
|
|
2280
2362
|
exports.DeletePolicyCommand = DeletePolicyCommand;
|
|
2363
|
+
exports.DeletePolicyInput$ = DeletePolicyInput$;
|
|
2364
|
+
exports.DeletePolicyOutput$ = DeletePolicyOutput$;
|
|
2365
|
+
exports.DeletePolicyStore$ = DeletePolicyStore$;
|
|
2281
2366
|
exports.DeletePolicyStoreCommand = DeletePolicyStoreCommand;
|
|
2367
|
+
exports.DeletePolicyStoreInput$ = DeletePolicyStoreInput$;
|
|
2368
|
+
exports.DeletePolicyStoreOutput$ = DeletePolicyStoreOutput$;
|
|
2369
|
+
exports.DeletePolicyTemplate$ = DeletePolicyTemplate$;
|
|
2282
2370
|
exports.DeletePolicyTemplateCommand = DeletePolicyTemplateCommand;
|
|
2371
|
+
exports.DeletePolicyTemplateInput$ = DeletePolicyTemplateInput$;
|
|
2372
|
+
exports.DeletePolicyTemplateOutput$ = DeletePolicyTemplateOutput$;
|
|
2283
2373
|
exports.DeletionProtection = DeletionProtection;
|
|
2374
|
+
exports.DeterminingPolicyItem$ = DeterminingPolicyItem$;
|
|
2375
|
+
exports.EntitiesDefinition$ = EntitiesDefinition$;
|
|
2376
|
+
exports.EntityIdentifier$ = EntityIdentifier$;
|
|
2377
|
+
exports.EntityItem$ = EntityItem$;
|
|
2378
|
+
exports.EntityReference$ = EntityReference$;
|
|
2379
|
+
exports.EvaluationErrorItem$ = EvaluationErrorItem$;
|
|
2380
|
+
exports.GetIdentitySource$ = GetIdentitySource$;
|
|
2284
2381
|
exports.GetIdentitySourceCommand = GetIdentitySourceCommand;
|
|
2382
|
+
exports.GetIdentitySourceInput$ = GetIdentitySourceInput$;
|
|
2383
|
+
exports.GetIdentitySourceOutput$ = GetIdentitySourceOutput$;
|
|
2384
|
+
exports.GetPolicy$ = GetPolicy$;
|
|
2285
2385
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
2386
|
+
exports.GetPolicyInput$ = GetPolicyInput$;
|
|
2387
|
+
exports.GetPolicyOutput$ = GetPolicyOutput$;
|
|
2388
|
+
exports.GetPolicyStore$ = GetPolicyStore$;
|
|
2286
2389
|
exports.GetPolicyStoreCommand = GetPolicyStoreCommand;
|
|
2390
|
+
exports.GetPolicyStoreInput$ = GetPolicyStoreInput$;
|
|
2391
|
+
exports.GetPolicyStoreOutput$ = GetPolicyStoreOutput$;
|
|
2392
|
+
exports.GetPolicyTemplate$ = GetPolicyTemplate$;
|
|
2287
2393
|
exports.GetPolicyTemplateCommand = GetPolicyTemplateCommand;
|
|
2394
|
+
exports.GetPolicyTemplateInput$ = GetPolicyTemplateInput$;
|
|
2395
|
+
exports.GetPolicyTemplateOutput$ = GetPolicyTemplateOutput$;
|
|
2396
|
+
exports.GetSchema$ = GetSchema$;
|
|
2288
2397
|
exports.GetSchemaCommand = GetSchemaCommand;
|
|
2289
|
-
exports.
|
|
2290
|
-
exports.
|
|
2398
|
+
exports.GetSchemaInput$ = GetSchemaInput$;
|
|
2399
|
+
exports.GetSchemaOutput$ = GetSchemaOutput$;
|
|
2400
|
+
exports.IdentitySourceDetails$ = IdentitySourceDetails$;
|
|
2401
|
+
exports.IdentitySourceFilter$ = IdentitySourceFilter$;
|
|
2402
|
+
exports.IdentitySourceItem$ = IdentitySourceItem$;
|
|
2403
|
+
exports.IdentitySourceItemDetails$ = IdentitySourceItemDetails$;
|
|
2404
|
+
exports.InternalServerException = InternalServerException;
|
|
2405
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2406
|
+
exports.InvalidStateException = InvalidStateException;
|
|
2407
|
+
exports.InvalidStateException$ = InvalidStateException$;
|
|
2408
|
+
exports.IsAuthorized$ = IsAuthorized$;
|
|
2291
2409
|
exports.IsAuthorizedCommand = IsAuthorizedCommand;
|
|
2410
|
+
exports.IsAuthorizedInput$ = IsAuthorizedInput$;
|
|
2411
|
+
exports.IsAuthorizedOutput$ = IsAuthorizedOutput$;
|
|
2412
|
+
exports.IsAuthorizedWithToken$ = IsAuthorizedWithToken$;
|
|
2292
2413
|
exports.IsAuthorizedWithTokenCommand = IsAuthorizedWithTokenCommand;
|
|
2414
|
+
exports.IsAuthorizedWithTokenInput$ = IsAuthorizedWithTokenInput$;
|
|
2415
|
+
exports.IsAuthorizedWithTokenOutput$ = IsAuthorizedWithTokenOutput$;
|
|
2416
|
+
exports.ListIdentitySources$ = ListIdentitySources$;
|
|
2293
2417
|
exports.ListIdentitySourcesCommand = ListIdentitySourcesCommand;
|
|
2418
|
+
exports.ListIdentitySourcesInput$ = ListIdentitySourcesInput$;
|
|
2419
|
+
exports.ListIdentitySourcesOutput$ = ListIdentitySourcesOutput$;
|
|
2420
|
+
exports.ListPolicies$ = ListPolicies$;
|
|
2294
2421
|
exports.ListPoliciesCommand = ListPoliciesCommand;
|
|
2422
|
+
exports.ListPoliciesInput$ = ListPoliciesInput$;
|
|
2423
|
+
exports.ListPoliciesOutput$ = ListPoliciesOutput$;
|
|
2424
|
+
exports.ListPolicyStores$ = ListPolicyStores$;
|
|
2295
2425
|
exports.ListPolicyStoresCommand = ListPolicyStoresCommand;
|
|
2426
|
+
exports.ListPolicyStoresInput$ = ListPolicyStoresInput$;
|
|
2427
|
+
exports.ListPolicyStoresOutput$ = ListPolicyStoresOutput$;
|
|
2428
|
+
exports.ListPolicyTemplates$ = ListPolicyTemplates$;
|
|
2296
2429
|
exports.ListPolicyTemplatesCommand = ListPolicyTemplatesCommand;
|
|
2430
|
+
exports.ListPolicyTemplatesInput$ = ListPolicyTemplatesInput$;
|
|
2431
|
+
exports.ListPolicyTemplatesOutput$ = ListPolicyTemplatesOutput$;
|
|
2432
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2297
2433
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2434
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2435
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2436
|
+
exports.OpenIdConnectAccessTokenConfiguration$ = OpenIdConnectAccessTokenConfiguration$;
|
|
2437
|
+
exports.OpenIdConnectAccessTokenConfigurationDetail$ = OpenIdConnectAccessTokenConfigurationDetail$;
|
|
2438
|
+
exports.OpenIdConnectAccessTokenConfigurationItem$ = OpenIdConnectAccessTokenConfigurationItem$;
|
|
2439
|
+
exports.OpenIdConnectConfiguration$ = OpenIdConnectConfiguration$;
|
|
2440
|
+
exports.OpenIdConnectConfigurationDetail$ = OpenIdConnectConfigurationDetail$;
|
|
2441
|
+
exports.OpenIdConnectConfigurationItem$ = OpenIdConnectConfigurationItem$;
|
|
2442
|
+
exports.OpenIdConnectGroupConfiguration$ = OpenIdConnectGroupConfiguration$;
|
|
2443
|
+
exports.OpenIdConnectGroupConfigurationDetail$ = OpenIdConnectGroupConfigurationDetail$;
|
|
2444
|
+
exports.OpenIdConnectGroupConfigurationItem$ = OpenIdConnectGroupConfigurationItem$;
|
|
2445
|
+
exports.OpenIdConnectIdentityTokenConfiguration$ = OpenIdConnectIdentityTokenConfiguration$;
|
|
2446
|
+
exports.OpenIdConnectIdentityTokenConfigurationDetail$ = OpenIdConnectIdentityTokenConfigurationDetail$;
|
|
2447
|
+
exports.OpenIdConnectIdentityTokenConfigurationItem$ = OpenIdConnectIdentityTokenConfigurationItem$;
|
|
2448
|
+
exports.OpenIdConnectTokenSelection$ = OpenIdConnectTokenSelection$;
|
|
2449
|
+
exports.OpenIdConnectTokenSelectionDetail$ = OpenIdConnectTokenSelectionDetail$;
|
|
2450
|
+
exports.OpenIdConnectTokenSelectionItem$ = OpenIdConnectTokenSelectionItem$;
|
|
2298
2451
|
exports.OpenIdIssuer = OpenIdIssuer;
|
|
2452
|
+
exports.PolicyDefinition$ = PolicyDefinition$;
|
|
2453
|
+
exports.PolicyDefinitionDetail$ = PolicyDefinitionDetail$;
|
|
2454
|
+
exports.PolicyDefinitionItem$ = PolicyDefinitionItem$;
|
|
2299
2455
|
exports.PolicyEffect = PolicyEffect;
|
|
2456
|
+
exports.PolicyFilter$ = PolicyFilter$;
|
|
2457
|
+
exports.PolicyItem$ = PolicyItem$;
|
|
2458
|
+
exports.PolicyStoreItem$ = PolicyStoreItem$;
|
|
2459
|
+
exports.PolicyTemplateItem$ = PolicyTemplateItem$;
|
|
2300
2460
|
exports.PolicyType = PolicyType;
|
|
2461
|
+
exports.PutSchema$ = PutSchema$;
|
|
2301
2462
|
exports.PutSchemaCommand = PutSchemaCommand;
|
|
2302
|
-
exports.
|
|
2463
|
+
exports.PutSchemaInput$ = PutSchemaInput$;
|
|
2464
|
+
exports.PutSchemaOutput$ = PutSchemaOutput$;
|
|
2465
|
+
exports.ResourceConflict$ = ResourceConflict$;
|
|
2466
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2467
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2303
2468
|
exports.ResourceType = ResourceType;
|
|
2304
|
-
exports.
|
|
2469
|
+
exports.SchemaDefinition$ = SchemaDefinition$;
|
|
2470
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2471
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2472
|
+
exports.StaticPolicyDefinition$ = StaticPolicyDefinition$;
|
|
2473
|
+
exports.StaticPolicyDefinitionDetail$ = StaticPolicyDefinitionDetail$;
|
|
2474
|
+
exports.StaticPolicyDefinitionItem$ = StaticPolicyDefinitionItem$;
|
|
2475
|
+
exports.TagResource$ = TagResource$;
|
|
2305
2476
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2306
|
-
exports.
|
|
2307
|
-
exports.
|
|
2477
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
2478
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
2479
|
+
exports.TemplateLinkedPolicyDefinition$ = TemplateLinkedPolicyDefinition$;
|
|
2480
|
+
exports.TemplateLinkedPolicyDefinitionDetail$ = TemplateLinkedPolicyDefinitionDetail$;
|
|
2481
|
+
exports.TemplateLinkedPolicyDefinitionItem$ = TemplateLinkedPolicyDefinitionItem$;
|
|
2482
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2483
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2484
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
2485
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
2486
|
+
exports.UntagResource$ = UntagResource$;
|
|
2308
2487
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2488
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2489
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
2490
|
+
exports.UpdateCognitoGroupConfiguration$ = UpdateCognitoGroupConfiguration$;
|
|
2491
|
+
exports.UpdateCognitoUserPoolConfiguration$ = UpdateCognitoUserPoolConfiguration$;
|
|
2492
|
+
exports.UpdateConfiguration$ = UpdateConfiguration$;
|
|
2493
|
+
exports.UpdateIdentitySource$ = UpdateIdentitySource$;
|
|
2309
2494
|
exports.UpdateIdentitySourceCommand = UpdateIdentitySourceCommand;
|
|
2495
|
+
exports.UpdateIdentitySourceInput$ = UpdateIdentitySourceInput$;
|
|
2496
|
+
exports.UpdateIdentitySourceOutput$ = UpdateIdentitySourceOutput$;
|
|
2497
|
+
exports.UpdateOpenIdConnectAccessTokenConfiguration$ = UpdateOpenIdConnectAccessTokenConfiguration$;
|
|
2498
|
+
exports.UpdateOpenIdConnectConfiguration$ = UpdateOpenIdConnectConfiguration$;
|
|
2499
|
+
exports.UpdateOpenIdConnectGroupConfiguration$ = UpdateOpenIdConnectGroupConfiguration$;
|
|
2500
|
+
exports.UpdateOpenIdConnectIdentityTokenConfiguration$ = UpdateOpenIdConnectIdentityTokenConfiguration$;
|
|
2501
|
+
exports.UpdateOpenIdConnectTokenSelection$ = UpdateOpenIdConnectTokenSelection$;
|
|
2502
|
+
exports.UpdatePolicy$ = UpdatePolicy$;
|
|
2310
2503
|
exports.UpdatePolicyCommand = UpdatePolicyCommand;
|
|
2504
|
+
exports.UpdatePolicyDefinition$ = UpdatePolicyDefinition$;
|
|
2505
|
+
exports.UpdatePolicyInput$ = UpdatePolicyInput$;
|
|
2506
|
+
exports.UpdatePolicyOutput$ = UpdatePolicyOutput$;
|
|
2507
|
+
exports.UpdatePolicyStore$ = UpdatePolicyStore$;
|
|
2311
2508
|
exports.UpdatePolicyStoreCommand = UpdatePolicyStoreCommand;
|
|
2509
|
+
exports.UpdatePolicyStoreInput$ = UpdatePolicyStoreInput$;
|
|
2510
|
+
exports.UpdatePolicyStoreOutput$ = UpdatePolicyStoreOutput$;
|
|
2511
|
+
exports.UpdatePolicyTemplate$ = UpdatePolicyTemplate$;
|
|
2312
2512
|
exports.UpdatePolicyTemplateCommand = UpdatePolicyTemplateCommand;
|
|
2313
|
-
exports.
|
|
2513
|
+
exports.UpdatePolicyTemplateInput$ = UpdatePolicyTemplateInput$;
|
|
2514
|
+
exports.UpdatePolicyTemplateOutput$ = UpdatePolicyTemplateOutput$;
|
|
2515
|
+
exports.UpdateStaticPolicyDefinition$ = UpdateStaticPolicyDefinition$;
|
|
2516
|
+
exports.ValidationException = ValidationException;
|
|
2517
|
+
exports.ValidationException$ = ValidationException$;
|
|
2518
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2314
2519
|
exports.ValidationMode = ValidationMode;
|
|
2520
|
+
exports.ValidationSettings$ = ValidationSettings$;
|
|
2315
2521
|
exports.VerifiedPermissions = VerifiedPermissions;
|
|
2316
2522
|
exports.VerifiedPermissionsClient = VerifiedPermissionsClient;
|
|
2317
|
-
exports.VerifiedPermissionsServiceException = VerifiedPermissionsServiceException
|
|
2523
|
+
exports.VerifiedPermissionsServiceException = VerifiedPermissionsServiceException;
|
|
2524
|
+
exports.VerifiedPermissionsServiceException$ = VerifiedPermissionsServiceException$;
|
|
2318
2525
|
exports.paginateListIdentitySources = paginateListIdentitySources;
|
|
2319
2526
|
exports.paginateListPolicies = paginateListPolicies;
|
|
2320
2527
|
exports.paginateListPolicyStores = paginateListPolicyStores;
|