@aws-sdk/client-verifiedpermissions 3.987.0 → 3.988.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 +49 -1665
- package/dist-cjs/models/VerifiedPermissionsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +147 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1325 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +95 -89
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var VerifiedPermissionsServiceException = require('./models/VerifiedPermissionsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1455 +113,6 @@ class VerifiedPermissionsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class VerifiedPermissionsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, VerifiedPermissionsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends VerifiedPermissionsServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends VerifiedPermissionsServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
$retryable = {};
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "InternalServerException",
|
|
139
|
-
$fault: "server",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
class ThrottlingException extends VerifiedPermissionsServiceException {
|
|
146
|
-
name = "ThrottlingException";
|
|
147
|
-
$fault = "client";
|
|
148
|
-
$retryable = {
|
|
149
|
-
throttling: true,
|
|
150
|
-
};
|
|
151
|
-
serviceCode;
|
|
152
|
-
quotaCode;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "ThrottlingException",
|
|
156
|
-
$fault: "client",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
160
|
-
this.serviceCode = opts.serviceCode;
|
|
161
|
-
this.quotaCode = opts.quotaCode;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
class ValidationException extends VerifiedPermissionsServiceException {
|
|
165
|
-
name = "ValidationException";
|
|
166
|
-
$fault = "client";
|
|
167
|
-
fieldList;
|
|
168
|
-
constructor(opts) {
|
|
169
|
-
super({
|
|
170
|
-
name: "ValidationException",
|
|
171
|
-
$fault: "client",
|
|
172
|
-
...opts,
|
|
173
|
-
});
|
|
174
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
175
|
-
this.fieldList = opts.fieldList;
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
class ResourceNotFoundException extends VerifiedPermissionsServiceException {
|
|
179
|
-
name = "ResourceNotFoundException";
|
|
180
|
-
$fault = "client";
|
|
181
|
-
resourceId;
|
|
182
|
-
resourceType;
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "ResourceNotFoundException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
190
|
-
this.resourceId = opts.resourceId;
|
|
191
|
-
this.resourceType = opts.resourceType;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class ConflictException extends VerifiedPermissionsServiceException {
|
|
195
|
-
name = "ConflictException";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
resources;
|
|
198
|
-
constructor(opts) {
|
|
199
|
-
super({
|
|
200
|
-
name: "ConflictException",
|
|
201
|
-
$fault: "client",
|
|
202
|
-
...opts,
|
|
203
|
-
});
|
|
204
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
205
|
-
this.resources = opts.resources;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
class ServiceQuotaExceededException extends VerifiedPermissionsServiceException {
|
|
209
|
-
name = "ServiceQuotaExceededException";
|
|
210
|
-
$fault = "client";
|
|
211
|
-
resourceId;
|
|
212
|
-
resourceType;
|
|
213
|
-
serviceCode;
|
|
214
|
-
quotaCode;
|
|
215
|
-
constructor(opts) {
|
|
216
|
-
super({
|
|
217
|
-
name: "ServiceQuotaExceededException",
|
|
218
|
-
$fault: "client",
|
|
219
|
-
...opts,
|
|
220
|
-
});
|
|
221
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
222
|
-
this.resourceId = opts.resourceId;
|
|
223
|
-
this.resourceType = opts.resourceType;
|
|
224
|
-
this.serviceCode = opts.serviceCode;
|
|
225
|
-
this.quotaCode = opts.quotaCode;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class InvalidStateException extends VerifiedPermissionsServiceException {
|
|
229
|
-
name = "InvalidStateException";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "InvalidStateException",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class TooManyTagsException extends VerifiedPermissionsServiceException {
|
|
241
|
-
name = "TooManyTagsException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
resourceName;
|
|
244
|
-
constructor(opts) {
|
|
245
|
-
super({
|
|
246
|
-
name: "TooManyTagsException",
|
|
247
|
-
$fault: "client",
|
|
248
|
-
...opts,
|
|
249
|
-
});
|
|
250
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
251
|
-
this.resourceName = opts.resourceName;
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
const _ADE = "AccessDeniedException";
|
|
256
|
-
const _AI = "ActionId";
|
|
257
|
-
const _AIL = "ActionIdentifierList";
|
|
258
|
-
const _AIc = "ActionIdentifier";
|
|
259
|
-
const _AT = "ActionType";
|
|
260
|
-
const _AV = "AttributeValue";
|
|
261
|
-
const _BA = "BooleanAttribute";
|
|
262
|
-
const _BGP = "BatchGetPolicy";
|
|
263
|
-
const _BGPEI = "BatchGetPolicyErrorItem";
|
|
264
|
-
const _BGPEL = "BatchGetPolicyErrorList";
|
|
265
|
-
const _BGPI = "BatchGetPolicyInput";
|
|
266
|
-
const _BGPII = "BatchGetPolicyInputItem";
|
|
267
|
-
const _BGPIL = "BatchGetPolicyInputList";
|
|
268
|
-
const _BGPO = "BatchGetPolicyOutput";
|
|
269
|
-
const _BGPOI = "BatchGetPolicyOutputItem";
|
|
270
|
-
const _BGPOL = "BatchGetPolicyOutputList";
|
|
271
|
-
const _BIA = "BatchIsAuthorized";
|
|
272
|
-
const _BIAI = "BatchIsAuthorizedInput";
|
|
273
|
-
const _BIAII = "BatchIsAuthorizedInputItem";
|
|
274
|
-
const _BIAIL = "BatchIsAuthorizedInputList";
|
|
275
|
-
const _BIAO = "BatchIsAuthorizedOutput";
|
|
276
|
-
const _BIAOI = "BatchIsAuthorizedOutputItem";
|
|
277
|
-
const _BIAOL = "BatchIsAuthorizedOutputList";
|
|
278
|
-
const _BIAWT = "BatchIsAuthorizedWithToken";
|
|
279
|
-
const _BIAWTI = "BatchIsAuthorizedWithTokenInput";
|
|
280
|
-
const _BIAWTII = "BatchIsAuthorizedWithTokenInputItem";
|
|
281
|
-
const _BIAWTIL = "BatchIsAuthorizedWithTokenInputList";
|
|
282
|
-
const _BIAWTO = "BatchIsAuthorizedWithTokenOutput";
|
|
283
|
-
const _BIAWTOI = "BatchIsAuthorizedWithTokenOutputItem";
|
|
284
|
-
const _BIAWTOL = "BatchIsAuthorizedWithTokenOutputList";
|
|
285
|
-
const _C = "Claim";
|
|
286
|
-
const _CD = "ConfigurationDetail";
|
|
287
|
-
const _CDo = "ContextDefinition";
|
|
288
|
-
const _CE = "ConflictException";
|
|
289
|
-
const _CGC = "CognitoGroupConfiguration";
|
|
290
|
-
const _CGCD = "CognitoGroupConfigurationDetail";
|
|
291
|
-
const _CGCI = "CognitoGroupConfigurationItem";
|
|
292
|
-
const _CI = "ClientId";
|
|
293
|
-
const _CIS = "CreateIdentitySource";
|
|
294
|
-
const _CISI = "CreateIdentitySourceInput";
|
|
295
|
-
const _CISO = "CreateIdentitySourceOutput";
|
|
296
|
-
const _CIl = "ClientIds";
|
|
297
|
-
const _CIo = "ConfigurationItem";
|
|
298
|
-
const _CJ = "CedarJson";
|
|
299
|
-
const _CM = "ContextMap";
|
|
300
|
-
const _CP = "CreatePolicy";
|
|
301
|
-
const _CPI = "CreatePolicyInput";
|
|
302
|
-
const _CPO = "CreatePolicyOutput";
|
|
303
|
-
const _CPS = "CreatePolicyStore";
|
|
304
|
-
const _CPSI = "CreatePolicyStoreInput";
|
|
305
|
-
const _CPSO = "CreatePolicyStoreOutput";
|
|
306
|
-
const _CPT = "CreatePolicyTemplate";
|
|
307
|
-
const _CPTI = "CreatePolicyTemplateInput";
|
|
308
|
-
const _CPTO = "CreatePolicyTemplateOutput";
|
|
309
|
-
const _CTRA = "CedarTagRecordAttribute";
|
|
310
|
-
const _CTSA = "CedarTagSetAttribute";
|
|
311
|
-
const _CTV = "CedarTagValue";
|
|
312
|
-
const _CUPC = "CognitoUserPoolConfiguration";
|
|
313
|
-
const _CUPCD = "CognitoUserPoolConfigurationDetail";
|
|
314
|
-
const _CUPCI = "CognitoUserPoolConfigurationItem";
|
|
315
|
-
const _Co = "Configuration";
|
|
316
|
-
const _D = "Decimal";
|
|
317
|
-
const _DA = "DatetimeAttribute";
|
|
318
|
-
const _DIS = "DeleteIdentitySource";
|
|
319
|
-
const _DISI = "DeleteIdentitySourceInput";
|
|
320
|
-
const _DISO = "DeleteIdentitySourceOutput";
|
|
321
|
-
const _DP = "DeletePolicy";
|
|
322
|
-
const _DPI = "DeletePolicyInput";
|
|
323
|
-
const _DPIe = "DeterminingPolicyItem";
|
|
324
|
-
const _DPL = "DeterminingPolicyList";
|
|
325
|
-
const _DPO = "DeletePolicyOutput";
|
|
326
|
-
const _DPS = "DeletePolicyStore";
|
|
327
|
-
const _DPSI = "DeletePolicyStoreInput";
|
|
328
|
-
const _DPSO = "DeletePolicyStoreOutput";
|
|
329
|
-
const _DPT = "DeletePolicyTemplate";
|
|
330
|
-
const _DPTI = "DeletePolicyTemplateInput";
|
|
331
|
-
const _DPTO = "DeletePolicyTemplateOutput";
|
|
332
|
-
const _Du = "Duration";
|
|
333
|
-
const _EA = "EntityAttributes";
|
|
334
|
-
const _ECT = "EntityCedarTags";
|
|
335
|
-
const _ED = "EntitiesDefinition";
|
|
336
|
-
const _EEI = "EvaluationErrorItem";
|
|
337
|
-
const _EEL = "EvaluationErrorList";
|
|
338
|
-
const _EI = "EntityId";
|
|
339
|
-
const _EIP = "EntityIdPrefix";
|
|
340
|
-
const _EIn = "EntityIdentifier";
|
|
341
|
-
const _EInt = "EntityItem";
|
|
342
|
-
const _EL = "EntityList";
|
|
343
|
-
const _ER = "EntityReference";
|
|
344
|
-
const _ES = "EncryptionSettings";
|
|
345
|
-
const _ESn = "EncryptionState";
|
|
346
|
-
const _ET = "EntityType";
|
|
347
|
-
const _GET = "GroupEntityType";
|
|
348
|
-
const _GIS = "GetIdentitySource";
|
|
349
|
-
const _GISI = "GetIdentitySourceInput";
|
|
350
|
-
const _GISO = "GetIdentitySourceOutput";
|
|
351
|
-
const _GP = "GetPolicy";
|
|
352
|
-
const _GPI = "GetPolicyInput";
|
|
353
|
-
const _GPO = "GetPolicyOutput";
|
|
354
|
-
const _GPS = "GetPolicyStore";
|
|
355
|
-
const _GPSI = "GetPolicyStoreInput";
|
|
356
|
-
const _GPSO = "GetPolicyStoreOutput";
|
|
357
|
-
const _GPT = "GetPolicyTemplate";
|
|
358
|
-
const _GPTI = "GetPolicyTemplateInput";
|
|
359
|
-
const _GPTO = "GetPolicyTemplateOutput";
|
|
360
|
-
const _GS = "GetSchema";
|
|
361
|
-
const _GSI = "GetSchemaInput";
|
|
362
|
-
const _GSO = "GetSchemaOutput";
|
|
363
|
-
const _IA = "IpAddr";
|
|
364
|
-
const _IAI = "IsAuthorizedInput";
|
|
365
|
-
const _IAO = "IsAuthorizedOutput";
|
|
366
|
-
const _IAWT = "IsAuthorizedWithToken";
|
|
367
|
-
const _IAWTI = "IsAuthorizedWithTokenInput";
|
|
368
|
-
const _IAWTO = "IsAuthorizedWithTokenOutput";
|
|
369
|
-
const _IAs = "IsAuthorized";
|
|
370
|
-
const _IS = "IdentitySources";
|
|
371
|
-
const _ISD = "IdentitySourceDetails";
|
|
372
|
-
const _ISE = "InternalServerException";
|
|
373
|
-
const _ISEn = "InvalidStateException";
|
|
374
|
-
const _ISF = "IdentitySourceFilter";
|
|
375
|
-
const _ISFd = "IdentitySourceFilters";
|
|
376
|
-
const _ISI = "IdentitySourceItem";
|
|
377
|
-
const _ISID = "IdentitySourceItemDetails";
|
|
378
|
-
const _KES = "KmsEncryptionSettings";
|
|
379
|
-
const _KESm = "KmsEncryptionState";
|
|
380
|
-
const _LA = "LongAttribute";
|
|
381
|
-
const _LIS = "ListIdentitySources";
|
|
382
|
-
const _LISI = "ListIdentitySourcesInput";
|
|
383
|
-
const _LISO = "ListIdentitySourcesOutput";
|
|
384
|
-
const _LP = "ListPolicies";
|
|
385
|
-
const _LPI = "ListPoliciesInput";
|
|
386
|
-
const _LPO = "ListPoliciesOutput";
|
|
387
|
-
const _LPS = "ListPolicyStores";
|
|
388
|
-
const _LPSI = "ListPolicyStoresInput";
|
|
389
|
-
const _LPSO = "ListPolicyStoresOutput";
|
|
390
|
-
const _LPT = "ListPolicyTemplates";
|
|
391
|
-
const _LPTI = "ListPolicyTemplatesInput";
|
|
392
|
-
const _LPTO = "ListPolicyTemplatesOutput";
|
|
393
|
-
const _LTFR = "ListTagsForResource";
|
|
394
|
-
const _LTFRI = "ListTagsForResourceInput";
|
|
395
|
-
const _LTFRO = "ListTagsForResourceOutput";
|
|
396
|
-
const _N = "Namespace";
|
|
397
|
-
const _NL = "NamespaceList";
|
|
398
|
-
const _OICATC = "OpenIdConnectAccessTokenConfiguration";
|
|
399
|
-
const _OICATCD = "OpenIdConnectAccessTokenConfigurationDetail";
|
|
400
|
-
const _OICATCI = "OpenIdConnectAccessTokenConfigurationItem";
|
|
401
|
-
const _OICC = "OpenIdConnectConfiguration";
|
|
402
|
-
const _OICCD = "OpenIdConnectConfigurationDetail";
|
|
403
|
-
const _OICCI = "OpenIdConnectConfigurationItem";
|
|
404
|
-
const _OICGC = "OpenIdConnectGroupConfiguration";
|
|
405
|
-
const _OICGCD = "OpenIdConnectGroupConfigurationDetail";
|
|
406
|
-
const _OICGCI = "OpenIdConnectGroupConfigurationItem";
|
|
407
|
-
const _OICITC = "OpenIdConnectIdentityTokenConfiguration";
|
|
408
|
-
const _OICITCD = "OpenIdConnectIdentityTokenConfigurationDetail";
|
|
409
|
-
const _OICITCI = "OpenIdConnectIdentityTokenConfigurationItem";
|
|
410
|
-
const _OICTS = "OpenIdConnectTokenSelection";
|
|
411
|
-
const _OICTSD = "OpenIdConnectTokenSelectionDetail";
|
|
412
|
-
const _OICTSI = "OpenIdConnectTokenSelectionItem";
|
|
413
|
-
const _PD = "PolicyDefinition";
|
|
414
|
-
const _PDD = "PolicyDefinitionDetail";
|
|
415
|
-
const _PDI = "PolicyDefinitionItem";
|
|
416
|
-
const _PET = "PrincipalEntityType";
|
|
417
|
-
const _PF = "PolicyFilter";
|
|
418
|
-
const _PI = "PolicyItem";
|
|
419
|
-
const _PL = "ParentList";
|
|
420
|
-
const _PLo = "PolicyList";
|
|
421
|
-
const _PS = "PolicyStatement";
|
|
422
|
-
const _PSD = "PolicyStoreDescription";
|
|
423
|
-
const _PSI = "PolicyStoreItem";
|
|
424
|
-
const _PSIu = "PutSchemaInput";
|
|
425
|
-
const _PSL = "PolicyStoreList";
|
|
426
|
-
const _PSO = "PutSchemaOutput";
|
|
427
|
-
const _PSu = "PutSchema";
|
|
428
|
-
const _PTD = "PolicyTemplateDescription";
|
|
429
|
-
const _PTI = "PolicyTemplateItem";
|
|
430
|
-
const _PTL = "PolicyTemplatesList";
|
|
431
|
-
const _RA = "RecordAttribute";
|
|
432
|
-
const _RC = "ResourceConflict";
|
|
433
|
-
const _RCL = "ResourceConflictList";
|
|
434
|
-
const _RNFE = "ResourceNotFoundException";
|
|
435
|
-
const _SA = "StringAttribute";
|
|
436
|
-
const _SAe = "SetAttribute";
|
|
437
|
-
const _SD = "SchemaDefinition";
|
|
438
|
-
const _SJ = "SchemaJson";
|
|
439
|
-
const _SPD = "StaticPolicyDescription";
|
|
440
|
-
const _SPDD = "StaticPolicyDefinitionDetail";
|
|
441
|
-
const _SPDI = "StaticPolicyDefinitionItem";
|
|
442
|
-
const _SPDt = "StaticPolicyDefinition";
|
|
443
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
444
|
-
const _T = "Token";
|
|
445
|
-
const _TE = "ThrottlingException";
|
|
446
|
-
const _TLPD = "TemplateLinkedPolicyDefinition";
|
|
447
|
-
const _TLPDD = "TemplateLinkedPolicyDefinitionDetail";
|
|
448
|
-
const _TLPDI = "TemplateLinkedPolicyDefinitionItem";
|
|
449
|
-
const _TMTE = "TooManyTagsException";
|
|
450
|
-
const _TR = "TagResource";
|
|
451
|
-
const _TRI = "TagResourceInput";
|
|
452
|
-
const _TRO = "TagResourceOutput";
|
|
453
|
-
const _UC = "UpdateConfiguration";
|
|
454
|
-
const _UCGC = "UpdateCognitoGroupConfiguration";
|
|
455
|
-
const _UCUPC = "UpdateCognitoUserPoolConfiguration";
|
|
456
|
-
const _UIS = "UpdateIdentitySource";
|
|
457
|
-
const _UISI = "UpdateIdentitySourceInput";
|
|
458
|
-
const _UISO = "UpdateIdentitySourceOutput";
|
|
459
|
-
const _UOICATC = "UpdateOpenIdConnectAccessTokenConfiguration";
|
|
460
|
-
const _UOICC = "UpdateOpenIdConnectConfiguration";
|
|
461
|
-
const _UOICGC = "UpdateOpenIdConnectGroupConfiguration";
|
|
462
|
-
const _UOICITC = "UpdateOpenIdConnectIdentityTokenConfiguration";
|
|
463
|
-
const _UOICTS = "UpdateOpenIdConnectTokenSelection";
|
|
464
|
-
const _UP = "UpdatePolicy";
|
|
465
|
-
const _UPD = "UpdatePolicyDefinition";
|
|
466
|
-
const _UPI = "UpdatePolicyInput";
|
|
467
|
-
const _UPO = "UpdatePolicyOutput";
|
|
468
|
-
const _UPS = "UpdatePolicyStore";
|
|
469
|
-
const _UPSI = "UpdatePolicyStoreInput";
|
|
470
|
-
const _UPSO = "UpdatePolicyStoreOutput";
|
|
471
|
-
const _UPT = "UpdatePolicyTemplate";
|
|
472
|
-
const _UPTI = "UpdatePolicyTemplateInput";
|
|
473
|
-
const _UPTO = "UpdatePolicyTemplateOutput";
|
|
474
|
-
const _UR = "UntagResource";
|
|
475
|
-
const _URI = "UntagResourceInput";
|
|
476
|
-
const _URO = "UntagResourceOutput";
|
|
477
|
-
const _USPD = "UpdateStaticPolicyDefinition";
|
|
478
|
-
const _VE = "ValidationException";
|
|
479
|
-
const _VEF = "ValidationExceptionField";
|
|
480
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
481
|
-
const _VS = "ValidationSettings";
|
|
482
|
-
const _a = "action";
|
|
483
|
-
const _aI = "actionId";
|
|
484
|
-
const _aT = "actionType";
|
|
485
|
-
const _aTO = "accessTokenOnly";
|
|
486
|
-
const _aTc = "accessToken";
|
|
487
|
-
const _ac = "actions";
|
|
488
|
-
const _ar = "arn";
|
|
489
|
-
const _at = "attributes";
|
|
490
|
-
const _au = "audiences";
|
|
491
|
-
const _b = "boolean";
|
|
492
|
-
const _c = "client";
|
|
493
|
-
const _cD = "createdDate";
|
|
494
|
-
const _cI = "clientIds";
|
|
495
|
-
const _cJ = "cedarJson";
|
|
496
|
-
const _cM = "contextMap";
|
|
497
|
-
const _cT = "clientToken";
|
|
498
|
-
const _cUPC = "cognitoUserPoolConfiguration";
|
|
499
|
-
const _cV = "cedarVersion";
|
|
500
|
-
const _co = "code";
|
|
501
|
-
const _con = "context";
|
|
502
|
-
const _conf = "configuration";
|
|
503
|
-
const _d = "definition";
|
|
504
|
-
const _dP = "determiningPolicies";
|
|
505
|
-
const _dPe = "deletionProtection";
|
|
506
|
-
const _dU = "discoveryUrl";
|
|
507
|
-
const _da = "datetime";
|
|
508
|
-
const _de = "decision";
|
|
509
|
-
const _dec = "decimal";
|
|
510
|
-
const _def = "default";
|
|
511
|
-
const _des = "description";
|
|
512
|
-
const _det = "details";
|
|
513
|
-
const _du = "duration";
|
|
514
|
-
const _e = "error";
|
|
515
|
-
const _eC = "encryptionContext";
|
|
516
|
-
const _eD = "errorDescription";
|
|
517
|
-
const _eI = "entityId";
|
|
518
|
-
const _eIP = "entityIdPrefix";
|
|
519
|
-
const _eIn = "entityIdentifier";
|
|
520
|
-
const _eL = "entityList";
|
|
521
|
-
const _eS = "encryptionSettings";
|
|
522
|
-
const _eSn = "encryptionState";
|
|
523
|
-
const _eT = "entityType";
|
|
524
|
-
const _ef = "effect";
|
|
525
|
-
const _en = "entities";
|
|
526
|
-
const _er = "errors";
|
|
527
|
-
const _f = "filters";
|
|
528
|
-
const _fL = "fieldList";
|
|
529
|
-
const _fi = "filter";
|
|
530
|
-
const _gC = "groupConfiguration";
|
|
531
|
-
const _gCr = "groupClaim";
|
|
532
|
-
const _gET = "groupEntityType";
|
|
533
|
-
const _hE = "httpError";
|
|
534
|
-
const _i = "issuer";
|
|
535
|
-
const _iS = "identitySources";
|
|
536
|
-
const _iSI = "identitySourceId";
|
|
537
|
-
const _iT = "identityToken";
|
|
538
|
-
const _iTO = "identityTokenOnly";
|
|
539
|
-
const _id = "identifier";
|
|
540
|
-
const _ip = "ipaddr";
|
|
541
|
-
const _k = "key";
|
|
542
|
-
const _kES = "kmsEncryptionSettings";
|
|
543
|
-
const _kESm = "kmsEncryptionState";
|
|
544
|
-
const _l = "long";
|
|
545
|
-
const _lUD = "lastUpdatedDate";
|
|
546
|
-
const _m = "message";
|
|
547
|
-
const _mR = "maxResults";
|
|
548
|
-
const _mo = "mode";
|
|
549
|
-
const _n = "namespaces";
|
|
550
|
-
const _nT = "nextToken";
|
|
551
|
-
const _oICC = "openIdConnectConfiguration";
|
|
552
|
-
const _oII = "openIdIssuer";
|
|
553
|
-
const _p = "principal";
|
|
554
|
-
const _pET = "principalEntityType";
|
|
555
|
-
const _pI = "policyId";
|
|
556
|
-
const _pIC = "principalIdClaim";
|
|
557
|
-
const _pS = "policyStores";
|
|
558
|
-
const _pSI = "policyStoreId";
|
|
559
|
-
const _pT = "policyType";
|
|
560
|
-
const _pTI = "policyTemplateId";
|
|
561
|
-
const _pTo = "policyTemplates";
|
|
562
|
-
const _pa = "parents";
|
|
563
|
-
const _pat = "path";
|
|
564
|
-
const _po = "policies";
|
|
565
|
-
const _qC = "quotaCode";
|
|
566
|
-
const _r = "requests";
|
|
567
|
-
const _rA = "resourceArn";
|
|
568
|
-
const _rI = "resourceId";
|
|
569
|
-
const _rN = "resourceName";
|
|
570
|
-
const _rT = "resourceType";
|
|
571
|
-
const _re = "results";
|
|
572
|
-
const _rec = "record";
|
|
573
|
-
const _req = "request";
|
|
574
|
-
const _res = "resource";
|
|
575
|
-
const _reso = "resources";
|
|
576
|
-
const _s = "statement";
|
|
577
|
-
const _sC = "serviceCode";
|
|
578
|
-
const _sc = "schema";
|
|
579
|
-
const _se = "server";
|
|
580
|
-
const _set = "set";
|
|
581
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.verifiedpermissions";
|
|
582
|
-
const _st = "string";
|
|
583
|
-
const _sta = "static";
|
|
584
|
-
const _t = "tags";
|
|
585
|
-
const _tK = "tagKeys";
|
|
586
|
-
const _tL = "templateLinked";
|
|
587
|
-
const _tS = "tokenSelection";
|
|
588
|
-
const _u = "unspecified";
|
|
589
|
-
const _uC = "updateConfiguration";
|
|
590
|
-
const _uPA = "userPoolArn";
|
|
591
|
-
const _vS = "validationSettings";
|
|
592
|
-
const n0 = "com.amazonaws.verifiedpermissions";
|
|
593
|
-
var ActionId = [0, n0, _AI, 8, 0];
|
|
594
|
-
var ActionType = [0, n0, _AT, 8, 0];
|
|
595
|
-
var BooleanAttribute = [0, n0, _BA, 8, 2];
|
|
596
|
-
var CedarJson = [0, n0, _CJ, 8, 0];
|
|
597
|
-
var Claim = [0, n0, _C, 8, 0];
|
|
598
|
-
var ClientId = [0, n0, _CI, 8, 0];
|
|
599
|
-
var DatetimeAttribute = [0, n0, _DA, 8, 0];
|
|
600
|
-
var Decimal = [0, n0, _D, 8, 0];
|
|
601
|
-
var Duration = [0, n0, _Du, 8, 0];
|
|
602
|
-
var EntityId = [0, n0, _EI, 8, 0];
|
|
603
|
-
var EntityIdPrefix = [0, n0, _EIP, 8, 0];
|
|
604
|
-
var EntityType = [0, n0, _ET, 8, 0];
|
|
605
|
-
var GroupEntityType = [0, n0, _GET, 8, 0];
|
|
606
|
-
var IpAddr = [0, n0, _IA, 8, 0];
|
|
607
|
-
var LongAttribute = [0, n0, _LA, 8, 1];
|
|
608
|
-
var Namespace = [0, n0, _N, 8, 0];
|
|
609
|
-
var PolicyStatement = [0, n0, _PS, 8, 0];
|
|
610
|
-
var PolicyStoreDescription = [0, n0, _PSD, 8, 0];
|
|
611
|
-
var PolicyTemplateDescription = [0, n0, _PTD, 8, 0];
|
|
612
|
-
var PrincipalEntityType = [0, n0, _PET, 8, 0];
|
|
613
|
-
var SchemaJson = [0, n0, _SJ, 8, 0];
|
|
614
|
-
var StaticPolicyDescription = [0, n0, _SPD, 8, 0];
|
|
615
|
-
var StringAttribute = [0, n0, _SA, 8, 0];
|
|
616
|
-
var Token = [0, n0, _T, 8, 0];
|
|
617
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
618
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
619
|
-
[_m],
|
|
620
|
-
[0], 1
|
|
621
|
-
];
|
|
622
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
623
|
-
var ActionIdentifier$ = [3, n0, _AIc,
|
|
624
|
-
0,
|
|
625
|
-
[_aT, _aI],
|
|
626
|
-
[[() => ActionType, 0], [() => ActionId, 0]], 2
|
|
627
|
-
];
|
|
628
|
-
var BatchGetPolicyErrorItem$ = [3, n0, _BGPEI,
|
|
629
|
-
0,
|
|
630
|
-
[_co, _pSI, _pI, _m],
|
|
631
|
-
[0, 0, 0, 0], 4
|
|
632
|
-
];
|
|
633
|
-
var BatchGetPolicyInput$ = [3, n0, _BGPI,
|
|
634
|
-
0,
|
|
635
|
-
[_r],
|
|
636
|
-
[() => BatchGetPolicyInputList], 1
|
|
637
|
-
];
|
|
638
|
-
var BatchGetPolicyInputItem$ = [3, n0, _BGPII,
|
|
639
|
-
0,
|
|
640
|
-
[_pSI, _pI],
|
|
641
|
-
[0, 0], 2
|
|
642
|
-
];
|
|
643
|
-
var BatchGetPolicyOutput$ = [3, n0, _BGPO,
|
|
644
|
-
0,
|
|
645
|
-
[_re, _er],
|
|
646
|
-
[[() => BatchGetPolicyOutputList, 0], () => BatchGetPolicyErrorList], 2
|
|
647
|
-
];
|
|
648
|
-
var BatchGetPolicyOutputItem$ = [3, n0, _BGPOI,
|
|
649
|
-
0,
|
|
650
|
-
[_pSI, _pI, _pT, _d, _cD, _lUD],
|
|
651
|
-
[0, 0, 0, [() => PolicyDefinitionDetail$, 0], 5, 5], 6
|
|
652
|
-
];
|
|
653
|
-
var BatchIsAuthorizedInput$ = [3, n0, _BIAI,
|
|
654
|
-
0,
|
|
655
|
-
[_pSI, _r, _en],
|
|
656
|
-
[0, [() => BatchIsAuthorizedInputList, 0], [() => EntitiesDefinition$, 0]], 2
|
|
657
|
-
];
|
|
658
|
-
var BatchIsAuthorizedInputItem$ = [3, n0, _BIAII,
|
|
659
|
-
0,
|
|
660
|
-
[_p, _a, _res, _con],
|
|
661
|
-
[[() => EntityIdentifier$, 0], [() => ActionIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ContextDefinition$, 0]]
|
|
662
|
-
];
|
|
663
|
-
var BatchIsAuthorizedOutput$ = [3, n0, _BIAO,
|
|
664
|
-
0,
|
|
665
|
-
[_re],
|
|
666
|
-
[[() => BatchIsAuthorizedOutputList, 0]], 1
|
|
667
|
-
];
|
|
668
|
-
var BatchIsAuthorizedOutputItem$ = [3, n0, _BIAOI,
|
|
669
|
-
0,
|
|
670
|
-
[_req, _de, _dP, _er],
|
|
671
|
-
[[() => BatchIsAuthorizedInputItem$, 0], 0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0]], 4
|
|
672
|
-
];
|
|
673
|
-
var BatchIsAuthorizedWithTokenInput$ = [3, n0, _BIAWTI,
|
|
674
|
-
0,
|
|
675
|
-
[_pSI, _r, _iT, _aTc, _en],
|
|
676
|
-
[0, [() => BatchIsAuthorizedWithTokenInputList, 0], [() => Token, 0], [() => Token, 0], [() => EntitiesDefinition$, 0]], 2
|
|
677
|
-
];
|
|
678
|
-
var BatchIsAuthorizedWithTokenInputItem$ = [3, n0, _BIAWTII,
|
|
679
|
-
0,
|
|
680
|
-
[_a, _res, _con],
|
|
681
|
-
[[() => ActionIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ContextDefinition$, 0]]
|
|
682
|
-
];
|
|
683
|
-
var BatchIsAuthorizedWithTokenOutput$ = [3, n0, _BIAWTO,
|
|
684
|
-
0,
|
|
685
|
-
[_re, _p],
|
|
686
|
-
[[() => BatchIsAuthorizedWithTokenOutputList, 0], [() => EntityIdentifier$, 0]], 1
|
|
687
|
-
];
|
|
688
|
-
var BatchIsAuthorizedWithTokenOutputItem$ = [3, n0, _BIAWTOI,
|
|
689
|
-
0,
|
|
690
|
-
[_req, _de, _dP, _er],
|
|
691
|
-
[[() => BatchIsAuthorizedWithTokenInputItem$, 0], 0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0]], 4
|
|
692
|
-
];
|
|
693
|
-
var CognitoGroupConfiguration$ = [3, n0, _CGC,
|
|
694
|
-
0,
|
|
695
|
-
[_gET],
|
|
696
|
-
[[() => GroupEntityType, 0]], 1
|
|
697
|
-
];
|
|
698
|
-
var CognitoGroupConfigurationDetail$ = [3, n0, _CGCD,
|
|
699
|
-
0,
|
|
700
|
-
[_gET],
|
|
701
|
-
[[() => GroupEntityType, 0]]
|
|
702
|
-
];
|
|
703
|
-
var CognitoGroupConfigurationItem$ = [3, n0, _CGCI,
|
|
704
|
-
0,
|
|
705
|
-
[_gET],
|
|
706
|
-
[[() => GroupEntityType, 0]]
|
|
707
|
-
];
|
|
708
|
-
var CognitoUserPoolConfiguration$ = [3, n0, _CUPC,
|
|
709
|
-
0,
|
|
710
|
-
[_uPA, _cI, _gC],
|
|
711
|
-
[0, [() => ClientIds, 0], [() => CognitoGroupConfiguration$, 0]], 1
|
|
712
|
-
];
|
|
713
|
-
var CognitoUserPoolConfigurationDetail$ = [3, n0, _CUPCD,
|
|
714
|
-
0,
|
|
715
|
-
[_uPA, _cI, _i, _gC],
|
|
716
|
-
[0, [() => ClientIds, 0], 0, [() => CognitoGroupConfigurationDetail$, 0]], 3
|
|
717
|
-
];
|
|
718
|
-
var CognitoUserPoolConfigurationItem$ = [3, n0, _CUPCI,
|
|
719
|
-
0,
|
|
720
|
-
[_uPA, _cI, _i, _gC],
|
|
721
|
-
[0, [() => ClientIds, 0], 0, [() => CognitoGroupConfigurationItem$, 0]], 3
|
|
722
|
-
];
|
|
723
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
724
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
725
|
-
[_m, _reso],
|
|
726
|
-
[0, () => ResourceConflictList], 2
|
|
727
|
-
];
|
|
728
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
729
|
-
var CreateIdentitySourceInput$ = [3, n0, _CISI,
|
|
730
|
-
0,
|
|
731
|
-
[_pSI, _conf, _cT, _pET],
|
|
732
|
-
[0, [() => Configuration$, 0], [0, 4], [() => PrincipalEntityType, 0]], 2
|
|
733
|
-
];
|
|
734
|
-
var CreateIdentitySourceOutput$ = [3, n0, _CISO,
|
|
735
|
-
0,
|
|
736
|
-
[_cD, _iSI, _lUD, _pSI],
|
|
737
|
-
[5, 0, 5, 0], 4
|
|
738
|
-
];
|
|
739
|
-
var CreatePolicyInput$ = [3, n0, _CPI,
|
|
740
|
-
0,
|
|
741
|
-
[_pSI, _d, _cT],
|
|
742
|
-
[0, [() => PolicyDefinition$, 0], [0, 4]], 2
|
|
743
|
-
];
|
|
744
|
-
var CreatePolicyOutput$ = [3, n0, _CPO,
|
|
745
|
-
0,
|
|
746
|
-
[_pSI, _pI, _pT, _cD, _lUD, _p, _res, _ac, _ef],
|
|
747
|
-
[0, 0, 0, 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0], 5
|
|
748
|
-
];
|
|
749
|
-
var CreatePolicyStoreInput$ = [3, n0, _CPSI,
|
|
750
|
-
0,
|
|
751
|
-
[_vS, _cT, _des, _dPe, _eS, _t],
|
|
752
|
-
[() => ValidationSettings$, [0, 4], [() => PolicyStoreDescription, 0], 0, () => EncryptionSettings$, 128 | 0], 1
|
|
753
|
-
];
|
|
754
|
-
var CreatePolicyStoreOutput$ = [3, n0, _CPSO,
|
|
755
|
-
0,
|
|
756
|
-
[_pSI, _ar, _cD, _lUD],
|
|
757
|
-
[0, 0, 5, 5], 4
|
|
758
|
-
];
|
|
759
|
-
var CreatePolicyTemplateInput$ = [3, n0, _CPTI,
|
|
760
|
-
0,
|
|
761
|
-
[_pSI, _s, _cT, _des],
|
|
762
|
-
[0, [() => PolicyStatement, 0], [0, 4], [() => PolicyTemplateDescription, 0]], 2
|
|
763
|
-
];
|
|
764
|
-
var CreatePolicyTemplateOutput$ = [3, n0, _CPTO,
|
|
765
|
-
0,
|
|
766
|
-
[_pSI, _pTI, _cD, _lUD],
|
|
767
|
-
[0, 0, 5, 5], 4
|
|
768
|
-
];
|
|
769
|
-
var DeleteIdentitySourceInput$ = [3, n0, _DISI,
|
|
770
|
-
0,
|
|
771
|
-
[_pSI, _iSI],
|
|
772
|
-
[0, 0], 2
|
|
773
|
-
];
|
|
774
|
-
var DeleteIdentitySourceOutput$ = [3, n0, _DISO,
|
|
775
|
-
0,
|
|
776
|
-
[],
|
|
777
|
-
[]
|
|
778
|
-
];
|
|
779
|
-
var DeletePolicyInput$ = [3, n0, _DPI,
|
|
780
|
-
0,
|
|
781
|
-
[_pSI, _pI],
|
|
782
|
-
[0, 0], 2
|
|
783
|
-
];
|
|
784
|
-
var DeletePolicyOutput$ = [3, n0, _DPO,
|
|
785
|
-
0,
|
|
786
|
-
[],
|
|
787
|
-
[]
|
|
788
|
-
];
|
|
789
|
-
var DeletePolicyStoreInput$ = [3, n0, _DPSI,
|
|
790
|
-
0,
|
|
791
|
-
[_pSI],
|
|
792
|
-
[0], 1
|
|
793
|
-
];
|
|
794
|
-
var DeletePolicyStoreOutput$ = [3, n0, _DPSO,
|
|
795
|
-
0,
|
|
796
|
-
[],
|
|
797
|
-
[]
|
|
798
|
-
];
|
|
799
|
-
var DeletePolicyTemplateInput$ = [3, n0, _DPTI,
|
|
800
|
-
0,
|
|
801
|
-
[_pSI, _pTI],
|
|
802
|
-
[0, 0], 2
|
|
803
|
-
];
|
|
804
|
-
var DeletePolicyTemplateOutput$ = [3, n0, _DPTO,
|
|
805
|
-
0,
|
|
806
|
-
[],
|
|
807
|
-
[]
|
|
808
|
-
];
|
|
809
|
-
var DeterminingPolicyItem$ = [3, n0, _DPIe,
|
|
810
|
-
0,
|
|
811
|
-
[_pI],
|
|
812
|
-
[0], 1
|
|
813
|
-
];
|
|
814
|
-
var EntityIdentifier$ = [3, n0, _EIn,
|
|
815
|
-
0,
|
|
816
|
-
[_eT, _eI],
|
|
817
|
-
[[() => EntityType, 0], [() => EntityId, 0]], 2
|
|
818
|
-
];
|
|
819
|
-
var EntityItem$ = [3, n0, _EInt,
|
|
820
|
-
0,
|
|
821
|
-
[_id, _at, _pa, _t],
|
|
822
|
-
[[() => EntityIdentifier$, 0], [() => EntityAttributes, 0], [() => ParentList, 0], [() => EntityCedarTags, 0]], 1
|
|
823
|
-
];
|
|
824
|
-
var EvaluationErrorItem$ = [3, n0, _EEI,
|
|
825
|
-
8,
|
|
826
|
-
[_eD],
|
|
827
|
-
[0], 1
|
|
828
|
-
];
|
|
829
|
-
var GetIdentitySourceInput$ = [3, n0, _GISI,
|
|
830
|
-
0,
|
|
831
|
-
[_pSI, _iSI],
|
|
832
|
-
[0, 0], 2
|
|
833
|
-
];
|
|
834
|
-
var GetIdentitySourceOutput$ = [3, n0, _GISO,
|
|
835
|
-
0,
|
|
836
|
-
[_cD, _iSI, _lUD, _pSI, _pET, _det, _conf],
|
|
837
|
-
[5, 0, 5, 0, [() => PrincipalEntityType, 0], [() => IdentitySourceDetails$, 0], [() => ConfigurationDetail$, 0]], 5
|
|
838
|
-
];
|
|
839
|
-
var GetPolicyInput$ = [3, n0, _GPI,
|
|
840
|
-
0,
|
|
841
|
-
[_pSI, _pI],
|
|
842
|
-
[0, 0], 2
|
|
843
|
-
];
|
|
844
|
-
var GetPolicyOutput$ = [3, n0, _GPO,
|
|
845
|
-
0,
|
|
846
|
-
[_pSI, _pI, _pT, _d, _cD, _lUD, _p, _res, _ac, _ef],
|
|
847
|
-
[0, 0, 0, [() => PolicyDefinitionDetail$, 0], 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0], 6
|
|
848
|
-
];
|
|
849
|
-
var GetPolicyStoreInput$ = [3, n0, _GPSI,
|
|
850
|
-
0,
|
|
851
|
-
[_pSI, _t],
|
|
852
|
-
[0, 2], 1
|
|
853
|
-
];
|
|
854
|
-
var GetPolicyStoreOutput$ = [3, n0, _GPSO,
|
|
855
|
-
0,
|
|
856
|
-
[_pSI, _ar, _vS, _cD, _lUD, _des, _dPe, _eSn, _cV, _t],
|
|
857
|
-
[0, 0, () => ValidationSettings$, 5, 5, [() => PolicyStoreDescription, 0], 0, () => EncryptionState$, 0, 128 | 0], 5
|
|
858
|
-
];
|
|
859
|
-
var GetPolicyTemplateInput$ = [3, n0, _GPTI,
|
|
860
|
-
0,
|
|
861
|
-
[_pSI, _pTI],
|
|
862
|
-
[0, 0], 2
|
|
863
|
-
];
|
|
864
|
-
var GetPolicyTemplateOutput$ = [3, n0, _GPTO,
|
|
865
|
-
0,
|
|
866
|
-
[_pSI, _pTI, _s, _cD, _lUD, _des],
|
|
867
|
-
[0, 0, [() => PolicyStatement, 0], 5, 5, [() => PolicyTemplateDescription, 0]], 5
|
|
868
|
-
];
|
|
869
|
-
var GetSchemaInput$ = [3, n0, _GSI,
|
|
870
|
-
0,
|
|
871
|
-
[_pSI],
|
|
872
|
-
[0], 1
|
|
873
|
-
];
|
|
874
|
-
var GetSchemaOutput$ = [3, n0, _GSO,
|
|
875
|
-
0,
|
|
876
|
-
[_pSI, _sc, _cD, _lUD, _n],
|
|
877
|
-
[0, [() => SchemaJson, 0], 5, 5, [() => NamespaceList, 0]], 4
|
|
878
|
-
];
|
|
879
|
-
var IdentitySourceDetails$ = [3, n0, _ISD,
|
|
880
|
-
0,
|
|
881
|
-
[_cI, _uPA, _dU, _oII],
|
|
882
|
-
[[() => ClientIds, 0], 0, 0, 0]
|
|
883
|
-
];
|
|
884
|
-
var IdentitySourceFilter$ = [3, n0, _ISF,
|
|
885
|
-
0,
|
|
886
|
-
[_pET],
|
|
887
|
-
[[() => PrincipalEntityType, 0]]
|
|
888
|
-
];
|
|
889
|
-
var IdentitySourceItem$ = [3, n0, _ISI,
|
|
890
|
-
0,
|
|
891
|
-
[_cD, _iSI, _lUD, _pSI, _pET, _det, _conf],
|
|
892
|
-
[5, 0, 5, 0, [() => PrincipalEntityType, 0], [() => IdentitySourceItemDetails$, 0], [() => ConfigurationItem$, 0]], 5
|
|
893
|
-
];
|
|
894
|
-
var IdentitySourceItemDetails$ = [3, n0, _ISID,
|
|
895
|
-
0,
|
|
896
|
-
[_cI, _uPA, _dU, _oII],
|
|
897
|
-
[[() => ClientIds, 0], 0, 0, 0]
|
|
898
|
-
];
|
|
899
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
900
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
901
|
-
[_m],
|
|
902
|
-
[0], 1
|
|
903
|
-
];
|
|
904
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
905
|
-
var InvalidStateException$ = [-3, n0, _ISEn,
|
|
906
|
-
{ [_e]: _c, [_hE]: 406 },
|
|
907
|
-
[_m],
|
|
908
|
-
[0], 1
|
|
909
|
-
];
|
|
910
|
-
schema.TypeRegistry.for(n0).registerError(InvalidStateException$, InvalidStateException);
|
|
911
|
-
var IsAuthorizedInput$ = [3, n0, _IAI,
|
|
912
|
-
0,
|
|
913
|
-
[_pSI, _p, _a, _res, _con, _en],
|
|
914
|
-
[0, [() => EntityIdentifier$, 0], [() => ActionIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ContextDefinition$, 0], [() => EntitiesDefinition$, 0]], 1
|
|
915
|
-
];
|
|
916
|
-
var IsAuthorizedOutput$ = [3, n0, _IAO,
|
|
917
|
-
0,
|
|
918
|
-
[_de, _dP, _er],
|
|
919
|
-
[0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0]], 3
|
|
920
|
-
];
|
|
921
|
-
var IsAuthorizedWithTokenInput$ = [3, n0, _IAWTI,
|
|
922
|
-
0,
|
|
923
|
-
[_pSI, _iT, _aTc, _a, _res, _con, _en],
|
|
924
|
-
[0, [() => Token, 0], [() => Token, 0], [() => ActionIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ContextDefinition$, 0], [() => EntitiesDefinition$, 0]], 1
|
|
925
|
-
];
|
|
926
|
-
var IsAuthorizedWithTokenOutput$ = [3, n0, _IAWTO,
|
|
927
|
-
0,
|
|
928
|
-
[_de, _dP, _er, _p],
|
|
929
|
-
[0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0], [() => EntityIdentifier$, 0]], 3
|
|
930
|
-
];
|
|
931
|
-
var KmsEncryptionSettings$ = [3, n0, _KES,
|
|
932
|
-
0,
|
|
933
|
-
[_k, _eC],
|
|
934
|
-
[0, 128 | 0], 1
|
|
935
|
-
];
|
|
936
|
-
var KmsEncryptionState$ = [3, n0, _KESm,
|
|
937
|
-
0,
|
|
938
|
-
[_k, _eC],
|
|
939
|
-
[0, 128 | 0], 2
|
|
940
|
-
];
|
|
941
|
-
var ListIdentitySourcesInput$ = [3, n0, _LISI,
|
|
942
|
-
0,
|
|
943
|
-
[_pSI, _nT, _mR, _f],
|
|
944
|
-
[0, 0, 1, [() => IdentitySourceFilters, 0]], 1
|
|
945
|
-
];
|
|
946
|
-
var ListIdentitySourcesOutput$ = [3, n0, _LISO,
|
|
947
|
-
0,
|
|
948
|
-
[_iS, _nT],
|
|
949
|
-
[[() => IdentitySources, 0], 0], 1
|
|
950
|
-
];
|
|
951
|
-
var ListPoliciesInput$ = [3, n0, _LPI,
|
|
952
|
-
0,
|
|
953
|
-
[_pSI, _nT, _mR, _fi],
|
|
954
|
-
[0, 0, 1, [() => PolicyFilter$, 0]], 1
|
|
955
|
-
];
|
|
956
|
-
var ListPoliciesOutput$ = [3, n0, _LPO,
|
|
957
|
-
0,
|
|
958
|
-
[_po, _nT],
|
|
959
|
-
[[() => PolicyList, 0], 0], 1
|
|
960
|
-
];
|
|
961
|
-
var ListPolicyStoresInput$ = [3, n0, _LPSI,
|
|
962
|
-
0,
|
|
963
|
-
[_nT, _mR],
|
|
964
|
-
[0, 1]
|
|
965
|
-
];
|
|
966
|
-
var ListPolicyStoresOutput$ = [3, n0, _LPSO,
|
|
967
|
-
0,
|
|
968
|
-
[_pS, _nT],
|
|
969
|
-
[[() => PolicyStoreList, 0], 0], 1
|
|
970
|
-
];
|
|
971
|
-
var ListPolicyTemplatesInput$ = [3, n0, _LPTI,
|
|
972
|
-
0,
|
|
973
|
-
[_pSI, _nT, _mR],
|
|
974
|
-
[0, 0, 1], 1
|
|
975
|
-
];
|
|
976
|
-
var ListPolicyTemplatesOutput$ = [3, n0, _LPTO,
|
|
977
|
-
0,
|
|
978
|
-
[_pTo, _nT],
|
|
979
|
-
[[() => PolicyTemplatesList, 0], 0], 1
|
|
980
|
-
];
|
|
981
|
-
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
982
|
-
0,
|
|
983
|
-
[_rA],
|
|
984
|
-
[0], 1
|
|
985
|
-
];
|
|
986
|
-
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
987
|
-
0,
|
|
988
|
-
[_t],
|
|
989
|
-
[128 | 0]
|
|
990
|
-
];
|
|
991
|
-
var OpenIdConnectAccessTokenConfiguration$ = [3, n0, _OICATC,
|
|
992
|
-
0,
|
|
993
|
-
[_pIC, _au],
|
|
994
|
-
[[() => Claim, 0], 64 | 0]
|
|
995
|
-
];
|
|
996
|
-
var OpenIdConnectAccessTokenConfigurationDetail$ = [3, n0, _OICATCD,
|
|
997
|
-
0,
|
|
998
|
-
[_pIC, _au],
|
|
999
|
-
[[() => Claim, 0], 64 | 0]
|
|
1000
|
-
];
|
|
1001
|
-
var OpenIdConnectAccessTokenConfigurationItem$ = [3, n0, _OICATCI,
|
|
1002
|
-
0,
|
|
1003
|
-
[_pIC, _au],
|
|
1004
|
-
[[() => Claim, 0], 64 | 0]
|
|
1005
|
-
];
|
|
1006
|
-
var OpenIdConnectConfiguration$ = [3, n0, _OICC,
|
|
1007
|
-
0,
|
|
1008
|
-
[_i, _tS, _eIP, _gC],
|
|
1009
|
-
[0, [() => OpenIdConnectTokenSelection$, 0], [() => EntityIdPrefix, 0], [() => OpenIdConnectGroupConfiguration$, 0]], 2
|
|
1010
|
-
];
|
|
1011
|
-
var OpenIdConnectConfigurationDetail$ = [3, n0, _OICCD,
|
|
1012
|
-
0,
|
|
1013
|
-
[_i, _tS, _eIP, _gC],
|
|
1014
|
-
[0, [() => OpenIdConnectTokenSelectionDetail$, 0], [() => EntityIdPrefix, 0], [() => OpenIdConnectGroupConfigurationDetail$, 0]], 2
|
|
1015
|
-
];
|
|
1016
|
-
var OpenIdConnectConfigurationItem$ = [3, n0, _OICCI,
|
|
1017
|
-
0,
|
|
1018
|
-
[_i, _tS, _eIP, _gC],
|
|
1019
|
-
[0, [() => OpenIdConnectTokenSelectionItem$, 0], [() => EntityIdPrefix, 0], [() => OpenIdConnectGroupConfigurationItem$, 0]], 2
|
|
1020
|
-
];
|
|
1021
|
-
var OpenIdConnectGroupConfiguration$ = [3, n0, _OICGC,
|
|
1022
|
-
0,
|
|
1023
|
-
[_gCr, _gET],
|
|
1024
|
-
[[() => Claim, 0], [() => GroupEntityType, 0]], 2
|
|
1025
|
-
];
|
|
1026
|
-
var OpenIdConnectGroupConfigurationDetail$ = [3, n0, _OICGCD,
|
|
1027
|
-
0,
|
|
1028
|
-
[_gCr, _gET],
|
|
1029
|
-
[[() => Claim, 0], [() => GroupEntityType, 0]], 2
|
|
1030
|
-
];
|
|
1031
|
-
var OpenIdConnectGroupConfigurationItem$ = [3, n0, _OICGCI,
|
|
1032
|
-
0,
|
|
1033
|
-
[_gCr, _gET],
|
|
1034
|
-
[[() => Claim, 0], [() => GroupEntityType, 0]], 2
|
|
1035
|
-
];
|
|
1036
|
-
var OpenIdConnectIdentityTokenConfiguration$ = [3, n0, _OICITC,
|
|
1037
|
-
0,
|
|
1038
|
-
[_pIC, _cI],
|
|
1039
|
-
[[() => Claim, 0], [() => ClientIds, 0]]
|
|
1040
|
-
];
|
|
1041
|
-
var OpenIdConnectIdentityTokenConfigurationDetail$ = [3, n0, _OICITCD,
|
|
1042
|
-
0,
|
|
1043
|
-
[_pIC, _cI],
|
|
1044
|
-
[[() => Claim, 0], [() => ClientIds, 0]]
|
|
1045
|
-
];
|
|
1046
|
-
var OpenIdConnectIdentityTokenConfigurationItem$ = [3, n0, _OICITCI,
|
|
1047
|
-
0,
|
|
1048
|
-
[_pIC, _cI],
|
|
1049
|
-
[[() => Claim, 0], [() => ClientIds, 0]]
|
|
1050
|
-
];
|
|
1051
|
-
var PolicyFilter$ = [3, n0, _PF,
|
|
1052
|
-
0,
|
|
1053
|
-
[_p, _res, _pT, _pTI],
|
|
1054
|
-
[[() => EntityReference$, 0], [() => EntityReference$, 0], 0, 0]
|
|
1055
|
-
];
|
|
1056
|
-
var PolicyItem$ = [3, n0, _PI,
|
|
1057
|
-
0,
|
|
1058
|
-
[_pSI, _pI, _pT, _d, _cD, _lUD, _p, _res, _ac, _ef],
|
|
1059
|
-
[0, 0, 0, [() => PolicyDefinitionItem$, 0], 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0], 6
|
|
1060
|
-
];
|
|
1061
|
-
var PolicyStoreItem$ = [3, n0, _PSI,
|
|
1062
|
-
0,
|
|
1063
|
-
[_pSI, _ar, _cD, _lUD, _des],
|
|
1064
|
-
[0, 0, 5, 5, [() => PolicyStoreDescription, 0]], 3
|
|
1065
|
-
];
|
|
1066
|
-
var PolicyTemplateItem$ = [3, n0, _PTI,
|
|
1067
|
-
0,
|
|
1068
|
-
[_pSI, _pTI, _cD, _lUD, _des],
|
|
1069
|
-
[0, 0, 5, 5, [() => PolicyTemplateDescription, 0]], 4
|
|
1070
|
-
];
|
|
1071
|
-
var PutSchemaInput$ = [3, n0, _PSIu,
|
|
1072
|
-
0,
|
|
1073
|
-
[_pSI, _d],
|
|
1074
|
-
[0, [() => SchemaDefinition$, 0]], 2
|
|
1075
|
-
];
|
|
1076
|
-
var PutSchemaOutput$ = [3, n0, _PSO,
|
|
1077
|
-
0,
|
|
1078
|
-
[_pSI, _n, _cD, _lUD],
|
|
1079
|
-
[0, [() => NamespaceList, 0], 5, 5], 4
|
|
1080
|
-
];
|
|
1081
|
-
var ResourceConflict$ = [3, n0, _RC,
|
|
1082
|
-
0,
|
|
1083
|
-
[_rI, _rT],
|
|
1084
|
-
[0, 0], 2
|
|
1085
|
-
];
|
|
1086
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1087
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1088
|
-
[_m, _rI, _rT],
|
|
1089
|
-
[0, 0, 0], 3
|
|
1090
|
-
];
|
|
1091
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1092
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1093
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1094
|
-
[_m, _rT, _rI, _sC, _qC],
|
|
1095
|
-
[0, 0, 0, 0, 0], 2
|
|
1096
|
-
];
|
|
1097
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1098
|
-
var StaticPolicyDefinition$ = [3, n0, _SPDt,
|
|
1099
|
-
0,
|
|
1100
|
-
[_s, _des],
|
|
1101
|
-
[[() => PolicyStatement, 0], [() => StaticPolicyDescription, 0]], 1
|
|
1102
|
-
];
|
|
1103
|
-
var StaticPolicyDefinitionDetail$ = [3, n0, _SPDD,
|
|
1104
|
-
0,
|
|
1105
|
-
[_s, _des],
|
|
1106
|
-
[[() => PolicyStatement, 0], [() => StaticPolicyDescription, 0]], 1
|
|
1107
|
-
];
|
|
1108
|
-
var StaticPolicyDefinitionItem$ = [3, n0, _SPDI,
|
|
1109
|
-
0,
|
|
1110
|
-
[_des],
|
|
1111
|
-
[[() => StaticPolicyDescription, 0]]
|
|
1112
|
-
];
|
|
1113
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
1114
|
-
0,
|
|
1115
|
-
[_rA, _t],
|
|
1116
|
-
[0, 128 | 0], 2
|
|
1117
|
-
];
|
|
1118
|
-
var TagResourceOutput$ = [3, n0, _TRO,
|
|
1119
|
-
0,
|
|
1120
|
-
[],
|
|
1121
|
-
[]
|
|
1122
|
-
];
|
|
1123
|
-
var TemplateLinkedPolicyDefinition$ = [3, n0, _TLPD,
|
|
1124
|
-
0,
|
|
1125
|
-
[_pTI, _p, _res],
|
|
1126
|
-
[0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0]], 1
|
|
1127
|
-
];
|
|
1128
|
-
var TemplateLinkedPolicyDefinitionDetail$ = [3, n0, _TLPDD,
|
|
1129
|
-
0,
|
|
1130
|
-
[_pTI, _p, _res],
|
|
1131
|
-
[0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0]], 1
|
|
1132
|
-
];
|
|
1133
|
-
var TemplateLinkedPolicyDefinitionItem$ = [3, n0, _TLPDI,
|
|
1134
|
-
0,
|
|
1135
|
-
[_pTI, _p, _res],
|
|
1136
|
-
[0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0]], 1
|
|
1137
|
-
];
|
|
1138
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1139
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1140
|
-
[_m, _sC, _qC],
|
|
1141
|
-
[0, 0, 0], 1
|
|
1142
|
-
];
|
|
1143
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1144
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1145
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1146
|
-
[_m, _rN],
|
|
1147
|
-
[0, 0]
|
|
1148
|
-
];
|
|
1149
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1150
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
1151
|
-
0,
|
|
1152
|
-
[_rA, _tK],
|
|
1153
|
-
[0, 64 | 0], 2
|
|
1154
|
-
];
|
|
1155
|
-
var UntagResourceOutput$ = [3, n0, _URO,
|
|
1156
|
-
0,
|
|
1157
|
-
[],
|
|
1158
|
-
[]
|
|
1159
|
-
];
|
|
1160
|
-
var UpdateCognitoGroupConfiguration$ = [3, n0, _UCGC,
|
|
1161
|
-
0,
|
|
1162
|
-
[_gET],
|
|
1163
|
-
[[() => GroupEntityType, 0]], 1
|
|
1164
|
-
];
|
|
1165
|
-
var UpdateCognitoUserPoolConfiguration$ = [3, n0, _UCUPC,
|
|
1166
|
-
0,
|
|
1167
|
-
[_uPA, _cI, _gC],
|
|
1168
|
-
[0, [() => ClientIds, 0], [() => UpdateCognitoGroupConfiguration$, 0]], 1
|
|
1169
|
-
];
|
|
1170
|
-
var UpdateIdentitySourceInput$ = [3, n0, _UISI,
|
|
1171
|
-
0,
|
|
1172
|
-
[_pSI, _iSI, _uC, _pET],
|
|
1173
|
-
[0, 0, [() => UpdateConfiguration$, 0], [() => PrincipalEntityType, 0]], 3
|
|
1174
|
-
];
|
|
1175
|
-
var UpdateIdentitySourceOutput$ = [3, n0, _UISO,
|
|
1176
|
-
0,
|
|
1177
|
-
[_cD, _iSI, _lUD, _pSI],
|
|
1178
|
-
[5, 0, 5, 0], 4
|
|
1179
|
-
];
|
|
1180
|
-
var UpdateOpenIdConnectAccessTokenConfiguration$ = [3, n0, _UOICATC,
|
|
1181
|
-
0,
|
|
1182
|
-
[_pIC, _au],
|
|
1183
|
-
[[() => Claim, 0], 64 | 0]
|
|
1184
|
-
];
|
|
1185
|
-
var UpdateOpenIdConnectConfiguration$ = [3, n0, _UOICC,
|
|
1186
|
-
0,
|
|
1187
|
-
[_i, _tS, _eIP, _gC],
|
|
1188
|
-
[0, [() => UpdateOpenIdConnectTokenSelection$, 0], [() => EntityIdPrefix, 0], [() => UpdateOpenIdConnectGroupConfiguration$, 0]], 2
|
|
1189
|
-
];
|
|
1190
|
-
var UpdateOpenIdConnectGroupConfiguration$ = [3, n0, _UOICGC,
|
|
1191
|
-
0,
|
|
1192
|
-
[_gCr, _gET],
|
|
1193
|
-
[[() => Claim, 0], [() => GroupEntityType, 0]], 2
|
|
1194
|
-
];
|
|
1195
|
-
var UpdateOpenIdConnectIdentityTokenConfiguration$ = [3, n0, _UOICITC,
|
|
1196
|
-
0,
|
|
1197
|
-
[_pIC, _cI],
|
|
1198
|
-
[[() => Claim, 0], [() => ClientIds, 0]]
|
|
1199
|
-
];
|
|
1200
|
-
var UpdatePolicyInput$ = [3, n0, _UPI,
|
|
1201
|
-
0,
|
|
1202
|
-
[_pSI, _pI, _d],
|
|
1203
|
-
[0, 0, [() => UpdatePolicyDefinition$, 0]], 2
|
|
1204
|
-
];
|
|
1205
|
-
var UpdatePolicyOutput$ = [3, n0, _UPO,
|
|
1206
|
-
0,
|
|
1207
|
-
[_pSI, _pI, _pT, _cD, _lUD, _p, _res, _ac, _ef],
|
|
1208
|
-
[0, 0, 0, 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0], 5
|
|
1209
|
-
];
|
|
1210
|
-
var UpdatePolicyStoreInput$ = [3, n0, _UPSI,
|
|
1211
|
-
0,
|
|
1212
|
-
[_pSI, _vS, _dPe, _des],
|
|
1213
|
-
[0, () => ValidationSettings$, 0, [() => PolicyStoreDescription, 0]], 2
|
|
1214
|
-
];
|
|
1215
|
-
var UpdatePolicyStoreOutput$ = [3, n0, _UPSO,
|
|
1216
|
-
0,
|
|
1217
|
-
[_pSI, _ar, _cD, _lUD],
|
|
1218
|
-
[0, 0, 5, 5], 4
|
|
1219
|
-
];
|
|
1220
|
-
var UpdatePolicyTemplateInput$ = [3, n0, _UPTI,
|
|
1221
|
-
0,
|
|
1222
|
-
[_pSI, _pTI, _s, _des],
|
|
1223
|
-
[0, 0, [() => PolicyStatement, 0], [() => PolicyTemplateDescription, 0]], 3
|
|
1224
|
-
];
|
|
1225
|
-
var UpdatePolicyTemplateOutput$ = [3, n0, _UPTO,
|
|
1226
|
-
0,
|
|
1227
|
-
[_pSI, _pTI, _cD, _lUD],
|
|
1228
|
-
[0, 0, 5, 5], 4
|
|
1229
|
-
];
|
|
1230
|
-
var UpdateStaticPolicyDefinition$ = [3, n0, _USPD,
|
|
1231
|
-
0,
|
|
1232
|
-
[_s, _des],
|
|
1233
|
-
[[() => PolicyStatement, 0], [() => StaticPolicyDescription, 0]], 1
|
|
1234
|
-
];
|
|
1235
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1236
|
-
{ [_e]: _c },
|
|
1237
|
-
[_m, _fL],
|
|
1238
|
-
[0, () => ValidationExceptionFieldList], 1
|
|
1239
|
-
];
|
|
1240
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1241
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1242
|
-
0,
|
|
1243
|
-
[_pat, _m],
|
|
1244
|
-
[0, 0], 2
|
|
1245
|
-
];
|
|
1246
|
-
var ValidationSettings$ = [3, n0, _VS,
|
|
1247
|
-
0,
|
|
1248
|
-
[_mo],
|
|
1249
|
-
[0], 1
|
|
1250
|
-
];
|
|
1251
|
-
var __Unit = "unit";
|
|
1252
|
-
var VerifiedPermissionsServiceException$ = [-3, _sm, "VerifiedPermissionsServiceException", 0, [], []];
|
|
1253
|
-
schema.TypeRegistry.for(_sm).registerError(VerifiedPermissionsServiceException$, VerifiedPermissionsServiceException);
|
|
1254
|
-
var ActionIdentifierList = [1, n0, _AIL,
|
|
1255
|
-
0, [() => ActionIdentifier$,
|
|
1256
|
-
0]
|
|
1257
|
-
];
|
|
1258
|
-
var BatchGetPolicyErrorList = [1, n0, _BGPEL,
|
|
1259
|
-
0, () => BatchGetPolicyErrorItem$
|
|
1260
|
-
];
|
|
1261
|
-
var BatchGetPolicyInputList = [1, n0, _BGPIL,
|
|
1262
|
-
0, () => BatchGetPolicyInputItem$
|
|
1263
|
-
];
|
|
1264
|
-
var BatchGetPolicyOutputList = [1, n0, _BGPOL,
|
|
1265
|
-
0, [() => BatchGetPolicyOutputItem$,
|
|
1266
|
-
0]
|
|
1267
|
-
];
|
|
1268
|
-
var BatchIsAuthorizedInputList = [1, n0, _BIAIL,
|
|
1269
|
-
0, [() => BatchIsAuthorizedInputItem$,
|
|
1270
|
-
0]
|
|
1271
|
-
];
|
|
1272
|
-
var BatchIsAuthorizedOutputList = [1, n0, _BIAOL,
|
|
1273
|
-
0, [() => BatchIsAuthorizedOutputItem$,
|
|
1274
|
-
0]
|
|
1275
|
-
];
|
|
1276
|
-
var BatchIsAuthorizedWithTokenInputList = [1, n0, _BIAWTIL,
|
|
1277
|
-
0, [() => BatchIsAuthorizedWithTokenInputItem$,
|
|
1278
|
-
0]
|
|
1279
|
-
];
|
|
1280
|
-
var BatchIsAuthorizedWithTokenOutputList = [1, n0, _BIAWTOL,
|
|
1281
|
-
0, [() => BatchIsAuthorizedWithTokenOutputItem$,
|
|
1282
|
-
0]
|
|
1283
|
-
];
|
|
1284
|
-
var CedarTagSetAttribute = [1, n0, _CTSA,
|
|
1285
|
-
0, [() => CedarTagValue$,
|
|
1286
|
-
0]
|
|
1287
|
-
];
|
|
1288
|
-
var ClientIds = [1, n0, _CIl,
|
|
1289
|
-
0, [() => ClientId,
|
|
1290
|
-
0]
|
|
1291
|
-
];
|
|
1292
|
-
var DeterminingPolicyList = [1, n0, _DPL,
|
|
1293
|
-
0, () => DeterminingPolicyItem$
|
|
1294
|
-
];
|
|
1295
|
-
var EntityList = [1, n0, _EL,
|
|
1296
|
-
0, [() => EntityItem$,
|
|
1297
|
-
0]
|
|
1298
|
-
];
|
|
1299
|
-
var EvaluationErrorList = [1, n0, _EEL,
|
|
1300
|
-
0, [() => EvaluationErrorItem$,
|
|
1301
|
-
0]
|
|
1302
|
-
];
|
|
1303
|
-
var IdentitySourceFilters = [1, n0, _ISFd,
|
|
1304
|
-
0, [() => IdentitySourceFilter$,
|
|
1305
|
-
0]
|
|
1306
|
-
];
|
|
1307
|
-
var IdentitySources = [1, n0, _IS,
|
|
1308
|
-
0, [() => IdentitySourceItem$,
|
|
1309
|
-
0]
|
|
1310
|
-
];
|
|
1311
|
-
var NamespaceList = [1, n0, _NL,
|
|
1312
|
-
0, [() => Namespace,
|
|
1313
|
-
0]
|
|
1314
|
-
];
|
|
1315
|
-
var ParentList = [1, n0, _PL,
|
|
1316
|
-
0, [() => EntityIdentifier$,
|
|
1317
|
-
0]
|
|
1318
|
-
];
|
|
1319
|
-
var PolicyList = [1, n0, _PLo,
|
|
1320
|
-
0, [() => PolicyItem$,
|
|
1321
|
-
0]
|
|
1322
|
-
];
|
|
1323
|
-
var PolicyStoreList = [1, n0, _PSL,
|
|
1324
|
-
0, [() => PolicyStoreItem$,
|
|
1325
|
-
0]
|
|
1326
|
-
];
|
|
1327
|
-
var PolicyTemplatesList = [1, n0, _PTL,
|
|
1328
|
-
0, [() => PolicyTemplateItem$,
|
|
1329
|
-
0]
|
|
1330
|
-
];
|
|
1331
|
-
var ResourceConflictList = [1, n0, _RCL,
|
|
1332
|
-
0, () => ResourceConflict$
|
|
1333
|
-
];
|
|
1334
|
-
var SetAttribute = [1, n0, _SAe,
|
|
1335
|
-
0, [() => AttributeValue$,
|
|
1336
|
-
0]
|
|
1337
|
-
];
|
|
1338
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1339
|
-
0, () => ValidationExceptionField$
|
|
1340
|
-
];
|
|
1341
|
-
var CedarTagRecordAttribute = [2, n0, _CTRA,
|
|
1342
|
-
0, [0,
|
|
1343
|
-
0],
|
|
1344
|
-
[() => CedarTagValue$,
|
|
1345
|
-
0]
|
|
1346
|
-
];
|
|
1347
|
-
var ContextMap = [2, n0, _CM,
|
|
1348
|
-
8, [0,
|
|
1349
|
-
0],
|
|
1350
|
-
[() => AttributeValue$,
|
|
1351
|
-
0]
|
|
1352
|
-
];
|
|
1353
|
-
var EntityAttributes = [2, n0, _EA,
|
|
1354
|
-
0, [0,
|
|
1355
|
-
0],
|
|
1356
|
-
[() => AttributeValue$,
|
|
1357
|
-
0]
|
|
1358
|
-
];
|
|
1359
|
-
var EntityCedarTags = [2, n0, _ECT,
|
|
1360
|
-
0, [0,
|
|
1361
|
-
0],
|
|
1362
|
-
[() => CedarTagValue$,
|
|
1363
|
-
0]
|
|
1364
|
-
];
|
|
1365
|
-
var RecordAttribute = [2, n0, _RA,
|
|
1366
|
-
0, [0,
|
|
1367
|
-
0],
|
|
1368
|
-
[() => AttributeValue$,
|
|
1369
|
-
0]
|
|
1370
|
-
];
|
|
1371
|
-
var AttributeValue$ = [4, n0, _AV,
|
|
1372
|
-
0,
|
|
1373
|
-
[_b, _eIn, _l, _st, _set, _rec, _ip, _dec, _da, _du],
|
|
1374
|
-
[[() => BooleanAttribute, 0], [() => EntityIdentifier$, 0], [() => LongAttribute, 0], [() => StringAttribute, 0], [() => SetAttribute, 0], [() => RecordAttribute, 0], [() => IpAddr, 0], [() => Decimal, 0], [() => DatetimeAttribute, 0], [() => Duration, 0]]
|
|
1375
|
-
];
|
|
1376
|
-
var CedarTagValue$ = [4, n0, _CTV,
|
|
1377
|
-
0,
|
|
1378
|
-
[_b, _eIn, _l, _st, _set, _rec, _ip, _dec, _da, _du],
|
|
1379
|
-
[[() => BooleanAttribute, 0], [() => EntityIdentifier$, 0], [() => LongAttribute, 0], [() => StringAttribute, 0], [() => CedarTagSetAttribute, 0], [() => CedarTagRecordAttribute, 0], [() => IpAddr, 0], [() => Decimal, 0], [() => DatetimeAttribute, 0], [() => Duration, 0]]
|
|
1380
|
-
];
|
|
1381
|
-
var Configuration$ = [4, n0, _Co,
|
|
1382
|
-
0,
|
|
1383
|
-
[_cUPC, _oICC],
|
|
1384
|
-
[[() => CognitoUserPoolConfiguration$, 0], [() => OpenIdConnectConfiguration$, 0]]
|
|
1385
|
-
];
|
|
1386
|
-
var ConfigurationDetail$ = [4, n0, _CD,
|
|
1387
|
-
0,
|
|
1388
|
-
[_cUPC, _oICC],
|
|
1389
|
-
[[() => CognitoUserPoolConfigurationDetail$, 0], [() => OpenIdConnectConfigurationDetail$, 0]]
|
|
1390
|
-
];
|
|
1391
|
-
var ConfigurationItem$ = [4, n0, _CIo,
|
|
1392
|
-
0,
|
|
1393
|
-
[_cUPC, _oICC],
|
|
1394
|
-
[[() => CognitoUserPoolConfigurationItem$, 0], [() => OpenIdConnectConfigurationItem$, 0]]
|
|
1395
|
-
];
|
|
1396
|
-
var ContextDefinition$ = [4, n0, _CDo,
|
|
1397
|
-
0,
|
|
1398
|
-
[_cM, _cJ],
|
|
1399
|
-
[[() => ContextMap, 0], [() => CedarJson, 0]]
|
|
1400
|
-
];
|
|
1401
|
-
var EncryptionSettings$ = [4, n0, _ES,
|
|
1402
|
-
0,
|
|
1403
|
-
[_kES, _def],
|
|
1404
|
-
[() => KmsEncryptionSettings$, () => __Unit]
|
|
1405
|
-
];
|
|
1406
|
-
var EncryptionState$ = [4, n0, _ESn,
|
|
1407
|
-
0,
|
|
1408
|
-
[_kESm, _def],
|
|
1409
|
-
[() => KmsEncryptionState$, () => __Unit]
|
|
1410
|
-
];
|
|
1411
|
-
var EntitiesDefinition$ = [4, n0, _ED,
|
|
1412
|
-
0,
|
|
1413
|
-
[_eL, _cJ],
|
|
1414
|
-
[[() => EntityList, 0], [() => CedarJson, 0]]
|
|
1415
|
-
];
|
|
1416
|
-
var EntityReference$ = [4, n0, _ER,
|
|
1417
|
-
0,
|
|
1418
|
-
[_u, _id],
|
|
1419
|
-
[2, [() => EntityIdentifier$, 0]]
|
|
1420
|
-
];
|
|
1421
|
-
var OpenIdConnectTokenSelection$ = [4, n0, _OICTS,
|
|
1422
|
-
0,
|
|
1423
|
-
[_aTO, _iTO],
|
|
1424
|
-
[[() => OpenIdConnectAccessTokenConfiguration$, 0], [() => OpenIdConnectIdentityTokenConfiguration$, 0]]
|
|
1425
|
-
];
|
|
1426
|
-
var OpenIdConnectTokenSelectionDetail$ = [4, n0, _OICTSD,
|
|
1427
|
-
0,
|
|
1428
|
-
[_aTO, _iTO],
|
|
1429
|
-
[[() => OpenIdConnectAccessTokenConfigurationDetail$, 0], [() => OpenIdConnectIdentityTokenConfigurationDetail$, 0]]
|
|
1430
|
-
];
|
|
1431
|
-
var OpenIdConnectTokenSelectionItem$ = [4, n0, _OICTSI,
|
|
1432
|
-
0,
|
|
1433
|
-
[_aTO, _iTO],
|
|
1434
|
-
[[() => OpenIdConnectAccessTokenConfigurationItem$, 0], [() => OpenIdConnectIdentityTokenConfigurationItem$, 0]]
|
|
1435
|
-
];
|
|
1436
|
-
var PolicyDefinition$ = [4, n0, _PD,
|
|
1437
|
-
0,
|
|
1438
|
-
[_sta, _tL],
|
|
1439
|
-
[[() => StaticPolicyDefinition$, 0], [() => TemplateLinkedPolicyDefinition$, 0]]
|
|
1440
|
-
];
|
|
1441
|
-
var PolicyDefinitionDetail$ = [4, n0, _PDD,
|
|
1442
|
-
0,
|
|
1443
|
-
[_sta, _tL],
|
|
1444
|
-
[[() => StaticPolicyDefinitionDetail$, 0], [() => TemplateLinkedPolicyDefinitionDetail$, 0]]
|
|
1445
|
-
];
|
|
1446
|
-
var PolicyDefinitionItem$ = [4, n0, _PDI,
|
|
1447
|
-
0,
|
|
1448
|
-
[_sta, _tL],
|
|
1449
|
-
[[() => StaticPolicyDefinitionItem$, 0], [() => TemplateLinkedPolicyDefinitionItem$, 0]]
|
|
1450
|
-
];
|
|
1451
|
-
var SchemaDefinition$ = [4, n0, _SD,
|
|
1452
|
-
0,
|
|
1453
|
-
[_cJ],
|
|
1454
|
-
[[() => SchemaJson, 0]]
|
|
1455
|
-
];
|
|
1456
|
-
var UpdateConfiguration$ = [4, n0, _UC,
|
|
1457
|
-
0,
|
|
1458
|
-
[_cUPC, _oICC],
|
|
1459
|
-
[[() => UpdateCognitoUserPoolConfiguration$, 0], [() => UpdateOpenIdConnectConfiguration$, 0]]
|
|
1460
|
-
];
|
|
1461
|
-
var UpdateOpenIdConnectTokenSelection$ = [4, n0, _UOICTS,
|
|
1462
|
-
0,
|
|
1463
|
-
[_aTO, _iTO],
|
|
1464
|
-
[[() => UpdateOpenIdConnectAccessTokenConfiguration$, 0], [() => UpdateOpenIdConnectIdentityTokenConfiguration$, 0]]
|
|
1465
|
-
];
|
|
1466
|
-
var UpdatePolicyDefinition$ = [4, n0, _UPD,
|
|
1467
|
-
0,
|
|
1468
|
-
[_sta],
|
|
1469
|
-
[[() => UpdateStaticPolicyDefinition$, 0]]
|
|
1470
|
-
];
|
|
1471
|
-
var BatchGetPolicy$ = [9, n0, _BGP,
|
|
1472
|
-
0, () => BatchGetPolicyInput$, () => BatchGetPolicyOutput$
|
|
1473
|
-
];
|
|
1474
|
-
var BatchIsAuthorized$ = [9, n0, _BIA,
|
|
1475
|
-
0, () => BatchIsAuthorizedInput$, () => BatchIsAuthorizedOutput$
|
|
1476
|
-
];
|
|
1477
|
-
var BatchIsAuthorizedWithToken$ = [9, n0, _BIAWT,
|
|
1478
|
-
0, () => BatchIsAuthorizedWithTokenInput$, () => BatchIsAuthorizedWithTokenOutput$
|
|
1479
|
-
];
|
|
1480
|
-
var CreateIdentitySource$ = [9, n0, _CIS,
|
|
1481
|
-
2, () => CreateIdentitySourceInput$, () => CreateIdentitySourceOutput$
|
|
1482
|
-
];
|
|
1483
|
-
var CreatePolicy$ = [9, n0, _CP,
|
|
1484
|
-
2, () => CreatePolicyInput$, () => CreatePolicyOutput$
|
|
1485
|
-
];
|
|
1486
|
-
var CreatePolicyStore$ = [9, n0, _CPS,
|
|
1487
|
-
2, () => CreatePolicyStoreInput$, () => CreatePolicyStoreOutput$
|
|
1488
|
-
];
|
|
1489
|
-
var CreatePolicyTemplate$ = [9, n0, _CPT,
|
|
1490
|
-
2, () => CreatePolicyTemplateInput$, () => CreatePolicyTemplateOutput$
|
|
1491
|
-
];
|
|
1492
|
-
var DeleteIdentitySource$ = [9, n0, _DIS,
|
|
1493
|
-
2, () => DeleteIdentitySourceInput$, () => DeleteIdentitySourceOutput$
|
|
1494
|
-
];
|
|
1495
|
-
var DeletePolicy$ = [9, n0, _DP,
|
|
1496
|
-
2, () => DeletePolicyInput$, () => DeletePolicyOutput$
|
|
1497
|
-
];
|
|
1498
|
-
var DeletePolicyStore$ = [9, n0, _DPS,
|
|
1499
|
-
2, () => DeletePolicyStoreInput$, () => DeletePolicyStoreOutput$
|
|
1500
|
-
];
|
|
1501
|
-
var DeletePolicyTemplate$ = [9, n0, _DPT,
|
|
1502
|
-
2, () => DeletePolicyTemplateInput$, () => DeletePolicyTemplateOutput$
|
|
1503
|
-
];
|
|
1504
|
-
var GetIdentitySource$ = [9, n0, _GIS,
|
|
1505
|
-
0, () => GetIdentitySourceInput$, () => GetIdentitySourceOutput$
|
|
1506
|
-
];
|
|
1507
|
-
var GetPolicy$ = [9, n0, _GP,
|
|
1508
|
-
0, () => GetPolicyInput$, () => GetPolicyOutput$
|
|
1509
|
-
];
|
|
1510
|
-
var GetPolicyStore$ = [9, n0, _GPS,
|
|
1511
|
-
0, () => GetPolicyStoreInput$, () => GetPolicyStoreOutput$
|
|
1512
|
-
];
|
|
1513
|
-
var GetPolicyTemplate$ = [9, n0, _GPT,
|
|
1514
|
-
0, () => GetPolicyTemplateInput$, () => GetPolicyTemplateOutput$
|
|
1515
|
-
];
|
|
1516
|
-
var GetSchema$ = [9, n0, _GS,
|
|
1517
|
-
0, () => GetSchemaInput$, () => GetSchemaOutput$
|
|
1518
|
-
];
|
|
1519
|
-
var IsAuthorized$ = [9, n0, _IAs,
|
|
1520
|
-
0, () => IsAuthorizedInput$, () => IsAuthorizedOutput$
|
|
1521
|
-
];
|
|
1522
|
-
var IsAuthorizedWithToken$ = [9, n0, _IAWT,
|
|
1523
|
-
0, () => IsAuthorizedWithTokenInput$, () => IsAuthorizedWithTokenOutput$
|
|
1524
|
-
];
|
|
1525
|
-
var ListIdentitySources$ = [9, n0, _LIS,
|
|
1526
|
-
0, () => ListIdentitySourcesInput$, () => ListIdentitySourcesOutput$
|
|
1527
|
-
];
|
|
1528
|
-
var ListPolicies$ = [9, n0, _LP,
|
|
1529
|
-
0, () => ListPoliciesInput$, () => ListPoliciesOutput$
|
|
1530
|
-
];
|
|
1531
|
-
var ListPolicyStores$ = [9, n0, _LPS,
|
|
1532
|
-
0, () => ListPolicyStoresInput$, () => ListPolicyStoresOutput$
|
|
1533
|
-
];
|
|
1534
|
-
var ListPolicyTemplates$ = [9, n0, _LPT,
|
|
1535
|
-
0, () => ListPolicyTemplatesInput$, () => ListPolicyTemplatesOutput$
|
|
1536
|
-
];
|
|
1537
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1538
|
-
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1539
|
-
];
|
|
1540
|
-
var PutSchema$ = [9, n0, _PSu,
|
|
1541
|
-
2, () => PutSchemaInput$, () => PutSchemaOutput$
|
|
1542
|
-
];
|
|
1543
|
-
var TagResource$ = [9, n0, _TR,
|
|
1544
|
-
0, () => TagResourceInput$, () => TagResourceOutput$
|
|
1545
|
-
];
|
|
1546
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1547
|
-
0, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
1548
|
-
];
|
|
1549
|
-
var UpdateIdentitySource$ = [9, n0, _UIS,
|
|
1550
|
-
2, () => UpdateIdentitySourceInput$, () => UpdateIdentitySourceOutput$
|
|
1551
|
-
];
|
|
1552
|
-
var UpdatePolicy$ = [9, n0, _UP,
|
|
1553
|
-
2, () => UpdatePolicyInput$, () => UpdatePolicyOutput$
|
|
1554
|
-
];
|
|
1555
|
-
var UpdatePolicyStore$ = [9, n0, _UPS,
|
|
1556
|
-
2, () => UpdatePolicyStoreInput$, () => UpdatePolicyStoreOutput$
|
|
1557
|
-
];
|
|
1558
|
-
var UpdatePolicyTemplate$ = [9, n0, _UPT,
|
|
1559
|
-
2, () => UpdatePolicyTemplateInput$, () => UpdatePolicyTemplateOutput$
|
|
1560
|
-
];
|
|
1561
|
-
|
|
1562
116
|
class BatchGetPolicyCommand extends smithyClient.Command
|
|
1563
117
|
.classBuilder()
|
|
1564
118
|
.ep(commonParams)
|
|
@@ -1567,7 +121,7 @@ class BatchGetPolicyCommand extends smithyClient.Command
|
|
|
1567
121
|
})
|
|
1568
122
|
.s("VerifiedPermissions", "BatchGetPolicy", {})
|
|
1569
123
|
.n("VerifiedPermissionsClient", "BatchGetPolicyCommand")
|
|
1570
|
-
.sc(BatchGetPolicy$)
|
|
124
|
+
.sc(schemas_0.BatchGetPolicy$)
|
|
1571
125
|
.build() {
|
|
1572
126
|
}
|
|
1573
127
|
|
|
@@ -1579,7 +133,7 @@ class BatchIsAuthorizedCommand extends smithyClient.Command
|
|
|
1579
133
|
})
|
|
1580
134
|
.s("VerifiedPermissions", "BatchIsAuthorized", {})
|
|
1581
135
|
.n("VerifiedPermissionsClient", "BatchIsAuthorizedCommand")
|
|
1582
|
-
.sc(BatchIsAuthorized$)
|
|
136
|
+
.sc(schemas_0.BatchIsAuthorized$)
|
|
1583
137
|
.build() {
|
|
1584
138
|
}
|
|
1585
139
|
|
|
@@ -1591,7 +145,7 @@ class BatchIsAuthorizedWithTokenCommand extends smithyClient.Command
|
|
|
1591
145
|
})
|
|
1592
146
|
.s("VerifiedPermissions", "BatchIsAuthorizedWithToken", {})
|
|
1593
147
|
.n("VerifiedPermissionsClient", "BatchIsAuthorizedWithTokenCommand")
|
|
1594
|
-
.sc(BatchIsAuthorizedWithToken$)
|
|
148
|
+
.sc(schemas_0.BatchIsAuthorizedWithToken$)
|
|
1595
149
|
.build() {
|
|
1596
150
|
}
|
|
1597
151
|
|
|
@@ -1603,7 +157,7 @@ class CreateIdentitySourceCommand extends smithyClient.Command
|
|
|
1603
157
|
})
|
|
1604
158
|
.s("VerifiedPermissions", "CreateIdentitySource", {})
|
|
1605
159
|
.n("VerifiedPermissionsClient", "CreateIdentitySourceCommand")
|
|
1606
|
-
.sc(CreateIdentitySource$)
|
|
160
|
+
.sc(schemas_0.CreateIdentitySource$)
|
|
1607
161
|
.build() {
|
|
1608
162
|
}
|
|
1609
163
|
|
|
@@ -1615,7 +169,7 @@ class CreatePolicyCommand extends smithyClient.Command
|
|
|
1615
169
|
})
|
|
1616
170
|
.s("VerifiedPermissions", "CreatePolicy", {})
|
|
1617
171
|
.n("VerifiedPermissionsClient", "CreatePolicyCommand")
|
|
1618
|
-
.sc(CreatePolicy$)
|
|
172
|
+
.sc(schemas_0.CreatePolicy$)
|
|
1619
173
|
.build() {
|
|
1620
174
|
}
|
|
1621
175
|
|
|
@@ -1627,7 +181,7 @@ class CreatePolicyStoreCommand extends smithyClient.Command
|
|
|
1627
181
|
})
|
|
1628
182
|
.s("VerifiedPermissions", "CreatePolicyStore", {})
|
|
1629
183
|
.n("VerifiedPermissionsClient", "CreatePolicyStoreCommand")
|
|
1630
|
-
.sc(CreatePolicyStore$)
|
|
184
|
+
.sc(schemas_0.CreatePolicyStore$)
|
|
1631
185
|
.build() {
|
|
1632
186
|
}
|
|
1633
187
|
|
|
@@ -1639,7 +193,7 @@ class CreatePolicyTemplateCommand extends smithyClient.Command
|
|
|
1639
193
|
})
|
|
1640
194
|
.s("VerifiedPermissions", "CreatePolicyTemplate", {})
|
|
1641
195
|
.n("VerifiedPermissionsClient", "CreatePolicyTemplateCommand")
|
|
1642
|
-
.sc(CreatePolicyTemplate$)
|
|
196
|
+
.sc(schemas_0.CreatePolicyTemplate$)
|
|
1643
197
|
.build() {
|
|
1644
198
|
}
|
|
1645
199
|
|
|
@@ -1651,7 +205,7 @@ class DeleteIdentitySourceCommand extends smithyClient.Command
|
|
|
1651
205
|
})
|
|
1652
206
|
.s("VerifiedPermissions", "DeleteIdentitySource", {})
|
|
1653
207
|
.n("VerifiedPermissionsClient", "DeleteIdentitySourceCommand")
|
|
1654
|
-
.sc(DeleteIdentitySource$)
|
|
208
|
+
.sc(schemas_0.DeleteIdentitySource$)
|
|
1655
209
|
.build() {
|
|
1656
210
|
}
|
|
1657
211
|
|
|
@@ -1663,7 +217,7 @@ class DeletePolicyCommand extends smithyClient.Command
|
|
|
1663
217
|
})
|
|
1664
218
|
.s("VerifiedPermissions", "DeletePolicy", {})
|
|
1665
219
|
.n("VerifiedPermissionsClient", "DeletePolicyCommand")
|
|
1666
|
-
.sc(DeletePolicy$)
|
|
220
|
+
.sc(schemas_0.DeletePolicy$)
|
|
1667
221
|
.build() {
|
|
1668
222
|
}
|
|
1669
223
|
|
|
@@ -1675,7 +229,7 @@ class DeletePolicyStoreCommand extends smithyClient.Command
|
|
|
1675
229
|
})
|
|
1676
230
|
.s("VerifiedPermissions", "DeletePolicyStore", {})
|
|
1677
231
|
.n("VerifiedPermissionsClient", "DeletePolicyStoreCommand")
|
|
1678
|
-
.sc(DeletePolicyStore$)
|
|
232
|
+
.sc(schemas_0.DeletePolicyStore$)
|
|
1679
233
|
.build() {
|
|
1680
234
|
}
|
|
1681
235
|
|
|
@@ -1687,7 +241,7 @@ class DeletePolicyTemplateCommand extends smithyClient.Command
|
|
|
1687
241
|
})
|
|
1688
242
|
.s("VerifiedPermissions", "DeletePolicyTemplate", {})
|
|
1689
243
|
.n("VerifiedPermissionsClient", "DeletePolicyTemplateCommand")
|
|
1690
|
-
.sc(DeletePolicyTemplate$)
|
|
244
|
+
.sc(schemas_0.DeletePolicyTemplate$)
|
|
1691
245
|
.build() {
|
|
1692
246
|
}
|
|
1693
247
|
|
|
@@ -1699,7 +253,7 @@ class GetIdentitySourceCommand extends smithyClient.Command
|
|
|
1699
253
|
})
|
|
1700
254
|
.s("VerifiedPermissions", "GetIdentitySource", {})
|
|
1701
255
|
.n("VerifiedPermissionsClient", "GetIdentitySourceCommand")
|
|
1702
|
-
.sc(GetIdentitySource$)
|
|
256
|
+
.sc(schemas_0.GetIdentitySource$)
|
|
1703
257
|
.build() {
|
|
1704
258
|
}
|
|
1705
259
|
|
|
@@ -1711,7 +265,7 @@ class GetPolicyCommand extends smithyClient.Command
|
|
|
1711
265
|
})
|
|
1712
266
|
.s("VerifiedPermissions", "GetPolicy", {})
|
|
1713
267
|
.n("VerifiedPermissionsClient", "GetPolicyCommand")
|
|
1714
|
-
.sc(GetPolicy$)
|
|
268
|
+
.sc(schemas_0.GetPolicy$)
|
|
1715
269
|
.build() {
|
|
1716
270
|
}
|
|
1717
271
|
|
|
@@ -1723,7 +277,7 @@ class GetPolicyStoreCommand extends smithyClient.Command
|
|
|
1723
277
|
})
|
|
1724
278
|
.s("VerifiedPermissions", "GetPolicyStore", {})
|
|
1725
279
|
.n("VerifiedPermissionsClient", "GetPolicyStoreCommand")
|
|
1726
|
-
.sc(GetPolicyStore$)
|
|
280
|
+
.sc(schemas_0.GetPolicyStore$)
|
|
1727
281
|
.build() {
|
|
1728
282
|
}
|
|
1729
283
|
|
|
@@ -1735,7 +289,7 @@ class GetPolicyTemplateCommand extends smithyClient.Command
|
|
|
1735
289
|
})
|
|
1736
290
|
.s("VerifiedPermissions", "GetPolicyTemplate", {})
|
|
1737
291
|
.n("VerifiedPermissionsClient", "GetPolicyTemplateCommand")
|
|
1738
|
-
.sc(GetPolicyTemplate$)
|
|
292
|
+
.sc(schemas_0.GetPolicyTemplate$)
|
|
1739
293
|
.build() {
|
|
1740
294
|
}
|
|
1741
295
|
|
|
@@ -1747,7 +301,7 @@ class GetSchemaCommand extends smithyClient.Command
|
|
|
1747
301
|
})
|
|
1748
302
|
.s("VerifiedPermissions", "GetSchema", {})
|
|
1749
303
|
.n("VerifiedPermissionsClient", "GetSchemaCommand")
|
|
1750
|
-
.sc(GetSchema$)
|
|
304
|
+
.sc(schemas_0.GetSchema$)
|
|
1751
305
|
.build() {
|
|
1752
306
|
}
|
|
1753
307
|
|
|
@@ -1759,7 +313,7 @@ class IsAuthorizedCommand extends smithyClient.Command
|
|
|
1759
313
|
})
|
|
1760
314
|
.s("VerifiedPermissions", "IsAuthorized", {})
|
|
1761
315
|
.n("VerifiedPermissionsClient", "IsAuthorizedCommand")
|
|
1762
|
-
.sc(IsAuthorized$)
|
|
316
|
+
.sc(schemas_0.IsAuthorized$)
|
|
1763
317
|
.build() {
|
|
1764
318
|
}
|
|
1765
319
|
|
|
@@ -1771,7 +325,7 @@ class IsAuthorizedWithTokenCommand extends smithyClient.Command
|
|
|
1771
325
|
})
|
|
1772
326
|
.s("VerifiedPermissions", "IsAuthorizedWithToken", {})
|
|
1773
327
|
.n("VerifiedPermissionsClient", "IsAuthorizedWithTokenCommand")
|
|
1774
|
-
.sc(IsAuthorizedWithToken$)
|
|
328
|
+
.sc(schemas_0.IsAuthorizedWithToken$)
|
|
1775
329
|
.build() {
|
|
1776
330
|
}
|
|
1777
331
|
|
|
@@ -1783,7 +337,7 @@ class ListIdentitySourcesCommand extends smithyClient.Command
|
|
|
1783
337
|
})
|
|
1784
338
|
.s("VerifiedPermissions", "ListIdentitySources", {})
|
|
1785
339
|
.n("VerifiedPermissionsClient", "ListIdentitySourcesCommand")
|
|
1786
|
-
.sc(ListIdentitySources$)
|
|
340
|
+
.sc(schemas_0.ListIdentitySources$)
|
|
1787
341
|
.build() {
|
|
1788
342
|
}
|
|
1789
343
|
|
|
@@ -1795,7 +349,7 @@ class ListPoliciesCommand extends smithyClient.Command
|
|
|
1795
349
|
})
|
|
1796
350
|
.s("VerifiedPermissions", "ListPolicies", {})
|
|
1797
351
|
.n("VerifiedPermissionsClient", "ListPoliciesCommand")
|
|
1798
|
-
.sc(ListPolicies$)
|
|
352
|
+
.sc(schemas_0.ListPolicies$)
|
|
1799
353
|
.build() {
|
|
1800
354
|
}
|
|
1801
355
|
|
|
@@ -1807,7 +361,7 @@ class ListPolicyStoresCommand extends smithyClient.Command
|
|
|
1807
361
|
})
|
|
1808
362
|
.s("VerifiedPermissions", "ListPolicyStores", {})
|
|
1809
363
|
.n("VerifiedPermissionsClient", "ListPolicyStoresCommand")
|
|
1810
|
-
.sc(ListPolicyStores$)
|
|
364
|
+
.sc(schemas_0.ListPolicyStores$)
|
|
1811
365
|
.build() {
|
|
1812
366
|
}
|
|
1813
367
|
|
|
@@ -1819,7 +373,7 @@ class ListPolicyTemplatesCommand extends smithyClient.Command
|
|
|
1819
373
|
})
|
|
1820
374
|
.s("VerifiedPermissions", "ListPolicyTemplates", {})
|
|
1821
375
|
.n("VerifiedPermissionsClient", "ListPolicyTemplatesCommand")
|
|
1822
|
-
.sc(ListPolicyTemplates$)
|
|
376
|
+
.sc(schemas_0.ListPolicyTemplates$)
|
|
1823
377
|
.build() {
|
|
1824
378
|
}
|
|
1825
379
|
|
|
@@ -1831,7 +385,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1831
385
|
})
|
|
1832
386
|
.s("VerifiedPermissions", "ListTagsForResource", {})
|
|
1833
387
|
.n("VerifiedPermissionsClient", "ListTagsForResourceCommand")
|
|
1834
|
-
.sc(ListTagsForResource$)
|
|
388
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1835
389
|
.build() {
|
|
1836
390
|
}
|
|
1837
391
|
|
|
@@ -1843,7 +397,7 @@ class PutSchemaCommand extends smithyClient.Command
|
|
|
1843
397
|
})
|
|
1844
398
|
.s("VerifiedPermissions", "PutSchema", {})
|
|
1845
399
|
.n("VerifiedPermissionsClient", "PutSchemaCommand")
|
|
1846
|
-
.sc(PutSchema$)
|
|
400
|
+
.sc(schemas_0.PutSchema$)
|
|
1847
401
|
.build() {
|
|
1848
402
|
}
|
|
1849
403
|
|
|
@@ -1855,7 +409,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1855
409
|
})
|
|
1856
410
|
.s("VerifiedPermissions", "TagResource", {})
|
|
1857
411
|
.n("VerifiedPermissionsClient", "TagResourceCommand")
|
|
1858
|
-
.sc(TagResource$)
|
|
412
|
+
.sc(schemas_0.TagResource$)
|
|
1859
413
|
.build() {
|
|
1860
414
|
}
|
|
1861
415
|
|
|
@@ -1867,7 +421,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1867
421
|
})
|
|
1868
422
|
.s("VerifiedPermissions", "UntagResource", {})
|
|
1869
423
|
.n("VerifiedPermissionsClient", "UntagResourceCommand")
|
|
1870
|
-
.sc(UntagResource$)
|
|
424
|
+
.sc(schemas_0.UntagResource$)
|
|
1871
425
|
.build() {
|
|
1872
426
|
}
|
|
1873
427
|
|
|
@@ -1879,7 +433,7 @@ class UpdateIdentitySourceCommand extends smithyClient.Command
|
|
|
1879
433
|
})
|
|
1880
434
|
.s("VerifiedPermissions", "UpdateIdentitySource", {})
|
|
1881
435
|
.n("VerifiedPermissionsClient", "UpdateIdentitySourceCommand")
|
|
1882
|
-
.sc(UpdateIdentitySource$)
|
|
436
|
+
.sc(schemas_0.UpdateIdentitySource$)
|
|
1883
437
|
.build() {
|
|
1884
438
|
}
|
|
1885
439
|
|
|
@@ -1891,7 +445,7 @@ class UpdatePolicyCommand extends smithyClient.Command
|
|
|
1891
445
|
})
|
|
1892
446
|
.s("VerifiedPermissions", "UpdatePolicy", {})
|
|
1893
447
|
.n("VerifiedPermissionsClient", "UpdatePolicyCommand")
|
|
1894
|
-
.sc(UpdatePolicy$)
|
|
448
|
+
.sc(schemas_0.UpdatePolicy$)
|
|
1895
449
|
.build() {
|
|
1896
450
|
}
|
|
1897
451
|
|
|
@@ -1903,7 +457,7 @@ class UpdatePolicyStoreCommand extends smithyClient.Command
|
|
|
1903
457
|
})
|
|
1904
458
|
.s("VerifiedPermissions", "UpdatePolicyStore", {})
|
|
1905
459
|
.n("VerifiedPermissionsClient", "UpdatePolicyStoreCommand")
|
|
1906
|
-
.sc(UpdatePolicyStore$)
|
|
460
|
+
.sc(schemas_0.UpdatePolicyStore$)
|
|
1907
461
|
.build() {
|
|
1908
462
|
}
|
|
1909
463
|
|
|
@@ -1915,7 +469,7 @@ class UpdatePolicyTemplateCommand extends smithyClient.Command
|
|
|
1915
469
|
})
|
|
1916
470
|
.s("VerifiedPermissions", "UpdatePolicyTemplate", {})
|
|
1917
471
|
.n("VerifiedPermissionsClient", "UpdatePolicyTemplateCommand")
|
|
1918
|
-
.sc(UpdatePolicyTemplate$)
|
|
472
|
+
.sc(schemas_0.UpdatePolicyTemplate$)
|
|
1919
473
|
.build() {
|
|
1920
474
|
}
|
|
1921
475
|
|
|
@@ -2016,234 +570,64 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2016
570
|
enumerable: true,
|
|
2017
571
|
get: function () { return smithyClient.Client; }
|
|
2018
572
|
});
|
|
2019
|
-
exports
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
exports.BatchGetPolicy$ = BatchGetPolicy$;
|
|
573
|
+
Object.defineProperty(exports, "VerifiedPermissionsServiceException", {
|
|
574
|
+
enumerable: true,
|
|
575
|
+
get: function () { return VerifiedPermissionsServiceException.VerifiedPermissionsServiceException; }
|
|
576
|
+
});
|
|
2024
577
|
exports.BatchGetPolicyCommand = BatchGetPolicyCommand;
|
|
2025
578
|
exports.BatchGetPolicyErrorCode = BatchGetPolicyErrorCode;
|
|
2026
|
-
exports.BatchGetPolicyErrorItem$ = BatchGetPolicyErrorItem$;
|
|
2027
|
-
exports.BatchGetPolicyInput$ = BatchGetPolicyInput$;
|
|
2028
|
-
exports.BatchGetPolicyInputItem$ = BatchGetPolicyInputItem$;
|
|
2029
|
-
exports.BatchGetPolicyOutput$ = BatchGetPolicyOutput$;
|
|
2030
|
-
exports.BatchGetPolicyOutputItem$ = BatchGetPolicyOutputItem$;
|
|
2031
|
-
exports.BatchIsAuthorized$ = BatchIsAuthorized$;
|
|
2032
579
|
exports.BatchIsAuthorizedCommand = BatchIsAuthorizedCommand;
|
|
2033
|
-
exports.BatchIsAuthorizedInput$ = BatchIsAuthorizedInput$;
|
|
2034
|
-
exports.BatchIsAuthorizedInputItem$ = BatchIsAuthorizedInputItem$;
|
|
2035
|
-
exports.BatchIsAuthorizedOutput$ = BatchIsAuthorizedOutput$;
|
|
2036
|
-
exports.BatchIsAuthorizedOutputItem$ = BatchIsAuthorizedOutputItem$;
|
|
2037
|
-
exports.BatchIsAuthorizedWithToken$ = BatchIsAuthorizedWithToken$;
|
|
2038
580
|
exports.BatchIsAuthorizedWithTokenCommand = BatchIsAuthorizedWithTokenCommand;
|
|
2039
|
-
exports.BatchIsAuthorizedWithTokenInput$ = BatchIsAuthorizedWithTokenInput$;
|
|
2040
|
-
exports.BatchIsAuthorizedWithTokenInputItem$ = BatchIsAuthorizedWithTokenInputItem$;
|
|
2041
|
-
exports.BatchIsAuthorizedWithTokenOutput$ = BatchIsAuthorizedWithTokenOutput$;
|
|
2042
|
-
exports.BatchIsAuthorizedWithTokenOutputItem$ = BatchIsAuthorizedWithTokenOutputItem$;
|
|
2043
|
-
exports.CedarTagValue$ = CedarTagValue$;
|
|
2044
581
|
exports.CedarVersion = CedarVersion;
|
|
2045
|
-
exports.CognitoGroupConfiguration$ = CognitoGroupConfiguration$;
|
|
2046
|
-
exports.CognitoGroupConfigurationDetail$ = CognitoGroupConfigurationDetail$;
|
|
2047
|
-
exports.CognitoGroupConfigurationItem$ = CognitoGroupConfigurationItem$;
|
|
2048
|
-
exports.CognitoUserPoolConfiguration$ = CognitoUserPoolConfiguration$;
|
|
2049
|
-
exports.CognitoUserPoolConfigurationDetail$ = CognitoUserPoolConfigurationDetail$;
|
|
2050
|
-
exports.CognitoUserPoolConfigurationItem$ = CognitoUserPoolConfigurationItem$;
|
|
2051
|
-
exports.Configuration$ = Configuration$;
|
|
2052
|
-
exports.ConfigurationDetail$ = ConfigurationDetail$;
|
|
2053
|
-
exports.ConfigurationItem$ = ConfigurationItem$;
|
|
2054
|
-
exports.ConflictException = ConflictException;
|
|
2055
|
-
exports.ConflictException$ = ConflictException$;
|
|
2056
|
-
exports.ContextDefinition$ = ContextDefinition$;
|
|
2057
|
-
exports.CreateIdentitySource$ = CreateIdentitySource$;
|
|
2058
582
|
exports.CreateIdentitySourceCommand = CreateIdentitySourceCommand;
|
|
2059
|
-
exports.CreateIdentitySourceInput$ = CreateIdentitySourceInput$;
|
|
2060
|
-
exports.CreateIdentitySourceOutput$ = CreateIdentitySourceOutput$;
|
|
2061
|
-
exports.CreatePolicy$ = CreatePolicy$;
|
|
2062
583
|
exports.CreatePolicyCommand = CreatePolicyCommand;
|
|
2063
|
-
exports.CreatePolicyInput$ = CreatePolicyInput$;
|
|
2064
|
-
exports.CreatePolicyOutput$ = CreatePolicyOutput$;
|
|
2065
|
-
exports.CreatePolicyStore$ = CreatePolicyStore$;
|
|
2066
584
|
exports.CreatePolicyStoreCommand = CreatePolicyStoreCommand;
|
|
2067
|
-
exports.CreatePolicyStoreInput$ = CreatePolicyStoreInput$;
|
|
2068
|
-
exports.CreatePolicyStoreOutput$ = CreatePolicyStoreOutput$;
|
|
2069
|
-
exports.CreatePolicyTemplate$ = CreatePolicyTemplate$;
|
|
2070
585
|
exports.CreatePolicyTemplateCommand = CreatePolicyTemplateCommand;
|
|
2071
|
-
exports.CreatePolicyTemplateInput$ = CreatePolicyTemplateInput$;
|
|
2072
|
-
exports.CreatePolicyTemplateOutput$ = CreatePolicyTemplateOutput$;
|
|
2073
586
|
exports.Decision = Decision;
|
|
2074
|
-
exports.DeleteIdentitySource$ = DeleteIdentitySource$;
|
|
2075
587
|
exports.DeleteIdentitySourceCommand = DeleteIdentitySourceCommand;
|
|
2076
|
-
exports.DeleteIdentitySourceInput$ = DeleteIdentitySourceInput$;
|
|
2077
|
-
exports.DeleteIdentitySourceOutput$ = DeleteIdentitySourceOutput$;
|
|
2078
|
-
exports.DeletePolicy$ = DeletePolicy$;
|
|
2079
588
|
exports.DeletePolicyCommand = DeletePolicyCommand;
|
|
2080
|
-
exports.DeletePolicyInput$ = DeletePolicyInput$;
|
|
2081
|
-
exports.DeletePolicyOutput$ = DeletePolicyOutput$;
|
|
2082
|
-
exports.DeletePolicyStore$ = DeletePolicyStore$;
|
|
2083
589
|
exports.DeletePolicyStoreCommand = DeletePolicyStoreCommand;
|
|
2084
|
-
exports.DeletePolicyStoreInput$ = DeletePolicyStoreInput$;
|
|
2085
|
-
exports.DeletePolicyStoreOutput$ = DeletePolicyStoreOutput$;
|
|
2086
|
-
exports.DeletePolicyTemplate$ = DeletePolicyTemplate$;
|
|
2087
590
|
exports.DeletePolicyTemplateCommand = DeletePolicyTemplateCommand;
|
|
2088
|
-
exports.DeletePolicyTemplateInput$ = DeletePolicyTemplateInput$;
|
|
2089
|
-
exports.DeletePolicyTemplateOutput$ = DeletePolicyTemplateOutput$;
|
|
2090
591
|
exports.DeletionProtection = DeletionProtection;
|
|
2091
|
-
exports.DeterminingPolicyItem$ = DeterminingPolicyItem$;
|
|
2092
|
-
exports.EncryptionSettings$ = EncryptionSettings$;
|
|
2093
|
-
exports.EncryptionState$ = EncryptionState$;
|
|
2094
|
-
exports.EntitiesDefinition$ = EntitiesDefinition$;
|
|
2095
|
-
exports.EntityIdentifier$ = EntityIdentifier$;
|
|
2096
|
-
exports.EntityItem$ = EntityItem$;
|
|
2097
|
-
exports.EntityReference$ = EntityReference$;
|
|
2098
|
-
exports.EvaluationErrorItem$ = EvaluationErrorItem$;
|
|
2099
|
-
exports.GetIdentitySource$ = GetIdentitySource$;
|
|
2100
592
|
exports.GetIdentitySourceCommand = GetIdentitySourceCommand;
|
|
2101
|
-
exports.GetIdentitySourceInput$ = GetIdentitySourceInput$;
|
|
2102
|
-
exports.GetIdentitySourceOutput$ = GetIdentitySourceOutput$;
|
|
2103
|
-
exports.GetPolicy$ = GetPolicy$;
|
|
2104
593
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
2105
|
-
exports.GetPolicyInput$ = GetPolicyInput$;
|
|
2106
|
-
exports.GetPolicyOutput$ = GetPolicyOutput$;
|
|
2107
|
-
exports.GetPolicyStore$ = GetPolicyStore$;
|
|
2108
594
|
exports.GetPolicyStoreCommand = GetPolicyStoreCommand;
|
|
2109
|
-
exports.GetPolicyStoreInput$ = GetPolicyStoreInput$;
|
|
2110
|
-
exports.GetPolicyStoreOutput$ = GetPolicyStoreOutput$;
|
|
2111
|
-
exports.GetPolicyTemplate$ = GetPolicyTemplate$;
|
|
2112
595
|
exports.GetPolicyTemplateCommand = GetPolicyTemplateCommand;
|
|
2113
|
-
exports.GetPolicyTemplateInput$ = GetPolicyTemplateInput$;
|
|
2114
|
-
exports.GetPolicyTemplateOutput$ = GetPolicyTemplateOutput$;
|
|
2115
|
-
exports.GetSchema$ = GetSchema$;
|
|
2116
596
|
exports.GetSchemaCommand = GetSchemaCommand;
|
|
2117
|
-
exports.GetSchemaInput$ = GetSchemaInput$;
|
|
2118
|
-
exports.GetSchemaOutput$ = GetSchemaOutput$;
|
|
2119
|
-
exports.IdentitySourceDetails$ = IdentitySourceDetails$;
|
|
2120
|
-
exports.IdentitySourceFilter$ = IdentitySourceFilter$;
|
|
2121
|
-
exports.IdentitySourceItem$ = IdentitySourceItem$;
|
|
2122
|
-
exports.IdentitySourceItemDetails$ = IdentitySourceItemDetails$;
|
|
2123
|
-
exports.InternalServerException = InternalServerException;
|
|
2124
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2125
|
-
exports.InvalidStateException = InvalidStateException;
|
|
2126
|
-
exports.InvalidStateException$ = InvalidStateException$;
|
|
2127
|
-
exports.IsAuthorized$ = IsAuthorized$;
|
|
2128
597
|
exports.IsAuthorizedCommand = IsAuthorizedCommand;
|
|
2129
|
-
exports.IsAuthorizedInput$ = IsAuthorizedInput$;
|
|
2130
|
-
exports.IsAuthorizedOutput$ = IsAuthorizedOutput$;
|
|
2131
|
-
exports.IsAuthorizedWithToken$ = IsAuthorizedWithToken$;
|
|
2132
598
|
exports.IsAuthorizedWithTokenCommand = IsAuthorizedWithTokenCommand;
|
|
2133
|
-
exports.IsAuthorizedWithTokenInput$ = IsAuthorizedWithTokenInput$;
|
|
2134
|
-
exports.IsAuthorizedWithTokenOutput$ = IsAuthorizedWithTokenOutput$;
|
|
2135
|
-
exports.KmsEncryptionSettings$ = KmsEncryptionSettings$;
|
|
2136
|
-
exports.KmsEncryptionState$ = KmsEncryptionState$;
|
|
2137
|
-
exports.ListIdentitySources$ = ListIdentitySources$;
|
|
2138
599
|
exports.ListIdentitySourcesCommand = ListIdentitySourcesCommand;
|
|
2139
|
-
exports.ListIdentitySourcesInput$ = ListIdentitySourcesInput$;
|
|
2140
|
-
exports.ListIdentitySourcesOutput$ = ListIdentitySourcesOutput$;
|
|
2141
|
-
exports.ListPolicies$ = ListPolicies$;
|
|
2142
600
|
exports.ListPoliciesCommand = ListPoliciesCommand;
|
|
2143
|
-
exports.ListPoliciesInput$ = ListPoliciesInput$;
|
|
2144
|
-
exports.ListPoliciesOutput$ = ListPoliciesOutput$;
|
|
2145
|
-
exports.ListPolicyStores$ = ListPolicyStores$;
|
|
2146
601
|
exports.ListPolicyStoresCommand = ListPolicyStoresCommand;
|
|
2147
|
-
exports.ListPolicyStoresInput$ = ListPolicyStoresInput$;
|
|
2148
|
-
exports.ListPolicyStoresOutput$ = ListPolicyStoresOutput$;
|
|
2149
|
-
exports.ListPolicyTemplates$ = ListPolicyTemplates$;
|
|
2150
602
|
exports.ListPolicyTemplatesCommand = ListPolicyTemplatesCommand;
|
|
2151
|
-
exports.ListPolicyTemplatesInput$ = ListPolicyTemplatesInput$;
|
|
2152
|
-
exports.ListPolicyTemplatesOutput$ = ListPolicyTemplatesOutput$;
|
|
2153
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2154
603
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2155
|
-
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
2156
|
-
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
2157
|
-
exports.OpenIdConnectAccessTokenConfiguration$ = OpenIdConnectAccessTokenConfiguration$;
|
|
2158
|
-
exports.OpenIdConnectAccessTokenConfigurationDetail$ = OpenIdConnectAccessTokenConfigurationDetail$;
|
|
2159
|
-
exports.OpenIdConnectAccessTokenConfigurationItem$ = OpenIdConnectAccessTokenConfigurationItem$;
|
|
2160
|
-
exports.OpenIdConnectConfiguration$ = OpenIdConnectConfiguration$;
|
|
2161
|
-
exports.OpenIdConnectConfigurationDetail$ = OpenIdConnectConfigurationDetail$;
|
|
2162
|
-
exports.OpenIdConnectConfigurationItem$ = OpenIdConnectConfigurationItem$;
|
|
2163
|
-
exports.OpenIdConnectGroupConfiguration$ = OpenIdConnectGroupConfiguration$;
|
|
2164
|
-
exports.OpenIdConnectGroupConfigurationDetail$ = OpenIdConnectGroupConfigurationDetail$;
|
|
2165
|
-
exports.OpenIdConnectGroupConfigurationItem$ = OpenIdConnectGroupConfigurationItem$;
|
|
2166
|
-
exports.OpenIdConnectIdentityTokenConfiguration$ = OpenIdConnectIdentityTokenConfiguration$;
|
|
2167
|
-
exports.OpenIdConnectIdentityTokenConfigurationDetail$ = OpenIdConnectIdentityTokenConfigurationDetail$;
|
|
2168
|
-
exports.OpenIdConnectIdentityTokenConfigurationItem$ = OpenIdConnectIdentityTokenConfigurationItem$;
|
|
2169
|
-
exports.OpenIdConnectTokenSelection$ = OpenIdConnectTokenSelection$;
|
|
2170
|
-
exports.OpenIdConnectTokenSelectionDetail$ = OpenIdConnectTokenSelectionDetail$;
|
|
2171
|
-
exports.OpenIdConnectTokenSelectionItem$ = OpenIdConnectTokenSelectionItem$;
|
|
2172
604
|
exports.OpenIdIssuer = OpenIdIssuer;
|
|
2173
|
-
exports.PolicyDefinition$ = PolicyDefinition$;
|
|
2174
|
-
exports.PolicyDefinitionDetail$ = PolicyDefinitionDetail$;
|
|
2175
|
-
exports.PolicyDefinitionItem$ = PolicyDefinitionItem$;
|
|
2176
605
|
exports.PolicyEffect = PolicyEffect;
|
|
2177
|
-
exports.PolicyFilter$ = PolicyFilter$;
|
|
2178
|
-
exports.PolicyItem$ = PolicyItem$;
|
|
2179
|
-
exports.PolicyStoreItem$ = PolicyStoreItem$;
|
|
2180
|
-
exports.PolicyTemplateItem$ = PolicyTemplateItem$;
|
|
2181
606
|
exports.PolicyType = PolicyType;
|
|
2182
|
-
exports.PutSchema$ = PutSchema$;
|
|
2183
607
|
exports.PutSchemaCommand = PutSchemaCommand;
|
|
2184
|
-
exports.PutSchemaInput$ = PutSchemaInput$;
|
|
2185
|
-
exports.PutSchemaOutput$ = PutSchemaOutput$;
|
|
2186
|
-
exports.ResourceConflict$ = ResourceConflict$;
|
|
2187
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2188
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2189
608
|
exports.ResourceType = ResourceType;
|
|
2190
|
-
exports.SchemaDefinition$ = SchemaDefinition$;
|
|
2191
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2192
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2193
|
-
exports.StaticPolicyDefinition$ = StaticPolicyDefinition$;
|
|
2194
|
-
exports.StaticPolicyDefinitionDetail$ = StaticPolicyDefinitionDetail$;
|
|
2195
|
-
exports.StaticPolicyDefinitionItem$ = StaticPolicyDefinitionItem$;
|
|
2196
|
-
exports.TagResource$ = TagResource$;
|
|
2197
609
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2198
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
2199
|
-
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
2200
|
-
exports.TemplateLinkedPolicyDefinition$ = TemplateLinkedPolicyDefinition$;
|
|
2201
|
-
exports.TemplateLinkedPolicyDefinitionDetail$ = TemplateLinkedPolicyDefinitionDetail$;
|
|
2202
|
-
exports.TemplateLinkedPolicyDefinitionItem$ = TemplateLinkedPolicyDefinitionItem$;
|
|
2203
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2204
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2205
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
2206
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
2207
|
-
exports.UntagResource$ = UntagResource$;
|
|
2208
610
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2209
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
2210
|
-
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
2211
|
-
exports.UpdateCognitoGroupConfiguration$ = UpdateCognitoGroupConfiguration$;
|
|
2212
|
-
exports.UpdateCognitoUserPoolConfiguration$ = UpdateCognitoUserPoolConfiguration$;
|
|
2213
|
-
exports.UpdateConfiguration$ = UpdateConfiguration$;
|
|
2214
|
-
exports.UpdateIdentitySource$ = UpdateIdentitySource$;
|
|
2215
611
|
exports.UpdateIdentitySourceCommand = UpdateIdentitySourceCommand;
|
|
2216
|
-
exports.UpdateIdentitySourceInput$ = UpdateIdentitySourceInput$;
|
|
2217
|
-
exports.UpdateIdentitySourceOutput$ = UpdateIdentitySourceOutput$;
|
|
2218
|
-
exports.UpdateOpenIdConnectAccessTokenConfiguration$ = UpdateOpenIdConnectAccessTokenConfiguration$;
|
|
2219
|
-
exports.UpdateOpenIdConnectConfiguration$ = UpdateOpenIdConnectConfiguration$;
|
|
2220
|
-
exports.UpdateOpenIdConnectGroupConfiguration$ = UpdateOpenIdConnectGroupConfiguration$;
|
|
2221
|
-
exports.UpdateOpenIdConnectIdentityTokenConfiguration$ = UpdateOpenIdConnectIdentityTokenConfiguration$;
|
|
2222
|
-
exports.UpdateOpenIdConnectTokenSelection$ = UpdateOpenIdConnectTokenSelection$;
|
|
2223
|
-
exports.UpdatePolicy$ = UpdatePolicy$;
|
|
2224
612
|
exports.UpdatePolicyCommand = UpdatePolicyCommand;
|
|
2225
|
-
exports.UpdatePolicyDefinition$ = UpdatePolicyDefinition$;
|
|
2226
|
-
exports.UpdatePolicyInput$ = UpdatePolicyInput$;
|
|
2227
|
-
exports.UpdatePolicyOutput$ = UpdatePolicyOutput$;
|
|
2228
|
-
exports.UpdatePolicyStore$ = UpdatePolicyStore$;
|
|
2229
613
|
exports.UpdatePolicyStoreCommand = UpdatePolicyStoreCommand;
|
|
2230
|
-
exports.UpdatePolicyStoreInput$ = UpdatePolicyStoreInput$;
|
|
2231
|
-
exports.UpdatePolicyStoreOutput$ = UpdatePolicyStoreOutput$;
|
|
2232
|
-
exports.UpdatePolicyTemplate$ = UpdatePolicyTemplate$;
|
|
2233
614
|
exports.UpdatePolicyTemplateCommand = UpdatePolicyTemplateCommand;
|
|
2234
|
-
exports.UpdatePolicyTemplateInput$ = UpdatePolicyTemplateInput$;
|
|
2235
|
-
exports.UpdatePolicyTemplateOutput$ = UpdatePolicyTemplateOutput$;
|
|
2236
|
-
exports.UpdateStaticPolicyDefinition$ = UpdateStaticPolicyDefinition$;
|
|
2237
|
-
exports.ValidationException = ValidationException;
|
|
2238
|
-
exports.ValidationException$ = ValidationException$;
|
|
2239
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2240
615
|
exports.ValidationMode = ValidationMode;
|
|
2241
|
-
exports.ValidationSettings$ = ValidationSettings$;
|
|
2242
616
|
exports.VerifiedPermissions = VerifiedPermissions;
|
|
2243
617
|
exports.VerifiedPermissionsClient = VerifiedPermissionsClient;
|
|
2244
|
-
exports.VerifiedPermissionsServiceException = VerifiedPermissionsServiceException;
|
|
2245
|
-
exports.VerifiedPermissionsServiceException$ = VerifiedPermissionsServiceException$;
|
|
2246
618
|
exports.paginateListIdentitySources = paginateListIdentitySources;
|
|
2247
619
|
exports.paginateListPolicies = paginateListPolicies;
|
|
2248
620
|
exports.paginateListPolicyStores = paginateListPolicyStores;
|
|
2249
621
|
exports.paginateListPolicyTemplates = paginateListPolicyTemplates;
|
|
622
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
623
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
624
|
+
enumerable: true,
|
|
625
|
+
get: function () { return schemas_0[k]; }
|
|
626
|
+
});
|
|
627
|
+
});
|
|
628
|
+
Object.keys(errors).forEach(function (k) {
|
|
629
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
630
|
+
enumerable: true,
|
|
631
|
+
get: function () { return errors[k]; }
|
|
632
|
+
});
|
|
633
|
+
});
|