@aws-sdk/client-rolesanywhere 3.948.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +293 -210
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateProfileCommand.js +2 -2
- package/dist-es/commands/CreateTrustAnchorCommand.js +2 -2
- package/dist-es/commands/DeleteAttributeMappingCommand.js +2 -2
- package/dist-es/commands/DeleteCrlCommand.js +2 -2
- package/dist-es/commands/DeleteProfileCommand.js +2 -2
- package/dist-es/commands/DeleteTrustAnchorCommand.js +2 -2
- package/dist-es/commands/DisableCrlCommand.js +2 -2
- package/dist-es/commands/DisableProfileCommand.js +2 -2
- package/dist-es/commands/DisableTrustAnchorCommand.js +2 -2
- package/dist-es/commands/EnableCrlCommand.js +2 -2
- package/dist-es/commands/EnableProfileCommand.js +2 -2
- package/dist-es/commands/EnableTrustAnchorCommand.js +2 -2
- package/dist-es/commands/GetCrlCommand.js +2 -2
- package/dist-es/commands/GetProfileCommand.js +2 -2
- package/dist-es/commands/GetSubjectCommand.js +2 -2
- package/dist-es/commands/GetTrustAnchorCommand.js +2 -2
- package/dist-es/commands/ImportCrlCommand.js +2 -2
- package/dist-es/commands/ListCrlsCommand.js +2 -2
- package/dist-es/commands/ListProfilesCommand.js +2 -2
- package/dist-es/commands/ListSubjectsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTrustAnchorsCommand.js +2 -2
- package/dist-es/commands/PutAttributeMappingCommand.js +2 -2
- package/dist-es/commands/PutNotificationSettingsCommand.js +2 -2
- package/dist-es/commands/ResetNotificationSettingsCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCrlCommand.js +2 -2
- package/dist-es/commands/UpdateProfileCommand.js +2 -2
- package/dist-es/commands/UpdateTrustAnchorCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +176 -176
- package/dist-types/RolesAnywhereClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +84 -103
- package/dist-types/ts3.4/RolesAnywhereClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +83 -104
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class RolesAnywhereClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class RolesAnywhereServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, RolesAnywhereServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends RolesAnywhereServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends RolesAnywhereS
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class ValidationException extends RolesAnywhereServiceException {
|
|
133
133
|
name = "ValidationException";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,8 +140,8 @@ let ValidationException$1 = class ValidationException extends RolesAnywhereServi
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
|
|
143
|
+
}
|
|
144
|
+
class ResourceNotFoundException extends RolesAnywhereServiceException {
|
|
145
145
|
name = "ResourceNotFoundException";
|
|
146
146
|
$fault = "client";
|
|
147
147
|
constructor(opts) {
|
|
@@ -152,8 +152,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends RolesA
|
|
|
152
152
|
});
|
|
153
153
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
155
|
+
}
|
|
156
|
+
class TooManyTagsException extends RolesAnywhereServiceException {
|
|
157
157
|
name = "TooManyTagsException";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
constructor(opts) {
|
|
@@ -164,7 +164,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends RolesAnywhereSer
|
|
|
164
164
|
});
|
|
165
165
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
166
166
|
}
|
|
167
|
-
}
|
|
167
|
+
}
|
|
168
168
|
|
|
169
169
|
const _ADE = "AccessDeniedException";
|
|
170
170
|
const _AM = "AttributeMapping";
|
|
@@ -333,10 +333,10 @@ const _xS = "x509Subject";
|
|
|
333
333
|
const n0 = "com.amazonaws.rolesanywhere";
|
|
334
334
|
var TagKey = [0, n0, _TK, 8, 0];
|
|
335
335
|
var TagValue = [0, n0, _TV, 8, 0];
|
|
336
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
337
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
338
|
-
var AttributeMapping = [3, n0, _AM, 0, [_cF, _mR], [0, () => MappingRules]];
|
|
339
|
-
var CreateProfileRequest = [
|
|
336
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
337
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
338
|
+
var AttributeMapping$ = [3, n0, _AM, 0, [_cF, _mR], [0, () => MappingRules]];
|
|
339
|
+
var CreateProfileRequest$ = [
|
|
340
340
|
3,
|
|
341
341
|
n0,
|
|
342
342
|
_CPR,
|
|
@@ -344,15 +344,15 @@ var CreateProfileRequest = [
|
|
|
344
344
|
[_n, _rIP, _sP, _rA, _mPA, _dS, _en, _t, _aRSN],
|
|
345
345
|
[0, 2, 0, 64 | 0, 64 | 0, 1, 2, [() => TagList, 0], 2],
|
|
346
346
|
];
|
|
347
|
-
var CreateTrustAnchorRequest = [
|
|
347
|
+
var CreateTrustAnchorRequest$ = [
|
|
348
348
|
3,
|
|
349
349
|
n0,
|
|
350
350
|
_CTAR,
|
|
351
351
|
0,
|
|
352
352
|
[_n, _s, _en, _t, _nS],
|
|
353
|
-
[0, () => Source
|
|
353
|
+
[0, () => Source$, 2, [() => TagList, 0], () => NotificationSettings],
|
|
354
354
|
];
|
|
355
|
-
var CredentialSummary = [
|
|
355
|
+
var CredentialSummary$ = [
|
|
356
356
|
3,
|
|
357
357
|
n0,
|
|
358
358
|
_CS,
|
|
@@ -360,7 +360,7 @@ var CredentialSummary = [
|
|
|
360
360
|
[_sA, _sN, _i, _en, _xCD, _f],
|
|
361
361
|
[5, 0, 0, 2, 0, 2],
|
|
362
362
|
];
|
|
363
|
-
var CrlDetail = [
|
|
363
|
+
var CrlDetail$ = [
|
|
364
364
|
3,
|
|
365
365
|
n0,
|
|
366
366
|
_CD,
|
|
@@ -368,8 +368,8 @@ var CrlDetail = [
|
|
|
368
368
|
[_cI, _cA, _n, _en, _cD, _tAA, _cAr, _uA],
|
|
369
369
|
[0, 0, 0, 2, 21, 0, 5, 5],
|
|
370
370
|
];
|
|
371
|
-
var CrlDetailResponse = [3, n0, _CDR, 0, [_cr], [() => CrlDetail]];
|
|
372
|
-
var DeleteAttributeMappingRequest = [
|
|
371
|
+
var CrlDetailResponse$ = [3, n0, _CDR, 0, [_cr], [() => CrlDetail$]];
|
|
372
|
+
var DeleteAttributeMappingRequest$ = [
|
|
373
373
|
3,
|
|
374
374
|
n0,
|
|
375
375
|
_DAMR,
|
|
@@ -381,8 +381,8 @@ var DeleteAttributeMappingRequest = [
|
|
|
381
381
|
[64 | 0, { [_hQ]: _sp }],
|
|
382
382
|
],
|
|
383
383
|
];
|
|
384
|
-
var DeleteAttributeMappingResponse = [3, n0, _DAMRe, 0, [_p], [() => ProfileDetail]];
|
|
385
|
-
var ImportCrlRequest = [
|
|
384
|
+
var DeleteAttributeMappingResponse$ = [3, n0, _DAMRe, 0, [_p], [() => ProfileDetail$]];
|
|
385
|
+
var ImportCrlRequest$ = [
|
|
386
386
|
3,
|
|
387
387
|
n0,
|
|
388
388
|
_ICR,
|
|
@@ -390,10 +390,10 @@ var ImportCrlRequest = [
|
|
|
390
390
|
[_n, _cD, _en, _t, _tAA],
|
|
391
391
|
[0, 21, 2, [() => TagList, 0], 0],
|
|
392
392
|
];
|
|
393
|
-
var InstanceProperty = [3, n0, _IP, 0, [_sA, _pr, _f], [5, 128 | 0, 2]];
|
|
394
|
-
var ListCrlsResponse = [3, n0, _LCR, 0, [_nT, _crl], [0, () => CrlDetails]];
|
|
395
|
-
var ListProfilesResponse = [3, n0, _LPR, 0, [_nT, _pro], [0, () => ProfileDetails]];
|
|
396
|
-
var ListRequest = [
|
|
393
|
+
var InstanceProperty$ = [3, n0, _IP, 0, [_sA, _pr, _f], [5, 128 | 0, 2]];
|
|
394
|
+
var ListCrlsResponse$ = [3, n0, _LCR, 0, [_nT, _crl], [0, () => CrlDetails]];
|
|
395
|
+
var ListProfilesResponse$ = [3, n0, _LPR, 0, [_nT, _pro], [0, () => ProfileDetails]];
|
|
396
|
+
var ListRequest$ = [
|
|
397
397
|
3,
|
|
398
398
|
n0,
|
|
399
399
|
_LR,
|
|
@@ -404,10 +404,10 @@ var ListRequest = [
|
|
|
404
404
|
[1, { [_hQ]: _pS }],
|
|
405
405
|
],
|
|
406
406
|
];
|
|
407
|
-
var ListSubjectsResponse = [3, n0, _LSR, 0, [_su, _nT], [() => SubjectSummaries, 0]];
|
|
408
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, { [_hQ]: _rAe }]]];
|
|
409
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [[() => TagList, 0]]];
|
|
410
|
-
var ListTrustAnchorsResponse = [
|
|
407
|
+
var ListSubjectsResponse$ = [3, n0, _LSR, 0, [_su, _nT], [() => SubjectSummaries, 0]];
|
|
408
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rAe], [[0, { [_hQ]: _rAe }]]];
|
|
409
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [[() => TagList, 0]]];
|
|
410
|
+
var ListTrustAnchorsResponse$ = [
|
|
411
411
|
3,
|
|
412
412
|
n0,
|
|
413
413
|
_LTAR,
|
|
@@ -415,9 +415,9 @@ var ListTrustAnchorsResponse = [
|
|
|
415
415
|
[_nT, _tA],
|
|
416
416
|
[0, () => TrustAnchorDetails],
|
|
417
417
|
];
|
|
418
|
-
var MappingRule = [3, n0, _MR, 0, [_spe], [0]];
|
|
419
|
-
var NotificationSetting = [3, n0, _NS, 0, [_en, _ev, _th, _ch], [2, 0, 1, 0]];
|
|
420
|
-
var NotificationSettingDetail = [
|
|
418
|
+
var MappingRule$ = [3, n0, _MR, 0, [_spe], [0]];
|
|
419
|
+
var NotificationSetting$ = [3, n0, _NS, 0, [_en, _ev, _th, _ch], [2, 0, 1, 0]];
|
|
420
|
+
var NotificationSettingDetail$ = [
|
|
421
421
|
3,
|
|
422
422
|
n0,
|
|
423
423
|
_NSD,
|
|
@@ -425,8 +425,8 @@ var NotificationSettingDetail = [
|
|
|
425
425
|
[_en, _ev, _th, _ch, _cB],
|
|
426
426
|
[2, 0, 1, 0, 0],
|
|
427
427
|
];
|
|
428
|
-
var NotificationSettingKey = [3, n0, _NSK, 0, [_ev, _ch], [0, 0]];
|
|
429
|
-
var ProfileDetail = [
|
|
428
|
+
var NotificationSettingKey$ = [3, n0, _NSK, 0, [_ev, _ch], [0, 0]];
|
|
429
|
+
var ProfileDetail$ = [
|
|
430
430
|
3,
|
|
431
431
|
n0,
|
|
432
432
|
_PD,
|
|
@@ -434,8 +434,8 @@ var ProfileDetail = [
|
|
|
434
434
|
[_pI, _pA, _n, _rIP, _en, _cBr, _sP, _rA, _mPA, _cAr, _uA, _dS, _aRSN, _aM],
|
|
435
435
|
[0, 0, 0, 2, 2, 0, 0, 64 | 0, 64 | 0, 5, 5, 1, 2, () => AttributeMappings],
|
|
436
436
|
];
|
|
437
|
-
var ProfileDetailResponse = [3, n0, _PDR, 0, [_p], [() => ProfileDetail]];
|
|
438
|
-
var PutAttributeMappingRequest = [
|
|
437
|
+
var ProfileDetailResponse$ = [3, n0, _PDR, 0, [_p], [() => ProfileDetail$]];
|
|
438
|
+
var PutAttributeMappingRequest$ = [
|
|
439
439
|
3,
|
|
440
440
|
n0,
|
|
441
441
|
_PAMR,
|
|
@@ -443,8 +443,8 @@ var PutAttributeMappingRequest = [
|
|
|
443
443
|
[_pI, _cF, _mR],
|
|
444
444
|
[[0, 1], 0, () => MappingRules],
|
|
445
445
|
];
|
|
446
|
-
var PutAttributeMappingResponse = [3, n0, _PAMRu, 0, [_p], [() => ProfileDetail]];
|
|
447
|
-
var PutNotificationSettingsRequest = [
|
|
446
|
+
var PutAttributeMappingResponse$ = [3, n0, _PAMRu, 0, [_p], [() => ProfileDetail$]];
|
|
447
|
+
var PutNotificationSettingsRequest$ = [
|
|
448
448
|
3,
|
|
449
449
|
n0,
|
|
450
450
|
_PNSR,
|
|
@@ -452,15 +452,15 @@ var PutNotificationSettingsRequest = [
|
|
|
452
452
|
[_tAI, _nS],
|
|
453
453
|
[0, () => NotificationSettings],
|
|
454
454
|
];
|
|
455
|
-
var PutNotificationSettingsResponse = [
|
|
455
|
+
var PutNotificationSettingsResponse$ = [
|
|
456
456
|
3,
|
|
457
457
|
n0,
|
|
458
458
|
_PNSRu,
|
|
459
459
|
0,
|
|
460
460
|
[_tAr],
|
|
461
|
-
[() => TrustAnchorDetail],
|
|
461
|
+
[() => TrustAnchorDetail$],
|
|
462
462
|
];
|
|
463
|
-
var ResetNotificationSettingsRequest = [
|
|
463
|
+
var ResetNotificationSettingsRequest$ = [
|
|
464
464
|
3,
|
|
465
465
|
n0,
|
|
466
466
|
_RNSR,
|
|
@@ -468,22 +468,22 @@ var ResetNotificationSettingsRequest = [
|
|
|
468
468
|
[_tAI, _nSK],
|
|
469
469
|
[0, () => NotificationSettingKeys],
|
|
470
470
|
];
|
|
471
|
-
var ResetNotificationSettingsResponse = [
|
|
471
|
+
var ResetNotificationSettingsResponse$ = [
|
|
472
472
|
3,
|
|
473
473
|
n0,
|
|
474
474
|
_RNSRe,
|
|
475
475
|
0,
|
|
476
476
|
[_tAr],
|
|
477
|
-
[() => TrustAnchorDetail],
|
|
477
|
+
[() => TrustAnchorDetail$],
|
|
478
478
|
];
|
|
479
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
480
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
481
|
-
var ScalarCrlRequest = [3, n0, _SCR, 0, [_cI], [[0, 1]]];
|
|
482
|
-
var ScalarProfileRequest = [3, n0, _SPR, 0, [_pI], [[0, 1]]];
|
|
483
|
-
var ScalarSubjectRequest = [3, n0, _SSR, 0, [_sI], [[0, 1]]];
|
|
484
|
-
var ScalarTrustAnchorRequest = [3, n0, _STAR, 0, [_tAI], [[0, 1]]];
|
|
485
|
-
var Source = [3, n0, _S, 0, [_sT, _sD], [0, () => SourceData]];
|
|
486
|
-
var SubjectDetail = [
|
|
479
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
480
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
481
|
+
var ScalarCrlRequest$ = [3, n0, _SCR, 0, [_cI], [[0, 1]]];
|
|
482
|
+
var ScalarProfileRequest$ = [3, n0, _SPR, 0, [_pI], [[0, 1]]];
|
|
483
|
+
var ScalarSubjectRequest$ = [3, n0, _SSR, 0, [_sI], [[0, 1]]];
|
|
484
|
+
var ScalarTrustAnchorRequest$ = [3, n0, _STAR, 0, [_tAI], [[0, 1]]];
|
|
485
|
+
var Source$ = [3, n0, _S, 0, [_sT, _sD], [0, () => SourceData$]];
|
|
486
|
+
var SubjectDetail$ = [
|
|
487
487
|
3,
|
|
488
488
|
n0,
|
|
489
489
|
_SD,
|
|
@@ -491,8 +491,8 @@ var SubjectDetail = [
|
|
|
491
491
|
[_sAu, _sI, _en, _xS, _lSA, _cAr, _uA, _cre, _iP],
|
|
492
492
|
[0, 0, 2, 0, 5, 5, 5, () => CredentialSummaries, () => InstanceProperties],
|
|
493
493
|
];
|
|
494
|
-
var SubjectDetailResponse = [3, n0, _SDR, 0, [_sub], [() => SubjectDetail]];
|
|
495
|
-
var SubjectSummary = [
|
|
494
|
+
var SubjectDetailResponse$ = [3, n0, _SDR, 0, [_sub], [() => SubjectDetail$]];
|
|
495
|
+
var SubjectSummary$ = [
|
|
496
496
|
3,
|
|
497
497
|
n0,
|
|
498
498
|
_SS,
|
|
@@ -500,7 +500,7 @@ var SubjectSummary = [
|
|
|
500
500
|
[_sAu, _sI, _en, _xS, _lSA, _cAr, _uA],
|
|
501
501
|
[0, 0, 2, 0, 5, 5, 5],
|
|
502
502
|
];
|
|
503
|
-
var Tag = [
|
|
503
|
+
var Tag$ = [
|
|
504
504
|
3,
|
|
505
505
|
n0,
|
|
506
506
|
_T,
|
|
@@ -511,23 +511,23 @@ var Tag = [
|
|
|
511
511
|
[() => TagValue, 0],
|
|
512
512
|
],
|
|
513
513
|
];
|
|
514
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _t], [0, [() => TagList, 0]]];
|
|
515
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
516
|
-
var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
517
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException
|
|
518
|
-
var TrustAnchorDetail = [
|
|
514
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_rAe, _t], [0, [() => TagList, 0]]];
|
|
515
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
516
|
+
var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
517
|
+
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
518
|
+
var TrustAnchorDetail$ = [
|
|
519
519
|
3,
|
|
520
520
|
n0,
|
|
521
521
|
_TAD,
|
|
522
522
|
0,
|
|
523
523
|
[_tAI, _tAA, _n, _s, _en, _cAr, _uA, _nS],
|
|
524
|
-
[0, 0, 0, () => Source
|
|
524
|
+
[0, 0, 0, () => Source$, 2, 5, 5, () => NotificationSettingDetails],
|
|
525
525
|
];
|
|
526
|
-
var TrustAnchorDetailResponse = [3, n0, _TADR, 0, [_tAr], [() => TrustAnchorDetail]];
|
|
527
|
-
var UntagResourceRequest = [3, n0, _URR, 0, [_rAe, _tK], [0, [() => TagKeyList, 0]]];
|
|
528
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
529
|
-
var UpdateCrlRequest = [3, n0, _UCR, 0, [_cI, _n, _cD], [[0, 1], 0, 21]];
|
|
530
|
-
var UpdateProfileRequest = [
|
|
526
|
+
var TrustAnchorDetailResponse$ = [3, n0, _TADR, 0, [_tAr], [() => TrustAnchorDetail$]];
|
|
527
|
+
var UntagResourceRequest$ = [3, n0, _URR, 0, [_rAe, _tK], [0, [() => TagKeyList, 0]]];
|
|
528
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
529
|
+
var UpdateCrlRequest$ = [3, n0, _UCR, 0, [_cI, _n, _cD], [[0, 1], 0, 21]];
|
|
530
|
+
var UpdateProfileRequest$ = [
|
|
531
531
|
3,
|
|
532
532
|
n0,
|
|
533
533
|
_UPR,
|
|
@@ -535,271 +535,271 @@ var UpdateProfileRequest = [
|
|
|
535
535
|
[_pI, _n, _sP, _rA, _mPA, _dS, _aRSN],
|
|
536
536
|
[[0, 1], 0, 0, 64 | 0, 64 | 0, 1, 2],
|
|
537
537
|
];
|
|
538
|
-
var UpdateTrustAnchorRequest = [
|
|
538
|
+
var UpdateTrustAnchorRequest$ = [
|
|
539
539
|
3,
|
|
540
540
|
n0,
|
|
541
541
|
_UTAR,
|
|
542
542
|
0,
|
|
543
543
|
[_tAI, _n, _s],
|
|
544
|
-
[[0, 1], 0, () => Source],
|
|
544
|
+
[[0, 1], 0, () => Source$],
|
|
545
545
|
];
|
|
546
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
547
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
548
|
-
var RolesAnywhereServiceException = [-3, _sm, "RolesAnywhereServiceException", 0, [], []];
|
|
549
|
-
schema.TypeRegistry.for(_sm).registerError(RolesAnywhereServiceException
|
|
550
|
-
var AttributeMappings = [1, n0, _AMt, 0, () => AttributeMapping];
|
|
551
|
-
var CredentialSummaries = [1, n0, _CSr, 0, () => CredentialSummary];
|
|
552
|
-
var CrlDetails = [1, n0, _CDr, 0, () => CrlDetail];
|
|
553
|
-
var InstanceProperties = [1, n0, _IPn, 0, () => InstanceProperty];
|
|
554
|
-
var MappingRules = [1, n0, _MRa, 0, () => MappingRule];
|
|
555
|
-
var NotificationSettingDetails = [1, n0, _NSDo, 0, () => NotificationSettingDetail];
|
|
556
|
-
var NotificationSettingKeys = [1, n0, _NSKo, 0, () => NotificationSettingKey];
|
|
557
|
-
var NotificationSettings = [1, n0, _NSo, 0, () => NotificationSetting];
|
|
558
|
-
var ProfileDetails = [1, n0, _PDr, 0, () => ProfileDetail];
|
|
559
|
-
var SubjectSummaries = [1, n0, _SSu, 0, () => SubjectSummary];
|
|
546
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
547
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
548
|
+
var RolesAnywhereServiceException$ = [-3, _sm, "RolesAnywhereServiceException", 0, [], []];
|
|
549
|
+
schema.TypeRegistry.for(_sm).registerError(RolesAnywhereServiceException$, RolesAnywhereServiceException);
|
|
550
|
+
var AttributeMappings = [1, n0, _AMt, 0, () => AttributeMapping$];
|
|
551
|
+
var CredentialSummaries = [1, n0, _CSr, 0, () => CredentialSummary$];
|
|
552
|
+
var CrlDetails = [1, n0, _CDr, 0, () => CrlDetail$];
|
|
553
|
+
var InstanceProperties = [1, n0, _IPn, 0, () => InstanceProperty$];
|
|
554
|
+
var MappingRules = [1, n0, _MRa, 0, () => MappingRule$];
|
|
555
|
+
var NotificationSettingDetails = [1, n0, _NSDo, 0, () => NotificationSettingDetail$];
|
|
556
|
+
var NotificationSettingKeys = [1, n0, _NSKo, 0, () => NotificationSettingKey$];
|
|
557
|
+
var NotificationSettings = [1, n0, _NSo, 0, () => NotificationSetting$];
|
|
558
|
+
var ProfileDetails = [1, n0, _PDr, 0, () => ProfileDetail$];
|
|
559
|
+
var SubjectSummaries = [1, n0, _SSu, 0, () => SubjectSummary$];
|
|
560
560
|
var TagKeyList = [1, n0, _TKL, 0, [() => TagKey, 0]];
|
|
561
|
-
var TagList = [1, n0, _TL, 0, [() => Tag
|
|
562
|
-
var TrustAnchorDetails = [1, n0, _TADr, 0, () => TrustAnchorDetail];
|
|
563
|
-
var SourceData = [3, n0, _SDo, 0, [_xCD, _aPA], [0, 0]];
|
|
564
|
-
var CreateProfile = [
|
|
561
|
+
var TagList = [1, n0, _TL, 0, [() => Tag$, 0]];
|
|
562
|
+
var TrustAnchorDetails = [1, n0, _TADr, 0, () => TrustAnchorDetail$];
|
|
563
|
+
var SourceData$ = [3, n0, _SDo, 0, [_xCD, _aPA], [0, 0]];
|
|
564
|
+
var CreateProfile$ = [
|
|
565
565
|
9,
|
|
566
566
|
n0,
|
|
567
567
|
_CP,
|
|
568
568
|
{ [_h]: ["POST", "/profiles", 201] },
|
|
569
|
-
() => CreateProfileRequest
|
|
570
|
-
() => ProfileDetailResponse
|
|
569
|
+
() => CreateProfileRequest$,
|
|
570
|
+
() => ProfileDetailResponse$,
|
|
571
571
|
];
|
|
572
|
-
var CreateTrustAnchor = [
|
|
572
|
+
var CreateTrustAnchor$ = [
|
|
573
573
|
9,
|
|
574
574
|
n0,
|
|
575
575
|
_CTA,
|
|
576
576
|
{ [_h]: ["POST", "/trustanchors", 201] },
|
|
577
|
-
() => CreateTrustAnchorRequest
|
|
578
|
-
() => TrustAnchorDetailResponse
|
|
577
|
+
() => CreateTrustAnchorRequest$,
|
|
578
|
+
() => TrustAnchorDetailResponse$,
|
|
579
579
|
];
|
|
580
|
-
var DeleteAttributeMapping = [
|
|
580
|
+
var DeleteAttributeMapping$ = [
|
|
581
581
|
9,
|
|
582
582
|
n0,
|
|
583
583
|
_DAM,
|
|
584
584
|
{ [_h]: ["DELETE", "/profiles/{profileId}/mappings", 200] },
|
|
585
|
-
() => DeleteAttributeMappingRequest
|
|
586
|
-
() => DeleteAttributeMappingResponse
|
|
585
|
+
() => DeleteAttributeMappingRequest$,
|
|
586
|
+
() => DeleteAttributeMappingResponse$,
|
|
587
587
|
];
|
|
588
|
-
var DeleteCrl = [
|
|
588
|
+
var DeleteCrl$ = [
|
|
589
589
|
9,
|
|
590
590
|
n0,
|
|
591
591
|
_DC,
|
|
592
592
|
{ [_h]: ["DELETE", "/crl/{crlId}", 200] },
|
|
593
|
-
() => ScalarCrlRequest
|
|
594
|
-
() => CrlDetailResponse
|
|
593
|
+
() => ScalarCrlRequest$,
|
|
594
|
+
() => CrlDetailResponse$,
|
|
595
595
|
];
|
|
596
|
-
var DeleteProfile = [
|
|
596
|
+
var DeleteProfile$ = [
|
|
597
597
|
9,
|
|
598
598
|
n0,
|
|
599
599
|
_DP,
|
|
600
600
|
{ [_h]: ["DELETE", "/profile/{profileId}", 200] },
|
|
601
|
-
() => ScalarProfileRequest
|
|
602
|
-
() => ProfileDetailResponse
|
|
601
|
+
() => ScalarProfileRequest$,
|
|
602
|
+
() => ProfileDetailResponse$,
|
|
603
603
|
];
|
|
604
|
-
var DeleteTrustAnchor = [
|
|
604
|
+
var DeleteTrustAnchor$ = [
|
|
605
605
|
9,
|
|
606
606
|
n0,
|
|
607
607
|
_DTA,
|
|
608
608
|
{ [_h]: ["DELETE", "/trustanchor/{trustAnchorId}", 200] },
|
|
609
|
-
() => ScalarTrustAnchorRequest
|
|
610
|
-
() => TrustAnchorDetailResponse
|
|
609
|
+
() => ScalarTrustAnchorRequest$,
|
|
610
|
+
() => TrustAnchorDetailResponse$,
|
|
611
611
|
];
|
|
612
|
-
var DisableCrl = [
|
|
612
|
+
var DisableCrl$ = [
|
|
613
613
|
9,
|
|
614
614
|
n0,
|
|
615
615
|
_DCi,
|
|
616
616
|
{ [_h]: ["POST", "/crl/{crlId}/disable", 200] },
|
|
617
|
-
() => ScalarCrlRequest
|
|
618
|
-
() => CrlDetailResponse
|
|
617
|
+
() => ScalarCrlRequest$,
|
|
618
|
+
() => CrlDetailResponse$,
|
|
619
619
|
];
|
|
620
|
-
var DisableProfile = [
|
|
620
|
+
var DisableProfile$ = [
|
|
621
621
|
9,
|
|
622
622
|
n0,
|
|
623
623
|
_DPi,
|
|
624
624
|
{ [_h]: ["POST", "/profile/{profileId}/disable", 200] },
|
|
625
|
-
() => ScalarProfileRequest
|
|
626
|
-
() => ProfileDetailResponse
|
|
625
|
+
() => ScalarProfileRequest$,
|
|
626
|
+
() => ProfileDetailResponse$,
|
|
627
627
|
];
|
|
628
|
-
var DisableTrustAnchor = [
|
|
628
|
+
var DisableTrustAnchor$ = [
|
|
629
629
|
9,
|
|
630
630
|
n0,
|
|
631
631
|
_DTAi,
|
|
632
632
|
{ [_h]: ["POST", "/trustanchor/{trustAnchorId}/disable", 200] },
|
|
633
|
-
() => ScalarTrustAnchorRequest
|
|
634
|
-
() => TrustAnchorDetailResponse
|
|
633
|
+
() => ScalarTrustAnchorRequest$,
|
|
634
|
+
() => TrustAnchorDetailResponse$,
|
|
635
635
|
];
|
|
636
|
-
var EnableCrl = [
|
|
636
|
+
var EnableCrl$ = [
|
|
637
637
|
9,
|
|
638
638
|
n0,
|
|
639
639
|
_EC,
|
|
640
640
|
{ [_h]: ["POST", "/crl/{crlId}/enable", 200] },
|
|
641
|
-
() => ScalarCrlRequest
|
|
642
|
-
() => CrlDetailResponse
|
|
641
|
+
() => ScalarCrlRequest$,
|
|
642
|
+
() => CrlDetailResponse$,
|
|
643
643
|
];
|
|
644
|
-
var EnableProfile = [
|
|
644
|
+
var EnableProfile$ = [
|
|
645
645
|
9,
|
|
646
646
|
n0,
|
|
647
647
|
_EP,
|
|
648
648
|
{ [_h]: ["POST", "/profile/{profileId}/enable", 200] },
|
|
649
|
-
() => ScalarProfileRequest
|
|
650
|
-
() => ProfileDetailResponse
|
|
649
|
+
() => ScalarProfileRequest$,
|
|
650
|
+
() => ProfileDetailResponse$,
|
|
651
651
|
];
|
|
652
|
-
var EnableTrustAnchor = [
|
|
652
|
+
var EnableTrustAnchor$ = [
|
|
653
653
|
9,
|
|
654
654
|
n0,
|
|
655
655
|
_ETA,
|
|
656
656
|
{ [_h]: ["POST", "/trustanchor/{trustAnchorId}/enable", 200] },
|
|
657
|
-
() => ScalarTrustAnchorRequest
|
|
658
|
-
() => TrustAnchorDetailResponse
|
|
657
|
+
() => ScalarTrustAnchorRequest$,
|
|
658
|
+
() => TrustAnchorDetailResponse$,
|
|
659
659
|
];
|
|
660
|
-
var GetCrl = [
|
|
660
|
+
var GetCrl$ = [
|
|
661
661
|
9,
|
|
662
662
|
n0,
|
|
663
663
|
_GC,
|
|
664
664
|
{ [_h]: ["GET", "/crl/{crlId}", 200] },
|
|
665
|
-
() => ScalarCrlRequest
|
|
666
|
-
() => CrlDetailResponse
|
|
665
|
+
() => ScalarCrlRequest$,
|
|
666
|
+
() => CrlDetailResponse$,
|
|
667
667
|
];
|
|
668
|
-
var GetProfile = [
|
|
668
|
+
var GetProfile$ = [
|
|
669
669
|
9,
|
|
670
670
|
n0,
|
|
671
671
|
_GP,
|
|
672
672
|
{ [_h]: ["GET", "/profile/{profileId}", 200] },
|
|
673
|
-
() => ScalarProfileRequest
|
|
674
|
-
() => ProfileDetailResponse
|
|
673
|
+
() => ScalarProfileRequest$,
|
|
674
|
+
() => ProfileDetailResponse$,
|
|
675
675
|
];
|
|
676
|
-
var GetSubject = [
|
|
676
|
+
var GetSubject$ = [
|
|
677
677
|
9,
|
|
678
678
|
n0,
|
|
679
679
|
_GS,
|
|
680
680
|
{ [_h]: ["GET", "/subject/{subjectId}", 200] },
|
|
681
|
-
() => ScalarSubjectRequest
|
|
682
|
-
() => SubjectDetailResponse
|
|
681
|
+
() => ScalarSubjectRequest$,
|
|
682
|
+
() => SubjectDetailResponse$,
|
|
683
683
|
];
|
|
684
|
-
var GetTrustAnchor = [
|
|
684
|
+
var GetTrustAnchor$ = [
|
|
685
685
|
9,
|
|
686
686
|
n0,
|
|
687
687
|
_GTA,
|
|
688
688
|
{ [_h]: ["GET", "/trustanchor/{trustAnchorId}", 200] },
|
|
689
|
-
() => ScalarTrustAnchorRequest
|
|
690
|
-
() => TrustAnchorDetailResponse
|
|
689
|
+
() => ScalarTrustAnchorRequest$,
|
|
690
|
+
() => TrustAnchorDetailResponse$,
|
|
691
691
|
];
|
|
692
|
-
var ImportCrl = [
|
|
692
|
+
var ImportCrl$ = [
|
|
693
693
|
9,
|
|
694
694
|
n0,
|
|
695
695
|
_IC,
|
|
696
696
|
{ [_h]: ["POST", "/crls", 201] },
|
|
697
|
-
() => ImportCrlRequest
|
|
698
|
-
() => CrlDetailResponse
|
|
697
|
+
() => ImportCrlRequest$,
|
|
698
|
+
() => CrlDetailResponse$,
|
|
699
699
|
];
|
|
700
|
-
var ListCrls = [
|
|
700
|
+
var ListCrls$ = [
|
|
701
701
|
9,
|
|
702
702
|
n0,
|
|
703
703
|
_LC,
|
|
704
704
|
{ [_h]: ["GET", "/crls", 200] },
|
|
705
|
-
() => ListRequest
|
|
706
|
-
() => ListCrlsResponse
|
|
705
|
+
() => ListRequest$,
|
|
706
|
+
() => ListCrlsResponse$,
|
|
707
707
|
];
|
|
708
|
-
var ListProfiles = [
|
|
708
|
+
var ListProfiles$ = [
|
|
709
709
|
9,
|
|
710
710
|
n0,
|
|
711
711
|
_LP,
|
|
712
712
|
{ [_h]: ["GET", "/profiles", 200] },
|
|
713
|
-
() => ListRequest
|
|
714
|
-
() => ListProfilesResponse
|
|
713
|
+
() => ListRequest$,
|
|
714
|
+
() => ListProfilesResponse$,
|
|
715
715
|
];
|
|
716
|
-
var ListSubjects = [
|
|
716
|
+
var ListSubjects$ = [
|
|
717
717
|
9,
|
|
718
718
|
n0,
|
|
719
719
|
_LS,
|
|
720
720
|
{ [_h]: ["GET", "/subjects", 200] },
|
|
721
|
-
() => ListRequest
|
|
722
|
-
() => ListSubjectsResponse
|
|
721
|
+
() => ListRequest$,
|
|
722
|
+
() => ListSubjectsResponse$,
|
|
723
723
|
];
|
|
724
|
-
var ListTagsForResource = [
|
|
724
|
+
var ListTagsForResource$ = [
|
|
725
725
|
9,
|
|
726
726
|
n0,
|
|
727
727
|
_LTFR,
|
|
728
728
|
{ [_h]: ["GET", "/ListTagsForResource", 200] },
|
|
729
|
-
() => ListTagsForResourceRequest
|
|
730
|
-
() => ListTagsForResourceResponse
|
|
729
|
+
() => ListTagsForResourceRequest$,
|
|
730
|
+
() => ListTagsForResourceResponse$,
|
|
731
731
|
];
|
|
732
|
-
var ListTrustAnchors = [
|
|
732
|
+
var ListTrustAnchors$ = [
|
|
733
733
|
9,
|
|
734
734
|
n0,
|
|
735
735
|
_LTA,
|
|
736
736
|
{ [_h]: ["GET", "/trustanchors", 200] },
|
|
737
|
-
() => ListRequest
|
|
738
|
-
() => ListTrustAnchorsResponse
|
|
737
|
+
() => ListRequest$,
|
|
738
|
+
() => ListTrustAnchorsResponse$,
|
|
739
739
|
];
|
|
740
|
-
var PutAttributeMapping = [
|
|
740
|
+
var PutAttributeMapping$ = [
|
|
741
741
|
9,
|
|
742
742
|
n0,
|
|
743
743
|
_PAM,
|
|
744
744
|
{ [_h]: ["PUT", "/profiles/{profileId}/mappings", 200] },
|
|
745
|
-
() => PutAttributeMappingRequest
|
|
746
|
-
() => PutAttributeMappingResponse
|
|
745
|
+
() => PutAttributeMappingRequest$,
|
|
746
|
+
() => PutAttributeMappingResponse$,
|
|
747
747
|
];
|
|
748
|
-
var PutNotificationSettings = [
|
|
748
|
+
var PutNotificationSettings$ = [
|
|
749
749
|
9,
|
|
750
750
|
n0,
|
|
751
751
|
_PNS,
|
|
752
752
|
{ [_h]: ["PATCH", "/put-notifications-settings", 200] },
|
|
753
|
-
() => PutNotificationSettingsRequest
|
|
754
|
-
() => PutNotificationSettingsResponse
|
|
753
|
+
() => PutNotificationSettingsRequest$,
|
|
754
|
+
() => PutNotificationSettingsResponse$,
|
|
755
755
|
];
|
|
756
|
-
var ResetNotificationSettings = [
|
|
756
|
+
var ResetNotificationSettings$ = [
|
|
757
757
|
9,
|
|
758
758
|
n0,
|
|
759
759
|
_RNS,
|
|
760
760
|
{ [_h]: ["PATCH", "/reset-notifications-settings", 200] },
|
|
761
|
-
() => ResetNotificationSettingsRequest
|
|
762
|
-
() => ResetNotificationSettingsResponse
|
|
761
|
+
() => ResetNotificationSettingsRequest$,
|
|
762
|
+
() => ResetNotificationSettingsResponse$,
|
|
763
763
|
];
|
|
764
|
-
var TagResource = [
|
|
764
|
+
var TagResource$ = [
|
|
765
765
|
9,
|
|
766
766
|
n0,
|
|
767
767
|
_TR,
|
|
768
768
|
{ [_h]: ["POST", "/TagResource", 201] },
|
|
769
|
-
() => TagResourceRequest
|
|
770
|
-
() => TagResourceResponse
|
|
769
|
+
() => TagResourceRequest$,
|
|
770
|
+
() => TagResourceResponse$,
|
|
771
771
|
];
|
|
772
|
-
var UntagResource = [
|
|
772
|
+
var UntagResource$ = [
|
|
773
773
|
9,
|
|
774
774
|
n0,
|
|
775
775
|
_UR,
|
|
776
776
|
{ [_h]: ["POST", "/UntagResource", 200] },
|
|
777
|
-
() => UntagResourceRequest
|
|
778
|
-
() => UntagResourceResponse
|
|
777
|
+
() => UntagResourceRequest$,
|
|
778
|
+
() => UntagResourceResponse$,
|
|
779
779
|
];
|
|
780
|
-
var UpdateCrl = [
|
|
780
|
+
var UpdateCrl$ = [
|
|
781
781
|
9,
|
|
782
782
|
n0,
|
|
783
783
|
_UC,
|
|
784
784
|
{ [_h]: ["PATCH", "/crl/{crlId}", 200] },
|
|
785
|
-
() => UpdateCrlRequest
|
|
786
|
-
() => CrlDetailResponse
|
|
785
|
+
() => UpdateCrlRequest$,
|
|
786
|
+
() => CrlDetailResponse$,
|
|
787
787
|
];
|
|
788
|
-
var UpdateProfile = [
|
|
788
|
+
var UpdateProfile$ = [
|
|
789
789
|
9,
|
|
790
790
|
n0,
|
|
791
791
|
_UP,
|
|
792
792
|
{ [_h]: ["PATCH", "/profile/{profileId}", 200] },
|
|
793
|
-
() => UpdateProfileRequest
|
|
794
|
-
() => ProfileDetailResponse
|
|
793
|
+
() => UpdateProfileRequest$,
|
|
794
|
+
() => ProfileDetailResponse$,
|
|
795
795
|
];
|
|
796
|
-
var UpdateTrustAnchor = [
|
|
796
|
+
var UpdateTrustAnchor$ = [
|
|
797
797
|
9,
|
|
798
798
|
n0,
|
|
799
799
|
_UTA,
|
|
800
800
|
{ [_h]: ["PATCH", "/trustanchor/{trustAnchorId}", 200] },
|
|
801
|
-
() => UpdateTrustAnchorRequest
|
|
802
|
-
() => TrustAnchorDetailResponse
|
|
801
|
+
() => UpdateTrustAnchorRequest$,
|
|
802
|
+
() => TrustAnchorDetailResponse$,
|
|
803
803
|
];
|
|
804
804
|
|
|
805
805
|
class CreateProfileCommand extends smithyClient.Command
|
|
@@ -810,7 +810,7 @@ class CreateProfileCommand extends smithyClient.Command
|
|
|
810
810
|
})
|
|
811
811
|
.s("RolesAnywhere", "CreateProfile", {})
|
|
812
812
|
.n("RolesAnywhereClient", "CreateProfileCommand")
|
|
813
|
-
.sc(CreateProfile)
|
|
813
|
+
.sc(CreateProfile$)
|
|
814
814
|
.build() {
|
|
815
815
|
}
|
|
816
816
|
|
|
@@ -822,7 +822,7 @@ class CreateTrustAnchorCommand extends smithyClient.Command
|
|
|
822
822
|
})
|
|
823
823
|
.s("RolesAnywhere", "CreateTrustAnchor", {})
|
|
824
824
|
.n("RolesAnywhereClient", "CreateTrustAnchorCommand")
|
|
825
|
-
.sc(CreateTrustAnchor)
|
|
825
|
+
.sc(CreateTrustAnchor$)
|
|
826
826
|
.build() {
|
|
827
827
|
}
|
|
828
828
|
|
|
@@ -834,7 +834,7 @@ class DeleteAttributeMappingCommand extends smithyClient.Command
|
|
|
834
834
|
})
|
|
835
835
|
.s("RolesAnywhere", "DeleteAttributeMapping", {})
|
|
836
836
|
.n("RolesAnywhereClient", "DeleteAttributeMappingCommand")
|
|
837
|
-
.sc(DeleteAttributeMapping)
|
|
837
|
+
.sc(DeleteAttributeMapping$)
|
|
838
838
|
.build() {
|
|
839
839
|
}
|
|
840
840
|
|
|
@@ -846,7 +846,7 @@ class DeleteCrlCommand extends smithyClient.Command
|
|
|
846
846
|
})
|
|
847
847
|
.s("RolesAnywhere", "DeleteCrl", {})
|
|
848
848
|
.n("RolesAnywhereClient", "DeleteCrlCommand")
|
|
849
|
-
.sc(DeleteCrl)
|
|
849
|
+
.sc(DeleteCrl$)
|
|
850
850
|
.build() {
|
|
851
851
|
}
|
|
852
852
|
|
|
@@ -858,7 +858,7 @@ class DeleteProfileCommand extends smithyClient.Command
|
|
|
858
858
|
})
|
|
859
859
|
.s("RolesAnywhere", "DeleteProfile", {})
|
|
860
860
|
.n("RolesAnywhereClient", "DeleteProfileCommand")
|
|
861
|
-
.sc(DeleteProfile)
|
|
861
|
+
.sc(DeleteProfile$)
|
|
862
862
|
.build() {
|
|
863
863
|
}
|
|
864
864
|
|
|
@@ -870,7 +870,7 @@ class DeleteTrustAnchorCommand extends smithyClient.Command
|
|
|
870
870
|
})
|
|
871
871
|
.s("RolesAnywhere", "DeleteTrustAnchor", {})
|
|
872
872
|
.n("RolesAnywhereClient", "DeleteTrustAnchorCommand")
|
|
873
|
-
.sc(DeleteTrustAnchor)
|
|
873
|
+
.sc(DeleteTrustAnchor$)
|
|
874
874
|
.build() {
|
|
875
875
|
}
|
|
876
876
|
|
|
@@ -882,7 +882,7 @@ class DisableCrlCommand extends smithyClient.Command
|
|
|
882
882
|
})
|
|
883
883
|
.s("RolesAnywhere", "DisableCrl", {})
|
|
884
884
|
.n("RolesAnywhereClient", "DisableCrlCommand")
|
|
885
|
-
.sc(DisableCrl)
|
|
885
|
+
.sc(DisableCrl$)
|
|
886
886
|
.build() {
|
|
887
887
|
}
|
|
888
888
|
|
|
@@ -894,7 +894,7 @@ class DisableProfileCommand extends smithyClient.Command
|
|
|
894
894
|
})
|
|
895
895
|
.s("RolesAnywhere", "DisableProfile", {})
|
|
896
896
|
.n("RolesAnywhereClient", "DisableProfileCommand")
|
|
897
|
-
.sc(DisableProfile)
|
|
897
|
+
.sc(DisableProfile$)
|
|
898
898
|
.build() {
|
|
899
899
|
}
|
|
900
900
|
|
|
@@ -906,7 +906,7 @@ class DisableTrustAnchorCommand extends smithyClient.Command
|
|
|
906
906
|
})
|
|
907
907
|
.s("RolesAnywhere", "DisableTrustAnchor", {})
|
|
908
908
|
.n("RolesAnywhereClient", "DisableTrustAnchorCommand")
|
|
909
|
-
.sc(DisableTrustAnchor)
|
|
909
|
+
.sc(DisableTrustAnchor$)
|
|
910
910
|
.build() {
|
|
911
911
|
}
|
|
912
912
|
|
|
@@ -918,7 +918,7 @@ class EnableCrlCommand extends smithyClient.Command
|
|
|
918
918
|
})
|
|
919
919
|
.s("RolesAnywhere", "EnableCrl", {})
|
|
920
920
|
.n("RolesAnywhereClient", "EnableCrlCommand")
|
|
921
|
-
.sc(EnableCrl)
|
|
921
|
+
.sc(EnableCrl$)
|
|
922
922
|
.build() {
|
|
923
923
|
}
|
|
924
924
|
|
|
@@ -930,7 +930,7 @@ class EnableProfileCommand extends smithyClient.Command
|
|
|
930
930
|
})
|
|
931
931
|
.s("RolesAnywhere", "EnableProfile", {})
|
|
932
932
|
.n("RolesAnywhereClient", "EnableProfileCommand")
|
|
933
|
-
.sc(EnableProfile)
|
|
933
|
+
.sc(EnableProfile$)
|
|
934
934
|
.build() {
|
|
935
935
|
}
|
|
936
936
|
|
|
@@ -942,7 +942,7 @@ class EnableTrustAnchorCommand extends smithyClient.Command
|
|
|
942
942
|
})
|
|
943
943
|
.s("RolesAnywhere", "EnableTrustAnchor", {})
|
|
944
944
|
.n("RolesAnywhereClient", "EnableTrustAnchorCommand")
|
|
945
|
-
.sc(EnableTrustAnchor)
|
|
945
|
+
.sc(EnableTrustAnchor$)
|
|
946
946
|
.build() {
|
|
947
947
|
}
|
|
948
948
|
|
|
@@ -954,7 +954,7 @@ class GetCrlCommand extends smithyClient.Command
|
|
|
954
954
|
})
|
|
955
955
|
.s("RolesAnywhere", "GetCrl", {})
|
|
956
956
|
.n("RolesAnywhereClient", "GetCrlCommand")
|
|
957
|
-
.sc(GetCrl)
|
|
957
|
+
.sc(GetCrl$)
|
|
958
958
|
.build() {
|
|
959
959
|
}
|
|
960
960
|
|
|
@@ -966,7 +966,7 @@ class GetProfileCommand extends smithyClient.Command
|
|
|
966
966
|
})
|
|
967
967
|
.s("RolesAnywhere", "GetProfile", {})
|
|
968
968
|
.n("RolesAnywhereClient", "GetProfileCommand")
|
|
969
|
-
.sc(GetProfile)
|
|
969
|
+
.sc(GetProfile$)
|
|
970
970
|
.build() {
|
|
971
971
|
}
|
|
972
972
|
|
|
@@ -978,7 +978,7 @@ class GetSubjectCommand extends smithyClient.Command
|
|
|
978
978
|
})
|
|
979
979
|
.s("RolesAnywhere", "GetSubject", {})
|
|
980
980
|
.n("RolesAnywhereClient", "GetSubjectCommand")
|
|
981
|
-
.sc(GetSubject)
|
|
981
|
+
.sc(GetSubject$)
|
|
982
982
|
.build() {
|
|
983
983
|
}
|
|
984
984
|
|
|
@@ -990,7 +990,7 @@ class GetTrustAnchorCommand extends smithyClient.Command
|
|
|
990
990
|
})
|
|
991
991
|
.s("RolesAnywhere", "GetTrustAnchor", {})
|
|
992
992
|
.n("RolesAnywhereClient", "GetTrustAnchorCommand")
|
|
993
|
-
.sc(GetTrustAnchor)
|
|
993
|
+
.sc(GetTrustAnchor$)
|
|
994
994
|
.build() {
|
|
995
995
|
}
|
|
996
996
|
|
|
@@ -1002,7 +1002,7 @@ class ImportCrlCommand extends smithyClient.Command
|
|
|
1002
1002
|
})
|
|
1003
1003
|
.s("RolesAnywhere", "ImportCrl", {})
|
|
1004
1004
|
.n("RolesAnywhereClient", "ImportCrlCommand")
|
|
1005
|
-
.sc(ImportCrl)
|
|
1005
|
+
.sc(ImportCrl$)
|
|
1006
1006
|
.build() {
|
|
1007
1007
|
}
|
|
1008
1008
|
|
|
@@ -1014,7 +1014,7 @@ class ListCrlsCommand extends smithyClient.Command
|
|
|
1014
1014
|
})
|
|
1015
1015
|
.s("RolesAnywhere", "ListCrls", {})
|
|
1016
1016
|
.n("RolesAnywhereClient", "ListCrlsCommand")
|
|
1017
|
-
.sc(ListCrls)
|
|
1017
|
+
.sc(ListCrls$)
|
|
1018
1018
|
.build() {
|
|
1019
1019
|
}
|
|
1020
1020
|
|
|
@@ -1026,7 +1026,7 @@ class ListProfilesCommand extends smithyClient.Command
|
|
|
1026
1026
|
})
|
|
1027
1027
|
.s("RolesAnywhere", "ListProfiles", {})
|
|
1028
1028
|
.n("RolesAnywhereClient", "ListProfilesCommand")
|
|
1029
|
-
.sc(ListProfiles)
|
|
1029
|
+
.sc(ListProfiles$)
|
|
1030
1030
|
.build() {
|
|
1031
1031
|
}
|
|
1032
1032
|
|
|
@@ -1038,7 +1038,7 @@ class ListSubjectsCommand extends smithyClient.Command
|
|
|
1038
1038
|
})
|
|
1039
1039
|
.s("RolesAnywhere", "ListSubjects", {})
|
|
1040
1040
|
.n("RolesAnywhereClient", "ListSubjectsCommand")
|
|
1041
|
-
.sc(ListSubjects)
|
|
1041
|
+
.sc(ListSubjects$)
|
|
1042
1042
|
.build() {
|
|
1043
1043
|
}
|
|
1044
1044
|
|
|
@@ -1050,7 +1050,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1050
1050
|
})
|
|
1051
1051
|
.s("RolesAnywhere", "ListTagsForResource", {})
|
|
1052
1052
|
.n("RolesAnywhereClient", "ListTagsForResourceCommand")
|
|
1053
|
-
.sc(ListTagsForResource)
|
|
1053
|
+
.sc(ListTagsForResource$)
|
|
1054
1054
|
.build() {
|
|
1055
1055
|
}
|
|
1056
1056
|
|
|
@@ -1062,7 +1062,7 @@ class ListTrustAnchorsCommand extends smithyClient.Command
|
|
|
1062
1062
|
})
|
|
1063
1063
|
.s("RolesAnywhere", "ListTrustAnchors", {})
|
|
1064
1064
|
.n("RolesAnywhereClient", "ListTrustAnchorsCommand")
|
|
1065
|
-
.sc(ListTrustAnchors)
|
|
1065
|
+
.sc(ListTrustAnchors$)
|
|
1066
1066
|
.build() {
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
@@ -1074,7 +1074,7 @@ class PutAttributeMappingCommand extends smithyClient.Command
|
|
|
1074
1074
|
})
|
|
1075
1075
|
.s("RolesAnywhere", "PutAttributeMapping", {})
|
|
1076
1076
|
.n("RolesAnywhereClient", "PutAttributeMappingCommand")
|
|
1077
|
-
.sc(PutAttributeMapping)
|
|
1077
|
+
.sc(PutAttributeMapping$)
|
|
1078
1078
|
.build() {
|
|
1079
1079
|
}
|
|
1080
1080
|
|
|
@@ -1086,7 +1086,7 @@ class PutNotificationSettingsCommand extends smithyClient.Command
|
|
|
1086
1086
|
})
|
|
1087
1087
|
.s("RolesAnywhere", "PutNotificationSettings", {})
|
|
1088
1088
|
.n("RolesAnywhereClient", "PutNotificationSettingsCommand")
|
|
1089
|
-
.sc(PutNotificationSettings)
|
|
1089
|
+
.sc(PutNotificationSettings$)
|
|
1090
1090
|
.build() {
|
|
1091
1091
|
}
|
|
1092
1092
|
|
|
@@ -1098,7 +1098,7 @@ class ResetNotificationSettingsCommand extends smithyClient.Command
|
|
|
1098
1098
|
})
|
|
1099
1099
|
.s("RolesAnywhere", "ResetNotificationSettings", {})
|
|
1100
1100
|
.n("RolesAnywhereClient", "ResetNotificationSettingsCommand")
|
|
1101
|
-
.sc(ResetNotificationSettings)
|
|
1101
|
+
.sc(ResetNotificationSettings$)
|
|
1102
1102
|
.build() {
|
|
1103
1103
|
}
|
|
1104
1104
|
|
|
@@ -1110,7 +1110,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1110
1110
|
})
|
|
1111
1111
|
.s("RolesAnywhere", "TagResource", {})
|
|
1112
1112
|
.n("RolesAnywhereClient", "TagResourceCommand")
|
|
1113
|
-
.sc(TagResource)
|
|
1113
|
+
.sc(TagResource$)
|
|
1114
1114
|
.build() {
|
|
1115
1115
|
}
|
|
1116
1116
|
|
|
@@ -1122,7 +1122,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1122
1122
|
})
|
|
1123
1123
|
.s("RolesAnywhere", "UntagResource", {})
|
|
1124
1124
|
.n("RolesAnywhereClient", "UntagResourceCommand")
|
|
1125
|
-
.sc(UntagResource)
|
|
1125
|
+
.sc(UntagResource$)
|
|
1126
1126
|
.build() {
|
|
1127
1127
|
}
|
|
1128
1128
|
|
|
@@ -1134,7 +1134,7 @@ class UpdateCrlCommand extends smithyClient.Command
|
|
|
1134
1134
|
})
|
|
1135
1135
|
.s("RolesAnywhere", "UpdateCrl", {})
|
|
1136
1136
|
.n("RolesAnywhereClient", "UpdateCrlCommand")
|
|
1137
|
-
.sc(UpdateCrl)
|
|
1137
|
+
.sc(UpdateCrl$)
|
|
1138
1138
|
.build() {
|
|
1139
1139
|
}
|
|
1140
1140
|
|
|
@@ -1146,7 +1146,7 @@ class UpdateProfileCommand extends smithyClient.Command
|
|
|
1146
1146
|
})
|
|
1147
1147
|
.s("RolesAnywhere", "UpdateProfile", {})
|
|
1148
1148
|
.n("RolesAnywhereClient", "UpdateProfileCommand")
|
|
1149
|
-
.sc(UpdateProfile)
|
|
1149
|
+
.sc(UpdateProfile$)
|
|
1150
1150
|
.build() {
|
|
1151
1151
|
}
|
|
1152
1152
|
|
|
@@ -1158,7 +1158,7 @@ class UpdateTrustAnchorCommand extends smithyClient.Command
|
|
|
1158
1158
|
})
|
|
1159
1159
|
.s("RolesAnywhere", "UpdateTrustAnchor", {})
|
|
1160
1160
|
.n("RolesAnywhereClient", "UpdateTrustAnchorCommand")
|
|
1161
|
-
.sc(UpdateTrustAnchor)
|
|
1161
|
+
.sc(UpdateTrustAnchor$)
|
|
1162
1162
|
.build() {
|
|
1163
1163
|
}
|
|
1164
1164
|
|
|
@@ -1232,47 +1232,130 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1232
1232
|
enumerable: true,
|
|
1233
1233
|
get: function () { return smithyClient.Client; }
|
|
1234
1234
|
});
|
|
1235
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1235
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1236
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1237
|
+
exports.AttributeMapping$ = AttributeMapping$;
|
|
1236
1238
|
exports.CertificateField = CertificateField;
|
|
1239
|
+
exports.CreateProfile$ = CreateProfile$;
|
|
1237
1240
|
exports.CreateProfileCommand = CreateProfileCommand;
|
|
1241
|
+
exports.CreateProfileRequest$ = CreateProfileRequest$;
|
|
1242
|
+
exports.CreateTrustAnchor$ = CreateTrustAnchor$;
|
|
1238
1243
|
exports.CreateTrustAnchorCommand = CreateTrustAnchorCommand;
|
|
1244
|
+
exports.CreateTrustAnchorRequest$ = CreateTrustAnchorRequest$;
|
|
1245
|
+
exports.CredentialSummary$ = CredentialSummary$;
|
|
1246
|
+
exports.CrlDetail$ = CrlDetail$;
|
|
1247
|
+
exports.CrlDetailResponse$ = CrlDetailResponse$;
|
|
1248
|
+
exports.DeleteAttributeMapping$ = DeleteAttributeMapping$;
|
|
1239
1249
|
exports.DeleteAttributeMappingCommand = DeleteAttributeMappingCommand;
|
|
1250
|
+
exports.DeleteAttributeMappingRequest$ = DeleteAttributeMappingRequest$;
|
|
1251
|
+
exports.DeleteAttributeMappingResponse$ = DeleteAttributeMappingResponse$;
|
|
1252
|
+
exports.DeleteCrl$ = DeleteCrl$;
|
|
1240
1253
|
exports.DeleteCrlCommand = DeleteCrlCommand;
|
|
1254
|
+
exports.DeleteProfile$ = DeleteProfile$;
|
|
1241
1255
|
exports.DeleteProfileCommand = DeleteProfileCommand;
|
|
1256
|
+
exports.DeleteTrustAnchor$ = DeleteTrustAnchor$;
|
|
1242
1257
|
exports.DeleteTrustAnchorCommand = DeleteTrustAnchorCommand;
|
|
1258
|
+
exports.DisableCrl$ = DisableCrl$;
|
|
1243
1259
|
exports.DisableCrlCommand = DisableCrlCommand;
|
|
1260
|
+
exports.DisableProfile$ = DisableProfile$;
|
|
1244
1261
|
exports.DisableProfileCommand = DisableProfileCommand;
|
|
1262
|
+
exports.DisableTrustAnchor$ = DisableTrustAnchor$;
|
|
1245
1263
|
exports.DisableTrustAnchorCommand = DisableTrustAnchorCommand;
|
|
1264
|
+
exports.EnableCrl$ = EnableCrl$;
|
|
1246
1265
|
exports.EnableCrlCommand = EnableCrlCommand;
|
|
1266
|
+
exports.EnableProfile$ = EnableProfile$;
|
|
1247
1267
|
exports.EnableProfileCommand = EnableProfileCommand;
|
|
1268
|
+
exports.EnableTrustAnchor$ = EnableTrustAnchor$;
|
|
1248
1269
|
exports.EnableTrustAnchorCommand = EnableTrustAnchorCommand;
|
|
1270
|
+
exports.GetCrl$ = GetCrl$;
|
|
1249
1271
|
exports.GetCrlCommand = GetCrlCommand;
|
|
1272
|
+
exports.GetProfile$ = GetProfile$;
|
|
1250
1273
|
exports.GetProfileCommand = GetProfileCommand;
|
|
1274
|
+
exports.GetSubject$ = GetSubject$;
|
|
1251
1275
|
exports.GetSubjectCommand = GetSubjectCommand;
|
|
1276
|
+
exports.GetTrustAnchor$ = GetTrustAnchor$;
|
|
1252
1277
|
exports.GetTrustAnchorCommand = GetTrustAnchorCommand;
|
|
1278
|
+
exports.ImportCrl$ = ImportCrl$;
|
|
1253
1279
|
exports.ImportCrlCommand = ImportCrlCommand;
|
|
1280
|
+
exports.ImportCrlRequest$ = ImportCrlRequest$;
|
|
1281
|
+
exports.InstanceProperty$ = InstanceProperty$;
|
|
1282
|
+
exports.ListCrls$ = ListCrls$;
|
|
1254
1283
|
exports.ListCrlsCommand = ListCrlsCommand;
|
|
1284
|
+
exports.ListCrlsResponse$ = ListCrlsResponse$;
|
|
1285
|
+
exports.ListProfiles$ = ListProfiles$;
|
|
1255
1286
|
exports.ListProfilesCommand = ListProfilesCommand;
|
|
1287
|
+
exports.ListProfilesResponse$ = ListProfilesResponse$;
|
|
1288
|
+
exports.ListRequest$ = ListRequest$;
|
|
1289
|
+
exports.ListSubjects$ = ListSubjects$;
|
|
1256
1290
|
exports.ListSubjectsCommand = ListSubjectsCommand;
|
|
1291
|
+
exports.ListSubjectsResponse$ = ListSubjectsResponse$;
|
|
1292
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1257
1293
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1294
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1295
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1296
|
+
exports.ListTrustAnchors$ = ListTrustAnchors$;
|
|
1258
1297
|
exports.ListTrustAnchorsCommand = ListTrustAnchorsCommand;
|
|
1298
|
+
exports.ListTrustAnchorsResponse$ = ListTrustAnchorsResponse$;
|
|
1299
|
+
exports.MappingRule$ = MappingRule$;
|
|
1259
1300
|
exports.NotificationChannel = NotificationChannel;
|
|
1260
1301
|
exports.NotificationEvent = NotificationEvent;
|
|
1302
|
+
exports.NotificationSetting$ = NotificationSetting$;
|
|
1303
|
+
exports.NotificationSettingDetail$ = NotificationSettingDetail$;
|
|
1304
|
+
exports.NotificationSettingKey$ = NotificationSettingKey$;
|
|
1305
|
+
exports.ProfileDetail$ = ProfileDetail$;
|
|
1306
|
+
exports.ProfileDetailResponse$ = ProfileDetailResponse$;
|
|
1307
|
+
exports.PutAttributeMapping$ = PutAttributeMapping$;
|
|
1261
1308
|
exports.PutAttributeMappingCommand = PutAttributeMappingCommand;
|
|
1309
|
+
exports.PutAttributeMappingRequest$ = PutAttributeMappingRequest$;
|
|
1310
|
+
exports.PutAttributeMappingResponse$ = PutAttributeMappingResponse$;
|
|
1311
|
+
exports.PutNotificationSettings$ = PutNotificationSettings$;
|
|
1262
1312
|
exports.PutNotificationSettingsCommand = PutNotificationSettingsCommand;
|
|
1313
|
+
exports.PutNotificationSettingsRequest$ = PutNotificationSettingsRequest$;
|
|
1314
|
+
exports.PutNotificationSettingsResponse$ = PutNotificationSettingsResponse$;
|
|
1315
|
+
exports.ResetNotificationSettings$ = ResetNotificationSettings$;
|
|
1263
1316
|
exports.ResetNotificationSettingsCommand = ResetNotificationSettingsCommand;
|
|
1264
|
-
exports.
|
|
1317
|
+
exports.ResetNotificationSettingsRequest$ = ResetNotificationSettingsRequest$;
|
|
1318
|
+
exports.ResetNotificationSettingsResponse$ = ResetNotificationSettingsResponse$;
|
|
1319
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1320
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1265
1321
|
exports.RolesAnywhere = RolesAnywhere;
|
|
1266
1322
|
exports.RolesAnywhereClient = RolesAnywhereClient;
|
|
1267
|
-
exports.RolesAnywhereServiceException = RolesAnywhereServiceException
|
|
1323
|
+
exports.RolesAnywhereServiceException = RolesAnywhereServiceException;
|
|
1324
|
+
exports.RolesAnywhereServiceException$ = RolesAnywhereServiceException$;
|
|
1325
|
+
exports.ScalarCrlRequest$ = ScalarCrlRequest$;
|
|
1326
|
+
exports.ScalarProfileRequest$ = ScalarProfileRequest$;
|
|
1327
|
+
exports.ScalarSubjectRequest$ = ScalarSubjectRequest$;
|
|
1328
|
+
exports.ScalarTrustAnchorRequest$ = ScalarTrustAnchorRequest$;
|
|
1329
|
+
exports.Source$ = Source$;
|
|
1330
|
+
exports.SourceData$ = SourceData$;
|
|
1331
|
+
exports.SubjectDetail$ = SubjectDetail$;
|
|
1332
|
+
exports.SubjectDetailResponse$ = SubjectDetailResponse$;
|
|
1333
|
+
exports.SubjectSummary$ = SubjectSummary$;
|
|
1334
|
+
exports.Tag$ = Tag$;
|
|
1335
|
+
exports.TagResource$ = TagResource$;
|
|
1268
1336
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1269
|
-
exports.
|
|
1337
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1338
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1339
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1340
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1341
|
+
exports.TrustAnchorDetail$ = TrustAnchorDetail$;
|
|
1342
|
+
exports.TrustAnchorDetailResponse$ = TrustAnchorDetailResponse$;
|
|
1270
1343
|
exports.TrustAnchorType = TrustAnchorType;
|
|
1344
|
+
exports.UntagResource$ = UntagResource$;
|
|
1271
1345
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1346
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1347
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1348
|
+
exports.UpdateCrl$ = UpdateCrl$;
|
|
1272
1349
|
exports.UpdateCrlCommand = UpdateCrlCommand;
|
|
1350
|
+
exports.UpdateCrlRequest$ = UpdateCrlRequest$;
|
|
1351
|
+
exports.UpdateProfile$ = UpdateProfile$;
|
|
1273
1352
|
exports.UpdateProfileCommand = UpdateProfileCommand;
|
|
1353
|
+
exports.UpdateProfileRequest$ = UpdateProfileRequest$;
|
|
1354
|
+
exports.UpdateTrustAnchor$ = UpdateTrustAnchor$;
|
|
1274
1355
|
exports.UpdateTrustAnchorCommand = UpdateTrustAnchorCommand;
|
|
1275
|
-
exports.
|
|
1356
|
+
exports.UpdateTrustAnchorRequest$ = UpdateTrustAnchorRequest$;
|
|
1357
|
+
exports.ValidationException = ValidationException;
|
|
1358
|
+
exports.ValidationException$ = ValidationException$;
|
|
1276
1359
|
exports.paginateListCrls = paginateListCrls;
|
|
1277
1360
|
exports.paginateListProfiles = paginateListProfiles;
|
|
1278
1361
|
exports.paginateListSubjects = paginateListSubjects;
|