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