@aws-sdk/client-cloudhsm 3.533.0 → 3.535.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/CloudHSM.d.ts +7 -1
- package/dist-types/CloudHSMClient.d.ts +1 -1
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -3
- package/dist-types/commands/CreateHapgCommand.d.ts +3 -3
- package/dist-types/commands/CreateHsmCommand.d.ts +3 -3
- package/dist-types/commands/CreateLunaClientCommand.d.ts +3 -3
- package/dist-types/commands/DeleteHapgCommand.d.ts +3 -3
- package/dist-types/commands/DeleteHsmCommand.d.ts +3 -3
- package/dist-types/commands/DeleteLunaClientCommand.d.ts +3 -3
- package/dist-types/commands/DescribeHapgCommand.d.ts +3 -3
- package/dist-types/commands/DescribeHsmCommand.d.ts +3 -3
- package/dist-types/commands/DescribeLunaClientCommand.d.ts +3 -3
- package/dist-types/commands/GetConfigCommand.d.ts +3 -3
- package/dist-types/commands/ListAvailableZonesCommand.d.ts +3 -3
- package/dist-types/commands/ListHapgsCommand.d.ts +3 -3
- package/dist-types/commands/ListHsmsCommand.d.ts +3 -3
- package/dist-types/commands/ListLunaClientsCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
- package/dist-types/commands/ModifyHapgCommand.d.ts +3 -3
- package/dist-types/commands/ModifyHsmCommand.d.ts +3 -3
- package/dist-types/commands/ModifyLunaClientCommand.d.ts +3 -3
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -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
|
|
@@ -82,6 +80,8 @@ declare const AddTagsToResourceCommand_base: {
|
|
|
82
80
|
* @throws {@link CloudHSMServiceException}
|
|
83
81
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
84
82
|
*
|
|
83
|
+
* @public
|
|
84
|
+
* @deprecated This API is deprecated.
|
|
85
85
|
*/
|
|
86
86
|
export declare class AddTagsToResourceCommand extends AddTagsToResourceCommand_base {
|
|
87
87
|
}
|
|
@@ -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
|
|
@@ -75,6 +73,8 @@ declare const CreateHapgCommand_base: {
|
|
|
75
73
|
* @throws {@link CloudHSMServiceException}
|
|
76
74
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
77
75
|
*
|
|
76
|
+
* @public
|
|
77
|
+
* @deprecated This API is deprecated.
|
|
78
78
|
*/
|
|
79
79
|
export declare class CreateHapgCommand extends CreateHapgCommand_base {
|
|
80
80
|
}
|
|
@@ -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
|
|
@@ -90,6 +88,8 @@ declare const CreateHsmCommand_base: {
|
|
|
90
88
|
* @throws {@link CloudHSMServiceException}
|
|
91
89
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
92
90
|
*
|
|
91
|
+
* @public
|
|
92
|
+
* @deprecated This API is deprecated.
|
|
93
93
|
*/
|
|
94
94
|
export declare class CreateHsmCommand extends CreateHsmCommand_base {
|
|
95
95
|
}
|
|
@@ -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
|
|
@@ -75,6 +73,8 @@ declare const CreateLunaClientCommand_base: {
|
|
|
75
73
|
* @throws {@link CloudHSMServiceException}
|
|
76
74
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
77
75
|
*
|
|
76
|
+
* @public
|
|
77
|
+
* @deprecated This API is deprecated.
|
|
78
78
|
*/
|
|
79
79
|
export declare class CreateLunaClientCommand extends CreateLunaClientCommand_base {
|
|
80
80
|
}
|
|
@@ -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
|
|
@@ -74,6 +72,8 @@ declare const DeleteHapgCommand_base: {
|
|
|
74
72
|
* @throws {@link CloudHSMServiceException}
|
|
75
73
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
76
74
|
*
|
|
75
|
+
* @public
|
|
76
|
+
* @deprecated This API is deprecated.
|
|
77
77
|
*/
|
|
78
78
|
export declare class DeleteHapgCommand extends DeleteHapgCommand_base {
|
|
79
79
|
}
|
|
@@ -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
|
|
@@ -75,6 +73,8 @@ declare const DeleteHsmCommand_base: {
|
|
|
75
73
|
* @throws {@link CloudHSMServiceException}
|
|
76
74
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
77
75
|
*
|
|
76
|
+
* @public
|
|
77
|
+
* @deprecated This API is deprecated.
|
|
78
78
|
*/
|
|
79
79
|
export declare class DeleteHsmCommand extends DeleteHsmCommand_base {
|
|
80
80
|
}
|
|
@@ -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
|
|
@@ -74,6 +72,8 @@ declare const DeleteLunaClientCommand_base: {
|
|
|
74
72
|
* @throws {@link CloudHSMServiceException}
|
|
75
73
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
76
74
|
*
|
|
75
|
+
* @public
|
|
76
|
+
* @deprecated This API is deprecated.
|
|
77
77
|
*/
|
|
78
78
|
export declare class DeleteLunaClientCommand extends DeleteLunaClientCommand_base {
|
|
79
79
|
}
|
|
@@ -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
|
|
@@ -90,6 +88,8 @@ declare const DescribeHapgCommand_base: {
|
|
|
90
88
|
* @throws {@link CloudHSMServiceException}
|
|
91
89
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
92
90
|
*
|
|
91
|
+
* @public
|
|
92
|
+
* @deprecated This API is deprecated.
|
|
93
93
|
*/
|
|
94
94
|
export declare class DescribeHapgCommand extends DescribeHapgCommand_base {
|
|
95
95
|
}
|
|
@@ -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
|
|
@@ -98,6 +96,8 @@ declare const DescribeHsmCommand_base: {
|
|
|
98
96
|
* @throws {@link CloudHSMServiceException}
|
|
99
97
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
100
98
|
*
|
|
99
|
+
* @public
|
|
100
|
+
* @deprecated This API is deprecated.
|
|
101
101
|
*/
|
|
102
102
|
export declare class DescribeHsmCommand extends DescribeHsmCommand_base {
|
|
103
103
|
}
|
|
@@ -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
|
|
@@ -79,6 +77,8 @@ declare const DescribeLunaClientCommand_base: {
|
|
|
79
77
|
* @throws {@link CloudHSMServiceException}
|
|
80
78
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
81
79
|
*
|
|
80
|
+
* @public
|
|
81
|
+
* @deprecated This API is deprecated.
|
|
82
82
|
*/
|
|
83
83
|
export declare class DescribeLunaClientCommand extends DescribeLunaClientCommand_base {
|
|
84
84
|
}
|
|
@@ -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
|
|
@@ -81,6 +79,8 @@ declare const GetConfigCommand_base: {
|
|
|
81
79
|
* @throws {@link CloudHSMServiceException}
|
|
82
80
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
83
81
|
*
|
|
82
|
+
* @public
|
|
83
|
+
* @deprecated This API is deprecated.
|
|
84
84
|
*/
|
|
85
85
|
export declare class GetConfigCommand extends GetConfigCommand_base {
|
|
86
86
|
}
|
|
@@ -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
|
|
@@ -74,6 +72,8 @@ declare const ListAvailableZonesCommand_base: {
|
|
|
74
72
|
* @throws {@link CloudHSMServiceException}
|
|
75
73
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
76
74
|
*
|
|
75
|
+
* @public
|
|
76
|
+
* @deprecated This API is deprecated.
|
|
77
77
|
*/
|
|
78
78
|
export declare class ListAvailableZonesCommand extends ListAvailableZonesCommand_base {
|
|
79
79
|
}
|
|
@@ -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
|
|
@@ -81,6 +79,8 @@ declare const ListHapgsCommand_base: {
|
|
|
81
79
|
* @throws {@link CloudHSMServiceException}
|
|
82
80
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
83
81
|
*
|
|
82
|
+
* @public
|
|
83
|
+
* @deprecated This API is deprecated.
|
|
84
84
|
*/
|
|
85
85
|
export declare class ListHapgsCommand extends ListHapgsCommand_base {
|
|
86
86
|
}
|
|
@@ -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
|
|
@@ -82,6 +80,8 @@ declare const ListHsmsCommand_base: {
|
|
|
82
80
|
* @throws {@link CloudHSMServiceException}
|
|
83
81
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
84
82
|
*
|
|
83
|
+
* @public
|
|
84
|
+
* @deprecated This API is deprecated.
|
|
85
85
|
*/
|
|
86
86
|
export declare class ListHsmsCommand extends ListHsmsCommand_base {
|
|
87
87
|
}
|
|
@@ -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
|
|
@@ -81,6 +79,8 @@ declare const ListLunaClientsCommand_base: {
|
|
|
81
79
|
* @throws {@link CloudHSMServiceException}
|
|
82
80
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
83
81
|
*
|
|
82
|
+
* @public
|
|
83
|
+
* @deprecated This API is deprecated.
|
|
84
84
|
*/
|
|
85
85
|
export declare class ListLunaClientsCommand extends ListLunaClientsCommand_base {
|
|
86
86
|
}
|
|
@@ -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
|
|
@@ -79,6 +77,8 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
79
77
|
* @throws {@link CloudHSMServiceException}
|
|
80
78
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
81
79
|
*
|
|
80
|
+
* @public
|
|
81
|
+
* @deprecated This API is deprecated.
|
|
82
82
|
*/
|
|
83
83
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
84
84
|
}
|
|
@@ -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
|
|
@@ -78,6 +76,8 @@ declare const ModifyHapgCommand_base: {
|
|
|
78
76
|
* @throws {@link CloudHSMServiceException}
|
|
79
77
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
80
78
|
*
|
|
79
|
+
* @public
|
|
80
|
+
* @deprecated This API is deprecated.
|
|
81
81
|
*/
|
|
82
82
|
export declare class ModifyHapgCommand extends ModifyHapgCommand_base {
|
|
83
83
|
}
|
|
@@ -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
|
|
@@ -85,6 +83,8 @@ declare const ModifyHsmCommand_base: {
|
|
|
85
83
|
* @throws {@link CloudHSMServiceException}
|
|
86
84
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
87
85
|
*
|
|
86
|
+
* @public
|
|
87
|
+
* @deprecated This API is deprecated.
|
|
88
88
|
*/
|
|
89
89
|
export declare class ModifyHsmCommand extends ModifyHsmCommand_base {
|
|
90
90
|
}
|
|
@@ -22,12 +22,10 @@ export interface ModifyLunaClientCommandOutput extends ModifyLunaClientResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const ModifyLunaClientCommand_base: {
|
|
24
24
|
new (input: ModifyLunaClientCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyLunaClientCommandInput, ModifyLunaClientCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ModifyLunaClientCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyLunaClientCommandInput, ModifyLunaClientCommandOutput, 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
|
|
@@ -71,6 +69,8 @@ declare const ModifyLunaClientCommand_base: {
|
|
|
71
69
|
* @throws {@link CloudHSMServiceException}
|
|
72
70
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
73
71
|
*
|
|
72
|
+
* @public
|
|
73
|
+
* @deprecated This API is deprecated.
|
|
74
74
|
*/
|
|
75
75
|
export declare class ModifyLunaClientCommand extends ModifyLunaClientCommand_base {
|
|
76
76
|
}
|
|
@@ -22,12 +22,10 @@ export interface RemoveTagsFromResourceCommandOutput extends RemoveTagsFromResou
|
|
|
22
22
|
}
|
|
23
23
|
declare const RemoveTagsFromResourceCommand_base: {
|
|
24
24
|
new (input: RemoveTagsFromResourceCommandInput): import("@smithy/smithy-client").CommandImpl<RemoveTagsFromResourceCommandInput, RemoveTagsFromResourceCommandOutput, CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RemoveTagsFromResourceCommandInput): import("@smithy/smithy-client").CommandImpl<RemoveTagsFromResourceCommandInput, RemoveTagsFromResourceCommandOutput, 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
|
|
@@ -79,6 +77,8 @@ declare const RemoveTagsFromResourceCommand_base: {
|
|
|
79
77
|
* @throws {@link CloudHSMServiceException}
|
|
80
78
|
* <p>Base exception class for all service exceptions from CloudHSM service.</p>
|
|
81
79
|
*
|
|
80
|
+
* @public
|
|
81
|
+
* @deprecated This API is deprecated.
|
|
82
82
|
*/
|
|
83
83
|
export declare class RemoveTagsFromResourceCommand extends RemoveTagsFromResourceCommand_base {
|
|
84
84
|
}
|