@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
|
@@ -164,14 +164,14 @@ const _xCD = "x509CertificateData";
|
|
|
164
164
|
const _xS = "x509Subject";
|
|
165
165
|
const n0 = "com.amazonaws.rolesanywhere";
|
|
166
166
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
167
|
-
import { AccessDeniedException
|
|
168
|
-
import { RolesAnywhereServiceException
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
172
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
173
|
-
export var AttributeMapping = [3, n0, _AM, 0, [_cF, _mR], [0, () => MappingRules]];
|
|
174
|
-
export var CreateProfileRequest = [
|
|
167
|
+
import { AccessDeniedException, ResourceNotFoundException, TooManyTagsException, ValidationException, } from "../models/errors";
|
|
168
|
+
import { RolesAnywhereServiceException } from "../models/RolesAnywhereServiceException";
|
|
169
|
+
var TagKey = [0, n0, _TK, 8, 0];
|
|
170
|
+
var TagValue = [0, n0, _TV, 8, 0];
|
|
171
|
+
export var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
172
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
173
|
+
export var AttributeMapping$ = [3, n0, _AM, 0, [_cF, _mR], [0, () => MappingRules]];
|
|
174
|
+
export var CreateProfileRequest$ = [
|
|
175
175
|
3,
|
|
176
176
|
n0,
|
|
177
177
|
_CPR,
|
|
@@ -179,15 +179,15 @@ export var CreateProfileRequest = [
|
|
|
179
179
|
[_n, _rIP, _sP, _rA, _mPA, _dS, _en, _t, _aRSN],
|
|
180
180
|
[0, 2, 0, 64 | 0, 64 | 0, 1, 2, [() => TagList, 0], 2],
|
|
181
181
|
];
|
|
182
|
-
export var CreateTrustAnchorRequest = [
|
|
182
|
+
export var CreateTrustAnchorRequest$ = [
|
|
183
183
|
3,
|
|
184
184
|
n0,
|
|
185
185
|
_CTAR,
|
|
186
186
|
0,
|
|
187
187
|
[_n, _s, _en, _t, _nS],
|
|
188
|
-
[0, () => Source
|
|
188
|
+
[0, () => Source$, 2, [() => TagList, 0], () => NotificationSettings],
|
|
189
189
|
];
|
|
190
|
-
export var CredentialSummary = [
|
|
190
|
+
export var CredentialSummary$ = [
|
|
191
191
|
3,
|
|
192
192
|
n0,
|
|
193
193
|
_CS,
|
|
@@ -195,7 +195,7 @@ export var CredentialSummary = [
|
|
|
195
195
|
[_sA, _sN, _i, _en, _xCD, _f],
|
|
196
196
|
[5, 0, 0, 2, 0, 2],
|
|
197
197
|
];
|
|
198
|
-
export var CrlDetail = [
|
|
198
|
+
export var CrlDetail$ = [
|
|
199
199
|
3,
|
|
200
200
|
n0,
|
|
201
201
|
_CD,
|
|
@@ -203,8 +203,8 @@ export var CrlDetail = [
|
|
|
203
203
|
[_cI, _cA, _n, _en, _cD, _tAA, _cAr, _uA],
|
|
204
204
|
[0, 0, 0, 2, 21, 0, 5, 5],
|
|
205
205
|
];
|
|
206
|
-
export var CrlDetailResponse = [3, n0, _CDR, 0, [_cr], [() => CrlDetail]];
|
|
207
|
-
export var DeleteAttributeMappingRequest = [
|
|
206
|
+
export var CrlDetailResponse$ = [3, n0, _CDR, 0, [_cr], [() => CrlDetail$]];
|
|
207
|
+
export var DeleteAttributeMappingRequest$ = [
|
|
208
208
|
3,
|
|
209
209
|
n0,
|
|
210
210
|
_DAMR,
|
|
@@ -216,8 +216,8 @@ export var DeleteAttributeMappingRequest = [
|
|
|
216
216
|
[64 | 0, { [_hQ]: _sp }],
|
|
217
217
|
],
|
|
218
218
|
];
|
|
219
|
-
export var DeleteAttributeMappingResponse = [3, n0, _DAMRe, 0, [_p], [() => ProfileDetail]];
|
|
220
|
-
export var ImportCrlRequest = [
|
|
219
|
+
export var DeleteAttributeMappingResponse$ = [3, n0, _DAMRe, 0, [_p], [() => ProfileDetail$]];
|
|
220
|
+
export var ImportCrlRequest$ = [
|
|
221
221
|
3,
|
|
222
222
|
n0,
|
|
223
223
|
_ICR,
|
|
@@ -225,10 +225,10 @@ export var ImportCrlRequest = [
|
|
|
225
225
|
[_n, _cD, _en, _t, _tAA],
|
|
226
226
|
[0, 21, 2, [() => TagList, 0], 0],
|
|
227
227
|
];
|
|
228
|
-
export var InstanceProperty = [3, n0, _IP, 0, [_sA, _pr, _f], [5, 128 | 0, 2]];
|
|
229
|
-
export var ListCrlsResponse = [3, n0, _LCR, 0, [_nT, _crl], [0, () => CrlDetails]];
|
|
230
|
-
export var ListProfilesResponse = [3, n0, _LPR, 0, [_nT, _pro], [0, () => ProfileDetails]];
|
|
231
|
-
export var ListRequest = [
|
|
228
|
+
export var InstanceProperty$ = [3, n0, _IP, 0, [_sA, _pr, _f], [5, 128 | 0, 2]];
|
|
229
|
+
export var ListCrlsResponse$ = [3, n0, _LCR, 0, [_nT, _crl], [0, () => CrlDetails]];
|
|
230
|
+
export var ListProfilesResponse$ = [3, n0, _LPR, 0, [_nT, _pro], [0, () => ProfileDetails]];
|
|
231
|
+
export var ListRequest$ = [
|
|
232
232
|
3,
|
|
233
233
|
n0,
|
|
234
234
|
_LR,
|
|
@@ -239,10 +239,10 @@ export var ListRequest = [
|
|
|
239
239
|
[1, { [_hQ]: _pS }],
|
|
240
240
|
],
|
|
241
241
|
];
|
|
242
|
-
export var ListSubjectsResponse = [3, n0, _LSR, 0, [_su, _nT], [() => SubjectSummaries, 0]];
|
|
243
|
-
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, { [_hQ]: _rAe }]]];
|
|
244
|
-
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [[() => TagList, 0]]];
|
|
245
|
-
export var ListTrustAnchorsResponse = [
|
|
242
|
+
export var ListSubjectsResponse$ = [3, n0, _LSR, 0, [_su, _nT], [() => SubjectSummaries, 0]];
|
|
243
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rAe], [[0, { [_hQ]: _rAe }]]];
|
|
244
|
+
export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [[() => TagList, 0]]];
|
|
245
|
+
export var ListTrustAnchorsResponse$ = [
|
|
246
246
|
3,
|
|
247
247
|
n0,
|
|
248
248
|
_LTAR,
|
|
@@ -250,9 +250,9 @@ export var ListTrustAnchorsResponse = [
|
|
|
250
250
|
[_nT, _tA],
|
|
251
251
|
[0, () => TrustAnchorDetails],
|
|
252
252
|
];
|
|
253
|
-
export var MappingRule = [3, n0, _MR, 0, [_spe], [0]];
|
|
254
|
-
export var NotificationSetting = [3, n0, _NS, 0, [_en, _ev, _th, _ch], [2, 0, 1, 0]];
|
|
255
|
-
export var NotificationSettingDetail = [
|
|
253
|
+
export var MappingRule$ = [3, n0, _MR, 0, [_spe], [0]];
|
|
254
|
+
export var NotificationSetting$ = [3, n0, _NS, 0, [_en, _ev, _th, _ch], [2, 0, 1, 0]];
|
|
255
|
+
export var NotificationSettingDetail$ = [
|
|
256
256
|
3,
|
|
257
257
|
n0,
|
|
258
258
|
_NSD,
|
|
@@ -260,8 +260,8 @@ export var NotificationSettingDetail = [
|
|
|
260
260
|
[_en, _ev, _th, _ch, _cB],
|
|
261
261
|
[2, 0, 1, 0, 0],
|
|
262
262
|
];
|
|
263
|
-
export var NotificationSettingKey = [3, n0, _NSK, 0, [_ev, _ch], [0, 0]];
|
|
264
|
-
export var ProfileDetail = [
|
|
263
|
+
export var NotificationSettingKey$ = [3, n0, _NSK, 0, [_ev, _ch], [0, 0]];
|
|
264
|
+
export var ProfileDetail$ = [
|
|
265
265
|
3,
|
|
266
266
|
n0,
|
|
267
267
|
_PD,
|
|
@@ -269,8 +269,8 @@ export var ProfileDetail = [
|
|
|
269
269
|
[_pI, _pA, _n, _rIP, _en, _cBr, _sP, _rA, _mPA, _cAr, _uA, _dS, _aRSN, _aM],
|
|
270
270
|
[0, 0, 0, 2, 2, 0, 0, 64 | 0, 64 | 0, 5, 5, 1, 2, () => AttributeMappings],
|
|
271
271
|
];
|
|
272
|
-
export var ProfileDetailResponse = [3, n0, _PDR, 0, [_p], [() => ProfileDetail]];
|
|
273
|
-
export var PutAttributeMappingRequest = [
|
|
272
|
+
export var ProfileDetailResponse$ = [3, n0, _PDR, 0, [_p], [() => ProfileDetail$]];
|
|
273
|
+
export var PutAttributeMappingRequest$ = [
|
|
274
274
|
3,
|
|
275
275
|
n0,
|
|
276
276
|
_PAMR,
|
|
@@ -278,8 +278,8 @@ export var PutAttributeMappingRequest = [
|
|
|
278
278
|
[_pI, _cF, _mR],
|
|
279
279
|
[[0, 1], 0, () => MappingRules],
|
|
280
280
|
];
|
|
281
|
-
export var PutAttributeMappingResponse = [3, n0, _PAMRu, 0, [_p], [() => ProfileDetail]];
|
|
282
|
-
export var PutNotificationSettingsRequest = [
|
|
281
|
+
export var PutAttributeMappingResponse$ = [3, n0, _PAMRu, 0, [_p], [() => ProfileDetail$]];
|
|
282
|
+
export var PutNotificationSettingsRequest$ = [
|
|
283
283
|
3,
|
|
284
284
|
n0,
|
|
285
285
|
_PNSR,
|
|
@@ -287,15 +287,15 @@ export var PutNotificationSettingsRequest = [
|
|
|
287
287
|
[_tAI, _nS],
|
|
288
288
|
[0, () => NotificationSettings],
|
|
289
289
|
];
|
|
290
|
-
export var PutNotificationSettingsResponse = [
|
|
290
|
+
export var PutNotificationSettingsResponse$ = [
|
|
291
291
|
3,
|
|
292
292
|
n0,
|
|
293
293
|
_PNSRu,
|
|
294
294
|
0,
|
|
295
295
|
[_tAr],
|
|
296
|
-
[() => TrustAnchorDetail],
|
|
296
|
+
[() => TrustAnchorDetail$],
|
|
297
297
|
];
|
|
298
|
-
export var ResetNotificationSettingsRequest = [
|
|
298
|
+
export var ResetNotificationSettingsRequest$ = [
|
|
299
299
|
3,
|
|
300
300
|
n0,
|
|
301
301
|
_RNSR,
|
|
@@ -303,22 +303,22 @@ export var ResetNotificationSettingsRequest = [
|
|
|
303
303
|
[_tAI, _nSK],
|
|
304
304
|
[0, () => NotificationSettingKeys],
|
|
305
305
|
];
|
|
306
|
-
export var ResetNotificationSettingsResponse = [
|
|
306
|
+
export var ResetNotificationSettingsResponse$ = [
|
|
307
307
|
3,
|
|
308
308
|
n0,
|
|
309
309
|
_RNSRe,
|
|
310
310
|
0,
|
|
311
311
|
[_tAr],
|
|
312
|
-
[() => TrustAnchorDetail],
|
|
313
|
-
];
|
|
314
|
-
export var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
315
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
316
|
-
export var ScalarCrlRequest = [3, n0, _SCR, 0, [_cI], [[0, 1]]];
|
|
317
|
-
export var ScalarProfileRequest = [3, n0, _SPR, 0, [_pI], [[0, 1]]];
|
|
318
|
-
export var ScalarSubjectRequest = [3, n0, _SSR, 0, [_sI], [[0, 1]]];
|
|
319
|
-
export var ScalarTrustAnchorRequest = [3, n0, _STAR, 0, [_tAI], [[0, 1]]];
|
|
320
|
-
export var Source = [3, n0, _S, 0, [_sT, _sD], [0, () => SourceData]];
|
|
321
|
-
export var SubjectDetail = [
|
|
312
|
+
[() => TrustAnchorDetail$],
|
|
313
|
+
];
|
|
314
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
315
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
316
|
+
export var ScalarCrlRequest$ = [3, n0, _SCR, 0, [_cI], [[0, 1]]];
|
|
317
|
+
export var ScalarProfileRequest$ = [3, n0, _SPR, 0, [_pI], [[0, 1]]];
|
|
318
|
+
export var ScalarSubjectRequest$ = [3, n0, _SSR, 0, [_sI], [[0, 1]]];
|
|
319
|
+
export var ScalarTrustAnchorRequest$ = [3, n0, _STAR, 0, [_tAI], [[0, 1]]];
|
|
320
|
+
export var Source$ = [3, n0, _S, 0, [_sT, _sD], [0, () => SourceData$]];
|
|
321
|
+
export var SubjectDetail$ = [
|
|
322
322
|
3,
|
|
323
323
|
n0,
|
|
324
324
|
_SD,
|
|
@@ -326,8 +326,8 @@ export var SubjectDetail = [
|
|
|
326
326
|
[_sAu, _sI, _en, _xS, _lSA, _cAr, _uA, _cre, _iP],
|
|
327
327
|
[0, 0, 2, 0, 5, 5, 5, () => CredentialSummaries, () => InstanceProperties],
|
|
328
328
|
];
|
|
329
|
-
export var SubjectDetailResponse = [3, n0, _SDR, 0, [_sub], [() => SubjectDetail]];
|
|
330
|
-
export var SubjectSummary = [
|
|
329
|
+
export var SubjectDetailResponse$ = [3, n0, _SDR, 0, [_sub], [() => SubjectDetail$]];
|
|
330
|
+
export var SubjectSummary$ = [
|
|
331
331
|
3,
|
|
332
332
|
n0,
|
|
333
333
|
_SS,
|
|
@@ -335,7 +335,7 @@ export var SubjectSummary = [
|
|
|
335
335
|
[_sAu, _sI, _en, _xS, _lSA, _cAr, _uA],
|
|
336
336
|
[0, 0, 2, 0, 5, 5, 5],
|
|
337
337
|
];
|
|
338
|
-
export var Tag = [
|
|
338
|
+
export var Tag$ = [
|
|
339
339
|
3,
|
|
340
340
|
n0,
|
|
341
341
|
_T,
|
|
@@ -346,23 +346,23 @@ export var Tag = [
|
|
|
346
346
|
[() => TagValue, 0],
|
|
347
347
|
],
|
|
348
348
|
];
|
|
349
|
-
export var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _t], [0, [() => TagList, 0]]];
|
|
350
|
-
export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
351
|
-
export var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
352
|
-
TypeRegistry.for(n0).registerError(TooManyTagsException
|
|
353
|
-
export var TrustAnchorDetail = [
|
|
349
|
+
export var TagResourceRequest$ = [3, n0, _TRR, 0, [_rAe, _t], [0, [() => TagList, 0]]];
|
|
350
|
+
export var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
351
|
+
export var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
352
|
+
TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
353
|
+
export var TrustAnchorDetail$ = [
|
|
354
354
|
3,
|
|
355
355
|
n0,
|
|
356
356
|
_TAD,
|
|
357
357
|
0,
|
|
358
358
|
[_tAI, _tAA, _n, _s, _en, _cAr, _uA, _nS],
|
|
359
|
-
[0, 0, 0, () => Source
|
|
359
|
+
[0, 0, 0, () => Source$, 2, 5, 5, () => NotificationSettingDetails],
|
|
360
360
|
];
|
|
361
|
-
export var TrustAnchorDetailResponse = [3, n0, _TADR, 0, [_tAr], [() => TrustAnchorDetail]];
|
|
362
|
-
export var UntagResourceRequest = [3, n0, _URR, 0, [_rAe, _tK], [0, [() => TagKeyList, 0]]];
|
|
363
|
-
export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
364
|
-
export var UpdateCrlRequest = [3, n0, _UCR, 0, [_cI, _n, _cD], [[0, 1], 0, 21]];
|
|
365
|
-
export var UpdateProfileRequest = [
|
|
361
|
+
export var TrustAnchorDetailResponse$ = [3, n0, _TADR, 0, [_tAr], [() => TrustAnchorDetail$]];
|
|
362
|
+
export var UntagResourceRequest$ = [3, n0, _URR, 0, [_rAe, _tK], [0, [() => TagKeyList, 0]]];
|
|
363
|
+
export var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
364
|
+
export var UpdateCrlRequest$ = [3, n0, _UCR, 0, [_cI, _n, _cD], [[0, 1], 0, 21]];
|
|
365
|
+
export var UpdateProfileRequest$ = [
|
|
366
366
|
3,
|
|
367
367
|
n0,
|
|
368
368
|
_UPR,
|
|
@@ -370,273 +370,273 @@ export var UpdateProfileRequest = [
|
|
|
370
370
|
[_pI, _n, _sP, _rA, _mPA, _dS, _aRSN],
|
|
371
371
|
[[0, 1], 0, 0, 64 | 0, 64 | 0, 1, 2],
|
|
372
372
|
];
|
|
373
|
-
export var UpdateTrustAnchorRequest = [
|
|
373
|
+
export var UpdateTrustAnchorRequest$ = [
|
|
374
374
|
3,
|
|
375
375
|
n0,
|
|
376
376
|
_UTAR,
|
|
377
377
|
0,
|
|
378
378
|
[_tAI, _n, _s],
|
|
379
|
-
[[0, 1], 0, () => Source],
|
|
380
|
-
];
|
|
381
|
-
export var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
382
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
383
|
-
export var RolesAnywhereServiceException = [-3, _sm, "RolesAnywhereServiceException", 0, [], []];
|
|
384
|
-
TypeRegistry.for(_sm).registerError(RolesAnywhereServiceException
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
export var SourceData = [3, n0, _SDo, 0, [_xCD, _aPA], [0, 0]];
|
|
403
|
-
export var CreateProfile = [
|
|
379
|
+
[[0, 1], 0, () => Source$],
|
|
380
|
+
];
|
|
381
|
+
export var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
382
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
383
|
+
export var RolesAnywhereServiceException$ = [-3, _sm, "RolesAnywhereServiceException", 0, [], []];
|
|
384
|
+
TypeRegistry.for(_sm).registerError(RolesAnywhereServiceException$, RolesAnywhereServiceException);
|
|
385
|
+
var AttributeMappings = [1, n0, _AMt, 0, () => AttributeMapping$];
|
|
386
|
+
var CredentialSummaries = [1, n0, _CSr, 0, () => CredentialSummary$];
|
|
387
|
+
var CrlDetails = [1, n0, _CDr, 0, () => CrlDetail$];
|
|
388
|
+
var InstanceProperties = [1, n0, _IPn, 0, () => InstanceProperty$];
|
|
389
|
+
var ManagedPolicyList = 64 | 0;
|
|
390
|
+
var MappingRules = [1, n0, _MRa, 0, () => MappingRule$];
|
|
391
|
+
var NotificationSettingDetails = [1, n0, _NSDo, 0, () => NotificationSettingDetail$];
|
|
392
|
+
var NotificationSettingKeys = [1, n0, _NSKo, 0, () => NotificationSettingKey$];
|
|
393
|
+
var NotificationSettings = [1, n0, _NSo, 0, () => NotificationSetting$];
|
|
394
|
+
var ProfileDetails = [1, n0, _PDr, 0, () => ProfileDetail$];
|
|
395
|
+
var RoleArnList = 64 | 0;
|
|
396
|
+
var SpecifierList = 64 | 0;
|
|
397
|
+
var SubjectSummaries = [1, n0, _SSu, 0, () => SubjectSummary$];
|
|
398
|
+
var TagKeyList = [1, n0, _TKL, 0, [() => TagKey, 0]];
|
|
399
|
+
var TagList = [1, n0, _TL, 0, [() => Tag$, 0]];
|
|
400
|
+
var TrustAnchorDetails = [1, n0, _TADr, 0, () => TrustAnchorDetail$];
|
|
401
|
+
var InstancePropertyMap = 128 | 0;
|
|
402
|
+
export var SourceData$ = [3, n0, _SDo, 0, [_xCD, _aPA], [0, 0]];
|
|
403
|
+
export var CreateProfile$ = [
|
|
404
404
|
9,
|
|
405
405
|
n0,
|
|
406
406
|
_CP,
|
|
407
407
|
{ [_h]: ["POST", "/profiles", 201] },
|
|
408
|
-
() => CreateProfileRequest
|
|
409
|
-
() => ProfileDetailResponse
|
|
408
|
+
() => CreateProfileRequest$,
|
|
409
|
+
() => ProfileDetailResponse$,
|
|
410
410
|
];
|
|
411
|
-
export var CreateTrustAnchor = [
|
|
411
|
+
export var CreateTrustAnchor$ = [
|
|
412
412
|
9,
|
|
413
413
|
n0,
|
|
414
414
|
_CTA,
|
|
415
415
|
{ [_h]: ["POST", "/trustanchors", 201] },
|
|
416
|
-
() => CreateTrustAnchorRequest
|
|
417
|
-
() => TrustAnchorDetailResponse
|
|
416
|
+
() => CreateTrustAnchorRequest$,
|
|
417
|
+
() => TrustAnchorDetailResponse$,
|
|
418
418
|
];
|
|
419
|
-
export var DeleteAttributeMapping = [
|
|
419
|
+
export var DeleteAttributeMapping$ = [
|
|
420
420
|
9,
|
|
421
421
|
n0,
|
|
422
422
|
_DAM,
|
|
423
423
|
{ [_h]: ["DELETE", "/profiles/{profileId}/mappings", 200] },
|
|
424
|
-
() => DeleteAttributeMappingRequest
|
|
425
|
-
() => DeleteAttributeMappingResponse
|
|
424
|
+
() => DeleteAttributeMappingRequest$,
|
|
425
|
+
() => DeleteAttributeMappingResponse$,
|
|
426
426
|
];
|
|
427
|
-
export var DeleteCrl = [
|
|
427
|
+
export var DeleteCrl$ = [
|
|
428
428
|
9,
|
|
429
429
|
n0,
|
|
430
430
|
_DC,
|
|
431
431
|
{ [_h]: ["DELETE", "/crl/{crlId}", 200] },
|
|
432
|
-
() => ScalarCrlRequest
|
|
433
|
-
() => CrlDetailResponse
|
|
432
|
+
() => ScalarCrlRequest$,
|
|
433
|
+
() => CrlDetailResponse$,
|
|
434
434
|
];
|
|
435
|
-
export var DeleteProfile = [
|
|
435
|
+
export var DeleteProfile$ = [
|
|
436
436
|
9,
|
|
437
437
|
n0,
|
|
438
438
|
_DP,
|
|
439
439
|
{ [_h]: ["DELETE", "/profile/{profileId}", 200] },
|
|
440
|
-
() => ScalarProfileRequest
|
|
441
|
-
() => ProfileDetailResponse
|
|
440
|
+
() => ScalarProfileRequest$,
|
|
441
|
+
() => ProfileDetailResponse$,
|
|
442
442
|
];
|
|
443
|
-
export var DeleteTrustAnchor = [
|
|
443
|
+
export var DeleteTrustAnchor$ = [
|
|
444
444
|
9,
|
|
445
445
|
n0,
|
|
446
446
|
_DTA,
|
|
447
447
|
{ [_h]: ["DELETE", "/trustanchor/{trustAnchorId}", 200] },
|
|
448
|
-
() => ScalarTrustAnchorRequest
|
|
449
|
-
() => TrustAnchorDetailResponse
|
|
448
|
+
() => ScalarTrustAnchorRequest$,
|
|
449
|
+
() => TrustAnchorDetailResponse$,
|
|
450
450
|
];
|
|
451
|
-
export var DisableCrl = [
|
|
451
|
+
export var DisableCrl$ = [
|
|
452
452
|
9,
|
|
453
453
|
n0,
|
|
454
454
|
_DCi,
|
|
455
455
|
{ [_h]: ["POST", "/crl/{crlId}/disable", 200] },
|
|
456
|
-
() => ScalarCrlRequest
|
|
457
|
-
() => CrlDetailResponse
|
|
456
|
+
() => ScalarCrlRequest$,
|
|
457
|
+
() => CrlDetailResponse$,
|
|
458
458
|
];
|
|
459
|
-
export var DisableProfile = [
|
|
459
|
+
export var DisableProfile$ = [
|
|
460
460
|
9,
|
|
461
461
|
n0,
|
|
462
462
|
_DPi,
|
|
463
463
|
{ [_h]: ["POST", "/profile/{profileId}/disable", 200] },
|
|
464
|
-
() => ScalarProfileRequest
|
|
465
|
-
() => ProfileDetailResponse
|
|
464
|
+
() => ScalarProfileRequest$,
|
|
465
|
+
() => ProfileDetailResponse$,
|
|
466
466
|
];
|
|
467
|
-
export var DisableTrustAnchor = [
|
|
467
|
+
export var DisableTrustAnchor$ = [
|
|
468
468
|
9,
|
|
469
469
|
n0,
|
|
470
470
|
_DTAi,
|
|
471
471
|
{ [_h]: ["POST", "/trustanchor/{trustAnchorId}/disable", 200] },
|
|
472
|
-
() => ScalarTrustAnchorRequest
|
|
473
|
-
() => TrustAnchorDetailResponse
|
|
472
|
+
() => ScalarTrustAnchorRequest$,
|
|
473
|
+
() => TrustAnchorDetailResponse$,
|
|
474
474
|
];
|
|
475
|
-
export var EnableCrl = [
|
|
475
|
+
export var EnableCrl$ = [
|
|
476
476
|
9,
|
|
477
477
|
n0,
|
|
478
478
|
_EC,
|
|
479
479
|
{ [_h]: ["POST", "/crl/{crlId}/enable", 200] },
|
|
480
|
-
() => ScalarCrlRequest
|
|
481
|
-
() => CrlDetailResponse
|
|
480
|
+
() => ScalarCrlRequest$,
|
|
481
|
+
() => CrlDetailResponse$,
|
|
482
482
|
];
|
|
483
|
-
export var EnableProfile = [
|
|
483
|
+
export var EnableProfile$ = [
|
|
484
484
|
9,
|
|
485
485
|
n0,
|
|
486
486
|
_EP,
|
|
487
487
|
{ [_h]: ["POST", "/profile/{profileId}/enable", 200] },
|
|
488
|
-
() => ScalarProfileRequest
|
|
489
|
-
() => ProfileDetailResponse
|
|
488
|
+
() => ScalarProfileRequest$,
|
|
489
|
+
() => ProfileDetailResponse$,
|
|
490
490
|
];
|
|
491
|
-
export var EnableTrustAnchor = [
|
|
491
|
+
export var EnableTrustAnchor$ = [
|
|
492
492
|
9,
|
|
493
493
|
n0,
|
|
494
494
|
_ETA,
|
|
495
495
|
{ [_h]: ["POST", "/trustanchor/{trustAnchorId}/enable", 200] },
|
|
496
|
-
() => ScalarTrustAnchorRequest
|
|
497
|
-
() => TrustAnchorDetailResponse
|
|
496
|
+
() => ScalarTrustAnchorRequest$,
|
|
497
|
+
() => TrustAnchorDetailResponse$,
|
|
498
498
|
];
|
|
499
|
-
export var GetCrl = [
|
|
499
|
+
export var GetCrl$ = [
|
|
500
500
|
9,
|
|
501
501
|
n0,
|
|
502
502
|
_GC,
|
|
503
503
|
{ [_h]: ["GET", "/crl/{crlId}", 200] },
|
|
504
|
-
() => ScalarCrlRequest
|
|
505
|
-
() => CrlDetailResponse
|
|
504
|
+
() => ScalarCrlRequest$,
|
|
505
|
+
() => CrlDetailResponse$,
|
|
506
506
|
];
|
|
507
|
-
export var GetProfile = [
|
|
507
|
+
export var GetProfile$ = [
|
|
508
508
|
9,
|
|
509
509
|
n0,
|
|
510
510
|
_GP,
|
|
511
511
|
{ [_h]: ["GET", "/profile/{profileId}", 200] },
|
|
512
|
-
() => ScalarProfileRequest
|
|
513
|
-
() => ProfileDetailResponse
|
|
512
|
+
() => ScalarProfileRequest$,
|
|
513
|
+
() => ProfileDetailResponse$,
|
|
514
514
|
];
|
|
515
|
-
export var GetSubject = [
|
|
515
|
+
export var GetSubject$ = [
|
|
516
516
|
9,
|
|
517
517
|
n0,
|
|
518
518
|
_GS,
|
|
519
519
|
{ [_h]: ["GET", "/subject/{subjectId}", 200] },
|
|
520
|
-
() => ScalarSubjectRequest
|
|
521
|
-
() => SubjectDetailResponse
|
|
520
|
+
() => ScalarSubjectRequest$,
|
|
521
|
+
() => SubjectDetailResponse$,
|
|
522
522
|
];
|
|
523
|
-
export var GetTrustAnchor = [
|
|
523
|
+
export var GetTrustAnchor$ = [
|
|
524
524
|
9,
|
|
525
525
|
n0,
|
|
526
526
|
_GTA,
|
|
527
527
|
{ [_h]: ["GET", "/trustanchor/{trustAnchorId}", 200] },
|
|
528
|
-
() => ScalarTrustAnchorRequest
|
|
529
|
-
() => TrustAnchorDetailResponse
|
|
528
|
+
() => ScalarTrustAnchorRequest$,
|
|
529
|
+
() => TrustAnchorDetailResponse$,
|
|
530
530
|
];
|
|
531
|
-
export var ImportCrl = [
|
|
531
|
+
export var ImportCrl$ = [
|
|
532
532
|
9,
|
|
533
533
|
n0,
|
|
534
534
|
_IC,
|
|
535
535
|
{ [_h]: ["POST", "/crls", 201] },
|
|
536
|
-
() => ImportCrlRequest
|
|
537
|
-
() => CrlDetailResponse
|
|
536
|
+
() => ImportCrlRequest$,
|
|
537
|
+
() => CrlDetailResponse$,
|
|
538
538
|
];
|
|
539
|
-
export var ListCrls = [
|
|
539
|
+
export var ListCrls$ = [
|
|
540
540
|
9,
|
|
541
541
|
n0,
|
|
542
542
|
_LC,
|
|
543
543
|
{ [_h]: ["GET", "/crls", 200] },
|
|
544
|
-
() => ListRequest
|
|
545
|
-
() => ListCrlsResponse
|
|
544
|
+
() => ListRequest$,
|
|
545
|
+
() => ListCrlsResponse$,
|
|
546
546
|
];
|
|
547
|
-
export var ListProfiles = [
|
|
547
|
+
export var ListProfiles$ = [
|
|
548
548
|
9,
|
|
549
549
|
n0,
|
|
550
550
|
_LP,
|
|
551
551
|
{ [_h]: ["GET", "/profiles", 200] },
|
|
552
|
-
() => ListRequest
|
|
553
|
-
() => ListProfilesResponse
|
|
552
|
+
() => ListRequest$,
|
|
553
|
+
() => ListProfilesResponse$,
|
|
554
554
|
];
|
|
555
|
-
export var ListSubjects = [
|
|
555
|
+
export var ListSubjects$ = [
|
|
556
556
|
9,
|
|
557
557
|
n0,
|
|
558
558
|
_LS,
|
|
559
559
|
{ [_h]: ["GET", "/subjects", 200] },
|
|
560
|
-
() => ListRequest
|
|
561
|
-
() => ListSubjectsResponse
|
|
560
|
+
() => ListRequest$,
|
|
561
|
+
() => ListSubjectsResponse$,
|
|
562
562
|
];
|
|
563
|
-
export var ListTagsForResource = [
|
|
563
|
+
export var ListTagsForResource$ = [
|
|
564
564
|
9,
|
|
565
565
|
n0,
|
|
566
566
|
_LTFR,
|
|
567
567
|
{ [_h]: ["GET", "/ListTagsForResource", 200] },
|
|
568
|
-
() => ListTagsForResourceRequest
|
|
569
|
-
() => ListTagsForResourceResponse
|
|
568
|
+
() => ListTagsForResourceRequest$,
|
|
569
|
+
() => ListTagsForResourceResponse$,
|
|
570
570
|
];
|
|
571
|
-
export var ListTrustAnchors = [
|
|
571
|
+
export var ListTrustAnchors$ = [
|
|
572
572
|
9,
|
|
573
573
|
n0,
|
|
574
574
|
_LTA,
|
|
575
575
|
{ [_h]: ["GET", "/trustanchors", 200] },
|
|
576
|
-
() => ListRequest
|
|
577
|
-
() => ListTrustAnchorsResponse
|
|
576
|
+
() => ListRequest$,
|
|
577
|
+
() => ListTrustAnchorsResponse$,
|
|
578
578
|
];
|
|
579
|
-
export var PutAttributeMapping = [
|
|
579
|
+
export var PutAttributeMapping$ = [
|
|
580
580
|
9,
|
|
581
581
|
n0,
|
|
582
582
|
_PAM,
|
|
583
583
|
{ [_h]: ["PUT", "/profiles/{profileId}/mappings", 200] },
|
|
584
|
-
() => PutAttributeMappingRequest
|
|
585
|
-
() => PutAttributeMappingResponse
|
|
584
|
+
() => PutAttributeMappingRequest$,
|
|
585
|
+
() => PutAttributeMappingResponse$,
|
|
586
586
|
];
|
|
587
|
-
export var PutNotificationSettings = [
|
|
587
|
+
export var PutNotificationSettings$ = [
|
|
588
588
|
9,
|
|
589
589
|
n0,
|
|
590
590
|
_PNS,
|
|
591
591
|
{ [_h]: ["PATCH", "/put-notifications-settings", 200] },
|
|
592
|
-
() => PutNotificationSettingsRequest
|
|
593
|
-
() => PutNotificationSettingsResponse
|
|
592
|
+
() => PutNotificationSettingsRequest$,
|
|
593
|
+
() => PutNotificationSettingsResponse$,
|
|
594
594
|
];
|
|
595
|
-
export var ResetNotificationSettings = [
|
|
595
|
+
export var ResetNotificationSettings$ = [
|
|
596
596
|
9,
|
|
597
597
|
n0,
|
|
598
598
|
_RNS,
|
|
599
599
|
{ [_h]: ["PATCH", "/reset-notifications-settings", 200] },
|
|
600
|
-
() => ResetNotificationSettingsRequest
|
|
601
|
-
() => ResetNotificationSettingsResponse
|
|
600
|
+
() => ResetNotificationSettingsRequest$,
|
|
601
|
+
() => ResetNotificationSettingsResponse$,
|
|
602
602
|
];
|
|
603
|
-
export var TagResource = [
|
|
603
|
+
export var TagResource$ = [
|
|
604
604
|
9,
|
|
605
605
|
n0,
|
|
606
606
|
_TR,
|
|
607
607
|
{ [_h]: ["POST", "/TagResource", 201] },
|
|
608
|
-
() => TagResourceRequest
|
|
609
|
-
() => TagResourceResponse
|
|
608
|
+
() => TagResourceRequest$,
|
|
609
|
+
() => TagResourceResponse$,
|
|
610
610
|
];
|
|
611
|
-
export var UntagResource = [
|
|
611
|
+
export var UntagResource$ = [
|
|
612
612
|
9,
|
|
613
613
|
n0,
|
|
614
614
|
_UR,
|
|
615
615
|
{ [_h]: ["POST", "/UntagResource", 200] },
|
|
616
|
-
() => UntagResourceRequest
|
|
617
|
-
() => UntagResourceResponse
|
|
616
|
+
() => UntagResourceRequest$,
|
|
617
|
+
() => UntagResourceResponse$,
|
|
618
618
|
];
|
|
619
|
-
export var UpdateCrl = [
|
|
619
|
+
export var UpdateCrl$ = [
|
|
620
620
|
9,
|
|
621
621
|
n0,
|
|
622
622
|
_UC,
|
|
623
623
|
{ [_h]: ["PATCH", "/crl/{crlId}", 200] },
|
|
624
|
-
() => UpdateCrlRequest
|
|
625
|
-
() => CrlDetailResponse
|
|
624
|
+
() => UpdateCrlRequest$,
|
|
625
|
+
() => CrlDetailResponse$,
|
|
626
626
|
];
|
|
627
|
-
export var UpdateProfile = [
|
|
627
|
+
export var UpdateProfile$ = [
|
|
628
628
|
9,
|
|
629
629
|
n0,
|
|
630
630
|
_UP,
|
|
631
631
|
{ [_h]: ["PATCH", "/profile/{profileId}", 200] },
|
|
632
|
-
() => UpdateProfileRequest
|
|
633
|
-
() => ProfileDetailResponse
|
|
632
|
+
() => UpdateProfileRequest$,
|
|
633
|
+
() => ProfileDetailResponse$,
|
|
634
634
|
];
|
|
635
|
-
export var UpdateTrustAnchor = [
|
|
635
|
+
export var UpdateTrustAnchor$ = [
|
|
636
636
|
9,
|
|
637
637
|
n0,
|
|
638
638
|
_UTA,
|
|
639
639
|
{ [_h]: ["PATCH", "/trustanchor/{trustAnchorId}", 200] },
|
|
640
|
-
() => UpdateTrustAnchorRequest
|
|
641
|
-
() => TrustAnchorDetailResponse
|
|
640
|
+
() => UpdateTrustAnchorRequest$,
|
|
641
|
+
() => TrustAnchorDetailResponse$,
|
|
642
642
|
];
|
|
@@ -5,7 +5,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type
|
|
8
|
+
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
|
|
11
11
|
import { CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput } from "./commands/CreateTrustAnchorCommand";
|
|
@@ -171,15 +171,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
171
171
|
* Optional extensions
|
|
172
172
|
*/
|
|
173
173
|
extensions?: RuntimeExtension[];
|
|
174
|
-
/**
|
|
175
|
-
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
176
|
-
* may be overridden. A default will always be set by the client.
|
|
177
|
-
* Available options depend on the service's supported protocols and will not be validated by
|
|
178
|
-
* the client.
|
|
179
|
-
* @alpha
|
|
180
|
-
*
|
|
181
|
-
*/
|
|
182
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
183
174
|
/**
|
|
184
175
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
185
176
|
*/
|