@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,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 { 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
+ export declare class RestoreBackupCommand extends $Command<
22
+ RestoreBackupCommandInput,
23
+ RestoreBackupCommandOutput,
24
+ CloudHSMV2ClientResolvedConfig
25
+ > {
26
+ readonly input: RestoreBackupCommandInput;
27
+ constructor(input: RestoreBackupCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudHSMV2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<RestoreBackupCommandInput, RestoreBackupCommandOutput>;
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 { 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
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ CloudHSMV2ClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CloudHSMV2ClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { 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
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ CloudHSMV2ClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudHSMV2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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,7 @@
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
+ export declare class CloudHSMV2ServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";