@aws-sdk/client-cloudhsm-v2 3.378.0 → 3.382.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.
@@ -1,4 +1,7 @@
1
1
  import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
2
5
  export interface ClientInputEndpointParameters {
3
6
  region?: string | Provider<string>;
4
7
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -6,6 +6,7 @@
6
6
  */
7
7
  export * from "./CloudHSMV2Client";
8
8
  export * from "./CloudHSMV2";
9
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
9
10
  export * from "./commands";
10
11
  export * from "./pagination";
11
12
  export * from "./models";
@@ -20,10 +20,12 @@ export type BackupState = (typeof BackupState)[keyof typeof BackupState];
20
20
  */
21
21
  export interface Tag {
22
22
  /**
23
+ * @public
23
24
  * <p>The key of the tag.</p>
24
25
  */
25
26
  Key: string | undefined;
26
27
  /**
28
+ * @public
27
29
  * <p>The value of the tag.</p>
28
30
  */
29
31
  Value: string | undefined;
@@ -39,50 +41,61 @@ export interface Tag {
39
41
  */
40
42
  export interface Backup {
41
43
  /**
44
+ * @public
42
45
  * <p>The identifier (ID) of the backup.</p>
43
46
  */
44
47
  BackupId: string | undefined;
45
48
  /**
49
+ * @public
46
50
  * <p>The state of the backup.</p>
47
51
  */
48
52
  BackupState?: BackupState | string;
49
53
  /**
54
+ * @public
50
55
  * <p>The identifier (ID) of the cluster that was backed up.</p>
51
56
  */
52
57
  ClusterId?: string;
53
58
  /**
59
+ * @public
54
60
  * <p>The date and time when the backup was created.</p>
55
61
  */
56
62
  CreateTimestamp?: Date;
57
63
  /**
64
+ * @public
58
65
  * <p>The date and time when the backup was copied from a source backup.</p>
59
66
  */
60
67
  CopyTimestamp?: Date;
61
68
  /**
69
+ * @public
62
70
  * <p>Specifies whether the service should exempt a backup from the retention policy for the cluster. <code>True</code> exempts
63
71
  * a backup from the retention policy. <code>False</code> means the service applies the backup retention policy defined at the cluster.</p>
64
72
  */
65
73
  NeverExpires?: boolean;
66
74
  /**
75
+ * @public
67
76
  * <p>The AWS Region that contains the source backup from which the new backup was
68
77
  * copied.</p>
69
78
  */
70
79
  SourceRegion?: string;
71
80
  /**
81
+ * @public
72
82
  * <p>The identifier (ID) of the source backup from which the new backup was
73
83
  * copied.</p>
74
84
  */
75
85
  SourceBackup?: string;
76
86
  /**
87
+ * @public
77
88
  * <p>The identifier (ID) of the cluster containing the source backup from which the new
78
89
  * backup was copied.</p>
79
90
  */
80
91
  SourceCluster?: string;
81
92
  /**
93
+ * @public
82
94
  * <p>The date and time when the backup will be permanently deleted.</p>
83
95
  */
84
96
  DeleteTimestamp?: Date;
85
97
  /**
98
+ * @public
86
99
  * <p>The list of tags for the backup.</p>
87
100
  */
88
101
  TagList?: Tag[];
@@ -115,11 +128,13 @@ export type BackupRetentionType = (typeof BackupRetentionType)[keyof typeof Back
115
128
  */
116
129
  export interface BackupRetentionPolicy {
117
130
  /**
131
+ * @public
118
132
  * <p>The type of backup retention policy. For the <code>DAYS</code> type, the value is
119
133
  * the number of days to retain backups.</p>
120
134
  */
121
135
  Type?: BackupRetentionType | string;
122
136
  /**
137
+ * @public
123
138
  * <p>Use a value between 7 - 379.</p>
124
139
  */
125
140
  Value?: string;
@@ -210,14 +225,17 @@ export declare class CloudHsmTagException extends __BaseException {
210
225
  */
211
226
  export interface CopyBackupToRegionRequest {
212
227
  /**
228
+ * @public
213
229
  * <p>The AWS region that will contain your copied CloudHSM cluster backup.</p>
214
230
  */
215
231
  DestinationRegion: string | undefined;
216
232
  /**
233
+ * @public
217
234
  * <p>The ID of the backup that will be copied to the destination region. </p>
218
235
  */
219
236
  BackupId: string | undefined;
220
237
  /**
238
+ * @public
221
239
  * <p>Tags to apply to the destination backup during creation. If you specify tags, only these tags will be applied to the destination backup. If you do not specify tags, the service copies tags from the source backup to the destination backup.</p>
222
240
  */
223
241
  TagList?: Tag[];
@@ -228,18 +246,22 @@ export interface CopyBackupToRegionRequest {
228
246
  */
229
247
  export interface DestinationBackup {
230
248
  /**
249
+ * @public
231
250
  * <p>The date and time when both the source backup was created.</p>
232
251
  */
233
252
  CreateTimestamp?: Date;
234
253
  /**
254
+ * @public
235
255
  * <p>The AWS region that contains the source backup from which the new backup was copied.</p>
236
256
  */
237
257
  SourceRegion?: string;
238
258
  /**
259
+ * @public
239
260
  * <p>The identifier (ID) of the source backup from which the new backup was copied.</p>
240
261
  */
241
262
  SourceBackup?: string;
242
263
  /**
264
+ * @public
243
265
  * <p>The identifier (ID) of the cluster containing the source backup from which the new backup was copied.</p>
244
266
  */
245
267
  SourceCluster?: string;
@@ -249,6 +271,7 @@ export interface DestinationBackup {
249
271
  */
250
272
  export interface CopyBackupToRegionResponse {
251
273
  /**
274
+ * @public
252
275
  * <p>Information on the backup that will be copied to the destination region, including
253
276
  * CreateTimestamp, SourceBackup, SourceCluster, and Source Region. CreateTimestamp of the
254
277
  * destination backup will be the same as that of the source backup.</p>
@@ -263,20 +286,24 @@ export interface CopyBackupToRegionResponse {
263
286
  */
264
287
  export interface CreateClusterRequest {
265
288
  /**
289
+ * @public
266
290
  * <p>A policy that defines how the service retains backups.</p>
267
291
  */
268
292
  BackupRetentionPolicy?: BackupRetentionPolicy;
269
293
  /**
294
+ * @public
270
295
  * <p>The type of HSM to use in the cluster. Currently the only allowed value is
271
296
  * <code>hsm1.medium</code>.</p>
272
297
  */
273
298
  HsmType: string | undefined;
274
299
  /**
300
+ * @public
275
301
  * <p>The identifier (ID) of the cluster backup to restore. Use this value to restore the
276
302
  * cluster from a backup instead of creating a new cluster. To find the backup ID, use <a>DescribeBackups</a>.</p>
277
303
  */
278
304
  SourceBackupId?: string;
279
305
  /**
306
+ * @public
280
307
  * <p>The identifiers (IDs) of the subnets where you are creating the cluster. You must
281
308
  * specify at least one subnet. If you specify multiple subnets, they must meet the following
282
309
  * criteria:</p>
@@ -291,6 +318,7 @@ export interface CreateClusterRequest {
291
318
  */
292
319
  SubnetIds: string[] | undefined;
293
320
  /**
321
+ * @public
294
322
  * <p>Tags to apply to the CloudHSM cluster during creation.</p>
295
323
  */
296
324
  TagList?: Tag[];
@@ -301,23 +329,28 @@ export interface CreateClusterRequest {
301
329
  */
302
330
  export interface Certificates {
303
331
  /**
332
+ * @public
304
333
  * <p>The cluster's certificate signing request (CSR). The CSR exists only when the cluster's
305
334
  * state is <code>UNINITIALIZED</code>.</p>
306
335
  */
307
336
  ClusterCsr?: string;
308
337
  /**
338
+ * @public
309
339
  * <p>The HSM certificate issued (signed) by the HSM hardware.</p>
310
340
  */
311
341
  HsmCertificate?: string;
312
342
  /**
343
+ * @public
313
344
  * <p>The HSM hardware certificate issued (signed) by AWS CloudHSM.</p>
314
345
  */
315
346
  AwsHardwareCertificate?: string;
316
347
  /**
348
+ * @public
317
349
  * <p>The HSM hardware certificate issued (signed) by the hardware manufacturer.</p>
318
350
  */
319
351
  ManufacturerHardwareCertificate?: string;
320
352
  /**
353
+ * @public
321
354
  * <p>The cluster certificate issued (signed) by the issuing certificate authority (CA) of
322
355
  * the cluster's owner.</p>
323
356
  */
@@ -345,34 +378,42 @@ export type HsmState = (typeof HsmState)[keyof typeof HsmState];
345
378
  */
346
379
  export interface Hsm {
347
380
  /**
381
+ * @public
348
382
  * <p>The Availability Zone that contains the HSM.</p>
349
383
  */
350
384
  AvailabilityZone?: string;
351
385
  /**
386
+ * @public
352
387
  * <p>The identifier (ID) of the cluster that contains the HSM.</p>
353
388
  */
354
389
  ClusterId?: string;
355
390
  /**
391
+ * @public
356
392
  * <p>The subnet that contains the HSM's elastic network interface (ENI).</p>
357
393
  */
358
394
  SubnetId?: string;
359
395
  /**
396
+ * @public
360
397
  * <p>The identifier (ID) of the HSM's elastic network interface (ENI).</p>
361
398
  */
362
399
  EniId?: string;
363
400
  /**
401
+ * @public
364
402
  * <p>The IP address of the HSM's elastic network interface (ENI).</p>
365
403
  */
366
404
  EniIp?: string;
367
405
  /**
406
+ * @public
368
407
  * <p>The HSM's identifier (ID).</p>
369
408
  */
370
409
  HsmId: string | undefined;
371
410
  /**
411
+ * @public
372
412
  * <p>The HSM's state.</p>
373
413
  */
374
414
  State?: HsmState | string;
375
415
  /**
416
+ * @public
376
417
  * <p>A description of the HSM's state.</p>
377
418
  */
378
419
  StateMessage?: string;
@@ -402,64 +443,79 @@ export type ClusterState = (typeof ClusterState)[keyof typeof ClusterState];
402
443
  */
403
444
  export interface Cluster {
404
445
  /**
446
+ * @public
405
447
  * <p>The cluster's backup policy.</p>
406
448
  */
407
449
  BackupPolicy?: BackupPolicy | string;
408
450
  /**
451
+ * @public
409
452
  * <p>A policy that defines how the service retains backups.</p>
410
453
  */
411
454
  BackupRetentionPolicy?: BackupRetentionPolicy;
412
455
  /**
456
+ * @public
413
457
  * <p>The cluster's identifier (ID).</p>
414
458
  */
415
459
  ClusterId?: string;
416
460
  /**
461
+ * @public
417
462
  * <p>The date and time when the cluster was created.</p>
418
463
  */
419
464
  CreateTimestamp?: Date;
420
465
  /**
466
+ * @public
421
467
  * <p>Contains information about the HSMs in the cluster.</p>
422
468
  */
423
469
  Hsms?: Hsm[];
424
470
  /**
471
+ * @public
425
472
  * <p>The type of HSM that the cluster contains.</p>
426
473
  */
427
474
  HsmType?: string;
428
475
  /**
476
+ * @public
429
477
  * <p>The default password for the cluster's Pre-Crypto Officer (PRECO) user.</p>
430
478
  */
431
479
  PreCoPassword?: string;
432
480
  /**
481
+ * @public
433
482
  * <p>The identifier (ID) of the cluster's security group.</p>
434
483
  */
435
484
  SecurityGroup?: string;
436
485
  /**
486
+ * @public
437
487
  * <p>The identifier (ID) of the backup used to create the cluster. This value exists only
438
488
  * when the cluster was created from a backup.</p>
439
489
  */
440
490
  SourceBackupId?: string;
441
491
  /**
492
+ * @public
442
493
  * <p>The cluster's state.</p>
443
494
  */
444
495
  State?: ClusterState | string;
445
496
  /**
497
+ * @public
446
498
  * <p>A description of the cluster's state.</p>
447
499
  */
448
500
  StateMessage?: string;
449
501
  /**
502
+ * @public
450
503
  * <p>A map from availability zone to the cluster’s subnet in that availability zone.</p>
451
504
  */
452
505
  SubnetMapping?: Record<string, string>;
453
506
  /**
507
+ * @public
454
508
  * <p>The identifier (ID) of the virtual private cloud (VPC) that contains the
455
509
  * cluster.</p>
456
510
  */
457
511
  VpcId?: string;
458
512
  /**
513
+ * @public
459
514
  * <p>Contains one or more certificates or a certificate signing request (CSR).</p>
460
515
  */
461
516
  Certificates?: Certificates;
462
517
  /**
518
+ * @public
463
519
  * <p>The list of tags for the cluster.</p>
464
520
  */
465
521
  TagList?: Tag[];
@@ -469,6 +525,7 @@ export interface Cluster {
469
525
  */
470
526
  export interface CreateClusterResponse {
471
527
  /**
528
+ * @public
472
529
  * <p>Information about the cluster that was created.</p>
473
530
  */
474
531
  Cluster?: Cluster;
@@ -478,15 +535,18 @@ export interface CreateClusterResponse {
478
535
  */
479
536
  export interface CreateHsmRequest {
480
537
  /**
538
+ * @public
481
539
  * <p>The identifier (ID) of the HSM's cluster. To find the cluster ID, use <a>DescribeClusters</a>.</p>
482
540
  */
483
541
  ClusterId: string | undefined;
484
542
  /**
543
+ * @public
485
544
  * <p>The Availability Zone where you are creating the HSM. To find the cluster's
486
545
  * Availability Zones, use <a>DescribeClusters</a>.</p>
487
546
  */
488
547
  AvailabilityZone: string | undefined;
489
548
  /**
549
+ * @public
490
550
  * <p>The HSM's IP address. If you specify an IP address, use an available address from the
491
551
  * subnet that maps to the Availability Zone where you are creating the HSM. If you don't specify
492
552
  * an IP address, one is chosen for you from that subnet.</p>
@@ -498,6 +558,7 @@ export interface CreateHsmRequest {
498
558
  */
499
559
  export interface CreateHsmResponse {
500
560
  /**
561
+ * @public
501
562
  * <p>Information about the HSM that was created.</p>
502
563
  */
503
564
  Hsm?: Hsm;
@@ -507,6 +568,7 @@ export interface CreateHsmResponse {
507
568
  */
508
569
  export interface DeleteBackupRequest {
509
570
  /**
571
+ * @public
510
572
  * <p>The ID of the backup to be deleted. To find the ID of a backup, use the <a>DescribeBackups</a> operation.</p>
511
573
  */
512
574
  BackupId: string | undefined;
@@ -516,6 +578,7 @@ export interface DeleteBackupRequest {
516
578
  */
517
579
  export interface DeleteBackupResponse {
518
580
  /**
581
+ * @public
519
582
  * <p>Information on the <code>Backup</code> object deleted.</p>
520
583
  */
521
584
  Backup?: Backup;
@@ -525,6 +588,7 @@ export interface DeleteBackupResponse {
525
588
  */
526
589
  export interface DeleteClusterRequest {
527
590
  /**
591
+ * @public
528
592
  * <p>The identifier (ID) of the cluster that you are deleting. To find the cluster ID, use
529
593
  * <a>DescribeClusters</a>.</p>
530
594
  */
@@ -535,6 +599,7 @@ export interface DeleteClusterRequest {
535
599
  */
536
600
  export interface DeleteClusterResponse {
537
601
  /**
602
+ * @public
538
603
  * <p>Information about the cluster that was deleted.</p>
539
604
  */
540
605
  Cluster?: Cluster;
@@ -544,20 +609,24 @@ export interface DeleteClusterResponse {
544
609
  */
545
610
  export interface DeleteHsmRequest {
546
611
  /**
612
+ * @public
547
613
  * <p>The identifier (ID) of the cluster that contains the HSM that you are
548
614
  * deleting.</p>
549
615
  */
550
616
  ClusterId: string | undefined;
551
617
  /**
618
+ * @public
552
619
  * <p>The identifier (ID) of the HSM that you are deleting.</p>
553
620
  */
554
621
  HsmId?: string;
555
622
  /**
623
+ * @public
556
624
  * <p>The identifier (ID) of the elastic network interface (ENI) of the HSM that you are
557
625
  * deleting.</p>
558
626
  */
559
627
  EniId?: string;
560
628
  /**
629
+ * @public
561
630
  * <p>The IP address of the elastic network interface (ENI) of the HSM that you are
562
631
  * deleting.</p>
563
632
  */
@@ -568,6 +637,7 @@ export interface DeleteHsmRequest {
568
637
  */
569
638
  export interface DeleteHsmResponse {
570
639
  /**
640
+ * @public
571
641
  * <p>The identifier (ID) of the HSM that was deleted.</p>
572
642
  */
573
643
  HsmId?: string;
@@ -577,16 +647,19 @@ export interface DeleteHsmResponse {
577
647
  */
578
648
  export interface DescribeBackupsRequest {
579
649
  /**
650
+ * @public
580
651
  * <p>The <code>NextToken</code> value that you received in the previous response. Use this
581
652
  * value to get more backups.</p>
582
653
  */
583
654
  NextToken?: string;
584
655
  /**
656
+ * @public
585
657
  * <p>The maximum number of backups to return in the response. When there are more backups
586
658
  * than the number you specify, the response contains a <code>NextToken</code> value.</p>
587
659
  */
588
660
  MaxResults?: number;
589
661
  /**
662
+ * @public
590
663
  * <p>One or more filters to limit the items returned in the response.</p>
591
664
  * <p>Use the <code>backupIds</code> filter to return only the specified backups. Specify
592
665
  * backups by their backup identifier (ID).</p>
@@ -603,6 +676,7 @@ export interface DescribeBackupsRequest {
603
676
  */
604
677
  Filters?: Record<string, string[]>;
605
678
  /**
679
+ * @public
606
680
  * <p>Designates whether or not to sort the return backups by ascending chronological order
607
681
  * of generation.</p>
608
682
  */
@@ -613,10 +687,12 @@ export interface DescribeBackupsRequest {
613
687
  */
614
688
  export interface DescribeBackupsResponse {
615
689
  /**
690
+ * @public
616
691
  * <p>A list of backups.</p>
617
692
  */
618
693
  Backups?: Backup[];
619
694
  /**
695
+ * @public
620
696
  * <p>An opaque string that indicates that the response contains only a subset of backups.
621
697
  * Use this value in a subsequent <code>DescribeBackups</code> request to get more
622
698
  * backups.</p>
@@ -628,6 +704,7 @@ export interface DescribeBackupsResponse {
628
704
  */
629
705
  export interface DescribeClustersRequest {
630
706
  /**
707
+ * @public
631
708
  * <p>One or more filters to limit the items returned in the response.</p>
632
709
  * <p>Use the <code>clusterIds</code> filter to return only the specified clusters. Specify
633
710
  * clusters by their cluster identifier (ID).</p>
@@ -638,11 +715,13 @@ export interface DescribeClustersRequest {
638
715
  */
639
716
  Filters?: Record<string, string[]>;
640
717
  /**
718
+ * @public
641
719
  * <p>The <code>NextToken</code> value that you received in the previous response. Use this
642
720
  * value to get more clusters.</p>
643
721
  */
644
722
  NextToken?: string;
645
723
  /**
724
+ * @public
646
725
  * <p>The maximum number of clusters to return in the response. When there are more clusters
647
726
  * than the number you specify, the response contains a <code>NextToken</code> value.</p>
648
727
  */
@@ -653,10 +732,12 @@ export interface DescribeClustersRequest {
653
732
  */
654
733
  export interface DescribeClustersResponse {
655
734
  /**
735
+ * @public
656
736
  * <p>A list of clusters.</p>
657
737
  */
658
738
  Clusters?: Cluster[];
659
739
  /**
740
+ * @public
660
741
  * <p>An opaque string that indicates that the response contains only a subset of clusters.
661
742
  * Use this value in a subsequent <code>DescribeClusters</code> request to get more
662
743
  * clusters.</p>
@@ -668,16 +749,19 @@ export interface DescribeClustersResponse {
668
749
  */
669
750
  export interface InitializeClusterRequest {
670
751
  /**
752
+ * @public
671
753
  * <p>The identifier (ID) of the cluster that you are claiming. To find the cluster ID, use
672
754
  * <a>DescribeClusters</a>.</p>
673
755
  */
674
756
  ClusterId: string | undefined;
675
757
  /**
758
+ * @public
676
759
  * <p>The cluster certificate issued (signed) by your issuing certificate authority (CA). The
677
760
  * certificate must be in PEM format and can contain a maximum of 5000 characters.</p>
678
761
  */
679
762
  SignedCert: string | undefined;
680
763
  /**
764
+ * @public
681
765
  * <p>The issuing certificate of the issuing certificate authority (CA) that issued (signed)
682
766
  * the cluster certificate. You must use a self-signed certificate. The certificate used to sign the HSM CSR must be directly available, and thus must be the
683
767
  * root certificate. The certificate must be in PEM format and can contain a
@@ -690,10 +774,12 @@ export interface InitializeClusterRequest {
690
774
  */
691
775
  export interface InitializeClusterResponse {
692
776
  /**
777
+ * @public
693
778
  * <p>The cluster's state.</p>
694
779
  */
695
780
  State?: ClusterState | string;
696
781
  /**
782
+ * @public
697
783
  * <p>A description of the cluster's state.</p>
698
784
  */
699
785
  StateMessage?: string;
@@ -703,16 +789,19 @@ export interface InitializeClusterResponse {
703
789
  */
704
790
  export interface ListTagsRequest {
705
791
  /**
792
+ * @public
706
793
  * <p>The cluster identifier (ID) for the cluster whose tags you are getting. To find the
707
794
  * cluster ID, use <a>DescribeClusters</a>.</p>
708
795
  */
709
796
  ResourceId: string | undefined;
710
797
  /**
798
+ * @public
711
799
  * <p>The <code>NextToken</code> value that you received in the previous response. Use this
712
800
  * value to get more tags.</p>
713
801
  */
714
802
  NextToken?: string;
715
803
  /**
804
+ * @public
716
805
  * <p>The maximum number of tags to return in the response. When there are more tags than the
717
806
  * number you specify, the response contains a <code>NextToken</code> value.</p>
718
807
  */
@@ -723,10 +812,12 @@ export interface ListTagsRequest {
723
812
  */
724
813
  export interface ListTagsResponse {
725
814
  /**
815
+ * @public
726
816
  * <p>A list of tags.</p>
727
817
  */
728
818
  TagList: Tag[] | undefined;
729
819
  /**
820
+ * @public
730
821
  * <p>An opaque string that indicates that the response contains only a subset of tags. Use
731
822
  * this value in a subsequent <code>ListTags</code> request to get more tags.</p>
732
823
  */
@@ -737,10 +828,12 @@ export interface ListTagsResponse {
737
828
  */
738
829
  export interface ModifyBackupAttributesRequest {
739
830
  /**
831
+ * @public
740
832
  * <p>The identifier (ID) of the backup to modify. To find the ID of a backup, use the <a>DescribeBackups</a> operation.</p>
741
833
  */
742
834
  BackupId: string | undefined;
743
835
  /**
836
+ * @public
744
837
  * <p>Specifies whether the service should exempt a backup from the retention policy for the cluster. <code>True</code> exempts
745
838
  * a backup from the retention policy. <code>False</code> means the service applies the backup retention policy defined at the cluster.</p>
746
839
  */
@@ -751,6 +844,7 @@ export interface ModifyBackupAttributesRequest {
751
844
  */
752
845
  export interface ModifyBackupAttributesResponse {
753
846
  /**
847
+ * @public
754
848
  * <p>Contains information about a backup of an AWS CloudHSM cluster. All backup objects
755
849
  * contain the <code>BackupId</code>, <code>BackupState</code>, <code>ClusterId</code>, and
756
850
  * <code>CreateTimestamp</code> parameters. Backups that were copied into a destination region
@@ -765,10 +859,12 @@ export interface ModifyBackupAttributesResponse {
765
859
  */
766
860
  export interface ModifyClusterRequest {
767
861
  /**
862
+ * @public
768
863
  * <p>A policy that defines how the service retains backups.</p>
769
864
  */
770
865
  BackupRetentionPolicy: BackupRetentionPolicy | undefined;
771
866
  /**
867
+ * @public
772
868
  * <p>The identifier (ID) of the cluster that you want to modify. To find the cluster ID, use
773
869
  * <a>DescribeClusters</a>.</p>
774
870
  */
@@ -779,6 +875,7 @@ export interface ModifyClusterRequest {
779
875
  */
780
876
  export interface ModifyClusterResponse {
781
877
  /**
878
+ * @public
782
879
  * <p>Contains information about an AWS CloudHSM cluster.</p>
783
880
  */
784
881
  Cluster?: Cluster;
@@ -788,6 +885,7 @@ export interface ModifyClusterResponse {
788
885
  */
789
886
  export interface RestoreBackupRequest {
790
887
  /**
888
+ * @public
791
889
  * <p>The ID of the backup to be restored. To find the ID of a backup, use the <a>DescribeBackups</a> operation.</p>
792
890
  */
793
891
  BackupId: string | undefined;
@@ -797,6 +895,7 @@ export interface RestoreBackupRequest {
797
895
  */
798
896
  export interface RestoreBackupResponse {
799
897
  /**
898
+ * @public
800
899
  * <p>Information on the <code>Backup</code> object created.</p>
801
900
  */
802
901
  Backup?: Backup;
@@ -806,11 +905,13 @@ export interface RestoreBackupResponse {
806
905
  */
807
906
  export interface TagResourceRequest {
808
907
  /**
908
+ * @public
809
909
  * <p>The cluster identifier (ID) for the cluster that you are tagging. To find the cluster
810
910
  * ID, use <a>DescribeClusters</a>.</p>
811
911
  */
812
912
  ResourceId: string | undefined;
813
913
  /**
914
+ * @public
814
915
  * <p>A list of one or more tags.</p>
815
916
  */
816
917
  TagList: Tag[] | undefined;
@@ -825,11 +926,13 @@ export interface TagResourceResponse {
825
926
  */
826
927
  export interface UntagResourceRequest {
827
928
  /**
929
+ * @public
828
930
  * <p>The cluster identifier (ID) for the cluster whose tags you are removing. To find the
829
931
  * cluster ID, use <a>DescribeClusters</a>.</p>
830
932
  */
831
933
  ResourceId: string | undefined;
832
934
  /**
935
+ * @public
833
936
  * <p>A list of one or more tag keys for the tags that you are removing. Specify only the tag
834
937
  * keys, not the tag values.</p>
835
938
  */
@@ -36,7 +36,9 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
36
36
  signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
38
38
  systemClockOffset?: number | undefined;
39
- signingRegion?: string | undefined;
39
+ signingRegion?: string | undefined; /**
40
+ * @internal
41
+ */
40
42
  signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
41
43
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
42
44
  };
@@ -1,5 +1,6 @@
1
1
  export * from "./CloudHSMV2Client";
2
2
  export * from "./CloudHSMV2";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./pagination";
5
6
  export * from "./models";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudhsm-v2",
3
3
  "description": "AWS SDK for JavaScript Cloudhsm V2 Client for Node.js, Browser and React Native",
4
- "version": "3.378.0",
4
+ "version": "3.382.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
+ "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",