@aws-sdk/client-cloudhsm-v2 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/CopyBackupToRegionCommand.js +2 -3
- package/dist-cjs/commands/CreateClusterCommand.js +2 -3
- package/dist-cjs/commands/CreateHsmCommand.js +2 -3
- package/dist-cjs/commands/DeleteBackupCommand.js +2 -3
- package/dist-cjs/commands/DeleteClusterCommand.js +2 -3
- package/dist-cjs/commands/DeleteHsmCommand.js +2 -3
- package/dist-cjs/commands/DescribeBackupsCommand.js +2 -3
- package/dist-cjs/commands/DescribeClustersCommand.js +2 -3
- package/dist-cjs/commands/InitializeClusterCommand.js +2 -3
- package/dist-cjs/commands/ListTagsCommand.js +2 -3
- package/dist-cjs/commands/ModifyBackupAttributesCommand.js +2 -3
- package/dist-cjs/commands/ModifyClusterCommand.js +2 -3
- package/dist-cjs/commands/RestoreBackupCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -149
- package/dist-es/commands/CopyBackupToRegionCommand.js +2 -3
- package/dist-es/commands/CreateClusterCommand.js +2 -3
- package/dist-es/commands/CreateHsmCommand.js +2 -3
- package/dist-es/commands/DeleteBackupCommand.js +2 -3
- package/dist-es/commands/DeleteClusterCommand.js +2 -3
- package/dist-es/commands/DeleteHsmCommand.js +2 -3
- package/dist-es/commands/DescribeBackupsCommand.js +2 -3
- package/dist-es/commands/DescribeClustersCommand.js +2 -3
- package/dist-es/commands/InitializeClusterCommand.js +2 -3
- package/dist-es/commands/ListTagsCommand.js +2 -3
- package/dist-es/commands/ModifyBackupAttributesCommand.js +2 -3
- package/dist-es/commands/ModifyClusterCommand.js +2 -3
- package/dist-es/commands/RestoreBackupCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -111
- package/dist-types/CloudHSMV2.d.ts +16 -0
- package/dist-types/CloudHSMV2Client.d.ts +24 -4
- package/dist-types/commands/CopyBackupToRegionCommand.d.ts +16 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
- package/dist-types/commands/CreateHsmCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHsmCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBackupsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +16 -0
- package/dist-types/commands/InitializeClusterCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsCommand.d.ts +16 -0
- package/dist-types/commands/ModifyBackupAttributesCommand.d.ts +16 -0
- package/dist-types/commands/ModifyClusterCommand.d.ts +16 -0
- package/dist-types/commands/RestoreBackupCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/CloudHSMV2ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +118 -148
- package/dist-types/pagination/DescribeBackupsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeClustersPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListTagsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -101
- package/package.json +4 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CloudHSMV2ServiceException as __BaseException } from "./CloudHSMV2ServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export declare enum BackupState {
|
|
4
7
|
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
5
8
|
DELETED = "DELETED",
|
|
@@ -7,6 +10,7 @@ export declare enum BackupState {
|
|
|
7
10
|
READY = "READY"
|
|
8
11
|
}
|
|
9
12
|
/**
|
|
13
|
+
* @public
|
|
10
14
|
* <p>Contains a tag. A tag is a key-value pair.</p>
|
|
11
15
|
*/
|
|
12
16
|
export interface Tag {
|
|
@@ -20,6 +24,7 @@ export interface Tag {
|
|
|
20
24
|
Value: string | undefined;
|
|
21
25
|
}
|
|
22
26
|
/**
|
|
27
|
+
* @public
|
|
23
28
|
* <p>Contains information about a backup of an AWS CloudHSM cluster. All backup objects
|
|
24
29
|
* contain the <code>BackupId</code>, <code>BackupState</code>, <code>ClusterId</code>, and
|
|
25
30
|
* <code>CreateTimestamp</code> parameters. Backups that were copied into a destination region
|
|
@@ -77,13 +82,20 @@ export interface Backup {
|
|
|
77
82
|
*/
|
|
78
83
|
TagList?: Tag[];
|
|
79
84
|
}
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
80
88
|
export declare enum BackupPolicy {
|
|
81
89
|
DEFAULT = "DEFAULT"
|
|
82
90
|
}
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
83
94
|
export declare enum BackupRetentionType {
|
|
84
95
|
DAYS = "DAYS"
|
|
85
96
|
}
|
|
86
97
|
/**
|
|
98
|
+
* @public
|
|
87
99
|
* <p>A policy that defines the number of days to retain backups.</p>
|
|
88
100
|
*/
|
|
89
101
|
export interface BackupRetentionPolicy {
|
|
@@ -98,6 +110,7 @@ export interface BackupRetentionPolicy {
|
|
|
98
110
|
Value?: string;
|
|
99
111
|
}
|
|
100
112
|
/**
|
|
113
|
+
* @public
|
|
101
114
|
* <p>The request was rejected because the requester does not have permission to perform the
|
|
102
115
|
* requested operation.</p>
|
|
103
116
|
*/
|
|
@@ -111,6 +124,7 @@ export declare class CloudHsmAccessDeniedException extends __BaseException {
|
|
|
111
124
|
constructor(opts: __ExceptionOptionType<CloudHsmAccessDeniedException, __BaseException>);
|
|
112
125
|
}
|
|
113
126
|
/**
|
|
127
|
+
* @public
|
|
114
128
|
* <p>The request was rejected because of an AWS CloudHSM internal failure. The request can
|
|
115
129
|
* be retried.</p>
|
|
116
130
|
*/
|
|
@@ -124,6 +138,7 @@ export declare class CloudHsmInternalFailureException extends __BaseException {
|
|
|
124
138
|
constructor(opts: __ExceptionOptionType<CloudHsmInternalFailureException, __BaseException>);
|
|
125
139
|
}
|
|
126
140
|
/**
|
|
141
|
+
* @public
|
|
127
142
|
* <p>The request was rejected because it is not a valid request.</p>
|
|
128
143
|
*/
|
|
129
144
|
export declare class CloudHsmInvalidRequestException extends __BaseException {
|
|
@@ -136,6 +151,7 @@ export declare class CloudHsmInvalidRequestException extends __BaseException {
|
|
|
136
151
|
constructor(opts: __ExceptionOptionType<CloudHsmInvalidRequestException, __BaseException>);
|
|
137
152
|
}
|
|
138
153
|
/**
|
|
154
|
+
* @public
|
|
139
155
|
* <p>The request was rejected because it refers to a resource that cannot be
|
|
140
156
|
* found.</p>
|
|
141
157
|
*/
|
|
@@ -149,6 +165,7 @@ export declare class CloudHsmResourceNotFoundException extends __BaseException {
|
|
|
149
165
|
constructor(opts: __ExceptionOptionType<CloudHsmResourceNotFoundException, __BaseException>);
|
|
150
166
|
}
|
|
151
167
|
/**
|
|
168
|
+
* @public
|
|
152
169
|
* <p>The request was rejected because an error occurred.</p>
|
|
153
170
|
*/
|
|
154
171
|
export declare class CloudHsmServiceException extends __BaseException {
|
|
@@ -161,6 +178,7 @@ export declare class CloudHsmServiceException extends __BaseException {
|
|
|
161
178
|
constructor(opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>);
|
|
162
179
|
}
|
|
163
180
|
/**
|
|
181
|
+
* @public
|
|
164
182
|
* <p>The request was rejected because of a tagging failure. Verify the tag conditions in all applicable policies, and then retry the request.</p>
|
|
165
183
|
*/
|
|
166
184
|
export declare class CloudHsmTagException extends __BaseException {
|
|
@@ -172,6 +190,9 @@ export declare class CloudHsmTagException extends __BaseException {
|
|
|
172
190
|
*/
|
|
173
191
|
constructor(opts: __ExceptionOptionType<CloudHsmTagException, __BaseException>);
|
|
174
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
175
196
|
export interface CopyBackupToRegionRequest {
|
|
176
197
|
/**
|
|
177
198
|
* <p>The AWS region that will contain your copied CloudHSM cluster backup.</p>
|
|
@@ -187,6 +208,7 @@ export interface CopyBackupToRegionRequest {
|
|
|
187
208
|
TagList?: Tag[];
|
|
188
209
|
}
|
|
189
210
|
/**
|
|
211
|
+
* @public
|
|
190
212
|
* <p>Contains information about the backup that will be copied and created by the <a>CopyBackupToRegion</a> operation.</p>
|
|
191
213
|
*/
|
|
192
214
|
export interface DestinationBackup {
|
|
@@ -207,6 +229,9 @@ export interface DestinationBackup {
|
|
|
207
229
|
*/
|
|
208
230
|
SourceCluster?: string;
|
|
209
231
|
}
|
|
232
|
+
/**
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
210
235
|
export interface CopyBackupToRegionResponse {
|
|
211
236
|
/**
|
|
212
237
|
* <p>Information on the backup that will be copied to the destination region, including
|
|
@@ -218,6 +243,9 @@ export interface CopyBackupToRegionResponse {
|
|
|
218
243
|
*/
|
|
219
244
|
DestinationBackup?: DestinationBackup;
|
|
220
245
|
}
|
|
246
|
+
/**
|
|
247
|
+
* @public
|
|
248
|
+
*/
|
|
221
249
|
export interface CreateClusterRequest {
|
|
222
250
|
/**
|
|
223
251
|
* <p>A policy that defines how the service retains backups.</p>
|
|
@@ -253,6 +281,7 @@ export interface CreateClusterRequest {
|
|
|
253
281
|
TagList?: Tag[];
|
|
254
282
|
}
|
|
255
283
|
/**
|
|
284
|
+
* @public
|
|
256
285
|
* <p>Contains one or more certificates or a certificate signing request (CSR).</p>
|
|
257
286
|
*/
|
|
258
287
|
export interface Certificates {
|
|
@@ -279,6 +308,9 @@ export interface Certificates {
|
|
|
279
308
|
*/
|
|
280
309
|
ClusterCertificate?: string;
|
|
281
310
|
}
|
|
311
|
+
/**
|
|
312
|
+
* @public
|
|
313
|
+
*/
|
|
282
314
|
export declare enum HsmState {
|
|
283
315
|
ACTIVE = "ACTIVE",
|
|
284
316
|
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
@@ -287,6 +319,7 @@ export declare enum HsmState {
|
|
|
287
319
|
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS"
|
|
288
320
|
}
|
|
289
321
|
/**
|
|
322
|
+
* @public
|
|
290
323
|
* <p>Contains information about a hardware security module (HSM) in an AWS CloudHSM
|
|
291
324
|
* cluster.</p>
|
|
292
325
|
*/
|
|
@@ -324,6 +357,9 @@ export interface Hsm {
|
|
|
324
357
|
*/
|
|
325
358
|
StateMessage?: string;
|
|
326
359
|
}
|
|
360
|
+
/**
|
|
361
|
+
* @public
|
|
362
|
+
*/
|
|
327
363
|
export declare enum ClusterState {
|
|
328
364
|
ACTIVE = "ACTIVE",
|
|
329
365
|
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
@@ -336,6 +372,7 @@ export declare enum ClusterState {
|
|
|
336
372
|
UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS"
|
|
337
373
|
}
|
|
338
374
|
/**
|
|
375
|
+
* @public
|
|
339
376
|
* <p>Contains information about an AWS CloudHSM cluster.</p>
|
|
340
377
|
*/
|
|
341
378
|
export interface Cluster {
|
|
@@ -402,12 +439,18 @@ export interface Cluster {
|
|
|
402
439
|
*/
|
|
403
440
|
TagList?: Tag[];
|
|
404
441
|
}
|
|
442
|
+
/**
|
|
443
|
+
* @public
|
|
444
|
+
*/
|
|
405
445
|
export interface CreateClusterResponse {
|
|
406
446
|
/**
|
|
407
447
|
* <p>Information about the cluster that was created.</p>
|
|
408
448
|
*/
|
|
409
449
|
Cluster?: Cluster;
|
|
410
450
|
}
|
|
451
|
+
/**
|
|
452
|
+
* @public
|
|
453
|
+
*/
|
|
411
454
|
export interface CreateHsmRequest {
|
|
412
455
|
/**
|
|
413
456
|
* <p>The identifier (ID) of the HSM's cluster. To find the cluster ID, use <a>DescribeClusters</a>.</p>
|
|
@@ -425,24 +468,36 @@ export interface CreateHsmRequest {
|
|
|
425
468
|
*/
|
|
426
469
|
IpAddress?: string;
|
|
427
470
|
}
|
|
471
|
+
/**
|
|
472
|
+
* @public
|
|
473
|
+
*/
|
|
428
474
|
export interface CreateHsmResponse {
|
|
429
475
|
/**
|
|
430
476
|
* <p>Information about the HSM that was created.</p>
|
|
431
477
|
*/
|
|
432
478
|
Hsm?: Hsm;
|
|
433
479
|
}
|
|
480
|
+
/**
|
|
481
|
+
* @public
|
|
482
|
+
*/
|
|
434
483
|
export interface DeleteBackupRequest {
|
|
435
484
|
/**
|
|
436
485
|
* <p>The ID of the backup to be deleted. To find the ID of a backup, use the <a>DescribeBackups</a> operation.</p>
|
|
437
486
|
*/
|
|
438
487
|
BackupId: string | undefined;
|
|
439
488
|
}
|
|
489
|
+
/**
|
|
490
|
+
* @public
|
|
491
|
+
*/
|
|
440
492
|
export interface DeleteBackupResponse {
|
|
441
493
|
/**
|
|
442
494
|
* <p>Information on the <code>Backup</code> object deleted.</p>
|
|
443
495
|
*/
|
|
444
496
|
Backup?: Backup;
|
|
445
497
|
}
|
|
498
|
+
/**
|
|
499
|
+
* @public
|
|
500
|
+
*/
|
|
446
501
|
export interface DeleteClusterRequest {
|
|
447
502
|
/**
|
|
448
503
|
* <p>The identifier (ID) of the cluster that you are deleting. To find the cluster ID, use
|
|
@@ -450,12 +505,18 @@ export interface DeleteClusterRequest {
|
|
|
450
505
|
*/
|
|
451
506
|
ClusterId: string | undefined;
|
|
452
507
|
}
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
*/
|
|
453
511
|
export interface DeleteClusterResponse {
|
|
454
512
|
/**
|
|
455
513
|
* <p>Information about the cluster that was deleted.</p>
|
|
456
514
|
*/
|
|
457
515
|
Cluster?: Cluster;
|
|
458
516
|
}
|
|
517
|
+
/**
|
|
518
|
+
* @public
|
|
519
|
+
*/
|
|
459
520
|
export interface DeleteHsmRequest {
|
|
460
521
|
/**
|
|
461
522
|
* <p>The identifier (ID) of the cluster that contains the HSM that you are
|
|
@@ -477,12 +538,18 @@ export interface DeleteHsmRequest {
|
|
|
477
538
|
*/
|
|
478
539
|
EniIp?: string;
|
|
479
540
|
}
|
|
541
|
+
/**
|
|
542
|
+
* @public
|
|
543
|
+
*/
|
|
480
544
|
export interface DeleteHsmResponse {
|
|
481
545
|
/**
|
|
482
546
|
* <p>The identifier (ID) of the HSM that was deleted.</p>
|
|
483
547
|
*/
|
|
484
548
|
HsmId?: string;
|
|
485
549
|
}
|
|
550
|
+
/**
|
|
551
|
+
* @public
|
|
552
|
+
*/
|
|
486
553
|
export interface DescribeBackupsRequest {
|
|
487
554
|
/**
|
|
488
555
|
* <p>The <code>NextToken</code> value that you received in the previous response. Use this
|
|
@@ -516,6 +583,9 @@ export interface DescribeBackupsRequest {
|
|
|
516
583
|
*/
|
|
517
584
|
SortAscending?: boolean;
|
|
518
585
|
}
|
|
586
|
+
/**
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
519
589
|
export interface DescribeBackupsResponse {
|
|
520
590
|
/**
|
|
521
591
|
* <p>A list of backups.</p>
|
|
@@ -528,6 +598,9 @@ export interface DescribeBackupsResponse {
|
|
|
528
598
|
*/
|
|
529
599
|
NextToken?: string;
|
|
530
600
|
}
|
|
601
|
+
/**
|
|
602
|
+
* @public
|
|
603
|
+
*/
|
|
531
604
|
export interface DescribeClustersRequest {
|
|
532
605
|
/**
|
|
533
606
|
* <p>One or more filters to limit the items returned in the response.</p>
|
|
@@ -550,6 +623,9 @@ export interface DescribeClustersRequest {
|
|
|
550
623
|
*/
|
|
551
624
|
MaxResults?: number;
|
|
552
625
|
}
|
|
626
|
+
/**
|
|
627
|
+
* @public
|
|
628
|
+
*/
|
|
553
629
|
export interface DescribeClustersResponse {
|
|
554
630
|
/**
|
|
555
631
|
* <p>A list of clusters.</p>
|
|
@@ -562,6 +638,9 @@ export interface DescribeClustersResponse {
|
|
|
562
638
|
*/
|
|
563
639
|
NextToken?: string;
|
|
564
640
|
}
|
|
641
|
+
/**
|
|
642
|
+
* @public
|
|
643
|
+
*/
|
|
565
644
|
export interface InitializeClusterRequest {
|
|
566
645
|
/**
|
|
567
646
|
* <p>The identifier (ID) of the cluster that you are claiming. To find the cluster ID, use
|
|
@@ -581,6 +660,9 @@ export interface InitializeClusterRequest {
|
|
|
581
660
|
*/
|
|
582
661
|
TrustAnchor: string | undefined;
|
|
583
662
|
}
|
|
663
|
+
/**
|
|
664
|
+
* @public
|
|
665
|
+
*/
|
|
584
666
|
export interface InitializeClusterResponse {
|
|
585
667
|
/**
|
|
586
668
|
* <p>The cluster's state.</p>
|
|
@@ -591,6 +673,9 @@ export interface InitializeClusterResponse {
|
|
|
591
673
|
*/
|
|
592
674
|
StateMessage?: string;
|
|
593
675
|
}
|
|
676
|
+
/**
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
594
679
|
export interface ListTagsRequest {
|
|
595
680
|
/**
|
|
596
681
|
* <p>The cluster identifier (ID) for the cluster whose tags you are getting. To find the
|
|
@@ -608,6 +693,9 @@ export interface ListTagsRequest {
|
|
|
608
693
|
*/
|
|
609
694
|
MaxResults?: number;
|
|
610
695
|
}
|
|
696
|
+
/**
|
|
697
|
+
* @public
|
|
698
|
+
*/
|
|
611
699
|
export interface ListTagsResponse {
|
|
612
700
|
/**
|
|
613
701
|
* <p>A list of tags.</p>
|
|
@@ -619,6 +707,9 @@ export interface ListTagsResponse {
|
|
|
619
707
|
*/
|
|
620
708
|
NextToken?: string;
|
|
621
709
|
}
|
|
710
|
+
/**
|
|
711
|
+
* @public
|
|
712
|
+
*/
|
|
622
713
|
export interface ModifyBackupAttributesRequest {
|
|
623
714
|
/**
|
|
624
715
|
* <p>The identifier (ID) of the backup to modify. To find the ID of a backup, use the <a>DescribeBackups</a> operation.</p>
|
|
@@ -630,6 +721,9 @@ export interface ModifyBackupAttributesRequest {
|
|
|
630
721
|
*/
|
|
631
722
|
NeverExpires: boolean | undefined;
|
|
632
723
|
}
|
|
724
|
+
/**
|
|
725
|
+
* @public
|
|
726
|
+
*/
|
|
633
727
|
export interface ModifyBackupAttributesResponse {
|
|
634
728
|
/**
|
|
635
729
|
* <p>Contains information about a backup of an AWS CloudHSM cluster. All backup objects
|
|
@@ -641,6 +735,9 @@ export interface ModifyBackupAttributesResponse {
|
|
|
641
735
|
*/
|
|
642
736
|
Backup?: Backup;
|
|
643
737
|
}
|
|
738
|
+
/**
|
|
739
|
+
* @public
|
|
740
|
+
*/
|
|
644
741
|
export interface ModifyClusterRequest {
|
|
645
742
|
/**
|
|
646
743
|
* <p>A policy that defines how the service retains backups.</p>
|
|
@@ -652,24 +749,36 @@ export interface ModifyClusterRequest {
|
|
|
652
749
|
*/
|
|
653
750
|
ClusterId: string | undefined;
|
|
654
751
|
}
|
|
752
|
+
/**
|
|
753
|
+
* @public
|
|
754
|
+
*/
|
|
655
755
|
export interface ModifyClusterResponse {
|
|
656
756
|
/**
|
|
657
757
|
* <p>Contains information about an AWS CloudHSM cluster.</p>
|
|
658
758
|
*/
|
|
659
759
|
Cluster?: Cluster;
|
|
660
760
|
}
|
|
761
|
+
/**
|
|
762
|
+
* @public
|
|
763
|
+
*/
|
|
661
764
|
export interface RestoreBackupRequest {
|
|
662
765
|
/**
|
|
663
766
|
* <p>The ID of the backup to be restored. To find the ID of a backup, use the <a>DescribeBackups</a> operation.</p>
|
|
664
767
|
*/
|
|
665
768
|
BackupId: string | undefined;
|
|
666
769
|
}
|
|
770
|
+
/**
|
|
771
|
+
* @public
|
|
772
|
+
*/
|
|
667
773
|
export interface RestoreBackupResponse {
|
|
668
774
|
/**
|
|
669
775
|
* <p>Information on the <code>Backup</code> object created.</p>
|
|
670
776
|
*/
|
|
671
777
|
Backup?: Backup;
|
|
672
778
|
}
|
|
779
|
+
/**
|
|
780
|
+
* @public
|
|
781
|
+
*/
|
|
673
782
|
export interface TagResourceRequest {
|
|
674
783
|
/**
|
|
675
784
|
* <p>The cluster identifier (ID) for the cluster that you are tagging. To find the cluster
|
|
@@ -681,8 +790,14 @@ export interface TagResourceRequest {
|
|
|
681
790
|
*/
|
|
682
791
|
TagList: Tag[] | undefined;
|
|
683
792
|
}
|
|
793
|
+
/**
|
|
794
|
+
* @public
|
|
795
|
+
*/
|
|
684
796
|
export interface TagResourceResponse {
|
|
685
797
|
}
|
|
798
|
+
/**
|
|
799
|
+
* @public
|
|
800
|
+
*/
|
|
686
801
|
export interface UntagResourceRequest {
|
|
687
802
|
/**
|
|
688
803
|
* <p>The cluster identifier (ID) for the cluster whose tags you are removing. To find the
|
|
@@ -695,153 +810,8 @@ export interface UntagResourceRequest {
|
|
|
695
810
|
*/
|
|
696
811
|
TagKeyList: string[] | undefined;
|
|
697
812
|
}
|
|
698
|
-
export interface UntagResourceResponse {
|
|
699
|
-
}
|
|
700
|
-
/**
|
|
701
|
-
* @internal
|
|
702
|
-
*/
|
|
703
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
704
813
|
/**
|
|
705
|
-
* @
|
|
814
|
+
* @public
|
|
706
815
|
*/
|
|
707
|
-
export
|
|
708
|
-
|
|
709
|
-
* @internal
|
|
710
|
-
*/
|
|
711
|
-
export declare const BackupRetentionPolicyFilterSensitiveLog: (obj: BackupRetentionPolicy) => any;
|
|
712
|
-
/**
|
|
713
|
-
* @internal
|
|
714
|
-
*/
|
|
715
|
-
export declare const CopyBackupToRegionRequestFilterSensitiveLog: (obj: CopyBackupToRegionRequest) => any;
|
|
716
|
-
/**
|
|
717
|
-
* @internal
|
|
718
|
-
*/
|
|
719
|
-
export declare const DestinationBackupFilterSensitiveLog: (obj: DestinationBackup) => any;
|
|
720
|
-
/**
|
|
721
|
-
* @internal
|
|
722
|
-
*/
|
|
723
|
-
export declare const CopyBackupToRegionResponseFilterSensitiveLog: (obj: CopyBackupToRegionResponse) => any;
|
|
724
|
-
/**
|
|
725
|
-
* @internal
|
|
726
|
-
*/
|
|
727
|
-
export declare const CreateClusterRequestFilterSensitiveLog: (obj: CreateClusterRequest) => any;
|
|
728
|
-
/**
|
|
729
|
-
* @internal
|
|
730
|
-
*/
|
|
731
|
-
export declare const CertificatesFilterSensitiveLog: (obj: Certificates) => any;
|
|
732
|
-
/**
|
|
733
|
-
* @internal
|
|
734
|
-
*/
|
|
735
|
-
export declare const HsmFilterSensitiveLog: (obj: Hsm) => any;
|
|
736
|
-
/**
|
|
737
|
-
* @internal
|
|
738
|
-
*/
|
|
739
|
-
export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
|
|
740
|
-
/**
|
|
741
|
-
* @internal
|
|
742
|
-
*/
|
|
743
|
-
export declare const CreateClusterResponseFilterSensitiveLog: (obj: CreateClusterResponse) => any;
|
|
744
|
-
/**
|
|
745
|
-
* @internal
|
|
746
|
-
*/
|
|
747
|
-
export declare const CreateHsmRequestFilterSensitiveLog: (obj: CreateHsmRequest) => any;
|
|
748
|
-
/**
|
|
749
|
-
* @internal
|
|
750
|
-
*/
|
|
751
|
-
export declare const CreateHsmResponseFilterSensitiveLog: (obj: CreateHsmResponse) => any;
|
|
752
|
-
/**
|
|
753
|
-
* @internal
|
|
754
|
-
*/
|
|
755
|
-
export declare const DeleteBackupRequestFilterSensitiveLog: (obj: DeleteBackupRequest) => any;
|
|
756
|
-
/**
|
|
757
|
-
* @internal
|
|
758
|
-
*/
|
|
759
|
-
export declare const DeleteBackupResponseFilterSensitiveLog: (obj: DeleteBackupResponse) => any;
|
|
760
|
-
/**
|
|
761
|
-
* @internal
|
|
762
|
-
*/
|
|
763
|
-
export declare const DeleteClusterRequestFilterSensitiveLog: (obj: DeleteClusterRequest) => any;
|
|
764
|
-
/**
|
|
765
|
-
* @internal
|
|
766
|
-
*/
|
|
767
|
-
export declare const DeleteClusterResponseFilterSensitiveLog: (obj: DeleteClusterResponse) => any;
|
|
768
|
-
/**
|
|
769
|
-
* @internal
|
|
770
|
-
*/
|
|
771
|
-
export declare const DeleteHsmRequestFilterSensitiveLog: (obj: DeleteHsmRequest) => any;
|
|
772
|
-
/**
|
|
773
|
-
* @internal
|
|
774
|
-
*/
|
|
775
|
-
export declare const DeleteHsmResponseFilterSensitiveLog: (obj: DeleteHsmResponse) => any;
|
|
776
|
-
/**
|
|
777
|
-
* @internal
|
|
778
|
-
*/
|
|
779
|
-
export declare const DescribeBackupsRequestFilterSensitiveLog: (obj: DescribeBackupsRequest) => any;
|
|
780
|
-
/**
|
|
781
|
-
* @internal
|
|
782
|
-
*/
|
|
783
|
-
export declare const DescribeBackupsResponseFilterSensitiveLog: (obj: DescribeBackupsResponse) => any;
|
|
784
|
-
/**
|
|
785
|
-
* @internal
|
|
786
|
-
*/
|
|
787
|
-
export declare const DescribeClustersRequestFilterSensitiveLog: (obj: DescribeClustersRequest) => any;
|
|
788
|
-
/**
|
|
789
|
-
* @internal
|
|
790
|
-
*/
|
|
791
|
-
export declare const DescribeClustersResponseFilterSensitiveLog: (obj: DescribeClustersResponse) => any;
|
|
792
|
-
/**
|
|
793
|
-
* @internal
|
|
794
|
-
*/
|
|
795
|
-
export declare const InitializeClusterRequestFilterSensitiveLog: (obj: InitializeClusterRequest) => any;
|
|
796
|
-
/**
|
|
797
|
-
* @internal
|
|
798
|
-
*/
|
|
799
|
-
export declare const InitializeClusterResponseFilterSensitiveLog: (obj: InitializeClusterResponse) => any;
|
|
800
|
-
/**
|
|
801
|
-
* @internal
|
|
802
|
-
*/
|
|
803
|
-
export declare const ListTagsRequestFilterSensitiveLog: (obj: ListTagsRequest) => any;
|
|
804
|
-
/**
|
|
805
|
-
* @internal
|
|
806
|
-
*/
|
|
807
|
-
export declare const ListTagsResponseFilterSensitiveLog: (obj: ListTagsResponse) => any;
|
|
808
|
-
/**
|
|
809
|
-
* @internal
|
|
810
|
-
*/
|
|
811
|
-
export declare const ModifyBackupAttributesRequestFilterSensitiveLog: (obj: ModifyBackupAttributesRequest) => any;
|
|
812
|
-
/**
|
|
813
|
-
* @internal
|
|
814
|
-
*/
|
|
815
|
-
export declare const ModifyBackupAttributesResponseFilterSensitiveLog: (obj: ModifyBackupAttributesResponse) => any;
|
|
816
|
-
/**
|
|
817
|
-
* @internal
|
|
818
|
-
*/
|
|
819
|
-
export declare const ModifyClusterRequestFilterSensitiveLog: (obj: ModifyClusterRequest) => any;
|
|
820
|
-
/**
|
|
821
|
-
* @internal
|
|
822
|
-
*/
|
|
823
|
-
export declare const ModifyClusterResponseFilterSensitiveLog: (obj: ModifyClusterResponse) => any;
|
|
824
|
-
/**
|
|
825
|
-
* @internal
|
|
826
|
-
*/
|
|
827
|
-
export declare const RestoreBackupRequestFilterSensitiveLog: (obj: RestoreBackupRequest) => any;
|
|
828
|
-
/**
|
|
829
|
-
* @internal
|
|
830
|
-
*/
|
|
831
|
-
export declare const RestoreBackupResponseFilterSensitiveLog: (obj: RestoreBackupResponse) => any;
|
|
832
|
-
/**
|
|
833
|
-
* @internal
|
|
834
|
-
*/
|
|
835
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
836
|
-
/**
|
|
837
|
-
* @internal
|
|
838
|
-
*/
|
|
839
|
-
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
840
|
-
/**
|
|
841
|
-
* @internal
|
|
842
|
-
*/
|
|
843
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
844
|
-
/**
|
|
845
|
-
* @internal
|
|
846
|
-
*/
|
|
847
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
816
|
+
export interface UntagResourceResponse {
|
|
817
|
+
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeBackupsCommandInput, DescribeBackupsCommandOutput } from "../commands/DescribeBackupsCommand";
|
|
3
3
|
import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeBackups(config: CloudHSMV2PaginationConfiguration, input: DescribeBackupsCommandInput, ...additionalArguments: any): Paginator<DescribeBackupsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "../commands/DescribeClustersCommand";
|
|
3
3
|
import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeClusters(config: CloudHSMV2PaginationConfiguration, input: DescribeClustersCommandInput, ...additionalArguments: any): Paginator<DescribeClustersCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand";
|
|
3
3
|
import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListTags(config: CloudHSMV2PaginationConfiguration, input: ListTagsCommandInput, ...additionalArguments: any): Paginator<ListTagsCommandOutput>;
|
|
@@ -262,104 +262,3 @@ export interface UntagResourceRequest {
|
|
|
262
262
|
TagKeyList: string[] | undefined;
|
|
263
263
|
}
|
|
264
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;
|