@aws-sdk/client-rolesanywhere 3.130.0 → 3.141.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.
Files changed (59) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CreateProfileCommand.js +2 -2
  4. package/dist-cjs/commands/CreateTrustAnchorCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteCrlCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteProfileCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteTrustAnchorCommand.js +2 -2
  8. package/dist-cjs/commands/DisableCrlCommand.js +2 -2
  9. package/dist-cjs/commands/DisableProfileCommand.js +2 -2
  10. package/dist-cjs/commands/DisableTrustAnchorCommand.js +2 -2
  11. package/dist-cjs/commands/EnableCrlCommand.js +2 -2
  12. package/dist-cjs/commands/EnableProfileCommand.js +2 -2
  13. package/dist-cjs/commands/EnableTrustAnchorCommand.js +2 -2
  14. package/dist-cjs/commands/GetCrlCommand.js +2 -2
  15. package/dist-cjs/commands/GetProfileCommand.js +2 -2
  16. package/dist-cjs/commands/GetSubjectCommand.js +2 -2
  17. package/dist-cjs/commands/GetTrustAnchorCommand.js +2 -2
  18. package/dist-cjs/commands/ImportCrlCommand.js +2 -2
  19. package/dist-cjs/commands/ListCrlsCommand.js +2 -2
  20. package/dist-cjs/commands/ListProfilesCommand.js +2 -2
  21. package/dist-cjs/commands/ListSubjectsCommand.js +2 -2
  22. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  23. package/dist-cjs/commands/ListTrustAnchorsCommand.js +2 -2
  24. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  25. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateCrlCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateProfileCommand.js +2 -2
  28. package/dist-cjs/commands/UpdateTrustAnchorCommand.js +2 -2
  29. package/dist-cjs/models/models_0.js +160 -229
  30. package/dist-es/commands/CreateProfileCommand.js +3 -3
  31. package/dist-es/commands/CreateTrustAnchorCommand.js +3 -3
  32. package/dist-es/commands/DeleteCrlCommand.js +3 -3
  33. package/dist-es/commands/DeleteProfileCommand.js +3 -3
  34. package/dist-es/commands/DeleteTrustAnchorCommand.js +3 -3
  35. package/dist-es/commands/DisableCrlCommand.js +3 -3
  36. package/dist-es/commands/DisableProfileCommand.js +3 -3
  37. package/dist-es/commands/DisableTrustAnchorCommand.js +3 -3
  38. package/dist-es/commands/EnableCrlCommand.js +3 -3
  39. package/dist-es/commands/EnableProfileCommand.js +3 -3
  40. package/dist-es/commands/EnableTrustAnchorCommand.js +3 -3
  41. package/dist-es/commands/GetCrlCommand.js +3 -3
  42. package/dist-es/commands/GetProfileCommand.js +3 -3
  43. package/dist-es/commands/GetSubjectCommand.js +3 -3
  44. package/dist-es/commands/GetTrustAnchorCommand.js +3 -3
  45. package/dist-es/commands/ImportCrlCommand.js +3 -3
  46. package/dist-es/commands/ListCrlsCommand.js +3 -3
  47. package/dist-es/commands/ListProfilesCommand.js +3 -3
  48. package/dist-es/commands/ListSubjectsCommand.js +3 -3
  49. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  50. package/dist-es/commands/ListTrustAnchorsCommand.js +3 -3
  51. package/dist-es/commands/TagResourceCommand.js +3 -3
  52. package/dist-es/commands/UntagResourceCommand.js +3 -3
  53. package/dist-es/commands/UpdateCrlCommand.js +3 -3
  54. package/dist-es/commands/UpdateProfileCommand.js +3 -3
  55. package/dist-es/commands/UpdateTrustAnchorCommand.js +3 -3
  56. package/dist-es/models/models_0.js +43 -147
  57. package/dist-types/models/models_0.d.ts +140 -208
  58. package/dist-types/ts3.4/models/models_0.d.ts +70 -138
  59. package/package.json +7 -7
@@ -14,10 +14,6 @@ export interface Tag {
14
14
 
15
15
  value: string | undefined;
16
16
  }
17
- export declare namespace Tag {
18
-
19
- const filterSensitiveLog: (obj: Tag) => any;
20
- }
21
17
  export interface CreateProfileRequest {
22
18
 
23
19
  name: string | undefined;
@@ -36,10 +32,6 @@ export interface CreateProfileRequest {
36
32
 
37
33
  tags?: Tag[];
38
34
  }
39
- export declare namespace CreateProfileRequest {
40
-
41
- const filterSensitiveLog: (obj: CreateProfileRequest) => any;
42
- }
43
35
 
44
36
  export interface ProfileDetail {
45
37
 
@@ -67,18 +59,10 @@ export interface ProfileDetail {
67
59
 
68
60
  durationSeconds?: number;
69
61
  }
70
- export declare namespace ProfileDetail {
71
-
72
- const filterSensitiveLog: (obj: ProfileDetail) => any;
73
- }
74
62
  export interface ProfileDetailResponse {
75
63
 
76
64
  profile?: ProfileDetail;
77
65
  }
78
- export declare namespace ProfileDetailResponse {
79
-
80
- const filterSensitiveLog: (obj: ProfileDetailResponse) => any;
81
- }
82
66
 
83
67
  export declare class ValidationException extends __BaseException {
84
68
  readonly name: "ValidationException";
@@ -115,8 +99,6 @@ export declare namespace SourceData {
115
99
  _: (name: string, value: any) => T;
116
100
  }
117
101
  const visit: <T>(value: SourceData, visitor: Visitor<T>) => T;
118
-
119
- const filterSensitiveLog: (obj: SourceData) => any;
120
102
  }
121
103
  export declare enum TrustAnchorType {
122
104
  AWS_ACM_PCA = "AWS_ACM_PCA",
@@ -130,10 +112,6 @@ export interface Source {
130
112
 
131
113
  sourceData?: SourceData;
132
114
  }
133
- export declare namespace Source {
134
-
135
- const filterSensitiveLog: (obj: Source) => any;
136
- }
137
115
  export interface CreateTrustAnchorRequest {
138
116
 
139
117
  name: string | undefined;
@@ -144,10 +122,6 @@ export interface CreateTrustAnchorRequest {
144
122
 
145
123
  tags?: Tag[];
146
124
  }
147
- export declare namespace CreateTrustAnchorRequest {
148
-
149
- const filterSensitiveLog: (obj: CreateTrustAnchorRequest) => any;
150
- }
151
125
 
152
126
  export interface TrustAnchorDetail {
153
127
 
@@ -165,18 +139,10 @@ export interface TrustAnchorDetail {
165
139
 
166
140
  updatedAt?: Date;
167
141
  }
168
- export declare namespace TrustAnchorDetail {
169
-
170
- const filterSensitiveLog: (obj: TrustAnchorDetail) => any;
171
- }
172
142
  export interface TrustAnchorDetailResponse {
173
143
 
174
144
  trustAnchor: TrustAnchorDetail | undefined;
175
145
  }
176
- export declare namespace TrustAnchorDetailResponse {
177
-
178
- const filterSensitiveLog: (obj: TrustAnchorDetailResponse) => any;
179
- }
180
146
 
181
147
  export interface CredentialSummary {
182
148
 
@@ -192,10 +158,6 @@ export interface CredentialSummary {
192
158
 
193
159
  failed?: boolean;
194
160
  }
195
- export declare namespace CredentialSummary {
196
-
197
- const filterSensitiveLog: (obj: CredentialSummary) => any;
198
- }
199
161
 
200
162
  export interface CrlDetail {
201
163
 
@@ -215,18 +177,10 @@ export interface CrlDetail {
215
177
 
216
178
  updatedAt?: Date;
217
179
  }
218
- export declare namespace CrlDetail {
219
-
220
- const filterSensitiveLog: (obj: CrlDetail) => any;
221
- }
222
180
  export interface CrlDetailResponse {
223
181
 
224
182
  crl: CrlDetail | undefined;
225
183
  }
226
- export declare namespace CrlDetailResponse {
227
-
228
- const filterSensitiveLog: (obj: CrlDetailResponse) => any;
229
- }
230
184
 
231
185
  export declare class ResourceNotFoundException extends __BaseException {
232
186
  readonly name: "ResourceNotFoundException";
@@ -238,10 +192,6 @@ export interface ScalarCrlRequest {
238
192
 
239
193
  crlId: string | undefined;
240
194
  }
241
- export declare namespace ScalarCrlRequest {
242
-
243
- const filterSensitiveLog: (obj: ScalarCrlRequest) => any;
244
- }
245
195
  export interface ImportCrlRequest {
246
196
 
247
197
  name: string | undefined;
@@ -254,30 +204,18 @@ export interface ImportCrlRequest {
254
204
 
255
205
  trustAnchorArn: string | undefined;
256
206
  }
257
- export declare namespace ImportCrlRequest {
258
-
259
- const filterSensitiveLog: (obj: ImportCrlRequest) => any;
260
- }
261
207
  export interface ListCrlsResponse {
262
208
 
263
209
  nextToken?: string;
264
210
 
265
211
  crls?: CrlDetail[];
266
212
  }
267
- export declare namespace ListCrlsResponse {
268
-
269
- const filterSensitiveLog: (obj: ListCrlsResponse) => any;
270
- }
271
213
  export interface ListRequest {
272
214
 
273
215
  nextToken?: string;
274
216
 
275
217
  pageSize?: number;
276
218
  }
277
- export declare namespace ListRequest {
278
-
279
- const filterSensitiveLog: (obj: ListRequest) => any;
280
- }
281
219
  export interface UpdateCrlRequest {
282
220
 
283
221
  crlId: string | undefined;
@@ -286,34 +224,18 @@ export interface UpdateCrlRequest {
286
224
 
287
225
  crlData?: Uint8Array;
288
226
  }
289
- export declare namespace UpdateCrlRequest {
290
-
291
- const filterSensitiveLog: (obj: UpdateCrlRequest) => any;
292
- }
293
227
  export interface ScalarProfileRequest {
294
228
 
295
229
  profileId: string | undefined;
296
230
  }
297
- export declare namespace ScalarProfileRequest {
298
-
299
- const filterSensitiveLog: (obj: ScalarProfileRequest) => any;
300
- }
301
231
  export interface ScalarTrustAnchorRequest {
302
232
 
303
233
  trustAnchorId: string | undefined;
304
234
  }
305
- export declare namespace ScalarTrustAnchorRequest {
306
-
307
- const filterSensitiveLog: (obj: ScalarTrustAnchorRequest) => any;
308
- }
309
235
  export interface ScalarSubjectRequest {
310
236
 
311
237
  subjectId: string | undefined;
312
238
  }
313
- export declare namespace ScalarSubjectRequest {
314
-
315
- const filterSensitiveLog: (obj: ScalarSubjectRequest) => any;
316
- }
317
239
 
318
240
  export interface InstanceProperty {
319
241
 
@@ -323,10 +245,6 @@ export interface InstanceProperty {
323
245
 
324
246
  failed?: boolean;
325
247
  }
326
- export declare namespace InstanceProperty {
327
-
328
- const filterSensitiveLog: (obj: InstanceProperty) => any;
329
- }
330
248
 
331
249
  export interface SubjectDetail {
332
250
 
@@ -348,28 +266,16 @@ export interface SubjectDetail {
348
266
 
349
267
  instanceProperties?: InstanceProperty[];
350
268
  }
351
- export declare namespace SubjectDetail {
352
-
353
- const filterSensitiveLog: (obj: SubjectDetail) => any;
354
- }
355
269
  export interface SubjectDetailResponse {
356
270
 
357
271
  subject?: SubjectDetail;
358
272
  }
359
- export declare namespace SubjectDetailResponse {
360
-
361
- const filterSensitiveLog: (obj: SubjectDetailResponse) => any;
362
- }
363
273
  export interface ListProfilesResponse {
364
274
 
365
275
  nextToken?: string;
366
276
 
367
277
  profiles?: ProfileDetail[];
368
278
  }
369
- export declare namespace ListProfilesResponse {
370
-
371
- const filterSensitiveLog: (obj: ListProfilesResponse) => any;
372
- }
373
279
 
374
280
  export interface SubjectSummary {
375
281
 
@@ -387,46 +293,26 @@ export interface SubjectSummary {
387
293
 
388
294
  updatedAt?: Date;
389
295
  }
390
- export declare namespace SubjectSummary {
391
-
392
- const filterSensitiveLog: (obj: SubjectSummary) => any;
393
- }
394
296
  export interface ListSubjectsResponse {
395
297
 
396
298
  subjects?: SubjectSummary[];
397
299
 
398
300
  nextToken?: string;
399
301
  }
400
- export declare namespace ListSubjectsResponse {
401
-
402
- const filterSensitiveLog: (obj: ListSubjectsResponse) => any;
403
- }
404
302
  export interface ListTagsForResourceRequest {
405
303
 
406
304
  resourceArn: string | undefined;
407
305
  }
408
- export declare namespace ListTagsForResourceRequest {
409
-
410
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
411
- }
412
306
  export interface ListTagsForResourceResponse {
413
307
 
414
308
  tags?: Tag[];
415
309
  }
416
- export declare namespace ListTagsForResourceResponse {
417
-
418
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
419
- }
420
310
  export interface ListTrustAnchorsResponse {
421
311
 
422
312
  nextToken?: string;
423
313
 
424
314
  trustAnchors?: TrustAnchorDetail[];
425
315
  }
426
- export declare namespace ListTrustAnchorsResponse {
427
-
428
- const filterSensitiveLog: (obj: ListTrustAnchorsResponse) => any;
429
- }
430
316
  export interface UpdateProfileRequest {
431
317
 
432
318
  profileId: string | undefined;
@@ -441,26 +327,14 @@ export interface UpdateProfileRequest {
441
327
 
442
328
  durationSeconds?: number;
443
329
  }
444
- export declare namespace UpdateProfileRequest {
445
-
446
- const filterSensitiveLog: (obj: UpdateProfileRequest) => any;
447
- }
448
330
  export interface TagResourceRequest {
449
331
 
450
332
  resourceArn: string | undefined;
451
333
 
452
334
  tags: Tag[] | undefined;
453
335
  }
454
- export declare namespace TagResourceRequest {
455
-
456
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
457
- }
458
336
  export interface TagResourceResponse {
459
337
  }
460
- export declare namespace TagResourceResponse {
461
-
462
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
463
- }
464
338
 
465
339
  export declare class TooManyTagsException extends __BaseException {
466
340
  readonly name: "TooManyTagsException";
@@ -476,23 +350,81 @@ export interface UpdateTrustAnchorRequest {
476
350
 
477
351
  source?: Source;
478
352
  }
479
- export declare namespace UpdateTrustAnchorRequest {
480
-
481
- const filterSensitiveLog: (obj: UpdateTrustAnchorRequest) => any;
482
- }
483
353
  export interface UntagResourceRequest {
484
354
 
485
355
  resourceArn: string | undefined;
486
356
 
487
357
  tagKeys: string[] | undefined;
488
358
  }
489
- export declare namespace UntagResourceRequest {
490
-
491
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
492
- }
493
359
  export interface UntagResourceResponse {
494
360
  }
495
- export declare namespace UntagResourceResponse {
496
-
497
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
498
- }
361
+
362
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
363
+
364
+ export declare const CreateProfileRequestFilterSensitiveLog: (obj: CreateProfileRequest) => any;
365
+
366
+ export declare const ProfileDetailFilterSensitiveLog: (obj: ProfileDetail) => any;
367
+
368
+ export declare const ProfileDetailResponseFilterSensitiveLog: (obj: ProfileDetailResponse) => any;
369
+
370
+ export declare const SourceDataFilterSensitiveLog: (obj: SourceData) => any;
371
+
372
+ export declare const SourceFilterSensitiveLog: (obj: Source) => any;
373
+
374
+ export declare const CreateTrustAnchorRequestFilterSensitiveLog: (obj: CreateTrustAnchorRequest) => any;
375
+
376
+ export declare const TrustAnchorDetailFilterSensitiveLog: (obj: TrustAnchorDetail) => any;
377
+
378
+ export declare const TrustAnchorDetailResponseFilterSensitiveLog: (obj: TrustAnchorDetailResponse) => any;
379
+
380
+ export declare const CredentialSummaryFilterSensitiveLog: (obj: CredentialSummary) => any;
381
+
382
+ export declare const CrlDetailFilterSensitiveLog: (obj: CrlDetail) => any;
383
+
384
+ export declare const CrlDetailResponseFilterSensitiveLog: (obj: CrlDetailResponse) => any;
385
+
386
+ export declare const ScalarCrlRequestFilterSensitiveLog: (obj: ScalarCrlRequest) => any;
387
+
388
+ export declare const ImportCrlRequestFilterSensitiveLog: (obj: ImportCrlRequest) => any;
389
+
390
+ export declare const ListCrlsResponseFilterSensitiveLog: (obj: ListCrlsResponse) => any;
391
+
392
+ export declare const ListRequestFilterSensitiveLog: (obj: ListRequest) => any;
393
+
394
+ export declare const UpdateCrlRequestFilterSensitiveLog: (obj: UpdateCrlRequest) => any;
395
+
396
+ export declare const ScalarProfileRequestFilterSensitiveLog: (obj: ScalarProfileRequest) => any;
397
+
398
+ export declare const ScalarTrustAnchorRequestFilterSensitiveLog: (obj: ScalarTrustAnchorRequest) => any;
399
+
400
+ export declare const ScalarSubjectRequestFilterSensitiveLog: (obj: ScalarSubjectRequest) => any;
401
+
402
+ export declare const InstancePropertyFilterSensitiveLog: (obj: InstanceProperty) => any;
403
+
404
+ export declare const SubjectDetailFilterSensitiveLog: (obj: SubjectDetail) => any;
405
+
406
+ export declare const SubjectDetailResponseFilterSensitiveLog: (obj: SubjectDetailResponse) => any;
407
+
408
+ export declare const ListProfilesResponseFilterSensitiveLog: (obj: ListProfilesResponse) => any;
409
+
410
+ export declare const SubjectSummaryFilterSensitiveLog: (obj: SubjectSummary) => any;
411
+
412
+ export declare const ListSubjectsResponseFilterSensitiveLog: (obj: ListSubjectsResponse) => any;
413
+
414
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
415
+
416
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
417
+
418
+ export declare const ListTrustAnchorsResponseFilterSensitiveLog: (obj: ListTrustAnchorsResponse) => any;
419
+
420
+ export declare const UpdateProfileRequestFilterSensitiveLog: (obj: UpdateProfileRequest) => any;
421
+
422
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
423
+
424
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
425
+
426
+ export declare const UpdateTrustAnchorRequestFilterSensitiveLog: (obj: UpdateTrustAnchorRequest) => any;
427
+
428
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
429
+
430
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rolesanywhere",
3
3
  "description": "AWS SDK for JavaScript Rolesanywhere Client for Node.js, Browser and React Native",
4
- "version": "3.130.0",
4
+ "version": "3.141.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,10 +18,10 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.130.0",
21
+ "@aws-sdk/client-sts": "3.141.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.130.0",
24
- "@aws-sdk/fetch-http-handler": "3.127.0",
23
+ "@aws-sdk/credential-provider-node": "3.141.0",
24
+ "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
27
27
  "@aws-sdk/middleware-content-length": "3.127.0",
@@ -36,15 +36,15 @@
36
36
  "@aws-sdk/node-config-provider": "3.127.0",
37
37
  "@aws-sdk/node-http-handler": "3.127.0",
38
38
  "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.127.0",
39
+ "@aws-sdk/smithy-client": "3.137.0",
40
40
  "@aws-sdk/types": "3.127.0",
41
41
  "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.127.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.130.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.137.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.137.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.127.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",