@aws-sdk/client-cloudhsm-v2 3.1086.0 → 3.1088.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 (38) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/CloudHSMV2.d.ts +62 -79
  3. package/dist-types/ts3.4/CloudHSMV2Client.d.ts +9 -30
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/CopyBackupToRegionCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +4 -9
  9. package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +7 -5
  10. package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +3 -5
  11. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +7 -5
  13. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +3 -8
  15. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +3 -8
  16. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +4 -9
  17. package/dist-types/ts3.4/commands/InitializeClusterCommand.d.ts +5 -10
  18. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +7 -5
  19. package/dist-types/ts3.4/commands/ModifyBackupAttributesCommand.d.ts +5 -10
  20. package/dist-types/ts3.4/commands/ModifyClusterCommand.d.ts +4 -9
  21. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +4 -9
  22. package/dist-types/ts3.4/commands/RestoreBackupCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  25. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  26. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  27. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  28. package/dist-types/ts3.4/models/enums.d.ts +1 -2
  29. package/dist-types/ts3.4/models/errors.d.ts +7 -33
  30. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  31. package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +1 -4
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  36. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  37. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  38. package/package.json +39 -39
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { CreateHsmRequest, CreateHsmResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface CreateHsmCommandInput extends CreateHsmRequest {}
5
- export interface CreateHsmCommandOutput
6
- extends CreateHsmResponse,
7
- __MetadataBearer {}
5
+ export interface CreateHsmCommandOutput extends CreateHsmResponse, __MetadataBearer {}
8
6
  declare const CreateHsmCommand_base: {
9
- new (input: CreateHsmCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: CreateHsmCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
10
  CreateHsmCommandInput,
11
11
  CreateHsmCommandOutput,
12
12
  import("..").CloudHSMV2ClientResolvedConfig,
13
13
  import("..").ServiceInputTypes,
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
- new (input: CreateHsmCommandInput): import("@smithy/core/client").CommandImpl<
16
+ new (
17
+ input: CreateHsmCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
17
19
  CreateHsmCommandInput,
18
20
  CreateHsmCommandOutput,
19
21
  import("..").CloudHSMV2ClientResolvedConfig,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { DeleteBackupRequest, DeleteBackupResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface DeleteBackupCommandInput extends DeleteBackupRequest {}
5
- export interface DeleteBackupCommandOutput
6
- extends DeleteBackupResponse,
7
- __MetadataBearer {}
5
+ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __MetadataBearer {}
8
6
  declare const DeleteBackupCommand_base: {
9
7
  new (
10
- input: DeleteBackupCommandInput
8
+ input: DeleteBackupCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  DeleteBackupCommandInput,
13
11
  DeleteBackupCommandOutput,
@@ -16,7 +14,7 @@ declare const DeleteBackupCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: DeleteBackupCommandInput
17
+ input: DeleteBackupCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  DeleteBackupCommandInput,
22
20
  DeleteBackupCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteClusterRequest,
4
- DeleteClusterResponse,
5
- } from "../models/models_0";
2
+ import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface DeleteClusterCommandInput extends DeleteClusterRequest {}
8
- export interface DeleteClusterCommandOutput
9
- extends DeleteClusterResponse,
10
- __MetadataBearer {}
5
+ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __MetadataBearer {}
11
6
  declare const DeleteClusterCommand_base: {
12
7
  new (
13
- input: DeleteClusterCommandInput
8
+ input: DeleteClusterCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  DeleteClusterCommandInput,
16
11
  DeleteClusterCommandOutput,
@@ -19,7 +14,7 @@ declare const DeleteClusterCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: DeleteClusterCommandInput
17
+ input: DeleteClusterCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  DeleteClusterCommandInput,
25
20
  DeleteClusterCommandOutput,
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { DeleteHsmRequest, DeleteHsmResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface DeleteHsmCommandInput extends DeleteHsmRequest {}
5
- export interface DeleteHsmCommandOutput
6
- extends DeleteHsmResponse,
7
- __MetadataBearer {}
5
+ export interface DeleteHsmCommandOutput extends DeleteHsmResponse, __MetadataBearer {}
8
6
  declare const DeleteHsmCommand_base: {
9
- new (input: DeleteHsmCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: DeleteHsmCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
10
  DeleteHsmCommandInput,
11
11
  DeleteHsmCommandOutput,
12
12
  import("..").CloudHSMV2ClientResolvedConfig,
13
13
  import("..").ServiceInputTypes,
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
- new (input: DeleteHsmCommandInput): import("@smithy/core/client").CommandImpl<
16
+ new (
17
+ input: DeleteHsmCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
17
19
  DeleteHsmCommandInput,
18
20
  DeleteHsmCommandOutput,
19
21
  import("..").CloudHSMV2ClientResolvedConfig,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteResourcePolicyRequest,
4
- DeleteResourcePolicyResponse,
5
- } from "../models/models_0";
2
+ import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteResourcePolicyCommandInput
8
- extends DeleteResourcePolicyRequest {}
4
+ export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {}
9
5
  export interface DeleteResourcePolicyCommandOutput
10
- extends DeleteResourcePolicyResponse,
11
- __MetadataBearer {}
6
+ extends DeleteResourcePolicyResponse, __MetadataBearer {}
12
7
  declare const DeleteResourcePolicyCommand_base: {
13
8
  new (
14
- input: DeleteResourcePolicyCommandInput
9
+ input: DeleteResourcePolicyCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DeleteResourcePolicyCommandInput,
17
12
  DeleteResourcePolicyCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DescribeBackupsRequest,
4
- DescribeBackupsResponse,
5
- } from "../models/models_0";
2
+ import { DescribeBackupsRequest, DescribeBackupsResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface DescribeBackupsCommandInput extends DescribeBackupsRequest {}
8
- export interface DescribeBackupsCommandOutput
9
- extends DescribeBackupsResponse,
10
- __MetadataBearer {}
5
+ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, __MetadataBearer {}
11
6
  declare const DescribeBackupsCommand_base: {
12
7
  new (
13
- input: DescribeBackupsCommandInput
8
+ input: DescribeBackupsCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  DescribeBackupsCommandInput,
16
11
  DescribeBackupsCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DescribeClustersRequest,
4
- DescribeClustersResponse,
5
- } from "../models/models_0";
2
+ import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface DescribeClustersCommandInput extends DescribeClustersRequest {}
8
- export interface DescribeClustersCommandOutput
9
- extends DescribeClustersResponse,
10
- __MetadataBearer {}
5
+ export interface DescribeClustersCommandOutput extends DescribeClustersResponse, __MetadataBearer {}
11
6
  declare const DescribeClustersCommand_base: {
12
7
  new (
13
- input: DescribeClustersCommandInput
8
+ input: DescribeClustersCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  DescribeClustersCommandInput,
16
11
  DescribeClustersCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetResourcePolicyRequest,
4
- GetResourcePolicyResponse,
5
- } from "../models/models_0";
2
+ import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface GetResourcePolicyCommandInput
8
- extends GetResourcePolicyRequest {}
4
+ export interface GetResourcePolicyCommandInput extends GetResourcePolicyRequest {}
9
5
  export interface GetResourcePolicyCommandOutput
10
- extends GetResourcePolicyResponse,
11
- __MetadataBearer {}
6
+ extends GetResourcePolicyResponse, __MetadataBearer {}
12
7
  declare const GetResourcePolicyCommand_base: {
13
8
  new (
14
- input: GetResourcePolicyCommandInput
9
+ input: GetResourcePolicyCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  GetResourcePolicyCommandInput,
17
12
  GetResourcePolicyCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- InitializeClusterRequest,
4
- InitializeClusterResponse,
5
- } from "../models/models_0";
2
+ import { InitializeClusterRequest, InitializeClusterResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface InitializeClusterCommandInput
8
- extends InitializeClusterRequest {}
4
+ export interface InitializeClusterCommandInput extends InitializeClusterRequest {}
9
5
  export interface InitializeClusterCommandOutput
10
- extends InitializeClusterResponse,
11
- __MetadataBearer {}
6
+ extends InitializeClusterResponse, __MetadataBearer {}
12
7
  declare const InitializeClusterCommand_base: {
13
8
  new (
14
- input: InitializeClusterCommandInput
9
+ input: InitializeClusterCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  InitializeClusterCommandInput,
17
12
  InitializeClusterCommandOutput,
@@ -20,7 +15,7 @@ declare const InitializeClusterCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: InitializeClusterCommandInput
18
+ input: InitializeClusterCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  InitializeClusterCommandInput,
26
21
  InitializeClusterCommandOutput,
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface ListTagsCommandInput extends ListTagsRequest {}
5
- export interface ListTagsCommandOutput
6
- extends ListTagsResponse,
7
- __MetadataBearer {}
5
+ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {}
8
6
  declare const ListTagsCommand_base: {
9
- new (input: ListTagsCommandInput): import("@smithy/core/client").CommandImpl<
7
+ new (
8
+ input: ListTagsCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
10
  ListTagsCommandInput,
11
11
  ListTagsCommandOutput,
12
12
  import("..").CloudHSMV2ClientResolvedConfig,
13
13
  import("..").ServiceInputTypes,
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
- new (input: ListTagsCommandInput): import("@smithy/core/client").CommandImpl<
16
+ new (
17
+ input: ListTagsCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
17
19
  ListTagsCommandInput,
18
20
  ListTagsCommandOutput,
19
21
  import("..").CloudHSMV2ClientResolvedConfig,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ModifyBackupAttributesRequest,
4
- ModifyBackupAttributesResponse,
5
- } from "../models/models_0";
2
+ import { ModifyBackupAttributesRequest, ModifyBackupAttributesResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ModifyBackupAttributesCommandInput
8
- extends ModifyBackupAttributesRequest {}
4
+ export interface ModifyBackupAttributesCommandInput extends ModifyBackupAttributesRequest {}
9
5
  export interface ModifyBackupAttributesCommandOutput
10
- extends ModifyBackupAttributesResponse,
11
- __MetadataBearer {}
6
+ extends ModifyBackupAttributesResponse, __MetadataBearer {}
12
7
  declare const ModifyBackupAttributesCommand_base: {
13
8
  new (
14
- input: ModifyBackupAttributesCommandInput
9
+ input: ModifyBackupAttributesCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ModifyBackupAttributesCommandInput,
17
12
  ModifyBackupAttributesCommandOutput,
@@ -20,7 +15,7 @@ declare const ModifyBackupAttributesCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ModifyBackupAttributesCommandInput
18
+ input: ModifyBackupAttributesCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ModifyBackupAttributesCommandInput,
26
21
  ModifyBackupAttributesCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ModifyClusterRequest,
4
- ModifyClusterResponse,
5
- } from "../models/models_0";
2
+ import { ModifyClusterRequest, ModifyClusterResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface ModifyClusterCommandInput extends ModifyClusterRequest {}
8
- export interface ModifyClusterCommandOutput
9
- extends ModifyClusterResponse,
10
- __MetadataBearer {}
5
+ export interface ModifyClusterCommandOutput extends ModifyClusterResponse, __MetadataBearer {}
11
6
  declare const ModifyClusterCommand_base: {
12
7
  new (
13
- input: ModifyClusterCommandInput
8
+ input: ModifyClusterCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  ModifyClusterCommandInput,
16
11
  ModifyClusterCommandOutput,
@@ -19,7 +14,7 @@ declare const ModifyClusterCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: ModifyClusterCommandInput
17
+ input: ModifyClusterCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  ModifyClusterCommandInput,
25
20
  ModifyClusterCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- PutResourcePolicyRequest,
4
- PutResourcePolicyResponse,
5
- } from "../models/models_0";
2
+ import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface PutResourcePolicyCommandInput
8
- extends PutResourcePolicyRequest {}
4
+ export interface PutResourcePolicyCommandInput extends PutResourcePolicyRequest {}
9
5
  export interface PutResourcePolicyCommandOutput
10
- extends PutResourcePolicyResponse,
11
- __MetadataBearer {}
6
+ extends PutResourcePolicyResponse, __MetadataBearer {}
12
7
  declare const PutResourcePolicyCommand_base: {
13
8
  new (
14
- input: PutResourcePolicyCommandInput
9
+ input: PutResourcePolicyCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  PutResourcePolicyCommandInput,
17
12
  PutResourcePolicyCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- RestoreBackupRequest,
4
- RestoreBackupResponse,
5
- } from "../models/models_0";
2
+ import { RestoreBackupRequest, RestoreBackupResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface RestoreBackupCommandInput extends RestoreBackupRequest {}
8
- export interface RestoreBackupCommandOutput
9
- extends RestoreBackupResponse,
10
- __MetadataBearer {}
5
+ export interface RestoreBackupCommandOutput extends RestoreBackupResponse, __MetadataBearer {}
11
6
  declare const RestoreBackupCommand_base: {
12
7
  new (
13
- input: RestoreBackupCommandInput
8
+ input: RestoreBackupCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  RestoreBackupCommandInput,
16
11
  RestoreBackupCommandOutput,
@@ -19,7 +14,7 @@ declare const RestoreBackupCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: RestoreBackupCommandInput
17
+ input: RestoreBackupCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  RestoreBackupCommandInput,
25
20
  RestoreBackupCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
5
- export interface TagResourceCommandOutput
6
- extends TagResourceResponse,
7
- __MetadataBearer {}
5
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
8
6
  declare const TagResourceCommand_base: {
9
7
  new (
10
- input: TagResourceCommandInput
8
+ input: TagResourceCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  TagResourceCommandInput,
13
11
  TagResourceCommandOutput,
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: TagResourceCommandInput
17
+ input: TagResourceCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  TagResourceCommandInput,
22
20
  TagResourceCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- UntagResourceRequest,
4
- UntagResourceResponse,
5
- } from "../models/models_0";
2
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface UntagResourceCommandInput extends UntagResourceRequest {}
8
- export interface UntagResourceCommandOutput
9
- extends UntagResourceResponse,
10
- __MetadataBearer {}
5
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
11
6
  declare const UntagResourceCommand_base: {
12
7
  new (
13
- input: UntagResourceCommandInput
8
+ input: UntagResourceCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  UntagResourceCommandInput,
16
11
  UntagResourceCommandOutput,
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: UntagResourceCommandInput
17
+ input: UntagResourceCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  UntagResourceCommandInput,
25
20
  UntagResourceCommandOutput,
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
23
23
  defaultSigningName: string;
24
24
  };
25
25
  export declare const resolveClientEndpointParameters: <T>(
26
- options: T & ClientInputEndpointParameters
26
+ options: T & ClientInputEndpointParameters,
27
27
  ) => T & ClientResolvedEndpointParameters;
28
28
  export declare const commonParams: {
29
29
  readonly UseFIPS: {
@@ -4,5 +4,5 @@ export declare const defaultEndpointResolver: (
4
4
  endpointParams: EndpointParameters,
5
5
  context?: {
6
6
  logger?: Logger;
7
- }
7
+ },
8
8
  ) => EndpointV2;
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
3
  import { DefaultExtensionConfiguration } from "@smithy/types";
4
4
  import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
5
  export interface CloudHSMV2ExtensionConfiguration
6
- extends HttpHandlerExtensionConfiguration,
6
+ extends
7
+ HttpHandlerExtensionConfiguration,
7
8
  DefaultExtensionConfiguration,
8
9
  AwsRegionExtensionConfiguration,
9
10
  HttpAuthExtensionConfiguration {}
@@ -17,8 +17,7 @@ export type BackupPolicy = (typeof BackupPolicy)[keyof typeof BackupPolicy];
17
17
  export declare const BackupRetentionType: {
18
18
  readonly DAYS: "DAYS";
19
19
  };
20
- export type BackupRetentionType =
21
- (typeof BackupRetentionType)[keyof typeof BackupRetentionType];
20
+ export type BackupRetentionType = (typeof BackupRetentionType)[keyof typeof BackupRetentionType];
22
21
  export declare const NetworkType: {
23
22
  readonly DUALSTACK: "DUALSTACK";
24
23
  readonly IPV4: "IPV4";
@@ -4,67 +4,41 @@ export declare class CloudHsmAccessDeniedException extends __BaseException {
4
4
  readonly name: "CloudHsmAccessDeniedException";
5
5
  readonly $fault: "client";
6
6
  Message?: string | undefined;
7
- constructor(
8
- opts: __ExceptionOptionType<CloudHsmAccessDeniedException, __BaseException>
9
- );
7
+ constructor(opts: __ExceptionOptionType<CloudHsmAccessDeniedException, __BaseException>);
10
8
  }
11
9
  export declare class CloudHsmInternalFailureException extends __BaseException {
12
10
  readonly name: "CloudHsmInternalFailureException";
13
11
  readonly $fault: "server";
14
12
  Message?: string | undefined;
15
- constructor(
16
- opts: __ExceptionOptionType<
17
- CloudHsmInternalFailureException,
18
- __BaseException
19
- >
20
- );
13
+ constructor(opts: __ExceptionOptionType<CloudHsmInternalFailureException, __BaseException>);
21
14
  }
22
15
  export declare class CloudHsmInvalidRequestException extends __BaseException {
23
16
  readonly name: "CloudHsmInvalidRequestException";
24
17
  readonly $fault: "client";
25
18
  Message?: string | undefined;
26
- constructor(
27
- opts: __ExceptionOptionType<
28
- CloudHsmInvalidRequestException,
29
- __BaseException
30
- >
31
- );
19
+ constructor(opts: __ExceptionOptionType<CloudHsmInvalidRequestException, __BaseException>);
32
20
  }
33
21
  export declare class CloudHsmResourceNotFoundException extends __BaseException {
34
22
  readonly name: "CloudHsmResourceNotFoundException";
35
23
  readonly $fault: "client";
36
24
  Message?: string | undefined;
37
- constructor(
38
- opts: __ExceptionOptionType<
39
- CloudHsmResourceNotFoundException,
40
- __BaseException
41
- >
42
- );
25
+ constructor(opts: __ExceptionOptionType<CloudHsmResourceNotFoundException, __BaseException>);
43
26
  }
44
27
  export declare class CloudHsmServiceException extends __BaseException {
45
28
  readonly name: "CloudHsmServiceException";
46
29
  readonly $fault: "client";
47
30
  Message?: string | undefined;
48
- constructor(
49
- opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>
50
- );
31
+ constructor(opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>);
51
32
  }
52
33
  export declare class CloudHsmTagException extends __BaseException {
53
34
  readonly name: "CloudHsmTagException";
54
35
  readonly $fault: "client";
55
36
  Message?: string | undefined;
56
- constructor(
57
- opts: __ExceptionOptionType<CloudHsmTagException, __BaseException>
58
- );
37
+ constructor(opts: __ExceptionOptionType<CloudHsmTagException, __BaseException>);
59
38
  }
60
39
  export declare class CloudHsmResourceLimitExceededException extends __BaseException {
61
40
  readonly name: "CloudHsmResourceLimitExceededException";
62
41
  readonly $fault: "client";
63
42
  Message?: string | undefined;
64
- constructor(
65
- opts: __ExceptionOptionType<
66
- CloudHsmResourceLimitExceededException,
67
- __BaseException
68
- >
69
- );
43
+ constructor(opts: __ExceptionOptionType<CloudHsmResourceLimitExceededException, __BaseException>);
70
44
  }
@@ -1,6 +1,5 @@
1
1
  import { PaginationConfiguration } from "@smithy/types";
2
2
  import { CloudHSMV2Client } from "../CloudHSMV2Client";
3
- export interface CloudHSMV2PaginationConfiguration
4
- extends PaginationConfiguration {
3
+ export interface CloudHSMV2PaginationConfiguration extends PaginationConfiguration {
5
4
  client: CloudHSMV2Client;
6
5
  }
@@ -1,8 +1,5 @@
1
1
  import { Paginator } from "@smithy/types";
2
- import {
3
- ListTagsCommandInput,
4
- ListTagsCommandOutput,
5
- } from "../commands/ListTagsCommand";
2
+ import { ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand";
6
3
  import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
7
4
  export declare const paginateListTags: (
8
5
  config: CloudHSMV2PaginationConfiguration,
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
9
  credentialDefaultProvider:
10
10
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
- | ((
12
- _: unknown
13
- ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
12
  defaultUserAgentProvider: (
15
- config?: import("@aws-sdk/core/client").PreviouslyResolved
13
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
16
14
  ) => Promise<import("@smithy/types").UserAgent>;
17
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
18
16
  region: string | import("@smithy/types").Provider<any>;
19
- requestHandler:
20
- | import("@smithy/core/protocols").HttpHandler<any>
21
- | RequestHandler;
17
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
22
18
  retryMode: string | import("@smithy/types").Provider<string>;
23
19
  streamCollector: (
24
- stream:
25
- | import("stream").Readable
26
- | import("stream/web").ReadableStream
27
- | ReadableStream
28
- | Blob
20
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
29
21
  ) => Promise<Uint8Array>;
30
22
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
31
23
  (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
53
45
  logger: import("@smithy/types").Logger;
54
46
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
56
- userAgentAppId?:
57
- | string
58
- | undefined
59
- | import("@smithy/types").Provider<string | undefined>;
60
- retryStrategy?:
61
- | import("@smithy/types").RetryStrategy
62
- | import("@smithy/types").RetryStrategyV2;
48
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
49
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
63
50
  endpoint?:
64
51
  | ((
65
52
  | string
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
81
68
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
82
69
  context?: {
83
70
  logger?: import("@smithy/types").Logger;
84
- }
71
+ },
85
72
  ) => import("@smithy/types").EndpointV2;
86
73
  tls?: boolean;
87
74
  serviceConfiguredEndpoint?: never;
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
94
81
  signer?:
95
82
  | import("@smithy/types").RequestSigner
96
83
  | ((
97
- authScheme?: import("@smithy/types").AuthScheme
84
+ authScheme?: import("@smithy/types").AuthScheme,
98
85
  ) => Promise<import("@smithy/types").RequestSigner>);
99
86
  signingEscapePath?: boolean;
100
87
  systemClockOffset?: number;
101
88
  signingRegion?: string;
102
89
  signerConstructor?: new (
103
90
  options: import("@smithy/signature-v4").SignatureV4Init &
104
- import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
105
92
  ) => import("@smithy/types").RequestSigner;
106
93
  };