@aws-sdk/client-rolesanywhere 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 +49 -739
- package/dist-cjs/models/RolesAnywhereServiceException.js +12 -0
- package/dist-cjs/models/errors.js +56 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +581 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +34 -28
- package/dist-types/schemas/schemas_0.d.ts +11 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -4
- 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 RolesAnywhereServiceException = require('./models/RolesAnywhereServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,627 +113,6 @@ class RolesAnywhereClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class RolesAnywhereServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, RolesAnywhereServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends RolesAnywhereServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ValidationException extends RolesAnywhereServiceException {
|
|
133
|
-
name = "ValidationException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "ValidationException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends RolesAnywhereServiceException {
|
|
145
|
-
name = "ResourceNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ResourceNotFoundException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class TooManyTagsException extends RolesAnywhereServiceException {
|
|
157
|
-
name = "TooManyTagsException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "TooManyTagsException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
const _ADE = "AccessDeniedException";
|
|
170
|
-
const _AM = "AttributeMapping";
|
|
171
|
-
const _AMt = "AttributeMappings";
|
|
172
|
-
const _CD = "CrlDetail";
|
|
173
|
-
const _CDR = "CrlDetailResponse";
|
|
174
|
-
const _CDr = "CrlDetails";
|
|
175
|
-
const _CP = "CreateProfile";
|
|
176
|
-
const _CPR = "CreateProfileRequest";
|
|
177
|
-
const _CS = "CredentialSummary";
|
|
178
|
-
const _CSr = "CredentialSummaries";
|
|
179
|
-
const _CTA = "CreateTrustAnchor";
|
|
180
|
-
const _CTAR = "CreateTrustAnchorRequest";
|
|
181
|
-
const _DAM = "DeleteAttributeMapping";
|
|
182
|
-
const _DAMR = "DeleteAttributeMappingRequest";
|
|
183
|
-
const _DAMRe = "DeleteAttributeMappingResponse";
|
|
184
|
-
const _DC = "DeleteCrl";
|
|
185
|
-
const _DCi = "DisableCrl";
|
|
186
|
-
const _DP = "DeleteProfile";
|
|
187
|
-
const _DPi = "DisableProfile";
|
|
188
|
-
const _DTA = "DeleteTrustAnchor";
|
|
189
|
-
const _DTAi = "DisableTrustAnchor";
|
|
190
|
-
const _EC = "EnableCrl";
|
|
191
|
-
const _EP = "EnableProfile";
|
|
192
|
-
const _ETA = "EnableTrustAnchor";
|
|
193
|
-
const _GC = "GetCrl";
|
|
194
|
-
const _GP = "GetProfile";
|
|
195
|
-
const _GS = "GetSubject";
|
|
196
|
-
const _GTA = "GetTrustAnchor";
|
|
197
|
-
const _IC = "ImportCrl";
|
|
198
|
-
const _ICR = "ImportCrlRequest";
|
|
199
|
-
const _IP = "InstanceProperty";
|
|
200
|
-
const _IPn = "InstanceProperties";
|
|
201
|
-
const _LC = "ListCrls";
|
|
202
|
-
const _LCR = "ListCrlsResponse";
|
|
203
|
-
const _LP = "ListProfiles";
|
|
204
|
-
const _LPR = "ListProfilesResponse";
|
|
205
|
-
const _LR = "ListRequest";
|
|
206
|
-
const _LS = "ListSubjects";
|
|
207
|
-
const _LSR = "ListSubjectsResponse";
|
|
208
|
-
const _LTA = "ListTrustAnchors";
|
|
209
|
-
const _LTAR = "ListTrustAnchorsResponse";
|
|
210
|
-
const _LTFR = "ListTagsForResource";
|
|
211
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
212
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
213
|
-
const _MR = "MappingRule";
|
|
214
|
-
const _MRa = "MappingRules";
|
|
215
|
-
const _NS = "NotificationSetting";
|
|
216
|
-
const _NSD = "NotificationSettingDetail";
|
|
217
|
-
const _NSDo = "NotificationSettingDetails";
|
|
218
|
-
const _NSK = "NotificationSettingKey";
|
|
219
|
-
const _NSKo = "NotificationSettingKeys";
|
|
220
|
-
const _NSo = "NotificationSettings";
|
|
221
|
-
const _PAM = "PutAttributeMapping";
|
|
222
|
-
const _PAMR = "PutAttributeMappingRequest";
|
|
223
|
-
const _PAMRu = "PutAttributeMappingResponse";
|
|
224
|
-
const _PD = "ProfileDetail";
|
|
225
|
-
const _PDR = "ProfileDetailResponse";
|
|
226
|
-
const _PDr = "ProfileDetails";
|
|
227
|
-
const _PNS = "PutNotificationSettings";
|
|
228
|
-
const _PNSR = "PutNotificationSettingsRequest";
|
|
229
|
-
const _PNSRu = "PutNotificationSettingsResponse";
|
|
230
|
-
const _RNFE = "ResourceNotFoundException";
|
|
231
|
-
const _RNS = "ResetNotificationSettings";
|
|
232
|
-
const _RNSR = "ResetNotificationSettingsRequest";
|
|
233
|
-
const _RNSRe = "ResetNotificationSettingsResponse";
|
|
234
|
-
const _S = "Source";
|
|
235
|
-
const _SCR = "ScalarCrlRequest";
|
|
236
|
-
const _SD = "SubjectDetail";
|
|
237
|
-
const _SDR = "SubjectDetailResponse";
|
|
238
|
-
const _SDo = "SourceData";
|
|
239
|
-
const _SPR = "ScalarProfileRequest";
|
|
240
|
-
const _SS = "SubjectSummary";
|
|
241
|
-
const _SSR = "ScalarSubjectRequest";
|
|
242
|
-
const _SSu = "SubjectSummaries";
|
|
243
|
-
const _STAR = "ScalarTrustAnchorRequest";
|
|
244
|
-
const _T = "Tag";
|
|
245
|
-
const _TAD = "TrustAnchorDetail";
|
|
246
|
-
const _TADR = "TrustAnchorDetailResponse";
|
|
247
|
-
const _TADr = "TrustAnchorDetails";
|
|
248
|
-
const _TK = "TagKey";
|
|
249
|
-
const _TKL = "TagKeyList";
|
|
250
|
-
const _TL = "TagList";
|
|
251
|
-
const _TMTE = "TooManyTagsException";
|
|
252
|
-
const _TR = "TagResource";
|
|
253
|
-
const _TRR = "TagResourceRequest";
|
|
254
|
-
const _TRRa = "TagResourceResponse";
|
|
255
|
-
const _TV = "TagValue";
|
|
256
|
-
const _UC = "UpdateCrl";
|
|
257
|
-
const _UCR = "UpdateCrlRequest";
|
|
258
|
-
const _UP = "UpdateProfile";
|
|
259
|
-
const _UPR = "UpdateProfileRequest";
|
|
260
|
-
const _UR = "UntagResource";
|
|
261
|
-
const _URR = "UntagResourceRequest";
|
|
262
|
-
const _URRn = "UntagResourceResponse";
|
|
263
|
-
const _UTA = "UpdateTrustAnchor";
|
|
264
|
-
const _UTAR = "UpdateTrustAnchorRequest";
|
|
265
|
-
const _VE = "ValidationException";
|
|
266
|
-
const _aM = "attributeMappings";
|
|
267
|
-
const _aPA = "acmPcaArn";
|
|
268
|
-
const _aRSN = "acceptRoleSessionName";
|
|
269
|
-
const _c = "client";
|
|
270
|
-
const _cA = "crlArn";
|
|
271
|
-
const _cAr = "createdAt";
|
|
272
|
-
const _cB = "configuredBy";
|
|
273
|
-
const _cBr = "createdBy";
|
|
274
|
-
const _cD = "crlData";
|
|
275
|
-
const _cF = "certificateField";
|
|
276
|
-
const _cI = "crlId";
|
|
277
|
-
const _ch = "channel";
|
|
278
|
-
const _cr = "crl";
|
|
279
|
-
const _cre = "credentials";
|
|
280
|
-
const _crl = "crls";
|
|
281
|
-
const _dS = "durationSeconds";
|
|
282
|
-
const _e = "error";
|
|
283
|
-
const _en = "enabled";
|
|
284
|
-
const _ev = "event";
|
|
285
|
-
const _f = "failed";
|
|
286
|
-
const _h = "http";
|
|
287
|
-
const _hE = "httpError";
|
|
288
|
-
const _hQ = "httpQuery";
|
|
289
|
-
const _i = "issuer";
|
|
290
|
-
const _iP = "instanceProperties";
|
|
291
|
-
const _k = "key";
|
|
292
|
-
const _lSA = "lastSeenAt";
|
|
293
|
-
const _m = "message";
|
|
294
|
-
const _mPA = "managedPolicyArns";
|
|
295
|
-
const _mR = "mappingRules";
|
|
296
|
-
const _n = "name";
|
|
297
|
-
const _nS = "notificationSettings";
|
|
298
|
-
const _nSK = "notificationSettingKeys";
|
|
299
|
-
const _nT = "nextToken";
|
|
300
|
-
const _p = "profile";
|
|
301
|
-
const _pA = "profileArn";
|
|
302
|
-
const _pI = "profileId";
|
|
303
|
-
const _pS = "pageSize";
|
|
304
|
-
const _pr = "properties";
|
|
305
|
-
const _pro = "profiles";
|
|
306
|
-
const _rA = "roleArns";
|
|
307
|
-
const _rAe = "resourceArn";
|
|
308
|
-
const _rIP = "requireInstanceProperties";
|
|
309
|
-
const _s = "source";
|
|
310
|
-
const _sA = "seenAt";
|
|
311
|
-
const _sAu = "subjectArn";
|
|
312
|
-
const _sD = "sourceData";
|
|
313
|
-
const _sI = "subjectId";
|
|
314
|
-
const _sN = "serialNumber";
|
|
315
|
-
const _sP = "sessionPolicy";
|
|
316
|
-
const _sT = "sourceType";
|
|
317
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.rolesanywhere";
|
|
318
|
-
const _sp = "specifiers";
|
|
319
|
-
const _spe = "specifier";
|
|
320
|
-
const _su = "subjects";
|
|
321
|
-
const _sub = "subject";
|
|
322
|
-
const _t = "tags";
|
|
323
|
-
const _tA = "trustAnchors";
|
|
324
|
-
const _tAA = "trustAnchorArn";
|
|
325
|
-
const _tAI = "trustAnchorId";
|
|
326
|
-
const _tAr = "trustAnchor";
|
|
327
|
-
const _tK = "tagKeys";
|
|
328
|
-
const _th = "threshold";
|
|
329
|
-
const _uA = "updatedAt";
|
|
330
|
-
const _v = "value";
|
|
331
|
-
const _xCD = "x509CertificateData";
|
|
332
|
-
const _xS = "x509Subject";
|
|
333
|
-
const n0 = "com.amazonaws.rolesanywhere";
|
|
334
|
-
var TagKey = [0, n0, _TK, 8, 0];
|
|
335
|
-
var TagValue = [0, n0, _TV, 8, 0];
|
|
336
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
337
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
338
|
-
[_m],
|
|
339
|
-
[0]
|
|
340
|
-
];
|
|
341
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
342
|
-
var AttributeMapping$ = [3, n0, _AM,
|
|
343
|
-
0,
|
|
344
|
-
[_cF, _mR],
|
|
345
|
-
[0, () => MappingRules]
|
|
346
|
-
];
|
|
347
|
-
var CreateProfileRequest$ = [3, n0, _CPR,
|
|
348
|
-
0,
|
|
349
|
-
[_n, _rA, _rIP, _sP, _mPA, _dS, _en, _t, _aRSN],
|
|
350
|
-
[0, 64 | 0, 2, 0, 64 | 0, 1, 2, [() => TagList, 0], 2], 2
|
|
351
|
-
];
|
|
352
|
-
var CreateTrustAnchorRequest$ = [3, n0, _CTAR,
|
|
353
|
-
0,
|
|
354
|
-
[_n, _s, _en, _t, _nS],
|
|
355
|
-
[0, () => Source$, 2, [() => TagList, 0], () => NotificationSettings], 2
|
|
356
|
-
];
|
|
357
|
-
var CredentialSummary$ = [3, n0, _CS,
|
|
358
|
-
0,
|
|
359
|
-
[_sA, _sN, _i, _en, _xCD, _f],
|
|
360
|
-
[5, 0, 0, 2, 0, 2]
|
|
361
|
-
];
|
|
362
|
-
var CrlDetail$ = [3, n0, _CD,
|
|
363
|
-
0,
|
|
364
|
-
[_cI, _cA, _n, _en, _cD, _tAA, _cAr, _uA],
|
|
365
|
-
[0, 0, 0, 2, 21, 0, 5, 5]
|
|
366
|
-
];
|
|
367
|
-
var CrlDetailResponse$ = [3, n0, _CDR,
|
|
368
|
-
0,
|
|
369
|
-
[_cr],
|
|
370
|
-
[() => CrlDetail$], 1
|
|
371
|
-
];
|
|
372
|
-
var DeleteAttributeMappingRequest$ = [3, n0, _DAMR,
|
|
373
|
-
0,
|
|
374
|
-
[_pI, _cF, _sp],
|
|
375
|
-
[[0, 1], [0, { [_hQ]: _cF }], [64 | 0, { [_hQ]: _sp }]], 2
|
|
376
|
-
];
|
|
377
|
-
var DeleteAttributeMappingResponse$ = [3, n0, _DAMRe,
|
|
378
|
-
0,
|
|
379
|
-
[_p],
|
|
380
|
-
[() => ProfileDetail$], 1
|
|
381
|
-
];
|
|
382
|
-
var ImportCrlRequest$ = [3, n0, _ICR,
|
|
383
|
-
0,
|
|
384
|
-
[_n, _cD, _tAA, _en, _t],
|
|
385
|
-
[0, 21, 0, 2, [() => TagList, 0]], 3
|
|
386
|
-
];
|
|
387
|
-
var InstanceProperty$ = [3, n0, _IP,
|
|
388
|
-
0,
|
|
389
|
-
[_sA, _pr, _f],
|
|
390
|
-
[5, 128 | 0, 2]
|
|
391
|
-
];
|
|
392
|
-
var ListCrlsResponse$ = [3, n0, _LCR,
|
|
393
|
-
0,
|
|
394
|
-
[_nT, _crl],
|
|
395
|
-
[0, () => CrlDetails]
|
|
396
|
-
];
|
|
397
|
-
var ListProfilesResponse$ = [3, n0, _LPR,
|
|
398
|
-
0,
|
|
399
|
-
[_nT, _pro],
|
|
400
|
-
[0, () => ProfileDetails]
|
|
401
|
-
];
|
|
402
|
-
var ListRequest$ = [3, n0, _LR,
|
|
403
|
-
0,
|
|
404
|
-
[_nT, _pS],
|
|
405
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _pS }]]
|
|
406
|
-
];
|
|
407
|
-
var ListSubjectsResponse$ = [3, n0, _LSR,
|
|
408
|
-
0,
|
|
409
|
-
[_su, _nT],
|
|
410
|
-
[() => SubjectSummaries, 0]
|
|
411
|
-
];
|
|
412
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
413
|
-
0,
|
|
414
|
-
[_rAe],
|
|
415
|
-
[[0, { [_hQ]: _rAe }]], 1
|
|
416
|
-
];
|
|
417
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
418
|
-
0,
|
|
419
|
-
[_t],
|
|
420
|
-
[[() => TagList, 0]]
|
|
421
|
-
];
|
|
422
|
-
var ListTrustAnchorsResponse$ = [3, n0, _LTAR,
|
|
423
|
-
0,
|
|
424
|
-
[_nT, _tA],
|
|
425
|
-
[0, () => TrustAnchorDetails]
|
|
426
|
-
];
|
|
427
|
-
var MappingRule$ = [3, n0, _MR,
|
|
428
|
-
0,
|
|
429
|
-
[_spe],
|
|
430
|
-
[0], 1
|
|
431
|
-
];
|
|
432
|
-
var NotificationSetting$ = [3, n0, _NS,
|
|
433
|
-
0,
|
|
434
|
-
[_en, _ev, _th, _ch],
|
|
435
|
-
[2, 0, 1, 0], 2
|
|
436
|
-
];
|
|
437
|
-
var NotificationSettingDetail$ = [3, n0, _NSD,
|
|
438
|
-
0,
|
|
439
|
-
[_en, _ev, _th, _ch, _cB],
|
|
440
|
-
[2, 0, 1, 0, 0], 2
|
|
441
|
-
];
|
|
442
|
-
var NotificationSettingKey$ = [3, n0, _NSK,
|
|
443
|
-
0,
|
|
444
|
-
[_ev, _ch],
|
|
445
|
-
[0, 0], 1
|
|
446
|
-
];
|
|
447
|
-
var ProfileDetail$ = [3, n0, _PD,
|
|
448
|
-
0,
|
|
449
|
-
[_pI, _pA, _n, _rIP, _en, _cBr, _sP, _rA, _mPA, _cAr, _uA, _dS, _aRSN, _aM],
|
|
450
|
-
[0, 0, 0, 2, 2, 0, 0, 64 | 0, 64 | 0, 5, 5, 1, 2, () => AttributeMappings]
|
|
451
|
-
];
|
|
452
|
-
var ProfileDetailResponse$ = [3, n0, _PDR,
|
|
453
|
-
0,
|
|
454
|
-
[_p],
|
|
455
|
-
[() => ProfileDetail$]
|
|
456
|
-
];
|
|
457
|
-
var PutAttributeMappingRequest$ = [3, n0, _PAMR,
|
|
458
|
-
0,
|
|
459
|
-
[_pI, _cF, _mR],
|
|
460
|
-
[[0, 1], 0, () => MappingRules], 3
|
|
461
|
-
];
|
|
462
|
-
var PutAttributeMappingResponse$ = [3, n0, _PAMRu,
|
|
463
|
-
0,
|
|
464
|
-
[_p],
|
|
465
|
-
[() => ProfileDetail$], 1
|
|
466
|
-
];
|
|
467
|
-
var PutNotificationSettingsRequest$ = [3, n0, _PNSR,
|
|
468
|
-
0,
|
|
469
|
-
[_tAI, _nS],
|
|
470
|
-
[0, () => NotificationSettings], 2
|
|
471
|
-
];
|
|
472
|
-
var PutNotificationSettingsResponse$ = [3, n0, _PNSRu,
|
|
473
|
-
0,
|
|
474
|
-
[_tAr],
|
|
475
|
-
[() => TrustAnchorDetail$], 1
|
|
476
|
-
];
|
|
477
|
-
var ResetNotificationSettingsRequest$ = [3, n0, _RNSR,
|
|
478
|
-
0,
|
|
479
|
-
[_tAI, _nSK],
|
|
480
|
-
[0, () => NotificationSettingKeys], 2
|
|
481
|
-
];
|
|
482
|
-
var ResetNotificationSettingsResponse$ = [3, n0, _RNSRe,
|
|
483
|
-
0,
|
|
484
|
-
[_tAr],
|
|
485
|
-
[() => TrustAnchorDetail$], 1
|
|
486
|
-
];
|
|
487
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
488
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
489
|
-
[_m],
|
|
490
|
-
[0]
|
|
491
|
-
];
|
|
492
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
493
|
-
var ScalarCrlRequest$ = [3, n0, _SCR,
|
|
494
|
-
0,
|
|
495
|
-
[_cI],
|
|
496
|
-
[[0, 1]], 1
|
|
497
|
-
];
|
|
498
|
-
var ScalarProfileRequest$ = [3, n0, _SPR,
|
|
499
|
-
0,
|
|
500
|
-
[_pI],
|
|
501
|
-
[[0, 1]], 1
|
|
502
|
-
];
|
|
503
|
-
var ScalarSubjectRequest$ = [3, n0, _SSR,
|
|
504
|
-
0,
|
|
505
|
-
[_sI],
|
|
506
|
-
[[0, 1]], 1
|
|
507
|
-
];
|
|
508
|
-
var ScalarTrustAnchorRequest$ = [3, n0, _STAR,
|
|
509
|
-
0,
|
|
510
|
-
[_tAI],
|
|
511
|
-
[[0, 1]], 1
|
|
512
|
-
];
|
|
513
|
-
var Source$ = [3, n0, _S,
|
|
514
|
-
0,
|
|
515
|
-
[_sT, _sD],
|
|
516
|
-
[0, () => SourceData$]
|
|
517
|
-
];
|
|
518
|
-
var SubjectDetail$ = [3, n0, _SD,
|
|
519
|
-
0,
|
|
520
|
-
[_sAu, _sI, _en, _xS, _lSA, _cAr, _uA, _cre, _iP],
|
|
521
|
-
[0, 0, 2, 0, 5, 5, 5, () => CredentialSummaries, () => InstanceProperties]
|
|
522
|
-
];
|
|
523
|
-
var SubjectDetailResponse$ = [3, n0, _SDR,
|
|
524
|
-
0,
|
|
525
|
-
[_sub],
|
|
526
|
-
[() => SubjectDetail$]
|
|
527
|
-
];
|
|
528
|
-
var SubjectSummary$ = [3, n0, _SS,
|
|
529
|
-
0,
|
|
530
|
-
[_sAu, _sI, _en, _xS, _lSA, _cAr, _uA],
|
|
531
|
-
[0, 0, 2, 0, 5, 5, 5]
|
|
532
|
-
];
|
|
533
|
-
var Tag$ = [3, n0, _T,
|
|
534
|
-
0,
|
|
535
|
-
[_k, _v],
|
|
536
|
-
[[() => TagKey, 0], [() => TagValue, 0]], 2
|
|
537
|
-
];
|
|
538
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
539
|
-
0,
|
|
540
|
-
[_rAe, _t],
|
|
541
|
-
[0, [() => TagList, 0]], 2
|
|
542
|
-
];
|
|
543
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
544
|
-
0,
|
|
545
|
-
[],
|
|
546
|
-
[]
|
|
547
|
-
];
|
|
548
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
549
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
550
|
-
[_m],
|
|
551
|
-
[0]
|
|
552
|
-
];
|
|
553
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
554
|
-
var TrustAnchorDetail$ = [3, n0, _TAD,
|
|
555
|
-
0,
|
|
556
|
-
[_tAI, _tAA, _n, _s, _en, _cAr, _uA, _nS],
|
|
557
|
-
[0, 0, 0, () => Source$, 2, 5, 5, () => NotificationSettingDetails]
|
|
558
|
-
];
|
|
559
|
-
var TrustAnchorDetailResponse$ = [3, n0, _TADR,
|
|
560
|
-
0,
|
|
561
|
-
[_tAr],
|
|
562
|
-
[() => TrustAnchorDetail$], 1
|
|
563
|
-
];
|
|
564
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
565
|
-
0,
|
|
566
|
-
[_rAe, _tK],
|
|
567
|
-
[0, [() => TagKeyList, 0]], 2
|
|
568
|
-
];
|
|
569
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
570
|
-
0,
|
|
571
|
-
[],
|
|
572
|
-
[]
|
|
573
|
-
];
|
|
574
|
-
var UpdateCrlRequest$ = [3, n0, _UCR,
|
|
575
|
-
0,
|
|
576
|
-
[_cI, _n, _cD],
|
|
577
|
-
[[0, 1], 0, 21], 1
|
|
578
|
-
];
|
|
579
|
-
var UpdateProfileRequest$ = [3, n0, _UPR,
|
|
580
|
-
0,
|
|
581
|
-
[_pI, _n, _sP, _rA, _mPA, _dS, _aRSN],
|
|
582
|
-
[[0, 1], 0, 0, 64 | 0, 64 | 0, 1, 2], 1
|
|
583
|
-
];
|
|
584
|
-
var UpdateTrustAnchorRequest$ = [3, n0, _UTAR,
|
|
585
|
-
0,
|
|
586
|
-
[_tAI, _n, _s],
|
|
587
|
-
[[0, 1], 0, () => Source$], 1
|
|
588
|
-
];
|
|
589
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
590
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
591
|
-
[_m],
|
|
592
|
-
[0]
|
|
593
|
-
];
|
|
594
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
595
|
-
var RolesAnywhereServiceException$ = [-3, _sm, "RolesAnywhereServiceException", 0, [], []];
|
|
596
|
-
schema.TypeRegistry.for(_sm).registerError(RolesAnywhereServiceException$, RolesAnywhereServiceException);
|
|
597
|
-
var AttributeMappings = [1, n0, _AMt,
|
|
598
|
-
0, () => AttributeMapping$
|
|
599
|
-
];
|
|
600
|
-
var CredentialSummaries = [1, n0, _CSr,
|
|
601
|
-
0, () => CredentialSummary$
|
|
602
|
-
];
|
|
603
|
-
var CrlDetails = [1, n0, _CDr,
|
|
604
|
-
0, () => CrlDetail$
|
|
605
|
-
];
|
|
606
|
-
var InstanceProperties = [1, n0, _IPn,
|
|
607
|
-
0, () => InstanceProperty$
|
|
608
|
-
];
|
|
609
|
-
var MappingRules = [1, n0, _MRa,
|
|
610
|
-
0, () => MappingRule$
|
|
611
|
-
];
|
|
612
|
-
var NotificationSettingDetails = [1, n0, _NSDo,
|
|
613
|
-
0, () => NotificationSettingDetail$
|
|
614
|
-
];
|
|
615
|
-
var NotificationSettingKeys = [1, n0, _NSKo,
|
|
616
|
-
0, () => NotificationSettingKey$
|
|
617
|
-
];
|
|
618
|
-
var NotificationSettings = [1, n0, _NSo,
|
|
619
|
-
0, () => NotificationSetting$
|
|
620
|
-
];
|
|
621
|
-
var ProfileDetails = [1, n0, _PDr,
|
|
622
|
-
0, () => ProfileDetail$
|
|
623
|
-
];
|
|
624
|
-
var SubjectSummaries = [1, n0, _SSu,
|
|
625
|
-
0, () => SubjectSummary$
|
|
626
|
-
];
|
|
627
|
-
var TagKeyList = [1, n0, _TKL,
|
|
628
|
-
0, [() => TagKey,
|
|
629
|
-
0]
|
|
630
|
-
];
|
|
631
|
-
var TagList = [1, n0, _TL,
|
|
632
|
-
0, [() => Tag$,
|
|
633
|
-
0]
|
|
634
|
-
];
|
|
635
|
-
var TrustAnchorDetails = [1, n0, _TADr,
|
|
636
|
-
0, () => TrustAnchorDetail$
|
|
637
|
-
];
|
|
638
|
-
var SourceData$ = [4, n0, _SDo,
|
|
639
|
-
0,
|
|
640
|
-
[_xCD, _aPA],
|
|
641
|
-
[0, 0]
|
|
642
|
-
];
|
|
643
|
-
var CreateProfile$ = [9, n0, _CP,
|
|
644
|
-
{ [_h]: ["POST", "/profiles", 201] }, () => CreateProfileRequest$, () => ProfileDetailResponse$
|
|
645
|
-
];
|
|
646
|
-
var CreateTrustAnchor$ = [9, n0, _CTA,
|
|
647
|
-
{ [_h]: ["POST", "/trustanchors", 201] }, () => CreateTrustAnchorRequest$, () => TrustAnchorDetailResponse$
|
|
648
|
-
];
|
|
649
|
-
var DeleteAttributeMapping$ = [9, n0, _DAM,
|
|
650
|
-
{ [_h]: ["DELETE", "/profiles/{profileId}/mappings", 200] }, () => DeleteAttributeMappingRequest$, () => DeleteAttributeMappingResponse$
|
|
651
|
-
];
|
|
652
|
-
var DeleteCrl$ = [9, n0, _DC,
|
|
653
|
-
{ [_h]: ["DELETE", "/crl/{crlId}", 200] }, () => ScalarCrlRequest$, () => CrlDetailResponse$
|
|
654
|
-
];
|
|
655
|
-
var DeleteProfile$ = [9, n0, _DP,
|
|
656
|
-
{ [_h]: ["DELETE", "/profile/{profileId}", 200] }, () => ScalarProfileRequest$, () => ProfileDetailResponse$
|
|
657
|
-
];
|
|
658
|
-
var DeleteTrustAnchor$ = [9, n0, _DTA,
|
|
659
|
-
{ [_h]: ["DELETE", "/trustanchor/{trustAnchorId}", 200] }, () => ScalarTrustAnchorRequest$, () => TrustAnchorDetailResponse$
|
|
660
|
-
];
|
|
661
|
-
var DisableCrl$ = [9, n0, _DCi,
|
|
662
|
-
{ [_h]: ["POST", "/crl/{crlId}/disable", 200] }, () => ScalarCrlRequest$, () => CrlDetailResponse$
|
|
663
|
-
];
|
|
664
|
-
var DisableProfile$ = [9, n0, _DPi,
|
|
665
|
-
{ [_h]: ["POST", "/profile/{profileId}/disable", 200] }, () => ScalarProfileRequest$, () => ProfileDetailResponse$
|
|
666
|
-
];
|
|
667
|
-
var DisableTrustAnchor$ = [9, n0, _DTAi,
|
|
668
|
-
{ [_h]: ["POST", "/trustanchor/{trustAnchorId}/disable", 200] }, () => ScalarTrustAnchorRequest$, () => TrustAnchorDetailResponse$
|
|
669
|
-
];
|
|
670
|
-
var EnableCrl$ = [9, n0, _EC,
|
|
671
|
-
{ [_h]: ["POST", "/crl/{crlId}/enable", 200] }, () => ScalarCrlRequest$, () => CrlDetailResponse$
|
|
672
|
-
];
|
|
673
|
-
var EnableProfile$ = [9, n0, _EP,
|
|
674
|
-
{ [_h]: ["POST", "/profile/{profileId}/enable", 200] }, () => ScalarProfileRequest$, () => ProfileDetailResponse$
|
|
675
|
-
];
|
|
676
|
-
var EnableTrustAnchor$ = [9, n0, _ETA,
|
|
677
|
-
{ [_h]: ["POST", "/trustanchor/{trustAnchorId}/enable", 200] }, () => ScalarTrustAnchorRequest$, () => TrustAnchorDetailResponse$
|
|
678
|
-
];
|
|
679
|
-
var GetCrl$ = [9, n0, _GC,
|
|
680
|
-
{ [_h]: ["GET", "/crl/{crlId}", 200] }, () => ScalarCrlRequest$, () => CrlDetailResponse$
|
|
681
|
-
];
|
|
682
|
-
var GetProfile$ = [9, n0, _GP,
|
|
683
|
-
{ [_h]: ["GET", "/profile/{profileId}", 200] }, () => ScalarProfileRequest$, () => ProfileDetailResponse$
|
|
684
|
-
];
|
|
685
|
-
var GetSubject$ = [9, n0, _GS,
|
|
686
|
-
{ [_h]: ["GET", "/subject/{subjectId}", 200] }, () => ScalarSubjectRequest$, () => SubjectDetailResponse$
|
|
687
|
-
];
|
|
688
|
-
var GetTrustAnchor$ = [9, n0, _GTA,
|
|
689
|
-
{ [_h]: ["GET", "/trustanchor/{trustAnchorId}", 200] }, () => ScalarTrustAnchorRequest$, () => TrustAnchorDetailResponse$
|
|
690
|
-
];
|
|
691
|
-
var ImportCrl$ = [9, n0, _IC,
|
|
692
|
-
{ [_h]: ["POST", "/crls", 201] }, () => ImportCrlRequest$, () => CrlDetailResponse$
|
|
693
|
-
];
|
|
694
|
-
var ListCrls$ = [9, n0, _LC,
|
|
695
|
-
{ [_h]: ["GET", "/crls", 200] }, () => ListRequest$, () => ListCrlsResponse$
|
|
696
|
-
];
|
|
697
|
-
var ListProfiles$ = [9, n0, _LP,
|
|
698
|
-
{ [_h]: ["GET", "/profiles", 200] }, () => ListRequest$, () => ListProfilesResponse$
|
|
699
|
-
];
|
|
700
|
-
var ListSubjects$ = [9, n0, _LS,
|
|
701
|
-
{ [_h]: ["GET", "/subjects", 200] }, () => ListRequest$, () => ListSubjectsResponse$
|
|
702
|
-
];
|
|
703
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
704
|
-
{ [_h]: ["GET", "/ListTagsForResource", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
705
|
-
];
|
|
706
|
-
var ListTrustAnchors$ = [9, n0, _LTA,
|
|
707
|
-
{ [_h]: ["GET", "/trustanchors", 200] }, () => ListRequest$, () => ListTrustAnchorsResponse$
|
|
708
|
-
];
|
|
709
|
-
var PutAttributeMapping$ = [9, n0, _PAM,
|
|
710
|
-
{ [_h]: ["PUT", "/profiles/{profileId}/mappings", 200] }, () => PutAttributeMappingRequest$, () => PutAttributeMappingResponse$
|
|
711
|
-
];
|
|
712
|
-
var PutNotificationSettings$ = [9, n0, _PNS,
|
|
713
|
-
{ [_h]: ["PATCH", "/put-notifications-settings", 200] }, () => PutNotificationSettingsRequest$, () => PutNotificationSettingsResponse$
|
|
714
|
-
];
|
|
715
|
-
var ResetNotificationSettings$ = [9, n0, _RNS,
|
|
716
|
-
{ [_h]: ["PATCH", "/reset-notifications-settings", 200] }, () => ResetNotificationSettingsRequest$, () => ResetNotificationSettingsResponse$
|
|
717
|
-
];
|
|
718
|
-
var TagResource$ = [9, n0, _TR,
|
|
719
|
-
{ [_h]: ["POST", "/TagResource", 201] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
720
|
-
];
|
|
721
|
-
var UntagResource$ = [9, n0, _UR,
|
|
722
|
-
{ [_h]: ["POST", "/UntagResource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
723
|
-
];
|
|
724
|
-
var UpdateCrl$ = [9, n0, _UC,
|
|
725
|
-
{ [_h]: ["PATCH", "/crl/{crlId}", 200] }, () => UpdateCrlRequest$, () => CrlDetailResponse$
|
|
726
|
-
];
|
|
727
|
-
var UpdateProfile$ = [9, n0, _UP,
|
|
728
|
-
{ [_h]: ["PATCH", "/profile/{profileId}", 200] }, () => UpdateProfileRequest$, () => ProfileDetailResponse$
|
|
729
|
-
];
|
|
730
|
-
var UpdateTrustAnchor$ = [9, n0, _UTA,
|
|
731
|
-
{ [_h]: ["PATCH", "/trustanchor/{trustAnchorId}", 200] }, () => UpdateTrustAnchorRequest$, () => TrustAnchorDetailResponse$
|
|
732
|
-
];
|
|
733
|
-
|
|
734
116
|
class CreateProfileCommand extends smithyClient.Command
|
|
735
117
|
.classBuilder()
|
|
736
118
|
.ep(commonParams)
|
|
@@ -739,7 +121,7 @@ class CreateProfileCommand extends smithyClient.Command
|
|
|
739
121
|
})
|
|
740
122
|
.s("RolesAnywhere", "CreateProfile", {})
|
|
741
123
|
.n("RolesAnywhereClient", "CreateProfileCommand")
|
|
742
|
-
.sc(CreateProfile$)
|
|
124
|
+
.sc(schemas_0.CreateProfile$)
|
|
743
125
|
.build() {
|
|
744
126
|
}
|
|
745
127
|
|
|
@@ -751,7 +133,7 @@ class CreateTrustAnchorCommand extends smithyClient.Command
|
|
|
751
133
|
})
|
|
752
134
|
.s("RolesAnywhere", "CreateTrustAnchor", {})
|
|
753
135
|
.n("RolesAnywhereClient", "CreateTrustAnchorCommand")
|
|
754
|
-
.sc(CreateTrustAnchor$)
|
|
136
|
+
.sc(schemas_0.CreateTrustAnchor$)
|
|
755
137
|
.build() {
|
|
756
138
|
}
|
|
757
139
|
|
|
@@ -763,7 +145,7 @@ class DeleteAttributeMappingCommand extends smithyClient.Command
|
|
|
763
145
|
})
|
|
764
146
|
.s("RolesAnywhere", "DeleteAttributeMapping", {})
|
|
765
147
|
.n("RolesAnywhereClient", "DeleteAttributeMappingCommand")
|
|
766
|
-
.sc(DeleteAttributeMapping$)
|
|
148
|
+
.sc(schemas_0.DeleteAttributeMapping$)
|
|
767
149
|
.build() {
|
|
768
150
|
}
|
|
769
151
|
|
|
@@ -775,7 +157,7 @@ class DeleteCrlCommand extends smithyClient.Command
|
|
|
775
157
|
})
|
|
776
158
|
.s("RolesAnywhere", "DeleteCrl", {})
|
|
777
159
|
.n("RolesAnywhereClient", "DeleteCrlCommand")
|
|
778
|
-
.sc(DeleteCrl$)
|
|
160
|
+
.sc(schemas_0.DeleteCrl$)
|
|
779
161
|
.build() {
|
|
780
162
|
}
|
|
781
163
|
|
|
@@ -787,7 +169,7 @@ class DeleteProfileCommand extends smithyClient.Command
|
|
|
787
169
|
})
|
|
788
170
|
.s("RolesAnywhere", "DeleteProfile", {})
|
|
789
171
|
.n("RolesAnywhereClient", "DeleteProfileCommand")
|
|
790
|
-
.sc(DeleteProfile$)
|
|
172
|
+
.sc(schemas_0.DeleteProfile$)
|
|
791
173
|
.build() {
|
|
792
174
|
}
|
|
793
175
|
|
|
@@ -799,7 +181,7 @@ class DeleteTrustAnchorCommand extends smithyClient.Command
|
|
|
799
181
|
})
|
|
800
182
|
.s("RolesAnywhere", "DeleteTrustAnchor", {})
|
|
801
183
|
.n("RolesAnywhereClient", "DeleteTrustAnchorCommand")
|
|
802
|
-
.sc(DeleteTrustAnchor$)
|
|
184
|
+
.sc(schemas_0.DeleteTrustAnchor$)
|
|
803
185
|
.build() {
|
|
804
186
|
}
|
|
805
187
|
|
|
@@ -811,7 +193,7 @@ class DisableCrlCommand extends smithyClient.Command
|
|
|
811
193
|
})
|
|
812
194
|
.s("RolesAnywhere", "DisableCrl", {})
|
|
813
195
|
.n("RolesAnywhereClient", "DisableCrlCommand")
|
|
814
|
-
.sc(DisableCrl$)
|
|
196
|
+
.sc(schemas_0.DisableCrl$)
|
|
815
197
|
.build() {
|
|
816
198
|
}
|
|
817
199
|
|
|
@@ -823,7 +205,7 @@ class DisableProfileCommand extends smithyClient.Command
|
|
|
823
205
|
})
|
|
824
206
|
.s("RolesAnywhere", "DisableProfile", {})
|
|
825
207
|
.n("RolesAnywhereClient", "DisableProfileCommand")
|
|
826
|
-
.sc(DisableProfile$)
|
|
208
|
+
.sc(schemas_0.DisableProfile$)
|
|
827
209
|
.build() {
|
|
828
210
|
}
|
|
829
211
|
|
|
@@ -835,7 +217,7 @@ class DisableTrustAnchorCommand extends smithyClient.Command
|
|
|
835
217
|
})
|
|
836
218
|
.s("RolesAnywhere", "DisableTrustAnchor", {})
|
|
837
219
|
.n("RolesAnywhereClient", "DisableTrustAnchorCommand")
|
|
838
|
-
.sc(DisableTrustAnchor$)
|
|
220
|
+
.sc(schemas_0.DisableTrustAnchor$)
|
|
839
221
|
.build() {
|
|
840
222
|
}
|
|
841
223
|
|
|
@@ -847,7 +229,7 @@ class EnableCrlCommand extends smithyClient.Command
|
|
|
847
229
|
})
|
|
848
230
|
.s("RolesAnywhere", "EnableCrl", {})
|
|
849
231
|
.n("RolesAnywhereClient", "EnableCrlCommand")
|
|
850
|
-
.sc(EnableCrl$)
|
|
232
|
+
.sc(schemas_0.EnableCrl$)
|
|
851
233
|
.build() {
|
|
852
234
|
}
|
|
853
235
|
|
|
@@ -859,7 +241,7 @@ class EnableProfileCommand extends smithyClient.Command
|
|
|
859
241
|
})
|
|
860
242
|
.s("RolesAnywhere", "EnableProfile", {})
|
|
861
243
|
.n("RolesAnywhereClient", "EnableProfileCommand")
|
|
862
|
-
.sc(EnableProfile$)
|
|
244
|
+
.sc(schemas_0.EnableProfile$)
|
|
863
245
|
.build() {
|
|
864
246
|
}
|
|
865
247
|
|
|
@@ -871,7 +253,7 @@ class EnableTrustAnchorCommand extends smithyClient.Command
|
|
|
871
253
|
})
|
|
872
254
|
.s("RolesAnywhere", "EnableTrustAnchor", {})
|
|
873
255
|
.n("RolesAnywhereClient", "EnableTrustAnchorCommand")
|
|
874
|
-
.sc(EnableTrustAnchor$)
|
|
256
|
+
.sc(schemas_0.EnableTrustAnchor$)
|
|
875
257
|
.build() {
|
|
876
258
|
}
|
|
877
259
|
|
|
@@ -883,7 +265,7 @@ class GetCrlCommand extends smithyClient.Command
|
|
|
883
265
|
})
|
|
884
266
|
.s("RolesAnywhere", "GetCrl", {})
|
|
885
267
|
.n("RolesAnywhereClient", "GetCrlCommand")
|
|
886
|
-
.sc(GetCrl$)
|
|
268
|
+
.sc(schemas_0.GetCrl$)
|
|
887
269
|
.build() {
|
|
888
270
|
}
|
|
889
271
|
|
|
@@ -895,7 +277,7 @@ class GetProfileCommand extends smithyClient.Command
|
|
|
895
277
|
})
|
|
896
278
|
.s("RolesAnywhere", "GetProfile", {})
|
|
897
279
|
.n("RolesAnywhereClient", "GetProfileCommand")
|
|
898
|
-
.sc(GetProfile$)
|
|
280
|
+
.sc(schemas_0.GetProfile$)
|
|
899
281
|
.build() {
|
|
900
282
|
}
|
|
901
283
|
|
|
@@ -907,7 +289,7 @@ class GetSubjectCommand extends smithyClient.Command
|
|
|
907
289
|
})
|
|
908
290
|
.s("RolesAnywhere", "GetSubject", {})
|
|
909
291
|
.n("RolesAnywhereClient", "GetSubjectCommand")
|
|
910
|
-
.sc(GetSubject$)
|
|
292
|
+
.sc(schemas_0.GetSubject$)
|
|
911
293
|
.build() {
|
|
912
294
|
}
|
|
913
295
|
|
|
@@ -919,7 +301,7 @@ class GetTrustAnchorCommand extends smithyClient.Command
|
|
|
919
301
|
})
|
|
920
302
|
.s("RolesAnywhere", "GetTrustAnchor", {})
|
|
921
303
|
.n("RolesAnywhereClient", "GetTrustAnchorCommand")
|
|
922
|
-
.sc(GetTrustAnchor$)
|
|
304
|
+
.sc(schemas_0.GetTrustAnchor$)
|
|
923
305
|
.build() {
|
|
924
306
|
}
|
|
925
307
|
|
|
@@ -931,7 +313,7 @@ class ImportCrlCommand extends smithyClient.Command
|
|
|
931
313
|
})
|
|
932
314
|
.s("RolesAnywhere", "ImportCrl", {})
|
|
933
315
|
.n("RolesAnywhereClient", "ImportCrlCommand")
|
|
934
|
-
.sc(ImportCrl$)
|
|
316
|
+
.sc(schemas_0.ImportCrl$)
|
|
935
317
|
.build() {
|
|
936
318
|
}
|
|
937
319
|
|
|
@@ -943,7 +325,7 @@ class ListCrlsCommand extends smithyClient.Command
|
|
|
943
325
|
})
|
|
944
326
|
.s("RolesAnywhere", "ListCrls", {})
|
|
945
327
|
.n("RolesAnywhereClient", "ListCrlsCommand")
|
|
946
|
-
.sc(ListCrls$)
|
|
328
|
+
.sc(schemas_0.ListCrls$)
|
|
947
329
|
.build() {
|
|
948
330
|
}
|
|
949
331
|
|
|
@@ -955,7 +337,7 @@ class ListProfilesCommand extends smithyClient.Command
|
|
|
955
337
|
})
|
|
956
338
|
.s("RolesAnywhere", "ListProfiles", {})
|
|
957
339
|
.n("RolesAnywhereClient", "ListProfilesCommand")
|
|
958
|
-
.sc(ListProfiles$)
|
|
340
|
+
.sc(schemas_0.ListProfiles$)
|
|
959
341
|
.build() {
|
|
960
342
|
}
|
|
961
343
|
|
|
@@ -967,7 +349,7 @@ class ListSubjectsCommand extends smithyClient.Command
|
|
|
967
349
|
})
|
|
968
350
|
.s("RolesAnywhere", "ListSubjects", {})
|
|
969
351
|
.n("RolesAnywhereClient", "ListSubjectsCommand")
|
|
970
|
-
.sc(ListSubjects$)
|
|
352
|
+
.sc(schemas_0.ListSubjects$)
|
|
971
353
|
.build() {
|
|
972
354
|
}
|
|
973
355
|
|
|
@@ -979,7 +361,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
979
361
|
})
|
|
980
362
|
.s("RolesAnywhere", "ListTagsForResource", {})
|
|
981
363
|
.n("RolesAnywhereClient", "ListTagsForResourceCommand")
|
|
982
|
-
.sc(ListTagsForResource$)
|
|
364
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
983
365
|
.build() {
|
|
984
366
|
}
|
|
985
367
|
|
|
@@ -991,7 +373,7 @@ class ListTrustAnchorsCommand extends smithyClient.Command
|
|
|
991
373
|
})
|
|
992
374
|
.s("RolesAnywhere", "ListTrustAnchors", {})
|
|
993
375
|
.n("RolesAnywhereClient", "ListTrustAnchorsCommand")
|
|
994
|
-
.sc(ListTrustAnchors$)
|
|
376
|
+
.sc(schemas_0.ListTrustAnchors$)
|
|
995
377
|
.build() {
|
|
996
378
|
}
|
|
997
379
|
|
|
@@ -1003,7 +385,7 @@ class PutAttributeMappingCommand extends smithyClient.Command
|
|
|
1003
385
|
})
|
|
1004
386
|
.s("RolesAnywhere", "PutAttributeMapping", {})
|
|
1005
387
|
.n("RolesAnywhereClient", "PutAttributeMappingCommand")
|
|
1006
|
-
.sc(PutAttributeMapping$)
|
|
388
|
+
.sc(schemas_0.PutAttributeMapping$)
|
|
1007
389
|
.build() {
|
|
1008
390
|
}
|
|
1009
391
|
|
|
@@ -1015,7 +397,7 @@ class PutNotificationSettingsCommand extends smithyClient.Command
|
|
|
1015
397
|
})
|
|
1016
398
|
.s("RolesAnywhere", "PutNotificationSettings", {})
|
|
1017
399
|
.n("RolesAnywhereClient", "PutNotificationSettingsCommand")
|
|
1018
|
-
.sc(PutNotificationSettings$)
|
|
400
|
+
.sc(schemas_0.PutNotificationSettings$)
|
|
1019
401
|
.build() {
|
|
1020
402
|
}
|
|
1021
403
|
|
|
@@ -1027,7 +409,7 @@ class ResetNotificationSettingsCommand extends smithyClient.Command
|
|
|
1027
409
|
})
|
|
1028
410
|
.s("RolesAnywhere", "ResetNotificationSettings", {})
|
|
1029
411
|
.n("RolesAnywhereClient", "ResetNotificationSettingsCommand")
|
|
1030
|
-
.sc(ResetNotificationSettings$)
|
|
412
|
+
.sc(schemas_0.ResetNotificationSettings$)
|
|
1031
413
|
.build() {
|
|
1032
414
|
}
|
|
1033
415
|
|
|
@@ -1039,7 +421,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1039
421
|
})
|
|
1040
422
|
.s("RolesAnywhere", "TagResource", {})
|
|
1041
423
|
.n("RolesAnywhereClient", "TagResourceCommand")
|
|
1042
|
-
.sc(TagResource$)
|
|
424
|
+
.sc(schemas_0.TagResource$)
|
|
1043
425
|
.build() {
|
|
1044
426
|
}
|
|
1045
427
|
|
|
@@ -1051,7 +433,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1051
433
|
})
|
|
1052
434
|
.s("RolesAnywhere", "UntagResource", {})
|
|
1053
435
|
.n("RolesAnywhereClient", "UntagResourceCommand")
|
|
1054
|
-
.sc(UntagResource$)
|
|
436
|
+
.sc(schemas_0.UntagResource$)
|
|
1055
437
|
.build() {
|
|
1056
438
|
}
|
|
1057
439
|
|
|
@@ -1063,7 +445,7 @@ class UpdateCrlCommand extends smithyClient.Command
|
|
|
1063
445
|
})
|
|
1064
446
|
.s("RolesAnywhere", "UpdateCrl", {})
|
|
1065
447
|
.n("RolesAnywhereClient", "UpdateCrlCommand")
|
|
1066
|
-
.sc(UpdateCrl$)
|
|
448
|
+
.sc(schemas_0.UpdateCrl$)
|
|
1067
449
|
.build() {
|
|
1068
450
|
}
|
|
1069
451
|
|
|
@@ -1075,7 +457,7 @@ class UpdateProfileCommand extends smithyClient.Command
|
|
|
1075
457
|
})
|
|
1076
458
|
.s("RolesAnywhere", "UpdateProfile", {})
|
|
1077
459
|
.n("RolesAnywhereClient", "UpdateProfileCommand")
|
|
1078
|
-
.sc(UpdateProfile$)
|
|
460
|
+
.sc(schemas_0.UpdateProfile$)
|
|
1079
461
|
.build() {
|
|
1080
462
|
}
|
|
1081
463
|
|
|
@@ -1087,7 +469,7 @@ class UpdateTrustAnchorCommand extends smithyClient.Command
|
|
|
1087
469
|
})
|
|
1088
470
|
.s("RolesAnywhere", "UpdateTrustAnchor", {})
|
|
1089
471
|
.n("RolesAnywhereClient", "UpdateTrustAnchorCommand")
|
|
1090
|
-
.sc(UpdateTrustAnchor$)
|
|
472
|
+
.sc(schemas_0.UpdateTrustAnchor$)
|
|
1091
473
|
.build() {
|
|
1092
474
|
}
|
|
1093
475
|
|
|
@@ -1167,131 +549,59 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1167
549
|
enumerable: true,
|
|
1168
550
|
get: function () { return smithyClient.Client; }
|
|
1169
551
|
});
|
|
1170
|
-
exports
|
|
1171
|
-
|
|
1172
|
-
|
|
552
|
+
Object.defineProperty(exports, "RolesAnywhereServiceException", {
|
|
553
|
+
enumerable: true,
|
|
554
|
+
get: function () { return RolesAnywhereServiceException.RolesAnywhereServiceException; }
|
|
555
|
+
});
|
|
1173
556
|
exports.CertificateField = CertificateField;
|
|
1174
|
-
exports.CreateProfile$ = CreateProfile$;
|
|
1175
557
|
exports.CreateProfileCommand = CreateProfileCommand;
|
|
1176
|
-
exports.CreateProfileRequest$ = CreateProfileRequest$;
|
|
1177
|
-
exports.CreateTrustAnchor$ = CreateTrustAnchor$;
|
|
1178
558
|
exports.CreateTrustAnchorCommand = CreateTrustAnchorCommand;
|
|
1179
|
-
exports.CreateTrustAnchorRequest$ = CreateTrustAnchorRequest$;
|
|
1180
|
-
exports.CredentialSummary$ = CredentialSummary$;
|
|
1181
|
-
exports.CrlDetail$ = CrlDetail$;
|
|
1182
|
-
exports.CrlDetailResponse$ = CrlDetailResponse$;
|
|
1183
|
-
exports.DeleteAttributeMapping$ = DeleteAttributeMapping$;
|
|
1184
559
|
exports.DeleteAttributeMappingCommand = DeleteAttributeMappingCommand;
|
|
1185
|
-
exports.DeleteAttributeMappingRequest$ = DeleteAttributeMappingRequest$;
|
|
1186
|
-
exports.DeleteAttributeMappingResponse$ = DeleteAttributeMappingResponse$;
|
|
1187
|
-
exports.DeleteCrl$ = DeleteCrl$;
|
|
1188
560
|
exports.DeleteCrlCommand = DeleteCrlCommand;
|
|
1189
|
-
exports.DeleteProfile$ = DeleteProfile$;
|
|
1190
561
|
exports.DeleteProfileCommand = DeleteProfileCommand;
|
|
1191
|
-
exports.DeleteTrustAnchor$ = DeleteTrustAnchor$;
|
|
1192
562
|
exports.DeleteTrustAnchorCommand = DeleteTrustAnchorCommand;
|
|
1193
|
-
exports.DisableCrl$ = DisableCrl$;
|
|
1194
563
|
exports.DisableCrlCommand = DisableCrlCommand;
|
|
1195
|
-
exports.DisableProfile$ = DisableProfile$;
|
|
1196
564
|
exports.DisableProfileCommand = DisableProfileCommand;
|
|
1197
|
-
exports.DisableTrustAnchor$ = DisableTrustAnchor$;
|
|
1198
565
|
exports.DisableTrustAnchorCommand = DisableTrustAnchorCommand;
|
|
1199
|
-
exports.EnableCrl$ = EnableCrl$;
|
|
1200
566
|
exports.EnableCrlCommand = EnableCrlCommand;
|
|
1201
|
-
exports.EnableProfile$ = EnableProfile$;
|
|
1202
567
|
exports.EnableProfileCommand = EnableProfileCommand;
|
|
1203
|
-
exports.EnableTrustAnchor$ = EnableTrustAnchor$;
|
|
1204
568
|
exports.EnableTrustAnchorCommand = EnableTrustAnchorCommand;
|
|
1205
|
-
exports.GetCrl$ = GetCrl$;
|
|
1206
569
|
exports.GetCrlCommand = GetCrlCommand;
|
|
1207
|
-
exports.GetProfile$ = GetProfile$;
|
|
1208
570
|
exports.GetProfileCommand = GetProfileCommand;
|
|
1209
|
-
exports.GetSubject$ = GetSubject$;
|
|
1210
571
|
exports.GetSubjectCommand = GetSubjectCommand;
|
|
1211
|
-
exports.GetTrustAnchor$ = GetTrustAnchor$;
|
|
1212
572
|
exports.GetTrustAnchorCommand = GetTrustAnchorCommand;
|
|
1213
|
-
exports.ImportCrl$ = ImportCrl$;
|
|
1214
573
|
exports.ImportCrlCommand = ImportCrlCommand;
|
|
1215
|
-
exports.ImportCrlRequest$ = ImportCrlRequest$;
|
|
1216
|
-
exports.InstanceProperty$ = InstanceProperty$;
|
|
1217
|
-
exports.ListCrls$ = ListCrls$;
|
|
1218
574
|
exports.ListCrlsCommand = ListCrlsCommand;
|
|
1219
|
-
exports.ListCrlsResponse$ = ListCrlsResponse$;
|
|
1220
|
-
exports.ListProfiles$ = ListProfiles$;
|
|
1221
575
|
exports.ListProfilesCommand = ListProfilesCommand;
|
|
1222
|
-
exports.ListProfilesResponse$ = ListProfilesResponse$;
|
|
1223
|
-
exports.ListRequest$ = ListRequest$;
|
|
1224
|
-
exports.ListSubjects$ = ListSubjects$;
|
|
1225
576
|
exports.ListSubjectsCommand = ListSubjectsCommand;
|
|
1226
|
-
exports.ListSubjectsResponse$ = ListSubjectsResponse$;
|
|
1227
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1228
577
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1229
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1230
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1231
|
-
exports.ListTrustAnchors$ = ListTrustAnchors$;
|
|
1232
578
|
exports.ListTrustAnchorsCommand = ListTrustAnchorsCommand;
|
|
1233
|
-
exports.ListTrustAnchorsResponse$ = ListTrustAnchorsResponse$;
|
|
1234
|
-
exports.MappingRule$ = MappingRule$;
|
|
1235
579
|
exports.NotificationChannel = NotificationChannel;
|
|
1236
580
|
exports.NotificationEvent = NotificationEvent;
|
|
1237
|
-
exports.NotificationSetting$ = NotificationSetting$;
|
|
1238
|
-
exports.NotificationSettingDetail$ = NotificationSettingDetail$;
|
|
1239
|
-
exports.NotificationSettingKey$ = NotificationSettingKey$;
|
|
1240
|
-
exports.ProfileDetail$ = ProfileDetail$;
|
|
1241
|
-
exports.ProfileDetailResponse$ = ProfileDetailResponse$;
|
|
1242
|
-
exports.PutAttributeMapping$ = PutAttributeMapping$;
|
|
1243
581
|
exports.PutAttributeMappingCommand = PutAttributeMappingCommand;
|
|
1244
|
-
exports.PutAttributeMappingRequest$ = PutAttributeMappingRequest$;
|
|
1245
|
-
exports.PutAttributeMappingResponse$ = PutAttributeMappingResponse$;
|
|
1246
|
-
exports.PutNotificationSettings$ = PutNotificationSettings$;
|
|
1247
582
|
exports.PutNotificationSettingsCommand = PutNotificationSettingsCommand;
|
|
1248
|
-
exports.PutNotificationSettingsRequest$ = PutNotificationSettingsRequest$;
|
|
1249
|
-
exports.PutNotificationSettingsResponse$ = PutNotificationSettingsResponse$;
|
|
1250
|
-
exports.ResetNotificationSettings$ = ResetNotificationSettings$;
|
|
1251
583
|
exports.ResetNotificationSettingsCommand = ResetNotificationSettingsCommand;
|
|
1252
|
-
exports.ResetNotificationSettingsRequest$ = ResetNotificationSettingsRequest$;
|
|
1253
|
-
exports.ResetNotificationSettingsResponse$ = ResetNotificationSettingsResponse$;
|
|
1254
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1255
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1256
584
|
exports.RolesAnywhere = RolesAnywhere;
|
|
1257
585
|
exports.RolesAnywhereClient = RolesAnywhereClient;
|
|
1258
|
-
exports.RolesAnywhereServiceException = RolesAnywhereServiceException;
|
|
1259
|
-
exports.RolesAnywhereServiceException$ = RolesAnywhereServiceException$;
|
|
1260
|
-
exports.ScalarCrlRequest$ = ScalarCrlRequest$;
|
|
1261
|
-
exports.ScalarProfileRequest$ = ScalarProfileRequest$;
|
|
1262
|
-
exports.ScalarSubjectRequest$ = ScalarSubjectRequest$;
|
|
1263
|
-
exports.ScalarTrustAnchorRequest$ = ScalarTrustAnchorRequest$;
|
|
1264
|
-
exports.Source$ = Source$;
|
|
1265
|
-
exports.SourceData$ = SourceData$;
|
|
1266
|
-
exports.SubjectDetail$ = SubjectDetail$;
|
|
1267
|
-
exports.SubjectDetailResponse$ = SubjectDetailResponse$;
|
|
1268
|
-
exports.SubjectSummary$ = SubjectSummary$;
|
|
1269
|
-
exports.Tag$ = Tag$;
|
|
1270
|
-
exports.TagResource$ = TagResource$;
|
|
1271
586
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1272
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1273
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1274
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
1275
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1276
|
-
exports.TrustAnchorDetail$ = TrustAnchorDetail$;
|
|
1277
|
-
exports.TrustAnchorDetailResponse$ = TrustAnchorDetailResponse$;
|
|
1278
587
|
exports.TrustAnchorType = TrustAnchorType;
|
|
1279
|
-
exports.UntagResource$ = UntagResource$;
|
|
1280
588
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1281
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1282
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1283
|
-
exports.UpdateCrl$ = UpdateCrl$;
|
|
1284
589
|
exports.UpdateCrlCommand = UpdateCrlCommand;
|
|
1285
|
-
exports.UpdateCrlRequest$ = UpdateCrlRequest$;
|
|
1286
|
-
exports.UpdateProfile$ = UpdateProfile$;
|
|
1287
590
|
exports.UpdateProfileCommand = UpdateProfileCommand;
|
|
1288
|
-
exports.UpdateProfileRequest$ = UpdateProfileRequest$;
|
|
1289
|
-
exports.UpdateTrustAnchor$ = UpdateTrustAnchor$;
|
|
1290
591
|
exports.UpdateTrustAnchorCommand = UpdateTrustAnchorCommand;
|
|
1291
|
-
exports.UpdateTrustAnchorRequest$ = UpdateTrustAnchorRequest$;
|
|
1292
|
-
exports.ValidationException = ValidationException;
|
|
1293
|
-
exports.ValidationException$ = ValidationException$;
|
|
1294
592
|
exports.paginateListCrls = paginateListCrls;
|
|
1295
593
|
exports.paginateListProfiles = paginateListProfiles;
|
|
1296
594
|
exports.paginateListSubjects = paginateListSubjects;
|
|
1297
595
|
exports.paginateListTrustAnchors = paginateListTrustAnchors;
|
|
596
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
597
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
598
|
+
enumerable: true,
|
|
599
|
+
get: function () { return schemas_0[k]; }
|
|
600
|
+
});
|
|
601
|
+
});
|
|
602
|
+
Object.keys(errors).forEach(function (k) {
|
|
603
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
604
|
+
enumerable: true,
|
|
605
|
+
get: function () { return errors[k]; }
|
|
606
|
+
});
|
|
607
|
+
});
|