@aws-sdk/client-cloudhsm-v2 3.50.0 → 3.51.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.
Files changed (34) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CloudHSMV2.d.ts +80 -0
  3. package/dist-types/ts3.4/CloudHSMV2Client.d.ts +88 -0
  4. package/dist-types/ts3.4/commands/CopyBackupToRegionCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/InitializeClusterCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/ModifyBackupAttributesCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/ModifyClusterCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/RestoreBackupCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  21. package/dist-types/ts3.4/index.d.ts +5 -0
  22. package/dist-types/ts3.4/models/index.d.ts +1 -0
  23. package/dist-types/ts3.4/models/models_0.d.ts +508 -0
  24. package/dist-types/ts3.4/pagination/DescribeBackupsPaginator.d.ts +4 -0
  25. package/dist-types/ts3.4/pagination/DescribeClustersPaginator.d.ts +4 -0
  26. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  27. package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +4 -0
  28. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  29. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +47 -0
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  34. package/package.json +8 -8
@@ -0,0 +1,508 @@
1
+ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+ export declare enum BackupState {
3
+ CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
4
+ DELETED = "DELETED",
5
+ PENDING_DELETION = "PENDING_DELETION",
6
+ READY = "READY"
7
+ }
8
+
9
+ export interface Tag {
10
+
11
+ Key: string | undefined;
12
+
13
+ Value: string | undefined;
14
+ }
15
+ export declare namespace Tag {
16
+
17
+ const filterSensitiveLog: (obj: Tag) => any;
18
+ }
19
+
20
+ export interface Backup {
21
+
22
+ BackupId: string | undefined;
23
+
24
+ BackupState?: BackupState | string;
25
+
26
+ ClusterId?: string;
27
+
28
+ CreateTimestamp?: Date;
29
+
30
+ CopyTimestamp?: Date;
31
+
32
+ NeverExpires?: boolean;
33
+
34
+ SourceRegion?: string;
35
+
36
+ SourceBackup?: string;
37
+
38
+ SourceCluster?: string;
39
+
40
+ DeleteTimestamp?: Date;
41
+
42
+ TagList?: Tag[];
43
+ }
44
+ export declare namespace Backup {
45
+
46
+ const filterSensitiveLog: (obj: Backup) => any;
47
+ }
48
+ export declare enum BackupPolicy {
49
+ DEFAULT = "DEFAULT"
50
+ }
51
+ export declare enum BackupRetentionType {
52
+ DAYS = "DAYS"
53
+ }
54
+
55
+ export interface BackupRetentionPolicy {
56
+
57
+ Type?: BackupRetentionType | string;
58
+
59
+ Value?: string;
60
+ }
61
+ export declare namespace BackupRetentionPolicy {
62
+
63
+ const filterSensitiveLog: (obj: BackupRetentionPolicy) => any;
64
+ }
65
+
66
+ export interface CloudHsmAccessDeniedException extends __SmithyException, $MetadataBearer {
67
+ name: "CloudHsmAccessDeniedException";
68
+ $fault: "client";
69
+ Message?: string;
70
+ }
71
+
72
+ export interface CloudHsmInternalFailureException extends __SmithyException, $MetadataBearer {
73
+ name: "CloudHsmInternalFailureException";
74
+ $fault: "server";
75
+ Message?: string;
76
+ }
77
+
78
+ export interface CloudHsmInvalidRequestException extends __SmithyException, $MetadataBearer {
79
+ name: "CloudHsmInvalidRequestException";
80
+ $fault: "client";
81
+ Message?: string;
82
+ }
83
+
84
+ export interface CloudHsmResourceNotFoundException extends __SmithyException, $MetadataBearer {
85
+ name: "CloudHsmResourceNotFoundException";
86
+ $fault: "client";
87
+ Message?: string;
88
+ }
89
+
90
+ export interface CloudHsmServiceException extends __SmithyException, $MetadataBearer {
91
+ name: "CloudHsmServiceException";
92
+ $fault: "client";
93
+ Message?: string;
94
+ }
95
+
96
+ export interface CloudHsmTagException extends __SmithyException, $MetadataBearer {
97
+ name: "CloudHsmTagException";
98
+ $fault: "client";
99
+ Message?: string;
100
+ }
101
+ export interface CopyBackupToRegionRequest {
102
+
103
+ DestinationRegion: string | undefined;
104
+
105
+ BackupId: string | undefined;
106
+
107
+ TagList?: Tag[];
108
+ }
109
+ export declare namespace CopyBackupToRegionRequest {
110
+
111
+ const filterSensitiveLog: (obj: CopyBackupToRegionRequest) => any;
112
+ }
113
+
114
+ export interface DestinationBackup {
115
+
116
+ CreateTimestamp?: Date;
117
+
118
+ SourceRegion?: string;
119
+
120
+ SourceBackup?: string;
121
+
122
+ SourceCluster?: string;
123
+ }
124
+ export declare namespace DestinationBackup {
125
+
126
+ const filterSensitiveLog: (obj: DestinationBackup) => any;
127
+ }
128
+ export interface CopyBackupToRegionResponse {
129
+
130
+ DestinationBackup?: DestinationBackup;
131
+ }
132
+ export declare namespace CopyBackupToRegionResponse {
133
+
134
+ const filterSensitiveLog: (obj: CopyBackupToRegionResponse) => any;
135
+ }
136
+ export interface CreateClusterRequest {
137
+
138
+ BackupRetentionPolicy?: BackupRetentionPolicy;
139
+
140
+ HsmType: string | undefined;
141
+
142
+ SourceBackupId?: string;
143
+
144
+ SubnetIds: string[] | undefined;
145
+
146
+ TagList?: Tag[];
147
+ }
148
+ export declare namespace CreateClusterRequest {
149
+
150
+ const filterSensitiveLog: (obj: CreateClusterRequest) => any;
151
+ }
152
+
153
+ export interface Certificates {
154
+
155
+ ClusterCsr?: string;
156
+
157
+ HsmCertificate?: string;
158
+
159
+ AwsHardwareCertificate?: string;
160
+
161
+ ManufacturerHardwareCertificate?: string;
162
+
163
+ ClusterCertificate?: string;
164
+ }
165
+ export declare namespace Certificates {
166
+
167
+ const filterSensitiveLog: (obj: Certificates) => any;
168
+ }
169
+ export declare enum HsmState {
170
+ ACTIVE = "ACTIVE",
171
+ CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
172
+ DEGRADED = "DEGRADED",
173
+ DELETED = "DELETED",
174
+ DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS"
175
+ }
176
+
177
+ export interface Hsm {
178
+
179
+ AvailabilityZone?: string;
180
+
181
+ ClusterId?: string;
182
+
183
+ SubnetId?: string;
184
+
185
+ EniId?: string;
186
+
187
+ EniIp?: string;
188
+
189
+ HsmId: string | undefined;
190
+
191
+ State?: HsmState | string;
192
+
193
+ StateMessage?: string;
194
+ }
195
+ export declare namespace Hsm {
196
+
197
+ const filterSensitiveLog: (obj: Hsm) => any;
198
+ }
199
+ export declare enum ClusterState {
200
+ ACTIVE = "ACTIVE",
201
+ CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
202
+ DEGRADED = "DEGRADED",
203
+ DELETED = "DELETED",
204
+ DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
205
+ INITIALIZED = "INITIALIZED",
206
+ INITIALIZE_IN_PROGRESS = "INITIALIZE_IN_PROGRESS",
207
+ UNINITIALIZED = "UNINITIALIZED",
208
+ UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS"
209
+ }
210
+
211
+ export interface Cluster {
212
+
213
+ BackupPolicy?: BackupPolicy | string;
214
+
215
+ BackupRetentionPolicy?: BackupRetentionPolicy;
216
+
217
+ ClusterId?: string;
218
+
219
+ CreateTimestamp?: Date;
220
+
221
+ Hsms?: Hsm[];
222
+
223
+ HsmType?: string;
224
+
225
+ PreCoPassword?: string;
226
+
227
+ SecurityGroup?: string;
228
+
229
+ SourceBackupId?: string;
230
+
231
+ State?: ClusterState | string;
232
+
233
+ StateMessage?: string;
234
+
235
+ SubnetMapping?: {
236
+ [key: string]: string;
237
+ };
238
+
239
+ VpcId?: string;
240
+
241
+ Certificates?: Certificates;
242
+
243
+ TagList?: Tag[];
244
+ }
245
+ export declare namespace Cluster {
246
+
247
+ const filterSensitiveLog: (obj: Cluster) => any;
248
+ }
249
+ export interface CreateClusterResponse {
250
+
251
+ Cluster?: Cluster;
252
+ }
253
+ export declare namespace CreateClusterResponse {
254
+
255
+ const filterSensitiveLog: (obj: CreateClusterResponse) => any;
256
+ }
257
+ export interface CreateHsmRequest {
258
+
259
+ ClusterId: string | undefined;
260
+
261
+ AvailabilityZone: string | undefined;
262
+
263
+ IpAddress?: string;
264
+ }
265
+ export declare namespace CreateHsmRequest {
266
+
267
+ const filterSensitiveLog: (obj: CreateHsmRequest) => any;
268
+ }
269
+ export interface CreateHsmResponse {
270
+
271
+ Hsm?: Hsm;
272
+ }
273
+ export declare namespace CreateHsmResponse {
274
+
275
+ const filterSensitiveLog: (obj: CreateHsmResponse) => any;
276
+ }
277
+ export interface DeleteBackupRequest {
278
+
279
+ BackupId: string | undefined;
280
+ }
281
+ export declare namespace DeleteBackupRequest {
282
+
283
+ const filterSensitiveLog: (obj: DeleteBackupRequest) => any;
284
+ }
285
+ export interface DeleteBackupResponse {
286
+
287
+ Backup?: Backup;
288
+ }
289
+ export declare namespace DeleteBackupResponse {
290
+
291
+ const filterSensitiveLog: (obj: DeleteBackupResponse) => any;
292
+ }
293
+ export interface DeleteClusterRequest {
294
+
295
+ ClusterId: string | undefined;
296
+ }
297
+ export declare namespace DeleteClusterRequest {
298
+
299
+ const filterSensitiveLog: (obj: DeleteClusterRequest) => any;
300
+ }
301
+ export interface DeleteClusterResponse {
302
+
303
+ Cluster?: Cluster;
304
+ }
305
+ export declare namespace DeleteClusterResponse {
306
+
307
+ const filterSensitiveLog: (obj: DeleteClusterResponse) => any;
308
+ }
309
+ export interface DeleteHsmRequest {
310
+
311
+ ClusterId: string | undefined;
312
+
313
+ HsmId?: string;
314
+
315
+ EniId?: string;
316
+
317
+ EniIp?: string;
318
+ }
319
+ export declare namespace DeleteHsmRequest {
320
+
321
+ const filterSensitiveLog: (obj: DeleteHsmRequest) => any;
322
+ }
323
+ export interface DeleteHsmResponse {
324
+
325
+ HsmId?: string;
326
+ }
327
+ export declare namespace DeleteHsmResponse {
328
+
329
+ const filterSensitiveLog: (obj: DeleteHsmResponse) => any;
330
+ }
331
+ export interface DescribeBackupsRequest {
332
+
333
+ NextToken?: string;
334
+
335
+ MaxResults?: number;
336
+
337
+ Filters?: {
338
+ [key: string]: string[];
339
+ };
340
+
341
+ SortAscending?: boolean;
342
+ }
343
+ export declare namespace DescribeBackupsRequest {
344
+
345
+ const filterSensitiveLog: (obj: DescribeBackupsRequest) => any;
346
+ }
347
+ export interface DescribeBackupsResponse {
348
+
349
+ Backups?: Backup[];
350
+
351
+ NextToken?: string;
352
+ }
353
+ export declare namespace DescribeBackupsResponse {
354
+
355
+ const filterSensitiveLog: (obj: DescribeBackupsResponse) => any;
356
+ }
357
+ export interface DescribeClustersRequest {
358
+
359
+ Filters?: {
360
+ [key: string]: string[];
361
+ };
362
+
363
+ NextToken?: string;
364
+
365
+ MaxResults?: number;
366
+ }
367
+ export declare namespace DescribeClustersRequest {
368
+
369
+ const filterSensitiveLog: (obj: DescribeClustersRequest) => any;
370
+ }
371
+ export interface DescribeClustersResponse {
372
+
373
+ Clusters?: Cluster[];
374
+
375
+ NextToken?: string;
376
+ }
377
+ export declare namespace DescribeClustersResponse {
378
+
379
+ const filterSensitiveLog: (obj: DescribeClustersResponse) => any;
380
+ }
381
+ export interface InitializeClusterRequest {
382
+
383
+ ClusterId: string | undefined;
384
+
385
+ SignedCert: string | undefined;
386
+
387
+ TrustAnchor: string | undefined;
388
+ }
389
+ export declare namespace InitializeClusterRequest {
390
+
391
+ const filterSensitiveLog: (obj: InitializeClusterRequest) => any;
392
+ }
393
+ export interface InitializeClusterResponse {
394
+
395
+ State?: ClusterState | string;
396
+
397
+ StateMessage?: string;
398
+ }
399
+ export declare namespace InitializeClusterResponse {
400
+
401
+ const filterSensitiveLog: (obj: InitializeClusterResponse) => any;
402
+ }
403
+ export interface ListTagsRequest {
404
+
405
+ ResourceId: string | undefined;
406
+
407
+ NextToken?: string;
408
+
409
+ MaxResults?: number;
410
+ }
411
+ export declare namespace ListTagsRequest {
412
+
413
+ const filterSensitiveLog: (obj: ListTagsRequest) => any;
414
+ }
415
+ export interface ListTagsResponse {
416
+
417
+ TagList: Tag[] | undefined;
418
+
419
+ NextToken?: string;
420
+ }
421
+ export declare namespace ListTagsResponse {
422
+
423
+ const filterSensitiveLog: (obj: ListTagsResponse) => any;
424
+ }
425
+ export interface ModifyBackupAttributesRequest {
426
+
427
+ BackupId: string | undefined;
428
+
429
+ NeverExpires: boolean | undefined;
430
+ }
431
+ export declare namespace ModifyBackupAttributesRequest {
432
+
433
+ const filterSensitiveLog: (obj: ModifyBackupAttributesRequest) => any;
434
+ }
435
+ export interface ModifyBackupAttributesResponse {
436
+
437
+ Backup?: Backup;
438
+ }
439
+ export declare namespace ModifyBackupAttributesResponse {
440
+
441
+ const filterSensitiveLog: (obj: ModifyBackupAttributesResponse) => any;
442
+ }
443
+ export interface ModifyClusterRequest {
444
+
445
+ BackupRetentionPolicy: BackupRetentionPolicy | undefined;
446
+
447
+ ClusterId: string | undefined;
448
+ }
449
+ export declare namespace ModifyClusterRequest {
450
+
451
+ const filterSensitiveLog: (obj: ModifyClusterRequest) => any;
452
+ }
453
+ export interface ModifyClusterResponse {
454
+
455
+ Cluster?: Cluster;
456
+ }
457
+ export declare namespace ModifyClusterResponse {
458
+
459
+ const filterSensitiveLog: (obj: ModifyClusterResponse) => any;
460
+ }
461
+ export interface RestoreBackupRequest {
462
+
463
+ BackupId: string | undefined;
464
+ }
465
+ export declare namespace RestoreBackupRequest {
466
+
467
+ const filterSensitiveLog: (obj: RestoreBackupRequest) => any;
468
+ }
469
+ export interface RestoreBackupResponse {
470
+
471
+ Backup?: Backup;
472
+ }
473
+ export declare namespace RestoreBackupResponse {
474
+
475
+ const filterSensitiveLog: (obj: RestoreBackupResponse) => any;
476
+ }
477
+ export interface TagResourceRequest {
478
+
479
+ ResourceId: string | undefined;
480
+
481
+ TagList: Tag[] | undefined;
482
+ }
483
+ export declare namespace TagResourceRequest {
484
+
485
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
486
+ }
487
+ export interface TagResourceResponse {
488
+ }
489
+ export declare namespace TagResourceResponse {
490
+
491
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
492
+ }
493
+ export interface UntagResourceRequest {
494
+
495
+ ResourceId: string | undefined;
496
+
497
+ TagKeyList: string[] | undefined;
498
+ }
499
+ export declare namespace UntagResourceRequest {
500
+
501
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
502
+ }
503
+ export interface UntagResourceResponse {
504
+ }
505
+ export declare namespace UntagResourceResponse {
506
+
507
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
508
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeBackupsCommandInput, DescribeBackupsCommandOutput } from "../commands/DescribeBackupsCommand";
3
+ import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeBackups(config: CloudHSMV2PaginationConfiguration, input: DescribeBackupsCommandInput, ...additionalArguments: any): Paginator<DescribeBackupsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "../commands/DescribeClustersCommand";
3
+ import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeClusters(config: CloudHSMV2PaginationConfiguration, input: DescribeClustersCommandInput, ...additionalArguments: any): Paginator<DescribeClustersCommandOutput>;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { CloudHSMV2 } from "../CloudHSMV2";
3
+ import { CloudHSMV2Client } from "../CloudHSMV2Client";
4
+ export interface CloudHSMV2PaginationConfiguration extends PaginationConfiguration {
5
+ client: CloudHSMV2 | CloudHSMV2Client;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand";
3
+ import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListTags(config: CloudHSMV2PaginationConfiguration, input: ListTagsCommandInput, ...additionalArguments: any): Paginator<ListTagsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./DescribeBackupsPaginator";
2
+ export * from "./DescribeClustersPaginator";
3
+ export * from "./Interfaces";
4
+ export * from "./ListTagsPaginator";
@@ -0,0 +1,47 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CopyBackupToRegionCommandInput, CopyBackupToRegionCommandOutput } from "../commands/CopyBackupToRegionCommand";
4
+ import { CreateClusterCommandInput, CreateClusterCommandOutput } from "../commands/CreateClusterCommand";
5
+ import { CreateHsmCommandInput, CreateHsmCommandOutput } from "../commands/CreateHsmCommand";
6
+ import { DeleteBackupCommandInput, DeleteBackupCommandOutput } from "../commands/DeleteBackupCommand";
7
+ import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "../commands/DeleteClusterCommand";
8
+ import { DeleteHsmCommandInput, DeleteHsmCommandOutput } from "../commands/DeleteHsmCommand";
9
+ import { DescribeBackupsCommandInput, DescribeBackupsCommandOutput } from "../commands/DescribeBackupsCommand";
10
+ import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "../commands/DescribeClustersCommand";
11
+ import { InitializeClusterCommandInput, InitializeClusterCommandOutput } from "../commands/InitializeClusterCommand";
12
+ import { ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand";
13
+ import { ModifyBackupAttributesCommandInput, ModifyBackupAttributesCommandOutput } from "../commands/ModifyBackupAttributesCommand";
14
+ import { ModifyClusterCommandInput, ModifyClusterCommandOutput } from "../commands/ModifyClusterCommand";
15
+ import { RestoreBackupCommandInput, RestoreBackupCommandOutput } from "../commands/RestoreBackupCommand";
16
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
17
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
18
+ export declare const serializeAws_json1_1CopyBackupToRegionCommand: (input: CopyBackupToRegionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_json1_1CreateClusterCommand: (input: CreateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_json1_1CreateHsmCommand: (input: CreateHsmCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_json1_1DeleteBackupCommand: (input: DeleteBackupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_json1_1DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_json1_1DeleteHsmCommand: (input: DeleteHsmCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_json1_1DescribeBackupsCommand: (input: DescribeBackupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_json1_1DescribeClustersCommand: (input: DescribeClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_json1_1InitializeClusterCommand: (input: InitializeClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_json1_1ListTagsCommand: (input: ListTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_json1_1ModifyBackupAttributesCommand: (input: ModifyBackupAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_json1_1ModifyClusterCommand: (input: ModifyClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_json1_1RestoreBackupCommand: (input: RestoreBackupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ export declare const deserializeAws_json1_1CopyBackupToRegionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CopyBackupToRegionCommandOutput>;
34
+ export declare const deserializeAws_json1_1CreateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterCommandOutput>;
35
+ export declare const deserializeAws_json1_1CreateHsmCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHsmCommandOutput>;
36
+ export declare const deserializeAws_json1_1DeleteBackupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteBackupCommandOutput>;
37
+ export declare const deserializeAws_json1_1DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
38
+ export declare const deserializeAws_json1_1DeleteHsmCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHsmCommandOutput>;
39
+ export declare const deserializeAws_json1_1DescribeBackupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeBackupsCommandOutput>;
40
+ export declare const deserializeAws_json1_1DescribeClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClustersCommandOutput>;
41
+ export declare const deserializeAws_json1_1InitializeClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<InitializeClusterCommandOutput>;
42
+ export declare const deserializeAws_json1_1ListTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsCommandOutput>;
43
+ export declare const deserializeAws_json1_1ModifyBackupAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyBackupAttributesCommandOutput>;
44
+ export declare const deserializeAws_json1_1ModifyClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyClusterCommandOutput>;
45
+ export declare const deserializeAws_json1_1RestoreBackupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RestoreBackupCommandOutput>;
46
+ export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
47
+ export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client";
3
+
4
+ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client";
3
+
4
+ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };