@aws-sdk/client-cloudhsm 3.686.0 → 3.691.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.
@@ -53,7 +53,7 @@ export declare class CloudHsmInternalException extends __BaseException {
53
53
  * <p>Indicates if the action can be retried.</p>
54
54
  * @public
55
55
  */
56
- retryable?: boolean;
56
+ retryable?: boolean | undefined;
57
57
  /**
58
58
  * @internal
59
59
  */
@@ -70,7 +70,7 @@ export declare class CloudHsmServiceException extends __BaseException {
70
70
  * <p>Indicates if the action can be retried.</p>
71
71
  * @public
72
72
  */
73
- retryable?: boolean;
73
+ retryable?: boolean | undefined;
74
74
  /**
75
75
  * @internal
76
76
  */
@@ -87,7 +87,7 @@ export declare class InvalidRequestException extends __BaseException {
87
87
  * <p>Indicates if the action can be retried.</p>
88
88
  * @public
89
89
  */
90
- retryable?: boolean;
90
+ retryable?: boolean | undefined;
91
91
  /**
92
92
  * @internal
93
93
  */
@@ -125,7 +125,7 @@ export interface CreateHapgResponse {
125
125
  * <p>The ARN of the high-availability partition group.</p>
126
126
  * @public
127
127
  */
128
- HapgArn?: string;
128
+ HapgArn?: string | undefined;
129
129
  }
130
130
  /**
131
131
  * @public
@@ -159,7 +159,7 @@ export interface CreateHsmRequest {
159
159
  * range of the subnet.</p>
160
160
  * @public
161
161
  */
162
- EniIp?: string;
162
+ EniIp?: string | undefined;
163
163
  /**
164
164
  * <p>The ARN of an IAM role to enable the AWS CloudHSM service to allocate an ENI on your
165
165
  * behalf.</p>
@@ -170,7 +170,7 @@ export interface CreateHsmRequest {
170
170
  * <p>The external ID from <code>IamRoleArn</code>, if present.</p>
171
171
  * @public
172
172
  */
173
- ExternalId?: string;
173
+ ExternalId?: string | undefined;
174
174
  /**
175
175
  * <p>Specifies the type of subscription for the HSM.</p>
176
176
  * <ul>
@@ -193,13 +193,13 @@ export interface CreateHsmRequest {
193
193
  * same token will be ignored.</p>
194
194
  * @public
195
195
  */
196
- ClientToken?: string;
196
+ ClientToken?: string | undefined;
197
197
  /**
198
198
  * <p>The IP address for the syslog monitoring server. The AWS CloudHSM service only supports one
199
199
  * syslog monitoring server.</p>
200
200
  * @public
201
201
  */
202
- SyslogIp?: string;
202
+ SyslogIp?: string | undefined;
203
203
  }
204
204
  /**
205
205
  * <p>Contains the output of the <code>CreateHsm</code> operation.</p>
@@ -210,7 +210,7 @@ export interface CreateHsmResponse {
210
210
  * <p>The ARN of the HSM.</p>
211
211
  * @public
212
212
  */
213
- HsmArn?: string;
213
+ HsmArn?: string | undefined;
214
214
  }
215
215
  /**
216
216
  * <p>Contains the inputs for the <a>CreateLunaClient</a> action.</p>
@@ -221,7 +221,7 @@ export interface CreateLunaClientRequest {
221
221
  * <p>The label for the client.</p>
222
222
  * @public
223
223
  */
224
- Label?: string;
224
+ Label?: string | undefined;
225
225
  /**
226
226
  * <p>The contents of a Base64-Encoded X.509 v3 certificate to be installed on the HSMs used
227
227
  * by this client.</p>
@@ -238,7 +238,7 @@ export interface CreateLunaClientResponse {
238
238
  * <p>The ARN of the client.</p>
239
239
  * @public
240
240
  */
241
- ClientArn?: string;
241
+ ClientArn?: string | undefined;
242
242
  }
243
243
  /**
244
244
  * <p>Contains the inputs for the <a>DeleteHapg</a> action.</p>
@@ -337,48 +337,48 @@ export interface DescribeHapgResponse {
337
337
  * <p>The ARN of the high-availability partition group.</p>
338
338
  * @public
339
339
  */
340
- HapgArn?: string;
340
+ HapgArn?: string | undefined;
341
341
  /**
342
342
  * <p>The serial number of the high-availability partition group.</p>
343
343
  * @public
344
344
  */
345
- HapgSerial?: string;
345
+ HapgSerial?: string | undefined;
346
346
  /**
347
347
  * <p></p>
348
348
  * @public
349
349
  */
350
- HsmsLastActionFailed?: string[];
350
+ HsmsLastActionFailed?: string[] | undefined;
351
351
  /**
352
352
  * <p></p>
353
353
  * @public
354
354
  */
355
- HsmsPendingDeletion?: string[];
355
+ HsmsPendingDeletion?: string[] | undefined;
356
356
  /**
357
357
  * <p></p>
358
358
  * @public
359
359
  */
360
- HsmsPendingRegistration?: string[];
360
+ HsmsPendingRegistration?: string[] | undefined;
361
361
  /**
362
362
  * <p>The label for the high-availability partition group.</p>
363
363
  * @public
364
364
  */
365
- Label?: string;
365
+ Label?: string | undefined;
366
366
  /**
367
367
  * <p>The date and time the high-availability partition group was last modified.</p>
368
368
  * @public
369
369
  */
370
- LastModifiedTimestamp?: string;
370
+ LastModifiedTimestamp?: string | undefined;
371
371
  /**
372
372
  * <p>The list of partition serial numbers that belong to the high-availability partition
373
373
  * group.</p>
374
374
  * @public
375
375
  */
376
- PartitionSerialList?: string[];
376
+ PartitionSerialList?: string[] | undefined;
377
377
  /**
378
378
  * <p>The state of the high-availability partition group.</p>
379
379
  * @public
380
380
  */
381
- State?: CloudHsmObjectState;
381
+ State?: CloudHsmObjectState | undefined;
382
382
  }
383
383
  /**
384
384
  * <p>Contains the inputs for the <a>DescribeHsm</a> operation.</p>
@@ -390,13 +390,13 @@ export interface DescribeHsmRequest {
390
390
  * parameter must be specified.</p>
391
391
  * @public
392
392
  */
393
- HsmArn?: string;
393
+ HsmArn?: string | undefined;
394
394
  /**
395
395
  * <p>The serial number of the HSM. Either the <code>HsmArn</code> or the
396
396
  * <code>HsmSerialNumber</code> parameter must be specified.</p>
397
397
  * @public
398
398
  */
399
- HsmSerialNumber?: string;
399
+ HsmSerialNumber?: string | undefined;
400
400
  }
401
401
  /**
402
402
  * @public
@@ -424,32 +424,32 @@ export interface DescribeHsmResponse {
424
424
  * <p>The ARN of the HSM.</p>
425
425
  * @public
426
426
  */
427
- HsmArn?: string;
427
+ HsmArn?: string | undefined;
428
428
  /**
429
429
  * <p>The status of the HSM.</p>
430
430
  * @public
431
431
  */
432
- Status?: HsmStatus;
432
+ Status?: HsmStatus | undefined;
433
433
  /**
434
434
  * <p>Contains additional information about the status of the HSM.</p>
435
435
  * @public
436
436
  */
437
- StatusDetails?: string;
437
+ StatusDetails?: string | undefined;
438
438
  /**
439
439
  * <p>The Availability Zone that the HSM is in.</p>
440
440
  * @public
441
441
  */
442
- AvailabilityZone?: string;
442
+ AvailabilityZone?: string | undefined;
443
443
  /**
444
444
  * <p>The identifier of the elastic network interface (ENI) attached to the HSM.</p>
445
445
  * @public
446
446
  */
447
- EniId?: string;
447
+ EniId?: string | undefined;
448
448
  /**
449
449
  * <p>The IP address assigned to the HSM's ENI.</p>
450
450
  * @public
451
451
  */
452
- EniIp?: string;
452
+ EniIp?: string | undefined;
453
453
  /**
454
454
  * <p>Specifies the type of subscription for the HSM.</p>
455
455
  * <ul>
@@ -466,77 +466,77 @@ export interface DescribeHsmResponse {
466
466
  * </ul>
467
467
  * @public
468
468
  */
469
- SubscriptionType?: SubscriptionType;
469
+ SubscriptionType?: SubscriptionType | undefined;
470
470
  /**
471
471
  * <p>The subscription start date.</p>
472
472
  * @public
473
473
  */
474
- SubscriptionStartDate?: string;
474
+ SubscriptionStartDate?: string | undefined;
475
475
  /**
476
476
  * <p>The subscription end date.</p>
477
477
  * @public
478
478
  */
479
- SubscriptionEndDate?: string;
479
+ SubscriptionEndDate?: string | undefined;
480
480
  /**
481
481
  * <p>The identifier of the VPC that the HSM is in.</p>
482
482
  * @public
483
483
  */
484
- VpcId?: string;
484
+ VpcId?: string | undefined;
485
485
  /**
486
486
  * <p>The identifier of the subnet that the HSM is in.</p>
487
487
  * @public
488
488
  */
489
- SubnetId?: string;
489
+ SubnetId?: string | undefined;
490
490
  /**
491
491
  * <p>The ARN of the IAM role assigned to the HSM.</p>
492
492
  * @public
493
493
  */
494
- IamRoleArn?: string;
494
+ IamRoleArn?: string | undefined;
495
495
  /**
496
496
  * <p>The serial number of the HSM.</p>
497
497
  * @public
498
498
  */
499
- SerialNumber?: string;
499
+ SerialNumber?: string | undefined;
500
500
  /**
501
501
  * <p>The name of the HSM vendor.</p>
502
502
  * @public
503
503
  */
504
- VendorName?: string;
504
+ VendorName?: string | undefined;
505
505
  /**
506
506
  * <p>The HSM model type.</p>
507
507
  * @public
508
508
  */
509
- HsmType?: string;
509
+ HsmType?: string | undefined;
510
510
  /**
511
511
  * <p>The HSM software version.</p>
512
512
  * @public
513
513
  */
514
- SoftwareVersion?: string;
514
+ SoftwareVersion?: string | undefined;
515
515
  /**
516
516
  * <p>The public SSH key.</p>
517
517
  * @public
518
518
  */
519
- SshPublicKey?: string;
519
+ SshPublicKey?: string | undefined;
520
520
  /**
521
521
  * <p>The date and time that the SSH key was last updated.</p>
522
522
  * @public
523
523
  */
524
- SshKeyLastUpdated?: string;
524
+ SshKeyLastUpdated?: string | undefined;
525
525
  /**
526
526
  * <p>The URI of the certificate server.</p>
527
527
  * @public
528
528
  */
529
- ServerCertUri?: string;
529
+ ServerCertUri?: string | undefined;
530
530
  /**
531
531
  * <p>The date and time that the server certificate was last updated.</p>
532
532
  * @public
533
533
  */
534
- ServerCertLastUpdated?: string;
534
+ ServerCertLastUpdated?: string | undefined;
535
535
  /**
536
536
  * <p>The list of partitions on the HSM.</p>
537
537
  * @public
538
538
  */
539
- Partitions?: string[];
539
+ Partitions?: string[] | undefined;
540
540
  }
541
541
  /**
542
542
  * @public
@@ -546,12 +546,12 @@ export interface DescribeLunaClientRequest {
546
546
  * <p>The ARN of the client.</p>
547
547
  * @public
548
548
  */
549
- ClientArn?: string;
549
+ ClientArn?: string | undefined;
550
550
  /**
551
551
  * <p>The certificate fingerprint.</p>
552
552
  * @public
553
553
  */
554
- CertificateFingerprint?: string;
554
+ CertificateFingerprint?: string | undefined;
555
555
  }
556
556
  /**
557
557
  * @public
@@ -561,27 +561,27 @@ export interface DescribeLunaClientResponse {
561
561
  * <p>The ARN of the client.</p>
562
562
  * @public
563
563
  */
564
- ClientArn?: string;
564
+ ClientArn?: string | undefined;
565
565
  /**
566
566
  * <p>The certificate installed on the HSMs used by this client.</p>
567
567
  * @public
568
568
  */
569
- Certificate?: string;
569
+ Certificate?: string | undefined;
570
570
  /**
571
571
  * <p>The certificate fingerprint.</p>
572
572
  * @public
573
573
  */
574
- CertificateFingerprint?: string;
574
+ CertificateFingerprint?: string | undefined;
575
575
  /**
576
576
  * <p>The date and time the client was last modified.</p>
577
577
  * @public
578
578
  */
579
- LastModifiedTimestamp?: string;
579
+ LastModifiedTimestamp?: string | undefined;
580
580
  /**
581
581
  * <p>The label of the client.</p>
582
582
  * @public
583
583
  */
584
- Label?: string;
584
+ Label?: string | undefined;
585
585
  }
586
586
  /**
587
587
  * @public
@@ -612,17 +612,17 @@ export interface GetConfigResponse {
612
612
  * <p>The type of credentials.</p>
613
613
  * @public
614
614
  */
615
- ConfigType?: string;
615
+ ConfigType?: string | undefined;
616
616
  /**
617
617
  * <p>The chrystoki.conf configuration file.</p>
618
618
  * @public
619
619
  */
620
- ConfigFile?: string;
620
+ ConfigFile?: string | undefined;
621
621
  /**
622
622
  * <p>The certificate file containing the server.pem files of the HSMs.</p>
623
623
  * @public
624
624
  */
625
- ConfigCred?: string;
625
+ ConfigCred?: string | undefined;
626
626
  }
627
627
  /**
628
628
  * <p>Contains the inputs for the <a>ListAvailableZones</a> action.</p>
@@ -638,7 +638,7 @@ export interface ListAvailableZonesResponse {
638
638
  * <p>The list of Availability Zones that have available AWS CloudHSM capacity.</p>
639
639
  * @public
640
640
  */
641
- AZList?: string[];
641
+ AZList?: string[] | undefined;
642
642
  }
643
643
  /**
644
644
  * @public
@@ -649,7 +649,7 @@ export interface ListHapgsRequest {
649
649
  * null if this is the first call.</p>
650
650
  * @public
651
651
  */
652
- NextToken?: string;
652
+ NextToken?: string | undefined;
653
653
  }
654
654
  /**
655
655
  * @public
@@ -665,7 +665,7 @@ export interface ListHapgsResponse {
665
665
  * retrieve the next set of items.</p>
666
666
  * @public
667
667
  */
668
- NextToken?: string;
668
+ NextToken?: string | undefined;
669
669
  }
670
670
  /**
671
671
  * @public
@@ -676,7 +676,7 @@ export interface ListHsmsRequest {
676
676
  * null if this is the first call.</p>
677
677
  * @public
678
678
  */
679
- NextToken?: string;
679
+ NextToken?: string | undefined;
680
680
  }
681
681
  /**
682
682
  * <p>Contains the output of the <code>ListHsms</code> operation.</p>
@@ -687,13 +687,13 @@ export interface ListHsmsResponse {
687
687
  * <p>The list of ARNs that identify the HSMs.</p>
688
688
  * @public
689
689
  */
690
- HsmList?: string[];
690
+ HsmList?: string[] | undefined;
691
691
  /**
692
692
  * <p>If not null, more results are available. Pass this value to <code>ListHsms</code> to
693
693
  * retrieve the next set of items.</p>
694
694
  * @public
695
695
  */
696
- NextToken?: string;
696
+ NextToken?: string | undefined;
697
697
  }
698
698
  /**
699
699
  * @public
@@ -704,7 +704,7 @@ export interface ListLunaClientsRequest {
704
704
  * Pass null if this is the first call.</p>
705
705
  * @public
706
706
  */
707
- NextToken?: string;
707
+ NextToken?: string | undefined;
708
708
  }
709
709
  /**
710
710
  * @public
@@ -720,7 +720,7 @@ export interface ListLunaClientsResponse {
720
720
  * retrieve the next set of items.</p>
721
721
  * @public
722
722
  */
723
- NextToken?: string;
723
+ NextToken?: string | undefined;
724
724
  }
725
725
  /**
726
726
  * @public
@@ -755,13 +755,13 @@ export interface ModifyHapgRequest {
755
755
  * <p>The new label for the high-availability partition group.</p>
756
756
  * @public
757
757
  */
758
- Label?: string;
758
+ Label?: string | undefined;
759
759
  /**
760
760
  * <p>The list of partition serial numbers to make members of the high-availability partition
761
761
  * group.</p>
762
762
  * @public
763
763
  */
764
- PartitionSerialList?: string[];
764
+ PartitionSerialList?: string[] | undefined;
765
765
  }
766
766
  /**
767
767
  * @public
@@ -771,7 +771,7 @@ export interface ModifyHapgResponse {
771
771
  * <p>The ARN of the high-availability partition group.</p>
772
772
  * @public
773
773
  */
774
- HapgArn?: string;
774
+ HapgArn?: string | undefined;
775
775
  }
776
776
  /**
777
777
  * <p>Contains the inputs for the <a>ModifyHsm</a> operation.</p>
@@ -788,7 +788,7 @@ export interface ModifyHsmRequest {
788
788
  * Availability Zone as the current subnet.</p>
789
789
  * @public
790
790
  */
791
- SubnetId?: string;
791
+ SubnetId?: string | undefined;
792
792
  /**
793
793
  * <p>The new IP address for the elastic network interface (ENI) attached to the
794
794
  * HSM.</p>
@@ -796,23 +796,23 @@ export interface ModifyHsmRequest {
796
796
  * address will be randomly chosen from the CIDR range of the new subnet.</p>
797
797
  * @public
798
798
  */
799
- EniIp?: string;
799
+ EniIp?: string | undefined;
800
800
  /**
801
801
  * <p>The new IAM role ARN.</p>
802
802
  * @public
803
803
  */
804
- IamRoleArn?: string;
804
+ IamRoleArn?: string | undefined;
805
805
  /**
806
806
  * <p>The new external ID.</p>
807
807
  * @public
808
808
  */
809
- ExternalId?: string;
809
+ ExternalId?: string | undefined;
810
810
  /**
811
811
  * <p>The new IP address for the syslog monitoring server. The AWS CloudHSM service only supports
812
812
  * one syslog monitoring server.</p>
813
813
  * @public
814
814
  */
815
- SyslogIp?: string;
815
+ SyslogIp?: string | undefined;
816
816
  }
817
817
  /**
818
818
  * <p>Contains the output of the <a>ModifyHsm</a> operation.</p>
@@ -823,7 +823,7 @@ export interface ModifyHsmResponse {
823
823
  * <p>The ARN of the HSM.</p>
824
824
  * @public
825
825
  */
826
- HsmArn?: string;
826
+ HsmArn?: string | undefined;
827
827
  }
828
828
  /**
829
829
  * @public
@@ -848,7 +848,7 @@ export interface ModifyLunaClientResponse {
848
848
  * <p>The ARN of the client.</p>
849
849
  * @public
850
850
  */
851
- ClientArn?: string;
851
+ ClientArn?: string | undefined;
852
852
  }
853
853
  /**
854
854
  * @public
@@ -14,7 +14,7 @@ export interface AddTagsToResourceResponse {
14
14
  export declare class CloudHsmInternalException extends __BaseException {
15
15
  readonly name: "CloudHsmInternalException";
16
16
  readonly $fault: "server";
17
- retryable?: boolean;
17
+ retryable?: boolean | undefined;
18
18
  constructor(
19
19
  opts: __ExceptionOptionType<CloudHsmInternalException, __BaseException>
20
20
  );
@@ -22,7 +22,7 @@ export declare class CloudHsmInternalException extends __BaseException {
22
22
  export declare class CloudHsmServiceException extends __BaseException {
23
23
  readonly name: "CloudHsmServiceException";
24
24
  readonly $fault: "client";
25
- retryable?: boolean;
25
+ retryable?: boolean | undefined;
26
26
  constructor(
27
27
  opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>
28
28
  );
@@ -30,7 +30,7 @@ export declare class CloudHsmServiceException extends __BaseException {
30
30
  export declare class InvalidRequestException extends __BaseException {
31
31
  readonly name: "InvalidRequestException";
32
32
  readonly $fault: "client";
33
- retryable?: boolean;
33
+ retryable?: boolean | undefined;
34
34
  constructor(
35
35
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
36
36
  );
@@ -44,7 +44,7 @@ export interface CreateHapgRequest {
44
44
  Label: string | undefined;
45
45
  }
46
46
  export interface CreateHapgResponse {
47
- HapgArn?: string;
47
+ HapgArn?: string | undefined;
48
48
  }
49
49
  export declare const SubscriptionType: {
50
50
  readonly PRODUCTION: "PRODUCTION";
@@ -54,22 +54,22 @@ export type SubscriptionType =
54
54
  export interface CreateHsmRequest {
55
55
  SubnetId: string | undefined;
56
56
  SshKey: string | undefined;
57
- EniIp?: string;
57
+ EniIp?: string | undefined;
58
58
  IamRoleArn: string | undefined;
59
- ExternalId?: string;
59
+ ExternalId?: string | undefined;
60
60
  SubscriptionType: SubscriptionType | undefined;
61
- ClientToken?: string;
62
- SyslogIp?: string;
61
+ ClientToken?: string | undefined;
62
+ SyslogIp?: string | undefined;
63
63
  }
64
64
  export interface CreateHsmResponse {
65
- HsmArn?: string;
65
+ HsmArn?: string | undefined;
66
66
  }
67
67
  export interface CreateLunaClientRequest {
68
- Label?: string;
68
+ Label?: string | undefined;
69
69
  Certificate: string | undefined;
70
70
  }
71
71
  export interface CreateLunaClientResponse {
72
- ClientArn?: string;
72
+ ClientArn?: string | undefined;
73
73
  }
74
74
  export interface DeleteHapgRequest {
75
75
  HapgArn: string | undefined;
@@ -100,19 +100,19 @@ export declare const CloudHsmObjectState: {
100
100
  export type CloudHsmObjectState =
101
101
  (typeof CloudHsmObjectState)[keyof typeof CloudHsmObjectState];
102
102
  export interface DescribeHapgResponse {
103
- HapgArn?: string;
104
- HapgSerial?: string;
105
- HsmsLastActionFailed?: string[];
106
- HsmsPendingDeletion?: string[];
107
- HsmsPendingRegistration?: string[];
108
- Label?: string;
109
- LastModifiedTimestamp?: string;
110
- PartitionSerialList?: string[];
111
- State?: CloudHsmObjectState;
103
+ HapgArn?: string | undefined;
104
+ HapgSerial?: string | undefined;
105
+ HsmsLastActionFailed?: string[] | undefined;
106
+ HsmsPendingDeletion?: string[] | undefined;
107
+ HsmsPendingRegistration?: string[] | undefined;
108
+ Label?: string | undefined;
109
+ LastModifiedTimestamp?: string | undefined;
110
+ PartitionSerialList?: string[] | undefined;
111
+ State?: CloudHsmObjectState | undefined;
112
112
  }
113
113
  export interface DescribeHsmRequest {
114
- HsmArn?: string;
115
- HsmSerialNumber?: string;
114
+ HsmArn?: string | undefined;
115
+ HsmSerialNumber?: string | undefined;
116
116
  }
117
117
  export declare const HsmStatus: {
118
118
  readonly DEGRADED: "DEGRADED";
@@ -125,38 +125,38 @@ export declare const HsmStatus: {
125
125
  };
126
126
  export type HsmStatus = (typeof HsmStatus)[keyof typeof HsmStatus];
127
127
  export interface DescribeHsmResponse {
128
- HsmArn?: string;
129
- Status?: HsmStatus;
130
- StatusDetails?: string;
131
- AvailabilityZone?: string;
132
- EniId?: string;
133
- EniIp?: string;
134
- SubscriptionType?: SubscriptionType;
135
- SubscriptionStartDate?: string;
136
- SubscriptionEndDate?: string;
137
- VpcId?: string;
138
- SubnetId?: string;
139
- IamRoleArn?: string;
140
- SerialNumber?: string;
141
- VendorName?: string;
142
- HsmType?: string;
143
- SoftwareVersion?: string;
144
- SshPublicKey?: string;
145
- SshKeyLastUpdated?: string;
146
- ServerCertUri?: string;
147
- ServerCertLastUpdated?: string;
148
- Partitions?: string[];
128
+ HsmArn?: string | undefined;
129
+ Status?: HsmStatus | undefined;
130
+ StatusDetails?: string | undefined;
131
+ AvailabilityZone?: string | undefined;
132
+ EniId?: string | undefined;
133
+ EniIp?: string | undefined;
134
+ SubscriptionType?: SubscriptionType | undefined;
135
+ SubscriptionStartDate?: string | undefined;
136
+ SubscriptionEndDate?: string | undefined;
137
+ VpcId?: string | undefined;
138
+ SubnetId?: string | undefined;
139
+ IamRoleArn?: string | undefined;
140
+ SerialNumber?: string | undefined;
141
+ VendorName?: string | undefined;
142
+ HsmType?: string | undefined;
143
+ SoftwareVersion?: string | undefined;
144
+ SshPublicKey?: string | undefined;
145
+ SshKeyLastUpdated?: string | undefined;
146
+ ServerCertUri?: string | undefined;
147
+ ServerCertLastUpdated?: string | undefined;
148
+ Partitions?: string[] | undefined;
149
149
  }
150
150
  export interface DescribeLunaClientRequest {
151
- ClientArn?: string;
152
- CertificateFingerprint?: string;
151
+ ClientArn?: string | undefined;
152
+ CertificateFingerprint?: string | undefined;
153
153
  }
154
154
  export interface DescribeLunaClientResponse {
155
- ClientArn?: string;
156
- Certificate?: string;
157
- CertificateFingerprint?: string;
158
- LastModifiedTimestamp?: string;
159
- Label?: string;
155
+ ClientArn?: string | undefined;
156
+ Certificate?: string | undefined;
157
+ CertificateFingerprint?: string | undefined;
158
+ LastModifiedTimestamp?: string | undefined;
159
+ Label?: string | undefined;
160
160
  }
161
161
  export interface GetConfigRequest {
162
162
  ClientArn: string | undefined;
@@ -164,34 +164,34 @@ export interface GetConfigRequest {
164
164
  HapgList: string[] | undefined;
165
165
  }
166
166
  export interface GetConfigResponse {
167
- ConfigType?: string;
168
- ConfigFile?: string;
169
- ConfigCred?: string;
167
+ ConfigType?: string | undefined;
168
+ ConfigFile?: string | undefined;
169
+ ConfigCred?: string | undefined;
170
170
  }
171
171
  export interface ListAvailableZonesRequest {}
172
172
  export interface ListAvailableZonesResponse {
173
- AZList?: string[];
173
+ AZList?: string[] | undefined;
174
174
  }
175
175
  export interface ListHapgsRequest {
176
- NextToken?: string;
176
+ NextToken?: string | undefined;
177
177
  }
178
178
  export interface ListHapgsResponse {
179
179
  HapgList: string[] | undefined;
180
- NextToken?: string;
180
+ NextToken?: string | undefined;
181
181
  }
182
182
  export interface ListHsmsRequest {
183
- NextToken?: string;
183
+ NextToken?: string | undefined;
184
184
  }
185
185
  export interface ListHsmsResponse {
186
- HsmList?: string[];
187
- NextToken?: string;
186
+ HsmList?: string[] | undefined;
187
+ NextToken?: string | undefined;
188
188
  }
189
189
  export interface ListLunaClientsRequest {
190
- NextToken?: string;
190
+ NextToken?: string | undefined;
191
191
  }
192
192
  export interface ListLunaClientsResponse {
193
193
  ClientList: string[] | undefined;
194
- NextToken?: string;
194
+ NextToken?: string | undefined;
195
195
  }
196
196
  export interface ListTagsForResourceRequest {
197
197
  ResourceArn: string | undefined;
@@ -201,29 +201,29 @@ export interface ListTagsForResourceResponse {
201
201
  }
202
202
  export interface ModifyHapgRequest {
203
203
  HapgArn: string | undefined;
204
- Label?: string;
205
- PartitionSerialList?: string[];
204
+ Label?: string | undefined;
205
+ PartitionSerialList?: string[] | undefined;
206
206
  }
207
207
  export interface ModifyHapgResponse {
208
- HapgArn?: string;
208
+ HapgArn?: string | undefined;
209
209
  }
210
210
  export interface ModifyHsmRequest {
211
211
  HsmArn: string | undefined;
212
- SubnetId?: string;
213
- EniIp?: string;
214
- IamRoleArn?: string;
215
- ExternalId?: string;
216
- SyslogIp?: string;
212
+ SubnetId?: string | undefined;
213
+ EniIp?: string | undefined;
214
+ IamRoleArn?: string | undefined;
215
+ ExternalId?: string | undefined;
216
+ SyslogIp?: string | undefined;
217
217
  }
218
218
  export interface ModifyHsmResponse {
219
- HsmArn?: string;
219
+ HsmArn?: string | undefined;
220
220
  }
221
221
  export interface ModifyLunaClientRequest {
222
222
  ClientArn: string | undefined;
223
223
  Certificate: string | undefined;
224
224
  }
225
225
  export interface ModifyLunaClientResponse {
226
- ClientArn?: string;
226
+ ClientArn?: string | undefined;
227
227
  }
228
228
  export interface RemoveTagsFromResourceRequest {
229
229
  ResourceArn: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudhsm",
3
3
  "description": "AWS SDK for JavaScript Cloudhsm Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cloudhsm",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",