@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.
Files changed (57) hide show
  1. package/dist-cjs/commands/CopyBackupToRegionCommand.js +2 -3
  2. package/dist-cjs/commands/CreateClusterCommand.js +2 -3
  3. package/dist-cjs/commands/CreateHsmCommand.js +2 -3
  4. package/dist-cjs/commands/DeleteBackupCommand.js +2 -3
  5. package/dist-cjs/commands/DeleteClusterCommand.js +2 -3
  6. package/dist-cjs/commands/DeleteHsmCommand.js +2 -3
  7. package/dist-cjs/commands/DescribeBackupsCommand.js +2 -3
  8. package/dist-cjs/commands/DescribeClustersCommand.js +2 -3
  9. package/dist-cjs/commands/InitializeClusterCommand.js +2 -3
  10. package/dist-cjs/commands/ListTagsCommand.js +2 -3
  11. package/dist-cjs/commands/ModifyBackupAttributesCommand.js +2 -3
  12. package/dist-cjs/commands/ModifyClusterCommand.js +2 -3
  13. package/dist-cjs/commands/RestoreBackupCommand.js +2 -3
  14. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  15. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  16. package/dist-cjs/models/models_0.js +1 -149
  17. package/dist-es/commands/CopyBackupToRegionCommand.js +2 -3
  18. package/dist-es/commands/CreateClusterCommand.js +2 -3
  19. package/dist-es/commands/CreateHsmCommand.js +2 -3
  20. package/dist-es/commands/DeleteBackupCommand.js +2 -3
  21. package/dist-es/commands/DeleteClusterCommand.js +2 -3
  22. package/dist-es/commands/DeleteHsmCommand.js +2 -3
  23. package/dist-es/commands/DescribeBackupsCommand.js +2 -3
  24. package/dist-es/commands/DescribeClustersCommand.js +2 -3
  25. package/dist-es/commands/InitializeClusterCommand.js +2 -3
  26. package/dist-es/commands/ListTagsCommand.js +2 -3
  27. package/dist-es/commands/ModifyBackupAttributesCommand.js +2 -3
  28. package/dist-es/commands/ModifyClusterCommand.js +2 -3
  29. package/dist-es/commands/RestoreBackupCommand.js +2 -3
  30. package/dist-es/commands/TagResourceCommand.js +2 -3
  31. package/dist-es/commands/UntagResourceCommand.js +2 -3
  32. package/dist-es/models/models_0.js +0 -111
  33. package/dist-types/CloudHSMV2.d.ts +16 -0
  34. package/dist-types/CloudHSMV2Client.d.ts +24 -4
  35. package/dist-types/commands/CopyBackupToRegionCommand.d.ts +16 -0
  36. package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
  37. package/dist-types/commands/CreateHsmCommand.d.ts +16 -0
  38. package/dist-types/commands/DeleteBackupCommand.d.ts +16 -0
  39. package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
  40. package/dist-types/commands/DeleteHsmCommand.d.ts +16 -0
  41. package/dist-types/commands/DescribeBackupsCommand.d.ts +16 -0
  42. package/dist-types/commands/DescribeClustersCommand.d.ts +16 -0
  43. package/dist-types/commands/InitializeClusterCommand.d.ts +16 -0
  44. package/dist-types/commands/ListTagsCommand.d.ts +16 -0
  45. package/dist-types/commands/ModifyBackupAttributesCommand.d.ts +16 -0
  46. package/dist-types/commands/ModifyClusterCommand.d.ts +16 -0
  47. package/dist-types/commands/RestoreBackupCommand.d.ts +16 -0
  48. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  49. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  50. package/dist-types/models/CloudHSMV2ServiceException.d.ts +2 -0
  51. package/dist-types/models/models_0.d.ts +118 -148
  52. package/dist-types/pagination/DescribeBackupsPaginator.d.ts +3 -0
  53. package/dist-types/pagination/DescribeClustersPaginator.d.ts +3 -0
  54. package/dist-types/pagination/Interfaces.d.ts +3 -0
  55. package/dist-types/pagination/ListTagsPaginator.d.ts +3 -0
  56. package/dist-types/ts3.4/models/models_0.d.ts +0 -101
  57. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteClusterCommand}.
8
10
  */
9
11
  export interface DeleteClusterCommandInput extends DeleteClusterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteClusterCommand}.
13
17
  */
14
18
  export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the specified AWS CloudHSM cluster. Before you can delete a cluster, you must
18
23
  * 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>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DeleteClusterCommandInput - {@link DeleteClusterCommandInput}
35
+ * @returns {@link DeleteClusterCommandOutput}
29
36
  * @see {@link DeleteClusterCommandInput} for command's `input` shape.
30
37
  * @see {@link DeleteClusterCommandOutput} for command's `response` shape.
31
38
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -56,11 +63,20 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
56
63
  export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, CloudHSMV2ClientResolvedConfig> {
57
64
  readonly input: DeleteClusterCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: DeleteClusterCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { DeleteHsmRequest, DeleteHsmResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteHsmCommand}.
8
10
  */
9
11
  export interface DeleteHsmCommandInput extends DeleteHsmRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteHsmCommand}.
13
17
  */
14
18
  export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the specified HSM. To specify an HSM, you can use its identifier (ID), the IP
18
23
  * address of the HSM's elastic network interface (ENI), or the ID of the HSM's ENI. You need to
19
24
  * specify only one of these values. To find these values, use <a>DescribeClusters</a>.</p>
@@ -27,6 +32,8 @@ export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBea
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeleteHsmCommandInput - {@link DeleteHsmCommandInput}
36
+ * @returns {@link DeleteHsmCommandOutput}
30
37
  * @see {@link DeleteHsmCommandInput} for command's `input` shape.
31
38
  * @see {@link DeleteHsmCommandOutput} for command's `response` shape.
32
39
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -54,11 +61,20 @@ export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBea
54
61
  export declare class DeleteHsmCommand extends $Command<DeleteHsmCommandInput, DeleteHsmCommandOutput, CloudHSMV2ClientResolvedConfig> {
55
62
  readonly input: DeleteHsmCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: DeleteHsmCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteHsmCommandInput, DeleteHsmCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { DescribeBackupsRequest, DescribeBackupsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeBackupsCommand}.
8
10
  */
9
11
  export interface DescribeBackupsCommandInput extends DescribeBackupsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeBackupsCommand}.
13
17
  */
14
18
  export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about backups of AWS CloudHSM clusters.</p>
18
23
  * <p>This is a paginated operation, which means that each response might contain only a
19
24
  * subset of all the backups. When the response contains only a subset of backups, it includes a
@@ -30,6 +35,8 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param DescribeBackupsCommandInput - {@link DescribeBackupsCommandInput}
39
+ * @returns {@link DescribeBackupsCommandOutput}
33
40
  * @see {@link DescribeBackupsCommandInput} for command's `input` shape.
34
41
  * @see {@link DescribeBackupsCommandOutput} for command's `response` shape.
35
42
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -60,11 +67,20 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
60
67
  export declare class DescribeBackupsCommand extends $Command<DescribeBackupsCommandInput, DescribeBackupsCommandOutput, CloudHSMV2ClientResolvedConfig> {
61
68
  readonly input: DescribeBackupsCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: DescribeBackupsCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBackupsCommandInput, DescribeBackupsCommandOutput>;
78
+ /**
79
+ * @internal
80
+ */
68
81
  private serialize;
82
+ /**
83
+ * @internal
84
+ */
69
85
  private deserialize;
70
86
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeClustersCommand}.
8
10
  */
9
11
  export interface DescribeClustersCommandInput extends DescribeClustersRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeClustersCommand}.
13
17
  */
14
18
  export interface DescribeClustersCommandOutput extends DescribeClustersResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about AWS CloudHSM clusters.</p>
18
23
  * <p>This is a paginated operation, which means that each response might contain only a
19
24
  * subset of all the clusters. When the response contains only a subset of clusters, it includes
@@ -30,6 +35,8 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse,
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param DescribeClustersCommandInput - {@link DescribeClustersCommandInput}
39
+ * @returns {@link DescribeClustersCommandOutput}
33
40
  * @see {@link DescribeClustersCommandInput} for command's `input` shape.
34
41
  * @see {@link DescribeClustersCommandOutput} for command's `response` shape.
35
42
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -56,11 +63,20 @@ export interface DescribeClustersCommandOutput extends DescribeClustersResponse,
56
63
  export declare class DescribeClustersCommand extends $Command<DescribeClustersCommandInput, DescribeClustersCommandOutput, CloudHSMV2ClientResolvedConfig> {
57
64
  readonly input: DescribeClustersCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: DescribeClustersCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClustersCommandInput, DescribeClustersCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { InitializeClusterRequest, InitializeClusterResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link InitializeClusterCommand}.
8
10
  */
9
11
  export interface InitializeClusterCommandInput extends InitializeClusterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link InitializeClusterCommand}.
13
17
  */
14
18
  export interface InitializeClusterCommandOutput extends InitializeClusterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Claims an AWS CloudHSM cluster by submitting the cluster certificate issued by your
18
23
  * issuing certificate authority (CA) and the CA's root certificate. Before you can claim a
19
24
  * cluster, you must sign the cluster's certificate signing request (CSR) with your issuing CA.
@@ -28,6 +33,8 @@ export interface InitializeClusterCommandOutput extends InitializeClusterRespons
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param InitializeClusterCommandInput - {@link InitializeClusterCommandInput}
37
+ * @returns {@link InitializeClusterCommandOutput}
31
38
  * @see {@link InitializeClusterCommandInput} for command's `input` shape.
32
39
  * @see {@link InitializeClusterCommandOutput} for command's `response` shape.
33
40
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -55,11 +62,20 @@ export interface InitializeClusterCommandOutput extends InitializeClusterRespons
55
62
  export declare class InitializeClusterCommand extends $Command<InitializeClusterCommandInput, InitializeClusterCommandOutput, CloudHSMV2ClientResolvedConfig> {
56
63
  readonly input: InitializeClusterCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: InitializeClusterCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<InitializeClusterCommandInput, InitializeClusterCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsCommand}.
8
10
  */
9
11
  export interface ListTagsCommandInput extends ListTagsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsCommand}.
13
17
  */
14
18
  export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets a list of tags for the specified AWS CloudHSM cluster.</p>
18
23
  * <p>This is a paginated operation, which means that each response might contain only a
19
24
  * subset of all the tags. When the response contains only a subset of tags, it includes a
@@ -30,6 +35,8 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ListTagsCommandInput - {@link ListTagsCommandInput}
39
+ * @returns {@link ListTagsCommandOutput}
33
40
  * @see {@link ListTagsCommandInput} for command's `input` shape.
34
41
  * @see {@link ListTagsCommandOutput} for command's `response` shape.
35
42
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -60,11 +67,20 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
60
67
  export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, CloudHSMV2ClientResolvedConfig> {
61
68
  readonly input: ListTagsCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: ListTagsCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
78
+ /**
79
+ * @internal
80
+ */
68
81
  private serialize;
82
+ /**
83
+ * @internal
84
+ */
69
85
  private deserialize;
70
86
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { ModifyBackupAttributesRequest, ModifyBackupAttributesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ModifyBackupAttributesCommand}.
8
10
  */
9
11
  export interface ModifyBackupAttributesCommandInput extends ModifyBackupAttributesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ModifyBackupAttributesCommand}.
13
17
  */
14
18
  export interface ModifyBackupAttributesCommandOutput extends ModifyBackupAttributesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Modifies attributes for AWS CloudHSM backup.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ModifyBackupAttributesCommandOutput extends ModifyBackupAttribu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ModifyBackupAttributesCommandInput - {@link ModifyBackupAttributesCommandInput}
34
+ * @returns {@link ModifyBackupAttributesCommandOutput}
28
35
  * @see {@link ModifyBackupAttributesCommandInput} for command's `input` shape.
29
36
  * @see {@link ModifyBackupAttributesCommandOutput} for command's `response` shape.
30
37
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -52,11 +59,20 @@ export interface ModifyBackupAttributesCommandOutput extends ModifyBackupAttribu
52
59
  export declare class ModifyBackupAttributesCommand extends $Command<ModifyBackupAttributesCommandInput, ModifyBackupAttributesCommandOutput, CloudHSMV2ClientResolvedConfig> {
53
60
  readonly input: ModifyBackupAttributesCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ModifyBackupAttributesCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifyBackupAttributesCommandInput, ModifyBackupAttributesCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { ModifyClusterRequest, ModifyClusterResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ModifyClusterCommand}.
8
10
  */
9
11
  export interface ModifyClusterCommandInput extends ModifyClusterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ModifyClusterCommand}.
13
17
  */
14
18
  export interface ModifyClusterCommandOutput extends ModifyClusterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Modifies AWS CloudHSM cluster.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ModifyClusterCommandInput - {@link ModifyClusterCommandInput}
34
+ * @returns {@link ModifyClusterCommandOutput}
28
35
  * @see {@link ModifyClusterCommandInput} for command's `input` shape.
29
36
  * @see {@link ModifyClusterCommandOutput} for command's `response` shape.
30
37
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -52,11 +59,20 @@ export interface ModifyClusterCommandOutput extends ModifyClusterResponse, __Met
52
59
  export declare class ModifyClusterCommand extends $Command<ModifyClusterCommandInput, ModifyClusterCommandOutput, CloudHSMV2ClientResolvedConfig> {
53
60
  readonly input: ModifyClusterCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ModifyClusterCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifyClusterCommandInput, ModifyClusterCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { RestoreBackupRequest, RestoreBackupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RestoreBackupCommand}.
8
10
  */
9
11
  export interface RestoreBackupCommandInput extends RestoreBackupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RestoreBackupCommand}.
13
17
  */
14
18
  export interface RestoreBackupCommandOutput extends RestoreBackupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Restores a specified AWS CloudHSM backup that is in the
18
23
  * <code>PENDING_DELETION</code> state. For mor information on deleting a backup, see
19
24
  * <a>DeleteBackup</a>.</p>
@@ -27,6 +32,8 @@ export interface RestoreBackupCommandOutput extends RestoreBackupResponse, __Met
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param RestoreBackupCommandInput - {@link RestoreBackupCommandInput}
36
+ * @returns {@link RestoreBackupCommandOutput}
30
37
  * @see {@link RestoreBackupCommandInput} for command's `input` shape.
31
38
  * @see {@link RestoreBackupCommandOutput} for command's `response` shape.
32
39
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -54,11 +61,20 @@ export interface RestoreBackupCommandOutput extends RestoreBackupResponse, __Met
54
61
  export declare class RestoreBackupCommand extends $Command<RestoreBackupCommandInput, RestoreBackupCommandOutput, CloudHSMV2ClientResolvedConfig> {
55
62
  readonly input: RestoreBackupCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: RestoreBackupCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreBackupCommandInput, RestoreBackupCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds or overwrites one or more tags for the specified AWS CloudHSM cluster.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -55,11 +62,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
55
62
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CloudHSMV2ClientResolvedConfig> {
56
63
  readonly input: TagResourceCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: TagResourceCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes the specified tag or tags from the specified AWS CloudHSM cluster.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link CloudHSMV2ClientResolvedConfig | config} for CloudHSMV2Client's `config` shape.
@@ -55,11 +62,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
55
62
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CloudHSMV2ClientResolvedConfig> {
56
63
  readonly input: UntagResourceCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: UntagResourceCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from CloudHSMV2 service.
4
6
  */
5
7
  export declare class CloudHSMV2ServiceException extends __ServiceException {