@aws-sdk/client-cloudhsm 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CloudHSM.d.ts +364 -105
- package/dist-types/ts3.4/CloudHSMClient.d.ts +249 -93
- package/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateHapgCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateLunaClientCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteHapgCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteLunaClientCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeHapgCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeLunaClientCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAvailableZonesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListHapgsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListHsmsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListLunaClientsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ModifyHapgCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ModifyHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ModifyLunaClientCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/CloudHSMServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +478 -433
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +245 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-cloudhsm
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-cloudhsm
|
|
@@ -1,105 +1,364 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { CloudHSMClient } from "./CloudHSMClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CloudHSMClient } from "./CloudHSMClient";
|
|
3
|
+
import {
|
|
4
|
+
AddTagsToResourceCommandInput,
|
|
5
|
+
AddTagsToResourceCommandOutput,
|
|
6
|
+
} from "./commands/AddTagsToResourceCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateHapgCommandInput,
|
|
9
|
+
CreateHapgCommandOutput,
|
|
10
|
+
} from "./commands/CreateHapgCommand";
|
|
11
|
+
import {
|
|
12
|
+
CreateHsmCommandInput,
|
|
13
|
+
CreateHsmCommandOutput,
|
|
14
|
+
} from "./commands/CreateHsmCommand";
|
|
15
|
+
import {
|
|
16
|
+
CreateLunaClientCommandInput,
|
|
17
|
+
CreateLunaClientCommandOutput,
|
|
18
|
+
} from "./commands/CreateLunaClientCommand";
|
|
19
|
+
import {
|
|
20
|
+
DeleteHapgCommandInput,
|
|
21
|
+
DeleteHapgCommandOutput,
|
|
22
|
+
} from "./commands/DeleteHapgCommand";
|
|
23
|
+
import {
|
|
24
|
+
DeleteHsmCommandInput,
|
|
25
|
+
DeleteHsmCommandOutput,
|
|
26
|
+
} from "./commands/DeleteHsmCommand";
|
|
27
|
+
import {
|
|
28
|
+
DeleteLunaClientCommandInput,
|
|
29
|
+
DeleteLunaClientCommandOutput,
|
|
30
|
+
} from "./commands/DeleteLunaClientCommand";
|
|
31
|
+
import {
|
|
32
|
+
DescribeHapgCommandInput,
|
|
33
|
+
DescribeHapgCommandOutput,
|
|
34
|
+
} from "./commands/DescribeHapgCommand";
|
|
35
|
+
import {
|
|
36
|
+
DescribeHsmCommandInput,
|
|
37
|
+
DescribeHsmCommandOutput,
|
|
38
|
+
} from "./commands/DescribeHsmCommand";
|
|
39
|
+
import {
|
|
40
|
+
DescribeLunaClientCommandInput,
|
|
41
|
+
DescribeLunaClientCommandOutput,
|
|
42
|
+
} from "./commands/DescribeLunaClientCommand";
|
|
43
|
+
import {
|
|
44
|
+
GetConfigCommandInput,
|
|
45
|
+
GetConfigCommandOutput,
|
|
46
|
+
} from "./commands/GetConfigCommand";
|
|
47
|
+
import {
|
|
48
|
+
ListAvailableZonesCommandInput,
|
|
49
|
+
ListAvailableZonesCommandOutput,
|
|
50
|
+
} from "./commands/ListAvailableZonesCommand";
|
|
51
|
+
import {
|
|
52
|
+
ListHapgsCommandInput,
|
|
53
|
+
ListHapgsCommandOutput,
|
|
54
|
+
} from "./commands/ListHapgsCommand";
|
|
55
|
+
import {
|
|
56
|
+
ListHsmsCommandInput,
|
|
57
|
+
ListHsmsCommandOutput,
|
|
58
|
+
} from "./commands/ListHsmsCommand";
|
|
59
|
+
import {
|
|
60
|
+
ListLunaClientsCommandInput,
|
|
61
|
+
ListLunaClientsCommandOutput,
|
|
62
|
+
} from "./commands/ListLunaClientsCommand";
|
|
63
|
+
import {
|
|
64
|
+
ListTagsForResourceCommandInput,
|
|
65
|
+
ListTagsForResourceCommandOutput,
|
|
66
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
67
|
+
import {
|
|
68
|
+
ModifyHapgCommandInput,
|
|
69
|
+
ModifyHapgCommandOutput,
|
|
70
|
+
} from "./commands/ModifyHapgCommand";
|
|
71
|
+
import {
|
|
72
|
+
ModifyHsmCommandInput,
|
|
73
|
+
ModifyHsmCommandOutput,
|
|
74
|
+
} from "./commands/ModifyHsmCommand";
|
|
75
|
+
import {
|
|
76
|
+
ModifyLunaClientCommandInput,
|
|
77
|
+
ModifyLunaClientCommandOutput,
|
|
78
|
+
} from "./commands/ModifyLunaClientCommand";
|
|
79
|
+
import {
|
|
80
|
+
RemoveTagsFromResourceCommandInput,
|
|
81
|
+
RemoveTagsFromResourceCommandOutput,
|
|
82
|
+
} from "./commands/RemoveTagsFromResourceCommand";
|
|
83
|
+
|
|
84
|
+
export declare class CloudHSM extends CloudHSMClient {
|
|
85
|
+
addTagsToResource(
|
|
86
|
+
args: AddTagsToResourceCommandInput,
|
|
87
|
+
options?: __HttpHandlerOptions
|
|
88
|
+
): Promise<AddTagsToResourceCommandOutput>;
|
|
89
|
+
addTagsToResource(
|
|
90
|
+
args: AddTagsToResourceCommandInput,
|
|
91
|
+
cb: (err: any, data?: AddTagsToResourceCommandOutput) => void
|
|
92
|
+
): void;
|
|
93
|
+
addTagsToResource(
|
|
94
|
+
args: AddTagsToResourceCommandInput,
|
|
95
|
+
options: __HttpHandlerOptions,
|
|
96
|
+
cb: (err: any, data?: AddTagsToResourceCommandOutput) => void
|
|
97
|
+
): void;
|
|
98
|
+
|
|
99
|
+
createHapg(
|
|
100
|
+
args: CreateHapgCommandInput,
|
|
101
|
+
options?: __HttpHandlerOptions
|
|
102
|
+
): Promise<CreateHapgCommandOutput>;
|
|
103
|
+
createHapg(
|
|
104
|
+
args: CreateHapgCommandInput,
|
|
105
|
+
cb: (err: any, data?: CreateHapgCommandOutput) => void
|
|
106
|
+
): void;
|
|
107
|
+
createHapg(
|
|
108
|
+
args: CreateHapgCommandInput,
|
|
109
|
+
options: __HttpHandlerOptions,
|
|
110
|
+
cb: (err: any, data?: CreateHapgCommandOutput) => void
|
|
111
|
+
): void;
|
|
112
|
+
|
|
113
|
+
createHsm(
|
|
114
|
+
args: CreateHsmCommandInput,
|
|
115
|
+
options?: __HttpHandlerOptions
|
|
116
|
+
): Promise<CreateHsmCommandOutput>;
|
|
117
|
+
createHsm(
|
|
118
|
+
args: CreateHsmCommandInput,
|
|
119
|
+
cb: (err: any, data?: CreateHsmCommandOutput) => void
|
|
120
|
+
): void;
|
|
121
|
+
createHsm(
|
|
122
|
+
args: CreateHsmCommandInput,
|
|
123
|
+
options: __HttpHandlerOptions,
|
|
124
|
+
cb: (err: any, data?: CreateHsmCommandOutput) => void
|
|
125
|
+
): void;
|
|
126
|
+
|
|
127
|
+
createLunaClient(
|
|
128
|
+
args: CreateLunaClientCommandInput,
|
|
129
|
+
options?: __HttpHandlerOptions
|
|
130
|
+
): Promise<CreateLunaClientCommandOutput>;
|
|
131
|
+
createLunaClient(
|
|
132
|
+
args: CreateLunaClientCommandInput,
|
|
133
|
+
cb: (err: any, data?: CreateLunaClientCommandOutput) => void
|
|
134
|
+
): void;
|
|
135
|
+
createLunaClient(
|
|
136
|
+
args: CreateLunaClientCommandInput,
|
|
137
|
+
options: __HttpHandlerOptions,
|
|
138
|
+
cb: (err: any, data?: CreateLunaClientCommandOutput) => void
|
|
139
|
+
): void;
|
|
140
|
+
|
|
141
|
+
deleteHapg(
|
|
142
|
+
args: DeleteHapgCommandInput,
|
|
143
|
+
options?: __HttpHandlerOptions
|
|
144
|
+
): Promise<DeleteHapgCommandOutput>;
|
|
145
|
+
deleteHapg(
|
|
146
|
+
args: DeleteHapgCommandInput,
|
|
147
|
+
cb: (err: any, data?: DeleteHapgCommandOutput) => void
|
|
148
|
+
): void;
|
|
149
|
+
deleteHapg(
|
|
150
|
+
args: DeleteHapgCommandInput,
|
|
151
|
+
options: __HttpHandlerOptions,
|
|
152
|
+
cb: (err: any, data?: DeleteHapgCommandOutput) => void
|
|
153
|
+
): void;
|
|
154
|
+
|
|
155
|
+
deleteHsm(
|
|
156
|
+
args: DeleteHsmCommandInput,
|
|
157
|
+
options?: __HttpHandlerOptions
|
|
158
|
+
): Promise<DeleteHsmCommandOutput>;
|
|
159
|
+
deleteHsm(
|
|
160
|
+
args: DeleteHsmCommandInput,
|
|
161
|
+
cb: (err: any, data?: DeleteHsmCommandOutput) => void
|
|
162
|
+
): void;
|
|
163
|
+
deleteHsm(
|
|
164
|
+
args: DeleteHsmCommandInput,
|
|
165
|
+
options: __HttpHandlerOptions,
|
|
166
|
+
cb: (err: any, data?: DeleteHsmCommandOutput) => void
|
|
167
|
+
): void;
|
|
168
|
+
|
|
169
|
+
deleteLunaClient(
|
|
170
|
+
args: DeleteLunaClientCommandInput,
|
|
171
|
+
options?: __HttpHandlerOptions
|
|
172
|
+
): Promise<DeleteLunaClientCommandOutput>;
|
|
173
|
+
deleteLunaClient(
|
|
174
|
+
args: DeleteLunaClientCommandInput,
|
|
175
|
+
cb: (err: any, data?: DeleteLunaClientCommandOutput) => void
|
|
176
|
+
): void;
|
|
177
|
+
deleteLunaClient(
|
|
178
|
+
args: DeleteLunaClientCommandInput,
|
|
179
|
+
options: __HttpHandlerOptions,
|
|
180
|
+
cb: (err: any, data?: DeleteLunaClientCommandOutput) => void
|
|
181
|
+
): void;
|
|
182
|
+
|
|
183
|
+
describeHapg(
|
|
184
|
+
args: DescribeHapgCommandInput,
|
|
185
|
+
options?: __HttpHandlerOptions
|
|
186
|
+
): Promise<DescribeHapgCommandOutput>;
|
|
187
|
+
describeHapg(
|
|
188
|
+
args: DescribeHapgCommandInput,
|
|
189
|
+
cb: (err: any, data?: DescribeHapgCommandOutput) => void
|
|
190
|
+
): void;
|
|
191
|
+
describeHapg(
|
|
192
|
+
args: DescribeHapgCommandInput,
|
|
193
|
+
options: __HttpHandlerOptions,
|
|
194
|
+
cb: (err: any, data?: DescribeHapgCommandOutput) => void
|
|
195
|
+
): void;
|
|
196
|
+
|
|
197
|
+
describeHsm(
|
|
198
|
+
args: DescribeHsmCommandInput,
|
|
199
|
+
options?: __HttpHandlerOptions
|
|
200
|
+
): Promise<DescribeHsmCommandOutput>;
|
|
201
|
+
describeHsm(
|
|
202
|
+
args: DescribeHsmCommandInput,
|
|
203
|
+
cb: (err: any, data?: DescribeHsmCommandOutput) => void
|
|
204
|
+
): void;
|
|
205
|
+
describeHsm(
|
|
206
|
+
args: DescribeHsmCommandInput,
|
|
207
|
+
options: __HttpHandlerOptions,
|
|
208
|
+
cb: (err: any, data?: DescribeHsmCommandOutput) => void
|
|
209
|
+
): void;
|
|
210
|
+
|
|
211
|
+
describeLunaClient(
|
|
212
|
+
args: DescribeLunaClientCommandInput,
|
|
213
|
+
options?: __HttpHandlerOptions
|
|
214
|
+
): Promise<DescribeLunaClientCommandOutput>;
|
|
215
|
+
describeLunaClient(
|
|
216
|
+
args: DescribeLunaClientCommandInput,
|
|
217
|
+
cb: (err: any, data?: DescribeLunaClientCommandOutput) => void
|
|
218
|
+
): void;
|
|
219
|
+
describeLunaClient(
|
|
220
|
+
args: DescribeLunaClientCommandInput,
|
|
221
|
+
options: __HttpHandlerOptions,
|
|
222
|
+
cb: (err: any, data?: DescribeLunaClientCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
|
|
225
|
+
getConfig(
|
|
226
|
+
args: GetConfigCommandInput,
|
|
227
|
+
options?: __HttpHandlerOptions
|
|
228
|
+
): Promise<GetConfigCommandOutput>;
|
|
229
|
+
getConfig(
|
|
230
|
+
args: GetConfigCommandInput,
|
|
231
|
+
cb: (err: any, data?: GetConfigCommandOutput) => void
|
|
232
|
+
): void;
|
|
233
|
+
getConfig(
|
|
234
|
+
args: GetConfigCommandInput,
|
|
235
|
+
options: __HttpHandlerOptions,
|
|
236
|
+
cb: (err: any, data?: GetConfigCommandOutput) => void
|
|
237
|
+
): void;
|
|
238
|
+
|
|
239
|
+
listAvailableZones(
|
|
240
|
+
args: ListAvailableZonesCommandInput,
|
|
241
|
+
options?: __HttpHandlerOptions
|
|
242
|
+
): Promise<ListAvailableZonesCommandOutput>;
|
|
243
|
+
listAvailableZones(
|
|
244
|
+
args: ListAvailableZonesCommandInput,
|
|
245
|
+
cb: (err: any, data?: ListAvailableZonesCommandOutput) => void
|
|
246
|
+
): void;
|
|
247
|
+
listAvailableZones(
|
|
248
|
+
args: ListAvailableZonesCommandInput,
|
|
249
|
+
options: __HttpHandlerOptions,
|
|
250
|
+
cb: (err: any, data?: ListAvailableZonesCommandOutput) => void
|
|
251
|
+
): void;
|
|
252
|
+
|
|
253
|
+
listHapgs(
|
|
254
|
+
args: ListHapgsCommandInput,
|
|
255
|
+
options?: __HttpHandlerOptions
|
|
256
|
+
): Promise<ListHapgsCommandOutput>;
|
|
257
|
+
listHapgs(
|
|
258
|
+
args: ListHapgsCommandInput,
|
|
259
|
+
cb: (err: any, data?: ListHapgsCommandOutput) => void
|
|
260
|
+
): void;
|
|
261
|
+
listHapgs(
|
|
262
|
+
args: ListHapgsCommandInput,
|
|
263
|
+
options: __HttpHandlerOptions,
|
|
264
|
+
cb: (err: any, data?: ListHapgsCommandOutput) => void
|
|
265
|
+
): void;
|
|
266
|
+
|
|
267
|
+
listHsms(
|
|
268
|
+
args: ListHsmsCommandInput,
|
|
269
|
+
options?: __HttpHandlerOptions
|
|
270
|
+
): Promise<ListHsmsCommandOutput>;
|
|
271
|
+
listHsms(
|
|
272
|
+
args: ListHsmsCommandInput,
|
|
273
|
+
cb: (err: any, data?: ListHsmsCommandOutput) => void
|
|
274
|
+
): void;
|
|
275
|
+
listHsms(
|
|
276
|
+
args: ListHsmsCommandInput,
|
|
277
|
+
options: __HttpHandlerOptions,
|
|
278
|
+
cb: (err: any, data?: ListHsmsCommandOutput) => void
|
|
279
|
+
): void;
|
|
280
|
+
|
|
281
|
+
listLunaClients(
|
|
282
|
+
args: ListLunaClientsCommandInput,
|
|
283
|
+
options?: __HttpHandlerOptions
|
|
284
|
+
): Promise<ListLunaClientsCommandOutput>;
|
|
285
|
+
listLunaClients(
|
|
286
|
+
args: ListLunaClientsCommandInput,
|
|
287
|
+
cb: (err: any, data?: ListLunaClientsCommandOutput) => void
|
|
288
|
+
): void;
|
|
289
|
+
listLunaClients(
|
|
290
|
+
args: ListLunaClientsCommandInput,
|
|
291
|
+
options: __HttpHandlerOptions,
|
|
292
|
+
cb: (err: any, data?: ListLunaClientsCommandOutput) => void
|
|
293
|
+
): void;
|
|
294
|
+
|
|
295
|
+
listTagsForResource(
|
|
296
|
+
args: ListTagsForResourceCommandInput,
|
|
297
|
+
options?: __HttpHandlerOptions
|
|
298
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
299
|
+
listTagsForResource(
|
|
300
|
+
args: ListTagsForResourceCommandInput,
|
|
301
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
302
|
+
): void;
|
|
303
|
+
listTagsForResource(
|
|
304
|
+
args: ListTagsForResourceCommandInput,
|
|
305
|
+
options: __HttpHandlerOptions,
|
|
306
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
307
|
+
): void;
|
|
308
|
+
|
|
309
|
+
modifyHapg(
|
|
310
|
+
args: ModifyHapgCommandInput,
|
|
311
|
+
options?: __HttpHandlerOptions
|
|
312
|
+
): Promise<ModifyHapgCommandOutput>;
|
|
313
|
+
modifyHapg(
|
|
314
|
+
args: ModifyHapgCommandInput,
|
|
315
|
+
cb: (err: any, data?: ModifyHapgCommandOutput) => void
|
|
316
|
+
): void;
|
|
317
|
+
modifyHapg(
|
|
318
|
+
args: ModifyHapgCommandInput,
|
|
319
|
+
options: __HttpHandlerOptions,
|
|
320
|
+
cb: (err: any, data?: ModifyHapgCommandOutput) => void
|
|
321
|
+
): void;
|
|
322
|
+
|
|
323
|
+
modifyHsm(
|
|
324
|
+
args: ModifyHsmCommandInput,
|
|
325
|
+
options?: __HttpHandlerOptions
|
|
326
|
+
): Promise<ModifyHsmCommandOutput>;
|
|
327
|
+
modifyHsm(
|
|
328
|
+
args: ModifyHsmCommandInput,
|
|
329
|
+
cb: (err: any, data?: ModifyHsmCommandOutput) => void
|
|
330
|
+
): void;
|
|
331
|
+
modifyHsm(
|
|
332
|
+
args: ModifyHsmCommandInput,
|
|
333
|
+
options: __HttpHandlerOptions,
|
|
334
|
+
cb: (err: any, data?: ModifyHsmCommandOutput) => void
|
|
335
|
+
): void;
|
|
336
|
+
|
|
337
|
+
modifyLunaClient(
|
|
338
|
+
args: ModifyLunaClientCommandInput,
|
|
339
|
+
options?: __HttpHandlerOptions
|
|
340
|
+
): Promise<ModifyLunaClientCommandOutput>;
|
|
341
|
+
modifyLunaClient(
|
|
342
|
+
args: ModifyLunaClientCommandInput,
|
|
343
|
+
cb: (err: any, data?: ModifyLunaClientCommandOutput) => void
|
|
344
|
+
): void;
|
|
345
|
+
modifyLunaClient(
|
|
346
|
+
args: ModifyLunaClientCommandInput,
|
|
347
|
+
options: __HttpHandlerOptions,
|
|
348
|
+
cb: (err: any, data?: ModifyLunaClientCommandOutput) => void
|
|
349
|
+
): void;
|
|
350
|
+
|
|
351
|
+
removeTagsFromResource(
|
|
352
|
+
args: RemoveTagsFromResourceCommandInput,
|
|
353
|
+
options?: __HttpHandlerOptions
|
|
354
|
+
): Promise<RemoveTagsFromResourceCommandOutput>;
|
|
355
|
+
removeTagsFromResource(
|
|
356
|
+
args: RemoveTagsFromResourceCommandInput,
|
|
357
|
+
cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void
|
|
358
|
+
): void;
|
|
359
|
+
removeTagsFromResource(
|
|
360
|
+
args: RemoveTagsFromResourceCommandInput,
|
|
361
|
+
options: __HttpHandlerOptions,
|
|
362
|
+
cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void
|
|
363
|
+
): void;
|
|
364
|
+
}
|