@aws-sdk/client-verifiedpermissions 3.1075.0 → 3.1077.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 CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultVerifiedPermissionsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { BatchGetPolicy$, BatchIsAuthorized$, BatchIsAuthorizedWithToken$, CreateIdentitySource$, CreatePolicy$, CreatePolicyStoreAlias$, CreatePolicyStore$, CreatePolicyTemplate$, DeleteIdentitySource$, DeletePolicy$, DeletePolicyStoreAlias$, DeletePolicyStore$, DeletePolicyTemplate$, GetIdentitySource$, GetPolicy$, GetPolicyStoreAlias$, GetPolicyStore$, GetPolicyTemplate$, GetSchema$, IsAuthorized$, IsAuthorizedWithToken$, ListIdentitySources$, ListPolicies$, ListPolicyStoreAliases$, ListPolicyStores$, ListPolicyTemplates$, ListTagsForResource$, PutSchema$, TagResource$, UntagResource$, UpdateIdentitySource$, UpdatePolicy$, UpdatePolicyStore$, UpdatePolicyTemplate$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { VerifiedPermissionsServiceException } = require("./models/VerifiedPermissionsServiceException");
18
- exports.VerifiedPermissionsServiceException = VerifiedPermissionsServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultVerifiedPermissionsHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "verifiedpermissions",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultVerifiedPermissionsHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1676 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://verifiedpermissions-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://verifiedpermissions-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://verifiedpermissions.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://verifiedpermissions.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class VerifiedPermissionsServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, VerifiedPermissionsServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends VerifiedPermissionsServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ }
151
+ }
152
+ class InternalServerException extends VerifiedPermissionsServiceException {
153
+ name = "InternalServerException";
154
+ $fault = "server";
155
+ $retryable = {};
156
+ constructor(opts) {
157
+ super({
158
+ name: "InternalServerException",
159
+ $fault: "server",
160
+ ...opts,
161
+ });
162
+ Object.setPrototypeOf(this, InternalServerException.prototype);
163
+ }
164
+ }
165
+ class ThrottlingException extends VerifiedPermissionsServiceException {
166
+ name = "ThrottlingException";
167
+ $fault = "client";
168
+ $retryable = {
169
+ throttling: true,
170
+ };
171
+ serviceCode;
172
+ quotaCode;
173
+ constructor(opts) {
174
+ super({
175
+ name: "ThrottlingException",
176
+ $fault: "client",
177
+ ...opts,
178
+ });
179
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
180
+ this.serviceCode = opts.serviceCode;
181
+ this.quotaCode = opts.quotaCode;
182
+ }
183
+ }
184
+ class ValidationException extends VerifiedPermissionsServiceException {
185
+ name = "ValidationException";
186
+ $fault = "client";
187
+ fieldList;
188
+ constructor(opts) {
189
+ super({
190
+ name: "ValidationException",
191
+ $fault: "client",
192
+ ...opts,
193
+ });
194
+ Object.setPrototypeOf(this, ValidationException.prototype);
195
+ this.fieldList = opts.fieldList;
196
+ }
197
+ }
198
+ class ResourceNotFoundException extends VerifiedPermissionsServiceException {
199
+ name = "ResourceNotFoundException";
200
+ $fault = "client";
201
+ resourceId;
202
+ resourceType;
203
+ constructor(opts) {
204
+ super({
205
+ name: "ResourceNotFoundException",
206
+ $fault: "client",
207
+ ...opts,
208
+ });
209
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
210
+ this.resourceId = opts.resourceId;
211
+ this.resourceType = opts.resourceType;
212
+ }
213
+ }
214
+ class ConflictException extends VerifiedPermissionsServiceException {
215
+ name = "ConflictException";
216
+ $fault = "client";
217
+ resources;
218
+ constructor(opts) {
219
+ super({
220
+ name: "ConflictException",
221
+ $fault: "client",
222
+ ...opts,
223
+ });
224
+ Object.setPrototypeOf(this, ConflictException.prototype);
225
+ this.resources = opts.resources;
226
+ }
227
+ }
228
+ class ServiceQuotaExceededException extends VerifiedPermissionsServiceException {
229
+ name = "ServiceQuotaExceededException";
230
+ $fault = "client";
231
+ resourceId;
232
+ resourceType;
233
+ serviceCode;
234
+ quotaCode;
235
+ constructor(opts) {
236
+ super({
237
+ name: "ServiceQuotaExceededException",
238
+ $fault: "client",
239
+ ...opts,
240
+ });
241
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
242
+ this.resourceId = opts.resourceId;
243
+ this.resourceType = opts.resourceType;
244
+ this.serviceCode = opts.serviceCode;
245
+ this.quotaCode = opts.quotaCode;
246
+ }
247
+ }
248
+ class InvalidStateException extends VerifiedPermissionsServiceException {
249
+ name = "InvalidStateException";
250
+ $fault = "client";
251
+ constructor(opts) {
252
+ super({
253
+ name: "InvalidStateException",
254
+ $fault: "client",
255
+ ...opts,
256
+ });
257
+ Object.setPrototypeOf(this, InvalidStateException.prototype);
258
+ }
259
+ }
260
+ class TooManyTagsException extends VerifiedPermissionsServiceException {
261
+ name = "TooManyTagsException";
262
+ $fault = "client";
263
+ resourceName;
264
+ constructor(opts) {
265
+ super({
266
+ name: "TooManyTagsException",
267
+ $fault: "client",
268
+ ...opts,
269
+ });
270
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
271
+ this.resourceName = opts.resourceName;
272
+ }
273
+ }
274
+
275
+ const _ADE = "AccessDeniedException";
276
+ const _AI = "ActionId";
277
+ const _AIL = "ActionIdentifierList";
278
+ const _AIc = "ActionIdentifier";
279
+ const _AT = "ActionType";
280
+ const _AV = "AttributeValue";
281
+ const _BA = "BooleanAttribute";
282
+ const _BGP = "BatchGetPolicy";
283
+ const _BGPEI = "BatchGetPolicyErrorItem";
284
+ const _BGPEL = "BatchGetPolicyErrorList";
285
+ const _BGPI = "BatchGetPolicyInput";
286
+ const _BGPII = "BatchGetPolicyInputItem";
287
+ const _BGPIL = "BatchGetPolicyInputList";
288
+ const _BGPO = "BatchGetPolicyOutput";
289
+ const _BGPOI = "BatchGetPolicyOutputItem";
290
+ const _BGPOL = "BatchGetPolicyOutputList";
291
+ const _BIA = "BatchIsAuthorized";
292
+ const _BIAI = "BatchIsAuthorizedInput";
293
+ const _BIAII = "BatchIsAuthorizedInputItem";
294
+ const _BIAIL = "BatchIsAuthorizedInputList";
295
+ const _BIAO = "BatchIsAuthorizedOutput";
296
+ const _BIAOI = "BatchIsAuthorizedOutputItem";
297
+ const _BIAOL = "BatchIsAuthorizedOutputList";
298
+ const _BIAWT = "BatchIsAuthorizedWithToken";
299
+ const _BIAWTI = "BatchIsAuthorizedWithTokenInput";
300
+ const _BIAWTII = "BatchIsAuthorizedWithTokenInputItem";
301
+ const _BIAWTIL = "BatchIsAuthorizedWithTokenInputList";
302
+ const _BIAWTO = "BatchIsAuthorizedWithTokenOutput";
303
+ const _BIAWTOI = "BatchIsAuthorizedWithTokenOutputItem";
304
+ const _BIAWTOL = "BatchIsAuthorizedWithTokenOutputList";
305
+ const _C = "Claim";
306
+ const _CD = "ConfigurationDetail";
307
+ const _CDo = "ContextDefinition";
308
+ const _CE = "ConflictException";
309
+ const _CGC = "CognitoGroupConfiguration";
310
+ const _CGCD = "CognitoGroupConfigurationDetail";
311
+ const _CGCI = "CognitoGroupConfigurationItem";
312
+ const _CI = "ClientId";
313
+ const _CIS = "CreateIdentitySource";
314
+ const _CISI = "CreateIdentitySourceInput";
315
+ const _CISO = "CreateIdentitySourceOutput";
316
+ const _CIl = "ClientIds";
317
+ const _CIo = "ConfigurationItem";
318
+ const _CJ = "CedarJson";
319
+ const _CM = "ContextMap";
320
+ const _CP = "CreatePolicy";
321
+ const _CPI = "CreatePolicyInput";
322
+ const _CPO = "CreatePolicyOutput";
323
+ const _CPS = "CreatePolicyStore";
324
+ const _CPSA = "CreatePolicyStoreAlias";
325
+ const _CPSAI = "CreatePolicyStoreAliasInput";
326
+ const _CPSAO = "CreatePolicyStoreAliasOutput";
327
+ const _CPSI = "CreatePolicyStoreInput";
328
+ const _CPSO = "CreatePolicyStoreOutput";
329
+ const _CPT = "CreatePolicyTemplate";
330
+ const _CPTI = "CreatePolicyTemplateInput";
331
+ const _CPTO = "CreatePolicyTemplateOutput";
332
+ const _CTRA = "CedarTagRecordAttribute";
333
+ const _CTSA = "CedarTagSetAttribute";
334
+ const _CTV = "CedarTagValue";
335
+ const _CUPC = "CognitoUserPoolConfiguration";
336
+ const _CUPCD = "CognitoUserPoolConfigurationDetail";
337
+ const _CUPCI = "CognitoUserPoolConfigurationItem";
338
+ const _Co = "Configuration";
339
+ const _D = "Decimal";
340
+ const _DA = "DatetimeAttribute";
341
+ const _DIS = "DeleteIdentitySource";
342
+ const _DISI = "DeleteIdentitySourceInput";
343
+ const _DISO = "DeleteIdentitySourceOutput";
344
+ const _DP = "DeletePolicy";
345
+ const _DPI = "DeletePolicyInput";
346
+ const _DPIe = "DeterminingPolicyItem";
347
+ const _DPL = "DeterminingPolicyList";
348
+ const _DPO = "DeletePolicyOutput";
349
+ const _DPS = "DeletePolicyStore";
350
+ const _DPSA = "DeletePolicyStoreAlias";
351
+ const _DPSAI = "DeletePolicyStoreAliasInput";
352
+ const _DPSAO = "DeletePolicyStoreAliasOutput";
353
+ const _DPSI = "DeletePolicyStoreInput";
354
+ const _DPSO = "DeletePolicyStoreOutput";
355
+ const _DPT = "DeletePolicyTemplate";
356
+ const _DPTI = "DeletePolicyTemplateInput";
357
+ const _DPTO = "DeletePolicyTemplateOutput";
358
+ const _Du = "Duration";
359
+ const _EA = "EntityAttributes";
360
+ const _ECT = "EntityCedarTags";
361
+ const _ED = "EntitiesDefinition";
362
+ const _EEI = "EvaluationErrorItem";
363
+ const _EEL = "EvaluationErrorList";
364
+ const _EI = "EntityId";
365
+ const _EIP = "EntityIdPrefix";
366
+ const _EIn = "EntityIdentifier";
367
+ const _EInt = "EntityItem";
368
+ const _EL = "EntityList";
369
+ const _ER = "EntityReference";
370
+ const _ES = "EncryptionSettings";
371
+ const _ESn = "EncryptionState";
372
+ const _ET = "EntityType";
373
+ const _GET = "GroupEntityType";
374
+ const _GIS = "GetIdentitySource";
375
+ const _GISI = "GetIdentitySourceInput";
376
+ const _GISO = "GetIdentitySourceOutput";
377
+ const _GP = "GetPolicy";
378
+ const _GPI = "GetPolicyInput";
379
+ const _GPO = "GetPolicyOutput";
380
+ const _GPS = "GetPolicyStore";
381
+ const _GPSA = "GetPolicyStoreAlias";
382
+ const _GPSAI = "GetPolicyStoreAliasInput";
383
+ const _GPSAO = "GetPolicyStoreAliasOutput";
384
+ const _GPSI = "GetPolicyStoreInput";
385
+ const _GPSO = "GetPolicyStoreOutput";
386
+ const _GPT = "GetPolicyTemplate";
387
+ const _GPTI = "GetPolicyTemplateInput";
388
+ const _GPTO = "GetPolicyTemplateOutput";
389
+ const _GS = "GetSchema";
390
+ const _GSI = "GetSchemaInput";
391
+ const _GSO = "GetSchemaOutput";
392
+ const _IA = "IpAddr";
393
+ const _IAI = "IsAuthorizedInput";
394
+ const _IAO = "IsAuthorizedOutput";
395
+ const _IAWT = "IsAuthorizedWithToken";
396
+ const _IAWTI = "IsAuthorizedWithTokenInput";
397
+ const _IAWTO = "IsAuthorizedWithTokenOutput";
398
+ const _IAs = "IsAuthorized";
399
+ const _IS = "IdentitySources";
400
+ const _ISD = "IdentitySourceDetails";
401
+ const _ISE = "InternalServerException";
402
+ const _ISEn = "InvalidStateException";
403
+ const _ISF = "IdentitySourceFilter";
404
+ const _ISFd = "IdentitySourceFilters";
405
+ const _ISI = "IdentitySourceItem";
406
+ const _ISID = "IdentitySourceItemDetails";
407
+ const _KES = "KmsEncryptionSettings";
408
+ const _KESm = "KmsEncryptionState";
409
+ const _LA = "LongAttribute";
410
+ const _LIS = "ListIdentitySources";
411
+ const _LISI = "ListIdentitySourcesInput";
412
+ const _LISO = "ListIdentitySourcesOutput";
413
+ const _LP = "ListPolicies";
414
+ const _LPI = "ListPoliciesInput";
415
+ const _LPO = "ListPoliciesOutput";
416
+ const _LPS = "ListPolicyStores";
417
+ const _LPSA = "ListPolicyStoreAliases";
418
+ const _LPSAI = "ListPolicyStoreAliasesInput";
419
+ const _LPSAO = "ListPolicyStoreAliasesOutput";
420
+ const _LPSI = "ListPolicyStoresInput";
421
+ const _LPSO = "ListPolicyStoresOutput";
422
+ const _LPT = "ListPolicyTemplates";
423
+ const _LPTI = "ListPolicyTemplatesInput";
424
+ const _LPTO = "ListPolicyTemplatesOutput";
425
+ const _LTFR = "ListTagsForResource";
426
+ const _LTFRI = "ListTagsForResourceInput";
427
+ const _LTFRO = "ListTagsForResourceOutput";
428
+ const _N = "Namespace";
429
+ const _NL = "NamespaceList";
430
+ const _OICATC = "OpenIdConnectAccessTokenConfiguration";
431
+ const _OICATCD = "OpenIdConnectAccessTokenConfigurationDetail";
432
+ const _OICATCI = "OpenIdConnectAccessTokenConfigurationItem";
433
+ const _OICC = "OpenIdConnectConfiguration";
434
+ const _OICCD = "OpenIdConnectConfigurationDetail";
435
+ const _OICCI = "OpenIdConnectConfigurationItem";
436
+ const _OICGC = "OpenIdConnectGroupConfiguration";
437
+ const _OICGCD = "OpenIdConnectGroupConfigurationDetail";
438
+ const _OICGCI = "OpenIdConnectGroupConfigurationItem";
439
+ const _OICITC = "OpenIdConnectIdentityTokenConfiguration";
440
+ const _OICITCD = "OpenIdConnectIdentityTokenConfigurationDetail";
441
+ const _OICITCI = "OpenIdConnectIdentityTokenConfigurationItem";
442
+ const _OICTS = "OpenIdConnectTokenSelection";
443
+ const _OICTSD = "OpenIdConnectTokenSelectionDetail";
444
+ const _OICTSI = "OpenIdConnectTokenSelectionItem";
445
+ const _PD = "PolicyDefinition";
446
+ const _PDD = "PolicyDefinitionDetail";
447
+ const _PDI = "PolicyDefinitionItem";
448
+ const _PET = "PrincipalEntityType";
449
+ const _PF = "PolicyFilter";
450
+ const _PI = "PolicyItem";
451
+ const _PL = "ParentList";
452
+ const _PLo = "PolicyList";
453
+ const _PS = "PolicyStatement";
454
+ const _PSAF = "PolicyStoreAliasFilter";
455
+ const _PSAI = "PolicyStoreAliasItem";
456
+ const _PSAL = "PolicyStoreAliasList";
457
+ const _PSD = "PolicyStoreDescription";
458
+ const _PSI = "PolicyStoreItem";
459
+ const _PSIu = "PutSchemaInput";
460
+ const _PSL = "PolicyStoreList";
461
+ const _PSO = "PutSchemaOutput";
462
+ const _PSu = "PutSchema";
463
+ const _PTD = "PolicyTemplateDescription";
464
+ const _PTI = "PolicyTemplateItem";
465
+ const _PTL = "PolicyTemplatesList";
466
+ const _RA = "RecordAttribute";
467
+ const _RC = "ResourceConflict";
468
+ const _RCL = "ResourceConflictList";
469
+ const _RNFE = "ResourceNotFoundException";
470
+ const _SA = "StringAttribute";
471
+ const _SAe = "SetAttribute";
472
+ const _SD = "SchemaDefinition";
473
+ const _SJ = "SchemaJson";
474
+ const _SPD = "StaticPolicyDescription";
475
+ const _SPDD = "StaticPolicyDefinitionDetail";
476
+ const _SPDI = "StaticPolicyDefinitionItem";
477
+ const _SPDt = "StaticPolicyDefinition";
478
+ const _SQEE = "ServiceQuotaExceededException";
479
+ const _T = "Token";
480
+ const _TE = "ThrottlingException";
481
+ const _TLPD = "TemplateLinkedPolicyDefinition";
482
+ const _TLPDD = "TemplateLinkedPolicyDefinitionDetail";
483
+ const _TLPDI = "TemplateLinkedPolicyDefinitionItem";
484
+ const _TMTE = "TooManyTagsException";
485
+ const _TR = "TagResource";
486
+ const _TRI = "TagResourceInput";
487
+ const _TRO = "TagResourceOutput";
488
+ const _UC = "UpdateConfiguration";
489
+ const _UCGC = "UpdateCognitoGroupConfiguration";
490
+ const _UCUPC = "UpdateCognitoUserPoolConfiguration";
491
+ const _UIS = "UpdateIdentitySource";
492
+ const _UISI = "UpdateIdentitySourceInput";
493
+ const _UISO = "UpdateIdentitySourceOutput";
494
+ const _UOICATC = "UpdateOpenIdConnectAccessTokenConfiguration";
495
+ const _UOICC = "UpdateOpenIdConnectConfiguration";
496
+ const _UOICGC = "UpdateOpenIdConnectGroupConfiguration";
497
+ const _UOICITC = "UpdateOpenIdConnectIdentityTokenConfiguration";
498
+ const _UOICTS = "UpdateOpenIdConnectTokenSelection";
499
+ const _UP = "UpdatePolicy";
500
+ const _UPD = "UpdatePolicyDefinition";
501
+ const _UPI = "UpdatePolicyInput";
502
+ const _UPO = "UpdatePolicyOutput";
503
+ const _UPS = "UpdatePolicyStore";
504
+ const _UPSI = "UpdatePolicyStoreInput";
505
+ const _UPSO = "UpdatePolicyStoreOutput";
506
+ const _UPT = "UpdatePolicyTemplate";
507
+ const _UPTI = "UpdatePolicyTemplateInput";
508
+ const _UPTO = "UpdatePolicyTemplateOutput";
509
+ const _UR = "UntagResource";
510
+ const _URI = "UntagResourceInput";
511
+ const _URO = "UntagResourceOutput";
512
+ const _USPD = "UpdateStaticPolicyDefinition";
513
+ const _VE = "ValidationException";
514
+ const _VEF = "ValidationExceptionField";
515
+ const _VEFL = "ValidationExceptionFieldList";
516
+ const _VS = "ValidationSettings";
517
+ const _a = "action";
518
+ const _aA = "aliasArn";
519
+ const _aI = "actionId";
520
+ const _aN = "aliasName";
521
+ const _aT = "actionType";
522
+ const _aTO = "accessTokenOnly";
523
+ const _aTc = "accessToken";
524
+ const _ac = "actions";
525
+ const _ar = "arn";
526
+ const _at = "attributes";
527
+ const _au = "audiences";
528
+ const _b = "boolean";
529
+ const _c = "client";
530
+ const _cA = "createdAt";
531
+ const _cD = "createdDate";
532
+ const _cI = "clientIds";
533
+ const _cJ = "cedarJson";
534
+ const _cM = "contextMap";
535
+ const _cT = "clientToken";
536
+ const _cUPC = "cognitoUserPoolConfiguration";
537
+ const _cV = "cedarVersion";
538
+ const _co = "code";
539
+ const _con = "context";
540
+ const _conf = "configuration";
541
+ const _d = "definition";
542
+ const _dM = "deletionMode";
543
+ const _dP = "determiningPolicies";
544
+ const _dPe = "deletionProtection";
545
+ const _dU = "discoveryUrl";
546
+ const _da = "datetime";
547
+ const _de = "decision";
548
+ const _dec = "decimal";
549
+ const _def = "default";
550
+ const _des = "description";
551
+ const _det = "details";
552
+ const _du = "duration";
553
+ const _e = "error";
554
+ const _eC = "encryptionContext";
555
+ const _eD = "errorDescription";
556
+ const _eI = "entityId";
557
+ const _eIP = "entityIdPrefix";
558
+ const _eIn = "entityIdentifier";
559
+ const _eL = "entityList";
560
+ const _eS = "encryptionSettings";
561
+ const _eSn = "encryptionState";
562
+ const _eT = "entityType";
563
+ const _ef = "effect";
564
+ const _en = "entities";
565
+ const _er = "errors";
566
+ const _f = "filters";
567
+ const _fL = "fieldList";
568
+ const _fi = "filter";
569
+ const _gC = "groupConfiguration";
570
+ const _gCr = "groupClaim";
571
+ const _gET = "groupEntityType";
572
+ const _hE = "httpError";
573
+ const _i = "issuer";
574
+ const _iS = "identitySources";
575
+ const _iSI = "identitySourceId";
576
+ const _iT = "identityToken";
577
+ const _iTO = "identityTokenOnly";
578
+ const _id = "identifier";
579
+ const _ip = "ipaddr";
580
+ const _k = "key";
581
+ const _kES = "kmsEncryptionSettings";
582
+ const _kESm = "kmsEncryptionState";
583
+ const _l = "long";
584
+ const _lUD = "lastUpdatedDate";
585
+ const _m = "message";
586
+ const _mR = "maxResults";
587
+ const _mo = "mode";
588
+ const _n = "name";
589
+ const _nT = "nextToken";
590
+ const _na = "namespaces";
591
+ const _oICC = "openIdConnectConfiguration";
592
+ const _oII = "openIdIssuer";
593
+ const _p = "principal";
594
+ const _pET = "principalEntityType";
595
+ const _pI = "policyId";
596
+ const _pIC = "principalIdClaim";
597
+ const _pS = "policyStores";
598
+ const _pSA = "policyStoreAliases";
599
+ const _pSI = "policyStoreId";
600
+ const _pT = "policyType";
601
+ const _pTI = "policyTemplateId";
602
+ const _pTo = "policyTemplates";
603
+ const _pa = "parents";
604
+ const _pat = "path";
605
+ const _po = "policies";
606
+ const _qC = "quotaCode";
607
+ const _r = "resources";
608
+ const _rA = "resourceArn";
609
+ const _rI = "resourceId";
610
+ const _rN = "resourceName";
611
+ const _rT = "resourceType";
612
+ const _re = "requests";
613
+ const _rec = "record";
614
+ const _req = "request";
615
+ const _res = "results";
616
+ const _reso = "resource";
617
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.verifiedpermissions";
618
+ const _sC = "serviceCode";
619
+ const _sc = "schema";
620
+ const _se = "server";
621
+ const _set = "set";
622
+ const _st = "statement";
623
+ const _sta = "state";
624
+ const _stat = "static";
625
+ const _str = "string";
626
+ const _t = "tags";
627
+ const _tK = "tagKeys";
628
+ const _tL = "templateLinked";
629
+ const _tS = "tokenSelection";
630
+ const _u = "unspecified";
631
+ const _uC = "updateConfiguration";
632
+ const _uPA = "userPoolArn";
633
+ const _vS = "validationSettings";
634
+ const n0 = "com.amazonaws.verifiedpermissions";
635
+ const _s_registry = TypeRegistry.for(_s);
636
+ var VerifiedPermissionsServiceException$ = [-3, _s, "VerifiedPermissionsServiceException", 0, [], []];
637
+ _s_registry.registerError(VerifiedPermissionsServiceException$, VerifiedPermissionsServiceException);
638
+ const n0_registry = TypeRegistry.for(n0);
639
+ var AccessDeniedException$ = [-3, n0, _ADE,
640
+ { [_e]: _c, [_hE]: 403 },
641
+ [_m],
642
+ [0], 1
643
+ ];
644
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
645
+ var ConflictException$ = [-3, n0, _CE,
646
+ { [_e]: _c, [_hE]: 409 },
647
+ [_m, _r],
648
+ [0, () => ResourceConflictList], 2
649
+ ];
650
+ n0_registry.registerError(ConflictException$, ConflictException);
651
+ var InternalServerException$ = [-3, n0, _ISE,
652
+ { [_e]: _se, [_hE]: 500 },
653
+ [_m],
654
+ [0], 1
655
+ ];
656
+ n0_registry.registerError(InternalServerException$, InternalServerException);
657
+ var InvalidStateException$ = [-3, n0, _ISEn,
658
+ { [_e]: _c, [_hE]: 406 },
659
+ [_m],
660
+ [0], 1
661
+ ];
662
+ n0_registry.registerError(InvalidStateException$, InvalidStateException);
663
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
664
+ { [_e]: _c, [_hE]: 404 },
665
+ [_m, _rI, _rT],
666
+ [0, 0, 0], 3
667
+ ];
668
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
669
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
670
+ { [_e]: _c, [_hE]: 402 },
671
+ [_m, _rT, _rI, _sC, _qC],
672
+ [0, 0, 0, 0, 0], 2
673
+ ];
674
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
675
+ var ThrottlingException$ = [-3, n0, _TE,
676
+ { [_e]: _c, [_hE]: 429 },
677
+ [_m, _sC, _qC],
678
+ [0, 0, 0], 1
679
+ ];
680
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
681
+ var TooManyTagsException$ = [-3, n0, _TMTE,
682
+ { [_e]: _c, [_hE]: 400 },
683
+ [_m, _rN],
684
+ [0, 0]
685
+ ];
686
+ n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
687
+ var ValidationException$ = [-3, n0, _VE,
688
+ { [_e]: _c },
689
+ [_m, _fL],
690
+ [0, () => ValidationExceptionFieldList], 1
691
+ ];
692
+ n0_registry.registerError(ValidationException$, ValidationException);
693
+ const errorTypeRegistries = [
694
+ _s_registry,
695
+ n0_registry,
696
+ ];
697
+ var ActionId = [0, n0, _AI, 8, 0];
698
+ var ActionType = [0, n0, _AT, 8, 0];
699
+ var BooleanAttribute = [0, n0, _BA, 8, 2];
700
+ var CedarJson = [0, n0, _CJ, 8, 0];
701
+ var Claim = [0, n0, _C, 8, 0];
702
+ var ClientId = [0, n0, _CI, 8, 0];
703
+ var DatetimeAttribute = [0, n0, _DA, 8, 0];
704
+ var Decimal = [0, n0, _D, 8, 0];
705
+ var Duration = [0, n0, _Du, 8, 0];
706
+ var EntityId = [0, n0, _EI, 8, 0];
707
+ var EntityIdPrefix = [0, n0, _EIP, 8, 0];
708
+ var EntityType = [0, n0, _ET, 8, 0];
709
+ var GroupEntityType = [0, n0, _GET, 8, 0];
710
+ var IpAddr = [0, n0, _IA, 8, 0];
711
+ var LongAttribute = [0, n0, _LA, 8, 1];
712
+ var Namespace = [0, n0, _N, 8, 0];
713
+ var PolicyStatement = [0, n0, _PS, 8, 0];
714
+ var PolicyStoreDescription = [0, n0, _PSD, 8, 0];
715
+ var PolicyTemplateDescription = [0, n0, _PTD, 8, 0];
716
+ var PrincipalEntityType = [0, n0, _PET, 8, 0];
717
+ var SchemaJson = [0, n0, _SJ, 8, 0];
718
+ var StaticPolicyDescription = [0, n0, _SPD, 8, 0];
719
+ var StringAttribute = [0, n0, _SA, 8, 0];
720
+ var Token = [0, n0, _T, 8, 0];
721
+ var ActionIdentifier$ = [3, n0, _AIc,
722
+ 0,
723
+ [_aT, _aI],
724
+ [[() => ActionType, 0], [() => ActionId, 0]], 2
725
+ ];
726
+ var BatchGetPolicyErrorItem$ = [3, n0, _BGPEI,
727
+ 0,
728
+ [_co, _pSI, _pI, _m],
729
+ [0, 0, 0, 0], 4
730
+ ];
731
+ var BatchGetPolicyInput$ = [3, n0, _BGPI,
732
+ 0,
733
+ [_re],
734
+ [() => BatchGetPolicyInputList], 1
735
+ ];
736
+ var BatchGetPolicyInputItem$ = [3, n0, _BGPII,
737
+ 0,
738
+ [_pSI, _pI],
739
+ [0, 0], 2
740
+ ];
741
+ var BatchGetPolicyOutput$ = [3, n0, _BGPO,
742
+ 0,
743
+ [_res, _er],
744
+ [[() => BatchGetPolicyOutputList, 0], () => BatchGetPolicyErrorList], 2
745
+ ];
746
+ var BatchGetPolicyOutputItem$ = [3, n0, _BGPOI,
747
+ 0,
748
+ [_pSI, _pI, _pT, _d, _cD, _lUD, _n],
749
+ [0, 0, 0, [() => PolicyDefinitionDetail$, 0], 5, 5, 0], 6
750
+ ];
751
+ var BatchIsAuthorizedInput$ = [3, n0, _BIAI,
752
+ 0,
753
+ [_pSI, _re, _en],
754
+ [0, [() => BatchIsAuthorizedInputList, 0], [() => EntitiesDefinition$, 0]], 2
755
+ ];
756
+ var BatchIsAuthorizedInputItem$ = [3, n0, _BIAII,
757
+ 0,
758
+ [_p, _a, _reso, _con],
759
+ [[() => EntityIdentifier$, 0], [() => ActionIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ContextDefinition$, 0]]
760
+ ];
761
+ var BatchIsAuthorizedOutput$ = [3, n0, _BIAO,
762
+ 0,
763
+ [_res],
764
+ [[() => BatchIsAuthorizedOutputList, 0]], 1
765
+ ];
766
+ var BatchIsAuthorizedOutputItem$ = [3, n0, _BIAOI,
767
+ 0,
768
+ [_req, _de, _dP, _er],
769
+ [[() => BatchIsAuthorizedInputItem$, 0], 0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0]], 4
770
+ ];
771
+ var BatchIsAuthorizedWithTokenInput$ = [3, n0, _BIAWTI,
772
+ 0,
773
+ [_pSI, _re, _iT, _aTc, _en],
774
+ [0, [() => BatchIsAuthorizedWithTokenInputList, 0], [() => Token, 0], [() => Token, 0], [() => EntitiesDefinition$, 0]], 2
775
+ ];
776
+ var BatchIsAuthorizedWithTokenInputItem$ = [3, n0, _BIAWTII,
777
+ 0,
778
+ [_a, _reso, _con],
779
+ [[() => ActionIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ContextDefinition$, 0]]
780
+ ];
781
+ var BatchIsAuthorizedWithTokenOutput$ = [3, n0, _BIAWTO,
782
+ 0,
783
+ [_res, _p],
784
+ [[() => BatchIsAuthorizedWithTokenOutputList, 0], [() => EntityIdentifier$, 0]], 1
785
+ ];
786
+ var BatchIsAuthorizedWithTokenOutputItem$ = [3, n0, _BIAWTOI,
787
+ 0,
788
+ [_req, _de, _dP, _er],
789
+ [[() => BatchIsAuthorizedWithTokenInputItem$, 0], 0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0]], 4
790
+ ];
791
+ var CognitoGroupConfiguration$ = [3, n0, _CGC,
792
+ 0,
793
+ [_gET],
794
+ [[() => GroupEntityType, 0]], 1
795
+ ];
796
+ var CognitoGroupConfigurationDetail$ = [3, n0, _CGCD,
797
+ 0,
798
+ [_gET],
799
+ [[() => GroupEntityType, 0]]
800
+ ];
801
+ var CognitoGroupConfigurationItem$ = [3, n0, _CGCI,
802
+ 0,
803
+ [_gET],
804
+ [[() => GroupEntityType, 0]]
805
+ ];
806
+ var CognitoUserPoolConfiguration$ = [3, n0, _CUPC,
807
+ 0,
808
+ [_uPA, _cI, _gC],
809
+ [0, [() => ClientIds, 0], [() => CognitoGroupConfiguration$, 0]], 1
810
+ ];
811
+ var CognitoUserPoolConfigurationDetail$ = [3, n0, _CUPCD,
812
+ 0,
813
+ [_uPA, _cI, _i, _gC],
814
+ [0, [() => ClientIds, 0], 0, [() => CognitoGroupConfigurationDetail$, 0]], 3
815
+ ];
816
+ var CognitoUserPoolConfigurationItem$ = [3, n0, _CUPCI,
817
+ 0,
818
+ [_uPA, _cI, _i, _gC],
819
+ [0, [() => ClientIds, 0], 0, [() => CognitoGroupConfigurationItem$, 0]], 3
820
+ ];
821
+ var CreateIdentitySourceInput$ = [3, n0, _CISI,
822
+ 0,
823
+ [_pSI, _conf, _cT, _pET],
824
+ [0, [() => Configuration$, 0], [0, 4], [() => PrincipalEntityType, 0]], 2
825
+ ];
826
+ var CreateIdentitySourceOutput$ = [3, n0, _CISO,
827
+ 0,
828
+ [_cD, _iSI, _lUD, _pSI],
829
+ [5, 0, 5, 0], 4
830
+ ];
831
+ var CreatePolicyInput$ = [3, n0, _CPI,
832
+ 0,
833
+ [_pSI, _d, _cT, _n],
834
+ [0, [() => PolicyDefinition$, 0], [0, 4], 0], 2
835
+ ];
836
+ var CreatePolicyOutput$ = [3, n0, _CPO,
837
+ 0,
838
+ [_pSI, _pI, _pT, _cD, _lUD, _p, _reso, _ac, _ef],
839
+ [0, 0, 0, 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0], 5
840
+ ];
841
+ var CreatePolicyStoreAliasInput$ = [3, n0, _CPSAI,
842
+ 0,
843
+ [_aN, _pSI],
844
+ [0, 0], 2
845
+ ];
846
+ var CreatePolicyStoreAliasOutput$ = [3, n0, _CPSAO,
847
+ 0,
848
+ [_aN, _pSI, _aA, _cA],
849
+ [0, 0, 0, 5], 4
850
+ ];
851
+ var CreatePolicyStoreInput$ = [3, n0, _CPSI,
852
+ 0,
853
+ [_vS, _cT, _des, _dPe, _eS, _t],
854
+ [() => ValidationSettings$, [0, 4], [() => PolicyStoreDescription, 0], 0, () => EncryptionSettings$, 128 | 0], 1
855
+ ];
856
+ var CreatePolicyStoreOutput$ = [3, n0, _CPSO,
857
+ 0,
858
+ [_pSI, _ar, _cD, _lUD],
859
+ [0, 0, 5, 5], 4
860
+ ];
861
+ var CreatePolicyTemplateInput$ = [3, n0, _CPTI,
862
+ 0,
863
+ [_pSI, _st, _cT, _des, _n],
864
+ [0, [() => PolicyStatement, 0], [0, 4], [() => PolicyTemplateDescription, 0], 0], 2
865
+ ];
866
+ var CreatePolicyTemplateOutput$ = [3, n0, _CPTO,
867
+ 0,
868
+ [_pSI, _pTI, _cD, _lUD],
869
+ [0, 0, 5, 5], 4
870
+ ];
871
+ var DeleteIdentitySourceInput$ = [3, n0, _DISI,
872
+ 0,
873
+ [_pSI, _iSI],
874
+ [0, 0], 2
875
+ ];
876
+ var DeleteIdentitySourceOutput$ = [3, n0, _DISO,
877
+ 0,
878
+ [],
879
+ []
880
+ ];
881
+ var DeletePolicyInput$ = [3, n0, _DPI,
882
+ 0,
883
+ [_pSI, _pI],
884
+ [0, 0], 2
885
+ ];
886
+ var DeletePolicyOutput$ = [3, n0, _DPO,
887
+ 0,
888
+ [],
889
+ []
890
+ ];
891
+ var DeletePolicyStoreAliasInput$ = [3, n0, _DPSAI,
892
+ 0,
893
+ [_aN, _dM],
894
+ [0, 0], 1
895
+ ];
896
+ var DeletePolicyStoreAliasOutput$ = [3, n0, _DPSAO,
897
+ 0,
898
+ [],
899
+ []
900
+ ];
901
+ var DeletePolicyStoreInput$ = [3, n0, _DPSI,
902
+ 0,
903
+ [_pSI],
904
+ [0], 1
905
+ ];
906
+ var DeletePolicyStoreOutput$ = [3, n0, _DPSO,
907
+ 0,
908
+ [],
909
+ []
910
+ ];
911
+ var DeletePolicyTemplateInput$ = [3, n0, _DPTI,
912
+ 0,
913
+ [_pSI, _pTI],
914
+ [0, 0], 2
915
+ ];
916
+ var DeletePolicyTemplateOutput$ = [3, n0, _DPTO,
917
+ 0,
918
+ [],
919
+ []
920
+ ];
921
+ var DeterminingPolicyItem$ = [3, n0, _DPIe,
922
+ 0,
923
+ [_pI],
924
+ [0], 1
925
+ ];
926
+ var EntityIdentifier$ = [3, n0, _EIn,
927
+ 0,
928
+ [_eT, _eI],
929
+ [[() => EntityType, 0], [() => EntityId, 0]], 2
930
+ ];
931
+ var EntityItem$ = [3, n0, _EInt,
932
+ 0,
933
+ [_id, _at, _pa, _t],
934
+ [[() => EntityIdentifier$, 0], [() => EntityAttributes, 0], [() => ParentList, 0], [() => EntityCedarTags, 0]], 1
935
+ ];
936
+ var EvaluationErrorItem$ = [3, n0, _EEI,
937
+ 8,
938
+ [_eD],
939
+ [0], 1
940
+ ];
941
+ var GetIdentitySourceInput$ = [3, n0, _GISI,
942
+ 0,
943
+ [_pSI, _iSI],
944
+ [0, 0], 2
945
+ ];
946
+ var GetIdentitySourceOutput$ = [3, n0, _GISO,
947
+ 0,
948
+ [_cD, _iSI, _lUD, _pSI, _pET, _det, _conf],
949
+ [5, 0, 5, 0, [() => PrincipalEntityType, 0], [() => IdentitySourceDetails$, 0], [() => ConfigurationDetail$, 0]], 5
950
+ ];
951
+ var GetPolicyInput$ = [3, n0, _GPI,
952
+ 0,
953
+ [_pSI, _pI],
954
+ [0, 0], 2
955
+ ];
956
+ var GetPolicyOutput$ = [3, n0, _GPO,
957
+ 0,
958
+ [_pSI, _pI, _pT, _d, _cD, _lUD, _p, _reso, _ac, _ef, _n],
959
+ [0, 0, 0, [() => PolicyDefinitionDetail$, 0], 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0, 0], 6
960
+ ];
961
+ var GetPolicyStoreAliasInput$ = [3, n0, _GPSAI,
962
+ 0,
963
+ [_aN],
964
+ [0], 1
965
+ ];
966
+ var GetPolicyStoreAliasOutput$ = [3, n0, _GPSAO,
967
+ 0,
968
+ [_aN, _pSI, _aA, _cA, _sta],
969
+ [0, 0, 0, 5, 0], 5
970
+ ];
971
+ var GetPolicyStoreInput$ = [3, n0, _GPSI,
972
+ 0,
973
+ [_pSI, _t],
974
+ [0, 2], 1
975
+ ];
976
+ var GetPolicyStoreOutput$ = [3, n0, _GPSO,
977
+ 0,
978
+ [_pSI, _ar, _vS, _cD, _lUD, _des, _dPe, _eSn, _cV, _t],
979
+ [0, 0, () => ValidationSettings$, 5, 5, [() => PolicyStoreDescription, 0], 0, () => EncryptionState$, 0, 128 | 0], 5
980
+ ];
981
+ var GetPolicyTemplateInput$ = [3, n0, _GPTI,
982
+ 0,
983
+ [_pSI, _pTI],
984
+ [0, 0], 2
985
+ ];
986
+ var GetPolicyTemplateOutput$ = [3, n0, _GPTO,
987
+ 0,
988
+ [_pSI, _pTI, _st, _cD, _lUD, _des, _n],
989
+ [0, 0, [() => PolicyStatement, 0], 5, 5, [() => PolicyTemplateDescription, 0], 0], 5
990
+ ];
991
+ var GetSchemaInput$ = [3, n0, _GSI,
992
+ 0,
993
+ [_pSI],
994
+ [0], 1
995
+ ];
996
+ var GetSchemaOutput$ = [3, n0, _GSO,
997
+ 0,
998
+ [_pSI, _sc, _cD, _lUD, _na],
999
+ [0, [() => SchemaJson, 0], 5, 5, [() => NamespaceList, 0]], 4
1000
+ ];
1001
+ var IdentitySourceDetails$ = [3, n0, _ISD,
1002
+ 0,
1003
+ [_cI, _uPA, _dU, _oII],
1004
+ [[() => ClientIds, 0], 0, 0, 0]
1005
+ ];
1006
+ var IdentitySourceFilter$ = [3, n0, _ISF,
1007
+ 0,
1008
+ [_pET],
1009
+ [[() => PrincipalEntityType, 0]]
1010
+ ];
1011
+ var IdentitySourceItem$ = [3, n0, _ISI,
1012
+ 0,
1013
+ [_cD, _iSI, _lUD, _pSI, _pET, _det, _conf],
1014
+ [5, 0, 5, 0, [() => PrincipalEntityType, 0], [() => IdentitySourceItemDetails$, 0], [() => ConfigurationItem$, 0]], 5
1015
+ ];
1016
+ var IdentitySourceItemDetails$ = [3, n0, _ISID,
1017
+ 0,
1018
+ [_cI, _uPA, _dU, _oII],
1019
+ [[() => ClientIds, 0], 0, 0, 0]
1020
+ ];
1021
+ var IsAuthorizedInput$ = [3, n0, _IAI,
1022
+ 0,
1023
+ [_pSI, _p, _a, _reso, _con, _en],
1024
+ [0, [() => EntityIdentifier$, 0], [() => ActionIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ContextDefinition$, 0], [() => EntitiesDefinition$, 0]], 1
1025
+ ];
1026
+ var IsAuthorizedOutput$ = [3, n0, _IAO,
1027
+ 0,
1028
+ [_de, _dP, _er],
1029
+ [0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0]], 3
1030
+ ];
1031
+ var IsAuthorizedWithTokenInput$ = [3, n0, _IAWTI,
1032
+ 0,
1033
+ [_pSI, _iT, _aTc, _a, _reso, _con, _en],
1034
+ [0, [() => Token, 0], [() => Token, 0], [() => ActionIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ContextDefinition$, 0], [() => EntitiesDefinition$, 0]], 1
1035
+ ];
1036
+ var IsAuthorizedWithTokenOutput$ = [3, n0, _IAWTO,
1037
+ 0,
1038
+ [_de, _dP, _er, _p],
1039
+ [0, () => DeterminingPolicyList, [() => EvaluationErrorList, 0], [() => EntityIdentifier$, 0]], 3
1040
+ ];
1041
+ var KmsEncryptionSettings$ = [3, n0, _KES,
1042
+ 0,
1043
+ [_k, _eC],
1044
+ [0, 128 | 0], 1
1045
+ ];
1046
+ var KmsEncryptionState$ = [3, n0, _KESm,
1047
+ 0,
1048
+ [_k, _eC],
1049
+ [0, 128 | 0], 2
1050
+ ];
1051
+ var ListIdentitySourcesInput$ = [3, n0, _LISI,
1052
+ 0,
1053
+ [_pSI, _nT, _mR, _f],
1054
+ [0, 0, 1, [() => IdentitySourceFilters, 0]], 1
1055
+ ];
1056
+ var ListIdentitySourcesOutput$ = [3, n0, _LISO,
1057
+ 0,
1058
+ [_iS, _nT],
1059
+ [[() => IdentitySources, 0], 0], 1
1060
+ ];
1061
+ var ListPoliciesInput$ = [3, n0, _LPI,
1062
+ 0,
1063
+ [_pSI, _nT, _mR, _fi],
1064
+ [0, 0, 1, [() => PolicyFilter$, 0]], 1
1065
+ ];
1066
+ var ListPoliciesOutput$ = [3, n0, _LPO,
1067
+ 0,
1068
+ [_po, _nT],
1069
+ [[() => PolicyList, 0], 0], 1
1070
+ ];
1071
+ var ListPolicyStoreAliasesInput$ = [3, n0, _LPSAI,
1072
+ 0,
1073
+ [_nT, _mR, _fi],
1074
+ [0, 1, () => PolicyStoreAliasFilter$]
1075
+ ];
1076
+ var ListPolicyStoreAliasesOutput$ = [3, n0, _LPSAO,
1077
+ 0,
1078
+ [_pSA, _nT],
1079
+ [() => PolicyStoreAliasList, 0], 1
1080
+ ];
1081
+ var ListPolicyStoresInput$ = [3, n0, _LPSI,
1082
+ 0,
1083
+ [_nT, _mR],
1084
+ [0, 1]
1085
+ ];
1086
+ var ListPolicyStoresOutput$ = [3, n0, _LPSO,
1087
+ 0,
1088
+ [_pS, _nT],
1089
+ [[() => PolicyStoreList, 0], 0], 1
1090
+ ];
1091
+ var ListPolicyTemplatesInput$ = [3, n0, _LPTI,
1092
+ 0,
1093
+ [_pSI, _nT, _mR],
1094
+ [0, 0, 1], 1
1095
+ ];
1096
+ var ListPolicyTemplatesOutput$ = [3, n0, _LPTO,
1097
+ 0,
1098
+ [_pTo, _nT],
1099
+ [[() => PolicyTemplatesList, 0], 0], 1
1100
+ ];
1101
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI,
1102
+ 0,
1103
+ [_rA],
1104
+ [0], 1
1105
+ ];
1106
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
1107
+ 0,
1108
+ [_t],
1109
+ [128 | 0]
1110
+ ];
1111
+ var OpenIdConnectAccessTokenConfiguration$ = [3, n0, _OICATC,
1112
+ 0,
1113
+ [_pIC, _au],
1114
+ [[() => Claim, 0], 64 | 0]
1115
+ ];
1116
+ var OpenIdConnectAccessTokenConfigurationDetail$ = [3, n0, _OICATCD,
1117
+ 0,
1118
+ [_pIC, _au],
1119
+ [[() => Claim, 0], 64 | 0]
1120
+ ];
1121
+ var OpenIdConnectAccessTokenConfigurationItem$ = [3, n0, _OICATCI,
1122
+ 0,
1123
+ [_pIC, _au],
1124
+ [[() => Claim, 0], 64 | 0]
1125
+ ];
1126
+ var OpenIdConnectConfiguration$ = [3, n0, _OICC,
1127
+ 0,
1128
+ [_i, _tS, _eIP, _gC],
1129
+ [0, [() => OpenIdConnectTokenSelection$, 0], [() => EntityIdPrefix, 0], [() => OpenIdConnectGroupConfiguration$, 0]], 2
1130
+ ];
1131
+ var OpenIdConnectConfigurationDetail$ = [3, n0, _OICCD,
1132
+ 0,
1133
+ [_i, _tS, _eIP, _gC],
1134
+ [0, [() => OpenIdConnectTokenSelectionDetail$, 0], [() => EntityIdPrefix, 0], [() => OpenIdConnectGroupConfigurationDetail$, 0]], 2
1135
+ ];
1136
+ var OpenIdConnectConfigurationItem$ = [3, n0, _OICCI,
1137
+ 0,
1138
+ [_i, _tS, _eIP, _gC],
1139
+ [0, [() => OpenIdConnectTokenSelectionItem$, 0], [() => EntityIdPrefix, 0], [() => OpenIdConnectGroupConfigurationItem$, 0]], 2
1140
+ ];
1141
+ var OpenIdConnectGroupConfiguration$ = [3, n0, _OICGC,
1142
+ 0,
1143
+ [_gCr, _gET],
1144
+ [[() => Claim, 0], [() => GroupEntityType, 0]], 2
1145
+ ];
1146
+ var OpenIdConnectGroupConfigurationDetail$ = [3, n0, _OICGCD,
1147
+ 0,
1148
+ [_gCr, _gET],
1149
+ [[() => Claim, 0], [() => GroupEntityType, 0]], 2
1150
+ ];
1151
+ var OpenIdConnectGroupConfigurationItem$ = [3, n0, _OICGCI,
1152
+ 0,
1153
+ [_gCr, _gET],
1154
+ [[() => Claim, 0], [() => GroupEntityType, 0]], 2
1155
+ ];
1156
+ var OpenIdConnectIdentityTokenConfiguration$ = [3, n0, _OICITC,
1157
+ 0,
1158
+ [_pIC, _cI],
1159
+ [[() => Claim, 0], [() => ClientIds, 0]]
1160
+ ];
1161
+ var OpenIdConnectIdentityTokenConfigurationDetail$ = [3, n0, _OICITCD,
1162
+ 0,
1163
+ [_pIC, _cI],
1164
+ [[() => Claim, 0], [() => ClientIds, 0]]
1165
+ ];
1166
+ var OpenIdConnectIdentityTokenConfigurationItem$ = [3, n0, _OICITCI,
1167
+ 0,
1168
+ [_pIC, _cI],
1169
+ [[() => Claim, 0], [() => ClientIds, 0]]
1170
+ ];
1171
+ var PolicyFilter$ = [3, n0, _PF,
1172
+ 0,
1173
+ [_p, _reso, _pT, _pTI],
1174
+ [[() => EntityReference$, 0], [() => EntityReference$, 0], 0, 0]
1175
+ ];
1176
+ var PolicyItem$ = [3, n0, _PI,
1177
+ 0,
1178
+ [_pSI, _pI, _pT, _d, _cD, _lUD, _p, _reso, _ac, _ef, _n],
1179
+ [0, 0, 0, [() => PolicyDefinitionItem$, 0], 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0, 0], 6
1180
+ ];
1181
+ var PolicyStoreAliasFilter$ = [3, n0, _PSAF,
1182
+ 0,
1183
+ [_pSI],
1184
+ [0]
1185
+ ];
1186
+ var PolicyStoreAliasItem$ = [3, n0, _PSAI,
1187
+ 0,
1188
+ [_aN, _pSI, _aA, _cA, _sta],
1189
+ [0, 0, 0, 5, 0], 5
1190
+ ];
1191
+ var PolicyStoreItem$ = [3, n0, _PSI,
1192
+ 0,
1193
+ [_pSI, _ar, _cD, _lUD, _des],
1194
+ [0, 0, 5, 5, [() => PolicyStoreDescription, 0]], 3
1195
+ ];
1196
+ var PolicyTemplateItem$ = [3, n0, _PTI,
1197
+ 0,
1198
+ [_pSI, _pTI, _cD, _lUD, _des, _n],
1199
+ [0, 0, 5, 5, [() => PolicyTemplateDescription, 0], 0], 4
1200
+ ];
1201
+ var PutSchemaInput$ = [3, n0, _PSIu,
1202
+ 0,
1203
+ [_pSI, _d],
1204
+ [0, [() => SchemaDefinition$, 0]], 2
1205
+ ];
1206
+ var PutSchemaOutput$ = [3, n0, _PSO,
1207
+ 0,
1208
+ [_pSI, _na, _cD, _lUD],
1209
+ [0, [() => NamespaceList, 0], 5, 5], 4
1210
+ ];
1211
+ var ResourceConflict$ = [3, n0, _RC,
1212
+ 0,
1213
+ [_rI, _rT],
1214
+ [0, 0], 2
1215
+ ];
1216
+ var StaticPolicyDefinition$ = [3, n0, _SPDt,
1217
+ 0,
1218
+ [_st, _des],
1219
+ [[() => PolicyStatement, 0], [() => StaticPolicyDescription, 0]], 1
1220
+ ];
1221
+ var StaticPolicyDefinitionDetail$ = [3, n0, _SPDD,
1222
+ 0,
1223
+ [_st, _des],
1224
+ [[() => PolicyStatement, 0], [() => StaticPolicyDescription, 0]], 1
1225
+ ];
1226
+ var StaticPolicyDefinitionItem$ = [3, n0, _SPDI,
1227
+ 0,
1228
+ [_des],
1229
+ [[() => StaticPolicyDescription, 0]]
1230
+ ];
1231
+ var TagResourceInput$ = [3, n0, _TRI,
1232
+ 0,
1233
+ [_rA, _t],
1234
+ [0, 128 | 0], 2
1235
+ ];
1236
+ var TagResourceOutput$ = [3, n0, _TRO,
1237
+ 0,
1238
+ [],
1239
+ []
1240
+ ];
1241
+ var TemplateLinkedPolicyDefinition$ = [3, n0, _TLPD,
1242
+ 0,
1243
+ [_pTI, _p, _reso],
1244
+ [0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0]], 1
1245
+ ];
1246
+ var TemplateLinkedPolicyDefinitionDetail$ = [3, n0, _TLPDD,
1247
+ 0,
1248
+ [_pTI, _p, _reso],
1249
+ [0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0]], 1
1250
+ ];
1251
+ var TemplateLinkedPolicyDefinitionItem$ = [3, n0, _TLPDI,
1252
+ 0,
1253
+ [_pTI, _p, _reso],
1254
+ [0, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0]], 1
1255
+ ];
1256
+ var UntagResourceInput$ = [3, n0, _URI,
1257
+ 0,
1258
+ [_rA, _tK],
1259
+ [0, 64 | 0], 2
1260
+ ];
1261
+ var UntagResourceOutput$ = [3, n0, _URO,
1262
+ 0,
1263
+ [],
1264
+ []
1265
+ ];
1266
+ var UpdateCognitoGroupConfiguration$ = [3, n0, _UCGC,
1267
+ 0,
1268
+ [_gET],
1269
+ [[() => GroupEntityType, 0]], 1
1270
+ ];
1271
+ var UpdateCognitoUserPoolConfiguration$ = [3, n0, _UCUPC,
1272
+ 0,
1273
+ [_uPA, _cI, _gC],
1274
+ [0, [() => ClientIds, 0], [() => UpdateCognitoGroupConfiguration$, 0]], 1
1275
+ ];
1276
+ var UpdateIdentitySourceInput$ = [3, n0, _UISI,
1277
+ 0,
1278
+ [_pSI, _iSI, _uC, _pET],
1279
+ [0, 0, [() => UpdateConfiguration$, 0], [() => PrincipalEntityType, 0]], 3
1280
+ ];
1281
+ var UpdateIdentitySourceOutput$ = [3, n0, _UISO,
1282
+ 0,
1283
+ [_cD, _iSI, _lUD, _pSI],
1284
+ [5, 0, 5, 0], 4
1285
+ ];
1286
+ var UpdateOpenIdConnectAccessTokenConfiguration$ = [3, n0, _UOICATC,
1287
+ 0,
1288
+ [_pIC, _au],
1289
+ [[() => Claim, 0], 64 | 0]
1290
+ ];
1291
+ var UpdateOpenIdConnectConfiguration$ = [3, n0, _UOICC,
1292
+ 0,
1293
+ [_i, _tS, _eIP, _gC],
1294
+ [0, [() => UpdateOpenIdConnectTokenSelection$, 0], [() => EntityIdPrefix, 0], [() => UpdateOpenIdConnectGroupConfiguration$, 0]], 2
1295
+ ];
1296
+ var UpdateOpenIdConnectGroupConfiguration$ = [3, n0, _UOICGC,
1297
+ 0,
1298
+ [_gCr, _gET],
1299
+ [[() => Claim, 0], [() => GroupEntityType, 0]], 2
1300
+ ];
1301
+ var UpdateOpenIdConnectIdentityTokenConfiguration$ = [3, n0, _UOICITC,
1302
+ 0,
1303
+ [_pIC, _cI],
1304
+ [[() => Claim, 0], [() => ClientIds, 0]]
1305
+ ];
1306
+ var UpdatePolicyInput$ = [3, n0, _UPI,
1307
+ 0,
1308
+ [_pSI, _pI, _d, _n],
1309
+ [0, 0, [() => UpdatePolicyDefinition$, 0], 0], 2
1310
+ ];
1311
+ var UpdatePolicyOutput$ = [3, n0, _UPO,
1312
+ 0,
1313
+ [_pSI, _pI, _pT, _cD, _lUD, _p, _reso, _ac, _ef],
1314
+ [0, 0, 0, 5, 5, [() => EntityIdentifier$, 0], [() => EntityIdentifier$, 0], [() => ActionIdentifierList, 0], 0], 5
1315
+ ];
1316
+ var UpdatePolicyStoreInput$ = [3, n0, _UPSI,
1317
+ 0,
1318
+ [_pSI, _vS, _dPe, _des],
1319
+ [0, () => ValidationSettings$, 0, [() => PolicyStoreDescription, 0]], 2
1320
+ ];
1321
+ var UpdatePolicyStoreOutput$ = [3, n0, _UPSO,
1322
+ 0,
1323
+ [_pSI, _ar, _cD, _lUD],
1324
+ [0, 0, 5, 5], 4
1325
+ ];
1326
+ var UpdatePolicyTemplateInput$ = [3, n0, _UPTI,
1327
+ 0,
1328
+ [_pSI, _pTI, _st, _des, _n],
1329
+ [0, 0, [() => PolicyStatement, 0], [() => PolicyTemplateDescription, 0], 0], 3
1330
+ ];
1331
+ var UpdatePolicyTemplateOutput$ = [3, n0, _UPTO,
1332
+ 0,
1333
+ [_pSI, _pTI, _cD, _lUD],
1334
+ [0, 0, 5, 5], 4
1335
+ ];
1336
+ var UpdateStaticPolicyDefinition$ = [3, n0, _USPD,
1337
+ 0,
1338
+ [_st, _des],
1339
+ [[() => PolicyStatement, 0], [() => StaticPolicyDescription, 0]], 1
1340
+ ];
1341
+ var ValidationExceptionField$ = [3, n0, _VEF,
1342
+ 0,
1343
+ [_pat, _m],
1344
+ [0, 0], 2
1345
+ ];
1346
+ var ValidationSettings$ = [3, n0, _VS,
1347
+ 0,
1348
+ [_mo],
1349
+ [0], 1
1350
+ ];
1351
+ var __Unit = "unit";
1352
+ var ActionIdentifierList = [1, n0, _AIL,
1353
+ 0, [() => ActionIdentifier$,
1354
+ 0]
1355
+ ];
1356
+ var BatchGetPolicyErrorList = [1, n0, _BGPEL,
1357
+ 0, () => BatchGetPolicyErrorItem$
1358
+ ];
1359
+ var BatchGetPolicyInputList = [1, n0, _BGPIL,
1360
+ 0, () => BatchGetPolicyInputItem$
1361
+ ];
1362
+ var BatchGetPolicyOutputList = [1, n0, _BGPOL,
1363
+ 0, [() => BatchGetPolicyOutputItem$,
1364
+ 0]
1365
+ ];
1366
+ var BatchIsAuthorizedInputList = [1, n0, _BIAIL,
1367
+ 0, [() => BatchIsAuthorizedInputItem$,
1368
+ 0]
1369
+ ];
1370
+ var BatchIsAuthorizedOutputList = [1, n0, _BIAOL,
1371
+ 0, [() => BatchIsAuthorizedOutputItem$,
1372
+ 0]
1373
+ ];
1374
+ var BatchIsAuthorizedWithTokenInputList = [1, n0, _BIAWTIL,
1375
+ 0, [() => BatchIsAuthorizedWithTokenInputItem$,
1376
+ 0]
1377
+ ];
1378
+ var BatchIsAuthorizedWithTokenOutputList = [1, n0, _BIAWTOL,
1379
+ 0, [() => BatchIsAuthorizedWithTokenOutputItem$,
1380
+ 0]
1381
+ ];
1382
+ var CedarTagSetAttribute = [1, n0, _CTSA,
1383
+ 0, [() => CedarTagValue$,
1384
+ 0]
1385
+ ];
1386
+ var ClientIds = [1, n0, _CIl,
1387
+ 0, [() => ClientId,
1388
+ 0]
1389
+ ];
1390
+ var DeterminingPolicyList = [1, n0, _DPL,
1391
+ 0, () => DeterminingPolicyItem$
1392
+ ];
1393
+ var EntityList = [1, n0, _EL,
1394
+ 0, [() => EntityItem$,
1395
+ 0]
1396
+ ];
1397
+ var EvaluationErrorList = [1, n0, _EEL,
1398
+ 0, [() => EvaluationErrorItem$,
1399
+ 0]
1400
+ ];
1401
+ var IdentitySourceFilters = [1, n0, _ISFd,
1402
+ 0, [() => IdentitySourceFilter$,
1403
+ 0]
1404
+ ];
1405
+ var IdentitySources = [1, n0, _IS,
1406
+ 0, [() => IdentitySourceItem$,
1407
+ 0]
1408
+ ];
1409
+ var NamespaceList = [1, n0, _NL,
1410
+ 0, [() => Namespace,
1411
+ 0]
1412
+ ];
1413
+ var ParentList = [1, n0, _PL,
1414
+ 0, [() => EntityIdentifier$,
1415
+ 0]
1416
+ ];
1417
+ var PolicyList = [1, n0, _PLo,
1418
+ 0, [() => PolicyItem$,
1419
+ 0]
1420
+ ];
1421
+ var PolicyStoreAliasList = [1, n0, _PSAL,
1422
+ 0, () => PolicyStoreAliasItem$
1423
+ ];
1424
+ var PolicyStoreList = [1, n0, _PSL,
1425
+ 0, [() => PolicyStoreItem$,
1426
+ 0]
1427
+ ];
1428
+ var PolicyTemplatesList = [1, n0, _PTL,
1429
+ 0, [() => PolicyTemplateItem$,
1430
+ 0]
1431
+ ];
1432
+ var ResourceConflictList = [1, n0, _RCL,
1433
+ 0, () => ResourceConflict$
1434
+ ];
1435
+ var SetAttribute = [1, n0, _SAe,
1436
+ 0, [() => AttributeValue$,
1437
+ 0]
1438
+ ];
1439
+ var ValidationExceptionFieldList = [1, n0, _VEFL,
1440
+ 0, () => ValidationExceptionField$
1441
+ ];
1442
+ var CedarTagRecordAttribute = [2, n0, _CTRA,
1443
+ 0, [0,
1444
+ 0],
1445
+ [() => CedarTagValue$,
1446
+ 0]
1447
+ ];
1448
+ var ContextMap = [2, n0, _CM,
1449
+ 8, [0,
1450
+ 0],
1451
+ [() => AttributeValue$,
1452
+ 0]
1453
+ ];
1454
+ var EntityAttributes = [2, n0, _EA,
1455
+ 0, [0,
1456
+ 0],
1457
+ [() => AttributeValue$,
1458
+ 0]
1459
+ ];
1460
+ var EntityCedarTags = [2, n0, _ECT,
1461
+ 0, [0,
1462
+ 0],
1463
+ [() => CedarTagValue$,
1464
+ 0]
1465
+ ];
1466
+ var RecordAttribute = [2, n0, _RA,
1467
+ 0, [0,
1468
+ 0],
1469
+ [() => AttributeValue$,
1470
+ 0]
1471
+ ];
1472
+ var AttributeValue$ = [4, n0, _AV,
1473
+ 0,
1474
+ [_b, _eIn, _l, _str, _set, _rec, _ip, _dec, _da, _du],
1475
+ [[() => BooleanAttribute, 0], [() => EntityIdentifier$, 0], [() => LongAttribute, 0], [() => StringAttribute, 0], [() => SetAttribute, 0], [() => RecordAttribute, 0], [() => IpAddr, 0], [() => Decimal, 0], [() => DatetimeAttribute, 0], [() => Duration, 0]]
1476
+ ];
1477
+ var CedarTagValue$ = [4, n0, _CTV,
1478
+ 0,
1479
+ [_b, _eIn, _l, _str, _set, _rec, _ip, _dec, _da, _du],
1480
+ [[() => BooleanAttribute, 0], [() => EntityIdentifier$, 0], [() => LongAttribute, 0], [() => StringAttribute, 0], [() => CedarTagSetAttribute, 0], [() => CedarTagRecordAttribute, 0], [() => IpAddr, 0], [() => Decimal, 0], [() => DatetimeAttribute, 0], [() => Duration, 0]]
1481
+ ];
1482
+ var Configuration$ = [4, n0, _Co,
1483
+ 0,
1484
+ [_cUPC, _oICC],
1485
+ [[() => CognitoUserPoolConfiguration$, 0], [() => OpenIdConnectConfiguration$, 0]]
1486
+ ];
1487
+ var ConfigurationDetail$ = [4, n0, _CD,
1488
+ 0,
1489
+ [_cUPC, _oICC],
1490
+ [[() => CognitoUserPoolConfigurationDetail$, 0], [() => OpenIdConnectConfigurationDetail$, 0]]
1491
+ ];
1492
+ var ConfigurationItem$ = [4, n0, _CIo,
1493
+ 0,
1494
+ [_cUPC, _oICC],
1495
+ [[() => CognitoUserPoolConfigurationItem$, 0], [() => OpenIdConnectConfigurationItem$, 0]]
1496
+ ];
1497
+ var ContextDefinition$ = [4, n0, _CDo,
1498
+ 0,
1499
+ [_cM, _cJ],
1500
+ [[() => ContextMap, 0], [() => CedarJson, 0]]
1501
+ ];
1502
+ var EncryptionSettings$ = [4, n0, _ES,
1503
+ 0,
1504
+ [_kES, _def],
1505
+ [() => KmsEncryptionSettings$, () => __Unit]
1506
+ ];
1507
+ var EncryptionState$ = [4, n0, _ESn,
1508
+ 0,
1509
+ [_kESm, _def],
1510
+ [() => KmsEncryptionState$, () => __Unit]
1511
+ ];
1512
+ var EntitiesDefinition$ = [4, n0, _ED,
1513
+ 0,
1514
+ [_eL, _cJ],
1515
+ [[() => EntityList, 0], [() => CedarJson, 0]]
1516
+ ];
1517
+ var EntityReference$ = [4, n0, _ER,
1518
+ 0,
1519
+ [_u, _id],
1520
+ [2, [() => EntityIdentifier$, 0]]
1521
+ ];
1522
+ var OpenIdConnectTokenSelection$ = [4, n0, _OICTS,
1523
+ 0,
1524
+ [_aTO, _iTO],
1525
+ [[() => OpenIdConnectAccessTokenConfiguration$, 0], [() => OpenIdConnectIdentityTokenConfiguration$, 0]]
1526
+ ];
1527
+ var OpenIdConnectTokenSelectionDetail$ = [4, n0, _OICTSD,
1528
+ 0,
1529
+ [_aTO, _iTO],
1530
+ [[() => OpenIdConnectAccessTokenConfigurationDetail$, 0], [() => OpenIdConnectIdentityTokenConfigurationDetail$, 0]]
1531
+ ];
1532
+ var OpenIdConnectTokenSelectionItem$ = [4, n0, _OICTSI,
1533
+ 0,
1534
+ [_aTO, _iTO],
1535
+ [[() => OpenIdConnectAccessTokenConfigurationItem$, 0], [() => OpenIdConnectIdentityTokenConfigurationItem$, 0]]
1536
+ ];
1537
+ var PolicyDefinition$ = [4, n0, _PD,
1538
+ 0,
1539
+ [_stat, _tL],
1540
+ [[() => StaticPolicyDefinition$, 0], [() => TemplateLinkedPolicyDefinition$, 0]]
1541
+ ];
1542
+ var PolicyDefinitionDetail$ = [4, n0, _PDD,
1543
+ 0,
1544
+ [_stat, _tL],
1545
+ [[() => StaticPolicyDefinitionDetail$, 0], [() => TemplateLinkedPolicyDefinitionDetail$, 0]]
1546
+ ];
1547
+ var PolicyDefinitionItem$ = [4, n0, _PDI,
1548
+ 0,
1549
+ [_stat, _tL],
1550
+ [[() => StaticPolicyDefinitionItem$, 0], [() => TemplateLinkedPolicyDefinitionItem$, 0]]
1551
+ ];
1552
+ var SchemaDefinition$ = [4, n0, _SD,
1553
+ 0,
1554
+ [_cJ],
1555
+ [[() => SchemaJson, 0]]
1556
+ ];
1557
+ var UpdateConfiguration$ = [4, n0, _UC,
1558
+ 0,
1559
+ [_cUPC, _oICC],
1560
+ [[() => UpdateCognitoUserPoolConfiguration$, 0], [() => UpdateOpenIdConnectConfiguration$, 0]]
1561
+ ];
1562
+ var UpdateOpenIdConnectTokenSelection$ = [4, n0, _UOICTS,
1563
+ 0,
1564
+ [_aTO, _iTO],
1565
+ [[() => UpdateOpenIdConnectAccessTokenConfiguration$, 0], [() => UpdateOpenIdConnectIdentityTokenConfiguration$, 0]]
1566
+ ];
1567
+ var UpdatePolicyDefinition$ = [4, n0, _UPD,
1568
+ 0,
1569
+ [_stat],
1570
+ [[() => UpdateStaticPolicyDefinition$, 0]]
1571
+ ];
1572
+ var BatchGetPolicy$ = [9, n0, _BGP,
1573
+ 0, () => BatchGetPolicyInput$, () => BatchGetPolicyOutput$
1574
+ ];
1575
+ var BatchIsAuthorized$ = [9, n0, _BIA,
1576
+ 0, () => BatchIsAuthorizedInput$, () => BatchIsAuthorizedOutput$
1577
+ ];
1578
+ var BatchIsAuthorizedWithToken$ = [9, n0, _BIAWT,
1579
+ 0, () => BatchIsAuthorizedWithTokenInput$, () => BatchIsAuthorizedWithTokenOutput$
1580
+ ];
1581
+ var CreateIdentitySource$ = [9, n0, _CIS,
1582
+ 2, () => CreateIdentitySourceInput$, () => CreateIdentitySourceOutput$
1583
+ ];
1584
+ var CreatePolicy$ = [9, n0, _CP,
1585
+ 2, () => CreatePolicyInput$, () => CreatePolicyOutput$
1586
+ ];
1587
+ var CreatePolicyStore$ = [9, n0, _CPS,
1588
+ 2, () => CreatePolicyStoreInput$, () => CreatePolicyStoreOutput$
1589
+ ];
1590
+ var CreatePolicyStoreAlias$ = [9, n0, _CPSA,
1591
+ 2, () => CreatePolicyStoreAliasInput$, () => CreatePolicyStoreAliasOutput$
1592
+ ];
1593
+ var CreatePolicyTemplate$ = [9, n0, _CPT,
1594
+ 2, () => CreatePolicyTemplateInput$, () => CreatePolicyTemplateOutput$
1595
+ ];
1596
+ var DeleteIdentitySource$ = [9, n0, _DIS,
1597
+ 2, () => DeleteIdentitySourceInput$, () => DeleteIdentitySourceOutput$
1598
+ ];
1599
+ var DeletePolicy$ = [9, n0, _DP,
1600
+ 2, () => DeletePolicyInput$, () => DeletePolicyOutput$
1601
+ ];
1602
+ var DeletePolicyStore$ = [9, n0, _DPS,
1603
+ 2, () => DeletePolicyStoreInput$, () => DeletePolicyStoreOutput$
1604
+ ];
1605
+ var DeletePolicyStoreAlias$ = [9, n0, _DPSA,
1606
+ 2, () => DeletePolicyStoreAliasInput$, () => DeletePolicyStoreAliasOutput$
1607
+ ];
1608
+ var DeletePolicyTemplate$ = [9, n0, _DPT,
1609
+ 2, () => DeletePolicyTemplateInput$, () => DeletePolicyTemplateOutput$
1610
+ ];
1611
+ var GetIdentitySource$ = [9, n0, _GIS,
1612
+ 0, () => GetIdentitySourceInput$, () => GetIdentitySourceOutput$
1613
+ ];
1614
+ var GetPolicy$ = [9, n0, _GP,
1615
+ 0, () => GetPolicyInput$, () => GetPolicyOutput$
1616
+ ];
1617
+ var GetPolicyStore$ = [9, n0, _GPS,
1618
+ 0, () => GetPolicyStoreInput$, () => GetPolicyStoreOutput$
1619
+ ];
1620
+ var GetPolicyStoreAlias$ = [9, n0, _GPSA,
1621
+ 0, () => GetPolicyStoreAliasInput$, () => GetPolicyStoreAliasOutput$
1622
+ ];
1623
+ var GetPolicyTemplate$ = [9, n0, _GPT,
1624
+ 0, () => GetPolicyTemplateInput$, () => GetPolicyTemplateOutput$
1625
+ ];
1626
+ var GetSchema$ = [9, n0, _GS,
1627
+ 0, () => GetSchemaInput$, () => GetSchemaOutput$
1628
+ ];
1629
+ var IsAuthorized$ = [9, n0, _IAs,
1630
+ 0, () => IsAuthorizedInput$, () => IsAuthorizedOutput$
1631
+ ];
1632
+ var IsAuthorizedWithToken$ = [9, n0, _IAWT,
1633
+ 0, () => IsAuthorizedWithTokenInput$, () => IsAuthorizedWithTokenOutput$
1634
+ ];
1635
+ var ListIdentitySources$ = [9, n0, _LIS,
1636
+ 0, () => ListIdentitySourcesInput$, () => ListIdentitySourcesOutput$
1637
+ ];
1638
+ var ListPolicies$ = [9, n0, _LP,
1639
+ 0, () => ListPoliciesInput$, () => ListPoliciesOutput$
1640
+ ];
1641
+ var ListPolicyStoreAliases$ = [9, n0, _LPSA,
1642
+ 0, () => ListPolicyStoreAliasesInput$, () => ListPolicyStoreAliasesOutput$
1643
+ ];
1644
+ var ListPolicyStores$ = [9, n0, _LPS,
1645
+ 0, () => ListPolicyStoresInput$, () => ListPolicyStoresOutput$
1646
+ ];
1647
+ var ListPolicyTemplates$ = [9, n0, _LPT,
1648
+ 0, () => ListPolicyTemplatesInput$, () => ListPolicyTemplatesOutput$
1649
+ ];
1650
+ var ListTagsForResource$ = [9, n0, _LTFR,
1651
+ 0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
1652
+ ];
1653
+ var PutSchema$ = [9, n0, _PSu,
1654
+ 2, () => PutSchemaInput$, () => PutSchemaOutput$
1655
+ ];
1656
+ var TagResource$ = [9, n0, _TR,
1657
+ 0, () => TagResourceInput$, () => TagResourceOutput$
1658
+ ];
1659
+ var UntagResource$ = [9, n0, _UR,
1660
+ 0, () => UntagResourceInput$, () => UntagResourceOutput$
1661
+ ];
1662
+ var UpdateIdentitySource$ = [9, n0, _UIS,
1663
+ 2, () => UpdateIdentitySourceInput$, () => UpdateIdentitySourceOutput$
1664
+ ];
1665
+ var UpdatePolicy$ = [9, n0, _UP,
1666
+ 2, () => UpdatePolicyInput$, () => UpdatePolicyOutput$
1667
+ ];
1668
+ var UpdatePolicyStore$ = [9, n0, _UPS,
1669
+ 2, () => UpdatePolicyStoreInput$, () => UpdatePolicyStoreOutput$
1670
+ ];
1671
+ var UpdatePolicyTemplate$ = [9, n0, _UPT,
1672
+ 2, () => UpdatePolicyTemplateInput$, () => UpdatePolicyTemplateOutput$
1673
+ ];
1674
+
1675
+ const getRuntimeConfig$1 = (config) => {
1676
+ return {
1677
+ apiVersion: "2021-12-01",
1678
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1679
+ base64Encoder: config?.base64Encoder ?? toBase64,
1680
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1681
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1682
+ extensions: config?.extensions ?? [],
1683
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultVerifiedPermissionsHttpAuthSchemeProvider,
1684
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1685
+ {
1686
+ schemeId: "aws.auth#sigv4",
1687
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1688
+ signer: new AwsSdkSigV4Signer(),
1689
+ },
1690
+ ],
1691
+ logger: config?.logger ?? new NoOpLogger(),
1692
+ protocol: config?.protocol ?? AwsJson1_0Protocol,
1693
+ protocolSettings: config?.protocolSettings ?? {
1694
+ defaultNamespace: "com.amazonaws.verifiedpermissions",
1695
+ errorTypeRegistries,
1696
+ version: "2021-12-01",
1697
+ serviceTarget: "VerifiedPermissions",
1698
+ },
1699
+ serviceId: config?.serviceId ?? "VerifiedPermissions",
1700
+ sha256: config?.sha256 ?? Sha256,
1701
+ urlParser: config?.urlParser ?? parseUrl,
1702
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1703
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1704
+ };
1705
+ };
1706
+
1707
+ const getRuntimeConfig = (config) => {
1708
+ emitWarningIfUnsupportedVersion(process.version);
1709
+ const defaultsMode = resolveDefaultsModeConfig(config);
1710
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1711
+ const clientSharedValues = getRuntimeConfig$1(config);
1712
+ emitWarningIfUnsupportedVersion$1(process.version);
1713
+ const loaderConfig = {
1714
+ profile: config?.profile,
1715
+ logger: clientSharedValues.logger,
1716
+ };
1717
+ return {
1718
+ ...clientSharedValues,
1719
+ ...config,
1720
+ runtime: "node",
1721
+ defaultsMode,
1722
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1723
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1724
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1725
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1726
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1727
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1728
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1729
+ retryMode: config?.retryMode ??
1730
+ loadConfig({
1731
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1732
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1733
+ }, config),
1734
+ streamCollector: config?.streamCollector ?? streamCollector,
1735
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1736
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1737
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1738
+ };
1739
+ };
1740
+
34
1741
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1742
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1743
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -625,53 +2332,254 @@ const OpenIdIssuer = {
625
2332
  COGNITO: "COGNITO",
626
2333
  };
627
2334
 
2335
+ exports.AccessDeniedException = AccessDeniedException;
2336
+ exports.AccessDeniedException$ = AccessDeniedException$;
2337
+ exports.ActionIdentifier$ = ActionIdentifier$;
628
2338
  exports.AliasState = AliasState;
2339
+ exports.AttributeValue$ = AttributeValue$;
2340
+ exports.BatchGetPolicy$ = BatchGetPolicy$;
629
2341
  exports.BatchGetPolicyCommand = BatchGetPolicyCommand;
630
2342
  exports.BatchGetPolicyErrorCode = BatchGetPolicyErrorCode;
2343
+ exports.BatchGetPolicyErrorItem$ = BatchGetPolicyErrorItem$;
2344
+ exports.BatchGetPolicyInput$ = BatchGetPolicyInput$;
2345
+ exports.BatchGetPolicyInputItem$ = BatchGetPolicyInputItem$;
2346
+ exports.BatchGetPolicyOutput$ = BatchGetPolicyOutput$;
2347
+ exports.BatchGetPolicyOutputItem$ = BatchGetPolicyOutputItem$;
2348
+ exports.BatchIsAuthorized$ = BatchIsAuthorized$;
631
2349
  exports.BatchIsAuthorizedCommand = BatchIsAuthorizedCommand;
2350
+ exports.BatchIsAuthorizedInput$ = BatchIsAuthorizedInput$;
2351
+ exports.BatchIsAuthorizedInputItem$ = BatchIsAuthorizedInputItem$;
2352
+ exports.BatchIsAuthorizedOutput$ = BatchIsAuthorizedOutput$;
2353
+ exports.BatchIsAuthorizedOutputItem$ = BatchIsAuthorizedOutputItem$;
2354
+ exports.BatchIsAuthorizedWithToken$ = BatchIsAuthorizedWithToken$;
632
2355
  exports.BatchIsAuthorizedWithTokenCommand = BatchIsAuthorizedWithTokenCommand;
2356
+ exports.BatchIsAuthorizedWithTokenInput$ = BatchIsAuthorizedWithTokenInput$;
2357
+ exports.BatchIsAuthorizedWithTokenInputItem$ = BatchIsAuthorizedWithTokenInputItem$;
2358
+ exports.BatchIsAuthorizedWithTokenOutput$ = BatchIsAuthorizedWithTokenOutput$;
2359
+ exports.BatchIsAuthorizedWithTokenOutputItem$ = BatchIsAuthorizedWithTokenOutputItem$;
2360
+ exports.CedarTagValue$ = CedarTagValue$;
633
2361
  exports.CedarVersion = CedarVersion;
2362
+ exports.CognitoGroupConfiguration$ = CognitoGroupConfiguration$;
2363
+ exports.CognitoGroupConfigurationDetail$ = CognitoGroupConfigurationDetail$;
2364
+ exports.CognitoGroupConfigurationItem$ = CognitoGroupConfigurationItem$;
2365
+ exports.CognitoUserPoolConfiguration$ = CognitoUserPoolConfiguration$;
2366
+ exports.CognitoUserPoolConfigurationDetail$ = CognitoUserPoolConfigurationDetail$;
2367
+ exports.CognitoUserPoolConfigurationItem$ = CognitoUserPoolConfigurationItem$;
2368
+ exports.Configuration$ = Configuration$;
2369
+ exports.ConfigurationDetail$ = ConfigurationDetail$;
2370
+ exports.ConfigurationItem$ = ConfigurationItem$;
2371
+ exports.ConflictException = ConflictException;
2372
+ exports.ConflictException$ = ConflictException$;
2373
+ exports.ContextDefinition$ = ContextDefinition$;
2374
+ exports.CreateIdentitySource$ = CreateIdentitySource$;
634
2375
  exports.CreateIdentitySourceCommand = CreateIdentitySourceCommand;
2376
+ exports.CreateIdentitySourceInput$ = CreateIdentitySourceInput$;
2377
+ exports.CreateIdentitySourceOutput$ = CreateIdentitySourceOutput$;
2378
+ exports.CreatePolicy$ = CreatePolicy$;
635
2379
  exports.CreatePolicyCommand = CreatePolicyCommand;
2380
+ exports.CreatePolicyInput$ = CreatePolicyInput$;
2381
+ exports.CreatePolicyOutput$ = CreatePolicyOutput$;
2382
+ exports.CreatePolicyStore$ = CreatePolicyStore$;
2383
+ exports.CreatePolicyStoreAlias$ = CreatePolicyStoreAlias$;
636
2384
  exports.CreatePolicyStoreAliasCommand = CreatePolicyStoreAliasCommand;
2385
+ exports.CreatePolicyStoreAliasInput$ = CreatePolicyStoreAliasInput$;
2386
+ exports.CreatePolicyStoreAliasOutput$ = CreatePolicyStoreAliasOutput$;
637
2387
  exports.CreatePolicyStoreCommand = CreatePolicyStoreCommand;
2388
+ exports.CreatePolicyStoreInput$ = CreatePolicyStoreInput$;
2389
+ exports.CreatePolicyStoreOutput$ = CreatePolicyStoreOutput$;
2390
+ exports.CreatePolicyTemplate$ = CreatePolicyTemplate$;
638
2391
  exports.CreatePolicyTemplateCommand = CreatePolicyTemplateCommand;
2392
+ exports.CreatePolicyTemplateInput$ = CreatePolicyTemplateInput$;
2393
+ exports.CreatePolicyTemplateOutput$ = CreatePolicyTemplateOutput$;
639
2394
  exports.Decision = Decision;
2395
+ exports.DeleteIdentitySource$ = DeleteIdentitySource$;
640
2396
  exports.DeleteIdentitySourceCommand = DeleteIdentitySourceCommand;
2397
+ exports.DeleteIdentitySourceInput$ = DeleteIdentitySourceInput$;
2398
+ exports.DeleteIdentitySourceOutput$ = DeleteIdentitySourceOutput$;
2399
+ exports.DeletePolicy$ = DeletePolicy$;
641
2400
  exports.DeletePolicyCommand = DeletePolicyCommand;
2401
+ exports.DeletePolicyInput$ = DeletePolicyInput$;
2402
+ exports.DeletePolicyOutput$ = DeletePolicyOutput$;
2403
+ exports.DeletePolicyStore$ = DeletePolicyStore$;
2404
+ exports.DeletePolicyStoreAlias$ = DeletePolicyStoreAlias$;
642
2405
  exports.DeletePolicyStoreAliasCommand = DeletePolicyStoreAliasCommand;
2406
+ exports.DeletePolicyStoreAliasInput$ = DeletePolicyStoreAliasInput$;
2407
+ exports.DeletePolicyStoreAliasOutput$ = DeletePolicyStoreAliasOutput$;
643
2408
  exports.DeletePolicyStoreCommand = DeletePolicyStoreCommand;
2409
+ exports.DeletePolicyStoreInput$ = DeletePolicyStoreInput$;
2410
+ exports.DeletePolicyStoreOutput$ = DeletePolicyStoreOutput$;
2411
+ exports.DeletePolicyTemplate$ = DeletePolicyTemplate$;
644
2412
  exports.DeletePolicyTemplateCommand = DeletePolicyTemplateCommand;
2413
+ exports.DeletePolicyTemplateInput$ = DeletePolicyTemplateInput$;
2414
+ exports.DeletePolicyTemplateOutput$ = DeletePolicyTemplateOutput$;
645
2415
  exports.DeletionMode = DeletionMode;
646
2416
  exports.DeletionProtection = DeletionProtection;
2417
+ exports.DeterminingPolicyItem$ = DeterminingPolicyItem$;
2418
+ exports.EncryptionSettings$ = EncryptionSettings$;
2419
+ exports.EncryptionState$ = EncryptionState$;
2420
+ exports.EntitiesDefinition$ = EntitiesDefinition$;
2421
+ exports.EntityIdentifier$ = EntityIdentifier$;
2422
+ exports.EntityItem$ = EntityItem$;
2423
+ exports.EntityReference$ = EntityReference$;
2424
+ exports.EvaluationErrorItem$ = EvaluationErrorItem$;
2425
+ exports.GetIdentitySource$ = GetIdentitySource$;
647
2426
  exports.GetIdentitySourceCommand = GetIdentitySourceCommand;
2427
+ exports.GetIdentitySourceInput$ = GetIdentitySourceInput$;
2428
+ exports.GetIdentitySourceOutput$ = GetIdentitySourceOutput$;
2429
+ exports.GetPolicy$ = GetPolicy$;
648
2430
  exports.GetPolicyCommand = GetPolicyCommand;
2431
+ exports.GetPolicyInput$ = GetPolicyInput$;
2432
+ exports.GetPolicyOutput$ = GetPolicyOutput$;
2433
+ exports.GetPolicyStore$ = GetPolicyStore$;
2434
+ exports.GetPolicyStoreAlias$ = GetPolicyStoreAlias$;
649
2435
  exports.GetPolicyStoreAliasCommand = GetPolicyStoreAliasCommand;
2436
+ exports.GetPolicyStoreAliasInput$ = GetPolicyStoreAliasInput$;
2437
+ exports.GetPolicyStoreAliasOutput$ = GetPolicyStoreAliasOutput$;
650
2438
  exports.GetPolicyStoreCommand = GetPolicyStoreCommand;
2439
+ exports.GetPolicyStoreInput$ = GetPolicyStoreInput$;
2440
+ exports.GetPolicyStoreOutput$ = GetPolicyStoreOutput$;
2441
+ exports.GetPolicyTemplate$ = GetPolicyTemplate$;
651
2442
  exports.GetPolicyTemplateCommand = GetPolicyTemplateCommand;
2443
+ exports.GetPolicyTemplateInput$ = GetPolicyTemplateInput$;
2444
+ exports.GetPolicyTemplateOutput$ = GetPolicyTemplateOutput$;
2445
+ exports.GetSchema$ = GetSchema$;
652
2446
  exports.GetSchemaCommand = GetSchemaCommand;
2447
+ exports.GetSchemaInput$ = GetSchemaInput$;
2448
+ exports.GetSchemaOutput$ = GetSchemaOutput$;
2449
+ exports.IdentitySourceDetails$ = IdentitySourceDetails$;
2450
+ exports.IdentitySourceFilter$ = IdentitySourceFilter$;
2451
+ exports.IdentitySourceItem$ = IdentitySourceItem$;
2452
+ exports.IdentitySourceItemDetails$ = IdentitySourceItemDetails$;
2453
+ exports.InternalServerException = InternalServerException;
2454
+ exports.InternalServerException$ = InternalServerException$;
2455
+ exports.InvalidStateException = InvalidStateException;
2456
+ exports.InvalidStateException$ = InvalidStateException$;
2457
+ exports.IsAuthorized$ = IsAuthorized$;
653
2458
  exports.IsAuthorizedCommand = IsAuthorizedCommand;
2459
+ exports.IsAuthorizedInput$ = IsAuthorizedInput$;
2460
+ exports.IsAuthorizedOutput$ = IsAuthorizedOutput$;
2461
+ exports.IsAuthorizedWithToken$ = IsAuthorizedWithToken$;
654
2462
  exports.IsAuthorizedWithTokenCommand = IsAuthorizedWithTokenCommand;
2463
+ exports.IsAuthorizedWithTokenInput$ = IsAuthorizedWithTokenInput$;
2464
+ exports.IsAuthorizedWithTokenOutput$ = IsAuthorizedWithTokenOutput$;
2465
+ exports.KmsEncryptionSettings$ = KmsEncryptionSettings$;
2466
+ exports.KmsEncryptionState$ = KmsEncryptionState$;
2467
+ exports.ListIdentitySources$ = ListIdentitySources$;
655
2468
  exports.ListIdentitySourcesCommand = ListIdentitySourcesCommand;
2469
+ exports.ListIdentitySourcesInput$ = ListIdentitySourcesInput$;
2470
+ exports.ListIdentitySourcesOutput$ = ListIdentitySourcesOutput$;
2471
+ exports.ListPolicies$ = ListPolicies$;
656
2472
  exports.ListPoliciesCommand = ListPoliciesCommand;
2473
+ exports.ListPoliciesInput$ = ListPoliciesInput$;
2474
+ exports.ListPoliciesOutput$ = ListPoliciesOutput$;
2475
+ exports.ListPolicyStoreAliases$ = ListPolicyStoreAliases$;
657
2476
  exports.ListPolicyStoreAliasesCommand = ListPolicyStoreAliasesCommand;
2477
+ exports.ListPolicyStoreAliasesInput$ = ListPolicyStoreAliasesInput$;
2478
+ exports.ListPolicyStoreAliasesOutput$ = ListPolicyStoreAliasesOutput$;
2479
+ exports.ListPolicyStores$ = ListPolicyStores$;
658
2480
  exports.ListPolicyStoresCommand = ListPolicyStoresCommand;
2481
+ exports.ListPolicyStoresInput$ = ListPolicyStoresInput$;
2482
+ exports.ListPolicyStoresOutput$ = ListPolicyStoresOutput$;
2483
+ exports.ListPolicyTemplates$ = ListPolicyTemplates$;
659
2484
  exports.ListPolicyTemplatesCommand = ListPolicyTemplatesCommand;
2485
+ exports.ListPolicyTemplatesInput$ = ListPolicyTemplatesInput$;
2486
+ exports.ListPolicyTemplatesOutput$ = ListPolicyTemplatesOutput$;
2487
+ exports.ListTagsForResource$ = ListTagsForResource$;
660
2488
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2489
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
2490
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
2491
+ exports.OpenIdConnectAccessTokenConfiguration$ = OpenIdConnectAccessTokenConfiguration$;
2492
+ exports.OpenIdConnectAccessTokenConfigurationDetail$ = OpenIdConnectAccessTokenConfigurationDetail$;
2493
+ exports.OpenIdConnectAccessTokenConfigurationItem$ = OpenIdConnectAccessTokenConfigurationItem$;
2494
+ exports.OpenIdConnectConfiguration$ = OpenIdConnectConfiguration$;
2495
+ exports.OpenIdConnectConfigurationDetail$ = OpenIdConnectConfigurationDetail$;
2496
+ exports.OpenIdConnectConfigurationItem$ = OpenIdConnectConfigurationItem$;
2497
+ exports.OpenIdConnectGroupConfiguration$ = OpenIdConnectGroupConfiguration$;
2498
+ exports.OpenIdConnectGroupConfigurationDetail$ = OpenIdConnectGroupConfigurationDetail$;
2499
+ exports.OpenIdConnectGroupConfigurationItem$ = OpenIdConnectGroupConfigurationItem$;
2500
+ exports.OpenIdConnectIdentityTokenConfiguration$ = OpenIdConnectIdentityTokenConfiguration$;
2501
+ exports.OpenIdConnectIdentityTokenConfigurationDetail$ = OpenIdConnectIdentityTokenConfigurationDetail$;
2502
+ exports.OpenIdConnectIdentityTokenConfigurationItem$ = OpenIdConnectIdentityTokenConfigurationItem$;
2503
+ exports.OpenIdConnectTokenSelection$ = OpenIdConnectTokenSelection$;
2504
+ exports.OpenIdConnectTokenSelectionDetail$ = OpenIdConnectTokenSelectionDetail$;
2505
+ exports.OpenIdConnectTokenSelectionItem$ = OpenIdConnectTokenSelectionItem$;
661
2506
  exports.OpenIdIssuer = OpenIdIssuer;
2507
+ exports.PolicyDefinition$ = PolicyDefinition$;
2508
+ exports.PolicyDefinitionDetail$ = PolicyDefinitionDetail$;
2509
+ exports.PolicyDefinitionItem$ = PolicyDefinitionItem$;
662
2510
  exports.PolicyEffect = PolicyEffect;
2511
+ exports.PolicyFilter$ = PolicyFilter$;
2512
+ exports.PolicyItem$ = PolicyItem$;
2513
+ exports.PolicyStoreAliasFilter$ = PolicyStoreAliasFilter$;
2514
+ exports.PolicyStoreAliasItem$ = PolicyStoreAliasItem$;
2515
+ exports.PolicyStoreItem$ = PolicyStoreItem$;
2516
+ exports.PolicyTemplateItem$ = PolicyTemplateItem$;
663
2517
  exports.PolicyType = PolicyType;
2518
+ exports.PutSchema$ = PutSchema$;
664
2519
  exports.PutSchemaCommand = PutSchemaCommand;
2520
+ exports.PutSchemaInput$ = PutSchemaInput$;
2521
+ exports.PutSchemaOutput$ = PutSchemaOutput$;
2522
+ exports.ResourceConflict$ = ResourceConflict$;
2523
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2524
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
665
2525
  exports.ResourceType = ResourceType;
2526
+ exports.SchemaDefinition$ = SchemaDefinition$;
2527
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2528
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2529
+ exports.StaticPolicyDefinition$ = StaticPolicyDefinition$;
2530
+ exports.StaticPolicyDefinitionDetail$ = StaticPolicyDefinitionDetail$;
2531
+ exports.StaticPolicyDefinitionItem$ = StaticPolicyDefinitionItem$;
2532
+ exports.TagResource$ = TagResource$;
666
2533
  exports.TagResourceCommand = TagResourceCommand;
2534
+ exports.TagResourceInput$ = TagResourceInput$;
2535
+ exports.TagResourceOutput$ = TagResourceOutput$;
2536
+ exports.TemplateLinkedPolicyDefinition$ = TemplateLinkedPolicyDefinition$;
2537
+ exports.TemplateLinkedPolicyDefinitionDetail$ = TemplateLinkedPolicyDefinitionDetail$;
2538
+ exports.TemplateLinkedPolicyDefinitionItem$ = TemplateLinkedPolicyDefinitionItem$;
2539
+ exports.ThrottlingException = ThrottlingException;
2540
+ exports.ThrottlingException$ = ThrottlingException$;
2541
+ exports.TooManyTagsException = TooManyTagsException;
2542
+ exports.TooManyTagsException$ = TooManyTagsException$;
2543
+ exports.UntagResource$ = UntagResource$;
667
2544
  exports.UntagResourceCommand = UntagResourceCommand;
2545
+ exports.UntagResourceInput$ = UntagResourceInput$;
2546
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
2547
+ exports.UpdateCognitoGroupConfiguration$ = UpdateCognitoGroupConfiguration$;
2548
+ exports.UpdateCognitoUserPoolConfiguration$ = UpdateCognitoUserPoolConfiguration$;
2549
+ exports.UpdateConfiguration$ = UpdateConfiguration$;
2550
+ exports.UpdateIdentitySource$ = UpdateIdentitySource$;
668
2551
  exports.UpdateIdentitySourceCommand = UpdateIdentitySourceCommand;
2552
+ exports.UpdateIdentitySourceInput$ = UpdateIdentitySourceInput$;
2553
+ exports.UpdateIdentitySourceOutput$ = UpdateIdentitySourceOutput$;
2554
+ exports.UpdateOpenIdConnectAccessTokenConfiguration$ = UpdateOpenIdConnectAccessTokenConfiguration$;
2555
+ exports.UpdateOpenIdConnectConfiguration$ = UpdateOpenIdConnectConfiguration$;
2556
+ exports.UpdateOpenIdConnectGroupConfiguration$ = UpdateOpenIdConnectGroupConfiguration$;
2557
+ exports.UpdateOpenIdConnectIdentityTokenConfiguration$ = UpdateOpenIdConnectIdentityTokenConfiguration$;
2558
+ exports.UpdateOpenIdConnectTokenSelection$ = UpdateOpenIdConnectTokenSelection$;
2559
+ exports.UpdatePolicy$ = UpdatePolicy$;
669
2560
  exports.UpdatePolicyCommand = UpdatePolicyCommand;
2561
+ exports.UpdatePolicyDefinition$ = UpdatePolicyDefinition$;
2562
+ exports.UpdatePolicyInput$ = UpdatePolicyInput$;
2563
+ exports.UpdatePolicyOutput$ = UpdatePolicyOutput$;
2564
+ exports.UpdatePolicyStore$ = UpdatePolicyStore$;
670
2565
  exports.UpdatePolicyStoreCommand = UpdatePolicyStoreCommand;
2566
+ exports.UpdatePolicyStoreInput$ = UpdatePolicyStoreInput$;
2567
+ exports.UpdatePolicyStoreOutput$ = UpdatePolicyStoreOutput$;
2568
+ exports.UpdatePolicyTemplate$ = UpdatePolicyTemplate$;
671
2569
  exports.UpdatePolicyTemplateCommand = UpdatePolicyTemplateCommand;
2570
+ exports.UpdatePolicyTemplateInput$ = UpdatePolicyTemplateInput$;
2571
+ exports.UpdatePolicyTemplateOutput$ = UpdatePolicyTemplateOutput$;
2572
+ exports.UpdateStaticPolicyDefinition$ = UpdateStaticPolicyDefinition$;
2573
+ exports.ValidationException = ValidationException;
2574
+ exports.ValidationException$ = ValidationException$;
2575
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
672
2576
  exports.ValidationMode = ValidationMode;
2577
+ exports.ValidationSettings$ = ValidationSettings$;
673
2578
  exports.VerifiedPermissions = VerifiedPermissions;
674
2579
  exports.VerifiedPermissionsClient = VerifiedPermissionsClient;
2580
+ exports.VerifiedPermissionsServiceException = VerifiedPermissionsServiceException;
2581
+ exports.VerifiedPermissionsServiceException$ = VerifiedPermissionsServiceException$;
2582
+ exports.errorTypeRegistries = errorTypeRegistries;
675
2583
  exports.paginateListIdentitySources = paginateListIdentitySources;
676
2584
  exports.paginateListPolicies = paginateListPolicies;
677
2585
  exports.paginateListPolicyStoreAliases = paginateListPolicyStoreAliases;