@aws-sdk/client-cloudhsm 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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/CloudHSM.d.ts +344 -105
- package/dist-types/ts3.4/CloudHSMClient.d.ts +224 -93
- package/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateHapgCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateLunaClientCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteHapgCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteLunaClientCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeHapgCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeHsmCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeLunaClientCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListAvailableZonesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListHapgsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListHsmsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListLunaClientsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ModifyHapgCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ModifyHsmCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ModifyLunaClientCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/CloudHSMServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +349 -433
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +245 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteLunaClientRequest,
|
|
15
|
+
DeleteLunaClientResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteLunaClientCommandInput extends DeleteLunaClientRequest {}
|
|
18
|
+
export interface DeleteLunaClientCommandOutput
|
|
19
|
+
extends DeleteLunaClientResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DeleteLunaClientCommand extends $Command<
|
|
22
|
+
DeleteLunaClientCommandInput,
|
|
23
|
+
DeleteLunaClientCommandOutput,
|
|
24
|
+
CloudHSMClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DeleteLunaClientCommandInput;
|
|
27
|
+
constructor(input: DeleteLunaClientCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteLunaClientCommandInput, DeleteLunaClientCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import { DescribeHapgRequest, DescribeHapgResponse } from "../models/models_0";
|
|
14
|
+
export interface DescribeHapgCommandInput extends DescribeHapgRequest {}
|
|
15
|
+
export interface DescribeHapgCommandOutput
|
|
16
|
+
extends DescribeHapgResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DescribeHapgCommand extends $Command<
|
|
19
|
+
DescribeHapgCommandInput,
|
|
20
|
+
DescribeHapgCommandOutput,
|
|
21
|
+
CloudHSMClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DescribeHapgCommandInput;
|
|
24
|
+
constructor(input: DescribeHapgCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DescribeHapgCommandInput, DescribeHapgCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import { DescribeHsmRequest, DescribeHsmResponse } from "../models/models_0";
|
|
14
|
+
export interface DescribeHsmCommandInput extends DescribeHsmRequest {}
|
|
15
|
+
export interface DescribeHsmCommandOutput
|
|
16
|
+
extends DescribeHsmResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DescribeHsmCommand extends $Command<
|
|
19
|
+
DescribeHsmCommandInput,
|
|
20
|
+
DescribeHsmCommandOutput,
|
|
21
|
+
CloudHSMClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DescribeHsmCommandInput;
|
|
24
|
+
constructor(input: DescribeHsmCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DescribeHsmCommandInput, DescribeHsmCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeLunaClientRequest,
|
|
15
|
+
DescribeLunaClientResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLunaClientCommandInput
|
|
18
|
+
extends DescribeLunaClientRequest {}
|
|
19
|
+
export interface DescribeLunaClientCommandOutput
|
|
20
|
+
extends DescribeLunaClientResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeLunaClientCommand extends $Command<
|
|
23
|
+
DescribeLunaClientCommandInput,
|
|
24
|
+
DescribeLunaClientCommandOutput,
|
|
25
|
+
CloudHSMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeLunaClientCommandInput;
|
|
28
|
+
constructor(input: DescribeLunaClientCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeLunaClientCommandInput, DescribeLunaClientCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import { GetConfigRequest, GetConfigResponse } from "../models/models_0";
|
|
14
|
+
export interface GetConfigCommandInput extends GetConfigRequest {}
|
|
15
|
+
export interface GetConfigCommandOutput
|
|
16
|
+
extends GetConfigResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetConfigCommand extends $Command<
|
|
19
|
+
GetConfigCommandInput,
|
|
20
|
+
GetConfigCommandOutput,
|
|
21
|
+
CloudHSMClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetConfigCommandInput;
|
|
24
|
+
constructor(input: GetConfigCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetConfigCommandInput, GetConfigCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAvailableZonesRequest,
|
|
15
|
+
ListAvailableZonesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAvailableZonesCommandInput
|
|
18
|
+
extends ListAvailableZonesRequest {}
|
|
19
|
+
export interface ListAvailableZonesCommandOutput
|
|
20
|
+
extends ListAvailableZonesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListAvailableZonesCommand extends $Command<
|
|
23
|
+
ListAvailableZonesCommandInput,
|
|
24
|
+
ListAvailableZonesCommandOutput,
|
|
25
|
+
CloudHSMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAvailableZonesCommandInput;
|
|
28
|
+
constructor(input: ListAvailableZonesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListAvailableZonesCommandInput, ListAvailableZonesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import { ListHapgsRequest, ListHapgsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListHapgsCommandInput extends ListHapgsRequest {}
|
|
15
|
+
export interface ListHapgsCommandOutput
|
|
16
|
+
extends ListHapgsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListHapgsCommand extends $Command<
|
|
19
|
+
ListHapgsCommandInput,
|
|
20
|
+
ListHapgsCommandOutput,
|
|
21
|
+
CloudHSMClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListHapgsCommandInput;
|
|
24
|
+
constructor(input: ListHapgsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListHapgsCommandInput, ListHapgsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import { ListHsmsRequest, ListHsmsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListHsmsCommandInput extends ListHsmsRequest {}
|
|
15
|
+
export interface ListHsmsCommandOutput
|
|
16
|
+
extends ListHsmsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListHsmsCommand extends $Command<
|
|
19
|
+
ListHsmsCommandInput,
|
|
20
|
+
ListHsmsCommandOutput,
|
|
21
|
+
CloudHSMClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListHsmsCommandInput;
|
|
24
|
+
constructor(input: ListHsmsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListHsmsCommandInput, ListHsmsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import {
|
|
14
|
+
ListLunaClientsRequest,
|
|
15
|
+
ListLunaClientsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListLunaClientsCommandInput extends ListLunaClientsRequest {}
|
|
18
|
+
export interface ListLunaClientsCommandOutput
|
|
19
|
+
extends ListLunaClientsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListLunaClientsCommand extends $Command<
|
|
22
|
+
ListLunaClientsCommandInput,
|
|
23
|
+
ListLunaClientsCommandOutput,
|
|
24
|
+
CloudHSMClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListLunaClientsCommandInput;
|
|
27
|
+
constructor(input: ListLunaClientsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListLunaClientsCommandInput, ListLunaClientsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
CloudHSMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import { ModifyHapgRequest, ModifyHapgResponse } from "../models/models_0";
|
|
14
|
+
export interface ModifyHapgCommandInput extends ModifyHapgRequest {}
|
|
15
|
+
export interface ModifyHapgCommandOutput
|
|
16
|
+
extends ModifyHapgResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ModifyHapgCommand extends $Command<
|
|
19
|
+
ModifyHapgCommandInput,
|
|
20
|
+
ModifyHapgCommandOutput,
|
|
21
|
+
CloudHSMClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ModifyHapgCommandInput;
|
|
24
|
+
constructor(input: ModifyHapgCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ModifyHapgCommandInput, ModifyHapgCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudHSMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMClient";
|
|
13
|
+
import { ModifyHsmRequest, ModifyHsmResponse } from "../models/models_0";
|
|
14
|
+
export interface ModifyHsmCommandInput extends ModifyHsmRequest {}
|
|
15
|
+
export interface ModifyHsmCommandOutput
|
|
16
|
+
extends ModifyHsmResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ModifyHsmCommand extends $Command<
|
|
19
|
+
ModifyHsmCommandInput,
|
|
20
|
+
ModifyHsmCommandOutput,
|
|
21
|
+
CloudHSMClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ModifyHsmCommandInput;
|
|
24
|
+
constructor(input: ModifyHsmCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ModifyHsmCommandInput, ModifyHsmCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|