@aws-sdk/client-cloudhsm-v2 3.533.0 → 3.535.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist-types/CloudHSMV2.d.ts +3 -1
  2. package/dist-types/CloudHSMV2Client.d.ts +1 -1
  3. package/dist-types/commands/CopyBackupToRegionCommand.d.ts +2 -1
  4. package/dist-types/commands/CreateClusterCommand.d.ts +2 -1
  5. package/dist-types/commands/CreateHsmCommand.d.ts +2 -1
  6. package/dist-types/commands/DeleteBackupCommand.d.ts +2 -1
  7. package/dist-types/commands/DeleteClusterCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteHsmCommand.d.ts +2 -1
  9. package/dist-types/commands/DescribeBackupsCommand.d.ts +2 -1
  10. package/dist-types/commands/DescribeClustersCommand.d.ts +2 -1
  11. package/dist-types/commands/InitializeClusterCommand.d.ts +2 -1
  12. package/dist-types/commands/ListTagsCommand.d.ts +2 -1
  13. package/dist-types/commands/ModifyBackupAttributesCommand.d.ts +2 -1
  14. package/dist-types/commands/ModifyClusterCommand.d.ts +2 -1
  15. package/dist-types/commands/RestoreBackupCommand.d.ts +2 -1
  16. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  17. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  18. package/dist-types/models/models_0.d.ts +116 -116
  19. package/dist-types/ts3.4/CloudHSMV2.d.ts +2 -0
  20. package/dist-types/ts3.4/commands/CopyBackupToRegionCommand.d.ts +9 -0
  21. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/InitializeClusterCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/ModifyBackupAttributesCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/ModifyClusterCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/RestoreBackupCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  35. package/package.json +40 -40
@@ -55,12 +55,14 @@ export interface CloudHSMV2 {
55
55
  /**
56
56
  * @see {@link DescribeBackupsCommand}
57
57
  */
58
+ describeBackups(): Promise<DescribeBackupsCommandOutput>;
58
59
  describeBackups(args: DescribeBackupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBackupsCommandOutput>;
59
60
  describeBackups(args: DescribeBackupsCommandInput, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
60
61
  describeBackups(args: DescribeBackupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
61
62
  /**
62
63
  * @see {@link DescribeClustersCommand}
63
64
  */
65
+ describeClusters(): Promise<DescribeClustersCommandOutput>;
64
66
  describeClusters(args: DescribeClustersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClustersCommandOutput>;
65
67
  describeClusters(args: DescribeClustersCommandInput, cb: (err: any, data?: DescribeClustersCommandOutput) => void): void;
66
68
  describeClusters(args: DescribeClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClustersCommandOutput) => void): void;
@@ -108,9 +110,9 @@ export interface CloudHSMV2 {
108
110
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
109
111
  }
110
112
  /**
111
- * @public
112
113
  * <p>For more information about AWS CloudHSM, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a> and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS
113
114
  * CloudHSM User Guide</a>.</p>
115
+ * @public
114
116
  */
115
117
  export declare class CloudHSMV2 extends CloudHSMV2Client implements CloudHSMV2 {
116
118
  }
@@ -166,9 +166,9 @@ export type CloudHSMV2ClientResolvedConfigType = __SmithyResolvedConfiguration<_
166
166
  export interface CloudHSMV2ClientResolvedConfig extends CloudHSMV2ClientResolvedConfigType {
167
167
  }
168
168
  /**
169
- * @public
170
169
  * <p>For more information about AWS CloudHSM, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a> and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS
171
170
  * CloudHSM User Guide</a>.</p>
171
+ * @public
172
172
  */
173
173
  export declare class CloudHSMV2Client extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CloudHSMV2ClientResolvedConfig> {
174
174
  /**
@@ -22,10 +22,10 @@ export interface CopyBackupToRegionCommandOutput extends CopyBackupToRegionRespo
22
22
  }
23
23
  declare const CopyBackupToRegionCommand_base: {
24
24
  new (input: CopyBackupToRegionCommandInput): import("@smithy/smithy-client").CommandImpl<CopyBackupToRegionCommandInput, CopyBackupToRegionCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CopyBackupToRegionCommandInput): import("@smithy/smithy-client").CommandImpl<CopyBackupToRegionCommandInput, CopyBackupToRegionCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Copy an AWS CloudHSM cluster backup to a different region.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -86,6 +86,7 @@ declare const CopyBackupToRegionCommand_base: {
86
86
  * @throws {@link CloudHSMV2ServiceException}
87
87
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class CopyBackupToRegionCommand extends CopyBackupToRegionCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
22
22
  }
23
23
  declare const CreateClusterCommand_base: {
24
24
  new (input: CreateClusterCommandInput): import("@smithy/smithy-client").CommandImpl<CreateClusterCommandInput, CreateClusterCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateClusterCommandInput): import("@smithy/smithy-client").CommandImpl<CreateClusterCommandInput, CreateClusterCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a new AWS CloudHSM cluster.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -131,6 +131,7 @@ declare const CreateClusterCommand_base: {
131
131
  * @throws {@link CloudHSMV2ServiceException}
132
132
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
133
133
  *
134
+ * @public
134
135
  */
135
136
  export declare class CreateClusterCommand extends CreateClusterCommand_base {
136
137
  }
@@ -22,10 +22,10 @@ export interface CreateHsmCommandOutput extends CreateHsmResponse, __MetadataBea
22
22
  }
23
23
  declare const CreateHsmCommand_base: {
24
24
  new (input: CreateHsmCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHsmCommandInput, CreateHsmCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateHsmCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHsmCommandInput, CreateHsmCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a new hardware security module (HSM) in the specified AWS CloudHSM
30
30
  * cluster.</p>
31
31
  * @example
@@ -83,6 +83,7 @@ declare const CreateHsmCommand_base: {
83
83
  * @throws {@link CloudHSMV2ServiceException}
84
84
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
85
85
  *
86
+ * @public
86
87
  */
87
88
  export declare class CreateHsmCommand extends CreateHsmCommand_base {
88
89
  }
@@ -22,10 +22,10 @@ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __Metad
22
22
  }
23
23
  declare const DeleteBackupCommand_base: {
24
24
  new (input: DeleteBackupCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBackupCommandInput, DeleteBackupCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteBackupCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBackupCommandInput, DeleteBackupCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a specified AWS CloudHSM backup. A backup can be restored up to 7 days
30
30
  * after the DeleteBackup request is made. For more information on restoring a backup, see
31
31
  * <a>RestoreBackup</a>.</p>
@@ -90,6 +90,7 @@ declare const DeleteBackupCommand_base: {
90
90
  * @throws {@link CloudHSMV2ServiceException}
91
91
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
92
92
  *
93
+ * @public
93
94
  */
94
95
  export declare class DeleteBackupCommand extends DeleteBackupCommand_base {
95
96
  }
@@ -22,10 +22,10 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
22
22
  }
23
23
  declare const DeleteClusterCommand_base: {
24
24
  new (input: DeleteClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteClusterCommandInput, DeleteClusterCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteClusterCommandInput, DeleteClusterCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the specified AWS CloudHSM cluster. Before you can delete a cluster, you must
30
30
  * delete all HSMs in the cluster. To see if the cluster contains any HSMs, use <a>DescribeClusters</a>. To delete an HSM, use <a>DeleteHsm</a>.</p>
31
31
  * @example
@@ -118,6 +118,7 @@ declare const DeleteClusterCommand_base: {
118
118
  * @throws {@link CloudHSMV2ServiceException}
119
119
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
120
120
  *
121
+ * @public
121
122
  */
122
123
  export declare class DeleteClusterCommand extends DeleteClusterCommand_base {
123
124
  }
@@ -22,10 +22,10 @@ export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBea
22
22
  }
23
23
  declare const DeleteHsmCommand_base: {
24
24
  new (input: DeleteHsmCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteHsmCommandInput, DeleteHsmCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteHsmCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteHsmCommandInput, DeleteHsmCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the specified HSM. To specify an HSM, you can use its identifier (ID), the IP
30
30
  * address of the HSM's elastic network interface (ENI), or the ID of the HSM's ENI. You need to
31
31
  * specify only one of these values. To find these values, use <a>DescribeClusters</a>.</p>
@@ -76,6 +76,7 @@ declare const DeleteHsmCommand_base: {
76
76
  * @throws {@link CloudHSMV2ServiceException}
77
77
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
78
78
  *
79
+ * @public
79
80
  */
80
81
  export declare class DeleteHsmCommand extends DeleteHsmCommand_base {
81
82
  }
@@ -22,10 +22,10 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
22
22
  }
23
23
  declare const DescribeBackupsCommand_base: {
24
24
  new (input: DescribeBackupsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeBackupsCommandInput, DescribeBackupsCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [DescribeBackupsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeBackupsCommandInput, DescribeBackupsCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets information about backups of AWS CloudHSM clusters.</p>
30
30
  * <p>This is a paginated operation, which means that each response might contain only a
31
31
  * subset of all the backups. When the response contains only a subset of backups, it includes a
@@ -106,6 +106,7 @@ declare const DescribeBackupsCommand_base: {
106
106
  * @throws {@link CloudHSMV2ServiceException}
107
107
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
108
108
  *
109
+ * @public
109
110
  */
110
111
  export declare class DescribeBackupsCommand extends DescribeBackupsCommand_base {
111
112
  }
@@ -22,10 +22,10 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse,
22
22
  }
23
23
  declare const DescribeClustersCommand_base: {
24
24
  new (input: DescribeClustersCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeClustersCommandInput, DescribeClustersCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [DescribeClustersCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeClustersCommandInput, DescribeClustersCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets information about AWS CloudHSM clusters.</p>
30
30
  * <p>This is a paginated operation, which means that each response might contain only a
31
31
  * subset of all the clusters. When the response contains only a subset of clusters, it includes
@@ -127,6 +127,7 @@ declare const DescribeClustersCommand_base: {
127
127
  * @throws {@link CloudHSMV2ServiceException}
128
128
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
129
129
  *
130
+ * @public
130
131
  */
131
132
  export declare class DescribeClustersCommand extends DescribeClustersCommand_base {
132
133
  }
@@ -22,10 +22,10 @@ export interface InitializeClusterCommandOutput extends InitializeClusterRespons
22
22
  }
23
23
  declare const InitializeClusterCommand_base: {
24
24
  new (input: InitializeClusterCommandInput): import("@smithy/smithy-client").CommandImpl<InitializeClusterCommandInput, InitializeClusterCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: InitializeClusterCommandInput): import("@smithy/smithy-client").CommandImpl<InitializeClusterCommandInput, InitializeClusterCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Claims an AWS CloudHSM cluster by submitting the cluster certificate issued by your
30
30
  * issuing certificate authority (CA) and the CA's root certificate. Before you can claim a
31
31
  * cluster, you must sign the cluster's certificate signing request (CSR) with your issuing CA.
@@ -77,6 +77,7 @@ declare const InitializeClusterCommand_base: {
77
77
  * @throws {@link CloudHSMV2ServiceException}
78
78
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
79
79
  *
80
+ * @public
80
81
  */
81
82
  export declare class InitializeClusterCommand extends InitializeClusterCommand_base {
82
83
  }
@@ -22,10 +22,10 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
22
22
  }
23
23
  declare const ListTagsCommand_base: {
24
24
  new (input: ListTagsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsCommandInput, ListTagsCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsCommandInput, ListTagsCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets a list of tags for the specified AWS CloudHSM cluster.</p>
30
30
  * <p>This is a paginated operation, which means that each response might contain only a
31
31
  * subset of all the tags. When the response contains only a subset of tags, it includes a
@@ -87,6 +87,7 @@ declare const ListTagsCommand_base: {
87
87
  * @throws {@link CloudHSMV2ServiceException}
88
88
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
89
89
  *
90
+ * @public
90
91
  */
91
92
  export declare class ListTagsCommand extends ListTagsCommand_base {
92
93
  }
@@ -22,10 +22,10 @@ export interface ModifyBackupAttributesCommandOutput extends ModifyBackupAttribu
22
22
  }
23
23
  declare const ModifyBackupAttributesCommand_base: {
24
24
  new (input: ModifyBackupAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyBackupAttributesCommandInput, ModifyBackupAttributesCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ModifyBackupAttributesCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyBackupAttributesCommandInput, ModifyBackupAttributesCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Modifies attributes for AWS CloudHSM backup.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -89,6 +89,7 @@ declare const ModifyBackupAttributesCommand_base: {
89
89
  * @throws {@link CloudHSMV2ServiceException}
90
90
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
91
91
  *
92
+ * @public
92
93
  */
93
94
  export declare class ModifyBackupAttributesCommand extends ModifyBackupAttributesCommand_base {
94
95
  }
@@ -22,10 +22,10 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResponse, __Met
22
22
  }
23
23
  declare const ModifyClusterCommand_base: {
24
24
  new (input: ModifyClusterCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyClusterCommandInput, ModifyClusterCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ModifyClusterCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyClusterCommandInput, ModifyClusterCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Modifies AWS CloudHSM cluster.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -118,6 +118,7 @@ declare const ModifyClusterCommand_base: {
118
118
  * @throws {@link CloudHSMV2ServiceException}
119
119
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
120
120
  *
121
+ * @public
121
122
  */
122
123
  export declare class ModifyClusterCommand extends ModifyClusterCommand_base {
123
124
  }
@@ -22,10 +22,10 @@ export interface RestoreBackupCommandOutput extends RestoreBackupResponse, __Met
22
22
  }
23
23
  declare const RestoreBackupCommand_base: {
24
24
  new (input: RestoreBackupCommandInput): import("@smithy/smithy-client").CommandImpl<RestoreBackupCommandInput, RestoreBackupCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: RestoreBackupCommandInput): import("@smithy/smithy-client").CommandImpl<RestoreBackupCommandInput, RestoreBackupCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Restores a specified AWS CloudHSM backup that is in the
30
30
  * <code>PENDING_DELETION</code> state. For mor information on deleting a backup, see
31
31
  * <a>DeleteBackup</a>.</p>
@@ -90,6 +90,7 @@ declare const RestoreBackupCommand_base: {
90
90
  * @throws {@link CloudHSMV2ServiceException}
91
91
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
92
92
  *
93
+ * @public
93
94
  */
94
95
  export declare class RestoreBackupCommand extends RestoreBackupCommand_base {
95
96
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Adds or overwrites one or more tags for the specified AWS CloudHSM cluster.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -78,6 +78,7 @@ declare const TagResourceCommand_base: {
78
78
  * @throws {@link CloudHSMV2ServiceException}
79
79
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
80
80
  *
81
+ * @public
81
82
  */
82
83
  export declare class TagResourceCommand extends TagResourceCommand_base {
83
84
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes the specified tag or tags from the specified AWS CloudHSM cluster.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -75,6 +75,7 @@ declare const UntagResourceCommand_base: {
75
75
  * @throws {@link CloudHSMV2ServiceException}
76
76
  * <p>Base exception class for all service exceptions from CloudHSMV2 service.</p>
77
77
  *
78
+ * @public
78
79
  */
79
80
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
80
81
  }