@aws-sdk/client-cloudhsm 3.169.0 → 3.170.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 (35) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CloudHSM.d.ts +364 -105
  3. package/dist-types/ts3.4/CloudHSMClient.d.ts +249 -93
  4. package/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateHapgCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateLunaClientCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeleteHapgCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DeleteLunaClientCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeHapgCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/DescribeHsmCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/DescribeLunaClientCommand.d.ts +38 -17
  14. package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/ListAvailableZonesCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/ListHapgsCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/ListHsmsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListLunaClientsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ModifyHapgCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ModifyHsmCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/ModifyLunaClientCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/index.d.ts +20 -20
  25. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  26. package/dist-types/ts3.4/index.d.ts +5 -5
  27. package/dist-types/ts3.4/models/CloudHSMServiceException.d.ts +8 -6
  28. package/dist-types/ts3.4/models/index.d.ts +1 -1
  29. package/dist-types/ts3.4/models/models_0.d.ts +478 -433
  30. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +245 -62
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  35. package/package.json +34 -34
@@ -1,433 +1,478 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { CloudHSMServiceException as __BaseException } from "./CloudHSMServiceException";
3
-
4
- export interface Tag {
5
-
6
- Key: string | undefined;
7
-
8
- Value: string | undefined;
9
- }
10
- export interface AddTagsToResourceRequest {
11
-
12
- ResourceArn: string | undefined;
13
-
14
- TagList: Tag[] | undefined;
15
- }
16
- export interface AddTagsToResourceResponse {
17
-
18
- Status: string | undefined;
19
- }
20
-
21
- export declare class CloudHsmInternalException extends __BaseException {
22
- readonly name: "CloudHsmInternalException";
23
- readonly $fault: "server";
24
-
25
- retryable?: boolean;
26
-
27
- constructor(opts: __ExceptionOptionType<CloudHsmInternalException, __BaseException>);
28
- }
29
-
30
- export declare class CloudHsmServiceException extends __BaseException {
31
- readonly name: "CloudHsmServiceException";
32
- readonly $fault: "client";
33
-
34
- retryable?: boolean;
35
-
36
- constructor(opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>);
37
- }
38
-
39
- export declare class InvalidRequestException extends __BaseException {
40
- readonly name: "InvalidRequestException";
41
- readonly $fault: "client";
42
-
43
- retryable?: boolean;
44
-
45
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
46
- }
47
- export declare enum ClientVersion {
48
- FIVE_ONE = "5.1",
49
- FIVE_THREE = "5.3"
50
- }
51
-
52
- export interface CreateHapgRequest {
53
-
54
- Label: string | undefined;
55
- }
56
-
57
- export interface CreateHapgResponse {
58
-
59
- HapgArn?: string;
60
- }
61
- export declare enum SubscriptionType {
62
- PRODUCTION = "PRODUCTION"
63
- }
64
-
65
- export interface CreateHsmRequest {
66
-
67
- SubnetId: string | undefined;
68
-
69
- SshKey: string | undefined;
70
-
71
- EniIp?: string;
72
-
73
- IamRoleArn: string | undefined;
74
-
75
- ExternalId?: string;
76
-
77
- SubscriptionType: SubscriptionType | string | undefined;
78
-
79
- ClientToken?: string;
80
-
81
- SyslogIp?: string;
82
- }
83
-
84
- export interface CreateHsmResponse {
85
-
86
- HsmArn?: string;
87
- }
88
-
89
- export interface CreateLunaClientRequest {
90
-
91
- Label?: string;
92
-
93
- Certificate: string | undefined;
94
- }
95
-
96
- export interface CreateLunaClientResponse {
97
-
98
- ClientArn?: string;
99
- }
100
-
101
- export interface DeleteHapgRequest {
102
-
103
- HapgArn: string | undefined;
104
- }
105
-
106
- export interface DeleteHapgResponse {
107
-
108
- Status: string | undefined;
109
- }
110
-
111
- export interface DeleteHsmRequest {
112
-
113
- HsmArn: string | undefined;
114
- }
115
-
116
- export interface DeleteHsmResponse {
117
-
118
- Status: string | undefined;
119
- }
120
- export interface DeleteLunaClientRequest {
121
-
122
- ClientArn: string | undefined;
123
- }
124
- export interface DeleteLunaClientResponse {
125
-
126
- Status: string | undefined;
127
- }
128
-
129
- export interface DescribeHapgRequest {
130
-
131
- HapgArn: string | undefined;
132
- }
133
- export declare enum CloudHsmObjectState {
134
- DEGRADED = "DEGRADED",
135
- READY = "READY",
136
- UPDATING = "UPDATING"
137
- }
138
-
139
- export interface DescribeHapgResponse {
140
-
141
- HapgArn?: string;
142
-
143
- HapgSerial?: string;
144
-
145
- HsmsLastActionFailed?: string[];
146
-
147
- HsmsPendingDeletion?: string[];
148
-
149
- HsmsPendingRegistration?: string[];
150
-
151
- Label?: string;
152
-
153
- LastModifiedTimestamp?: string;
154
-
155
- PartitionSerialList?: string[];
156
-
157
- State?: CloudHsmObjectState | string;
158
- }
159
-
160
- export interface DescribeHsmRequest {
161
-
162
- HsmArn?: string;
163
-
164
- HsmSerialNumber?: string;
165
- }
166
- export declare enum HsmStatus {
167
- DEGRADED = "DEGRADED",
168
- PENDING = "PENDING",
169
- RUNNING = "RUNNING",
170
- SUSPENDED = "SUSPENDED",
171
- TERMINATED = "TERMINATED",
172
- TERMINATING = "TERMINATING",
173
- UPDATING = "UPDATING"
174
- }
175
-
176
- export interface DescribeHsmResponse {
177
-
178
- HsmArn?: string;
179
-
180
- Status?: HsmStatus | string;
181
-
182
- StatusDetails?: string;
183
-
184
- AvailabilityZone?: string;
185
-
186
- EniId?: string;
187
-
188
- EniIp?: string;
189
-
190
- SubscriptionType?: SubscriptionType | string;
191
-
192
- SubscriptionStartDate?: string;
193
-
194
- SubscriptionEndDate?: string;
195
-
196
- VpcId?: string;
197
-
198
- SubnetId?: string;
199
-
200
- IamRoleArn?: string;
201
-
202
- SerialNumber?: string;
203
-
204
- VendorName?: string;
205
-
206
- HsmType?: string;
207
-
208
- SoftwareVersion?: string;
209
-
210
- SshPublicKey?: string;
211
-
212
- SshKeyLastUpdated?: string;
213
-
214
- ServerCertUri?: string;
215
-
216
- ServerCertLastUpdated?: string;
217
-
218
- Partitions?: string[];
219
- }
220
- export interface DescribeLunaClientRequest {
221
-
222
- ClientArn?: string;
223
-
224
- CertificateFingerprint?: string;
225
- }
226
- export interface DescribeLunaClientResponse {
227
-
228
- ClientArn?: string;
229
-
230
- Certificate?: string;
231
-
232
- CertificateFingerprint?: string;
233
-
234
- LastModifiedTimestamp?: string;
235
-
236
- Label?: string;
237
- }
238
- export interface GetConfigRequest {
239
-
240
- ClientArn: string | undefined;
241
-
242
- ClientVersion: ClientVersion | string | undefined;
243
-
244
- HapgList: string[] | undefined;
245
- }
246
- export interface GetConfigResponse {
247
-
248
- ConfigType?: string;
249
-
250
- ConfigFile?: string;
251
-
252
- ConfigCred?: string;
253
- }
254
-
255
- export interface ListAvailableZonesRequest {
256
- }
257
- export interface ListAvailableZonesResponse {
258
-
259
- AZList?: string[];
260
- }
261
- export interface ListHapgsRequest {
262
-
263
- NextToken?: string;
264
- }
265
- export interface ListHapgsResponse {
266
-
267
- HapgList: string[] | undefined;
268
-
269
- NextToken?: string;
270
- }
271
- export interface ListHsmsRequest {
272
-
273
- NextToken?: string;
274
- }
275
-
276
- export interface ListHsmsResponse {
277
-
278
- HsmList?: string[];
279
-
280
- NextToken?: string;
281
- }
282
- export interface ListLunaClientsRequest {
283
-
284
- NextToken?: string;
285
- }
286
- export interface ListLunaClientsResponse {
287
-
288
- ClientList: string[] | undefined;
289
-
290
- NextToken?: string;
291
- }
292
- export interface ListTagsForResourceRequest {
293
-
294
- ResourceArn: string | undefined;
295
- }
296
- export interface ListTagsForResourceResponse {
297
-
298
- TagList: Tag[] | undefined;
299
- }
300
- export interface ModifyHapgRequest {
301
-
302
- HapgArn: string | undefined;
303
-
304
- Label?: string;
305
-
306
- PartitionSerialList?: string[];
307
- }
308
- export interface ModifyHapgResponse {
309
-
310
- HapgArn?: string;
311
- }
312
-
313
- export interface ModifyHsmRequest {
314
-
315
- HsmArn: string | undefined;
316
-
317
- SubnetId?: string;
318
-
319
- EniIp?: string;
320
-
321
- IamRoleArn?: string;
322
-
323
- ExternalId?: string;
324
-
325
- SyslogIp?: string;
326
- }
327
-
328
- export interface ModifyHsmResponse {
329
-
330
- HsmArn?: string;
331
- }
332
- export interface ModifyLunaClientRequest {
333
-
334
- ClientArn: string | undefined;
335
-
336
- Certificate: string | undefined;
337
- }
338
- export interface ModifyLunaClientResponse {
339
-
340
- ClientArn?: string;
341
- }
342
- export interface RemoveTagsFromResourceRequest {
343
-
344
- ResourceArn: string | undefined;
345
-
346
- TagKeyList: string[] | undefined;
347
- }
348
- export interface RemoveTagsFromResourceResponse {
349
-
350
- Status: string | undefined;
351
- }
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;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CloudHSMServiceException as __BaseException } from "./CloudHSMServiceException";
3
+
4
+ export interface Tag {
5
+ Key: string | undefined;
6
+
7
+ Value: string | undefined;
8
+ }
9
+ export interface AddTagsToResourceRequest {
10
+ ResourceArn: string | undefined;
11
+
12
+ TagList: Tag[] | undefined;
13
+ }
14
+ export interface AddTagsToResourceResponse {
15
+ Status: string | undefined;
16
+ }
17
+
18
+ export declare class CloudHsmInternalException extends __BaseException {
19
+ readonly name: "CloudHsmInternalException";
20
+ readonly $fault: "server";
21
+
22
+ retryable?: boolean;
23
+
24
+ constructor(
25
+ opts: __ExceptionOptionType<CloudHsmInternalException, __BaseException>
26
+ );
27
+ }
28
+
29
+ export declare class CloudHsmServiceException extends __BaseException {
30
+ readonly name: "CloudHsmServiceException";
31
+ readonly $fault: "client";
32
+
33
+ retryable?: boolean;
34
+
35
+ constructor(
36
+ opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>
37
+ );
38
+ }
39
+
40
+ export declare class InvalidRequestException extends __BaseException {
41
+ readonly name: "InvalidRequestException";
42
+ readonly $fault: "client";
43
+
44
+ retryable?: boolean;
45
+
46
+ constructor(
47
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
48
+ );
49
+ }
50
+ export declare enum ClientVersion {
51
+ FIVE_ONE = "5.1",
52
+ FIVE_THREE = "5.3",
53
+ }
54
+
55
+ export interface CreateHapgRequest {
56
+ Label: string | undefined;
57
+ }
58
+
59
+ export interface CreateHapgResponse {
60
+ HapgArn?: string;
61
+ }
62
+ export declare enum SubscriptionType {
63
+ PRODUCTION = "PRODUCTION",
64
+ }
65
+
66
+ export interface CreateHsmRequest {
67
+ SubnetId: string | undefined;
68
+
69
+ SshKey: string | undefined;
70
+
71
+ EniIp?: string;
72
+
73
+ IamRoleArn: string | undefined;
74
+
75
+ ExternalId?: string;
76
+
77
+ SubscriptionType: SubscriptionType | string | undefined;
78
+
79
+ ClientToken?: string;
80
+
81
+ SyslogIp?: string;
82
+ }
83
+
84
+ export interface CreateHsmResponse {
85
+ HsmArn?: string;
86
+ }
87
+
88
+ export interface CreateLunaClientRequest {
89
+ Label?: string;
90
+
91
+ Certificate: string | undefined;
92
+ }
93
+
94
+ export interface CreateLunaClientResponse {
95
+ ClientArn?: string;
96
+ }
97
+
98
+ export interface DeleteHapgRequest {
99
+ HapgArn: string | undefined;
100
+ }
101
+
102
+ export interface DeleteHapgResponse {
103
+ Status: string | undefined;
104
+ }
105
+
106
+ export interface DeleteHsmRequest {
107
+ HsmArn: string | undefined;
108
+ }
109
+
110
+ export interface DeleteHsmResponse {
111
+ Status: string | undefined;
112
+ }
113
+ export interface DeleteLunaClientRequest {
114
+ ClientArn: string | undefined;
115
+ }
116
+ export interface DeleteLunaClientResponse {
117
+ Status: string | undefined;
118
+ }
119
+
120
+ export interface DescribeHapgRequest {
121
+ HapgArn: string | undefined;
122
+ }
123
+ export declare enum CloudHsmObjectState {
124
+ DEGRADED = "DEGRADED",
125
+ READY = "READY",
126
+ UPDATING = "UPDATING",
127
+ }
128
+
129
+ export interface DescribeHapgResponse {
130
+ HapgArn?: string;
131
+
132
+ HapgSerial?: string;
133
+
134
+ HsmsLastActionFailed?: string[];
135
+
136
+ HsmsPendingDeletion?: string[];
137
+
138
+ HsmsPendingRegistration?: string[];
139
+
140
+ Label?: string;
141
+
142
+ LastModifiedTimestamp?: string;
143
+
144
+ PartitionSerialList?: string[];
145
+
146
+ State?: CloudHsmObjectState | string;
147
+ }
148
+
149
+ export interface DescribeHsmRequest {
150
+ HsmArn?: string;
151
+
152
+ HsmSerialNumber?: string;
153
+ }
154
+ export declare enum HsmStatus {
155
+ DEGRADED = "DEGRADED",
156
+ PENDING = "PENDING",
157
+ RUNNING = "RUNNING",
158
+ SUSPENDED = "SUSPENDED",
159
+ TERMINATED = "TERMINATED",
160
+ TERMINATING = "TERMINATING",
161
+ UPDATING = "UPDATING",
162
+ }
163
+
164
+ export interface DescribeHsmResponse {
165
+ HsmArn?: string;
166
+
167
+ Status?: HsmStatus | string;
168
+
169
+ StatusDetails?: string;
170
+
171
+ AvailabilityZone?: string;
172
+
173
+ EniId?: string;
174
+
175
+ EniIp?: string;
176
+
177
+ SubscriptionType?: SubscriptionType | string;
178
+
179
+ SubscriptionStartDate?: string;
180
+
181
+ SubscriptionEndDate?: string;
182
+
183
+ VpcId?: string;
184
+
185
+ SubnetId?: string;
186
+
187
+ IamRoleArn?: string;
188
+
189
+ SerialNumber?: string;
190
+
191
+ VendorName?: string;
192
+
193
+ HsmType?: string;
194
+
195
+ SoftwareVersion?: string;
196
+
197
+ SshPublicKey?: string;
198
+
199
+ SshKeyLastUpdated?: string;
200
+
201
+ ServerCertUri?: string;
202
+
203
+ ServerCertLastUpdated?: string;
204
+
205
+ Partitions?: string[];
206
+ }
207
+ export interface DescribeLunaClientRequest {
208
+ ClientArn?: string;
209
+
210
+ CertificateFingerprint?: string;
211
+ }
212
+ export interface DescribeLunaClientResponse {
213
+ ClientArn?: string;
214
+
215
+ Certificate?: string;
216
+
217
+ CertificateFingerprint?: string;
218
+
219
+ LastModifiedTimestamp?: string;
220
+
221
+ Label?: string;
222
+ }
223
+ export interface GetConfigRequest {
224
+ ClientArn: string | undefined;
225
+
226
+ ClientVersion: ClientVersion | string | undefined;
227
+
228
+ HapgList: string[] | undefined;
229
+ }
230
+ export interface GetConfigResponse {
231
+ ConfigType?: string;
232
+
233
+ ConfigFile?: string;
234
+
235
+ ConfigCred?: string;
236
+ }
237
+
238
+ export interface ListAvailableZonesRequest {}
239
+ export interface ListAvailableZonesResponse {
240
+ AZList?: string[];
241
+ }
242
+ export interface ListHapgsRequest {
243
+ NextToken?: string;
244
+ }
245
+ export interface ListHapgsResponse {
246
+ HapgList: string[] | undefined;
247
+
248
+ NextToken?: string;
249
+ }
250
+ export interface ListHsmsRequest {
251
+ NextToken?: string;
252
+ }
253
+
254
+ export interface ListHsmsResponse {
255
+ HsmList?: string[];
256
+
257
+ NextToken?: string;
258
+ }
259
+ export interface ListLunaClientsRequest {
260
+ NextToken?: string;
261
+ }
262
+ export interface ListLunaClientsResponse {
263
+ ClientList: string[] | undefined;
264
+
265
+ NextToken?: string;
266
+ }
267
+ export interface ListTagsForResourceRequest {
268
+ ResourceArn: string | undefined;
269
+ }
270
+ export interface ListTagsForResourceResponse {
271
+ TagList: Tag[] | undefined;
272
+ }
273
+ export interface ModifyHapgRequest {
274
+ HapgArn: string | undefined;
275
+
276
+ Label?: string;
277
+
278
+ PartitionSerialList?: string[];
279
+ }
280
+ export interface ModifyHapgResponse {
281
+ HapgArn?: string;
282
+ }
283
+
284
+ export interface ModifyHsmRequest {
285
+ HsmArn: string | undefined;
286
+
287
+ SubnetId?: string;
288
+
289
+ EniIp?: string;
290
+
291
+ IamRoleArn?: string;
292
+
293
+ ExternalId?: string;
294
+
295
+ SyslogIp?: string;
296
+ }
297
+
298
+ export interface ModifyHsmResponse {
299
+ HsmArn?: string;
300
+ }
301
+ export interface ModifyLunaClientRequest {
302
+ ClientArn: string | undefined;
303
+
304
+ Certificate: string | undefined;
305
+ }
306
+ export interface ModifyLunaClientResponse {
307
+ ClientArn?: string;
308
+ }
309
+ export interface RemoveTagsFromResourceRequest {
310
+ ResourceArn: string | undefined;
311
+
312
+ TagKeyList: string[] | undefined;
313
+ }
314
+ export interface RemoveTagsFromResourceResponse {
315
+ Status: string | undefined;
316
+ }
317
+
318
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
319
+
320
+ export declare const AddTagsToResourceRequestFilterSensitiveLog: (
321
+ obj: AddTagsToResourceRequest
322
+ ) => any;
323
+
324
+ export declare const AddTagsToResourceResponseFilterSensitiveLog: (
325
+ obj: AddTagsToResourceResponse
326
+ ) => any;
327
+
328
+ export declare const CreateHapgRequestFilterSensitiveLog: (
329
+ obj: CreateHapgRequest
330
+ ) => any;
331
+
332
+ export declare const CreateHapgResponseFilterSensitiveLog: (
333
+ obj: CreateHapgResponse
334
+ ) => any;
335
+
336
+ export declare const CreateHsmRequestFilterSensitiveLog: (
337
+ obj: CreateHsmRequest
338
+ ) => any;
339
+
340
+ export declare const CreateHsmResponseFilterSensitiveLog: (
341
+ obj: CreateHsmResponse
342
+ ) => any;
343
+
344
+ export declare const CreateLunaClientRequestFilterSensitiveLog: (
345
+ obj: CreateLunaClientRequest
346
+ ) => any;
347
+
348
+ export declare const CreateLunaClientResponseFilterSensitiveLog: (
349
+ obj: CreateLunaClientResponse
350
+ ) => any;
351
+
352
+ export declare const DeleteHapgRequestFilterSensitiveLog: (
353
+ obj: DeleteHapgRequest
354
+ ) => any;
355
+
356
+ export declare const DeleteHapgResponseFilterSensitiveLog: (
357
+ obj: DeleteHapgResponse
358
+ ) => any;
359
+
360
+ export declare const DeleteHsmRequestFilterSensitiveLog: (
361
+ obj: DeleteHsmRequest
362
+ ) => any;
363
+
364
+ export declare const DeleteHsmResponseFilterSensitiveLog: (
365
+ obj: DeleteHsmResponse
366
+ ) => any;
367
+
368
+ export declare const DeleteLunaClientRequestFilterSensitiveLog: (
369
+ obj: DeleteLunaClientRequest
370
+ ) => any;
371
+
372
+ export declare const DeleteLunaClientResponseFilterSensitiveLog: (
373
+ obj: DeleteLunaClientResponse
374
+ ) => any;
375
+
376
+ export declare const DescribeHapgRequestFilterSensitiveLog: (
377
+ obj: DescribeHapgRequest
378
+ ) => any;
379
+
380
+ export declare const DescribeHapgResponseFilterSensitiveLog: (
381
+ obj: DescribeHapgResponse
382
+ ) => any;
383
+
384
+ export declare const DescribeHsmRequestFilterSensitiveLog: (
385
+ obj: DescribeHsmRequest
386
+ ) => any;
387
+
388
+ export declare const DescribeHsmResponseFilterSensitiveLog: (
389
+ obj: DescribeHsmResponse
390
+ ) => any;
391
+
392
+ export declare const DescribeLunaClientRequestFilterSensitiveLog: (
393
+ obj: DescribeLunaClientRequest
394
+ ) => any;
395
+
396
+ export declare const DescribeLunaClientResponseFilterSensitiveLog: (
397
+ obj: DescribeLunaClientResponse
398
+ ) => any;
399
+
400
+ export declare const GetConfigRequestFilterSensitiveLog: (
401
+ obj: GetConfigRequest
402
+ ) => any;
403
+
404
+ export declare const GetConfigResponseFilterSensitiveLog: (
405
+ obj: GetConfigResponse
406
+ ) => any;
407
+
408
+ export declare const ListAvailableZonesRequestFilterSensitiveLog: (
409
+ obj: ListAvailableZonesRequest
410
+ ) => any;
411
+
412
+ export declare const ListAvailableZonesResponseFilterSensitiveLog: (
413
+ obj: ListAvailableZonesResponse
414
+ ) => any;
415
+
416
+ export declare const ListHapgsRequestFilterSensitiveLog: (
417
+ obj: ListHapgsRequest
418
+ ) => any;
419
+
420
+ export declare const ListHapgsResponseFilterSensitiveLog: (
421
+ obj: ListHapgsResponse
422
+ ) => any;
423
+
424
+ export declare const ListHsmsRequestFilterSensitiveLog: (
425
+ obj: ListHsmsRequest
426
+ ) => any;
427
+
428
+ export declare const ListHsmsResponseFilterSensitiveLog: (
429
+ obj: ListHsmsResponse
430
+ ) => any;
431
+
432
+ export declare const ListLunaClientsRequestFilterSensitiveLog: (
433
+ obj: ListLunaClientsRequest
434
+ ) => any;
435
+
436
+ export declare const ListLunaClientsResponseFilterSensitiveLog: (
437
+ obj: ListLunaClientsResponse
438
+ ) => any;
439
+
440
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
441
+ obj: ListTagsForResourceRequest
442
+ ) => any;
443
+
444
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
445
+ obj: ListTagsForResourceResponse
446
+ ) => any;
447
+
448
+ export declare const ModifyHapgRequestFilterSensitiveLog: (
449
+ obj: ModifyHapgRequest
450
+ ) => any;
451
+
452
+ export declare const ModifyHapgResponseFilterSensitiveLog: (
453
+ obj: ModifyHapgResponse
454
+ ) => any;
455
+
456
+ export declare const ModifyHsmRequestFilterSensitiveLog: (
457
+ obj: ModifyHsmRequest
458
+ ) => any;
459
+
460
+ export declare const ModifyHsmResponseFilterSensitiveLog: (
461
+ obj: ModifyHsmResponse
462
+ ) => any;
463
+
464
+ export declare const ModifyLunaClientRequestFilterSensitiveLog: (
465
+ obj: ModifyLunaClientRequest
466
+ ) => any;
467
+
468
+ export declare const ModifyLunaClientResponseFilterSensitiveLog: (
469
+ obj: ModifyLunaClientResponse
470
+ ) => any;
471
+
472
+ export declare const RemoveTagsFromResourceRequestFilterSensitiveLog: (
473
+ obj: RemoveTagsFromResourceRequest
474
+ ) => any;
475
+
476
+ export declare const RemoveTagsFromResourceResponseFilterSensitiveLog: (
477
+ obj: RemoveTagsFromResourceResponse
478
+ ) => any;