@aws-sdk/client-cloudhsm 3.131.0 → 3.142.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/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AddTagsToResourceCommand.js +2 -2
- package/dist-cjs/commands/CreateHapgCommand.js +2 -2
- package/dist-cjs/commands/CreateHsmCommand.js +2 -2
- package/dist-cjs/commands/CreateLunaClientCommand.js +2 -2
- package/dist-cjs/commands/DeleteHapgCommand.js +2 -2
- package/dist-cjs/commands/DeleteHsmCommand.js +2 -2
- package/dist-cjs/commands/DeleteLunaClientCommand.js +2 -2
- package/dist-cjs/commands/DescribeHapgCommand.js +2 -2
- package/dist-cjs/commands/DescribeHsmCommand.js +2 -2
- package/dist-cjs/commands/DescribeLunaClientCommand.js +2 -2
- package/dist-cjs/commands/GetConfigCommand.js +2 -2
- package/dist-cjs/commands/ListAvailableZonesCommand.js +2 -2
- package/dist-cjs/commands/ListHapgsCommand.js +2 -2
- package/dist-cjs/commands/ListHsmsCommand.js +2 -2
- package/dist-cjs/commands/ListLunaClientsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ModifyHapgCommand.js +2 -2
- package/dist-cjs/commands/ModifyHsmCommand.js +2 -2
- package/dist-cjs/commands/ModifyLunaClientCommand.js +2 -2
- package/dist-cjs/commands/RemoveTagsFromResourceCommand.js +2 -2
- package/dist-cjs/models/models_0.js +165 -247
- package/dist-cjs/protocols/Aws_json1_1.js +100 -172
- package/dist-es/commands/AddTagsToResourceCommand.js +3 -3
- package/dist-es/commands/CreateHapgCommand.js +3 -3
- package/dist-es/commands/CreateHsmCommand.js +3 -3
- package/dist-es/commands/CreateLunaClientCommand.js +3 -3
- package/dist-es/commands/DeleteHapgCommand.js +3 -3
- package/dist-es/commands/DeleteHsmCommand.js +3 -3
- package/dist-es/commands/DeleteLunaClientCommand.js +3 -3
- package/dist-es/commands/DescribeHapgCommand.js +3 -3
- package/dist-es/commands/DescribeHsmCommand.js +3 -3
- package/dist-es/commands/DescribeLunaClientCommand.js +3 -3
- package/dist-es/commands/GetConfigCommand.js +3 -3
- package/dist-es/commands/ListAvailableZonesCommand.js +3 -3
- package/dist-es/commands/ListHapgsCommand.js +3 -3
- package/dist-es/commands/ListHsmsCommand.js +3 -3
- package/dist-es/commands/ListLunaClientsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ModifyHapgCommand.js +3 -3
- package/dist-es/commands/ModifyHsmCommand.js +3 -3
- package/dist-es/commands/ModifyLunaClientCommand.js +3 -3
- package/dist-es/commands/RemoveTagsFromResourceCommand.js +3 -3
- package/dist-es/models/models_0.js +41 -164
- package/dist-es/protocols/Aws_json1_1.js +161 -173
- package/dist-types/models/models_0.d.ts +164 -246
- package/dist-types/ts3.4/models/models_0.d.ts +82 -164
- package/package.json +6 -6
|
@@ -7,28 +7,16 @@ export interface Tag {
|
|
|
7
7
|
|
|
8
8
|
Value: string | undefined;
|
|
9
9
|
}
|
|
10
|
-
export declare namespace Tag {
|
|
11
|
-
|
|
12
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
13
|
-
}
|
|
14
10
|
export interface AddTagsToResourceRequest {
|
|
15
11
|
|
|
16
12
|
ResourceArn: string | undefined;
|
|
17
13
|
|
|
18
14
|
TagList: Tag[] | undefined;
|
|
19
15
|
}
|
|
20
|
-
export declare namespace AddTagsToResourceRequest {
|
|
21
|
-
|
|
22
|
-
const filterSensitiveLog: (obj: AddTagsToResourceRequest) => any;
|
|
23
|
-
}
|
|
24
16
|
export interface AddTagsToResourceResponse {
|
|
25
17
|
|
|
26
18
|
Status: string | undefined;
|
|
27
19
|
}
|
|
28
|
-
export declare namespace AddTagsToResourceResponse {
|
|
29
|
-
|
|
30
|
-
const filterSensitiveLog: (obj: AddTagsToResourceResponse) => any;
|
|
31
|
-
}
|
|
32
20
|
|
|
33
21
|
export declare class CloudHsmInternalException extends __BaseException {
|
|
34
22
|
readonly name: "CloudHsmInternalException";
|
|
@@ -65,19 +53,11 @@ export interface CreateHapgRequest {
|
|
|
65
53
|
|
|
66
54
|
Label: string | undefined;
|
|
67
55
|
}
|
|
68
|
-
export declare namespace CreateHapgRequest {
|
|
69
|
-
|
|
70
|
-
const filterSensitiveLog: (obj: CreateHapgRequest) => any;
|
|
71
|
-
}
|
|
72
56
|
|
|
73
57
|
export interface CreateHapgResponse {
|
|
74
58
|
|
|
75
59
|
HapgArn?: string;
|
|
76
60
|
}
|
|
77
|
-
export declare namespace CreateHapgResponse {
|
|
78
|
-
|
|
79
|
-
const filterSensitiveLog: (obj: CreateHapgResponse) => any;
|
|
80
|
-
}
|
|
81
61
|
export declare enum SubscriptionType {
|
|
82
62
|
PRODUCTION = "PRODUCTION"
|
|
83
63
|
}
|
|
@@ -100,19 +80,11 @@ export interface CreateHsmRequest {
|
|
|
100
80
|
|
|
101
81
|
SyslogIp?: string;
|
|
102
82
|
}
|
|
103
|
-
export declare namespace CreateHsmRequest {
|
|
104
|
-
|
|
105
|
-
const filterSensitiveLog: (obj: CreateHsmRequest) => any;
|
|
106
|
-
}
|
|
107
83
|
|
|
108
84
|
export interface CreateHsmResponse {
|
|
109
85
|
|
|
110
86
|
HsmArn?: string;
|
|
111
87
|
}
|
|
112
|
-
export declare namespace CreateHsmResponse {
|
|
113
|
-
|
|
114
|
-
const filterSensitiveLog: (obj: CreateHsmResponse) => any;
|
|
115
|
-
}
|
|
116
88
|
|
|
117
89
|
export interface CreateLunaClientRequest {
|
|
118
90
|
|
|
@@ -120,80 +92,44 @@ export interface CreateLunaClientRequest {
|
|
|
120
92
|
|
|
121
93
|
Certificate: string | undefined;
|
|
122
94
|
}
|
|
123
|
-
export declare namespace CreateLunaClientRequest {
|
|
124
|
-
|
|
125
|
-
const filterSensitiveLog: (obj: CreateLunaClientRequest) => any;
|
|
126
|
-
}
|
|
127
95
|
|
|
128
96
|
export interface CreateLunaClientResponse {
|
|
129
97
|
|
|
130
98
|
ClientArn?: string;
|
|
131
99
|
}
|
|
132
|
-
export declare namespace CreateLunaClientResponse {
|
|
133
|
-
|
|
134
|
-
const filterSensitiveLog: (obj: CreateLunaClientResponse) => any;
|
|
135
|
-
}
|
|
136
100
|
|
|
137
101
|
export interface DeleteHapgRequest {
|
|
138
102
|
|
|
139
103
|
HapgArn: string | undefined;
|
|
140
104
|
}
|
|
141
|
-
export declare namespace DeleteHapgRequest {
|
|
142
|
-
|
|
143
|
-
const filterSensitiveLog: (obj: DeleteHapgRequest) => any;
|
|
144
|
-
}
|
|
145
105
|
|
|
146
106
|
export interface DeleteHapgResponse {
|
|
147
107
|
|
|
148
108
|
Status: string | undefined;
|
|
149
109
|
}
|
|
150
|
-
export declare namespace DeleteHapgResponse {
|
|
151
|
-
|
|
152
|
-
const filterSensitiveLog: (obj: DeleteHapgResponse) => any;
|
|
153
|
-
}
|
|
154
110
|
|
|
155
111
|
export interface DeleteHsmRequest {
|
|
156
112
|
|
|
157
113
|
HsmArn: string | undefined;
|
|
158
114
|
}
|
|
159
|
-
export declare namespace DeleteHsmRequest {
|
|
160
|
-
|
|
161
|
-
const filterSensitiveLog: (obj: DeleteHsmRequest) => any;
|
|
162
|
-
}
|
|
163
115
|
|
|
164
116
|
export interface DeleteHsmResponse {
|
|
165
117
|
|
|
166
118
|
Status: string | undefined;
|
|
167
119
|
}
|
|
168
|
-
export declare namespace DeleteHsmResponse {
|
|
169
|
-
|
|
170
|
-
const filterSensitiveLog: (obj: DeleteHsmResponse) => any;
|
|
171
|
-
}
|
|
172
120
|
export interface DeleteLunaClientRequest {
|
|
173
121
|
|
|
174
122
|
ClientArn: string | undefined;
|
|
175
123
|
}
|
|
176
|
-
export declare namespace DeleteLunaClientRequest {
|
|
177
|
-
|
|
178
|
-
const filterSensitiveLog: (obj: DeleteLunaClientRequest) => any;
|
|
179
|
-
}
|
|
180
124
|
export interface DeleteLunaClientResponse {
|
|
181
125
|
|
|
182
126
|
Status: string | undefined;
|
|
183
127
|
}
|
|
184
|
-
export declare namespace DeleteLunaClientResponse {
|
|
185
|
-
|
|
186
|
-
const filterSensitiveLog: (obj: DeleteLunaClientResponse) => any;
|
|
187
|
-
}
|
|
188
128
|
|
|
189
129
|
export interface DescribeHapgRequest {
|
|
190
130
|
|
|
191
131
|
HapgArn: string | undefined;
|
|
192
132
|
}
|
|
193
|
-
export declare namespace DescribeHapgRequest {
|
|
194
|
-
|
|
195
|
-
const filterSensitiveLog: (obj: DescribeHapgRequest) => any;
|
|
196
|
-
}
|
|
197
133
|
export declare enum CloudHsmObjectState {
|
|
198
134
|
DEGRADED = "DEGRADED",
|
|
199
135
|
READY = "READY",
|
|
@@ -220,10 +156,6 @@ export interface DescribeHapgResponse {
|
|
|
220
156
|
|
|
221
157
|
State?: CloudHsmObjectState | string;
|
|
222
158
|
}
|
|
223
|
-
export declare namespace DescribeHapgResponse {
|
|
224
|
-
|
|
225
|
-
const filterSensitiveLog: (obj: DescribeHapgResponse) => any;
|
|
226
|
-
}
|
|
227
159
|
|
|
228
160
|
export interface DescribeHsmRequest {
|
|
229
161
|
|
|
@@ -231,10 +163,6 @@ export interface DescribeHsmRequest {
|
|
|
231
163
|
|
|
232
164
|
HsmSerialNumber?: string;
|
|
233
165
|
}
|
|
234
|
-
export declare namespace DescribeHsmRequest {
|
|
235
|
-
|
|
236
|
-
const filterSensitiveLog: (obj: DescribeHsmRequest) => any;
|
|
237
|
-
}
|
|
238
166
|
export declare enum HsmStatus {
|
|
239
167
|
DEGRADED = "DEGRADED",
|
|
240
168
|
PENDING = "PENDING",
|
|
@@ -289,20 +217,12 @@ export interface DescribeHsmResponse {
|
|
|
289
217
|
|
|
290
218
|
Partitions?: string[];
|
|
291
219
|
}
|
|
292
|
-
export declare namespace DescribeHsmResponse {
|
|
293
|
-
|
|
294
|
-
const filterSensitiveLog: (obj: DescribeHsmResponse) => any;
|
|
295
|
-
}
|
|
296
220
|
export interface DescribeLunaClientRequest {
|
|
297
221
|
|
|
298
222
|
ClientArn?: string;
|
|
299
223
|
|
|
300
224
|
CertificateFingerprint?: string;
|
|
301
225
|
}
|
|
302
|
-
export declare namespace DescribeLunaClientRequest {
|
|
303
|
-
|
|
304
|
-
const filterSensitiveLog: (obj: DescribeLunaClientRequest) => any;
|
|
305
|
-
}
|
|
306
226
|
export interface DescribeLunaClientResponse {
|
|
307
227
|
|
|
308
228
|
ClientArn?: string;
|
|
@@ -315,10 +235,6 @@ export interface DescribeLunaClientResponse {
|
|
|
315
235
|
|
|
316
236
|
Label?: string;
|
|
317
237
|
}
|
|
318
|
-
export declare namespace DescribeLunaClientResponse {
|
|
319
|
-
|
|
320
|
-
const filterSensitiveLog: (obj: DescribeLunaClientResponse) => any;
|
|
321
|
-
}
|
|
322
238
|
export interface GetConfigRequest {
|
|
323
239
|
|
|
324
240
|
ClientArn: string | undefined;
|
|
@@ -327,10 +243,6 @@ export interface GetConfigRequest {
|
|
|
327
243
|
|
|
328
244
|
HapgList: string[] | undefined;
|
|
329
245
|
}
|
|
330
|
-
export declare namespace GetConfigRequest {
|
|
331
|
-
|
|
332
|
-
const filterSensitiveLog: (obj: GetConfigRequest) => any;
|
|
333
|
-
}
|
|
334
246
|
export interface GetConfigResponse {
|
|
335
247
|
|
|
336
248
|
ConfigType?: string;
|
|
@@ -339,51 +251,27 @@ export interface GetConfigResponse {
|
|
|
339
251
|
|
|
340
252
|
ConfigCred?: string;
|
|
341
253
|
}
|
|
342
|
-
export declare namespace GetConfigResponse {
|
|
343
|
-
|
|
344
|
-
const filterSensitiveLog: (obj: GetConfigResponse) => any;
|
|
345
|
-
}
|
|
346
254
|
|
|
347
255
|
export interface ListAvailableZonesRequest {
|
|
348
256
|
}
|
|
349
|
-
export declare namespace ListAvailableZonesRequest {
|
|
350
|
-
|
|
351
|
-
const filterSensitiveLog: (obj: ListAvailableZonesRequest) => any;
|
|
352
|
-
}
|
|
353
257
|
export interface ListAvailableZonesResponse {
|
|
354
258
|
|
|
355
259
|
AZList?: string[];
|
|
356
260
|
}
|
|
357
|
-
export declare namespace ListAvailableZonesResponse {
|
|
358
|
-
|
|
359
|
-
const filterSensitiveLog: (obj: ListAvailableZonesResponse) => any;
|
|
360
|
-
}
|
|
361
261
|
export interface ListHapgsRequest {
|
|
362
262
|
|
|
363
263
|
NextToken?: string;
|
|
364
264
|
}
|
|
365
|
-
export declare namespace ListHapgsRequest {
|
|
366
|
-
|
|
367
|
-
const filterSensitiveLog: (obj: ListHapgsRequest) => any;
|
|
368
|
-
}
|
|
369
265
|
export interface ListHapgsResponse {
|
|
370
266
|
|
|
371
267
|
HapgList: string[] | undefined;
|
|
372
268
|
|
|
373
269
|
NextToken?: string;
|
|
374
270
|
}
|
|
375
|
-
export declare namespace ListHapgsResponse {
|
|
376
|
-
|
|
377
|
-
const filterSensitiveLog: (obj: ListHapgsResponse) => any;
|
|
378
|
-
}
|
|
379
271
|
export interface ListHsmsRequest {
|
|
380
272
|
|
|
381
273
|
NextToken?: string;
|
|
382
274
|
}
|
|
383
|
-
export declare namespace ListHsmsRequest {
|
|
384
|
-
|
|
385
|
-
const filterSensitiveLog: (obj: ListHsmsRequest) => any;
|
|
386
|
-
}
|
|
387
275
|
|
|
388
276
|
export interface ListHsmsResponse {
|
|
389
277
|
|
|
@@ -391,44 +279,24 @@ export interface ListHsmsResponse {
|
|
|
391
279
|
|
|
392
280
|
NextToken?: string;
|
|
393
281
|
}
|
|
394
|
-
export declare namespace ListHsmsResponse {
|
|
395
|
-
|
|
396
|
-
const filterSensitiveLog: (obj: ListHsmsResponse) => any;
|
|
397
|
-
}
|
|
398
282
|
export interface ListLunaClientsRequest {
|
|
399
283
|
|
|
400
284
|
NextToken?: string;
|
|
401
285
|
}
|
|
402
|
-
export declare namespace ListLunaClientsRequest {
|
|
403
|
-
|
|
404
|
-
const filterSensitiveLog: (obj: ListLunaClientsRequest) => any;
|
|
405
|
-
}
|
|
406
286
|
export interface ListLunaClientsResponse {
|
|
407
287
|
|
|
408
288
|
ClientList: string[] | undefined;
|
|
409
289
|
|
|
410
290
|
NextToken?: string;
|
|
411
291
|
}
|
|
412
|
-
export declare namespace ListLunaClientsResponse {
|
|
413
|
-
|
|
414
|
-
const filterSensitiveLog: (obj: ListLunaClientsResponse) => any;
|
|
415
|
-
}
|
|
416
292
|
export interface ListTagsForResourceRequest {
|
|
417
293
|
|
|
418
294
|
ResourceArn: string | undefined;
|
|
419
295
|
}
|
|
420
|
-
export declare namespace ListTagsForResourceRequest {
|
|
421
|
-
|
|
422
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
423
|
-
}
|
|
424
296
|
export interface ListTagsForResourceResponse {
|
|
425
297
|
|
|
426
298
|
TagList: Tag[] | undefined;
|
|
427
299
|
}
|
|
428
|
-
export declare namespace ListTagsForResourceResponse {
|
|
429
|
-
|
|
430
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
431
|
-
}
|
|
432
300
|
export interface ModifyHapgRequest {
|
|
433
301
|
|
|
434
302
|
HapgArn: string | undefined;
|
|
@@ -437,18 +305,10 @@ export interface ModifyHapgRequest {
|
|
|
437
305
|
|
|
438
306
|
PartitionSerialList?: string[];
|
|
439
307
|
}
|
|
440
|
-
export declare namespace ModifyHapgRequest {
|
|
441
|
-
|
|
442
|
-
const filterSensitiveLog: (obj: ModifyHapgRequest) => any;
|
|
443
|
-
}
|
|
444
308
|
export interface ModifyHapgResponse {
|
|
445
309
|
|
|
446
310
|
HapgArn?: string;
|
|
447
311
|
}
|
|
448
|
-
export declare namespace ModifyHapgResponse {
|
|
449
|
-
|
|
450
|
-
const filterSensitiveLog: (obj: ModifyHapgResponse) => any;
|
|
451
|
-
}
|
|
452
312
|
|
|
453
313
|
export interface ModifyHsmRequest {
|
|
454
314
|
|
|
@@ -464,52 +324,110 @@ export interface ModifyHsmRequest {
|
|
|
464
324
|
|
|
465
325
|
SyslogIp?: string;
|
|
466
326
|
}
|
|
467
|
-
export declare namespace ModifyHsmRequest {
|
|
468
|
-
|
|
469
|
-
const filterSensitiveLog: (obj: ModifyHsmRequest) => any;
|
|
470
|
-
}
|
|
471
327
|
|
|
472
328
|
export interface ModifyHsmResponse {
|
|
473
329
|
|
|
474
330
|
HsmArn?: string;
|
|
475
331
|
}
|
|
476
|
-
export declare namespace ModifyHsmResponse {
|
|
477
|
-
|
|
478
|
-
const filterSensitiveLog: (obj: ModifyHsmResponse) => any;
|
|
479
|
-
}
|
|
480
332
|
export interface ModifyLunaClientRequest {
|
|
481
333
|
|
|
482
334
|
ClientArn: string | undefined;
|
|
483
335
|
|
|
484
336
|
Certificate: string | undefined;
|
|
485
337
|
}
|
|
486
|
-
export declare namespace ModifyLunaClientRequest {
|
|
487
|
-
|
|
488
|
-
const filterSensitiveLog: (obj: ModifyLunaClientRequest) => any;
|
|
489
|
-
}
|
|
490
338
|
export interface ModifyLunaClientResponse {
|
|
491
339
|
|
|
492
340
|
ClientArn?: string;
|
|
493
341
|
}
|
|
494
|
-
export declare namespace ModifyLunaClientResponse {
|
|
495
|
-
|
|
496
|
-
const filterSensitiveLog: (obj: ModifyLunaClientResponse) => any;
|
|
497
|
-
}
|
|
498
342
|
export interface RemoveTagsFromResourceRequest {
|
|
499
343
|
|
|
500
344
|
ResourceArn: string | undefined;
|
|
501
345
|
|
|
502
346
|
TagKeyList: string[] | undefined;
|
|
503
347
|
}
|
|
504
|
-
export declare namespace RemoveTagsFromResourceRequest {
|
|
505
|
-
|
|
506
|
-
const filterSensitiveLog: (obj: RemoveTagsFromResourceRequest) => any;
|
|
507
|
-
}
|
|
508
348
|
export interface RemoveTagsFromResourceResponse {
|
|
509
349
|
|
|
510
350
|
Status: string | undefined;
|
|
511
351
|
}
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
352
|
+
|
|
353
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
354
|
+
|
|
355
|
+
export declare const AddTagsToResourceRequestFilterSensitiveLog: (obj: AddTagsToResourceRequest) => any;
|
|
356
|
+
|
|
357
|
+
export declare const AddTagsToResourceResponseFilterSensitiveLog: (obj: AddTagsToResourceResponse) => any;
|
|
358
|
+
|
|
359
|
+
export declare const CreateHapgRequestFilterSensitiveLog: (obj: CreateHapgRequest) => any;
|
|
360
|
+
|
|
361
|
+
export declare const CreateHapgResponseFilterSensitiveLog: (obj: CreateHapgResponse) => any;
|
|
362
|
+
|
|
363
|
+
export declare const CreateHsmRequestFilterSensitiveLog: (obj: CreateHsmRequest) => any;
|
|
364
|
+
|
|
365
|
+
export declare const CreateHsmResponseFilterSensitiveLog: (obj: CreateHsmResponse) => any;
|
|
366
|
+
|
|
367
|
+
export declare const CreateLunaClientRequestFilterSensitiveLog: (obj: CreateLunaClientRequest) => any;
|
|
368
|
+
|
|
369
|
+
export declare const CreateLunaClientResponseFilterSensitiveLog: (obj: CreateLunaClientResponse) => any;
|
|
370
|
+
|
|
371
|
+
export declare const DeleteHapgRequestFilterSensitiveLog: (obj: DeleteHapgRequest) => any;
|
|
372
|
+
|
|
373
|
+
export declare const DeleteHapgResponseFilterSensitiveLog: (obj: DeleteHapgResponse) => any;
|
|
374
|
+
|
|
375
|
+
export declare const DeleteHsmRequestFilterSensitiveLog: (obj: DeleteHsmRequest) => any;
|
|
376
|
+
|
|
377
|
+
export declare const DeleteHsmResponseFilterSensitiveLog: (obj: DeleteHsmResponse) => any;
|
|
378
|
+
|
|
379
|
+
export declare const DeleteLunaClientRequestFilterSensitiveLog: (obj: DeleteLunaClientRequest) => any;
|
|
380
|
+
|
|
381
|
+
export declare const DeleteLunaClientResponseFilterSensitiveLog: (obj: DeleteLunaClientResponse) => any;
|
|
382
|
+
|
|
383
|
+
export declare const DescribeHapgRequestFilterSensitiveLog: (obj: DescribeHapgRequest) => any;
|
|
384
|
+
|
|
385
|
+
export declare const DescribeHapgResponseFilterSensitiveLog: (obj: DescribeHapgResponse) => any;
|
|
386
|
+
|
|
387
|
+
export declare const DescribeHsmRequestFilterSensitiveLog: (obj: DescribeHsmRequest) => any;
|
|
388
|
+
|
|
389
|
+
export declare const DescribeHsmResponseFilterSensitiveLog: (obj: DescribeHsmResponse) => any;
|
|
390
|
+
|
|
391
|
+
export declare const DescribeLunaClientRequestFilterSensitiveLog: (obj: DescribeLunaClientRequest) => any;
|
|
392
|
+
|
|
393
|
+
export declare const DescribeLunaClientResponseFilterSensitiveLog: (obj: DescribeLunaClientResponse) => any;
|
|
394
|
+
|
|
395
|
+
export declare const GetConfigRequestFilterSensitiveLog: (obj: GetConfigRequest) => any;
|
|
396
|
+
|
|
397
|
+
export declare const GetConfigResponseFilterSensitiveLog: (obj: GetConfigResponse) => any;
|
|
398
|
+
|
|
399
|
+
export declare const ListAvailableZonesRequestFilterSensitiveLog: (obj: ListAvailableZonesRequest) => any;
|
|
400
|
+
|
|
401
|
+
export declare const ListAvailableZonesResponseFilterSensitiveLog: (obj: ListAvailableZonesResponse) => any;
|
|
402
|
+
|
|
403
|
+
export declare const ListHapgsRequestFilterSensitiveLog: (obj: ListHapgsRequest) => any;
|
|
404
|
+
|
|
405
|
+
export declare const ListHapgsResponseFilterSensitiveLog: (obj: ListHapgsResponse) => any;
|
|
406
|
+
|
|
407
|
+
export declare const ListHsmsRequestFilterSensitiveLog: (obj: ListHsmsRequest) => any;
|
|
408
|
+
|
|
409
|
+
export declare const ListHsmsResponseFilterSensitiveLog: (obj: ListHsmsResponse) => any;
|
|
410
|
+
|
|
411
|
+
export declare const ListLunaClientsRequestFilterSensitiveLog: (obj: ListLunaClientsRequest) => any;
|
|
412
|
+
|
|
413
|
+
export declare const ListLunaClientsResponseFilterSensitiveLog: (obj: ListLunaClientsResponse) => any;
|
|
414
|
+
|
|
415
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
416
|
+
|
|
417
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
418
|
+
|
|
419
|
+
export declare const ModifyHapgRequestFilterSensitiveLog: (obj: ModifyHapgRequest) => any;
|
|
420
|
+
|
|
421
|
+
export declare const ModifyHapgResponseFilterSensitiveLog: (obj: ModifyHapgResponse) => any;
|
|
422
|
+
|
|
423
|
+
export declare const ModifyHsmRequestFilterSensitiveLog: (obj: ModifyHsmRequest) => any;
|
|
424
|
+
|
|
425
|
+
export declare const ModifyHsmResponseFilterSensitiveLog: (obj: ModifyHsmResponse) => any;
|
|
426
|
+
|
|
427
|
+
export declare const ModifyLunaClientRequestFilterSensitiveLog: (obj: ModifyLunaClientRequest) => any;
|
|
428
|
+
|
|
429
|
+
export declare const ModifyLunaClientResponseFilterSensitiveLog: (obj: ModifyLunaClientResponse) => any;
|
|
430
|
+
|
|
431
|
+
export declare const RemoveTagsFromResourceRequestFilterSensitiveLog: (obj: RemoveTagsFromResourceRequest) => any;
|
|
432
|
+
|
|
433
|
+
export declare const RemoveTagsFromResourceResponseFilterSensitiveLog: (obj: RemoveTagsFromResourceResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudhsm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudhsm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.142.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,9 +18,9 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
24
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",
|
|
@@ -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.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.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.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.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",
|