@aws-sdk/client-cloudhsm 3.36.0 → 3.39.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 +42 -0
- package/dist-cjs/CloudHSM.js +0 -13
- package/dist-cjs/CloudHSMClient.js +0 -18
- package/dist-cjs/commands/AddTagsToResourceCommand.js +0 -36
- package/dist-cjs/commands/CreateHapgCommand.js +0 -35
- package/dist-cjs/commands/CreateHsmCommand.js +0 -43
- package/dist-cjs/commands/CreateLunaClientCommand.js +0 -34
- package/dist-cjs/commands/DeleteHapgCommand.js +0 -34
- package/dist-cjs/commands/DeleteHsmCommand.js +0 -35
- package/dist-cjs/commands/DeleteLunaClientCommand.js +0 -34
- package/dist-cjs/commands/DescribeHapgCommand.js +0 -34
- package/dist-cjs/commands/DescribeHsmCommand.js +0 -35
- package/dist-cjs/commands/DescribeLunaClientCommand.js +0 -34
- package/dist-cjs/commands/GetConfigCommand.js +0 -35
- package/dist-cjs/commands/ListAvailableZonesCommand.js +0 -34
- package/dist-cjs/commands/ListHapgsCommand.js +0 -38
- package/dist-cjs/commands/ListHsmsCommand.js +0 -39
- package/dist-cjs/commands/ListLunaClientsCommand.js +0 -38
- package/dist-cjs/commands/ListTagsForResourceCommand.js +0 -34
- package/dist-cjs/commands/ModifyHapgCommand.js +0 -34
- package/dist-cjs/commands/ModifyHsmCommand.js +0 -40
- package/dist-cjs/commands/ModifyLunaClientCommand.js +0 -36
- package/dist-cjs/commands/RemoveTagsFromResourceCommand.js +0 -36
- package/dist-cjs/commands/index.js +23 -0
- package/dist-cjs/endpoints.js +6 -1
- package/dist-cjs/index.js +3 -22
- package/dist-cjs/models/models_0.js +0 -132
- package/dist-cjs/protocols/Aws_json1_1.js +0 -5
- package/dist-cjs/runtimeConfig.browser.js +1 -5
- package/dist-cjs/runtimeConfig.js +1 -5
- package/dist-cjs/runtimeConfig.native.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +0 -3
- package/dist-es/commands/index.js +20 -0
- package/dist-es/endpoints.js +6 -1
- package/dist-es/index.js +3 -22
- package/dist-types/commands/index.d.ts +20 -0
- package/dist-types/index.d.ts +3 -22
- package/dist-types/ts3.4/CloudHSM.d.ts +21 -311
- package/dist-types/ts3.4/CloudHSMClient.d.ts +24 -99
- package/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +2 -32
- package/dist-types/ts3.4/commands/CreateHapgCommand.d.ts +2 -31
- package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +2 -39
- package/dist-types/ts3.4/commands/CreateLunaClientCommand.d.ts +2 -30
- package/dist-types/ts3.4/commands/DeleteHapgCommand.d.ts +2 -30
- package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +2 -31
- package/dist-types/ts3.4/commands/DeleteLunaClientCommand.d.ts +2 -30
- package/dist-types/ts3.4/commands/DescribeHapgCommand.d.ts +2 -30
- package/dist-types/ts3.4/commands/DescribeHsmCommand.d.ts +2 -31
- package/dist-types/ts3.4/commands/DescribeLunaClientCommand.d.ts +2 -30
- package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +2 -31
- package/dist-types/ts3.4/commands/ListAvailableZonesCommand.d.ts +2 -30
- package/dist-types/ts3.4/commands/ListHapgsCommand.d.ts +2 -34
- package/dist-types/ts3.4/commands/ListHsmsCommand.d.ts +2 -35
- package/dist-types/ts3.4/commands/ListLunaClientsCommand.d.ts +2 -34
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -30
- package/dist-types/ts3.4/commands/ModifyHapgCommand.d.ts +2 -30
- package/dist-types/ts3.4/commands/ModifyHsmCommand.d.ts +2 -36
- package/dist-types/ts3.4/commands/ModifyLunaClientCommand.d.ts +2 -32
- package/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +2 -32
- package/dist-types/ts3.4/commands/index.d.ts +20 -0
- package/dist-types/ts3.4/index.d.ts +3 -22
- package/dist-types/ts3.4/models/models_0.d.ts +172 -565
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -3
- package/package.json +32 -32
|
@@ -1,359 +1,208 @@
|
|
|
1
1
|
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
-
|
|
3
|
-
* <p>A key-value pair that identifies or specifies metadata about an AWS CloudHSM
|
|
4
|
-
* resource.</p>
|
|
5
|
-
*/
|
|
2
|
+
|
|
6
3
|
export interface Tag {
|
|
7
|
-
|
|
8
|
-
* <p>The key of the tag.</p>
|
|
9
|
-
*/
|
|
4
|
+
|
|
10
5
|
Key: string | undefined;
|
|
11
|
-
|
|
12
|
-
* <p>The value of the tag.</p>
|
|
13
|
-
*/
|
|
6
|
+
|
|
14
7
|
Value: string | undefined;
|
|
15
8
|
}
|
|
16
9
|
export declare namespace Tag {
|
|
17
|
-
|
|
18
|
-
* @internal
|
|
19
|
-
*/
|
|
10
|
+
|
|
20
11
|
const filterSensitiveLog: (obj: Tag) => any;
|
|
21
12
|
}
|
|
22
13
|
export interface AddTagsToResourceRequest {
|
|
23
|
-
|
|
24
|
-
* <p>The Amazon Resource Name (ARN) of the AWS CloudHSM resource to tag.</p>
|
|
25
|
-
*/
|
|
14
|
+
|
|
26
15
|
ResourceArn: string | undefined;
|
|
27
|
-
|
|
28
|
-
* <p>One or more tags.</p>
|
|
29
|
-
*/
|
|
16
|
+
|
|
30
17
|
TagList: Tag[] | undefined;
|
|
31
18
|
}
|
|
32
19
|
export declare namespace AddTagsToResourceRequest {
|
|
33
|
-
|
|
34
|
-
* @internal
|
|
35
|
-
*/
|
|
20
|
+
|
|
36
21
|
const filterSensitiveLog: (obj: AddTagsToResourceRequest) => any;
|
|
37
22
|
}
|
|
38
23
|
export interface AddTagsToResourceResponse {
|
|
39
|
-
|
|
40
|
-
* <p>The status of the operation.</p>
|
|
41
|
-
*/
|
|
24
|
+
|
|
42
25
|
Status: string | undefined;
|
|
43
26
|
}
|
|
44
27
|
export declare namespace AddTagsToResourceResponse {
|
|
45
|
-
|
|
46
|
-
* @internal
|
|
47
|
-
*/
|
|
28
|
+
|
|
48
29
|
const filterSensitiveLog: (obj: AddTagsToResourceResponse) => any;
|
|
49
30
|
}
|
|
50
|
-
|
|
51
|
-
* <p>Indicates that an internal error occurred.</p>
|
|
52
|
-
*/
|
|
31
|
+
|
|
53
32
|
export interface CloudHsmInternalException extends __SmithyException, $MetadataBearer {
|
|
54
33
|
name: "CloudHsmInternalException";
|
|
55
34
|
$fault: "server";
|
|
56
|
-
|
|
57
|
-
* <p>Additional information about the error.</p>
|
|
58
|
-
*/
|
|
35
|
+
|
|
59
36
|
message?: string;
|
|
60
|
-
|
|
61
|
-
* <p>Indicates if the action can be retried.</p>
|
|
62
|
-
*/
|
|
37
|
+
|
|
63
38
|
retryable?: boolean;
|
|
64
39
|
}
|
|
65
40
|
export declare namespace CloudHsmInternalException {
|
|
66
|
-
|
|
67
|
-
* @internal
|
|
68
|
-
*/
|
|
41
|
+
|
|
69
42
|
const filterSensitiveLog: (obj: CloudHsmInternalException) => any;
|
|
70
43
|
}
|
|
71
|
-
|
|
72
|
-
* <p>Indicates that an exception occurred in the AWS CloudHSM service.</p>
|
|
73
|
-
*/
|
|
44
|
+
|
|
74
45
|
export interface CloudHsmServiceException extends __SmithyException, $MetadataBearer {
|
|
75
46
|
name: "CloudHsmServiceException";
|
|
76
47
|
$fault: "client";
|
|
77
|
-
|
|
78
|
-
* <p>Additional information about the error.</p>
|
|
79
|
-
*/
|
|
48
|
+
|
|
80
49
|
message?: string;
|
|
81
|
-
|
|
82
|
-
* <p>Indicates if the action can be retried.</p>
|
|
83
|
-
*/
|
|
50
|
+
|
|
84
51
|
retryable?: boolean;
|
|
85
52
|
}
|
|
86
53
|
export declare namespace CloudHsmServiceException {
|
|
87
|
-
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
54
|
+
|
|
90
55
|
const filterSensitiveLog: (obj: CloudHsmServiceException) => any;
|
|
91
56
|
}
|
|
92
|
-
|
|
93
|
-
* <p>Indicates that one or more of the request parameters are not valid.</p>
|
|
94
|
-
*/
|
|
57
|
+
|
|
95
58
|
export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
|
|
96
59
|
name: "InvalidRequestException";
|
|
97
60
|
$fault: "client";
|
|
98
|
-
|
|
99
|
-
* <p>Additional information about the error.</p>
|
|
100
|
-
*/
|
|
61
|
+
|
|
101
62
|
message?: string;
|
|
102
|
-
|
|
103
|
-
* <p>Indicates if the action can be retried.</p>
|
|
104
|
-
*/
|
|
63
|
+
|
|
105
64
|
retryable?: boolean;
|
|
106
65
|
}
|
|
107
66
|
export declare namespace InvalidRequestException {
|
|
108
|
-
|
|
109
|
-
* @internal
|
|
110
|
-
*/
|
|
67
|
+
|
|
111
68
|
const filterSensitiveLog: (obj: InvalidRequestException) => any;
|
|
112
69
|
}
|
|
113
70
|
export declare enum ClientVersion {
|
|
114
71
|
FIVE_ONE = "5.1",
|
|
115
72
|
FIVE_THREE = "5.3"
|
|
116
73
|
}
|
|
117
|
-
|
|
118
|
-
* <p>Contains the inputs for the <a>CreateHapgRequest</a> action.</p>
|
|
119
|
-
*/
|
|
74
|
+
|
|
120
75
|
export interface CreateHapgRequest {
|
|
121
|
-
|
|
122
|
-
* <p>The label of the new high-availability partition group.</p>
|
|
123
|
-
*/
|
|
76
|
+
|
|
124
77
|
Label: string | undefined;
|
|
125
78
|
}
|
|
126
79
|
export declare namespace CreateHapgRequest {
|
|
127
|
-
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
80
|
+
|
|
130
81
|
const filterSensitiveLog: (obj: CreateHapgRequest) => any;
|
|
131
82
|
}
|
|
132
|
-
|
|
133
|
-
* <p>Contains the output of the <a>CreateHAPartitionGroup</a> action.</p>
|
|
134
|
-
*/
|
|
83
|
+
|
|
135
84
|
export interface CreateHapgResponse {
|
|
136
|
-
|
|
137
|
-
* <p>The ARN of the high-availability partition group.</p>
|
|
138
|
-
*/
|
|
85
|
+
|
|
139
86
|
HapgArn?: string;
|
|
140
87
|
}
|
|
141
88
|
export declare namespace CreateHapgResponse {
|
|
142
|
-
|
|
143
|
-
* @internal
|
|
144
|
-
*/
|
|
89
|
+
|
|
145
90
|
const filterSensitiveLog: (obj: CreateHapgResponse) => any;
|
|
146
91
|
}
|
|
147
92
|
export declare enum SubscriptionType {
|
|
148
93
|
PRODUCTION = "PRODUCTION"
|
|
149
94
|
}
|
|
150
|
-
|
|
151
|
-
* <p>Contains the inputs for the <code>CreateHsm</code> operation.</p>
|
|
152
|
-
*/
|
|
95
|
+
|
|
153
96
|
export interface CreateHsmRequest {
|
|
154
|
-
|
|
155
|
-
* <p>The identifier of the subnet in your VPC in which to place the HSM.</p>
|
|
156
|
-
*/
|
|
97
|
+
|
|
157
98
|
SubnetId: string | undefined;
|
|
158
|
-
|
|
159
|
-
* <p>The SSH public key to install on the HSM.</p>
|
|
160
|
-
*/
|
|
99
|
+
|
|
161
100
|
SshKey: string | undefined;
|
|
162
|
-
|
|
163
|
-
* <p>The IP address to assign to the HSM's ENI.</p>
|
|
164
|
-
* <p>If an IP address is not specified, an IP address will be randomly chosen from the CIDR
|
|
165
|
-
* range of the subnet.</p>
|
|
166
|
-
*/
|
|
101
|
+
|
|
167
102
|
EniIp?: string;
|
|
168
|
-
|
|
169
|
-
* <p>The ARN of an IAM role to enable the AWS CloudHSM service to allocate an ENI on your
|
|
170
|
-
* behalf.</p>
|
|
171
|
-
*/
|
|
103
|
+
|
|
172
104
|
IamRoleArn: string | undefined;
|
|
173
|
-
|
|
174
|
-
* <p>The external ID from <code>IamRoleArn</code>, if present.</p>
|
|
175
|
-
*/
|
|
105
|
+
|
|
176
106
|
ExternalId?: string;
|
|
177
|
-
|
|
178
|
-
* <p>Specifies the type of subscription for the HSM.</p>
|
|
179
|
-
* <ul>
|
|
180
|
-
* <li>
|
|
181
|
-
* <p>
|
|
182
|
-
* <b>PRODUCTION</b> - The HSM is being used in a production
|
|
183
|
-
* environment.</p>
|
|
184
|
-
* </li>
|
|
185
|
-
* <li>
|
|
186
|
-
* <p>
|
|
187
|
-
* <b>TRIAL</b> - The HSM is being used in a product
|
|
188
|
-
* trial.</p>
|
|
189
|
-
* </li>
|
|
190
|
-
* </ul>
|
|
191
|
-
*/
|
|
107
|
+
|
|
192
108
|
SubscriptionType: SubscriptionType | string | undefined;
|
|
193
|
-
|
|
194
|
-
* <p>A user-defined token to ensure idempotence. Subsequent calls to this operation with the
|
|
195
|
-
* same token will be ignored.</p>
|
|
196
|
-
*/
|
|
109
|
+
|
|
197
110
|
ClientToken?: string;
|
|
198
|
-
|
|
199
|
-
* <p>The IP address for the syslog monitoring server. The AWS CloudHSM service only supports one
|
|
200
|
-
* syslog monitoring server.</p>
|
|
201
|
-
*/
|
|
111
|
+
|
|
202
112
|
SyslogIp?: string;
|
|
203
113
|
}
|
|
204
114
|
export declare namespace CreateHsmRequest {
|
|
205
|
-
|
|
206
|
-
* @internal
|
|
207
|
-
*/
|
|
115
|
+
|
|
208
116
|
const filterSensitiveLog: (obj: CreateHsmRequest) => any;
|
|
209
117
|
}
|
|
210
|
-
|
|
211
|
-
* <p>Contains the output of the <code>CreateHsm</code> operation.</p>
|
|
212
|
-
*/
|
|
118
|
+
|
|
213
119
|
export interface CreateHsmResponse {
|
|
214
|
-
|
|
215
|
-
* <p>The ARN of the HSM.</p>
|
|
216
|
-
*/
|
|
120
|
+
|
|
217
121
|
HsmArn?: string;
|
|
218
122
|
}
|
|
219
123
|
export declare namespace CreateHsmResponse {
|
|
220
|
-
|
|
221
|
-
* @internal
|
|
222
|
-
*/
|
|
124
|
+
|
|
223
125
|
const filterSensitiveLog: (obj: CreateHsmResponse) => any;
|
|
224
126
|
}
|
|
225
|
-
|
|
226
|
-
* <p>Contains the inputs for the <a>CreateLunaClient</a> action.</p>
|
|
227
|
-
*/
|
|
127
|
+
|
|
228
128
|
export interface CreateLunaClientRequest {
|
|
229
|
-
|
|
230
|
-
* <p>The label for the client.</p>
|
|
231
|
-
*/
|
|
129
|
+
|
|
232
130
|
Label?: string;
|
|
233
|
-
|
|
234
|
-
* <p>The contents of a Base64-Encoded X.509 v3 certificate to be installed on the HSMs used
|
|
235
|
-
* by this client.</p>
|
|
236
|
-
*/
|
|
131
|
+
|
|
237
132
|
Certificate: string | undefined;
|
|
238
133
|
}
|
|
239
134
|
export declare namespace CreateLunaClientRequest {
|
|
240
|
-
|
|
241
|
-
* @internal
|
|
242
|
-
*/
|
|
135
|
+
|
|
243
136
|
const filterSensitiveLog: (obj: CreateLunaClientRequest) => any;
|
|
244
137
|
}
|
|
245
|
-
|
|
246
|
-
* <p>Contains the output of the <a>CreateLunaClient</a> action.</p>
|
|
247
|
-
*/
|
|
138
|
+
|
|
248
139
|
export interface CreateLunaClientResponse {
|
|
249
|
-
|
|
250
|
-
* <p>The ARN of the client.</p>
|
|
251
|
-
*/
|
|
140
|
+
|
|
252
141
|
ClientArn?: string;
|
|
253
142
|
}
|
|
254
143
|
export declare namespace CreateLunaClientResponse {
|
|
255
|
-
|
|
256
|
-
* @internal
|
|
257
|
-
*/
|
|
144
|
+
|
|
258
145
|
const filterSensitiveLog: (obj: CreateLunaClientResponse) => any;
|
|
259
146
|
}
|
|
260
|
-
|
|
261
|
-
* <p>Contains the inputs for the <a>DeleteHapg</a> action.</p>
|
|
262
|
-
*/
|
|
147
|
+
|
|
263
148
|
export interface DeleteHapgRequest {
|
|
264
|
-
|
|
265
|
-
* <p>The ARN of the high-availability partition group to delete.</p>
|
|
266
|
-
*/
|
|
149
|
+
|
|
267
150
|
HapgArn: string | undefined;
|
|
268
151
|
}
|
|
269
152
|
export declare namespace DeleteHapgRequest {
|
|
270
|
-
|
|
271
|
-
* @internal
|
|
272
|
-
*/
|
|
153
|
+
|
|
273
154
|
const filterSensitiveLog: (obj: DeleteHapgRequest) => any;
|
|
274
155
|
}
|
|
275
|
-
|
|
276
|
-
* <p>Contains the output of the <a>DeleteHapg</a> action.</p>
|
|
277
|
-
*/
|
|
156
|
+
|
|
278
157
|
export interface DeleteHapgResponse {
|
|
279
|
-
|
|
280
|
-
* <p>The status of the action.</p>
|
|
281
|
-
*/
|
|
158
|
+
|
|
282
159
|
Status: string | undefined;
|
|
283
160
|
}
|
|
284
161
|
export declare namespace DeleteHapgResponse {
|
|
285
|
-
|
|
286
|
-
* @internal
|
|
287
|
-
*/
|
|
162
|
+
|
|
288
163
|
const filterSensitiveLog: (obj: DeleteHapgResponse) => any;
|
|
289
164
|
}
|
|
290
|
-
|
|
291
|
-
* <p>Contains the inputs for the <a>DeleteHsm</a> operation.</p>
|
|
292
|
-
*/
|
|
165
|
+
|
|
293
166
|
export interface DeleteHsmRequest {
|
|
294
|
-
|
|
295
|
-
* <p>The ARN of the HSM to delete.</p>
|
|
296
|
-
*/
|
|
167
|
+
|
|
297
168
|
HsmArn: string | undefined;
|
|
298
169
|
}
|
|
299
170
|
export declare namespace DeleteHsmRequest {
|
|
300
|
-
|
|
301
|
-
* @internal
|
|
302
|
-
*/
|
|
171
|
+
|
|
303
172
|
const filterSensitiveLog: (obj: DeleteHsmRequest) => any;
|
|
304
173
|
}
|
|
305
|
-
|
|
306
|
-
* <p>Contains the output of the <a>DeleteHsm</a> operation.</p>
|
|
307
|
-
*/
|
|
174
|
+
|
|
308
175
|
export interface DeleteHsmResponse {
|
|
309
|
-
|
|
310
|
-
* <p>The status of the operation.</p>
|
|
311
|
-
*/
|
|
176
|
+
|
|
312
177
|
Status: string | undefined;
|
|
313
178
|
}
|
|
314
179
|
export declare namespace DeleteHsmResponse {
|
|
315
|
-
|
|
316
|
-
* @internal
|
|
317
|
-
*/
|
|
180
|
+
|
|
318
181
|
const filterSensitiveLog: (obj: DeleteHsmResponse) => any;
|
|
319
182
|
}
|
|
320
183
|
export interface DeleteLunaClientRequest {
|
|
321
|
-
|
|
322
|
-
* <p>The ARN of the client to delete.</p>
|
|
323
|
-
*/
|
|
184
|
+
|
|
324
185
|
ClientArn: string | undefined;
|
|
325
186
|
}
|
|
326
187
|
export declare namespace DeleteLunaClientRequest {
|
|
327
|
-
|
|
328
|
-
* @internal
|
|
329
|
-
*/
|
|
188
|
+
|
|
330
189
|
const filterSensitiveLog: (obj: DeleteLunaClientRequest) => any;
|
|
331
190
|
}
|
|
332
191
|
export interface DeleteLunaClientResponse {
|
|
333
|
-
|
|
334
|
-
* <p>The status of the action.</p>
|
|
335
|
-
*/
|
|
192
|
+
|
|
336
193
|
Status: string | undefined;
|
|
337
194
|
}
|
|
338
195
|
export declare namespace DeleteLunaClientResponse {
|
|
339
|
-
|
|
340
|
-
* @internal
|
|
341
|
-
*/
|
|
196
|
+
|
|
342
197
|
const filterSensitiveLog: (obj: DeleteLunaClientResponse) => any;
|
|
343
198
|
}
|
|
344
|
-
|
|
345
|
-
* <p>Contains the inputs for the <a>DescribeHapg</a> action.</p>
|
|
346
|
-
*/
|
|
199
|
+
|
|
347
200
|
export interface DescribeHapgRequest {
|
|
348
|
-
|
|
349
|
-
* <p>The ARN of the high-availability partition group to describe.</p>
|
|
350
|
-
*/
|
|
201
|
+
|
|
351
202
|
HapgArn: string | undefined;
|
|
352
203
|
}
|
|
353
204
|
export declare namespace DescribeHapgRequest {
|
|
354
|
-
|
|
355
|
-
* @internal
|
|
356
|
-
*/
|
|
205
|
+
|
|
357
206
|
const filterSensitiveLog: (obj: DescribeHapgRequest) => any;
|
|
358
207
|
}
|
|
359
208
|
export declare enum CloudHsmObjectState {
|
|
@@ -361,73 +210,40 @@ export declare enum CloudHsmObjectState {
|
|
|
361
210
|
READY = "READY",
|
|
362
211
|
UPDATING = "UPDATING"
|
|
363
212
|
}
|
|
364
|
-
|
|
365
|
-
* <p>Contains the output of the <a>DescribeHapg</a> action.</p>
|
|
366
|
-
*/
|
|
213
|
+
|
|
367
214
|
export interface DescribeHapgResponse {
|
|
368
|
-
|
|
369
|
-
* <p>The ARN of the high-availability partition group.</p>
|
|
370
|
-
*/
|
|
215
|
+
|
|
371
216
|
HapgArn?: string;
|
|
372
|
-
|
|
373
|
-
* <p>The serial number of the high-availability partition group.</p>
|
|
374
|
-
*/
|
|
217
|
+
|
|
375
218
|
HapgSerial?: string;
|
|
376
|
-
|
|
377
|
-
* <p></p>
|
|
378
|
-
*/
|
|
219
|
+
|
|
379
220
|
HsmsLastActionFailed?: string[];
|
|
380
|
-
|
|
381
|
-
* <p></p>
|
|
382
|
-
*/
|
|
221
|
+
|
|
383
222
|
HsmsPendingDeletion?: string[];
|
|
384
|
-
|
|
385
|
-
* <p></p>
|
|
386
|
-
*/
|
|
223
|
+
|
|
387
224
|
HsmsPendingRegistration?: string[];
|
|
388
|
-
|
|
389
|
-
* <p>The label for the high-availability partition group.</p>
|
|
390
|
-
*/
|
|
225
|
+
|
|
391
226
|
Label?: string;
|
|
392
|
-
|
|
393
|
-
* <p>The date and time the high-availability partition group was last modified.</p>
|
|
394
|
-
*/
|
|
227
|
+
|
|
395
228
|
LastModifiedTimestamp?: string;
|
|
396
|
-
|
|
397
|
-
* <p>The list of partition serial numbers that belong to the high-availability partition
|
|
398
|
-
* group.</p>
|
|
399
|
-
*/
|
|
229
|
+
|
|
400
230
|
PartitionSerialList?: string[];
|
|
401
|
-
|
|
402
|
-
* <p>The state of the high-availability partition group.</p>
|
|
403
|
-
*/
|
|
231
|
+
|
|
404
232
|
State?: CloudHsmObjectState | string;
|
|
405
233
|
}
|
|
406
234
|
export declare namespace DescribeHapgResponse {
|
|
407
|
-
|
|
408
|
-
* @internal
|
|
409
|
-
*/
|
|
235
|
+
|
|
410
236
|
const filterSensitiveLog: (obj: DescribeHapgResponse) => any;
|
|
411
237
|
}
|
|
412
|
-
|
|
413
|
-
* <p>Contains the inputs for the <a>DescribeHsm</a> operation.</p>
|
|
414
|
-
*/
|
|
238
|
+
|
|
415
239
|
export interface DescribeHsmRequest {
|
|
416
|
-
|
|
417
|
-
* <p>The ARN of the HSM. Either the <code>HsmArn</code> or the <code>SerialNumber</code>
|
|
418
|
-
* parameter must be specified.</p>
|
|
419
|
-
*/
|
|
240
|
+
|
|
420
241
|
HsmArn?: string;
|
|
421
|
-
|
|
422
|
-
* <p>The serial number of the HSM. Either the <code>HsmArn</code> or the
|
|
423
|
-
* <code>HsmSerialNumber</code> parameter must be specified.</p>
|
|
424
|
-
*/
|
|
242
|
+
|
|
425
243
|
HsmSerialNumber?: string;
|
|
426
244
|
}
|
|
427
245
|
export declare namespace DescribeHsmRequest {
|
|
428
|
-
|
|
429
|
-
* @internal
|
|
430
|
-
*/
|
|
246
|
+
|
|
431
247
|
const filterSensitiveLog: (obj: DescribeHsmRequest) => any;
|
|
432
248
|
}
|
|
433
249
|
export declare enum HsmStatus {
|
|
@@ -439,481 +255,272 @@ export declare enum HsmStatus {
|
|
|
439
255
|
TERMINATING = "TERMINATING",
|
|
440
256
|
UPDATING = "UPDATING"
|
|
441
257
|
}
|
|
442
|
-
|
|
443
|
-
* <p>Contains the output of the <a>DescribeHsm</a> operation.</p>
|
|
444
|
-
*/
|
|
258
|
+
|
|
445
259
|
export interface DescribeHsmResponse {
|
|
446
|
-
|
|
447
|
-
* <p>The ARN of the HSM.</p>
|
|
448
|
-
*/
|
|
260
|
+
|
|
449
261
|
HsmArn?: string;
|
|
450
|
-
|
|
451
|
-
* <p>The status of the HSM.</p>
|
|
452
|
-
*/
|
|
262
|
+
|
|
453
263
|
Status?: HsmStatus | string;
|
|
454
|
-
|
|
455
|
-
* <p>Contains additional information about the status of the HSM.</p>
|
|
456
|
-
*/
|
|
264
|
+
|
|
457
265
|
StatusDetails?: string;
|
|
458
|
-
|
|
459
|
-
* <p>The Availability Zone that the HSM is in.</p>
|
|
460
|
-
*/
|
|
266
|
+
|
|
461
267
|
AvailabilityZone?: string;
|
|
462
|
-
|
|
463
|
-
* <p>The identifier of the elastic network interface (ENI) attached to the HSM.</p>
|
|
464
|
-
*/
|
|
268
|
+
|
|
465
269
|
EniId?: string;
|
|
466
|
-
|
|
467
|
-
* <p>The IP address assigned to the HSM's ENI.</p>
|
|
468
|
-
*/
|
|
270
|
+
|
|
469
271
|
EniIp?: string;
|
|
470
|
-
|
|
471
|
-
* <p>Specifies the type of subscription for the HSM.</p>
|
|
472
|
-
* <ul>
|
|
473
|
-
* <li>
|
|
474
|
-
* <p>
|
|
475
|
-
* <b>PRODUCTION</b> - The HSM is being used in a production
|
|
476
|
-
* environment.</p>
|
|
477
|
-
* </li>
|
|
478
|
-
* <li>
|
|
479
|
-
* <p>
|
|
480
|
-
* <b>TRIAL</b> - The HSM is being used in a product
|
|
481
|
-
* trial.</p>
|
|
482
|
-
* </li>
|
|
483
|
-
* </ul>
|
|
484
|
-
*/
|
|
272
|
+
|
|
485
273
|
SubscriptionType?: SubscriptionType | string;
|
|
486
|
-
|
|
487
|
-
* <p>The subscription start date.</p>
|
|
488
|
-
*/
|
|
274
|
+
|
|
489
275
|
SubscriptionStartDate?: string;
|
|
490
|
-
|
|
491
|
-
* <p>The subscription end date.</p>
|
|
492
|
-
*/
|
|
276
|
+
|
|
493
277
|
SubscriptionEndDate?: string;
|
|
494
|
-
|
|
495
|
-
* <p>The identifier of the VPC that the HSM is in.</p>
|
|
496
|
-
*/
|
|
278
|
+
|
|
497
279
|
VpcId?: string;
|
|
498
|
-
|
|
499
|
-
* <p>The identifier of the subnet that the HSM is in.</p>
|
|
500
|
-
*/
|
|
280
|
+
|
|
501
281
|
SubnetId?: string;
|
|
502
|
-
|
|
503
|
-
* <p>The ARN of the IAM role assigned to the HSM.</p>
|
|
504
|
-
*/
|
|
282
|
+
|
|
505
283
|
IamRoleArn?: string;
|
|
506
|
-
|
|
507
|
-
* <p>The serial number of the HSM.</p>
|
|
508
|
-
*/
|
|
284
|
+
|
|
509
285
|
SerialNumber?: string;
|
|
510
|
-
|
|
511
|
-
* <p>The name of the HSM vendor.</p>
|
|
512
|
-
*/
|
|
286
|
+
|
|
513
287
|
VendorName?: string;
|
|
514
|
-
|
|
515
|
-
* <p>The HSM model type.</p>
|
|
516
|
-
*/
|
|
288
|
+
|
|
517
289
|
HsmType?: string;
|
|
518
|
-
|
|
519
|
-
* <p>The HSM software version.</p>
|
|
520
|
-
*/
|
|
290
|
+
|
|
521
291
|
SoftwareVersion?: string;
|
|
522
|
-
|
|
523
|
-
* <p>The public SSH key.</p>
|
|
524
|
-
*/
|
|
292
|
+
|
|
525
293
|
SshPublicKey?: string;
|
|
526
|
-
|
|
527
|
-
* <p>The date and time that the SSH key was last updated.</p>
|
|
528
|
-
*/
|
|
294
|
+
|
|
529
295
|
SshKeyLastUpdated?: string;
|
|
530
|
-
|
|
531
|
-
* <p>The URI of the certificate server.</p>
|
|
532
|
-
*/
|
|
296
|
+
|
|
533
297
|
ServerCertUri?: string;
|
|
534
|
-
|
|
535
|
-
* <p>The date and time that the server certificate was last updated.</p>
|
|
536
|
-
*/
|
|
298
|
+
|
|
537
299
|
ServerCertLastUpdated?: string;
|
|
538
|
-
|
|
539
|
-
* <p>The list of partitions on the HSM.</p>
|
|
540
|
-
*/
|
|
300
|
+
|
|
541
301
|
Partitions?: string[];
|
|
542
302
|
}
|
|
543
303
|
export declare namespace DescribeHsmResponse {
|
|
544
|
-
|
|
545
|
-
* @internal
|
|
546
|
-
*/
|
|
304
|
+
|
|
547
305
|
const filterSensitiveLog: (obj: DescribeHsmResponse) => any;
|
|
548
306
|
}
|
|
549
307
|
export interface DescribeLunaClientRequest {
|
|
550
|
-
|
|
551
|
-
* <p>The ARN of the client.</p>
|
|
552
|
-
*/
|
|
308
|
+
|
|
553
309
|
ClientArn?: string;
|
|
554
|
-
|
|
555
|
-
* <p>The certificate fingerprint.</p>
|
|
556
|
-
*/
|
|
310
|
+
|
|
557
311
|
CertificateFingerprint?: string;
|
|
558
312
|
}
|
|
559
313
|
export declare namespace DescribeLunaClientRequest {
|
|
560
|
-
|
|
561
|
-
* @internal
|
|
562
|
-
*/
|
|
314
|
+
|
|
563
315
|
const filterSensitiveLog: (obj: DescribeLunaClientRequest) => any;
|
|
564
316
|
}
|
|
565
317
|
export interface DescribeLunaClientResponse {
|
|
566
|
-
|
|
567
|
-
* <p>The ARN of the client.</p>
|
|
568
|
-
*/
|
|
318
|
+
|
|
569
319
|
ClientArn?: string;
|
|
570
|
-
|
|
571
|
-
* <p>The certificate installed on the HSMs used by this client.</p>
|
|
572
|
-
*/
|
|
320
|
+
|
|
573
321
|
Certificate?: string;
|
|
574
|
-
|
|
575
|
-
* <p>The certificate fingerprint.</p>
|
|
576
|
-
*/
|
|
322
|
+
|
|
577
323
|
CertificateFingerprint?: string;
|
|
578
|
-
|
|
579
|
-
* <p>The date and time the client was last modified.</p>
|
|
580
|
-
*/
|
|
324
|
+
|
|
581
325
|
LastModifiedTimestamp?: string;
|
|
582
|
-
|
|
583
|
-
* <p>The label of the client.</p>
|
|
584
|
-
*/
|
|
326
|
+
|
|
585
327
|
Label?: string;
|
|
586
328
|
}
|
|
587
329
|
export declare namespace DescribeLunaClientResponse {
|
|
588
|
-
|
|
589
|
-
* @internal
|
|
590
|
-
*/
|
|
330
|
+
|
|
591
331
|
const filterSensitiveLog: (obj: DescribeLunaClientResponse) => any;
|
|
592
332
|
}
|
|
593
333
|
export interface GetConfigRequest {
|
|
594
|
-
|
|
595
|
-
* <p>The ARN of the client.</p>
|
|
596
|
-
*/
|
|
334
|
+
|
|
597
335
|
ClientArn: string | undefined;
|
|
598
|
-
|
|
599
|
-
* <p>The client version.</p>
|
|
600
|
-
*/
|
|
336
|
+
|
|
601
337
|
ClientVersion: ClientVersion | string | undefined;
|
|
602
|
-
|
|
603
|
-
* <p>A list of ARNs that identify the high-availability partition groups that are associated
|
|
604
|
-
* with the client.</p>
|
|
605
|
-
*/
|
|
338
|
+
|
|
606
339
|
HapgList: string[] | undefined;
|
|
607
340
|
}
|
|
608
341
|
export declare namespace GetConfigRequest {
|
|
609
|
-
|
|
610
|
-
* @internal
|
|
611
|
-
*/
|
|
342
|
+
|
|
612
343
|
const filterSensitiveLog: (obj: GetConfigRequest) => any;
|
|
613
344
|
}
|
|
614
345
|
export interface GetConfigResponse {
|
|
615
|
-
|
|
616
|
-
* <p>The type of credentials.</p>
|
|
617
|
-
*/
|
|
346
|
+
|
|
618
347
|
ConfigType?: string;
|
|
619
|
-
|
|
620
|
-
* <p>The chrystoki.conf configuration file.</p>
|
|
621
|
-
*/
|
|
348
|
+
|
|
622
349
|
ConfigFile?: string;
|
|
623
|
-
|
|
624
|
-
* <p>The certificate file containing the server.pem files of the HSMs.</p>
|
|
625
|
-
*/
|
|
350
|
+
|
|
626
351
|
ConfigCred?: string;
|
|
627
352
|
}
|
|
628
353
|
export declare namespace GetConfigResponse {
|
|
629
|
-
|
|
630
|
-
* @internal
|
|
631
|
-
*/
|
|
354
|
+
|
|
632
355
|
const filterSensitiveLog: (obj: GetConfigResponse) => any;
|
|
633
356
|
}
|
|
634
|
-
|
|
635
|
-
* <p>Contains the inputs for the <a>ListAvailableZones</a> action.</p>
|
|
636
|
-
*/
|
|
357
|
+
|
|
637
358
|
export interface ListAvailableZonesRequest {
|
|
638
359
|
}
|
|
639
360
|
export declare namespace ListAvailableZonesRequest {
|
|
640
|
-
|
|
641
|
-
* @internal
|
|
642
|
-
*/
|
|
361
|
+
|
|
643
362
|
const filterSensitiveLog: (obj: ListAvailableZonesRequest) => any;
|
|
644
363
|
}
|
|
645
364
|
export interface ListAvailableZonesResponse {
|
|
646
|
-
|
|
647
|
-
* <p>The list of Availability Zones that have available AWS CloudHSM capacity.</p>
|
|
648
|
-
*/
|
|
365
|
+
|
|
649
366
|
AZList?: string[];
|
|
650
367
|
}
|
|
651
368
|
export declare namespace ListAvailableZonesResponse {
|
|
652
|
-
|
|
653
|
-
* @internal
|
|
654
|
-
*/
|
|
369
|
+
|
|
655
370
|
const filterSensitiveLog: (obj: ListAvailableZonesResponse) => any;
|
|
656
371
|
}
|
|
657
372
|
export interface ListHapgsRequest {
|
|
658
|
-
|
|
659
|
-
* <p>The <code>NextToken</code> value from a previous call to <code>ListHapgs</code>. Pass
|
|
660
|
-
* null if this is the first call.</p>
|
|
661
|
-
*/
|
|
373
|
+
|
|
662
374
|
NextToken?: string;
|
|
663
375
|
}
|
|
664
376
|
export declare namespace ListHapgsRequest {
|
|
665
|
-
|
|
666
|
-
* @internal
|
|
667
|
-
*/
|
|
377
|
+
|
|
668
378
|
const filterSensitiveLog: (obj: ListHapgsRequest) => any;
|
|
669
379
|
}
|
|
670
380
|
export interface ListHapgsResponse {
|
|
671
|
-
|
|
672
|
-
* <p>The list of high-availability partition groups.</p>
|
|
673
|
-
*/
|
|
381
|
+
|
|
674
382
|
HapgList: string[] | undefined;
|
|
675
|
-
|
|
676
|
-
* <p>If not null, more results are available. Pass this value to <code>ListHapgs</code> to
|
|
677
|
-
* retrieve the next set of items.</p>
|
|
678
|
-
*/
|
|
383
|
+
|
|
679
384
|
NextToken?: string;
|
|
680
385
|
}
|
|
681
386
|
export declare namespace ListHapgsResponse {
|
|
682
|
-
|
|
683
|
-
* @internal
|
|
684
|
-
*/
|
|
387
|
+
|
|
685
388
|
const filterSensitiveLog: (obj: ListHapgsResponse) => any;
|
|
686
389
|
}
|
|
687
390
|
export interface ListHsmsRequest {
|
|
688
|
-
|
|
689
|
-
* <p>The <code>NextToken</code> value from a previous call to <code>ListHsms</code>. Pass
|
|
690
|
-
* null if this is the first call.</p>
|
|
691
|
-
*/
|
|
391
|
+
|
|
692
392
|
NextToken?: string;
|
|
693
393
|
}
|
|
694
394
|
export declare namespace ListHsmsRequest {
|
|
695
|
-
|
|
696
|
-
* @internal
|
|
697
|
-
*/
|
|
395
|
+
|
|
698
396
|
const filterSensitiveLog: (obj: ListHsmsRequest) => any;
|
|
699
397
|
}
|
|
700
|
-
|
|
701
|
-
* <p>Contains the output of the <code>ListHsms</code> operation.</p>
|
|
702
|
-
*/
|
|
398
|
+
|
|
703
399
|
export interface ListHsmsResponse {
|
|
704
|
-
|
|
705
|
-
* <p>The list of ARNs that identify the HSMs.</p>
|
|
706
|
-
*/
|
|
400
|
+
|
|
707
401
|
HsmList?: string[];
|
|
708
|
-
|
|
709
|
-
* <p>If not null, more results are available. Pass this value to <code>ListHsms</code> to
|
|
710
|
-
* retrieve the next set of items.</p>
|
|
711
|
-
*/
|
|
402
|
+
|
|
712
403
|
NextToken?: string;
|
|
713
404
|
}
|
|
714
405
|
export declare namespace ListHsmsResponse {
|
|
715
|
-
|
|
716
|
-
* @internal
|
|
717
|
-
*/
|
|
406
|
+
|
|
718
407
|
const filterSensitiveLog: (obj: ListHsmsResponse) => any;
|
|
719
408
|
}
|
|
720
409
|
export interface ListLunaClientsRequest {
|
|
721
|
-
|
|
722
|
-
* <p>The <code>NextToken</code> value from a previous call to <code>ListLunaClients</code>.
|
|
723
|
-
* Pass null if this is the first call.</p>
|
|
724
|
-
*/
|
|
410
|
+
|
|
725
411
|
NextToken?: string;
|
|
726
412
|
}
|
|
727
413
|
export declare namespace ListLunaClientsRequest {
|
|
728
|
-
|
|
729
|
-
* @internal
|
|
730
|
-
*/
|
|
414
|
+
|
|
731
415
|
const filterSensitiveLog: (obj: ListLunaClientsRequest) => any;
|
|
732
416
|
}
|
|
733
417
|
export interface ListLunaClientsResponse {
|
|
734
|
-
|
|
735
|
-
* <p>The list of clients.</p>
|
|
736
|
-
*/
|
|
418
|
+
|
|
737
419
|
ClientList: string[] | undefined;
|
|
738
|
-
|
|
739
|
-
* <p>If not null, more results are available. Pass this to <code>ListLunaClients</code> to
|
|
740
|
-
* retrieve the next set of items.</p>
|
|
741
|
-
*/
|
|
420
|
+
|
|
742
421
|
NextToken?: string;
|
|
743
422
|
}
|
|
744
423
|
export declare namespace ListLunaClientsResponse {
|
|
745
|
-
|
|
746
|
-
* @internal
|
|
747
|
-
*/
|
|
424
|
+
|
|
748
425
|
const filterSensitiveLog: (obj: ListLunaClientsResponse) => any;
|
|
749
426
|
}
|
|
750
427
|
export interface ListTagsForResourceRequest {
|
|
751
|
-
|
|
752
|
-
* <p>The Amazon Resource Name (ARN) of the AWS CloudHSM resource.</p>
|
|
753
|
-
*/
|
|
428
|
+
|
|
754
429
|
ResourceArn: string | undefined;
|
|
755
430
|
}
|
|
756
431
|
export declare namespace ListTagsForResourceRequest {
|
|
757
|
-
|
|
758
|
-
* @internal
|
|
759
|
-
*/
|
|
432
|
+
|
|
760
433
|
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
761
434
|
}
|
|
762
435
|
export interface ListTagsForResourceResponse {
|
|
763
|
-
|
|
764
|
-
* <p>One or more tags.</p>
|
|
765
|
-
*/
|
|
436
|
+
|
|
766
437
|
TagList: Tag[] | undefined;
|
|
767
438
|
}
|
|
768
439
|
export declare namespace ListTagsForResourceResponse {
|
|
769
|
-
|
|
770
|
-
* @internal
|
|
771
|
-
*/
|
|
440
|
+
|
|
772
441
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
773
442
|
}
|
|
774
443
|
export interface ModifyHapgRequest {
|
|
775
|
-
|
|
776
|
-
* <p>The ARN of the high-availability partition group to modify.</p>
|
|
777
|
-
*/
|
|
444
|
+
|
|
778
445
|
HapgArn: string | undefined;
|
|
779
|
-
|
|
780
|
-
* <p>The new label for the high-availability partition group.</p>
|
|
781
|
-
*/
|
|
446
|
+
|
|
782
447
|
Label?: string;
|
|
783
|
-
|
|
784
|
-
* <p>The list of partition serial numbers to make members of the high-availability partition
|
|
785
|
-
* group.</p>
|
|
786
|
-
*/
|
|
448
|
+
|
|
787
449
|
PartitionSerialList?: string[];
|
|
788
450
|
}
|
|
789
451
|
export declare namespace ModifyHapgRequest {
|
|
790
|
-
|
|
791
|
-
* @internal
|
|
792
|
-
*/
|
|
452
|
+
|
|
793
453
|
const filterSensitiveLog: (obj: ModifyHapgRequest) => any;
|
|
794
454
|
}
|
|
795
455
|
export interface ModifyHapgResponse {
|
|
796
|
-
|
|
797
|
-
* <p>The ARN of the high-availability partition group.</p>
|
|
798
|
-
*/
|
|
456
|
+
|
|
799
457
|
HapgArn?: string;
|
|
800
458
|
}
|
|
801
459
|
export declare namespace ModifyHapgResponse {
|
|
802
|
-
|
|
803
|
-
* @internal
|
|
804
|
-
*/
|
|
460
|
+
|
|
805
461
|
const filterSensitiveLog: (obj: ModifyHapgResponse) => any;
|
|
806
462
|
}
|
|
807
|
-
|
|
808
|
-
* <p>Contains the inputs for the <a>ModifyHsm</a> operation.</p>
|
|
809
|
-
*/
|
|
463
|
+
|
|
810
464
|
export interface ModifyHsmRequest {
|
|
811
|
-
|
|
812
|
-
* <p>The ARN of the HSM to modify.</p>
|
|
813
|
-
*/
|
|
465
|
+
|
|
814
466
|
HsmArn: string | undefined;
|
|
815
|
-
|
|
816
|
-
* <p>The new identifier of the subnet that the HSM is in. The new subnet must be in the same
|
|
817
|
-
* Availability Zone as the current subnet.</p>
|
|
818
|
-
*/
|
|
467
|
+
|
|
819
468
|
SubnetId?: string;
|
|
820
|
-
|
|
821
|
-
* <p>The new IP address for the elastic network interface (ENI) attached to the
|
|
822
|
-
* HSM.</p>
|
|
823
|
-
* <p>If the HSM is moved to a different subnet, and an IP address is not specified, an IP
|
|
824
|
-
* address will be randomly chosen from the CIDR range of the new subnet.</p>
|
|
825
|
-
*/
|
|
469
|
+
|
|
826
470
|
EniIp?: string;
|
|
827
|
-
|
|
828
|
-
* <p>The new IAM role ARN.</p>
|
|
829
|
-
*/
|
|
471
|
+
|
|
830
472
|
IamRoleArn?: string;
|
|
831
|
-
|
|
832
|
-
* <p>The new external ID.</p>
|
|
833
|
-
*/
|
|
473
|
+
|
|
834
474
|
ExternalId?: string;
|
|
835
|
-
|
|
836
|
-
* <p>The new IP address for the syslog monitoring server. The AWS CloudHSM service only supports
|
|
837
|
-
* one syslog monitoring server.</p>
|
|
838
|
-
*/
|
|
475
|
+
|
|
839
476
|
SyslogIp?: string;
|
|
840
477
|
}
|
|
841
478
|
export declare namespace ModifyHsmRequest {
|
|
842
|
-
|
|
843
|
-
* @internal
|
|
844
|
-
*/
|
|
479
|
+
|
|
845
480
|
const filterSensitiveLog: (obj: ModifyHsmRequest) => any;
|
|
846
481
|
}
|
|
847
|
-
|
|
848
|
-
* <p>Contains the output of the <a>ModifyHsm</a> operation.</p>
|
|
849
|
-
*/
|
|
482
|
+
|
|
850
483
|
export interface ModifyHsmResponse {
|
|
851
|
-
|
|
852
|
-
* <p>The ARN of the HSM.</p>
|
|
853
|
-
*/
|
|
484
|
+
|
|
854
485
|
HsmArn?: string;
|
|
855
486
|
}
|
|
856
487
|
export declare namespace ModifyHsmResponse {
|
|
857
|
-
|
|
858
|
-
* @internal
|
|
859
|
-
*/
|
|
488
|
+
|
|
860
489
|
const filterSensitiveLog: (obj: ModifyHsmResponse) => any;
|
|
861
490
|
}
|
|
862
491
|
export interface ModifyLunaClientRequest {
|
|
863
|
-
|
|
864
|
-
* <p>The ARN of the client.</p>
|
|
865
|
-
*/
|
|
492
|
+
|
|
866
493
|
ClientArn: string | undefined;
|
|
867
|
-
|
|
868
|
-
* <p>The new certificate for the client.</p>
|
|
869
|
-
*/
|
|
494
|
+
|
|
870
495
|
Certificate: string | undefined;
|
|
871
496
|
}
|
|
872
497
|
export declare namespace ModifyLunaClientRequest {
|
|
873
|
-
|
|
874
|
-
* @internal
|
|
875
|
-
*/
|
|
498
|
+
|
|
876
499
|
const filterSensitiveLog: (obj: ModifyLunaClientRequest) => any;
|
|
877
500
|
}
|
|
878
501
|
export interface ModifyLunaClientResponse {
|
|
879
|
-
|
|
880
|
-
* <p>The ARN of the client.</p>
|
|
881
|
-
*/
|
|
502
|
+
|
|
882
503
|
ClientArn?: string;
|
|
883
504
|
}
|
|
884
505
|
export declare namespace ModifyLunaClientResponse {
|
|
885
|
-
|
|
886
|
-
* @internal
|
|
887
|
-
*/
|
|
506
|
+
|
|
888
507
|
const filterSensitiveLog: (obj: ModifyLunaClientResponse) => any;
|
|
889
508
|
}
|
|
890
509
|
export interface RemoveTagsFromResourceRequest {
|
|
891
|
-
|
|
892
|
-
* <p>The Amazon Resource Name (ARN) of the AWS CloudHSM resource.</p>
|
|
893
|
-
*/
|
|
510
|
+
|
|
894
511
|
ResourceArn: string | undefined;
|
|
895
|
-
|
|
896
|
-
* <p>The tag key or keys to remove.</p>
|
|
897
|
-
* <p>Specify only the tag key to remove (not the value). To overwrite the value for an
|
|
898
|
-
* existing tag, use <a>AddTagsToResource</a>.</p>
|
|
899
|
-
*/
|
|
512
|
+
|
|
900
513
|
TagKeyList: string[] | undefined;
|
|
901
514
|
}
|
|
902
515
|
export declare namespace RemoveTagsFromResourceRequest {
|
|
903
|
-
|
|
904
|
-
* @internal
|
|
905
|
-
*/
|
|
516
|
+
|
|
906
517
|
const filterSensitiveLog: (obj: RemoveTagsFromResourceRequest) => any;
|
|
907
518
|
}
|
|
908
519
|
export interface RemoveTagsFromResourceResponse {
|
|
909
|
-
|
|
910
|
-
* <p>The status of the operation.</p>
|
|
911
|
-
*/
|
|
520
|
+
|
|
912
521
|
Status: string | undefined;
|
|
913
522
|
}
|
|
914
523
|
export declare namespace RemoveTagsFromResourceResponse {
|
|
915
|
-
|
|
916
|
-
* @internal
|
|
917
|
-
*/
|
|
524
|
+
|
|
918
525
|
const filterSensitiveLog: (obj: RemoveTagsFromResourceResponse) => any;
|
|
919
526
|
}
|