@aws-sdk/client-cloudhsm-v2 3.169.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CloudHSMV2.d.ts +274 -80
  3. package/dist-types/ts3.4/CloudHSMV2Client.d.ts +219 -88
  4. package/dist-types/ts3.4/commands/CopyBackupToRegionCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/InitializeClusterCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/ModifyBackupAttributesCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/ModifyClusterCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/RestoreBackupCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -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 +8 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +489 -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 +66 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  35. package/package.json +34 -34
@@ -1,17 +1,37 @@
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
+
22
+ export declare class DescribeBackupsCommand extends $Command<
23
+ DescribeBackupsCommandInput,
24
+ DescribeBackupsCommandOutput,
25
+ CloudHSMV2ClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeBackupsCommandInput;
28
+ constructor(input: DescribeBackupsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudHSMV2ClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeBackupsCommandInput, DescribeBackupsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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
+
22
+ export declare class DescribeClustersCommand extends $Command<
23
+ DescribeClustersCommandInput,
24
+ DescribeClustersCommandOutput,
25
+ CloudHSMV2ClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeClustersCommandInput;
28
+ constructor(input: DescribeClustersCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudHSMV2ClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeClustersCommandInput, DescribeClustersCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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
+
23
+ export declare class InitializeClusterCommand extends $Command<
24
+ InitializeClusterCommandInput,
25
+ InitializeClusterCommandOutput,
26
+ CloudHSMV2ClientResolvedConfig
27
+ > {
28
+ readonly input: InitializeClusterCommandInput;
29
+ constructor(input: InitializeClusterCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudHSMV2ClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<InitializeClusterCommandInput, InitializeClusterCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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
+
19
+ export declare class ListTagsCommand extends $Command<
20
+ ListTagsCommandInput,
21
+ ListTagsCommandOutput,
22
+ CloudHSMV2ClientResolvedConfig
23
+ > {
24
+ readonly input: ListTagsCommandInput;
25
+ constructor(input: ListTagsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudHSMV2ClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
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
+
23
+ export declare class ModifyBackupAttributesCommand extends $Command<
24
+ ModifyBackupAttributesCommandInput,
25
+ ModifyBackupAttributesCommandOutput,
26
+ CloudHSMV2ClientResolvedConfig
27
+ > {
28
+ readonly input: ModifyBackupAttributesCommandInput;
29
+ constructor(input: ModifyBackupAttributesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CloudHSMV2ClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ModifyBackupAttributesCommandInput,
37
+ ModifyBackupAttributesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
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
+
22
+ export declare class ModifyClusterCommand extends $Command<
23
+ ModifyClusterCommandInput,
24
+ ModifyClusterCommandOutput,
25
+ CloudHSMV2ClientResolvedConfig
26
+ > {
27
+ readonly input: ModifyClusterCommandInput;
28
+ constructor(input: ModifyClusterCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudHSMV2ClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ModifyClusterCommandInput, ModifyClusterCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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 { RestoreBackupRequest, RestoreBackupResponse } from "../models/models_0";
5
- export interface RestoreBackupCommandInput extends RestoreBackupRequest {
6
- }
7
- export interface RestoreBackupCommandOutput extends RestoreBackupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RestoreBackupCommand extends $Command<RestoreBackupCommandInput, RestoreBackupCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: RestoreBackupCommandInput;
12
- constructor(input: RestoreBackupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreBackupCommandInput, RestoreBackupCommandOutput>;
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
+ RestoreBackupRequest,
15
+ RestoreBackupResponse,
16
+ } from "../models/models_0";
17
+ export interface RestoreBackupCommandInput extends RestoreBackupRequest {}
18
+ export interface RestoreBackupCommandOutput
19
+ extends RestoreBackupResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class RestoreBackupCommand extends $Command<
23
+ RestoreBackupCommandInput,
24
+ RestoreBackupCommandOutput,
25
+ CloudHSMV2ClientResolvedConfig
26
+ > {
27
+ readonly input: RestoreBackupCommandInput;
28
+ constructor(input: RestoreBackupCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudHSMV2ClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<RestoreBackupCommandInput, RestoreBackupCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ CloudHSMV2ClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CloudHSMV2ClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CloudHSMV2ClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CloudHSMV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ CloudHSMV2ClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CloudHSMV2ClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,15 +1,15 @@
1
- export * from "./CopyBackupToRegionCommand";
2
- export * from "./CreateClusterCommand";
3
- export * from "./CreateHsmCommand";
4
- export * from "./DeleteBackupCommand";
5
- export * from "./DeleteClusterCommand";
6
- export * from "./DeleteHsmCommand";
7
- export * from "./DescribeBackupsCommand";
8
- export * from "./DescribeClustersCommand";
9
- export * from "./InitializeClusterCommand";
10
- export * from "./ListTagsCommand";
11
- export * from "./ModifyBackupAttributesCommand";
12
- export * from "./ModifyClusterCommand";
13
- export * from "./RestoreBackupCommand";
14
- export * from "./TagResourceCommand";
15
- export * from "./UntagResourceCommand";
1
+ export * from "./CopyBackupToRegionCommand";
2
+ export * from "./CreateClusterCommand";
3
+ export * from "./CreateHsmCommand";
4
+ export * from "./DeleteBackupCommand";
5
+ export * from "./DeleteClusterCommand";
6
+ export * from "./DeleteHsmCommand";
7
+ export * from "./DescribeBackupsCommand";
8
+ export * from "./DescribeClustersCommand";
9
+ export * from "./InitializeClusterCommand";
10
+ export * from "./ListTagsCommand";
11
+ export * from "./ModifyBackupAttributesCommand";
12
+ export * from "./ModifyClusterCommand";
13
+ export * from "./RestoreBackupCommand";
14
+ export * from "./TagResourceCommand";
15
+ export * from "./UntagResourceCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./CloudHSMV2";
2
- export * from "./CloudHSMV2Client";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { CloudHSMV2ServiceException } from "./models/CloudHSMV2ServiceException";
1
+ export * from "./CloudHSMV2";
2
+ export * from "./CloudHSMV2Client";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { CloudHSMV2ServiceException } from "./models/CloudHSMV2ServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class CloudHSMV2ServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class CloudHSMV2ServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";