@aws-sdk/client-cloudhsm 3.296.0 → 3.298.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/commands/AddTagsToResourceCommand.js +2 -3
- package/dist-cjs/commands/CreateHapgCommand.js +2 -3
- package/dist-cjs/commands/CreateHsmCommand.js +2 -3
- package/dist-cjs/commands/CreateLunaClientCommand.js +2 -3
- package/dist-cjs/commands/DeleteHapgCommand.js +2 -3
- package/dist-cjs/commands/DeleteHsmCommand.js +2 -3
- package/dist-cjs/commands/DeleteLunaClientCommand.js +2 -3
- package/dist-cjs/commands/DescribeHapgCommand.js +2 -3
- package/dist-cjs/commands/DescribeHsmCommand.js +2 -3
- package/dist-cjs/commands/DescribeLunaClientCommand.js +2 -3
- package/dist-cjs/commands/GetConfigCommand.js +2 -3
- package/dist-cjs/commands/ListAvailableZonesCommand.js +2 -3
- package/dist-cjs/commands/ListHapgsCommand.js +2 -3
- package/dist-cjs/commands/ListHsmsCommand.js +2 -3
- package/dist-cjs/commands/ListLunaClientsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/ModifyHapgCommand.js +2 -3
- package/dist-cjs/commands/ModifyHsmCommand.js +2 -3
- package/dist-cjs/commands/ModifyLunaClientCommand.js +2 -3
- package/dist-cjs/commands/RemoveTagsFromResourceCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -165
- package/dist-es/commands/AddTagsToResourceCommand.js +2 -3
- package/dist-es/commands/CreateHapgCommand.js +2 -3
- package/dist-es/commands/CreateHsmCommand.js +2 -3
- package/dist-es/commands/CreateLunaClientCommand.js +2 -3
- package/dist-es/commands/DeleteHapgCommand.js +2 -3
- package/dist-es/commands/DeleteHsmCommand.js +2 -3
- package/dist-es/commands/DeleteLunaClientCommand.js +2 -3
- package/dist-es/commands/DescribeHapgCommand.js +2 -3
- package/dist-es/commands/DescribeHsmCommand.js +2 -3
- package/dist-es/commands/DescribeLunaClientCommand.js +2 -3
- package/dist-es/commands/GetConfigCommand.js +2 -3
- package/dist-es/commands/ListAvailableZonesCommand.js +2 -3
- package/dist-es/commands/ListHapgsCommand.js +2 -3
- package/dist-es/commands/ListHsmsCommand.js +2 -3
- package/dist-es/commands/ListLunaClientsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/ModifyHapgCommand.js +2 -3
- package/dist-es/commands/ModifyHsmCommand.js +2 -3
- package/dist-es/commands/ModifyLunaClientCommand.js +2 -3
- package/dist-es/commands/RemoveTagsFromResourceCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -123
- package/dist-types/CloudHSM.d.ts +21 -0
- package/dist-types/CloudHSMClient.d.ts +24 -4
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateHapgCommand.d.ts +16 -0
- package/dist-types/commands/CreateHsmCommand.d.ts +16 -0
- package/dist-types/commands/CreateLunaClientCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHapgCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHsmCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLunaClientCommand.d.ts +16 -0
- package/dist-types/commands/DescribeHapgCommand.d.ts +16 -0
- package/dist-types/commands/DescribeHsmCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLunaClientCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigCommand.d.ts +16 -0
- package/dist-types/commands/ListAvailableZonesCommand.d.ts +16 -0
- package/dist-types/commands/ListHapgsCommand.d.ts +16 -0
- package/dist-types/commands/ListHsmsCommand.d.ts +16 -0
- package/dist-types/commands/ListLunaClientsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ModifyHapgCommand.d.ts +16 -0
- package/dist-types/commands/ModifyHsmCommand.d.ts +16 -0
- package/dist-types/commands/ModifyLunaClientCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +16 -0
- package/dist-types/models/CloudHSMServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +100 -164
- package/dist-types/ts3.4/models/models_0.d.ts +0 -121
- package/package.json +4 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CloudHSMServiceException as __BaseException } from "./CloudHSMServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>A key-value pair that identifies or specifies metadata about an AWS CloudHSM
|
|
5
6
|
* resource.</p>
|
|
6
7
|
*/
|
|
@@ -14,6 +15,9 @@ export interface Tag {
|
|
|
14
15
|
*/
|
|
15
16
|
Value: string | undefined;
|
|
16
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
17
21
|
export interface AddTagsToResourceRequest {
|
|
18
22
|
/**
|
|
19
23
|
* <p>The Amazon Resource Name (ARN) of the AWS CloudHSM resource to tag.</p>
|
|
@@ -24,6 +28,9 @@ export interface AddTagsToResourceRequest {
|
|
|
24
28
|
*/
|
|
25
29
|
TagList: Tag[] | undefined;
|
|
26
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
27
34
|
export interface AddTagsToResourceResponse {
|
|
28
35
|
/**
|
|
29
36
|
* <p>The status of the operation.</p>
|
|
@@ -31,6 +38,7 @@ export interface AddTagsToResourceResponse {
|
|
|
31
38
|
Status: string | undefined;
|
|
32
39
|
}
|
|
33
40
|
/**
|
|
41
|
+
* @public
|
|
34
42
|
* <p>Indicates that an internal error occurred.</p>
|
|
35
43
|
*/
|
|
36
44
|
export declare class CloudHsmInternalException extends __BaseException {
|
|
@@ -46,6 +54,7 @@ export declare class CloudHsmInternalException extends __BaseException {
|
|
|
46
54
|
constructor(opts: __ExceptionOptionType<CloudHsmInternalException, __BaseException>);
|
|
47
55
|
}
|
|
48
56
|
/**
|
|
57
|
+
* @public
|
|
49
58
|
* <p>Indicates that an exception occurred in the AWS CloudHSM service.</p>
|
|
50
59
|
*/
|
|
51
60
|
export declare class CloudHsmServiceException extends __BaseException {
|
|
@@ -61,6 +70,7 @@ export declare class CloudHsmServiceException extends __BaseException {
|
|
|
61
70
|
constructor(opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>);
|
|
62
71
|
}
|
|
63
72
|
/**
|
|
73
|
+
* @public
|
|
64
74
|
* <p>Indicates that one or more of the request parameters are not valid.</p>
|
|
65
75
|
*/
|
|
66
76
|
export declare class InvalidRequestException extends __BaseException {
|
|
@@ -75,11 +85,15 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
75
85
|
*/
|
|
76
86
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
77
87
|
}
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
78
91
|
export declare enum ClientVersion {
|
|
79
92
|
FIVE_ONE = "5.1",
|
|
80
93
|
FIVE_THREE = "5.3"
|
|
81
94
|
}
|
|
82
95
|
/**
|
|
96
|
+
* @public
|
|
83
97
|
* <p>Contains the inputs for the <a>CreateHapgRequest</a> action.</p>
|
|
84
98
|
*/
|
|
85
99
|
export interface CreateHapgRequest {
|
|
@@ -89,6 +103,7 @@ export interface CreateHapgRequest {
|
|
|
89
103
|
Label: string | undefined;
|
|
90
104
|
}
|
|
91
105
|
/**
|
|
106
|
+
* @public
|
|
92
107
|
* <p>Contains the output of the <a>CreateHAPartitionGroup</a> action.</p>
|
|
93
108
|
*/
|
|
94
109
|
export interface CreateHapgResponse {
|
|
@@ -97,10 +112,14 @@ export interface CreateHapgResponse {
|
|
|
97
112
|
*/
|
|
98
113
|
HapgArn?: string;
|
|
99
114
|
}
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
100
118
|
export declare enum SubscriptionType {
|
|
101
119
|
PRODUCTION = "PRODUCTION"
|
|
102
120
|
}
|
|
103
121
|
/**
|
|
122
|
+
* @public
|
|
104
123
|
* <p>Contains the inputs for the <code>CreateHsm</code> operation.</p>
|
|
105
124
|
*/
|
|
106
125
|
export interface CreateHsmRequest {
|
|
@@ -155,6 +174,7 @@ export interface CreateHsmRequest {
|
|
|
155
174
|
SyslogIp?: string;
|
|
156
175
|
}
|
|
157
176
|
/**
|
|
177
|
+
* @public
|
|
158
178
|
* <p>Contains the output of the <code>CreateHsm</code> operation.</p>
|
|
159
179
|
*/
|
|
160
180
|
export interface CreateHsmResponse {
|
|
@@ -164,6 +184,7 @@ export interface CreateHsmResponse {
|
|
|
164
184
|
HsmArn?: string;
|
|
165
185
|
}
|
|
166
186
|
/**
|
|
187
|
+
* @public
|
|
167
188
|
* <p>Contains the inputs for the <a>CreateLunaClient</a> action.</p>
|
|
168
189
|
*/
|
|
169
190
|
export interface CreateLunaClientRequest {
|
|
@@ -178,6 +199,7 @@ export interface CreateLunaClientRequest {
|
|
|
178
199
|
Certificate: string | undefined;
|
|
179
200
|
}
|
|
180
201
|
/**
|
|
202
|
+
* @public
|
|
181
203
|
* <p>Contains the output of the <a>CreateLunaClient</a> action.</p>
|
|
182
204
|
*/
|
|
183
205
|
export interface CreateLunaClientResponse {
|
|
@@ -187,6 +209,7 @@ export interface CreateLunaClientResponse {
|
|
|
187
209
|
ClientArn?: string;
|
|
188
210
|
}
|
|
189
211
|
/**
|
|
212
|
+
* @public
|
|
190
213
|
* <p>Contains the inputs for the <a>DeleteHapg</a> action.</p>
|
|
191
214
|
*/
|
|
192
215
|
export interface DeleteHapgRequest {
|
|
@@ -196,6 +219,7 @@ export interface DeleteHapgRequest {
|
|
|
196
219
|
HapgArn: string | undefined;
|
|
197
220
|
}
|
|
198
221
|
/**
|
|
222
|
+
* @public
|
|
199
223
|
* <p>Contains the output of the <a>DeleteHapg</a> action.</p>
|
|
200
224
|
*/
|
|
201
225
|
export interface DeleteHapgResponse {
|
|
@@ -205,6 +229,7 @@ export interface DeleteHapgResponse {
|
|
|
205
229
|
Status: string | undefined;
|
|
206
230
|
}
|
|
207
231
|
/**
|
|
232
|
+
* @public
|
|
208
233
|
* <p>Contains the inputs for the <a>DeleteHsm</a> operation.</p>
|
|
209
234
|
*/
|
|
210
235
|
export interface DeleteHsmRequest {
|
|
@@ -214,6 +239,7 @@ export interface DeleteHsmRequest {
|
|
|
214
239
|
HsmArn: string | undefined;
|
|
215
240
|
}
|
|
216
241
|
/**
|
|
242
|
+
* @public
|
|
217
243
|
* <p>Contains the output of the <a>DeleteHsm</a> operation.</p>
|
|
218
244
|
*/
|
|
219
245
|
export interface DeleteHsmResponse {
|
|
@@ -222,12 +248,18 @@ export interface DeleteHsmResponse {
|
|
|
222
248
|
*/
|
|
223
249
|
Status: string | undefined;
|
|
224
250
|
}
|
|
251
|
+
/**
|
|
252
|
+
* @public
|
|
253
|
+
*/
|
|
225
254
|
export interface DeleteLunaClientRequest {
|
|
226
255
|
/**
|
|
227
256
|
* <p>The ARN of the client to delete.</p>
|
|
228
257
|
*/
|
|
229
258
|
ClientArn: string | undefined;
|
|
230
259
|
}
|
|
260
|
+
/**
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
231
263
|
export interface DeleteLunaClientResponse {
|
|
232
264
|
/**
|
|
233
265
|
* <p>The status of the action.</p>
|
|
@@ -235,6 +267,7 @@ export interface DeleteLunaClientResponse {
|
|
|
235
267
|
Status: string | undefined;
|
|
236
268
|
}
|
|
237
269
|
/**
|
|
270
|
+
* @public
|
|
238
271
|
* <p>Contains the inputs for the <a>DescribeHapg</a> action.</p>
|
|
239
272
|
*/
|
|
240
273
|
export interface DescribeHapgRequest {
|
|
@@ -243,12 +276,16 @@ export interface DescribeHapgRequest {
|
|
|
243
276
|
*/
|
|
244
277
|
HapgArn: string | undefined;
|
|
245
278
|
}
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
*/
|
|
246
282
|
export declare enum CloudHsmObjectState {
|
|
247
283
|
DEGRADED = "DEGRADED",
|
|
248
284
|
READY = "READY",
|
|
249
285
|
UPDATING = "UPDATING"
|
|
250
286
|
}
|
|
251
287
|
/**
|
|
288
|
+
* @public
|
|
252
289
|
* <p>Contains the output of the <a>DescribeHapg</a> action.</p>
|
|
253
290
|
*/
|
|
254
291
|
export interface DescribeHapgResponse {
|
|
@@ -291,6 +328,7 @@ export interface DescribeHapgResponse {
|
|
|
291
328
|
State?: CloudHsmObjectState | string;
|
|
292
329
|
}
|
|
293
330
|
/**
|
|
331
|
+
* @public
|
|
294
332
|
* <p>Contains the inputs for the <a>DescribeHsm</a> operation.</p>
|
|
295
333
|
*/
|
|
296
334
|
export interface DescribeHsmRequest {
|
|
@@ -305,6 +343,9 @@ export interface DescribeHsmRequest {
|
|
|
305
343
|
*/
|
|
306
344
|
HsmSerialNumber?: string;
|
|
307
345
|
}
|
|
346
|
+
/**
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
308
349
|
export declare enum HsmStatus {
|
|
309
350
|
DEGRADED = "DEGRADED",
|
|
310
351
|
PENDING = "PENDING",
|
|
@@ -315,6 +356,7 @@ export declare enum HsmStatus {
|
|
|
315
356
|
UPDATING = "UPDATING"
|
|
316
357
|
}
|
|
317
358
|
/**
|
|
359
|
+
* @public
|
|
318
360
|
* <p>Contains the output of the <a>DescribeHsm</a> operation.</p>
|
|
319
361
|
*/
|
|
320
362
|
export interface DescribeHsmResponse {
|
|
@@ -415,6 +457,9 @@ export interface DescribeHsmResponse {
|
|
|
415
457
|
*/
|
|
416
458
|
Partitions?: string[];
|
|
417
459
|
}
|
|
460
|
+
/**
|
|
461
|
+
* @public
|
|
462
|
+
*/
|
|
418
463
|
export interface DescribeLunaClientRequest {
|
|
419
464
|
/**
|
|
420
465
|
* <p>The ARN of the client.</p>
|
|
@@ -425,6 +470,9 @@ export interface DescribeLunaClientRequest {
|
|
|
425
470
|
*/
|
|
426
471
|
CertificateFingerprint?: string;
|
|
427
472
|
}
|
|
473
|
+
/**
|
|
474
|
+
* @public
|
|
475
|
+
*/
|
|
428
476
|
export interface DescribeLunaClientResponse {
|
|
429
477
|
/**
|
|
430
478
|
* <p>The ARN of the client.</p>
|
|
@@ -447,6 +495,9 @@ export interface DescribeLunaClientResponse {
|
|
|
447
495
|
*/
|
|
448
496
|
Label?: string;
|
|
449
497
|
}
|
|
498
|
+
/**
|
|
499
|
+
* @public
|
|
500
|
+
*/
|
|
450
501
|
export interface GetConfigRequest {
|
|
451
502
|
/**
|
|
452
503
|
* <p>The ARN of the client.</p>
|
|
@@ -462,6 +513,9 @@ export interface GetConfigRequest {
|
|
|
462
513
|
*/
|
|
463
514
|
HapgList: string[] | undefined;
|
|
464
515
|
}
|
|
516
|
+
/**
|
|
517
|
+
* @public
|
|
518
|
+
*/
|
|
465
519
|
export interface GetConfigResponse {
|
|
466
520
|
/**
|
|
467
521
|
* <p>The type of credentials.</p>
|
|
@@ -477,16 +531,23 @@ export interface GetConfigResponse {
|
|
|
477
531
|
ConfigCred?: string;
|
|
478
532
|
}
|
|
479
533
|
/**
|
|
534
|
+
* @public
|
|
480
535
|
* <p>Contains the inputs for the <a>ListAvailableZones</a> action.</p>
|
|
481
536
|
*/
|
|
482
537
|
export interface ListAvailableZonesRequest {
|
|
483
538
|
}
|
|
539
|
+
/**
|
|
540
|
+
* @public
|
|
541
|
+
*/
|
|
484
542
|
export interface ListAvailableZonesResponse {
|
|
485
543
|
/**
|
|
486
544
|
* <p>The list of Availability Zones that have available AWS CloudHSM capacity.</p>
|
|
487
545
|
*/
|
|
488
546
|
AZList?: string[];
|
|
489
547
|
}
|
|
548
|
+
/**
|
|
549
|
+
* @public
|
|
550
|
+
*/
|
|
490
551
|
export interface ListHapgsRequest {
|
|
491
552
|
/**
|
|
492
553
|
* <p>The <code>NextToken</code> value from a previous call to <code>ListHapgs</code>. Pass
|
|
@@ -494,6 +555,9 @@ export interface ListHapgsRequest {
|
|
|
494
555
|
*/
|
|
495
556
|
NextToken?: string;
|
|
496
557
|
}
|
|
558
|
+
/**
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
497
561
|
export interface ListHapgsResponse {
|
|
498
562
|
/**
|
|
499
563
|
* <p>The list of high-availability partition groups.</p>
|
|
@@ -505,6 +569,9 @@ export interface ListHapgsResponse {
|
|
|
505
569
|
*/
|
|
506
570
|
NextToken?: string;
|
|
507
571
|
}
|
|
572
|
+
/**
|
|
573
|
+
* @public
|
|
574
|
+
*/
|
|
508
575
|
export interface ListHsmsRequest {
|
|
509
576
|
/**
|
|
510
577
|
* <p>The <code>NextToken</code> value from a previous call to <code>ListHsms</code>. Pass
|
|
@@ -513,6 +580,7 @@ export interface ListHsmsRequest {
|
|
|
513
580
|
NextToken?: string;
|
|
514
581
|
}
|
|
515
582
|
/**
|
|
583
|
+
* @public
|
|
516
584
|
* <p>Contains the output of the <code>ListHsms</code> operation.</p>
|
|
517
585
|
*/
|
|
518
586
|
export interface ListHsmsResponse {
|
|
@@ -526,6 +594,9 @@ export interface ListHsmsResponse {
|
|
|
526
594
|
*/
|
|
527
595
|
NextToken?: string;
|
|
528
596
|
}
|
|
597
|
+
/**
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
529
600
|
export interface ListLunaClientsRequest {
|
|
530
601
|
/**
|
|
531
602
|
* <p>The <code>NextToken</code> value from a previous call to <code>ListLunaClients</code>.
|
|
@@ -533,6 +604,9 @@ export interface ListLunaClientsRequest {
|
|
|
533
604
|
*/
|
|
534
605
|
NextToken?: string;
|
|
535
606
|
}
|
|
607
|
+
/**
|
|
608
|
+
* @public
|
|
609
|
+
*/
|
|
536
610
|
export interface ListLunaClientsResponse {
|
|
537
611
|
/**
|
|
538
612
|
* <p>The list of clients.</p>
|
|
@@ -544,18 +618,27 @@ export interface ListLunaClientsResponse {
|
|
|
544
618
|
*/
|
|
545
619
|
NextToken?: string;
|
|
546
620
|
}
|
|
621
|
+
/**
|
|
622
|
+
* @public
|
|
623
|
+
*/
|
|
547
624
|
export interface ListTagsForResourceRequest {
|
|
548
625
|
/**
|
|
549
626
|
* <p>The Amazon Resource Name (ARN) of the AWS CloudHSM resource.</p>
|
|
550
627
|
*/
|
|
551
628
|
ResourceArn: string | undefined;
|
|
552
629
|
}
|
|
630
|
+
/**
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
553
633
|
export interface ListTagsForResourceResponse {
|
|
554
634
|
/**
|
|
555
635
|
* <p>One or more tags.</p>
|
|
556
636
|
*/
|
|
557
637
|
TagList: Tag[] | undefined;
|
|
558
638
|
}
|
|
639
|
+
/**
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
559
642
|
export interface ModifyHapgRequest {
|
|
560
643
|
/**
|
|
561
644
|
* <p>The ARN of the high-availability partition group to modify.</p>
|
|
@@ -571,6 +654,9 @@ export interface ModifyHapgRequest {
|
|
|
571
654
|
*/
|
|
572
655
|
PartitionSerialList?: string[];
|
|
573
656
|
}
|
|
657
|
+
/**
|
|
658
|
+
* @public
|
|
659
|
+
*/
|
|
574
660
|
export interface ModifyHapgResponse {
|
|
575
661
|
/**
|
|
576
662
|
* <p>The ARN of the high-availability partition group.</p>
|
|
@@ -578,6 +664,7 @@ export interface ModifyHapgResponse {
|
|
|
578
664
|
HapgArn?: string;
|
|
579
665
|
}
|
|
580
666
|
/**
|
|
667
|
+
* @public
|
|
581
668
|
* <p>Contains the inputs for the <a>ModifyHsm</a> operation.</p>
|
|
582
669
|
*/
|
|
583
670
|
export interface ModifyHsmRequest {
|
|
@@ -612,6 +699,7 @@ export interface ModifyHsmRequest {
|
|
|
612
699
|
SyslogIp?: string;
|
|
613
700
|
}
|
|
614
701
|
/**
|
|
702
|
+
* @public
|
|
615
703
|
* <p>Contains the output of the <a>ModifyHsm</a> operation.</p>
|
|
616
704
|
*/
|
|
617
705
|
export interface ModifyHsmResponse {
|
|
@@ -620,6 +708,9 @@ export interface ModifyHsmResponse {
|
|
|
620
708
|
*/
|
|
621
709
|
HsmArn?: string;
|
|
622
710
|
}
|
|
711
|
+
/**
|
|
712
|
+
* @public
|
|
713
|
+
*/
|
|
623
714
|
export interface ModifyLunaClientRequest {
|
|
624
715
|
/**
|
|
625
716
|
* <p>The ARN of the client.</p>
|
|
@@ -630,12 +721,18 @@ export interface ModifyLunaClientRequest {
|
|
|
630
721
|
*/
|
|
631
722
|
Certificate: string | undefined;
|
|
632
723
|
}
|
|
724
|
+
/**
|
|
725
|
+
* @public
|
|
726
|
+
*/
|
|
633
727
|
export interface ModifyLunaClientResponse {
|
|
634
728
|
/**
|
|
635
729
|
* <p>The ARN of the client.</p>
|
|
636
730
|
*/
|
|
637
731
|
ClientArn?: string;
|
|
638
732
|
}
|
|
733
|
+
/**
|
|
734
|
+
* @public
|
|
735
|
+
*/
|
|
639
736
|
export interface RemoveTagsFromResourceRequest {
|
|
640
737
|
/**
|
|
641
738
|
* <p>The Amazon Resource Name (ARN) of the AWS CloudHSM resource.</p>
|
|
@@ -648,173 +745,12 @@ export interface RemoveTagsFromResourceRequest {
|
|
|
648
745
|
*/
|
|
649
746
|
TagKeyList: string[] | undefined;
|
|
650
747
|
}
|
|
748
|
+
/**
|
|
749
|
+
* @public
|
|
750
|
+
*/
|
|
651
751
|
export interface RemoveTagsFromResourceResponse {
|
|
652
752
|
/**
|
|
653
753
|
* <p>The status of the operation.</p>
|
|
654
754
|
*/
|
|
655
755
|
Status: string | undefined;
|
|
656
756
|
}
|
|
657
|
-
/**
|
|
658
|
-
* @internal
|
|
659
|
-
*/
|
|
660
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
661
|
-
/**
|
|
662
|
-
* @internal
|
|
663
|
-
*/
|
|
664
|
-
export declare const AddTagsToResourceRequestFilterSensitiveLog: (obj: AddTagsToResourceRequest) => any;
|
|
665
|
-
/**
|
|
666
|
-
* @internal
|
|
667
|
-
*/
|
|
668
|
-
export declare const AddTagsToResourceResponseFilterSensitiveLog: (obj: AddTagsToResourceResponse) => any;
|
|
669
|
-
/**
|
|
670
|
-
* @internal
|
|
671
|
-
*/
|
|
672
|
-
export declare const CreateHapgRequestFilterSensitiveLog: (obj: CreateHapgRequest) => any;
|
|
673
|
-
/**
|
|
674
|
-
* @internal
|
|
675
|
-
*/
|
|
676
|
-
export declare const CreateHapgResponseFilterSensitiveLog: (obj: CreateHapgResponse) => any;
|
|
677
|
-
/**
|
|
678
|
-
* @internal
|
|
679
|
-
*/
|
|
680
|
-
export declare const CreateHsmRequestFilterSensitiveLog: (obj: CreateHsmRequest) => any;
|
|
681
|
-
/**
|
|
682
|
-
* @internal
|
|
683
|
-
*/
|
|
684
|
-
export declare const CreateHsmResponseFilterSensitiveLog: (obj: CreateHsmResponse) => any;
|
|
685
|
-
/**
|
|
686
|
-
* @internal
|
|
687
|
-
*/
|
|
688
|
-
export declare const CreateLunaClientRequestFilterSensitiveLog: (obj: CreateLunaClientRequest) => any;
|
|
689
|
-
/**
|
|
690
|
-
* @internal
|
|
691
|
-
*/
|
|
692
|
-
export declare const CreateLunaClientResponseFilterSensitiveLog: (obj: CreateLunaClientResponse) => any;
|
|
693
|
-
/**
|
|
694
|
-
* @internal
|
|
695
|
-
*/
|
|
696
|
-
export declare const DeleteHapgRequestFilterSensitiveLog: (obj: DeleteHapgRequest) => any;
|
|
697
|
-
/**
|
|
698
|
-
* @internal
|
|
699
|
-
*/
|
|
700
|
-
export declare const DeleteHapgResponseFilterSensitiveLog: (obj: DeleteHapgResponse) => any;
|
|
701
|
-
/**
|
|
702
|
-
* @internal
|
|
703
|
-
*/
|
|
704
|
-
export declare const DeleteHsmRequestFilterSensitiveLog: (obj: DeleteHsmRequest) => any;
|
|
705
|
-
/**
|
|
706
|
-
* @internal
|
|
707
|
-
*/
|
|
708
|
-
export declare const DeleteHsmResponseFilterSensitiveLog: (obj: DeleteHsmResponse) => any;
|
|
709
|
-
/**
|
|
710
|
-
* @internal
|
|
711
|
-
*/
|
|
712
|
-
export declare const DeleteLunaClientRequestFilterSensitiveLog: (obj: DeleteLunaClientRequest) => any;
|
|
713
|
-
/**
|
|
714
|
-
* @internal
|
|
715
|
-
*/
|
|
716
|
-
export declare const DeleteLunaClientResponseFilterSensitiveLog: (obj: DeleteLunaClientResponse) => any;
|
|
717
|
-
/**
|
|
718
|
-
* @internal
|
|
719
|
-
*/
|
|
720
|
-
export declare const DescribeHapgRequestFilterSensitiveLog: (obj: DescribeHapgRequest) => any;
|
|
721
|
-
/**
|
|
722
|
-
* @internal
|
|
723
|
-
*/
|
|
724
|
-
export declare const DescribeHapgResponseFilterSensitiveLog: (obj: DescribeHapgResponse) => any;
|
|
725
|
-
/**
|
|
726
|
-
* @internal
|
|
727
|
-
*/
|
|
728
|
-
export declare const DescribeHsmRequestFilterSensitiveLog: (obj: DescribeHsmRequest) => any;
|
|
729
|
-
/**
|
|
730
|
-
* @internal
|
|
731
|
-
*/
|
|
732
|
-
export declare const DescribeHsmResponseFilterSensitiveLog: (obj: DescribeHsmResponse) => any;
|
|
733
|
-
/**
|
|
734
|
-
* @internal
|
|
735
|
-
*/
|
|
736
|
-
export declare const DescribeLunaClientRequestFilterSensitiveLog: (obj: DescribeLunaClientRequest) => any;
|
|
737
|
-
/**
|
|
738
|
-
* @internal
|
|
739
|
-
*/
|
|
740
|
-
export declare const DescribeLunaClientResponseFilterSensitiveLog: (obj: DescribeLunaClientResponse) => any;
|
|
741
|
-
/**
|
|
742
|
-
* @internal
|
|
743
|
-
*/
|
|
744
|
-
export declare const GetConfigRequestFilterSensitiveLog: (obj: GetConfigRequest) => any;
|
|
745
|
-
/**
|
|
746
|
-
* @internal
|
|
747
|
-
*/
|
|
748
|
-
export declare const GetConfigResponseFilterSensitiveLog: (obj: GetConfigResponse) => any;
|
|
749
|
-
/**
|
|
750
|
-
* @internal
|
|
751
|
-
*/
|
|
752
|
-
export declare const ListAvailableZonesRequestFilterSensitiveLog: (obj: ListAvailableZonesRequest) => any;
|
|
753
|
-
/**
|
|
754
|
-
* @internal
|
|
755
|
-
*/
|
|
756
|
-
export declare const ListAvailableZonesResponseFilterSensitiveLog: (obj: ListAvailableZonesResponse) => any;
|
|
757
|
-
/**
|
|
758
|
-
* @internal
|
|
759
|
-
*/
|
|
760
|
-
export declare const ListHapgsRequestFilterSensitiveLog: (obj: ListHapgsRequest) => any;
|
|
761
|
-
/**
|
|
762
|
-
* @internal
|
|
763
|
-
*/
|
|
764
|
-
export declare const ListHapgsResponseFilterSensitiveLog: (obj: ListHapgsResponse) => any;
|
|
765
|
-
/**
|
|
766
|
-
* @internal
|
|
767
|
-
*/
|
|
768
|
-
export declare const ListHsmsRequestFilterSensitiveLog: (obj: ListHsmsRequest) => any;
|
|
769
|
-
/**
|
|
770
|
-
* @internal
|
|
771
|
-
*/
|
|
772
|
-
export declare const ListHsmsResponseFilterSensitiveLog: (obj: ListHsmsResponse) => any;
|
|
773
|
-
/**
|
|
774
|
-
* @internal
|
|
775
|
-
*/
|
|
776
|
-
export declare const ListLunaClientsRequestFilterSensitiveLog: (obj: ListLunaClientsRequest) => any;
|
|
777
|
-
/**
|
|
778
|
-
* @internal
|
|
779
|
-
*/
|
|
780
|
-
export declare const ListLunaClientsResponseFilterSensitiveLog: (obj: ListLunaClientsResponse) => any;
|
|
781
|
-
/**
|
|
782
|
-
* @internal
|
|
783
|
-
*/
|
|
784
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
785
|
-
/**
|
|
786
|
-
* @internal
|
|
787
|
-
*/
|
|
788
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
789
|
-
/**
|
|
790
|
-
* @internal
|
|
791
|
-
*/
|
|
792
|
-
export declare const ModifyHapgRequestFilterSensitiveLog: (obj: ModifyHapgRequest) => any;
|
|
793
|
-
/**
|
|
794
|
-
* @internal
|
|
795
|
-
*/
|
|
796
|
-
export declare const ModifyHapgResponseFilterSensitiveLog: (obj: ModifyHapgResponse) => any;
|
|
797
|
-
/**
|
|
798
|
-
* @internal
|
|
799
|
-
*/
|
|
800
|
-
export declare const ModifyHsmRequestFilterSensitiveLog: (obj: ModifyHsmRequest) => any;
|
|
801
|
-
/**
|
|
802
|
-
* @internal
|
|
803
|
-
*/
|
|
804
|
-
export declare const ModifyHsmResponseFilterSensitiveLog: (obj: ModifyHsmResponse) => any;
|
|
805
|
-
/**
|
|
806
|
-
* @internal
|
|
807
|
-
*/
|
|
808
|
-
export declare const ModifyLunaClientRequestFilterSensitiveLog: (obj: ModifyLunaClientRequest) => any;
|
|
809
|
-
/**
|
|
810
|
-
* @internal
|
|
811
|
-
*/
|
|
812
|
-
export declare const ModifyLunaClientResponseFilterSensitiveLog: (obj: ModifyLunaClientResponse) => any;
|
|
813
|
-
/**
|
|
814
|
-
* @internal
|
|
815
|
-
*/
|
|
816
|
-
export declare const RemoveTagsFromResourceRequestFilterSensitiveLog: (obj: RemoveTagsFromResourceRequest) => any;
|
|
817
|
-
/**
|
|
818
|
-
* @internal
|
|
819
|
-
*/
|
|
820
|
-
export declare const RemoveTagsFromResourceResponseFilterSensitiveLog: (obj: RemoveTagsFromResourceResponse) => any;
|
|
@@ -226,124 +226,3 @@ export interface RemoveTagsFromResourceRequest {
|
|
|
226
226
|
export interface RemoveTagsFromResourceResponse {
|
|
227
227
|
Status: string | undefined;
|
|
228
228
|
}
|
|
229
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
230
|
-
export declare const AddTagsToResourceRequestFilterSensitiveLog: (
|
|
231
|
-
obj: AddTagsToResourceRequest
|
|
232
|
-
) => any;
|
|
233
|
-
export declare const AddTagsToResourceResponseFilterSensitiveLog: (
|
|
234
|
-
obj: AddTagsToResourceResponse
|
|
235
|
-
) => any;
|
|
236
|
-
export declare const CreateHapgRequestFilterSensitiveLog: (
|
|
237
|
-
obj: CreateHapgRequest
|
|
238
|
-
) => any;
|
|
239
|
-
export declare const CreateHapgResponseFilterSensitiveLog: (
|
|
240
|
-
obj: CreateHapgResponse
|
|
241
|
-
) => any;
|
|
242
|
-
export declare const CreateHsmRequestFilterSensitiveLog: (
|
|
243
|
-
obj: CreateHsmRequest
|
|
244
|
-
) => any;
|
|
245
|
-
export declare const CreateHsmResponseFilterSensitiveLog: (
|
|
246
|
-
obj: CreateHsmResponse
|
|
247
|
-
) => any;
|
|
248
|
-
export declare const CreateLunaClientRequestFilterSensitiveLog: (
|
|
249
|
-
obj: CreateLunaClientRequest
|
|
250
|
-
) => any;
|
|
251
|
-
export declare const CreateLunaClientResponseFilterSensitiveLog: (
|
|
252
|
-
obj: CreateLunaClientResponse
|
|
253
|
-
) => any;
|
|
254
|
-
export declare const DeleteHapgRequestFilterSensitiveLog: (
|
|
255
|
-
obj: DeleteHapgRequest
|
|
256
|
-
) => any;
|
|
257
|
-
export declare const DeleteHapgResponseFilterSensitiveLog: (
|
|
258
|
-
obj: DeleteHapgResponse
|
|
259
|
-
) => any;
|
|
260
|
-
export declare const DeleteHsmRequestFilterSensitiveLog: (
|
|
261
|
-
obj: DeleteHsmRequest
|
|
262
|
-
) => any;
|
|
263
|
-
export declare const DeleteHsmResponseFilterSensitiveLog: (
|
|
264
|
-
obj: DeleteHsmResponse
|
|
265
|
-
) => any;
|
|
266
|
-
export declare const DeleteLunaClientRequestFilterSensitiveLog: (
|
|
267
|
-
obj: DeleteLunaClientRequest
|
|
268
|
-
) => any;
|
|
269
|
-
export declare const DeleteLunaClientResponseFilterSensitiveLog: (
|
|
270
|
-
obj: DeleteLunaClientResponse
|
|
271
|
-
) => any;
|
|
272
|
-
export declare const DescribeHapgRequestFilterSensitiveLog: (
|
|
273
|
-
obj: DescribeHapgRequest
|
|
274
|
-
) => any;
|
|
275
|
-
export declare const DescribeHapgResponseFilterSensitiveLog: (
|
|
276
|
-
obj: DescribeHapgResponse
|
|
277
|
-
) => any;
|
|
278
|
-
export declare const DescribeHsmRequestFilterSensitiveLog: (
|
|
279
|
-
obj: DescribeHsmRequest
|
|
280
|
-
) => any;
|
|
281
|
-
export declare const DescribeHsmResponseFilterSensitiveLog: (
|
|
282
|
-
obj: DescribeHsmResponse
|
|
283
|
-
) => any;
|
|
284
|
-
export declare const DescribeLunaClientRequestFilterSensitiveLog: (
|
|
285
|
-
obj: DescribeLunaClientRequest
|
|
286
|
-
) => any;
|
|
287
|
-
export declare const DescribeLunaClientResponseFilterSensitiveLog: (
|
|
288
|
-
obj: DescribeLunaClientResponse
|
|
289
|
-
) => any;
|
|
290
|
-
export declare const GetConfigRequestFilterSensitiveLog: (
|
|
291
|
-
obj: GetConfigRequest
|
|
292
|
-
) => any;
|
|
293
|
-
export declare const GetConfigResponseFilterSensitiveLog: (
|
|
294
|
-
obj: GetConfigResponse
|
|
295
|
-
) => any;
|
|
296
|
-
export declare const ListAvailableZonesRequestFilterSensitiveLog: (
|
|
297
|
-
obj: ListAvailableZonesRequest
|
|
298
|
-
) => any;
|
|
299
|
-
export declare const ListAvailableZonesResponseFilterSensitiveLog: (
|
|
300
|
-
obj: ListAvailableZonesResponse
|
|
301
|
-
) => any;
|
|
302
|
-
export declare const ListHapgsRequestFilterSensitiveLog: (
|
|
303
|
-
obj: ListHapgsRequest
|
|
304
|
-
) => any;
|
|
305
|
-
export declare const ListHapgsResponseFilterSensitiveLog: (
|
|
306
|
-
obj: ListHapgsResponse
|
|
307
|
-
) => any;
|
|
308
|
-
export declare const ListHsmsRequestFilterSensitiveLog: (
|
|
309
|
-
obj: ListHsmsRequest
|
|
310
|
-
) => any;
|
|
311
|
-
export declare const ListHsmsResponseFilterSensitiveLog: (
|
|
312
|
-
obj: ListHsmsResponse
|
|
313
|
-
) => any;
|
|
314
|
-
export declare const ListLunaClientsRequestFilterSensitiveLog: (
|
|
315
|
-
obj: ListLunaClientsRequest
|
|
316
|
-
) => any;
|
|
317
|
-
export declare const ListLunaClientsResponseFilterSensitiveLog: (
|
|
318
|
-
obj: ListLunaClientsResponse
|
|
319
|
-
) => any;
|
|
320
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
321
|
-
obj: ListTagsForResourceRequest
|
|
322
|
-
) => any;
|
|
323
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
324
|
-
obj: ListTagsForResourceResponse
|
|
325
|
-
) => any;
|
|
326
|
-
export declare const ModifyHapgRequestFilterSensitiveLog: (
|
|
327
|
-
obj: ModifyHapgRequest
|
|
328
|
-
) => any;
|
|
329
|
-
export declare const ModifyHapgResponseFilterSensitiveLog: (
|
|
330
|
-
obj: ModifyHapgResponse
|
|
331
|
-
) => any;
|
|
332
|
-
export declare const ModifyHsmRequestFilterSensitiveLog: (
|
|
333
|
-
obj: ModifyHsmRequest
|
|
334
|
-
) => any;
|
|
335
|
-
export declare const ModifyHsmResponseFilterSensitiveLog: (
|
|
336
|
-
obj: ModifyHsmResponse
|
|
337
|
-
) => any;
|
|
338
|
-
export declare const ModifyLunaClientRequestFilterSensitiveLog: (
|
|
339
|
-
obj: ModifyLunaClientRequest
|
|
340
|
-
) => any;
|
|
341
|
-
export declare const ModifyLunaClientResponseFilterSensitiveLog: (
|
|
342
|
-
obj: ModifyLunaClientResponse
|
|
343
|
-
) => any;
|
|
344
|
-
export declare const RemoveTagsFromResourceRequestFilterSensitiveLog: (
|
|
345
|
-
obj: RemoveTagsFromResourceRequest
|
|
346
|
-
) => any;
|
|
347
|
-
export declare const RemoveTagsFromResourceResponseFilterSensitiveLog: (
|
|
348
|
-
obj: RemoveTagsFromResourceResponse
|
|
349
|
-
) => any;
|