@aws-sdk/client-mpa 3.986.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 +40 -959
- package/dist-cjs/models/MPAServiceException.js +12 -0
- package/dist-cjs/models/errors.js +142 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +710 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +64 -58
- 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 MPAServiceException = require('./models/MPAServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -108,839 +111,6 @@ class MPAClient extends smithyClient.Client {
|
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class MPAServiceException extends smithyClient.ServiceException {
|
|
112
|
-
constructor(options) {
|
|
113
|
-
super(options);
|
|
114
|
-
Object.setPrototypeOf(this, MPAServiceException.prototype);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
class AccessDeniedException extends MPAServiceException {
|
|
119
|
-
name = "AccessDeniedException";
|
|
120
|
-
$fault = "client";
|
|
121
|
-
Message;
|
|
122
|
-
constructor(opts) {
|
|
123
|
-
super({
|
|
124
|
-
name: "AccessDeniedException",
|
|
125
|
-
$fault: "client",
|
|
126
|
-
...opts,
|
|
127
|
-
});
|
|
128
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
129
|
-
this.Message = opts.Message;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends MPAServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
Message;
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "ConflictException",
|
|
139
|
-
$fault: "client",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
143
|
-
this.Message = opts.Message;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class InternalServerException extends MPAServiceException {
|
|
147
|
-
name = "InternalServerException";
|
|
148
|
-
$fault = "server";
|
|
149
|
-
$retryable = {};
|
|
150
|
-
Message;
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "InternalServerException",
|
|
154
|
-
$fault: "server",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
158
|
-
this.Message = opts.Message;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
class ServiceQuotaExceededException extends MPAServiceException {
|
|
162
|
-
name = "ServiceQuotaExceededException";
|
|
163
|
-
$fault = "client";
|
|
164
|
-
Message;
|
|
165
|
-
constructor(opts) {
|
|
166
|
-
super({
|
|
167
|
-
name: "ServiceQuotaExceededException",
|
|
168
|
-
$fault: "client",
|
|
169
|
-
...opts,
|
|
170
|
-
});
|
|
171
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
172
|
-
this.Message = opts.Message;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
class ThrottlingException extends MPAServiceException {
|
|
176
|
-
name = "ThrottlingException";
|
|
177
|
-
$fault = "client";
|
|
178
|
-
Message;
|
|
179
|
-
constructor(opts) {
|
|
180
|
-
super({
|
|
181
|
-
name: "ThrottlingException",
|
|
182
|
-
$fault: "client",
|
|
183
|
-
...opts,
|
|
184
|
-
});
|
|
185
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
186
|
-
this.Message = opts.Message;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
class ValidationException extends MPAServiceException {
|
|
190
|
-
name = "ValidationException";
|
|
191
|
-
$fault = "client";
|
|
192
|
-
Message;
|
|
193
|
-
constructor(opts) {
|
|
194
|
-
super({
|
|
195
|
-
name: "ValidationException",
|
|
196
|
-
$fault: "client",
|
|
197
|
-
...opts,
|
|
198
|
-
});
|
|
199
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
200
|
-
this.Message = opts.Message;
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
class ResourceNotFoundException extends MPAServiceException {
|
|
204
|
-
name = "ResourceNotFoundException";
|
|
205
|
-
$fault = "client";
|
|
206
|
-
Message;
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "ResourceNotFoundException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
214
|
-
this.Message = opts.Message;
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
class InvalidParameterException extends MPAServiceException {
|
|
218
|
-
name = "InvalidParameterException";
|
|
219
|
-
$fault = "client";
|
|
220
|
-
Message;
|
|
221
|
-
constructor(opts) {
|
|
222
|
-
super({
|
|
223
|
-
name: "InvalidParameterException",
|
|
224
|
-
$fault: "client",
|
|
225
|
-
...opts,
|
|
226
|
-
});
|
|
227
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
228
|
-
this.Message = opts.Message;
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
class TooManyTagsException extends MPAServiceException {
|
|
232
|
-
name = "TooManyTagsException";
|
|
233
|
-
$fault = "client";
|
|
234
|
-
Message;
|
|
235
|
-
ResourceName;
|
|
236
|
-
constructor(opts) {
|
|
237
|
-
super({
|
|
238
|
-
name: "TooManyTagsException",
|
|
239
|
-
$fault: "client",
|
|
240
|
-
...opts,
|
|
241
|
-
});
|
|
242
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
243
|
-
this.Message = opts.Message;
|
|
244
|
-
this.ResourceName = opts.ResourceName;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
const _A = "Approvers";
|
|
249
|
-
const _ACS = "ActionCompletionStrategy";
|
|
250
|
-
const _ADE = "AccessDeniedException";
|
|
251
|
-
const _AI = "ApproverId";
|
|
252
|
-
const _AN = "ActionName";
|
|
253
|
-
const _APU = "ApprovalPortalUrl";
|
|
254
|
-
const _AR = "ApproverResponses";
|
|
255
|
-
const _AS = "ApprovalStrategy";
|
|
256
|
-
const _ASR = "AdditionalSecurityRequirements";
|
|
257
|
-
const _ASRp = "ApprovalStrategyResponse";
|
|
258
|
-
const _AT = "ApprovalTeams";
|
|
259
|
-
const _ATA = "ApprovalTeamArn";
|
|
260
|
-
const _ATN = "ApprovalTeamName";
|
|
261
|
-
const _ATRA = "ApprovalTeamRequestApprover";
|
|
262
|
-
const _ATRAp = "ApprovalTeamRequestApprovers";
|
|
263
|
-
const _Ar = "Arn";
|
|
264
|
-
const _CAT = "CreateApprovalTeam";
|
|
265
|
-
const _CATR = "CreateApprovalTeamRequest";
|
|
266
|
-
const _CATRr = "CreateApprovalTeamResponse";
|
|
267
|
-
const _CE = "ConflictException";
|
|
268
|
-
const _CIS = "CreateIdentitySource";
|
|
269
|
-
const _CISR = "CreateIdentitySourceRequest";
|
|
270
|
-
const _CISRr = "CreateIdentitySourceResponse";
|
|
271
|
-
const _CS = "CancelSession";
|
|
272
|
-
const _CSR = "CancelSessionRequest";
|
|
273
|
-
const _CSRa = "CancelSessionResponse";
|
|
274
|
-
const _CT = "ClientToken";
|
|
275
|
-
const _CTo = "CompletionTime";
|
|
276
|
-
const _CTr = "CreationTime";
|
|
277
|
-
const _D = "Description";
|
|
278
|
-
const _DCT = "DeletionCompletionTime";
|
|
279
|
-
const _DIATV = "DeleteInactiveApprovalTeamVersion";
|
|
280
|
-
const _DIATVR = "DeleteInactiveApprovalTeamVersionRequest";
|
|
281
|
-
const _DIATVRe = "DeleteInactiveApprovalTeamVersionResponse";
|
|
282
|
-
const _DIS = "DeleteIdentitySource";
|
|
283
|
-
const _DISR = "DeleteIdentitySourceRequest";
|
|
284
|
-
const _DST = "DeletionStartTime";
|
|
285
|
-
const _DV = "DefaultVersion";
|
|
286
|
-
const _Do = "Document";
|
|
287
|
-
const _ES = "ExecutionStatus";
|
|
288
|
-
const _ET = "ExpirationTime";
|
|
289
|
-
const _F = "Filter";
|
|
290
|
-
const _FN = "FieldName";
|
|
291
|
-
const _Fi = "Filters";
|
|
292
|
-
const _GAT = "GetApprovalTeam";
|
|
293
|
-
const _GATR = "GetApprovalTeamRequest";
|
|
294
|
-
const _GATRA = "GetApprovalTeamResponseApprover";
|
|
295
|
-
const _GATRAe = "GetApprovalTeamResponseApprovers";
|
|
296
|
-
const _GATRe = "GetApprovalTeamResponse";
|
|
297
|
-
const _GIS = "GetIdentitySource";
|
|
298
|
-
const _GISR = "GetIdentitySourceRequest";
|
|
299
|
-
const _GISRe = "GetIdentitySourceResponse";
|
|
300
|
-
const _GPV = "GetPolicyVersion";
|
|
301
|
-
const _GPVR = "GetPolicyVersionRequest";
|
|
302
|
-
const _GPVRe = "GetPolicyVersionResponse";
|
|
303
|
-
const _GRP = "GetResourcePolicy";
|
|
304
|
-
const _GRPR = "GetResourcePolicyRequest";
|
|
305
|
-
const _GRPRe = "GetResourcePolicyResponse";
|
|
306
|
-
const _GS = "GetSession";
|
|
307
|
-
const _GSR = "GetSessionRequest";
|
|
308
|
-
const _GSRAR = "GetSessionResponseApproverResponse";
|
|
309
|
-
const _GSRARe = "GetSessionResponseApproverResponses";
|
|
310
|
-
const _GSRe = "GetSessionResponse";
|
|
311
|
-
const _IA = "InstanceArn";
|
|
312
|
-
const _ID = "IsDefault";
|
|
313
|
-
const _II = "IdentityId";
|
|
314
|
-
const _IIC = "IamIdentityCenter";
|
|
315
|
-
const _IICFG = "IamIdentityCenterForGet";
|
|
316
|
-
const _IICFL = "IamIdentityCenterForList";
|
|
317
|
-
const _IPE = "InvalidParameterException";
|
|
318
|
-
const _IS = "IdentitySources";
|
|
319
|
-
const _ISA = "IdentitySourceArn";
|
|
320
|
-
const _ISE = "InternalServerException";
|
|
321
|
-
const _ISFL = "IdentitySourceForList";
|
|
322
|
-
const _ISP = "IdentitySourceParameters";
|
|
323
|
-
const _ISPFG = "IdentitySourceParametersForGet";
|
|
324
|
-
const _ISPFL = "IdentitySourceParametersForList";
|
|
325
|
-
const _IST = "IdentitySourceType";
|
|
326
|
-
const _IT = "InitiationTime";
|
|
327
|
-
const _LAT = "ListApprovalTeams";
|
|
328
|
-
const _LATR = "ListApprovalTeamsRequest";
|
|
329
|
-
const _LATRAT = "ListApprovalTeamsResponseApprovalTeam";
|
|
330
|
-
const _LATRATi = "ListApprovalTeamsResponseApprovalTeams";
|
|
331
|
-
const _LATRi = "ListApprovalTeamsResponse";
|
|
332
|
-
const _LIS = "ListIdentitySources";
|
|
333
|
-
const _LISR = "ListIdentitySourcesRequest";
|
|
334
|
-
const _LISRi = "ListIdentitySourcesResponse";
|
|
335
|
-
const _LP = "ListPolicies";
|
|
336
|
-
const _LPR = "ListPoliciesRequest";
|
|
337
|
-
const _LPRi = "ListPoliciesResponse";
|
|
338
|
-
const _LPV = "ListPolicyVersions";
|
|
339
|
-
const _LPVR = "ListPolicyVersionsRequest";
|
|
340
|
-
const _LPVRi = "ListPolicyVersionsResponse";
|
|
341
|
-
const _LRP = "ListResourcePolicies";
|
|
342
|
-
const _LRPR = "ListResourcePoliciesRequest";
|
|
343
|
-
const _LRPRRP = "ListResourcePoliciesResponseResourcePolicy";
|
|
344
|
-
const _LRPRRPi = "ListResourcePoliciesResponseResourcePolicies";
|
|
345
|
-
const _LRPRi = "ListResourcePoliciesResponse";
|
|
346
|
-
const _LS = "ListSessions";
|
|
347
|
-
const _LSR = "ListSessionsRequest";
|
|
348
|
-
const _LSRS = "ListSessionsResponseSession";
|
|
349
|
-
const _LSRSi = "ListSessionsResponseSessions";
|
|
350
|
-
const _LSRi = "ListSessionsResponse";
|
|
351
|
-
const _LTFR = "ListTagsForResource";
|
|
352
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
353
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
354
|
-
const _LUT = "LastUpdateTime";
|
|
355
|
-
const _LUTa = "LastUpdatedTime";
|
|
356
|
-
const _M = "Message";
|
|
357
|
-
const _MAR = "MinApprovalsRequired";
|
|
358
|
-
const _MM = "MfaMethods";
|
|
359
|
-
const _MMf = "MfaMethod";
|
|
360
|
-
const _MN = "MofN";
|
|
361
|
-
const _MNAS = "MofNApprovalStrategy";
|
|
362
|
-
const _MR = "MaxResults";
|
|
363
|
-
const _Me = "Metadata";
|
|
364
|
-
const _N = "Name";
|
|
365
|
-
const _NOA = "NumberOfApprovers";
|
|
366
|
-
const _NT = "NextToken";
|
|
367
|
-
const _O = "Operator";
|
|
368
|
-
const _P = "Policies";
|
|
369
|
-
const _PA = "PolicyArn";
|
|
370
|
-
const _PD = "PolicyDocument";
|
|
371
|
-
const _PII = "PrimaryIdentityId";
|
|
372
|
-
const _PIS = "PrimaryIdentityStatus";
|
|
373
|
-
const _PISA = "PrimaryIdentitySourceArn";
|
|
374
|
-
const _PN = "PolicyName";
|
|
375
|
-
const _PR = "PolicyReference";
|
|
376
|
-
const _PRA = "ProtectedResourceArn";
|
|
377
|
-
const _PRo = "PoliciesReferences";
|
|
378
|
-
const _PT = "PolicyType";
|
|
379
|
-
const _PU = "PendingUpdate";
|
|
380
|
-
const _PV = "PolicyVersion";
|
|
381
|
-
const _PVA = "PolicyVersionArn";
|
|
382
|
-
const _PVS = "PolicyVersionSummary";
|
|
383
|
-
const _PVo = "PolicyVersions";
|
|
384
|
-
const _PWD = "PendingWindowDays";
|
|
385
|
-
const _Po = "Policy";
|
|
386
|
-
const _R = "Response";
|
|
387
|
-
const _RA = "ResourceArn";
|
|
388
|
-
const _RAI = "RequesterAccountId";
|
|
389
|
-
const _RC = "RequesterComment";
|
|
390
|
-
const _RN = "ResourceName";
|
|
391
|
-
const _RNFE = "ResourceNotFoundException";
|
|
392
|
-
const _RP = "ResourcePolicies";
|
|
393
|
-
const _RPA = "RequesterPrincipalArn";
|
|
394
|
-
const _RR = "RequesterRegion";
|
|
395
|
-
const _RSP = "RequesterServicePrincipal";
|
|
396
|
-
const _RT = "ResponseTime";
|
|
397
|
-
const _Re = "Region";
|
|
398
|
-
const _S = "Status";
|
|
399
|
-
const _SA = "SessionArn";
|
|
400
|
-
const _SAATD = "StartActiveApprovalTeamDeletion";
|
|
401
|
-
const _SAATDR = "StartActiveApprovalTeamDeletionRequest";
|
|
402
|
-
const _SAATDRt = "StartActiveApprovalTeamDeletionResponse";
|
|
403
|
-
const _SC = "StatusCode";
|
|
404
|
-
const _SK = "SessionKey";
|
|
405
|
-
const _SM = "StatusMessage";
|
|
406
|
-
const _SMe = "SessionMetadata";
|
|
407
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
408
|
-
const _SS = "SyncStatus";
|
|
409
|
-
const _SV = "SessionValue";
|
|
410
|
-
const _Se = "Sessions";
|
|
411
|
-
const _T = "Tags";
|
|
412
|
-
const _TE = "ThrottlingException";
|
|
413
|
-
const _TK = "TagKey";
|
|
414
|
-
const _TKL = "TagKeyList";
|
|
415
|
-
const _TKa = "TagKeys";
|
|
416
|
-
const _TMTE = "TooManyTagsException";
|
|
417
|
-
const _TR = "TagResource";
|
|
418
|
-
const _TRR = "TagResourceRequest";
|
|
419
|
-
const _TRRa = "TagResourceResponse";
|
|
420
|
-
const _TV = "TagValue";
|
|
421
|
-
const _Ty = "Type";
|
|
422
|
-
const _UA = "UpdateActions";
|
|
423
|
-
const _UAT = "UpdateApprovalTeam";
|
|
424
|
-
const _UATR = "UpdateApprovalTeamRequest";
|
|
425
|
-
const _UATRp = "UpdateApprovalTeamResponse";
|
|
426
|
-
const _UIT = "UpdateInitiationTime";
|
|
427
|
-
const _UR = "UntagResource";
|
|
428
|
-
const _URR = "UntagResourceRequest";
|
|
429
|
-
const _URRn = "UntagResourceResponse";
|
|
430
|
-
const _USA = "UpdateSessionArn";
|
|
431
|
-
const _V = "Value";
|
|
432
|
-
const _VE = "ValidationException";
|
|
433
|
-
const _VI = "VersionId";
|
|
434
|
-
const _c = "client";
|
|
435
|
-
const _e = "error";
|
|
436
|
-
const _h = "http";
|
|
437
|
-
const _hE = "httpError";
|
|
438
|
-
const _hQ = "httpQuery";
|
|
439
|
-
const _s = "server";
|
|
440
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.mpa";
|
|
441
|
-
const n0 = "com.amazonaws.mpa";
|
|
442
|
-
var Description = [0, n0, _D, 8, 0];
|
|
443
|
-
var PolicyDocument = [0, n0, _PD, 8, 0];
|
|
444
|
-
var RequesterComment = [0, n0, _RC, 8, 0];
|
|
445
|
-
var SessionKey = [0, n0, _SK, 8, 0];
|
|
446
|
-
var SessionValue = [0, n0, _SV, 8, 0];
|
|
447
|
-
var TagKey = [0, n0, _TK, 8, 0];
|
|
448
|
-
var TagValue = [0, n0, _TV, 8, 0];
|
|
449
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
450
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
451
|
-
[_M],
|
|
452
|
-
[0], 1
|
|
453
|
-
];
|
|
454
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
455
|
-
var ApprovalTeamRequestApprover$ = [3, n0, _ATRA,
|
|
456
|
-
0,
|
|
457
|
-
[_PII, _PISA],
|
|
458
|
-
[0, 0], 2
|
|
459
|
-
];
|
|
460
|
-
var CancelSessionRequest$ = [3, n0, _CSR,
|
|
461
|
-
0,
|
|
462
|
-
[_SA],
|
|
463
|
-
[[0, 1]], 1
|
|
464
|
-
];
|
|
465
|
-
var CancelSessionResponse$ = [3, n0, _CSRa,
|
|
466
|
-
0,
|
|
467
|
-
[],
|
|
468
|
-
[]
|
|
469
|
-
];
|
|
470
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
471
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
472
|
-
[_M],
|
|
473
|
-
[0], 1
|
|
474
|
-
];
|
|
475
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
476
|
-
var CreateApprovalTeamRequest$ = [3, n0, _CATR,
|
|
477
|
-
0,
|
|
478
|
-
[_AS, _A, _D, _P, _N, _CT, _T],
|
|
479
|
-
[() => ApprovalStrategy$, () => ApprovalTeamRequestApprovers, [() => Description, 0], () => PoliciesReferences, 0, [0, 4], [() => Tags, 0]], 5
|
|
480
|
-
];
|
|
481
|
-
var CreateApprovalTeamResponse$ = [3, n0, _CATRr,
|
|
482
|
-
0,
|
|
483
|
-
[_CTr, _Ar, _N, _VI],
|
|
484
|
-
[5, 0, 0, 0]
|
|
485
|
-
];
|
|
486
|
-
var CreateIdentitySourceRequest$ = [3, n0, _CISR,
|
|
487
|
-
0,
|
|
488
|
-
[_ISP, _CT, _T],
|
|
489
|
-
[() => IdentitySourceParameters$, [0, 4], [() => Tags, 0]], 1
|
|
490
|
-
];
|
|
491
|
-
var CreateIdentitySourceResponse$ = [3, n0, _CISRr,
|
|
492
|
-
0,
|
|
493
|
-
[_IST, _ISA, _CTr],
|
|
494
|
-
[0, 0, 5]
|
|
495
|
-
];
|
|
496
|
-
var DeleteIdentitySourceRequest$ = [3, n0, _DISR,
|
|
497
|
-
0,
|
|
498
|
-
[_ISA],
|
|
499
|
-
[[0, 1]], 1
|
|
500
|
-
];
|
|
501
|
-
var DeleteInactiveApprovalTeamVersionRequest$ = [3, n0, _DIATVR,
|
|
502
|
-
0,
|
|
503
|
-
[_Ar, _VI],
|
|
504
|
-
[[0, 1], [0, 1]], 2
|
|
505
|
-
];
|
|
506
|
-
var DeleteInactiveApprovalTeamVersionResponse$ = [3, n0, _DIATVRe,
|
|
507
|
-
0,
|
|
508
|
-
[],
|
|
509
|
-
[]
|
|
510
|
-
];
|
|
511
|
-
var Filter$ = [3, n0, _F,
|
|
512
|
-
0,
|
|
513
|
-
[_FN, _O, _V],
|
|
514
|
-
[0, 0, 0]
|
|
515
|
-
];
|
|
516
|
-
var GetApprovalTeamRequest$ = [3, n0, _GATR,
|
|
517
|
-
0,
|
|
518
|
-
[_Ar],
|
|
519
|
-
[[0, 1]], 1
|
|
520
|
-
];
|
|
521
|
-
var GetApprovalTeamResponse$ = [3, n0, _GATRe,
|
|
522
|
-
0,
|
|
523
|
-
[_CTr, _AS, _NOA, _A, _Ar, _D, _N, _S, _SC, _SM, _USA, _VI, _P, _LUT, _PU],
|
|
524
|
-
[5, () => ApprovalStrategyResponse$, 1, () => GetApprovalTeamResponseApprovers, 0, [() => Description, 0], 0, 0, 0, 0, 0, 0, () => PoliciesReferences, 5, () => PendingUpdate$]
|
|
525
|
-
];
|
|
526
|
-
var GetApprovalTeamResponseApprover$ = [3, n0, _GATRA,
|
|
527
|
-
0,
|
|
528
|
-
[_AI, _RT, _PII, _PISA, _PIS, _MM],
|
|
529
|
-
[0, 5, 0, 0, 0, () => MfaMethods]
|
|
530
|
-
];
|
|
531
|
-
var GetIdentitySourceRequest$ = [3, n0, _GISR,
|
|
532
|
-
0,
|
|
533
|
-
[_ISA],
|
|
534
|
-
[[0, 1]], 1
|
|
535
|
-
];
|
|
536
|
-
var GetIdentitySourceResponse$ = [3, n0, _GISRe,
|
|
537
|
-
0,
|
|
538
|
-
[_IST, _ISP, _ISA, _CTr, _S, _SC, _SM],
|
|
539
|
-
[0, () => IdentitySourceParametersForGet$, 0, 5, 0, 0, 0]
|
|
540
|
-
];
|
|
541
|
-
var GetPolicyVersionRequest$ = [3, n0, _GPVR,
|
|
542
|
-
0,
|
|
543
|
-
[_PVA],
|
|
544
|
-
[[0, 1]], 1
|
|
545
|
-
];
|
|
546
|
-
var GetPolicyVersionResponse$ = [3, n0, _GPVRe,
|
|
547
|
-
0,
|
|
548
|
-
[_PV],
|
|
549
|
-
[[() => PolicyVersion$, 0]], 1
|
|
550
|
-
];
|
|
551
|
-
var GetResourcePolicyRequest$ = [3, n0, _GRPR,
|
|
552
|
-
0,
|
|
553
|
-
[_RA, _PN, _PT],
|
|
554
|
-
[0, 0, 0], 3
|
|
555
|
-
];
|
|
556
|
-
var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
|
|
557
|
-
0,
|
|
558
|
-
[_RA, _PT, _PN, _PD, _PVA],
|
|
559
|
-
[0, 0, 0, [() => PolicyDocument, 0], 0], 4
|
|
560
|
-
];
|
|
561
|
-
var GetSessionRequest$ = [3, n0, _GSR,
|
|
562
|
-
0,
|
|
563
|
-
[_SA],
|
|
564
|
-
[[0, 1]], 1
|
|
565
|
-
];
|
|
566
|
-
var GetSessionResponse$ = [3, n0, _GSRe,
|
|
567
|
-
0,
|
|
568
|
-
[_SA, _ATA, _ATN, _PRA, _AS, _NOA, _IT, _ET, _CTo, _D, _Me, _S, _SC, _SM, _ES, _AN, _RSP, _RPA, _RAI, _RR, _RC, _ACS, _AR, _ASR],
|
|
569
|
-
[0, 0, 0, 0, () => ApprovalStrategyResponse$, 1, 5, 5, 5, [() => Description, 0], [() => SessionMetadata, 0], 0, 0, 0, 0, 0, 0, 0, 0, 0, [() => RequesterComment, 0], 0, () => GetSessionResponseApproverResponses, 64 | 0]
|
|
570
|
-
];
|
|
571
|
-
var GetSessionResponseApproverResponse$ = [3, n0, _GSRAR,
|
|
572
|
-
0,
|
|
573
|
-
[_AI, _ISA, _II, _R, _RT],
|
|
574
|
-
[0, 0, 0, 0, 5]
|
|
575
|
-
];
|
|
576
|
-
var IamIdentityCenter$ = [3, n0, _IIC,
|
|
577
|
-
0,
|
|
578
|
-
[_IA, _Re],
|
|
579
|
-
[0, 0], 2
|
|
580
|
-
];
|
|
581
|
-
var IamIdentityCenterForGet$ = [3, n0, _IICFG,
|
|
582
|
-
0,
|
|
583
|
-
[_IA, _APU, _Re],
|
|
584
|
-
[0, 0, 0]
|
|
585
|
-
];
|
|
586
|
-
var IamIdentityCenterForList$ = [3, n0, _IICFL,
|
|
587
|
-
0,
|
|
588
|
-
[_IA, _APU, _Re],
|
|
589
|
-
[0, 0, 0]
|
|
590
|
-
];
|
|
591
|
-
var IdentitySourceForList$ = [3, n0, _ISFL,
|
|
592
|
-
0,
|
|
593
|
-
[_IST, _ISP, _ISA, _CTr, _S, _SC, _SM],
|
|
594
|
-
[0, () => IdentitySourceParametersForList$, 0, 5, 0, 0, 0]
|
|
595
|
-
];
|
|
596
|
-
var IdentitySourceParameters$ = [3, n0, _ISP,
|
|
597
|
-
0,
|
|
598
|
-
[_IIC],
|
|
599
|
-
[() => IamIdentityCenter$]
|
|
600
|
-
];
|
|
601
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
602
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
603
|
-
[_M],
|
|
604
|
-
[0], 1
|
|
605
|
-
];
|
|
606
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
607
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
608
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
609
|
-
[_M],
|
|
610
|
-
[0], 1
|
|
611
|
-
];
|
|
612
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
613
|
-
var ListApprovalTeamsRequest$ = [3, n0, _LATR,
|
|
614
|
-
0,
|
|
615
|
-
[_MR, _NT],
|
|
616
|
-
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
617
|
-
];
|
|
618
|
-
var ListApprovalTeamsResponse$ = [3, n0, _LATRi,
|
|
619
|
-
0,
|
|
620
|
-
[_NT, _AT],
|
|
621
|
-
[0, [() => ListApprovalTeamsResponseApprovalTeams, 0]]
|
|
622
|
-
];
|
|
623
|
-
var ListApprovalTeamsResponseApprovalTeam$ = [3, n0, _LATRAT,
|
|
624
|
-
0,
|
|
625
|
-
[_CTr, _AS, _NOA, _Ar, _N, _D, _S, _SC, _SM],
|
|
626
|
-
[5, () => ApprovalStrategyResponse$, 1, 0, 0, [() => Description, 0], 0, 0, 0]
|
|
627
|
-
];
|
|
628
|
-
var ListIdentitySourcesRequest$ = [3, n0, _LISR,
|
|
629
|
-
0,
|
|
630
|
-
[_MR, _NT],
|
|
631
|
-
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
632
|
-
];
|
|
633
|
-
var ListIdentitySourcesResponse$ = [3, n0, _LISRi,
|
|
634
|
-
0,
|
|
635
|
-
[_NT, _IS],
|
|
636
|
-
[0, () => IdentitySources]
|
|
637
|
-
];
|
|
638
|
-
var ListPoliciesRequest$ = [3, n0, _LPR,
|
|
639
|
-
0,
|
|
640
|
-
[_MR, _NT],
|
|
641
|
-
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
642
|
-
];
|
|
643
|
-
var ListPoliciesResponse$ = [3, n0, _LPRi,
|
|
644
|
-
0,
|
|
645
|
-
[_NT, _P],
|
|
646
|
-
[0, () => Policies]
|
|
647
|
-
];
|
|
648
|
-
var ListPolicyVersionsRequest$ = [3, n0, _LPVR,
|
|
649
|
-
0,
|
|
650
|
-
[_PA, _MR, _NT],
|
|
651
|
-
[[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
652
|
-
];
|
|
653
|
-
var ListPolicyVersionsResponse$ = [3, n0, _LPVRi,
|
|
654
|
-
0,
|
|
655
|
-
[_NT, _PVo],
|
|
656
|
-
[0, () => PolicyVersions]
|
|
657
|
-
];
|
|
658
|
-
var ListResourcePoliciesRequest$ = [3, n0, _LRPR,
|
|
659
|
-
0,
|
|
660
|
-
[_RA, _MR, _NT],
|
|
661
|
-
[[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
662
|
-
];
|
|
663
|
-
var ListResourcePoliciesResponse$ = [3, n0, _LRPRi,
|
|
664
|
-
0,
|
|
665
|
-
[_NT, _RP],
|
|
666
|
-
[0, () => ListResourcePoliciesResponseResourcePolicies]
|
|
667
|
-
];
|
|
668
|
-
var ListResourcePoliciesResponseResourcePolicy$ = [3, n0, _LRPRRP,
|
|
669
|
-
0,
|
|
670
|
-
[_PA, _PT, _PN],
|
|
671
|
-
[0, 0, 0]
|
|
672
|
-
];
|
|
673
|
-
var ListSessionsRequest$ = [3, n0, _LSR,
|
|
674
|
-
0,
|
|
675
|
-
[_ATA, _MR, _NT, _Fi],
|
|
676
|
-
[[0, 1], 1, 0, () => Filters], 1
|
|
677
|
-
];
|
|
678
|
-
var ListSessionsResponse$ = [3, n0, _LSRi,
|
|
679
|
-
0,
|
|
680
|
-
[_NT, _Se],
|
|
681
|
-
[0, [() => ListSessionsResponseSessions, 0]]
|
|
682
|
-
];
|
|
683
|
-
var ListSessionsResponseSession$ = [3, n0, _LSRS,
|
|
684
|
-
0,
|
|
685
|
-
[_SA, _ATN, _ATA, _IT, _ET, _CTo, _D, _AN, _PRA, _RSP, _RPA, _RR, _RAI, _S, _SC, _SM, _ACS, _ASR],
|
|
686
|
-
[0, 0, 0, 5, 5, 5, [() => Description, 0], 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 | 0]
|
|
687
|
-
];
|
|
688
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
689
|
-
0,
|
|
690
|
-
[_RA],
|
|
691
|
-
[[0, 1]], 1
|
|
692
|
-
];
|
|
693
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
694
|
-
0,
|
|
695
|
-
[_T],
|
|
696
|
-
[[() => Tags, 0]]
|
|
697
|
-
];
|
|
698
|
-
var MfaMethod$ = [3, n0, _MMf,
|
|
699
|
-
0,
|
|
700
|
-
[_Ty, _SS],
|
|
701
|
-
[0, 0], 2
|
|
702
|
-
];
|
|
703
|
-
var MofNApprovalStrategy$ = [3, n0, _MNAS,
|
|
704
|
-
0,
|
|
705
|
-
[_MAR],
|
|
706
|
-
[1], 1
|
|
707
|
-
];
|
|
708
|
-
var PendingUpdate$ = [3, n0, _PU,
|
|
709
|
-
0,
|
|
710
|
-
[_VI, _D, _AS, _NOA, _S, _SC, _SM, _A, _UIT],
|
|
711
|
-
[0, 0, () => ApprovalStrategyResponse$, 1, 0, 0, 0, () => GetApprovalTeamResponseApprovers, 5]
|
|
712
|
-
];
|
|
713
|
-
var Policy$ = [3, n0, _Po,
|
|
714
|
-
0,
|
|
715
|
-
[_Ar, _DV, _PT, _N],
|
|
716
|
-
[0, 1, 0, 0], 4
|
|
717
|
-
];
|
|
718
|
-
var PolicyReference$ = [3, n0, _PR,
|
|
719
|
-
0,
|
|
720
|
-
[_PA],
|
|
721
|
-
[0], 1
|
|
722
|
-
];
|
|
723
|
-
var PolicyVersion$ = [3, n0, _PV,
|
|
724
|
-
0,
|
|
725
|
-
[_Ar, _PA, _VI, _PT, _ID, _N, _S, _CTr, _LUTa, _Do],
|
|
726
|
-
[0, 0, 1, 0, 2, 0, 0, 5, 5, [() => PolicyDocument, 0]], 10
|
|
727
|
-
];
|
|
728
|
-
var PolicyVersionSummary$ = [3, n0, _PVS,
|
|
729
|
-
0,
|
|
730
|
-
[_Ar, _PA, _VI, _PT, _ID, _N, _S, _CTr, _LUTa],
|
|
731
|
-
[0, 0, 1, 0, 2, 0, 0, 5, 5], 9
|
|
732
|
-
];
|
|
733
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
734
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
735
|
-
[_M],
|
|
736
|
-
[0], 1
|
|
737
|
-
];
|
|
738
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
739
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
740
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
741
|
-
[_M],
|
|
742
|
-
[0], 1
|
|
743
|
-
];
|
|
744
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
745
|
-
var StartActiveApprovalTeamDeletionRequest$ = [3, n0, _SAATDR,
|
|
746
|
-
0,
|
|
747
|
-
[_Ar, _PWD],
|
|
748
|
-
[[0, 1], 1], 1
|
|
749
|
-
];
|
|
750
|
-
var StartActiveApprovalTeamDeletionResponse$ = [3, n0, _SAATDRt,
|
|
751
|
-
0,
|
|
752
|
-
[_DCT, _DST],
|
|
753
|
-
[5, 5]
|
|
754
|
-
];
|
|
755
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
756
|
-
0,
|
|
757
|
-
[_RA, _T],
|
|
758
|
-
[[0, 1], [() => Tags, 0]], 2
|
|
759
|
-
];
|
|
760
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
761
|
-
0,
|
|
762
|
-
[],
|
|
763
|
-
[]
|
|
764
|
-
];
|
|
765
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
766
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
767
|
-
[_M],
|
|
768
|
-
[0], 1
|
|
769
|
-
];
|
|
770
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
771
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
772
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
773
|
-
[_M, _RN],
|
|
774
|
-
[0, 0], 1
|
|
775
|
-
];
|
|
776
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
777
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
778
|
-
0,
|
|
779
|
-
[_RA, _TKa],
|
|
780
|
-
[[0, 1], [() => TagKeyList, 0]], 2
|
|
781
|
-
];
|
|
782
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
783
|
-
0,
|
|
784
|
-
[],
|
|
785
|
-
[]
|
|
786
|
-
];
|
|
787
|
-
var UpdateApprovalTeamRequest$ = [3, n0, _UATR,
|
|
788
|
-
0,
|
|
789
|
-
[_Ar, _AS, _A, _D, _UA],
|
|
790
|
-
[[0, 1], () => ApprovalStrategy$, () => ApprovalTeamRequestApprovers, [() => Description, 0], 64 | 0], 1
|
|
791
|
-
];
|
|
792
|
-
var UpdateApprovalTeamResponse$ = [3, n0, _UATRp,
|
|
793
|
-
0,
|
|
794
|
-
[_VI],
|
|
795
|
-
[0]
|
|
796
|
-
];
|
|
797
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
798
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
799
|
-
[_M],
|
|
800
|
-
[0], 1
|
|
801
|
-
];
|
|
802
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
803
|
-
var __Unit = "unit";
|
|
804
|
-
var MPAServiceException$ = [-3, _sm, "MPAServiceException", 0, [], []];
|
|
805
|
-
schema.TypeRegistry.for(_sm).registerError(MPAServiceException$, MPAServiceException);
|
|
806
|
-
var ApprovalTeamRequestApprovers = [1, n0, _ATRAp,
|
|
807
|
-
0, () => ApprovalTeamRequestApprover$
|
|
808
|
-
];
|
|
809
|
-
var Filters = [1, n0, _Fi,
|
|
810
|
-
0, () => Filter$
|
|
811
|
-
];
|
|
812
|
-
var GetApprovalTeamResponseApprovers = [1, n0, _GATRAe,
|
|
813
|
-
0, () => GetApprovalTeamResponseApprover$
|
|
814
|
-
];
|
|
815
|
-
var GetSessionResponseApproverResponses = [1, n0, _GSRARe,
|
|
816
|
-
0, () => GetSessionResponseApproverResponse$
|
|
817
|
-
];
|
|
818
|
-
var IdentitySources = [1, n0, _IS,
|
|
819
|
-
0, () => IdentitySourceForList$
|
|
820
|
-
];
|
|
821
|
-
var ListApprovalTeamsResponseApprovalTeams = [1, n0, _LATRATi,
|
|
822
|
-
0, [() => ListApprovalTeamsResponseApprovalTeam$,
|
|
823
|
-
0]
|
|
824
|
-
];
|
|
825
|
-
var ListResourcePoliciesResponseResourcePolicies = [1, n0, _LRPRRPi,
|
|
826
|
-
0, () => ListResourcePoliciesResponseResourcePolicy$
|
|
827
|
-
];
|
|
828
|
-
var ListSessionsResponseSessions = [1, n0, _LSRSi,
|
|
829
|
-
0, [() => ListSessionsResponseSession$,
|
|
830
|
-
0]
|
|
831
|
-
];
|
|
832
|
-
var MfaMethods = [1, n0, _MM,
|
|
833
|
-
0, () => MfaMethod$
|
|
834
|
-
];
|
|
835
|
-
var Policies = [1, n0, _P,
|
|
836
|
-
0, () => Policy$
|
|
837
|
-
];
|
|
838
|
-
var PoliciesReferences = [1, n0, _PRo,
|
|
839
|
-
0, () => PolicyReference$
|
|
840
|
-
];
|
|
841
|
-
var PolicyVersions = [1, n0, _PVo,
|
|
842
|
-
0, () => PolicyVersionSummary$
|
|
843
|
-
];
|
|
844
|
-
var TagKeyList = [1, n0, _TKL,
|
|
845
|
-
8, [() => TagKey,
|
|
846
|
-
0]
|
|
847
|
-
];
|
|
848
|
-
var SessionMetadata = [2, n0, _SMe,
|
|
849
|
-
8, [() => SessionKey,
|
|
850
|
-
0],
|
|
851
|
-
[() => SessionValue,
|
|
852
|
-
0]
|
|
853
|
-
];
|
|
854
|
-
var Tags = [2, n0, _T,
|
|
855
|
-
8, [() => TagKey,
|
|
856
|
-
0],
|
|
857
|
-
[() => TagValue,
|
|
858
|
-
0]
|
|
859
|
-
];
|
|
860
|
-
var ApprovalStrategy$ = [4, n0, _AS,
|
|
861
|
-
0,
|
|
862
|
-
[_MN],
|
|
863
|
-
[() => MofNApprovalStrategy$]
|
|
864
|
-
];
|
|
865
|
-
var ApprovalStrategyResponse$ = [4, n0, _ASRp,
|
|
866
|
-
0,
|
|
867
|
-
[_MN],
|
|
868
|
-
[() => MofNApprovalStrategy$]
|
|
869
|
-
];
|
|
870
|
-
var IdentitySourceParametersForGet$ = [4, n0, _ISPFG,
|
|
871
|
-
0,
|
|
872
|
-
[_IIC],
|
|
873
|
-
[() => IamIdentityCenterForGet$]
|
|
874
|
-
];
|
|
875
|
-
var IdentitySourceParametersForList$ = [4, n0, _ISPFL,
|
|
876
|
-
0,
|
|
877
|
-
[_IIC],
|
|
878
|
-
[() => IamIdentityCenterForList$]
|
|
879
|
-
];
|
|
880
|
-
var CancelSession$ = [9, n0, _CS,
|
|
881
|
-
{ [_h]: ["PUT", "/sessions/{SessionArn}", 200] }, () => CancelSessionRequest$, () => CancelSessionResponse$
|
|
882
|
-
];
|
|
883
|
-
var CreateApprovalTeam$ = [9, n0, _CAT,
|
|
884
|
-
{ [_h]: ["POST", "/approval-teams", 200] }, () => CreateApprovalTeamRequest$, () => CreateApprovalTeamResponse$
|
|
885
|
-
];
|
|
886
|
-
var CreateIdentitySource$ = [9, n0, _CIS,
|
|
887
|
-
{ [_h]: ["POST", "/identity-sources", 200] }, () => CreateIdentitySourceRequest$, () => CreateIdentitySourceResponse$
|
|
888
|
-
];
|
|
889
|
-
var DeleteIdentitySource$ = [9, n0, _DIS,
|
|
890
|
-
{ [_h]: ["DELETE", "/identity-sources/{IdentitySourceArn}", 200] }, () => DeleteIdentitySourceRequest$, () => __Unit
|
|
891
|
-
];
|
|
892
|
-
var DeleteInactiveApprovalTeamVersion$ = [9, n0, _DIATV,
|
|
893
|
-
{ [_h]: ["DELETE", "/approval-teams/{Arn}/{VersionId}", 200] }, () => DeleteInactiveApprovalTeamVersionRequest$, () => DeleteInactiveApprovalTeamVersionResponse$
|
|
894
|
-
];
|
|
895
|
-
var GetApprovalTeam$ = [9, n0, _GAT,
|
|
896
|
-
{ [_h]: ["GET", "/approval-teams/{Arn}", 200] }, () => GetApprovalTeamRequest$, () => GetApprovalTeamResponse$
|
|
897
|
-
];
|
|
898
|
-
var GetIdentitySource$ = [9, n0, _GIS,
|
|
899
|
-
{ [_h]: ["GET", "/identity-sources/{IdentitySourceArn}", 200] }, () => GetIdentitySourceRequest$, () => GetIdentitySourceResponse$
|
|
900
|
-
];
|
|
901
|
-
var GetPolicyVersion$ = [9, n0, _GPV,
|
|
902
|
-
{ [_h]: ["GET", "/policy-versions/{PolicyVersionArn}", 200] }, () => GetPolicyVersionRequest$, () => GetPolicyVersionResponse$
|
|
903
|
-
];
|
|
904
|
-
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
905
|
-
{ [_h]: ["POST", "/GetResourcePolicy", 200] }, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
|
|
906
|
-
];
|
|
907
|
-
var GetSession$ = [9, n0, _GS,
|
|
908
|
-
{ [_h]: ["GET", "/sessions/{SessionArn}", 200] }, () => GetSessionRequest$, () => GetSessionResponse$
|
|
909
|
-
];
|
|
910
|
-
var ListApprovalTeams$ = [9, n0, _LAT,
|
|
911
|
-
{ [_h]: ["POST", "/approval-teams/?List", 200] }, () => ListApprovalTeamsRequest$, () => ListApprovalTeamsResponse$
|
|
912
|
-
];
|
|
913
|
-
var ListIdentitySources$ = [9, n0, _LIS,
|
|
914
|
-
{ [_h]: ["POST", "/identity-sources/?List", 200] }, () => ListIdentitySourcesRequest$, () => ListIdentitySourcesResponse$
|
|
915
|
-
];
|
|
916
|
-
var ListPolicies$ = [9, n0, _LP,
|
|
917
|
-
{ [_h]: ["POST", "/policies/?List", 200] }, () => ListPoliciesRequest$, () => ListPoliciesResponse$
|
|
918
|
-
];
|
|
919
|
-
var ListPolicyVersions$ = [9, n0, _LPV,
|
|
920
|
-
{ [_h]: ["POST", "/policies/{PolicyArn}/?List", 200] }, () => ListPolicyVersionsRequest$, () => ListPolicyVersionsResponse$
|
|
921
|
-
];
|
|
922
|
-
var ListResourcePolicies$ = [9, n0, _LRP,
|
|
923
|
-
{ [_h]: ["POST", "/resource-policies/{ResourceArn}/?List", 200] }, () => ListResourcePoliciesRequest$, () => ListResourcePoliciesResponse$
|
|
924
|
-
];
|
|
925
|
-
var ListSessions$ = [9, n0, _LS,
|
|
926
|
-
{ [_h]: ["POST", "/approval-teams/{ApprovalTeamArn}/sessions/?List", 200] }, () => ListSessionsRequest$, () => ListSessionsResponse$
|
|
927
|
-
];
|
|
928
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
929
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
930
|
-
];
|
|
931
|
-
var StartActiveApprovalTeamDeletion$ = [9, n0, _SAATD,
|
|
932
|
-
{ [_h]: ["POST", "/approval-teams/{Arn}?Delete", 200] }, () => StartActiveApprovalTeamDeletionRequest$, () => StartActiveApprovalTeamDeletionResponse$
|
|
933
|
-
];
|
|
934
|
-
var TagResource$ = [9, n0, _TR,
|
|
935
|
-
{ [_h]: ["PUT", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
936
|
-
];
|
|
937
|
-
var UntagResource$ = [9, n0, _UR,
|
|
938
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
939
|
-
];
|
|
940
|
-
var UpdateApprovalTeam$ = [9, n0, _UAT,
|
|
941
|
-
{ [_h]: ["PATCH", "/approval-teams/{Arn}", 200] }, () => UpdateApprovalTeamRequest$, () => UpdateApprovalTeamResponse$
|
|
942
|
-
];
|
|
943
|
-
|
|
944
114
|
class CancelSessionCommand extends smithyClient.Command
|
|
945
115
|
.classBuilder()
|
|
946
116
|
.ep(commonParams)
|
|
@@ -949,7 +119,7 @@ class CancelSessionCommand extends smithyClient.Command
|
|
|
949
119
|
})
|
|
950
120
|
.s("AWSFluffyCoreService", "CancelSession", {})
|
|
951
121
|
.n("MPAClient", "CancelSessionCommand")
|
|
952
|
-
.sc(CancelSession$)
|
|
122
|
+
.sc(schemas_0.CancelSession$)
|
|
953
123
|
.build() {
|
|
954
124
|
}
|
|
955
125
|
|
|
@@ -961,7 +131,7 @@ class CreateApprovalTeamCommand extends smithyClient.Command
|
|
|
961
131
|
})
|
|
962
132
|
.s("AWSFluffyCoreService", "CreateApprovalTeam", {})
|
|
963
133
|
.n("MPAClient", "CreateApprovalTeamCommand")
|
|
964
|
-
.sc(CreateApprovalTeam$)
|
|
134
|
+
.sc(schemas_0.CreateApprovalTeam$)
|
|
965
135
|
.build() {
|
|
966
136
|
}
|
|
967
137
|
|
|
@@ -973,7 +143,7 @@ class CreateIdentitySourceCommand extends smithyClient.Command
|
|
|
973
143
|
})
|
|
974
144
|
.s("AWSFluffyCoreService", "CreateIdentitySource", {})
|
|
975
145
|
.n("MPAClient", "CreateIdentitySourceCommand")
|
|
976
|
-
.sc(CreateIdentitySource$)
|
|
146
|
+
.sc(schemas_0.CreateIdentitySource$)
|
|
977
147
|
.build() {
|
|
978
148
|
}
|
|
979
149
|
|
|
@@ -985,7 +155,7 @@ class DeleteIdentitySourceCommand extends smithyClient.Command
|
|
|
985
155
|
})
|
|
986
156
|
.s("AWSFluffyCoreService", "DeleteIdentitySource", {})
|
|
987
157
|
.n("MPAClient", "DeleteIdentitySourceCommand")
|
|
988
|
-
.sc(DeleteIdentitySource$)
|
|
158
|
+
.sc(schemas_0.DeleteIdentitySource$)
|
|
989
159
|
.build() {
|
|
990
160
|
}
|
|
991
161
|
|
|
@@ -997,7 +167,7 @@ class DeleteInactiveApprovalTeamVersionCommand extends smithyClient.Command
|
|
|
997
167
|
})
|
|
998
168
|
.s("AWSFluffyCoreService", "DeleteInactiveApprovalTeamVersion", {})
|
|
999
169
|
.n("MPAClient", "DeleteInactiveApprovalTeamVersionCommand")
|
|
1000
|
-
.sc(DeleteInactiveApprovalTeamVersion$)
|
|
170
|
+
.sc(schemas_0.DeleteInactiveApprovalTeamVersion$)
|
|
1001
171
|
.build() {
|
|
1002
172
|
}
|
|
1003
173
|
|
|
@@ -1009,7 +179,7 @@ class GetApprovalTeamCommand extends smithyClient.Command
|
|
|
1009
179
|
})
|
|
1010
180
|
.s("AWSFluffyCoreService", "GetApprovalTeam", {})
|
|
1011
181
|
.n("MPAClient", "GetApprovalTeamCommand")
|
|
1012
|
-
.sc(GetApprovalTeam$)
|
|
182
|
+
.sc(schemas_0.GetApprovalTeam$)
|
|
1013
183
|
.build() {
|
|
1014
184
|
}
|
|
1015
185
|
|
|
@@ -1021,7 +191,7 @@ class GetIdentitySourceCommand extends smithyClient.Command
|
|
|
1021
191
|
})
|
|
1022
192
|
.s("AWSFluffyCoreService", "GetIdentitySource", {})
|
|
1023
193
|
.n("MPAClient", "GetIdentitySourceCommand")
|
|
1024
|
-
.sc(GetIdentitySource$)
|
|
194
|
+
.sc(schemas_0.GetIdentitySource$)
|
|
1025
195
|
.build() {
|
|
1026
196
|
}
|
|
1027
197
|
|
|
@@ -1033,7 +203,7 @@ class GetPolicyVersionCommand extends smithyClient.Command
|
|
|
1033
203
|
})
|
|
1034
204
|
.s("AWSFluffyCoreService", "GetPolicyVersion", {})
|
|
1035
205
|
.n("MPAClient", "GetPolicyVersionCommand")
|
|
1036
|
-
.sc(GetPolicyVersion$)
|
|
206
|
+
.sc(schemas_0.GetPolicyVersion$)
|
|
1037
207
|
.build() {
|
|
1038
208
|
}
|
|
1039
209
|
|
|
@@ -1045,7 +215,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
1045
215
|
})
|
|
1046
216
|
.s("AWSFluffyCoreService", "GetResourcePolicy", {})
|
|
1047
217
|
.n("MPAClient", "GetResourcePolicyCommand")
|
|
1048
|
-
.sc(GetResourcePolicy$)
|
|
218
|
+
.sc(schemas_0.GetResourcePolicy$)
|
|
1049
219
|
.build() {
|
|
1050
220
|
}
|
|
1051
221
|
|
|
@@ -1057,7 +227,7 @@ class GetSessionCommand extends smithyClient.Command
|
|
|
1057
227
|
})
|
|
1058
228
|
.s("AWSFluffyCoreService", "GetSession", {})
|
|
1059
229
|
.n("MPAClient", "GetSessionCommand")
|
|
1060
|
-
.sc(GetSession$)
|
|
230
|
+
.sc(schemas_0.GetSession$)
|
|
1061
231
|
.build() {
|
|
1062
232
|
}
|
|
1063
233
|
|
|
@@ -1069,7 +239,7 @@ class ListApprovalTeamsCommand extends smithyClient.Command
|
|
|
1069
239
|
})
|
|
1070
240
|
.s("AWSFluffyCoreService", "ListApprovalTeams", {})
|
|
1071
241
|
.n("MPAClient", "ListApprovalTeamsCommand")
|
|
1072
|
-
.sc(ListApprovalTeams$)
|
|
242
|
+
.sc(schemas_0.ListApprovalTeams$)
|
|
1073
243
|
.build() {
|
|
1074
244
|
}
|
|
1075
245
|
|
|
@@ -1081,7 +251,7 @@ class ListIdentitySourcesCommand extends smithyClient.Command
|
|
|
1081
251
|
})
|
|
1082
252
|
.s("AWSFluffyCoreService", "ListIdentitySources", {})
|
|
1083
253
|
.n("MPAClient", "ListIdentitySourcesCommand")
|
|
1084
|
-
.sc(ListIdentitySources$)
|
|
254
|
+
.sc(schemas_0.ListIdentitySources$)
|
|
1085
255
|
.build() {
|
|
1086
256
|
}
|
|
1087
257
|
|
|
@@ -1093,7 +263,7 @@ class ListPoliciesCommand extends smithyClient.Command
|
|
|
1093
263
|
})
|
|
1094
264
|
.s("AWSFluffyCoreService", "ListPolicies", {})
|
|
1095
265
|
.n("MPAClient", "ListPoliciesCommand")
|
|
1096
|
-
.sc(ListPolicies$)
|
|
266
|
+
.sc(schemas_0.ListPolicies$)
|
|
1097
267
|
.build() {
|
|
1098
268
|
}
|
|
1099
269
|
|
|
@@ -1105,7 +275,7 @@ class ListPolicyVersionsCommand extends smithyClient.Command
|
|
|
1105
275
|
})
|
|
1106
276
|
.s("AWSFluffyCoreService", "ListPolicyVersions", {})
|
|
1107
277
|
.n("MPAClient", "ListPolicyVersionsCommand")
|
|
1108
|
-
.sc(ListPolicyVersions$)
|
|
278
|
+
.sc(schemas_0.ListPolicyVersions$)
|
|
1109
279
|
.build() {
|
|
1110
280
|
}
|
|
1111
281
|
|
|
@@ -1117,7 +287,7 @@ class ListResourcePoliciesCommand extends smithyClient.Command
|
|
|
1117
287
|
})
|
|
1118
288
|
.s("AWSFluffyCoreService", "ListResourcePolicies", {})
|
|
1119
289
|
.n("MPAClient", "ListResourcePoliciesCommand")
|
|
1120
|
-
.sc(ListResourcePolicies$)
|
|
290
|
+
.sc(schemas_0.ListResourcePolicies$)
|
|
1121
291
|
.build() {
|
|
1122
292
|
}
|
|
1123
293
|
|
|
@@ -1129,7 +299,7 @@ class ListSessionsCommand extends smithyClient.Command
|
|
|
1129
299
|
})
|
|
1130
300
|
.s("AWSFluffyCoreService", "ListSessions", {})
|
|
1131
301
|
.n("MPAClient", "ListSessionsCommand")
|
|
1132
|
-
.sc(ListSessions$)
|
|
302
|
+
.sc(schemas_0.ListSessions$)
|
|
1133
303
|
.build() {
|
|
1134
304
|
}
|
|
1135
305
|
|
|
@@ -1141,7 +311,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1141
311
|
})
|
|
1142
312
|
.s("AWSFluffyCoreService", "ListTagsForResource", {})
|
|
1143
313
|
.n("MPAClient", "ListTagsForResourceCommand")
|
|
1144
|
-
.sc(ListTagsForResource$)
|
|
314
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1145
315
|
.build() {
|
|
1146
316
|
}
|
|
1147
317
|
|
|
@@ -1153,7 +323,7 @@ class StartActiveApprovalTeamDeletionCommand extends smithyClient.Command
|
|
|
1153
323
|
})
|
|
1154
324
|
.s("AWSFluffyCoreService", "StartActiveApprovalTeamDeletion", {})
|
|
1155
325
|
.n("MPAClient", "StartActiveApprovalTeamDeletionCommand")
|
|
1156
|
-
.sc(StartActiveApprovalTeamDeletion$)
|
|
326
|
+
.sc(schemas_0.StartActiveApprovalTeamDeletion$)
|
|
1157
327
|
.build() {
|
|
1158
328
|
}
|
|
1159
329
|
|
|
@@ -1165,7 +335,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1165
335
|
})
|
|
1166
336
|
.s("AWSFluffyCoreService", "TagResource", {})
|
|
1167
337
|
.n("MPAClient", "TagResourceCommand")
|
|
1168
|
-
.sc(TagResource$)
|
|
338
|
+
.sc(schemas_0.TagResource$)
|
|
1169
339
|
.build() {
|
|
1170
340
|
}
|
|
1171
341
|
|
|
@@ -1177,7 +347,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1177
347
|
})
|
|
1178
348
|
.s("AWSFluffyCoreService", "UntagResource", {})
|
|
1179
349
|
.n("MPAClient", "UntagResourceCommand")
|
|
1180
|
-
.sc(UntagResource$)
|
|
350
|
+
.sc(schemas_0.UntagResource$)
|
|
1181
351
|
.build() {
|
|
1182
352
|
}
|
|
1183
353
|
|
|
@@ -1189,7 +359,7 @@ class UpdateApprovalTeamCommand extends smithyClient.Command
|
|
|
1189
359
|
})
|
|
1190
360
|
.s("AWSFluffyCoreService", "UpdateApprovalTeam", {})
|
|
1191
361
|
.n("MPAClient", "UpdateApprovalTeamCommand")
|
|
1192
|
-
.sc(UpdateApprovalTeam$)
|
|
362
|
+
.sc(schemas_0.UpdateApprovalTeam$)
|
|
1193
363
|
.build() {
|
|
1194
364
|
}
|
|
1195
365
|
|
|
@@ -1355,156 +525,67 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1355
525
|
enumerable: true,
|
|
1356
526
|
get: function () { return smithyClient.Client; }
|
|
1357
527
|
});
|
|
1358
|
-
exports
|
|
1359
|
-
|
|
528
|
+
Object.defineProperty(exports, "MPAServiceException", {
|
|
529
|
+
enumerable: true,
|
|
530
|
+
get: function () { return MPAServiceException.MPAServiceException; }
|
|
531
|
+
});
|
|
1360
532
|
exports.ActionCompletionStrategy = ActionCompletionStrategy;
|
|
1361
533
|
exports.AdditionalSecurityRequirement = AdditionalSecurityRequirement;
|
|
1362
|
-
exports.ApprovalStrategy$ = ApprovalStrategy$;
|
|
1363
|
-
exports.ApprovalStrategyResponse$ = ApprovalStrategyResponse$;
|
|
1364
|
-
exports.ApprovalTeamRequestApprover$ = ApprovalTeamRequestApprover$;
|
|
1365
534
|
exports.ApprovalTeamStatus = ApprovalTeamStatus;
|
|
1366
535
|
exports.ApprovalTeamStatusCode = ApprovalTeamStatusCode;
|
|
1367
|
-
exports.CancelSession$ = CancelSession$;
|
|
1368
536
|
exports.CancelSessionCommand = CancelSessionCommand;
|
|
1369
|
-
exports.CancelSessionRequest$ = CancelSessionRequest$;
|
|
1370
|
-
exports.CancelSessionResponse$ = CancelSessionResponse$;
|
|
1371
|
-
exports.ConflictException = ConflictException;
|
|
1372
|
-
exports.ConflictException$ = ConflictException$;
|
|
1373
|
-
exports.CreateApprovalTeam$ = CreateApprovalTeam$;
|
|
1374
537
|
exports.CreateApprovalTeamCommand = CreateApprovalTeamCommand;
|
|
1375
|
-
exports.CreateApprovalTeamRequest$ = CreateApprovalTeamRequest$;
|
|
1376
|
-
exports.CreateApprovalTeamResponse$ = CreateApprovalTeamResponse$;
|
|
1377
|
-
exports.CreateIdentitySource$ = CreateIdentitySource$;
|
|
1378
538
|
exports.CreateIdentitySourceCommand = CreateIdentitySourceCommand;
|
|
1379
|
-
exports.CreateIdentitySourceRequest$ = CreateIdentitySourceRequest$;
|
|
1380
|
-
exports.CreateIdentitySourceResponse$ = CreateIdentitySourceResponse$;
|
|
1381
|
-
exports.DeleteIdentitySource$ = DeleteIdentitySource$;
|
|
1382
539
|
exports.DeleteIdentitySourceCommand = DeleteIdentitySourceCommand;
|
|
1383
|
-
exports.DeleteIdentitySourceRequest$ = DeleteIdentitySourceRequest$;
|
|
1384
|
-
exports.DeleteInactiveApprovalTeamVersion$ = DeleteInactiveApprovalTeamVersion$;
|
|
1385
540
|
exports.DeleteInactiveApprovalTeamVersionCommand = DeleteInactiveApprovalTeamVersionCommand;
|
|
1386
|
-
exports.DeleteInactiveApprovalTeamVersionRequest$ = DeleteInactiveApprovalTeamVersionRequest$;
|
|
1387
|
-
exports.DeleteInactiveApprovalTeamVersionResponse$ = DeleteInactiveApprovalTeamVersionResponse$;
|
|
1388
|
-
exports.Filter$ = Filter$;
|
|
1389
541
|
exports.FilterField = FilterField;
|
|
1390
|
-
exports.GetApprovalTeam$ = GetApprovalTeam$;
|
|
1391
542
|
exports.GetApprovalTeamCommand = GetApprovalTeamCommand;
|
|
1392
|
-
exports.GetApprovalTeamRequest$ = GetApprovalTeamRequest$;
|
|
1393
|
-
exports.GetApprovalTeamResponse$ = GetApprovalTeamResponse$;
|
|
1394
|
-
exports.GetApprovalTeamResponseApprover$ = GetApprovalTeamResponseApprover$;
|
|
1395
|
-
exports.GetIdentitySource$ = GetIdentitySource$;
|
|
1396
543
|
exports.GetIdentitySourceCommand = GetIdentitySourceCommand;
|
|
1397
|
-
exports.GetIdentitySourceRequest$ = GetIdentitySourceRequest$;
|
|
1398
|
-
exports.GetIdentitySourceResponse$ = GetIdentitySourceResponse$;
|
|
1399
|
-
exports.GetPolicyVersion$ = GetPolicyVersion$;
|
|
1400
544
|
exports.GetPolicyVersionCommand = GetPolicyVersionCommand;
|
|
1401
|
-
exports.GetPolicyVersionRequest$ = GetPolicyVersionRequest$;
|
|
1402
|
-
exports.GetPolicyVersionResponse$ = GetPolicyVersionResponse$;
|
|
1403
|
-
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
1404
545
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
1405
|
-
exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
|
|
1406
|
-
exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
|
|
1407
|
-
exports.GetSession$ = GetSession$;
|
|
1408
546
|
exports.GetSessionCommand = GetSessionCommand;
|
|
1409
|
-
exports.GetSessionRequest$ = GetSessionRequest$;
|
|
1410
|
-
exports.GetSessionResponse$ = GetSessionResponse$;
|
|
1411
|
-
exports.GetSessionResponseApproverResponse$ = GetSessionResponseApproverResponse$;
|
|
1412
|
-
exports.IamIdentityCenter$ = IamIdentityCenter$;
|
|
1413
|
-
exports.IamIdentityCenterForGet$ = IamIdentityCenterForGet$;
|
|
1414
|
-
exports.IamIdentityCenterForList$ = IamIdentityCenterForList$;
|
|
1415
|
-
exports.IdentitySourceForList$ = IdentitySourceForList$;
|
|
1416
|
-
exports.IdentitySourceParameters$ = IdentitySourceParameters$;
|
|
1417
|
-
exports.IdentitySourceParametersForGet$ = IdentitySourceParametersForGet$;
|
|
1418
|
-
exports.IdentitySourceParametersForList$ = IdentitySourceParametersForList$;
|
|
1419
547
|
exports.IdentitySourceStatus = IdentitySourceStatus;
|
|
1420
548
|
exports.IdentitySourceStatusCode = IdentitySourceStatusCode;
|
|
1421
549
|
exports.IdentitySourceType = IdentitySourceType;
|
|
1422
550
|
exports.IdentityStatus = IdentityStatus;
|
|
1423
|
-
exports.InternalServerException = InternalServerException;
|
|
1424
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1425
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
1426
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
1427
|
-
exports.ListApprovalTeams$ = ListApprovalTeams$;
|
|
1428
551
|
exports.ListApprovalTeamsCommand = ListApprovalTeamsCommand;
|
|
1429
|
-
exports.ListApprovalTeamsRequest$ = ListApprovalTeamsRequest$;
|
|
1430
|
-
exports.ListApprovalTeamsResponse$ = ListApprovalTeamsResponse$;
|
|
1431
|
-
exports.ListApprovalTeamsResponseApprovalTeam$ = ListApprovalTeamsResponseApprovalTeam$;
|
|
1432
|
-
exports.ListIdentitySources$ = ListIdentitySources$;
|
|
1433
552
|
exports.ListIdentitySourcesCommand = ListIdentitySourcesCommand;
|
|
1434
|
-
exports.ListIdentitySourcesRequest$ = ListIdentitySourcesRequest$;
|
|
1435
|
-
exports.ListIdentitySourcesResponse$ = ListIdentitySourcesResponse$;
|
|
1436
|
-
exports.ListPolicies$ = ListPolicies$;
|
|
1437
553
|
exports.ListPoliciesCommand = ListPoliciesCommand;
|
|
1438
|
-
exports.ListPoliciesRequest$ = ListPoliciesRequest$;
|
|
1439
|
-
exports.ListPoliciesResponse$ = ListPoliciesResponse$;
|
|
1440
|
-
exports.ListPolicyVersions$ = ListPolicyVersions$;
|
|
1441
554
|
exports.ListPolicyVersionsCommand = ListPolicyVersionsCommand;
|
|
1442
|
-
exports.ListPolicyVersionsRequest$ = ListPolicyVersionsRequest$;
|
|
1443
|
-
exports.ListPolicyVersionsResponse$ = ListPolicyVersionsResponse$;
|
|
1444
|
-
exports.ListResourcePolicies$ = ListResourcePolicies$;
|
|
1445
555
|
exports.ListResourcePoliciesCommand = ListResourcePoliciesCommand;
|
|
1446
|
-
exports.ListResourcePoliciesRequest$ = ListResourcePoliciesRequest$;
|
|
1447
|
-
exports.ListResourcePoliciesResponse$ = ListResourcePoliciesResponse$;
|
|
1448
|
-
exports.ListResourcePoliciesResponseResourcePolicy$ = ListResourcePoliciesResponseResourcePolicy$;
|
|
1449
|
-
exports.ListSessions$ = ListSessions$;
|
|
1450
556
|
exports.ListSessionsCommand = ListSessionsCommand;
|
|
1451
|
-
exports.ListSessionsRequest$ = ListSessionsRequest$;
|
|
1452
|
-
exports.ListSessionsResponse$ = ListSessionsResponse$;
|
|
1453
|
-
exports.ListSessionsResponseSession$ = ListSessionsResponseSession$;
|
|
1454
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1455
557
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1456
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1457
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1458
558
|
exports.MPA = MPA;
|
|
1459
559
|
exports.MPAClient = MPAClient;
|
|
1460
|
-
exports.MPAServiceException = MPAServiceException;
|
|
1461
|
-
exports.MPAServiceException$ = MPAServiceException$;
|
|
1462
|
-
exports.MfaMethod$ = MfaMethod$;
|
|
1463
560
|
exports.MfaSyncStatus = MfaSyncStatus;
|
|
1464
561
|
exports.MfaType = MfaType;
|
|
1465
|
-
exports.MofNApprovalStrategy$ = MofNApprovalStrategy$;
|
|
1466
562
|
exports.Operator = Operator;
|
|
1467
|
-
exports.PendingUpdate$ = PendingUpdate$;
|
|
1468
|
-
exports.Policy$ = Policy$;
|
|
1469
|
-
exports.PolicyReference$ = PolicyReference$;
|
|
1470
563
|
exports.PolicyStatus = PolicyStatus;
|
|
1471
564
|
exports.PolicyType = PolicyType;
|
|
1472
|
-
exports.PolicyVersion$ = PolicyVersion$;
|
|
1473
|
-
exports.PolicyVersionSummary$ = PolicyVersionSummary$;
|
|
1474
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1475
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1476
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1477
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1478
565
|
exports.SessionExecutionStatus = SessionExecutionStatus;
|
|
1479
566
|
exports.SessionResponse = SessionResponse;
|
|
1480
567
|
exports.SessionStatus = SessionStatus;
|
|
1481
568
|
exports.SessionStatusCode = SessionStatusCode;
|
|
1482
|
-
exports.StartActiveApprovalTeamDeletion$ = StartActiveApprovalTeamDeletion$;
|
|
1483
569
|
exports.StartActiveApprovalTeamDeletionCommand = StartActiveApprovalTeamDeletionCommand;
|
|
1484
|
-
exports.StartActiveApprovalTeamDeletionRequest$ = StartActiveApprovalTeamDeletionRequest$;
|
|
1485
|
-
exports.StartActiveApprovalTeamDeletionResponse$ = StartActiveApprovalTeamDeletionResponse$;
|
|
1486
|
-
exports.TagResource$ = TagResource$;
|
|
1487
570
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1488
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1489
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1490
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1491
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1492
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
1493
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1494
|
-
exports.UntagResource$ = UntagResource$;
|
|
1495
571
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1496
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1497
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1498
572
|
exports.UpdateAction = UpdateAction;
|
|
1499
|
-
exports.UpdateApprovalTeam$ = UpdateApprovalTeam$;
|
|
1500
573
|
exports.UpdateApprovalTeamCommand = UpdateApprovalTeamCommand;
|
|
1501
|
-
exports.UpdateApprovalTeamRequest$ = UpdateApprovalTeamRequest$;
|
|
1502
|
-
exports.UpdateApprovalTeamResponse$ = UpdateApprovalTeamResponse$;
|
|
1503
|
-
exports.ValidationException = ValidationException;
|
|
1504
|
-
exports.ValidationException$ = ValidationException$;
|
|
1505
574
|
exports.paginateListApprovalTeams = paginateListApprovalTeams;
|
|
1506
575
|
exports.paginateListIdentitySources = paginateListIdentitySources;
|
|
1507
576
|
exports.paginateListPolicies = paginateListPolicies;
|
|
1508
577
|
exports.paginateListPolicyVersions = paginateListPolicyVersions;
|
|
1509
578
|
exports.paginateListResourcePolicies = paginateListResourcePolicies;
|
|
1510
579
|
exports.paginateListSessions = paginateListSessions;
|
|
580
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
581
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
582
|
+
enumerable: true,
|
|
583
|
+
get: function () { return schemas_0[k]; }
|
|
584
|
+
});
|
|
585
|
+
});
|
|
586
|
+
Object.keys(errors).forEach(function (k) {
|
|
587
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
588
|
+
enumerable: true,
|
|
589
|
+
get: function () { return errors[k]; }
|
|
590
|
+
});
|
|
591
|
+
});
|