@aws-sdk/client-cloudhsm 3.1087.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.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/CloudHSM.d.ts +70 -103
- package/dist-types/ts3.4/CloudHSMClient.d.ts +25 -65
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateHapgCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/CreateLunaClientCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteHapgCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/DeleteLunaClientCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeHapgCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeHsmCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeLunaClientCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ListAvailableZonesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListHapgsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListHsmsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListLunaClientsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ModifyHapgCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ModifyHsmCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ModifyLunaClientCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +3 -9
- package/dist-types/ts3.4/models/models_0.d.ts +1 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./CloudHSMClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
CloudHSMClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AddTagsToResourceRequest,
|
|
4
|
-
AddTagsToResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AddTagsToResourceRequest, AddTagsToResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface AddTagsToResourceCommandInput
|
|
8
|
-
extends AddTagsToResourceRequest {}
|
|
4
|
+
export interface AddTagsToResourceCommandInput extends AddTagsToResourceRequest {}
|
|
9
5
|
export interface AddTagsToResourceCommandOutput
|
|
10
|
-
extends AddTagsToResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AddTagsToResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const AddTagsToResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: AddTagsToResourceCommandInput
|
|
9
|
+
input: AddTagsToResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
AddTagsToResourceCommandInput,
|
|
17
12
|
AddTagsToResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const AddTagsToResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: AddTagsToResourceCommandInput
|
|
18
|
+
input: AddTagsToResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
AddTagsToResourceCommandInput,
|
|
26
21
|
AddTagsToResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateHapgRequest, CreateHapgResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateHapgCommandInput extends CreateHapgRequest {}
|
|
5
|
-
export interface CreateHapgCommandOutput
|
|
6
|
-
extends CreateHapgResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateHapgCommandOutput extends CreateHapgResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreateHapgCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateHapgCommandInput
|
|
8
|
+
input: CreateHapgCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateHapgCommandInput,
|
|
13
11
|
CreateHapgCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateHapgCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateHapgCommandInput
|
|
17
|
+
input: CreateHapgCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateHapgCommandInput,
|
|
22
20
|
CreateHapgCommandOutput,
|
|
@@ -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 (
|
|
7
|
+
new (
|
|
8
|
+
input: CreateHsmCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
CreateHsmCommandInput,
|
|
11
11
|
CreateHsmCommandOutput,
|
|
12
12
|
import("..").CloudHSMClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: CreateHsmCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
CreateHsmCommandInput,
|
|
18
20
|
CreateHsmCommandOutput,
|
|
19
21
|
import("..").CloudHSMClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateLunaClientRequest,
|
|
4
|
-
CreateLunaClientResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateLunaClientRequest, CreateLunaClientResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateLunaClientCommandInput extends CreateLunaClientRequest {}
|
|
8
|
-
export interface CreateLunaClientCommandOutput
|
|
9
|
-
extends CreateLunaClientResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateLunaClientCommandOutput extends CreateLunaClientResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateLunaClientCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateLunaClientCommandInput
|
|
8
|
+
input: CreateLunaClientCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateLunaClientCommandInput,
|
|
16
11
|
CreateLunaClientCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateLunaClientCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateLunaClientCommandInput
|
|
17
|
+
input: CreateLunaClientCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateLunaClientCommandInput,
|
|
25
20
|
CreateLunaClientCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteHapgRequest, DeleteHapgResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteHapgCommandInput extends DeleteHapgRequest {}
|
|
5
|
-
export interface DeleteHapgCommandOutput
|
|
6
|
-
extends DeleteHapgResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteHapgCommandOutput extends DeleteHapgResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteHapgCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteHapgCommandInput
|
|
8
|
+
input: DeleteHapgCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteHapgCommandInput,
|
|
13
11
|
DeleteHapgCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteHapgCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteHapgCommandInput
|
|
17
|
+
input: DeleteHapgCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteHapgCommandInput,
|
|
22
20
|
DeleteHapgCommandOutput,
|
|
@@ -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 (
|
|
7
|
+
new (
|
|
8
|
+
input: DeleteHsmCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeleteHsmCommandInput,
|
|
11
11
|
DeleteHsmCommandOutput,
|
|
12
12
|
import("..").CloudHSMClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteHsmCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
DeleteHsmCommandInput,
|
|
18
20
|
DeleteHsmCommandOutput,
|
|
19
21
|
import("..").CloudHSMClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteLunaClientRequest,
|
|
4
|
-
DeleteLunaClientResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteLunaClientRequest, DeleteLunaClientResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteLunaClientCommandInput extends DeleteLunaClientRequest {}
|
|
8
|
-
export interface DeleteLunaClientCommandOutput
|
|
9
|
-
extends DeleteLunaClientResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteLunaClientCommandOutput extends DeleteLunaClientResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteLunaClientCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteLunaClientCommandInput
|
|
8
|
+
input: DeleteLunaClientCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteLunaClientCommandInput,
|
|
16
11
|
DeleteLunaClientCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteLunaClientCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteLunaClientCommandInput
|
|
17
|
+
input: DeleteLunaClientCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteLunaClientCommandInput,
|
|
25
20
|
DeleteLunaClientCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DescribeHapgRequest, DescribeHapgResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DescribeHapgCommandInput extends DescribeHapgRequest {}
|
|
5
|
-
export interface DescribeHapgCommandOutput
|
|
6
|
-
extends DescribeHapgResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeHapgCommandOutput extends DescribeHapgResponse, __MetadataBearer {}
|
|
8
6
|
declare const DescribeHapgCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DescribeHapgCommandInput
|
|
8
|
+
input: DescribeHapgCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DescribeHapgCommandInput,
|
|
13
11
|
DescribeHapgCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DescribeHapgCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DescribeHapgCommandInput
|
|
17
|
+
input: DescribeHapgCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DescribeHapgCommandInput,
|
|
22
20
|
DescribeHapgCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DescribeHsmRequest, DescribeHsmResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DescribeHsmCommandInput extends DescribeHsmRequest {}
|
|
5
|
-
export interface DescribeHsmCommandOutput
|
|
6
|
-
extends DescribeHsmResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeHsmCommandOutput extends DescribeHsmResponse, __MetadataBearer {}
|
|
8
6
|
declare const DescribeHsmCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DescribeHsmCommandInput
|
|
8
|
+
input: DescribeHsmCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DescribeHsmCommandInput,
|
|
13
11
|
DescribeHsmCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeLunaClientRequest,
|
|
4
|
-
DescribeLunaClientResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeLunaClientRequest, DescribeLunaClientResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeLunaClientCommandInput
|
|
8
|
-
extends DescribeLunaClientRequest {}
|
|
4
|
+
export interface DescribeLunaClientCommandInput extends DescribeLunaClientRequest {}
|
|
9
5
|
export interface DescribeLunaClientCommandOutput
|
|
10
|
-
extends DescribeLunaClientResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeLunaClientResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeLunaClientCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeLunaClientCommandInput
|
|
9
|
+
input: DescribeLunaClientCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeLunaClientCommandInput,
|
|
17
12
|
DescribeLunaClientCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetConfigRequest, GetConfigResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetConfigCommandInput extends GetConfigRequest {}
|
|
5
|
-
export interface GetConfigCommandOutput
|
|
6
|
-
extends GetConfigResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetConfigCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetConfigCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetConfigCommandInput,
|
|
11
11
|
GetConfigCommandOutput,
|
|
12
12
|
import("..").CloudHSMClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetConfigCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetConfigCommandInput,
|
|
18
20
|
GetConfigCommandOutput,
|
|
19
21
|
import("..").CloudHSMClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAvailableZonesRequest,
|
|
4
|
-
ListAvailableZonesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAvailableZonesRequest, ListAvailableZonesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListAvailableZonesCommandInput
|
|
8
|
-
extends ListAvailableZonesRequest {}
|
|
4
|
+
export interface ListAvailableZonesCommandInput extends ListAvailableZonesRequest {}
|
|
9
5
|
export interface ListAvailableZonesCommandOutput
|
|
10
|
-
extends ListAvailableZonesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListAvailableZonesResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListAvailableZonesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListAvailableZonesCommandInput
|
|
9
|
+
input: ListAvailableZonesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListAvailableZonesCommandInput,
|
|
17
12
|
ListAvailableZonesCommandOutput,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListHapgsRequest, ListHapgsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListHapgsCommandInput extends ListHapgsRequest {}
|
|
5
|
-
export interface ListHapgsCommandOutput
|
|
6
|
-
extends ListHapgsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListHapgsCommandOutput extends ListHapgsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListHapgsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListHapgsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListHapgsCommandInput,
|
|
11
11
|
ListHapgsCommandOutput,
|
|
12
12
|
import("..").CloudHSMClientResolvedConfig,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListHsmsRequest, ListHsmsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListHsmsCommandInput extends ListHsmsRequest {}
|
|
5
|
-
export interface ListHsmsCommandOutput
|
|
6
|
-
extends ListHsmsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListHsmsCommandOutput extends ListHsmsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListHsmsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListHsmsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListHsmsCommandInput,
|
|
11
11
|
ListHsmsCommandOutput,
|
|
12
12
|
import("..").CloudHSMClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListLunaClientsRequest,
|
|
4
|
-
ListLunaClientsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListLunaClientsRequest, ListLunaClientsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListLunaClientsCommandInput extends ListLunaClientsRequest {}
|
|
8
|
-
export interface ListLunaClientsCommandOutput
|
|
9
|
-
extends ListLunaClientsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListLunaClientsCommandOutput extends ListLunaClientsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListLunaClientsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListLunaClientsCommandInput
|
|
8
|
+
input: ListLunaClientsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListLunaClientsCommandInput,
|
|
16
11
|
ListLunaClientsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ModifyHapgRequest, ModifyHapgResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ModifyHapgCommandInput extends ModifyHapgRequest {}
|
|
5
|
-
export interface ModifyHapgCommandOutput
|
|
6
|
-
extends ModifyHapgResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ModifyHapgCommandOutput extends ModifyHapgResponse, __MetadataBearer {}
|
|
8
6
|
declare const ModifyHapgCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ModifyHapgCommandInput
|
|
8
|
+
input: ModifyHapgCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ModifyHapgCommandInput,
|
|
13
11
|
ModifyHapgCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ModifyHapgCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ModifyHapgCommandInput
|
|
17
|
+
input: ModifyHapgCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ModifyHapgCommandInput,
|
|
22
20
|
ModifyHapgCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ModifyHsmRequest, ModifyHsmResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ModifyHsmCommandInput extends ModifyHsmRequest {}
|
|
5
|
-
export interface ModifyHsmCommandOutput
|
|
6
|
-
extends ModifyHsmResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ModifyHsmCommandOutput extends ModifyHsmResponse, __MetadataBearer {}
|
|
8
6
|
declare const ModifyHsmCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ModifyHsmCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ModifyHsmCommandInput,
|
|
11
11
|
ModifyHsmCommandOutput,
|
|
12
12
|
import("..").CloudHSMClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: ModifyHsmCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
ModifyHsmCommandInput,
|
|
18
20
|
ModifyHsmCommandOutput,
|
|
19
21
|
import("..").CloudHSMClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ModifyLunaClientRequest,
|
|
4
|
-
ModifyLunaClientResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ModifyLunaClientRequest, ModifyLunaClientResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ModifyLunaClientCommandInput extends ModifyLunaClientRequest {}
|
|
8
|
-
export interface ModifyLunaClientCommandOutput
|
|
9
|
-
extends ModifyLunaClientResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ModifyLunaClientCommandOutput extends ModifyLunaClientResponse, __MetadataBearer {}
|
|
11
6
|
declare const ModifyLunaClientCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ModifyLunaClientCommandInput
|
|
8
|
+
input: ModifyLunaClientCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ModifyLunaClientCommandInput,
|
|
16
11
|
ModifyLunaClientCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ModifyLunaClientCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ModifyLunaClientCommandInput
|
|
17
|
+
input: ModifyLunaClientCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ModifyLunaClientCommandInput,
|
|
25
20
|
ModifyLunaClientCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RemoveTagsFromResourceRequest,
|
|
4
|
-
RemoveTagsFromResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RemoveTagsFromResourceRequest, RemoveTagsFromResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface RemoveTagsFromResourceCommandInput
|
|
8
|
-
extends RemoveTagsFromResourceRequest {}
|
|
4
|
+
export interface RemoveTagsFromResourceCommandInput extends RemoveTagsFromResourceRequest {}
|
|
9
5
|
export interface RemoveTagsFromResourceCommandOutput
|
|
10
|
-
extends RemoveTagsFromResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends RemoveTagsFromResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const RemoveTagsFromResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: RemoveTagsFromResourceCommandInput
|
|
9
|
+
input: RemoveTagsFromResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
RemoveTagsFromResourceCommandInput,
|
|
17
12
|
RemoveTagsFromResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const RemoveTagsFromResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: RemoveTagsFromResourceCommandInput
|
|
18
|
+
input: RemoveTagsFromResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
RemoveTagsFromResourceCommandInput,
|
|
26
21
|
RemoveTagsFromResourceCommandOutput,
|
|
@@ -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: {
|
|
@@ -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 CloudHSMExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -6,15 +6,13 @@ export type ClientVersion = (typeof ClientVersion)[keyof typeof ClientVersion];
|
|
|
6
6
|
export declare const SubscriptionType: {
|
|
7
7
|
readonly PRODUCTION: "PRODUCTION";
|
|
8
8
|
};
|
|
9
|
-
export type SubscriptionType =
|
|
10
|
-
(typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
9
|
+
export type SubscriptionType = (typeof SubscriptionType)[keyof typeof SubscriptionType];
|
|
11
10
|
export declare const CloudHsmObjectState: {
|
|
12
11
|
readonly DEGRADED: "DEGRADED";
|
|
13
12
|
readonly READY: "READY";
|
|
14
13
|
readonly UPDATING: "UPDATING";
|
|
15
14
|
};
|
|
16
|
-
export type CloudHsmObjectState =
|
|
17
|
-
(typeof CloudHsmObjectState)[keyof typeof CloudHsmObjectState];
|
|
15
|
+
export type CloudHsmObjectState = (typeof CloudHsmObjectState)[keyof typeof CloudHsmObjectState];
|
|
18
16
|
export declare const HsmStatus: {
|
|
19
17
|
readonly DEGRADED: "DEGRADED";
|
|
20
18
|
readonly PENDING: "PENDING";
|
|
@@ -4,23 +4,17 @@ export declare class CloudHsmInternalException extends __BaseException {
|
|
|
4
4
|
readonly name: "CloudHsmInternalException";
|
|
5
5
|
readonly $fault: "server";
|
|
6
6
|
retryable?: boolean | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<CloudHsmInternalException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<CloudHsmInternalException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class CloudHsmServiceException extends __BaseException {
|
|
12
10
|
readonly name: "CloudHsmServiceException";
|
|
13
11
|
readonly $fault: "client";
|
|
14
12
|
retryable?: boolean | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<CloudHsmServiceException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class InvalidRequestException extends __BaseException {
|
|
20
16
|
readonly name: "InvalidRequestException";
|
|
21
17
|
readonly $fault: "client";
|
|
22
18
|
retryable?: boolean | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
25
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
26
20
|
}
|
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ClientVersion,
|
|
3
|
-
CloudHsmObjectState,
|
|
4
|
-
HsmStatus,
|
|
5
|
-
SubscriptionType,
|
|
6
|
-
} from "./enums";
|
|
1
|
+
import { ClientVersion, CloudHsmObjectState, HsmStatus, SubscriptionType } from "./enums";
|
|
7
2
|
export interface Tag {
|
|
8
3
|
Key: string | undefined;
|
|
9
4
|
Value: string | undefined;
|