@aws-sdk/client-cloudhsm-v2 3.169.0 → 3.171.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 (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CloudHSMV2.d.ts +259 -80
  3. package/dist-types/ts3.4/CloudHSMV2Client.d.ts +194 -88
  4. package/dist-types/ts3.4/commands/CopyBackupToRegionCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/InitializeClusterCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/ModifyBackupAttributesCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/ModifyClusterCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/RestoreBackupCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +6 -6
  22. package/dist-types/ts3.4/models/CloudHSMV2ServiceException.d.ts +7 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +365 -441
  25. package/dist-types/ts3.4/pagination/DescribeBackupsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/DescribeClustersPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  28. package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  30. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  35. package/package.json +34 -34
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { CopyBackupToRegionRequest, CopyBackupToRegionResponse } from "../models/models_0";
5
- export interface CopyBackupToRegionCommandInput extends CopyBackupToRegionRequest {
6
- }
7
- export interface CopyBackupToRegionCommandOutput extends CopyBackupToRegionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CopyBackupToRegionCommand extends $Command<CopyBackupToRegionCommandInput, CopyBackupToRegionCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: CopyBackupToRegionCommandInput;
12
- constructor(input: CopyBackupToRegionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CopyBackupToRegionCommandInput, CopyBackupToRegionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import {
14
+ CopyBackupToRegionRequest,
15
+ CopyBackupToRegionResponse,
16
+ } from "../models/models_0";
17
+ export interface CopyBackupToRegionCommandInput
18
+ extends CopyBackupToRegionRequest {}
19
+ export interface CopyBackupToRegionCommandOutput
20
+ extends CopyBackupToRegionResponse,
21
+ __MetadataBearer {}
22
+ export declare class CopyBackupToRegionCommand extends $Command<
23
+ CopyBackupToRegionCommandInput,
24
+ CopyBackupToRegionCommandOutput,
25
+ CloudHSMV2ClientResolvedConfig
26
+ > {
27
+ readonly input: CopyBackupToRegionCommandInput;
28
+ constructor(input: CopyBackupToRegionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CloudHSMV2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<CopyBackupToRegionCommandInput, CopyBackupToRegionCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0";
5
- export interface CreateClusterCommandInput extends CreateClusterRequest {
6
- }
7
- export interface CreateClusterCommandOutput extends CreateClusterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateClusterCommand extends $Command<CreateClusterCommandInput, CreateClusterCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: CreateClusterCommandInput;
12
- constructor(input: CreateClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateClusterCommandInput, CreateClusterCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import {
14
+ CreateClusterRequest,
15
+ CreateClusterResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateClusterCommandInput extends CreateClusterRequest {}
18
+ export interface CreateClusterCommandOutput
19
+ extends CreateClusterResponse,
20
+ __MetadataBearer {}
21
+ export declare class CreateClusterCommand extends $Command<
22
+ CreateClusterCommandInput,
23
+ CreateClusterCommandOutput,
24
+ CloudHSMV2ClientResolvedConfig
25
+ > {
26
+ readonly input: CreateClusterCommandInput;
27
+ constructor(input: CreateClusterCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudHSMV2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<CreateClusterCommandInput, CreateClusterCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { CreateHsmRequest, CreateHsmResponse } from "../models/models_0";
5
- export interface CreateHsmCommandInput extends CreateHsmRequest {
6
- }
7
- export interface CreateHsmCommandOutput extends CreateHsmResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateHsmCommand extends $Command<CreateHsmCommandInput, CreateHsmCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: CreateHsmCommandInput;
12
- constructor(input: CreateHsmCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHsmCommandInput, CreateHsmCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import { CreateHsmRequest, CreateHsmResponse } from "../models/models_0";
14
+ export interface CreateHsmCommandInput extends CreateHsmRequest {}
15
+ export interface CreateHsmCommandOutput
16
+ extends CreateHsmResponse,
17
+ __MetadataBearer {}
18
+ export declare class CreateHsmCommand extends $Command<
19
+ CreateHsmCommandInput,
20
+ CreateHsmCommandOutput,
21
+ CloudHSMV2ClientResolvedConfig
22
+ > {
23
+ readonly input: CreateHsmCommandInput;
24
+ constructor(input: CreateHsmCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CloudHSMV2ClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CreateHsmCommandInput, CreateHsmCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { DeleteBackupRequest, DeleteBackupResponse } from "../models/models_0";
5
- export interface DeleteBackupCommandInput extends DeleteBackupRequest {
6
- }
7
- export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteBackupCommand extends $Command<DeleteBackupCommandInput, DeleteBackupCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: DeleteBackupCommandInput;
12
- constructor(input: DeleteBackupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBackupCommandInput, DeleteBackupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import { DeleteBackupRequest, DeleteBackupResponse } from "../models/models_0";
14
+ export interface DeleteBackupCommandInput extends DeleteBackupRequest {}
15
+ export interface DeleteBackupCommandOutput
16
+ extends DeleteBackupResponse,
17
+ __MetadataBearer {}
18
+ export declare class DeleteBackupCommand extends $Command<
19
+ DeleteBackupCommandInput,
20
+ DeleteBackupCommandOutput,
21
+ CloudHSMV2ClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteBackupCommandInput;
24
+ constructor(input: DeleteBackupCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CloudHSMV2ClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteBackupCommandInput, DeleteBackupCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0";
5
- export interface DeleteClusterCommandInput extends DeleteClusterRequest {
6
- }
7
- export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: DeleteClusterCommandInput;
12
- constructor(input: DeleteClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import {
14
+ DeleteClusterRequest,
15
+ DeleteClusterResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteClusterCommandInput extends DeleteClusterRequest {}
18
+ export interface DeleteClusterCommandOutput
19
+ extends DeleteClusterResponse,
20
+ __MetadataBearer {}
21
+ export declare class DeleteClusterCommand extends $Command<
22
+ DeleteClusterCommandInput,
23
+ DeleteClusterCommandOutput,
24
+ CloudHSMV2ClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteClusterCommandInput;
27
+ constructor(input: DeleteClusterCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudHSMV2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { DeleteHsmRequest, DeleteHsmResponse } from "../models/models_0";
5
- export interface DeleteHsmCommandInput extends DeleteHsmRequest {
6
- }
7
- export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteHsmCommand extends $Command<DeleteHsmCommandInput, DeleteHsmCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: DeleteHsmCommandInput;
12
- constructor(input: DeleteHsmCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteHsmCommandInput, DeleteHsmCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import { DeleteHsmRequest, DeleteHsmResponse } from "../models/models_0";
14
+ export interface DeleteHsmCommandInput extends DeleteHsmRequest {}
15
+ export interface DeleteHsmCommandOutput
16
+ extends DeleteHsmResponse,
17
+ __MetadataBearer {}
18
+ export declare class DeleteHsmCommand extends $Command<
19
+ DeleteHsmCommandInput,
20
+ DeleteHsmCommandOutput,
21
+ CloudHSMV2ClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteHsmCommandInput;
24
+ constructor(input: DeleteHsmCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CloudHSMV2ClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteHsmCommandInput, DeleteHsmCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { DescribeBackupsRequest, DescribeBackupsResponse } from "../models/models_0";
5
- export interface DescribeBackupsCommandInput extends DescribeBackupsRequest {
6
- }
7
- export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeBackupsCommand extends $Command<DescribeBackupsCommandInput, DescribeBackupsCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: DescribeBackupsCommandInput;
12
- constructor(input: DescribeBackupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBackupsCommandInput, DescribeBackupsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import {
14
+ DescribeBackupsRequest,
15
+ DescribeBackupsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeBackupsCommandInput extends DescribeBackupsRequest {}
18
+ export interface DescribeBackupsCommandOutput
19
+ extends DescribeBackupsResponse,
20
+ __MetadataBearer {}
21
+ export declare class DescribeBackupsCommand extends $Command<
22
+ DescribeBackupsCommandInput,
23
+ DescribeBackupsCommandOutput,
24
+ CloudHSMV2ClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeBackupsCommandInput;
27
+ constructor(input: DescribeBackupsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudHSMV2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeBackupsCommandInput, DescribeBackupsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0";
5
- export interface DescribeClustersCommandInput extends DescribeClustersRequest {
6
- }
7
- export interface DescribeClustersCommandOutput extends DescribeClustersResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeClustersCommand extends $Command<DescribeClustersCommandInput, DescribeClustersCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: DescribeClustersCommandInput;
12
- constructor(input: DescribeClustersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClustersCommandInput, DescribeClustersCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import {
14
+ DescribeClustersRequest,
15
+ DescribeClustersResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeClustersCommandInput extends DescribeClustersRequest {}
18
+ export interface DescribeClustersCommandOutput
19
+ extends DescribeClustersResponse,
20
+ __MetadataBearer {}
21
+ export declare class DescribeClustersCommand extends $Command<
22
+ DescribeClustersCommandInput,
23
+ DescribeClustersCommandOutput,
24
+ CloudHSMV2ClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeClustersCommandInput;
27
+ constructor(input: DescribeClustersCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudHSMV2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeClustersCommandInput, DescribeClustersCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { InitializeClusterRequest, InitializeClusterResponse } from "../models/models_0";
5
- export interface InitializeClusterCommandInput extends InitializeClusterRequest {
6
- }
7
- export interface InitializeClusterCommandOutput extends InitializeClusterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class InitializeClusterCommand extends $Command<InitializeClusterCommandInput, InitializeClusterCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: InitializeClusterCommandInput;
12
- constructor(input: InitializeClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<InitializeClusterCommandInput, InitializeClusterCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import {
14
+ InitializeClusterRequest,
15
+ InitializeClusterResponse,
16
+ } from "../models/models_0";
17
+ export interface InitializeClusterCommandInput
18
+ extends InitializeClusterRequest {}
19
+ export interface InitializeClusterCommandOutput
20
+ extends InitializeClusterResponse,
21
+ __MetadataBearer {}
22
+ export declare class InitializeClusterCommand extends $Command<
23
+ InitializeClusterCommandInput,
24
+ InitializeClusterCommandOutput,
25
+ CloudHSMV2ClientResolvedConfig
26
+ > {
27
+ readonly input: InitializeClusterCommandInput;
28
+ constructor(input: InitializeClusterCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CloudHSMV2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<InitializeClusterCommandInput, InitializeClusterCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
5
- export interface ListTagsCommandInput extends ListTagsRequest {
6
- }
7
- export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: ListTagsCommandInput;
12
- constructor(input: ListTagsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
14
+ export interface ListTagsCommandInput extends ListTagsRequest {}
15
+ export interface ListTagsCommandOutput
16
+ extends ListTagsResponse,
17
+ __MetadataBearer {}
18
+ export declare class ListTagsCommand extends $Command<
19
+ ListTagsCommandInput,
20
+ ListTagsCommandOutput,
21
+ CloudHSMV2ClientResolvedConfig
22
+ > {
23
+ readonly input: ListTagsCommandInput;
24
+ constructor(input: ListTagsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CloudHSMV2ClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { ModifyBackupAttributesRequest, ModifyBackupAttributesResponse } from "../models/models_0";
5
- export interface ModifyBackupAttributesCommandInput extends ModifyBackupAttributesRequest {
6
- }
7
- export interface ModifyBackupAttributesCommandOutput extends ModifyBackupAttributesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ModifyBackupAttributesCommand extends $Command<ModifyBackupAttributesCommandInput, ModifyBackupAttributesCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: ModifyBackupAttributesCommandInput;
12
- constructor(input: ModifyBackupAttributesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifyBackupAttributesCommandInput, ModifyBackupAttributesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import {
14
+ ModifyBackupAttributesRequest,
15
+ ModifyBackupAttributesResponse,
16
+ } from "../models/models_0";
17
+ export interface ModifyBackupAttributesCommandInput
18
+ extends ModifyBackupAttributesRequest {}
19
+ export interface ModifyBackupAttributesCommandOutput
20
+ extends ModifyBackupAttributesResponse,
21
+ __MetadataBearer {}
22
+ export declare class ModifyBackupAttributesCommand extends $Command<
23
+ ModifyBackupAttributesCommandInput,
24
+ ModifyBackupAttributesCommandOutput,
25
+ CloudHSMV2ClientResolvedConfig
26
+ > {
27
+ readonly input: ModifyBackupAttributesCommandInput;
28
+ constructor(input: ModifyBackupAttributesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CloudHSMV2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ModifyBackupAttributesCommandInput,
35
+ ModifyBackupAttributesCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client";
4
- import { ModifyClusterRequest, ModifyClusterResponse } from "../models/models_0";
5
- export interface ModifyClusterCommandInput extends ModifyClusterRequest {
6
- }
7
- export interface ModifyClusterCommandOutput extends ModifyClusterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ModifyClusterCommand extends $Command<ModifyClusterCommandInput, ModifyClusterCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: ModifyClusterCommandInput;
12
- constructor(input: ModifyClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifyClusterCommandInput, ModifyClusterCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CloudHSMV2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CloudHSMV2Client";
13
+ import {
14
+ ModifyClusterRequest,
15
+ ModifyClusterResponse,
16
+ } from "../models/models_0";
17
+ export interface ModifyClusterCommandInput extends ModifyClusterRequest {}
18
+ export interface ModifyClusterCommandOutput
19
+ extends ModifyClusterResponse,
20
+ __MetadataBearer {}
21
+ export declare class ModifyClusterCommand extends $Command<
22
+ ModifyClusterCommandInput,
23
+ ModifyClusterCommandOutput,
24
+ CloudHSMV2ClientResolvedConfig
25
+ > {
26
+ readonly input: ModifyClusterCommandInput;
27
+ constructor(input: ModifyClusterCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudHSMV2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ModifyClusterCommandInput, ModifyClusterCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }