@aws-sdk/client-cloudhsm-v2 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/CloudHSMV2.d.ts +259 -80
- package/dist-types/ts3.4/CloudHSMV2Client.d.ts +194 -88
- package/dist-types/ts3.4/commands/CopyBackupToRegionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/InitializeClusterCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ModifyBackupAttributesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ModifyClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RestoreBackupCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/CloudHSMV2ServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +365 -441
- package/dist-types/ts3.4/pagination/DescribeBackupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeClustersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,441 +1,365 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { CloudHSMV2ServiceException as __BaseException } from "./CloudHSMV2ServiceException";
|
|
3
|
-
export declare enum BackupState {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
export declare
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
export declare class
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
export
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
export
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
}
|
|
252
|
-
export interface
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
export
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
export
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
export
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
export
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
export
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
export interface UntagResourceResponse {
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
370
|
-
|
|
371
|
-
export declare const BackupFilterSensitiveLog: (obj: Backup) => any;
|
|
372
|
-
|
|
373
|
-
export declare const BackupRetentionPolicyFilterSensitiveLog: (obj: BackupRetentionPolicy) => any;
|
|
374
|
-
|
|
375
|
-
export declare const CopyBackupToRegionRequestFilterSensitiveLog: (obj: CopyBackupToRegionRequest) => any;
|
|
376
|
-
|
|
377
|
-
export declare const DestinationBackupFilterSensitiveLog: (obj: DestinationBackup) => any;
|
|
378
|
-
|
|
379
|
-
export declare const CopyBackupToRegionResponseFilterSensitiveLog: (obj: CopyBackupToRegionResponse) => any;
|
|
380
|
-
|
|
381
|
-
export declare const CreateClusterRequestFilterSensitiveLog: (obj: CreateClusterRequest) => any;
|
|
382
|
-
|
|
383
|
-
export declare const CertificatesFilterSensitiveLog: (obj: Certificates) => any;
|
|
384
|
-
|
|
385
|
-
export declare const HsmFilterSensitiveLog: (obj: Hsm) => any;
|
|
386
|
-
|
|
387
|
-
export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
|
|
388
|
-
|
|
389
|
-
export declare const CreateClusterResponseFilterSensitiveLog: (obj: CreateClusterResponse) => any;
|
|
390
|
-
|
|
391
|
-
export declare const CreateHsmRequestFilterSensitiveLog: (obj: CreateHsmRequest) => any;
|
|
392
|
-
|
|
393
|
-
export declare const CreateHsmResponseFilterSensitiveLog: (obj: CreateHsmResponse) => any;
|
|
394
|
-
|
|
395
|
-
export declare const DeleteBackupRequestFilterSensitiveLog: (obj: DeleteBackupRequest) => any;
|
|
396
|
-
|
|
397
|
-
export declare const DeleteBackupResponseFilterSensitiveLog: (obj: DeleteBackupResponse) => any;
|
|
398
|
-
|
|
399
|
-
export declare const DeleteClusterRequestFilterSensitiveLog: (obj: DeleteClusterRequest) => any;
|
|
400
|
-
|
|
401
|
-
export declare const DeleteClusterResponseFilterSensitiveLog: (obj: DeleteClusterResponse) => any;
|
|
402
|
-
|
|
403
|
-
export declare const DeleteHsmRequestFilterSensitiveLog: (obj: DeleteHsmRequest) => any;
|
|
404
|
-
|
|
405
|
-
export declare const DeleteHsmResponseFilterSensitiveLog: (obj: DeleteHsmResponse) => any;
|
|
406
|
-
|
|
407
|
-
export declare const DescribeBackupsRequestFilterSensitiveLog: (obj: DescribeBackupsRequest) => any;
|
|
408
|
-
|
|
409
|
-
export declare const DescribeBackupsResponseFilterSensitiveLog: (obj: DescribeBackupsResponse) => any;
|
|
410
|
-
|
|
411
|
-
export declare const DescribeClustersRequestFilterSensitiveLog: (obj: DescribeClustersRequest) => any;
|
|
412
|
-
|
|
413
|
-
export declare const DescribeClustersResponseFilterSensitiveLog: (obj: DescribeClustersResponse) => any;
|
|
414
|
-
|
|
415
|
-
export declare const InitializeClusterRequestFilterSensitiveLog: (obj: InitializeClusterRequest) => any;
|
|
416
|
-
|
|
417
|
-
export declare const InitializeClusterResponseFilterSensitiveLog: (obj: InitializeClusterResponse) => any;
|
|
418
|
-
|
|
419
|
-
export declare const ListTagsRequestFilterSensitiveLog: (obj: ListTagsRequest) => any;
|
|
420
|
-
|
|
421
|
-
export declare const ListTagsResponseFilterSensitiveLog: (obj: ListTagsResponse) => any;
|
|
422
|
-
|
|
423
|
-
export declare const ModifyBackupAttributesRequestFilterSensitiveLog: (obj: ModifyBackupAttributesRequest) => any;
|
|
424
|
-
|
|
425
|
-
export declare const ModifyBackupAttributesResponseFilterSensitiveLog: (obj: ModifyBackupAttributesResponse) => any;
|
|
426
|
-
|
|
427
|
-
export declare const ModifyClusterRequestFilterSensitiveLog: (obj: ModifyClusterRequest) => any;
|
|
428
|
-
|
|
429
|
-
export declare const ModifyClusterResponseFilterSensitiveLog: (obj: ModifyClusterResponse) => any;
|
|
430
|
-
|
|
431
|
-
export declare const RestoreBackupRequestFilterSensitiveLog: (obj: RestoreBackupRequest) => any;
|
|
432
|
-
|
|
433
|
-
export declare const RestoreBackupResponseFilterSensitiveLog: (obj: RestoreBackupResponse) => any;
|
|
434
|
-
|
|
435
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
436
|
-
|
|
437
|
-
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
438
|
-
|
|
439
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
440
|
-
|
|
441
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CloudHSMV2ServiceException as __BaseException } from "./CloudHSMV2ServiceException";
|
|
3
|
+
export declare enum BackupState {
|
|
4
|
+
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
5
|
+
DELETED = "DELETED",
|
|
6
|
+
PENDING_DELETION = "PENDING_DELETION",
|
|
7
|
+
READY = "READY",
|
|
8
|
+
}
|
|
9
|
+
export interface Tag {
|
|
10
|
+
Key: string | undefined;
|
|
11
|
+
Value: string | undefined;
|
|
12
|
+
}
|
|
13
|
+
export interface Backup {
|
|
14
|
+
BackupId: string | undefined;
|
|
15
|
+
BackupState?: BackupState | string;
|
|
16
|
+
ClusterId?: string;
|
|
17
|
+
CreateTimestamp?: Date;
|
|
18
|
+
CopyTimestamp?: Date;
|
|
19
|
+
NeverExpires?: boolean;
|
|
20
|
+
SourceRegion?: string;
|
|
21
|
+
SourceBackup?: string;
|
|
22
|
+
SourceCluster?: string;
|
|
23
|
+
DeleteTimestamp?: Date;
|
|
24
|
+
TagList?: Tag[];
|
|
25
|
+
}
|
|
26
|
+
export declare enum BackupPolicy {
|
|
27
|
+
DEFAULT = "DEFAULT",
|
|
28
|
+
}
|
|
29
|
+
export declare enum BackupRetentionType {
|
|
30
|
+
DAYS = "DAYS",
|
|
31
|
+
}
|
|
32
|
+
export interface BackupRetentionPolicy {
|
|
33
|
+
Type?: BackupRetentionType | string;
|
|
34
|
+
Value?: string;
|
|
35
|
+
}
|
|
36
|
+
export declare class CloudHsmAccessDeniedException extends __BaseException {
|
|
37
|
+
readonly name: "CloudHsmAccessDeniedException";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
Message?: string;
|
|
40
|
+
constructor(
|
|
41
|
+
opts: __ExceptionOptionType<CloudHsmAccessDeniedException, __BaseException>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
export declare class CloudHsmInternalFailureException extends __BaseException {
|
|
45
|
+
readonly name: "CloudHsmInternalFailureException";
|
|
46
|
+
readonly $fault: "server";
|
|
47
|
+
Message?: string;
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<
|
|
50
|
+
CloudHsmInternalFailureException,
|
|
51
|
+
__BaseException
|
|
52
|
+
>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
export declare class CloudHsmInvalidRequestException extends __BaseException {
|
|
56
|
+
readonly name: "CloudHsmInvalidRequestException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
Message?: string;
|
|
59
|
+
constructor(
|
|
60
|
+
opts: __ExceptionOptionType<
|
|
61
|
+
CloudHsmInvalidRequestException,
|
|
62
|
+
__BaseException
|
|
63
|
+
>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
66
|
+
export declare class CloudHsmResourceNotFoundException extends __BaseException {
|
|
67
|
+
readonly name: "CloudHsmResourceNotFoundException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
Message?: string;
|
|
70
|
+
constructor(
|
|
71
|
+
opts: __ExceptionOptionType<
|
|
72
|
+
CloudHsmResourceNotFoundException,
|
|
73
|
+
__BaseException
|
|
74
|
+
>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
export declare class CloudHsmServiceException extends __BaseException {
|
|
78
|
+
readonly name: "CloudHsmServiceException";
|
|
79
|
+
readonly $fault: "client";
|
|
80
|
+
Message?: string;
|
|
81
|
+
constructor(
|
|
82
|
+
opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>
|
|
83
|
+
);
|
|
84
|
+
}
|
|
85
|
+
export declare class CloudHsmTagException extends __BaseException {
|
|
86
|
+
readonly name: "CloudHsmTagException";
|
|
87
|
+
readonly $fault: "client";
|
|
88
|
+
Message?: string;
|
|
89
|
+
constructor(
|
|
90
|
+
opts: __ExceptionOptionType<CloudHsmTagException, __BaseException>
|
|
91
|
+
);
|
|
92
|
+
}
|
|
93
|
+
export interface CopyBackupToRegionRequest {
|
|
94
|
+
DestinationRegion: string | undefined;
|
|
95
|
+
BackupId: string | undefined;
|
|
96
|
+
TagList?: Tag[];
|
|
97
|
+
}
|
|
98
|
+
export interface DestinationBackup {
|
|
99
|
+
CreateTimestamp?: Date;
|
|
100
|
+
SourceRegion?: string;
|
|
101
|
+
SourceBackup?: string;
|
|
102
|
+
SourceCluster?: string;
|
|
103
|
+
}
|
|
104
|
+
export interface CopyBackupToRegionResponse {
|
|
105
|
+
DestinationBackup?: DestinationBackup;
|
|
106
|
+
}
|
|
107
|
+
export interface CreateClusterRequest {
|
|
108
|
+
BackupRetentionPolicy?: BackupRetentionPolicy;
|
|
109
|
+
HsmType: string | undefined;
|
|
110
|
+
SourceBackupId?: string;
|
|
111
|
+
SubnetIds: string[] | undefined;
|
|
112
|
+
TagList?: Tag[];
|
|
113
|
+
}
|
|
114
|
+
export interface Certificates {
|
|
115
|
+
ClusterCsr?: string;
|
|
116
|
+
HsmCertificate?: string;
|
|
117
|
+
AwsHardwareCertificate?: string;
|
|
118
|
+
ManufacturerHardwareCertificate?: string;
|
|
119
|
+
ClusterCertificate?: string;
|
|
120
|
+
}
|
|
121
|
+
export declare enum HsmState {
|
|
122
|
+
ACTIVE = "ACTIVE",
|
|
123
|
+
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
124
|
+
DEGRADED = "DEGRADED",
|
|
125
|
+
DELETED = "DELETED",
|
|
126
|
+
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
|
|
127
|
+
}
|
|
128
|
+
export interface Hsm {
|
|
129
|
+
AvailabilityZone?: string;
|
|
130
|
+
ClusterId?: string;
|
|
131
|
+
SubnetId?: string;
|
|
132
|
+
EniId?: string;
|
|
133
|
+
EniIp?: string;
|
|
134
|
+
HsmId: string | undefined;
|
|
135
|
+
State?: HsmState | string;
|
|
136
|
+
StateMessage?: string;
|
|
137
|
+
}
|
|
138
|
+
export declare enum ClusterState {
|
|
139
|
+
ACTIVE = "ACTIVE",
|
|
140
|
+
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
141
|
+
DEGRADED = "DEGRADED",
|
|
142
|
+
DELETED = "DELETED",
|
|
143
|
+
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
|
|
144
|
+
INITIALIZED = "INITIALIZED",
|
|
145
|
+
INITIALIZE_IN_PROGRESS = "INITIALIZE_IN_PROGRESS",
|
|
146
|
+
UNINITIALIZED = "UNINITIALIZED",
|
|
147
|
+
UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
|
|
148
|
+
}
|
|
149
|
+
export interface Cluster {
|
|
150
|
+
BackupPolicy?: BackupPolicy | string;
|
|
151
|
+
BackupRetentionPolicy?: BackupRetentionPolicy;
|
|
152
|
+
ClusterId?: string;
|
|
153
|
+
CreateTimestamp?: Date;
|
|
154
|
+
Hsms?: Hsm[];
|
|
155
|
+
HsmType?: string;
|
|
156
|
+
PreCoPassword?: string;
|
|
157
|
+
SecurityGroup?: string;
|
|
158
|
+
SourceBackupId?: string;
|
|
159
|
+
State?: ClusterState | string;
|
|
160
|
+
StateMessage?: string;
|
|
161
|
+
SubnetMapping?: Record<string, string>;
|
|
162
|
+
VpcId?: string;
|
|
163
|
+
Certificates?: Certificates;
|
|
164
|
+
TagList?: Tag[];
|
|
165
|
+
}
|
|
166
|
+
export interface CreateClusterResponse {
|
|
167
|
+
Cluster?: Cluster;
|
|
168
|
+
}
|
|
169
|
+
export interface CreateHsmRequest {
|
|
170
|
+
ClusterId: string | undefined;
|
|
171
|
+
AvailabilityZone: string | undefined;
|
|
172
|
+
IpAddress?: string;
|
|
173
|
+
}
|
|
174
|
+
export interface CreateHsmResponse {
|
|
175
|
+
Hsm?: Hsm;
|
|
176
|
+
}
|
|
177
|
+
export interface DeleteBackupRequest {
|
|
178
|
+
BackupId: string | undefined;
|
|
179
|
+
}
|
|
180
|
+
export interface DeleteBackupResponse {
|
|
181
|
+
Backup?: Backup;
|
|
182
|
+
}
|
|
183
|
+
export interface DeleteClusterRequest {
|
|
184
|
+
ClusterId: string | undefined;
|
|
185
|
+
}
|
|
186
|
+
export interface DeleteClusterResponse {
|
|
187
|
+
Cluster?: Cluster;
|
|
188
|
+
}
|
|
189
|
+
export interface DeleteHsmRequest {
|
|
190
|
+
ClusterId: string | undefined;
|
|
191
|
+
HsmId?: string;
|
|
192
|
+
EniId?: string;
|
|
193
|
+
EniIp?: string;
|
|
194
|
+
}
|
|
195
|
+
export interface DeleteHsmResponse {
|
|
196
|
+
HsmId?: string;
|
|
197
|
+
}
|
|
198
|
+
export interface DescribeBackupsRequest {
|
|
199
|
+
NextToken?: string;
|
|
200
|
+
MaxResults?: number;
|
|
201
|
+
Filters?: Record<string, string[]>;
|
|
202
|
+
SortAscending?: boolean;
|
|
203
|
+
}
|
|
204
|
+
export interface DescribeBackupsResponse {
|
|
205
|
+
Backups?: Backup[];
|
|
206
|
+
NextToken?: string;
|
|
207
|
+
}
|
|
208
|
+
export interface DescribeClustersRequest {
|
|
209
|
+
Filters?: Record<string, string[]>;
|
|
210
|
+
NextToken?: string;
|
|
211
|
+
MaxResults?: number;
|
|
212
|
+
}
|
|
213
|
+
export interface DescribeClustersResponse {
|
|
214
|
+
Clusters?: Cluster[];
|
|
215
|
+
NextToken?: string;
|
|
216
|
+
}
|
|
217
|
+
export interface InitializeClusterRequest {
|
|
218
|
+
ClusterId: string | undefined;
|
|
219
|
+
SignedCert: string | undefined;
|
|
220
|
+
TrustAnchor: string | undefined;
|
|
221
|
+
}
|
|
222
|
+
export interface InitializeClusterResponse {
|
|
223
|
+
State?: ClusterState | string;
|
|
224
|
+
StateMessage?: string;
|
|
225
|
+
}
|
|
226
|
+
export interface ListTagsRequest {
|
|
227
|
+
ResourceId: string | undefined;
|
|
228
|
+
NextToken?: string;
|
|
229
|
+
MaxResults?: number;
|
|
230
|
+
}
|
|
231
|
+
export interface ListTagsResponse {
|
|
232
|
+
TagList: Tag[] | undefined;
|
|
233
|
+
NextToken?: string;
|
|
234
|
+
}
|
|
235
|
+
export interface ModifyBackupAttributesRequest {
|
|
236
|
+
BackupId: string | undefined;
|
|
237
|
+
NeverExpires: boolean | undefined;
|
|
238
|
+
}
|
|
239
|
+
export interface ModifyBackupAttributesResponse {
|
|
240
|
+
Backup?: Backup;
|
|
241
|
+
}
|
|
242
|
+
export interface ModifyClusterRequest {
|
|
243
|
+
BackupRetentionPolicy: BackupRetentionPolicy | undefined;
|
|
244
|
+
ClusterId: string | undefined;
|
|
245
|
+
}
|
|
246
|
+
export interface ModifyClusterResponse {
|
|
247
|
+
Cluster?: Cluster;
|
|
248
|
+
}
|
|
249
|
+
export interface RestoreBackupRequest {
|
|
250
|
+
BackupId: string | undefined;
|
|
251
|
+
}
|
|
252
|
+
export interface RestoreBackupResponse {
|
|
253
|
+
Backup?: Backup;
|
|
254
|
+
}
|
|
255
|
+
export interface TagResourceRequest {
|
|
256
|
+
ResourceId: string | undefined;
|
|
257
|
+
TagList: Tag[] | undefined;
|
|
258
|
+
}
|
|
259
|
+
export interface TagResourceResponse {}
|
|
260
|
+
export interface UntagResourceRequest {
|
|
261
|
+
ResourceId: string | undefined;
|
|
262
|
+
TagKeyList: string[] | undefined;
|
|
263
|
+
}
|
|
264
|
+
export interface UntagResourceResponse {}
|
|
265
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
266
|
+
export declare const BackupFilterSensitiveLog: (obj: Backup) => any;
|
|
267
|
+
export declare const BackupRetentionPolicyFilterSensitiveLog: (
|
|
268
|
+
obj: BackupRetentionPolicy
|
|
269
|
+
) => any;
|
|
270
|
+
export declare const CopyBackupToRegionRequestFilterSensitiveLog: (
|
|
271
|
+
obj: CopyBackupToRegionRequest
|
|
272
|
+
) => any;
|
|
273
|
+
export declare const DestinationBackupFilterSensitiveLog: (
|
|
274
|
+
obj: DestinationBackup
|
|
275
|
+
) => any;
|
|
276
|
+
export declare const CopyBackupToRegionResponseFilterSensitiveLog: (
|
|
277
|
+
obj: CopyBackupToRegionResponse
|
|
278
|
+
) => any;
|
|
279
|
+
export declare const CreateClusterRequestFilterSensitiveLog: (
|
|
280
|
+
obj: CreateClusterRequest
|
|
281
|
+
) => any;
|
|
282
|
+
export declare const CertificatesFilterSensitiveLog: (obj: Certificates) => any;
|
|
283
|
+
export declare const HsmFilterSensitiveLog: (obj: Hsm) => any;
|
|
284
|
+
export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
|
|
285
|
+
export declare const CreateClusterResponseFilterSensitiveLog: (
|
|
286
|
+
obj: CreateClusterResponse
|
|
287
|
+
) => any;
|
|
288
|
+
export declare const CreateHsmRequestFilterSensitiveLog: (
|
|
289
|
+
obj: CreateHsmRequest
|
|
290
|
+
) => any;
|
|
291
|
+
export declare const CreateHsmResponseFilterSensitiveLog: (
|
|
292
|
+
obj: CreateHsmResponse
|
|
293
|
+
) => any;
|
|
294
|
+
export declare const DeleteBackupRequestFilterSensitiveLog: (
|
|
295
|
+
obj: DeleteBackupRequest
|
|
296
|
+
) => any;
|
|
297
|
+
export declare const DeleteBackupResponseFilterSensitiveLog: (
|
|
298
|
+
obj: DeleteBackupResponse
|
|
299
|
+
) => any;
|
|
300
|
+
export declare const DeleteClusterRequestFilterSensitiveLog: (
|
|
301
|
+
obj: DeleteClusterRequest
|
|
302
|
+
) => any;
|
|
303
|
+
export declare const DeleteClusterResponseFilterSensitiveLog: (
|
|
304
|
+
obj: DeleteClusterResponse
|
|
305
|
+
) => any;
|
|
306
|
+
export declare const DeleteHsmRequestFilterSensitiveLog: (
|
|
307
|
+
obj: DeleteHsmRequest
|
|
308
|
+
) => any;
|
|
309
|
+
export declare const DeleteHsmResponseFilterSensitiveLog: (
|
|
310
|
+
obj: DeleteHsmResponse
|
|
311
|
+
) => any;
|
|
312
|
+
export declare const DescribeBackupsRequestFilterSensitiveLog: (
|
|
313
|
+
obj: DescribeBackupsRequest
|
|
314
|
+
) => any;
|
|
315
|
+
export declare const DescribeBackupsResponseFilterSensitiveLog: (
|
|
316
|
+
obj: DescribeBackupsResponse
|
|
317
|
+
) => any;
|
|
318
|
+
export declare const DescribeClustersRequestFilterSensitiveLog: (
|
|
319
|
+
obj: DescribeClustersRequest
|
|
320
|
+
) => any;
|
|
321
|
+
export declare const DescribeClustersResponseFilterSensitiveLog: (
|
|
322
|
+
obj: DescribeClustersResponse
|
|
323
|
+
) => any;
|
|
324
|
+
export declare const InitializeClusterRequestFilterSensitiveLog: (
|
|
325
|
+
obj: InitializeClusterRequest
|
|
326
|
+
) => any;
|
|
327
|
+
export declare const InitializeClusterResponseFilterSensitiveLog: (
|
|
328
|
+
obj: InitializeClusterResponse
|
|
329
|
+
) => any;
|
|
330
|
+
export declare const ListTagsRequestFilterSensitiveLog: (
|
|
331
|
+
obj: ListTagsRequest
|
|
332
|
+
) => any;
|
|
333
|
+
export declare const ListTagsResponseFilterSensitiveLog: (
|
|
334
|
+
obj: ListTagsResponse
|
|
335
|
+
) => any;
|
|
336
|
+
export declare const ModifyBackupAttributesRequestFilterSensitiveLog: (
|
|
337
|
+
obj: ModifyBackupAttributesRequest
|
|
338
|
+
) => any;
|
|
339
|
+
export declare const ModifyBackupAttributesResponseFilterSensitiveLog: (
|
|
340
|
+
obj: ModifyBackupAttributesResponse
|
|
341
|
+
) => any;
|
|
342
|
+
export declare const ModifyClusterRequestFilterSensitiveLog: (
|
|
343
|
+
obj: ModifyClusterRequest
|
|
344
|
+
) => any;
|
|
345
|
+
export declare const ModifyClusterResponseFilterSensitiveLog: (
|
|
346
|
+
obj: ModifyClusterResponse
|
|
347
|
+
) => any;
|
|
348
|
+
export declare const RestoreBackupRequestFilterSensitiveLog: (
|
|
349
|
+
obj: RestoreBackupRequest
|
|
350
|
+
) => any;
|
|
351
|
+
export declare const RestoreBackupResponseFilterSensitiveLog: (
|
|
352
|
+
obj: RestoreBackupResponse
|
|
353
|
+
) => any;
|
|
354
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
355
|
+
obj: TagResourceRequest
|
|
356
|
+
) => any;
|
|
357
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
358
|
+
obj: TagResourceResponse
|
|
359
|
+
) => any;
|
|
360
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
361
|
+
obj: UntagResourceRequest
|
|
362
|
+
) => any;
|
|
363
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
364
|
+
obj: UntagResourceResponse
|
|
365
|
+
) => any;
|