@aws-sdk/client-cloudhsm 3.533.0 → 3.536.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/CloudHSM.d.ts +7 -1
- package/dist-types/CloudHSMClient.d.ts +1 -1
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +4 -3
- package/dist-types/commands/CreateHapgCommand.d.ts +4 -3
- package/dist-types/commands/CreateHsmCommand.d.ts +4 -3
- package/dist-types/commands/CreateLunaClientCommand.d.ts +4 -3
- package/dist-types/commands/DeleteHapgCommand.d.ts +4 -3
- package/dist-types/commands/DeleteHsmCommand.d.ts +4 -3
- package/dist-types/commands/DeleteLunaClientCommand.d.ts +4 -3
- package/dist-types/commands/DescribeHapgCommand.d.ts +4 -3
- package/dist-types/commands/DescribeHsmCommand.d.ts +4 -3
- package/dist-types/commands/DescribeLunaClientCommand.d.ts +4 -3
- package/dist-types/commands/GetConfigCommand.d.ts +4 -3
- package/dist-types/commands/ListAvailableZonesCommand.d.ts +4 -3
- package/dist-types/commands/ListHapgsCommand.d.ts +4 -3
- package/dist-types/commands/ListHsmsCommand.d.ts +4 -3
- package/dist-types/commands/ListLunaClientsCommand.d.ts +4 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -3
- package/dist-types/commands/ModifyHapgCommand.d.ts +4 -3
- package/dist-types/commands/ModifyHsmCommand.d.ts +4 -3
- package/dist-types/commands/ModifyLunaClientCommand.d.ts +4 -3
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +4 -3
- package/dist-types/models/models_0.d.ts +125 -125
- package/dist-types/ts3.4/CloudHSM.d.ts +6 -0
- package/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateHapgCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateLunaClientCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteHapgCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteLunaClientCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeHapgCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeHsmCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeLunaClientCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAvailableZonesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListHapgsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListHsmsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListLunaClientsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ModifyHapgCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ModifyHsmCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ModifyLunaClientCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +9 -0
- package/package.json +40 -40
package/dist-types/CloudHSM.d.ts
CHANGED
|
@@ -72,12 +72,14 @@ export interface CloudHSM {
|
|
|
72
72
|
/**
|
|
73
73
|
* @see {@link DescribeHsmCommand}
|
|
74
74
|
*/
|
|
75
|
+
describeHsm(): Promise<DescribeHsmCommandOutput>;
|
|
75
76
|
describeHsm(args: DescribeHsmCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHsmCommandOutput>;
|
|
76
77
|
describeHsm(args: DescribeHsmCommandInput, cb: (err: any, data?: DescribeHsmCommandOutput) => void): void;
|
|
77
78
|
describeHsm(args: DescribeHsmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHsmCommandOutput) => void): void;
|
|
78
79
|
/**
|
|
79
80
|
* @see {@link DescribeLunaClientCommand}
|
|
80
81
|
*/
|
|
82
|
+
describeLunaClient(): Promise<DescribeLunaClientCommandOutput>;
|
|
81
83
|
describeLunaClient(args: DescribeLunaClientCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLunaClientCommandOutput>;
|
|
82
84
|
describeLunaClient(args: DescribeLunaClientCommandInput, cb: (err: any, data?: DescribeLunaClientCommandOutput) => void): void;
|
|
83
85
|
describeLunaClient(args: DescribeLunaClientCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLunaClientCommandOutput) => void): void;
|
|
@@ -90,24 +92,28 @@ export interface CloudHSM {
|
|
|
90
92
|
/**
|
|
91
93
|
* @see {@link ListAvailableZonesCommand}
|
|
92
94
|
*/
|
|
95
|
+
listAvailableZones(): Promise<ListAvailableZonesCommandOutput>;
|
|
93
96
|
listAvailableZones(args: ListAvailableZonesCommandInput, options?: __HttpHandlerOptions): Promise<ListAvailableZonesCommandOutput>;
|
|
94
97
|
listAvailableZones(args: ListAvailableZonesCommandInput, cb: (err: any, data?: ListAvailableZonesCommandOutput) => void): void;
|
|
95
98
|
listAvailableZones(args: ListAvailableZonesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAvailableZonesCommandOutput) => void): void;
|
|
96
99
|
/**
|
|
97
100
|
* @see {@link ListHapgsCommand}
|
|
98
101
|
*/
|
|
102
|
+
listHapgs(): Promise<ListHapgsCommandOutput>;
|
|
99
103
|
listHapgs(args: ListHapgsCommandInput, options?: __HttpHandlerOptions): Promise<ListHapgsCommandOutput>;
|
|
100
104
|
listHapgs(args: ListHapgsCommandInput, cb: (err: any, data?: ListHapgsCommandOutput) => void): void;
|
|
101
105
|
listHapgs(args: ListHapgsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHapgsCommandOutput) => void): void;
|
|
102
106
|
/**
|
|
103
107
|
* @see {@link ListHsmsCommand}
|
|
104
108
|
*/
|
|
109
|
+
listHsms(): Promise<ListHsmsCommandOutput>;
|
|
105
110
|
listHsms(args: ListHsmsCommandInput, options?: __HttpHandlerOptions): Promise<ListHsmsCommandOutput>;
|
|
106
111
|
listHsms(args: ListHsmsCommandInput, cb: (err: any, data?: ListHsmsCommandOutput) => void): void;
|
|
107
112
|
listHsms(args: ListHsmsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHsmsCommandOutput) => void): void;
|
|
108
113
|
/**
|
|
109
114
|
* @see {@link ListLunaClientsCommand}
|
|
110
115
|
*/
|
|
116
|
+
listLunaClients(): Promise<ListLunaClientsCommandOutput>;
|
|
111
117
|
listLunaClients(args: ListLunaClientsCommandInput, options?: __HttpHandlerOptions): Promise<ListLunaClientsCommandOutput>;
|
|
112
118
|
listLunaClients(args: ListLunaClientsCommandInput, cb: (err: any, data?: ListLunaClientsCommandOutput) => void): void;
|
|
113
119
|
listLunaClients(args: ListLunaClientsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLunaClientsCommandOutput) => void): void;
|
|
@@ -143,7 +149,6 @@ export interface CloudHSM {
|
|
|
143
149
|
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void): void;
|
|
144
150
|
}
|
|
145
151
|
/**
|
|
146
|
-
* @public
|
|
147
152
|
* <fullname>AWS CloudHSM Service</fullname>
|
|
148
153
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
149
154
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
@@ -155,6 +160,7 @@ export interface CloudHSM {
|
|
|
155
160
|
* <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>,
|
|
156
161
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
157
162
|
* Reference</a>.</p>
|
|
163
|
+
* @public
|
|
158
164
|
*/
|
|
159
165
|
export declare class CloudHSM extends CloudHSMClient implements CloudHSM {
|
|
160
166
|
}
|
|
@@ -171,7 +171,6 @@ export type CloudHSMClientResolvedConfigType = __SmithyResolvedConfiguration<__H
|
|
|
171
171
|
export interface CloudHSMClientResolvedConfig extends CloudHSMClientResolvedConfigType {
|
|
172
172
|
}
|
|
173
173
|
/**
|
|
174
|
-
* @public
|
|
175
174
|
* <fullname>AWS CloudHSM Service</fullname>
|
|
176
175
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
177
176
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
@@ -183,6 +182,7 @@ export interface CloudHSMClientResolvedConfig extends CloudHSMClientResolvedConf
|
|
|
183
182
|
* <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>,
|
|
184
183
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
185
184
|
* Reference</a>.</p>
|
|
185
|
+
* @public
|
|
186
186
|
*/
|
|
187
187
|
export declare class CloudHSMClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CloudHSMClientResolvedConfig> {
|
|
188
188
|
/**
|
|
@@ -22,12 +22,10 @@ export interface AddTagsToResourceCommandOutput extends AddTagsToResourceRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const AddTagsToResourceCommand_base: {
|
|
24
24
|
new (input: AddTagsToResourceCommandInput): import("@smithy/smithy-client").CommandImpl<AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddTagsToResourceCommandInput): import("@smithy/smithy-client").CommandImpl<AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -41,6 +39,8 @@ declare const AddTagsToResourceCommand_base: {
|
|
|
41
39
|
* <p>Adds or overwrites one or more tags for the specified AWS CloudHSM resource.</p>
|
|
42
40
|
* <p>Each tag consists of a key and a value. Tag keys must be unique to each
|
|
43
41
|
* resource.</p>
|
|
42
|
+
*
|
|
43
|
+
* @deprecated This API is deprecated.
|
|
44
44
|
* @example
|
|
45
45
|
* Use a bare-bones client and the command you need to make an API call.
|
|
46
46
|
* ```javascript
|
|
@@ -82,6 +82,7 @@ declare const AddTagsToResourceCommand_base: {
|
|
|
82
82
|
* @throws {@link CloudHSMServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class AddTagsToResourceCommand extends AddTagsToResourceCommand_base {
|
|
87
88
|
}
|
|
@@ -22,12 +22,10 @@ export interface CreateHapgCommandOutput extends CreateHapgResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateHapgCommand_base: {
|
|
24
24
|
new (input: CreateHapgCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHapgCommandInput, CreateHapgCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateHapgCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHapgCommandInput, CreateHapgCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -40,6 +38,8 @@ declare const CreateHapgCommand_base: {
|
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Creates a high-availability partition group. A high-availability partition group is a
|
|
42
40
|
* group of partitions that spans multiple physical HSMs.</p>
|
|
41
|
+
*
|
|
42
|
+
* @deprecated This API is deprecated.
|
|
43
43
|
* @example
|
|
44
44
|
* Use a bare-bones client and the command you need to make an API call.
|
|
45
45
|
* ```javascript
|
|
@@ -75,6 +75,7 @@ declare const CreateHapgCommand_base: {
|
|
|
75
75
|
* @throws {@link CloudHSMServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class CreateHapgCommand extends CreateHapgCommand_base {
|
|
80
81
|
}
|
|
@@ -22,12 +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, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateHsmCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHsmCommandInput, CreateHsmCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -48,6 +46,8 @@ declare const CreateHsmCommand_base: {
|
|
|
48
46
|
* status of the HSM with the <a>DescribeHsm</a> operation. The HSM is ready to be
|
|
49
47
|
* initialized when the status changes to <code>RUNNING</code>.</p>
|
|
50
48
|
* </important>
|
|
49
|
+
*
|
|
50
|
+
* @deprecated This API is deprecated.
|
|
51
51
|
* @example
|
|
52
52
|
* Use a bare-bones client and the command you need to make an API call.
|
|
53
53
|
* ```javascript
|
|
@@ -90,6 +90,7 @@ declare const CreateHsmCommand_base: {
|
|
|
90
90
|
* @throws {@link CloudHSMServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class CreateHsmCommand extends CreateHsmCommand_base {
|
|
95
96
|
}
|
|
@@ -22,12 +22,10 @@ export interface CreateLunaClientCommandOutput extends CreateLunaClientResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateLunaClientCommand_base: {
|
|
24
24
|
new (input: CreateLunaClientCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLunaClientCommandInput, CreateLunaClientCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateLunaClientCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLunaClientCommandInput, CreateLunaClientCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -39,6 +37,8 @@ declare const CreateLunaClientCommand_base: {
|
|
|
39
37
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Creates an HSM client.</p>
|
|
40
|
+
*
|
|
41
|
+
* @deprecated This API is deprecated.
|
|
42
42
|
* @example
|
|
43
43
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
44
|
* ```javascript
|
|
@@ -75,6 +75,7 @@ declare const CreateLunaClientCommand_base: {
|
|
|
75
75
|
* @throws {@link CloudHSMServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class CreateLunaClientCommand extends CreateLunaClientCommand_base {
|
|
80
81
|
}
|
|
@@ -22,12 +22,10 @@ export interface DeleteHapgCommandOutput extends DeleteHapgResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteHapgCommand_base: {
|
|
24
24
|
new (input: DeleteHapgCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteHapgCommandInput, DeleteHapgCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteHapgCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteHapgCommandInput, DeleteHapgCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -39,6 +37,8 @@ declare const DeleteHapgCommand_base: {
|
|
|
39
37
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Deletes a high-availability partition group.</p>
|
|
40
|
+
*
|
|
41
|
+
* @deprecated This API is deprecated.
|
|
42
42
|
* @example
|
|
43
43
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
44
|
* ```javascript
|
|
@@ -74,6 +74,7 @@ declare const DeleteHapgCommand_base: {
|
|
|
74
74
|
* @throws {@link CloudHSMServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class DeleteHapgCommand extends DeleteHapgCommand_base {
|
|
79
80
|
}
|
|
@@ -22,12 +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, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteHsmCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteHsmCommandInput, DeleteHsmCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -40,6 +38,8 @@ declare const DeleteHsmCommand_base: {
|
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Deletes an HSM. After completion, this operation cannot be undone and your key material
|
|
42
40
|
* cannot be recovered.</p>
|
|
41
|
+
*
|
|
42
|
+
* @deprecated This API is deprecated.
|
|
43
43
|
* @example
|
|
44
44
|
* Use a bare-bones client and the command you need to make an API call.
|
|
45
45
|
* ```javascript
|
|
@@ -75,6 +75,7 @@ declare const DeleteHsmCommand_base: {
|
|
|
75
75
|
* @throws {@link CloudHSMServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class DeleteHsmCommand extends DeleteHsmCommand_base {
|
|
80
81
|
}
|
|
@@ -22,12 +22,10 @@ export interface DeleteLunaClientCommandOutput extends DeleteLunaClientResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteLunaClientCommand_base: {
|
|
24
24
|
new (input: DeleteLunaClientCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLunaClientCommandInput, DeleteLunaClientCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteLunaClientCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLunaClientCommandInput, DeleteLunaClientCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -39,6 +37,8 @@ declare const DeleteLunaClientCommand_base: {
|
|
|
39
37
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Deletes a client.</p>
|
|
40
|
+
*
|
|
41
|
+
* @deprecated This API is deprecated.
|
|
42
42
|
* @example
|
|
43
43
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
44
|
* ```javascript
|
|
@@ -74,6 +74,7 @@ declare const DeleteLunaClientCommand_base: {
|
|
|
74
74
|
* @throws {@link CloudHSMServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class DeleteLunaClientCommand extends DeleteLunaClientCommand_base {
|
|
79
80
|
}
|
|
@@ -22,12 +22,10 @@ export interface DescribeHapgCommandOutput extends DescribeHapgResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeHapgCommand_base: {
|
|
24
24
|
new (input: DescribeHapgCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeHapgCommandInput, DescribeHapgCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeHapgCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeHapgCommandInput, DescribeHapgCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -39,6 +37,8 @@ declare const DescribeHapgCommand_base: {
|
|
|
39
37
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Retrieves information about a high-availability partition group.</p>
|
|
40
|
+
*
|
|
41
|
+
* @deprecated This API is deprecated.
|
|
42
42
|
* @example
|
|
43
43
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
44
|
* ```javascript
|
|
@@ -90,6 +90,7 @@ declare const DescribeHapgCommand_base: {
|
|
|
90
90
|
* @throws {@link CloudHSMServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class DescribeHapgCommand extends DescribeHapgCommand_base {
|
|
95
96
|
}
|
|
@@ -22,12 +22,10 @@ export interface DescribeHsmCommandOutput extends DescribeHsmResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeHsmCommand_base: {
|
|
24
24
|
new (input: DescribeHsmCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeHsmCommandInput, DescribeHsmCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeHsmCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeHsmCommandInput, DescribeHsmCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -40,6 +38,8 @@ declare const DescribeHsmCommand_base: {
|
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Retrieves information about an HSM. You can identify the HSM by its ARN or its serial
|
|
42
40
|
* number.</p>
|
|
41
|
+
*
|
|
42
|
+
* @deprecated This API is deprecated.
|
|
43
43
|
* @example
|
|
44
44
|
* Use a bare-bones client and the command you need to make an API call.
|
|
45
45
|
* ```javascript
|
|
@@ -98,6 +98,7 @@ declare const DescribeHsmCommand_base: {
|
|
|
98
98
|
* @throws {@link CloudHSMServiceException}
|
|
99
99
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
100
100
|
*
|
|
101
|
+
* @public
|
|
101
102
|
*/
|
|
102
103
|
export declare class DescribeHsmCommand extends DescribeHsmCommand_base {
|
|
103
104
|
}
|
|
@@ -22,12 +22,10 @@ export interface DescribeLunaClientCommandOutput extends DescribeLunaClientRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeLunaClientCommand_base: {
|
|
24
24
|
new (input: DescribeLunaClientCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeLunaClientCommandInput, DescribeLunaClientCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeLunaClientCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeLunaClientCommandInput, DescribeLunaClientCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -39,6 +37,8 @@ declare const DescribeLunaClientCommand_base: {
|
|
|
39
37
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Retrieves information about an HSM client.</p>
|
|
40
|
+
*
|
|
41
|
+
* @deprecated This API is deprecated.
|
|
42
42
|
* @example
|
|
43
43
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
44
|
* ```javascript
|
|
@@ -79,6 +79,7 @@ declare const DescribeLunaClientCommand_base: {
|
|
|
79
79
|
* @throws {@link CloudHSMServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class DescribeLunaClientCommand extends DescribeLunaClientCommand_base {
|
|
84
85
|
}
|
|
@@ -22,12 +22,10 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetConfigCommand_base: {
|
|
24
24
|
new (input: GetConfigCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfigCommandInput, GetConfigCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetConfigCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfigCommandInput, GetConfigCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -40,6 +38,8 @@ declare const GetConfigCommand_base: {
|
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Gets the configuration files necessary to connect to all high availability partition
|
|
42
40
|
* groups the client is associated with.</p>
|
|
41
|
+
*
|
|
42
|
+
* @deprecated This API is deprecated.
|
|
43
43
|
* @example
|
|
44
44
|
* Use a bare-bones client and the command you need to make an API call.
|
|
45
45
|
* ```javascript
|
|
@@ -81,6 +81,7 @@ declare const GetConfigCommand_base: {
|
|
|
81
81
|
* @throws {@link CloudHSMServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class GetConfigCommand extends GetConfigCommand_base {
|
|
86
87
|
}
|
|
@@ -22,12 +22,10 @@ export interface ListAvailableZonesCommandOutput extends ListAvailableZonesRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAvailableZonesCommand_base: {
|
|
24
24
|
new (input: ListAvailableZonesCommandInput): import("@smithy/smithy-client").CommandImpl<ListAvailableZonesCommandInput, ListAvailableZonesCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListAvailableZonesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAvailableZonesCommandInput, ListAvailableZonesCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -39,6 +37,8 @@ declare const ListAvailableZonesCommand_base: {
|
|
|
39
37
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Lists the Availability Zones that have available AWS CloudHSM capacity.</p>
|
|
40
|
+
*
|
|
41
|
+
* @deprecated This API is deprecated.
|
|
42
42
|
* @example
|
|
43
43
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
44
|
* ```javascript
|
|
@@ -74,6 +74,7 @@ declare const ListAvailableZonesCommand_base: {
|
|
|
74
74
|
* @throws {@link CloudHSMServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class ListAvailableZonesCommand extends ListAvailableZonesCommand_base {
|
|
79
80
|
}
|
|
@@ -22,12 +22,10 @@ export interface ListHapgsCommandOutput extends ListHapgsResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListHapgsCommand_base: {
|
|
24
24
|
new (input: ListHapgsCommandInput): import("@smithy/smithy-client").CommandImpl<ListHapgsCommandInput, ListHapgsCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListHapgsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListHapgsCommandInput, ListHapgsCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -43,6 +41,8 @@ declare const ListHapgsCommand_base: {
|
|
|
43
41
|
* If more results are available, the <code>NextToken</code> member of the response contains a
|
|
44
42
|
* token that you pass in the next call to <code>ListHapgs</code> to retrieve the next set of
|
|
45
43
|
* items.</p>
|
|
44
|
+
*
|
|
45
|
+
* @deprecated This API is deprecated.
|
|
46
46
|
* @example
|
|
47
47
|
* Use a bare-bones client and the command you need to make an API call.
|
|
48
48
|
* ```javascript
|
|
@@ -81,6 +81,7 @@ declare const ListHapgsCommand_base: {
|
|
|
81
81
|
* @throws {@link CloudHSMServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class ListHapgsCommand extends ListHapgsCommand_base {
|
|
86
87
|
}
|
|
@@ -22,12 +22,10 @@ export interface ListHsmsCommandOutput extends ListHsmsResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListHsmsCommand_base: {
|
|
24
24
|
new (input: ListHsmsCommandInput): import("@smithy/smithy-client").CommandImpl<ListHsmsCommandInput, ListHsmsCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListHsmsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListHsmsCommandInput, ListHsmsCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -44,6 +42,8 @@ declare const ListHsmsCommand_base: {
|
|
|
44
42
|
* If more results are available, the <code>NextToken</code> member of the response contains a
|
|
45
43
|
* token that you pass in the next call to <code>ListHsms</code> to retrieve the next set of
|
|
46
44
|
* items.</p>
|
|
45
|
+
*
|
|
46
|
+
* @deprecated This API is deprecated.
|
|
47
47
|
* @example
|
|
48
48
|
* Use a bare-bones client and the command you need to make an API call.
|
|
49
49
|
* ```javascript
|
|
@@ -82,6 +82,7 @@ declare const ListHsmsCommand_base: {
|
|
|
82
82
|
* @throws {@link CloudHSMServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class ListHsmsCommand extends ListHsmsCommand_base {
|
|
87
88
|
}
|
|
@@ -22,12 +22,10 @@ export interface ListLunaClientsCommandOutput extends ListLunaClientsResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListLunaClientsCommand_base: {
|
|
24
24
|
new (input: ListLunaClientsCommandInput): import("@smithy/smithy-client").CommandImpl<ListLunaClientsCommandInput, ListLunaClientsCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListLunaClientsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListLunaClientsCommandInput, ListLunaClientsCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -43,6 +41,8 @@ declare const ListLunaClientsCommand_base: {
|
|
|
43
41
|
* If more results are available, the <code>NextToken</code> member of the response contains a
|
|
44
42
|
* token that you pass in the next call to <code>ListLunaClients</code> to retrieve the next set
|
|
45
43
|
* of items.</p>
|
|
44
|
+
*
|
|
45
|
+
* @deprecated This API is deprecated.
|
|
46
46
|
* @example
|
|
47
47
|
* Use a bare-bones client and the command you need to make an API call.
|
|
48
48
|
* ```javascript
|
|
@@ -81,6 +81,7 @@ declare const ListLunaClientsCommand_base: {
|
|
|
81
81
|
* @throws {@link CloudHSMServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class ListLunaClientsCommand extends ListLunaClientsCommand_base {
|
|
86
87
|
}
|
|
@@ -22,12 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -39,6 +37,8 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
39
37
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Returns a list of all tags for the specified AWS CloudHSM resource.</p>
|
|
40
|
+
*
|
|
41
|
+
* @deprecated This API is deprecated.
|
|
42
42
|
* @example
|
|
43
43
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
44
|
* ```javascript
|
|
@@ -79,6 +79,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
79
79
|
* @throws {@link CloudHSMServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
84
85
|
}
|
|
@@ -22,12 +22,10 @@ export interface ModifyHapgCommandOutput extends ModifyHapgResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const ModifyHapgCommand_base: {
|
|
24
24
|
new (input: ModifyHapgCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyHapgCommandInput, ModifyHapgCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ModifyHapgCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyHapgCommandInput, ModifyHapgCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -39,6 +37,8 @@ declare const ModifyHapgCommand_base: {
|
|
|
39
37
|
* and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API
|
|
40
38
|
* Reference</a>.</p>
|
|
41
39
|
* <p>Modifies an existing high-availability partition group.</p>
|
|
40
|
+
*
|
|
41
|
+
* @deprecated This API is deprecated.
|
|
42
42
|
* @example
|
|
43
43
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
44
|
* ```javascript
|
|
@@ -78,6 +78,7 @@ declare const ModifyHapgCommand_base: {
|
|
|
78
78
|
* @throws {@link CloudHSMServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ModifyHapgCommand extends ModifyHapgCommand_base {
|
|
83
84
|
}
|
|
@@ -22,12 +22,10 @@ export interface ModifyHsmCommandOutput extends ModifyHsmResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const ModifyHsmCommand_base: {
|
|
24
24
|
new (input: ModifyHsmCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyHsmCommandInput, ModifyHsmCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ModifyHsmCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyHsmCommandInput, ModifyHsmCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
32
30
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
33
31
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -45,6 +43,8 @@ declare const ModifyHsmCommand_base: {
|
|
|
45
43
|
* that your AWS CloudHSM service is configured for high availability, and consider executing this
|
|
46
44
|
* operation during a maintenance window.</p>
|
|
47
45
|
* </important>
|
|
46
|
+
*
|
|
47
|
+
* @deprecated This API is deprecated.
|
|
48
48
|
* @example
|
|
49
49
|
* Use a bare-bones client and the command you need to make an API call.
|
|
50
50
|
* ```javascript
|
|
@@ -85,6 +85,7 @@ declare const ModifyHsmCommand_base: {
|
|
|
85
85
|
* @throws {@link CloudHSMServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class ModifyHsmCommand extends ModifyHsmCommand_base {
|
|
90
91
|
}
|