@aws-sdk/client-cloudhsm 3.296.0 → 3.297.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 +21 -0
- package/dist-types/CloudHSMClient.d.ts +24 -4
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateHapgCommand.d.ts +16 -0
- package/dist-types/commands/CreateHsmCommand.d.ts +16 -0
- package/dist-types/commands/CreateLunaClientCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHapgCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHsmCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLunaClientCommand.d.ts +16 -0
- package/dist-types/commands/DescribeHapgCommand.d.ts +16 -0
- package/dist-types/commands/DescribeHsmCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLunaClientCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigCommand.d.ts +16 -0
- package/dist-types/commands/ListAvailableZonesCommand.d.ts +16 -0
- package/dist-types/commands/ListHapgsCommand.d.ts +16 -0
- package/dist-types/commands/ListHsmsCommand.d.ts +16 -0
- package/dist-types/commands/ListLunaClientsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ModifyHapgCommand.d.ts +16 -0
- package/dist-types/commands/ModifyHsmCommand.d.ts +16 -0
- package/dist-types/commands/ModifyLunaClientCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +16 -0
- package/dist-types/models/CloudHSMServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +100 -0
- package/package.json +3 -3
package/dist-types/CloudHSM.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import { ModifyHsmCommandInput, ModifyHsmCommandOutput } from "./commands/Modify
|
|
|
21
21
|
import { ModifyLunaClientCommandInput, ModifyLunaClientCommandOutput } from "./commands/ModifyLunaClientCommand";
|
|
22
22
|
import { RemoveTagsFromResourceCommandInput, RemoveTagsFromResourceCommandOutput } from "./commands/RemoveTagsFromResourceCommand";
|
|
23
23
|
/**
|
|
24
|
+
* @public
|
|
24
25
|
* <fullname>AWS CloudHSM Service</fullname>
|
|
25
26
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
26
27
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
@@ -35,6 +36,7 @@ import { RemoveTagsFromResourceCommandInput, RemoveTagsFromResourceCommandOutput
|
|
|
35
36
|
*/
|
|
36
37
|
export declare class CloudHSM extends CloudHSMClient {
|
|
37
38
|
/**
|
|
39
|
+
* @public
|
|
38
40
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
39
41
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
40
42
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -53,6 +55,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
53
55
|
addTagsToResource(args: AddTagsToResourceCommandInput, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
|
|
54
56
|
addTagsToResource(args: AddTagsToResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
|
|
55
57
|
/**
|
|
58
|
+
* @public
|
|
56
59
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
57
60
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
58
61
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -70,6 +73,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
70
73
|
createHapg(args: CreateHapgCommandInput, cb: (err: any, data?: CreateHapgCommandOutput) => void): void;
|
|
71
74
|
createHapg(args: CreateHapgCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHapgCommandOutput) => void): void;
|
|
72
75
|
/**
|
|
76
|
+
* @public
|
|
73
77
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
74
78
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
75
79
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -95,6 +99,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
95
99
|
createHsm(args: CreateHsmCommandInput, cb: (err: any, data?: CreateHsmCommandOutput) => void): void;
|
|
96
100
|
createHsm(args: CreateHsmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHsmCommandOutput) => void): void;
|
|
97
101
|
/**
|
|
102
|
+
* @public
|
|
98
103
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
99
104
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
100
105
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -111,6 +116,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
111
116
|
createLunaClient(args: CreateLunaClientCommandInput, cb: (err: any, data?: CreateLunaClientCommandOutput) => void): void;
|
|
112
117
|
createLunaClient(args: CreateLunaClientCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLunaClientCommandOutput) => void): void;
|
|
113
118
|
/**
|
|
119
|
+
* @public
|
|
114
120
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
115
121
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
116
122
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -127,6 +133,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
127
133
|
deleteHapg(args: DeleteHapgCommandInput, cb: (err: any, data?: DeleteHapgCommandOutput) => void): void;
|
|
128
134
|
deleteHapg(args: DeleteHapgCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHapgCommandOutput) => void): void;
|
|
129
135
|
/**
|
|
136
|
+
* @public
|
|
130
137
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
131
138
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
132
139
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -144,6 +151,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
144
151
|
deleteHsm(args: DeleteHsmCommandInput, cb: (err: any, data?: DeleteHsmCommandOutput) => void): void;
|
|
145
152
|
deleteHsm(args: DeleteHsmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHsmCommandOutput) => void): void;
|
|
146
153
|
/**
|
|
154
|
+
* @public
|
|
147
155
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
148
156
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
149
157
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -160,6 +168,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
160
168
|
deleteLunaClient(args: DeleteLunaClientCommandInput, cb: (err: any, data?: DeleteLunaClientCommandOutput) => void): void;
|
|
161
169
|
deleteLunaClient(args: DeleteLunaClientCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLunaClientCommandOutput) => void): void;
|
|
162
170
|
/**
|
|
171
|
+
* @public
|
|
163
172
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
164
173
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
165
174
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -176,6 +185,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
176
185
|
describeHapg(args: DescribeHapgCommandInput, cb: (err: any, data?: DescribeHapgCommandOutput) => void): void;
|
|
177
186
|
describeHapg(args: DescribeHapgCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHapgCommandOutput) => void): void;
|
|
178
187
|
/**
|
|
188
|
+
* @public
|
|
179
189
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
180
190
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
181
191
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -193,6 +203,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
193
203
|
describeHsm(args: DescribeHsmCommandInput, cb: (err: any, data?: DescribeHsmCommandOutput) => void): void;
|
|
194
204
|
describeHsm(args: DescribeHsmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHsmCommandOutput) => void): void;
|
|
195
205
|
/**
|
|
206
|
+
* @public
|
|
196
207
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
197
208
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
198
209
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -209,6 +220,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
209
220
|
describeLunaClient(args: DescribeLunaClientCommandInput, cb: (err: any, data?: DescribeLunaClientCommandOutput) => void): void;
|
|
210
221
|
describeLunaClient(args: DescribeLunaClientCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLunaClientCommandOutput) => void): void;
|
|
211
222
|
/**
|
|
223
|
+
* @public
|
|
212
224
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
213
225
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
214
226
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -226,6 +238,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
226
238
|
getConfig(args: GetConfigCommandInput, cb: (err: any, data?: GetConfigCommandOutput) => void): void;
|
|
227
239
|
getConfig(args: GetConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigCommandOutput) => void): void;
|
|
228
240
|
/**
|
|
241
|
+
* @public
|
|
229
242
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
230
243
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
231
244
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -242,6 +255,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
242
255
|
listAvailableZones(args: ListAvailableZonesCommandInput, cb: (err: any, data?: ListAvailableZonesCommandOutput) => void): void;
|
|
243
256
|
listAvailableZones(args: ListAvailableZonesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAvailableZonesCommandOutput) => void): void;
|
|
244
257
|
/**
|
|
258
|
+
* @public
|
|
245
259
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
246
260
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
247
261
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -262,6 +276,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
262
276
|
listHapgs(args: ListHapgsCommandInput, cb: (err: any, data?: ListHapgsCommandOutput) => void): void;
|
|
263
277
|
listHapgs(args: ListHapgsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHapgsCommandOutput) => void): void;
|
|
264
278
|
/**
|
|
279
|
+
* @public
|
|
265
280
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
266
281
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
267
282
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -283,6 +298,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
283
298
|
listHsms(args: ListHsmsCommandInput, cb: (err: any, data?: ListHsmsCommandOutput) => void): void;
|
|
284
299
|
listHsms(args: ListHsmsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHsmsCommandOutput) => void): void;
|
|
285
300
|
/**
|
|
301
|
+
* @public
|
|
286
302
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
287
303
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
288
304
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -303,6 +319,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
303
319
|
listLunaClients(args: ListLunaClientsCommandInput, cb: (err: any, data?: ListLunaClientsCommandOutput) => void): void;
|
|
304
320
|
listLunaClients(args: ListLunaClientsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLunaClientsCommandOutput) => void): void;
|
|
305
321
|
/**
|
|
322
|
+
* @public
|
|
306
323
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
307
324
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
308
325
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -319,6 +336,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
319
336
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
320
337
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
321
338
|
/**
|
|
339
|
+
* @public
|
|
322
340
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
323
341
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
324
342
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -335,6 +353,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
335
353
|
modifyHapg(args: ModifyHapgCommandInput, cb: (err: any, data?: ModifyHapgCommandOutput) => void): void;
|
|
336
354
|
modifyHapg(args: ModifyHapgCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyHapgCommandOutput) => void): void;
|
|
337
355
|
/**
|
|
356
|
+
* @public
|
|
338
357
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
339
358
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
340
359
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -357,6 +376,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
357
376
|
modifyHsm(args: ModifyHsmCommandInput, cb: (err: any, data?: ModifyHsmCommandOutput) => void): void;
|
|
358
377
|
modifyHsm(args: ModifyHsmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyHsmCommandOutput) => void): void;
|
|
359
378
|
/**
|
|
379
|
+
* @public
|
|
360
380
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
361
381
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
362
382
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -375,6 +395,7 @@ export declare class CloudHSM extends CloudHSMClient {
|
|
|
375
395
|
modifyLunaClient(args: ModifyLunaClientCommandInput, cb: (err: any, data?: ModifyLunaClientCommandOutput) => void): void;
|
|
376
396
|
modifyLunaClient(args: ModifyLunaClientCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyLunaClientCommandOutput) => void): void;
|
|
377
397
|
/**
|
|
398
|
+
* @public
|
|
378
399
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
379
400
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
380
401
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -28,15 +28,24 @@ import { ModifyHsmCommandInput, ModifyHsmCommandOutput } from "./commands/Modify
|
|
|
28
28
|
import { ModifyLunaClientCommandInput, ModifyLunaClientCommandOutput } from "./commands/ModifyLunaClientCommand";
|
|
29
29
|
import { RemoveTagsFromResourceCommandInput, RemoveTagsFromResourceCommandOutput } from "./commands/RemoveTagsFromResourceCommand";
|
|
30
30
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
31
34
|
export type ServiceInputTypes = AddTagsToResourceCommandInput | CreateHapgCommandInput | CreateHsmCommandInput | CreateLunaClientCommandInput | DeleteHapgCommandInput | DeleteHsmCommandInput | DeleteLunaClientCommandInput | DescribeHapgCommandInput | DescribeHsmCommandInput | DescribeLunaClientCommandInput | GetConfigCommandInput | ListAvailableZonesCommandInput | ListHapgsCommandInput | ListHsmsCommandInput | ListLunaClientsCommandInput | ListTagsForResourceCommandInput | ModifyHapgCommandInput | ModifyHsmCommandInput | ModifyLunaClientCommandInput | RemoveTagsFromResourceCommandInput;
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
32
38
|
export type ServiceOutputTypes = AddTagsToResourceCommandOutput | CreateHapgCommandOutput | CreateHsmCommandOutput | CreateLunaClientCommandOutput | DeleteHapgCommandOutput | DeleteHsmCommandOutput | DeleteLunaClientCommandOutput | DescribeHapgCommandOutput | DescribeHsmCommandOutput | DescribeLunaClientCommandOutput | GetConfigCommandOutput | ListAvailableZonesCommandOutput | ListHapgsCommandOutput | ListHsmsCommandOutput | ListLunaClientsCommandOutput | ListTagsForResourceCommandOutput | ModifyHapgCommandOutput | ModifyHsmCommandOutput | ModifyLunaClientCommandOutput | RemoveTagsFromResourceCommandOutput;
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
33
42
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
34
43
|
/**
|
|
35
44
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
36
45
|
*/
|
|
37
46
|
requestHandler?: __HttpHandler;
|
|
38
47
|
/**
|
|
39
|
-
* A constructor for a class implementing the {@link
|
|
48
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
40
49
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
41
50
|
* @internal
|
|
42
51
|
*/
|
|
@@ -126,23 +135,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
126
135
|
*/
|
|
127
136
|
logger?: __Logger;
|
|
128
137
|
/**
|
|
129
|
-
* The {@link
|
|
138
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
130
139
|
*/
|
|
131
140
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
132
141
|
}
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
133
145
|
type CloudHSMClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
134
146
|
/**
|
|
135
|
-
*
|
|
147
|
+
* @public
|
|
148
|
+
*
|
|
149
|
+
* The configuration interface of CloudHSMClient class constructor that set the region, credentials and other options.
|
|
136
150
|
*/
|
|
137
151
|
export interface CloudHSMClientConfig extends CloudHSMClientConfigType {
|
|
138
152
|
}
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
139
156
|
type CloudHSMClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
140
157
|
/**
|
|
141
|
-
*
|
|
158
|
+
* @public
|
|
159
|
+
*
|
|
160
|
+
* The resolved configuration interface of CloudHSMClient class. This is resolved and normalized from the {@link CloudHSMClientConfig | constructor configuration interface}.
|
|
142
161
|
*/
|
|
143
162
|
export interface CloudHSMClientResolvedConfig extends CloudHSMClientResolvedConfigType {
|
|
144
163
|
}
|
|
145
164
|
/**
|
|
165
|
+
* @public
|
|
146
166
|
* <fullname>AWS CloudHSM Service</fullname>
|
|
147
167
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
148
168
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient";
|
|
5
5
|
import { AddTagsToResourceRequest, AddTagsToResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddTagsToResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddTagsToResourceCommandInput extends AddTagsToResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddTagsToResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddTagsToResourceCommandOutput extends AddTagsToResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
18
23
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
19
24
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -37,6 +42,8 @@ export interface AddTagsToResourceCommandOutput extends AddTagsToResourceRespons
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param AddTagsToResourceCommandInput - {@link AddTagsToResourceCommandInput}
|
|
46
|
+
* @returns {@link AddTagsToResourceCommandOutput}
|
|
40
47
|
* @see {@link AddTagsToResourceCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link AddTagsToResourceCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link CloudHSMClientResolvedConfig | config} for CloudHSMClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface AddTagsToResourceCommandOutput extends AddTagsToResourceRespons
|
|
|
55
62
|
export declare class AddTagsToResourceCommand extends $Command<AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput, CloudHSMClientResolvedConfig> {
|
|
56
63
|
readonly input: AddTagsToResourceCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: AddTagsToResourceCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput>;
|
|
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 { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient";
|
|
5
5
|
import { CreateHapgRequest, CreateHapgResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateHapgCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateHapgCommandInput extends CreateHapgRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateHapgCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateHapgCommandOutput extends CreateHapgResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
18
23
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
19
24
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -36,6 +41,8 @@ export interface CreateHapgCommandOutput extends CreateHapgResponse, __MetadataB
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param CreateHapgCommandInput - {@link CreateHapgCommandInput}
|
|
45
|
+
* @returns {@link CreateHapgCommandOutput}
|
|
39
46
|
* @see {@link CreateHapgCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link CreateHapgCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link CloudHSMClientResolvedConfig | config} for CloudHSMClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface CreateHapgCommandOutput extends CreateHapgResponse, __MetadataB
|
|
|
54
61
|
export declare class CreateHapgCommand extends $Command<CreateHapgCommandInput, CreateHapgCommandOutput, CloudHSMClientResolvedConfig> {
|
|
55
62
|
readonly input: CreateHapgCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: CreateHapgCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHapgCommandInput, CreateHapgCommandOutput>;
|
|
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 { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient";
|
|
5
5
|
import { CreateHsmRequest, CreateHsmResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateHsmCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateHsmCommandInput extends CreateHsmRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateHsmCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateHsmCommandOutput extends CreateHsmResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
18
23
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
19
24
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -44,6 +49,8 @@ export interface CreateHsmCommandOutput extends CreateHsmResponse, __MetadataBea
|
|
|
44
49
|
* const response = await client.send(command);
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
52
|
+
* @param CreateHsmCommandInput - {@link CreateHsmCommandInput}
|
|
53
|
+
* @returns {@link CreateHsmCommandOutput}
|
|
47
54
|
* @see {@link CreateHsmCommandInput} for command's `input` shape.
|
|
48
55
|
* @see {@link CreateHsmCommandOutput} for command's `response` shape.
|
|
49
56
|
* @see {@link CloudHSMClientResolvedConfig | config} for CloudHSMClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface CreateHsmCommandOutput extends CreateHsmResponse, __MetadataBea
|
|
|
62
69
|
export declare class CreateHsmCommand extends $Command<CreateHsmCommandInput, CreateHsmCommandOutput, CloudHSMClientResolvedConfig> {
|
|
63
70
|
readonly input: CreateHsmCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: CreateHsmCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHsmCommandInput, CreateHsmCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient";
|
|
5
5
|
import { CreateLunaClientRequest, CreateLunaClientResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateLunaClientCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateLunaClientCommandInput extends CreateLunaClientRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateLunaClientCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateLunaClientCommandOutput extends CreateLunaClientResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
18
23
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
19
24
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -35,6 +40,8 @@ export interface CreateLunaClientCommandOutput extends CreateLunaClientResponse,
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param CreateLunaClientCommandInput - {@link CreateLunaClientCommandInput}
|
|
44
|
+
* @returns {@link CreateLunaClientCommandOutput}
|
|
38
45
|
* @see {@link CreateLunaClientCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link CreateLunaClientCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link CloudHSMClientResolvedConfig | config} for CloudHSMClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateLunaClientCommandOutput extends CreateLunaClientResponse,
|
|
|
53
60
|
export declare class CreateLunaClientCommand extends $Command<CreateLunaClientCommandInput, CreateLunaClientCommandOutput, CloudHSMClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateLunaClientCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateLunaClientCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLunaClientCommandInput, CreateLunaClientCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient";
|
|
5
5
|
import { DeleteHapgRequest, DeleteHapgResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteHapgCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteHapgCommandInput extends DeleteHapgRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteHapgCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteHapgCommandOutput extends DeleteHapgResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
18
23
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
19
24
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -35,6 +40,8 @@ export interface DeleteHapgCommandOutput extends DeleteHapgResponse, __MetadataB
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param DeleteHapgCommandInput - {@link DeleteHapgCommandInput}
|
|
44
|
+
* @returns {@link DeleteHapgCommandOutput}
|
|
38
45
|
* @see {@link DeleteHapgCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link DeleteHapgCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link CloudHSMClientResolvedConfig | config} for CloudHSMClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DeleteHapgCommandOutput extends DeleteHapgResponse, __MetadataB
|
|
|
53
60
|
export declare class DeleteHapgCommand extends $Command<DeleteHapgCommandInput, DeleteHapgCommandOutput, CloudHSMClientResolvedConfig> {
|
|
54
61
|
readonly input: DeleteHapgCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DeleteHapgCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteHapgCommandInput, DeleteHapgCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient";
|
|
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>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
18
23
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
19
24
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -36,6 +41,8 @@ export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBea
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param DeleteHsmCommandInput - {@link DeleteHsmCommandInput}
|
|
45
|
+
* @returns {@link DeleteHsmCommandOutput}
|
|
39
46
|
* @see {@link DeleteHsmCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link DeleteHsmCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link CloudHSMClientResolvedConfig | config} for CloudHSMClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBea
|
|
|
54
61
|
export declare class DeleteHsmCommand extends $Command<DeleteHsmCommandInput, DeleteHsmCommandOutput, CloudHSMClientResolvedConfig> {
|
|
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: CloudHSMClientResolvedConfig, 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 { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient";
|
|
5
5
|
import { DeleteLunaClientRequest, DeleteLunaClientResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLunaClientCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLunaClientCommandInput extends DeleteLunaClientRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLunaClientCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLunaClientCommandOutput extends DeleteLunaClientResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
18
23
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
19
24
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -35,6 +40,8 @@ export interface DeleteLunaClientCommandOutput extends DeleteLunaClientResponse,
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param DeleteLunaClientCommandInput - {@link DeleteLunaClientCommandInput}
|
|
44
|
+
* @returns {@link DeleteLunaClientCommandOutput}
|
|
38
45
|
* @see {@link DeleteLunaClientCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link DeleteLunaClientCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link CloudHSMClientResolvedConfig | config} for CloudHSMClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DeleteLunaClientCommandOutput extends DeleteLunaClientResponse,
|
|
|
53
60
|
export declare class DeleteLunaClientCommand extends $Command<DeleteLunaClientCommandInput, DeleteLunaClientCommandOutput, CloudHSMClientResolvedConfig> {
|
|
54
61
|
readonly input: DeleteLunaClientCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DeleteLunaClientCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLunaClientCommandInput, DeleteLunaClientCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient";
|
|
5
5
|
import { DescribeHapgRequest, DescribeHapgResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeHapgCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeHapgCommandInput extends DescribeHapgRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeHapgCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeHapgCommandOutput extends DescribeHapgResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This is documentation for <b>AWS CloudHSM Classic</b>. For
|
|
18
23
|
* more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM
|
|
19
24
|
* Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS
|
|
@@ -35,6 +40,8 @@ export interface DescribeHapgCommandOutput extends DescribeHapgResponse, __Metad
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param DescribeHapgCommandInput - {@link DescribeHapgCommandInput}
|
|
44
|
+
* @returns {@link DescribeHapgCommandOutput}
|
|
38
45
|
* @see {@link DescribeHapgCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link DescribeHapgCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link CloudHSMClientResolvedConfig | config} for CloudHSMClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DescribeHapgCommandOutput extends DescribeHapgResponse, __Metad
|
|
|
53
60
|
export declare class DescribeHapgCommand extends $Command<DescribeHapgCommandInput, DescribeHapgCommandOutput, CloudHSMClientResolvedConfig> {
|
|
54
61
|
readonly input: DescribeHapgCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DescribeHapgCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeHapgCommandInput, DescribeHapgCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|