@aws-sdk/client-cloudhsm 3.168.0 → 3.170.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 +364 -105
- package/dist-types/ts3.4/CloudHSMClient.d.ts +249 -93
- package/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateHapgCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateLunaClientCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteHapgCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteLunaClientCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeHapgCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeLunaClientCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAvailableZonesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListHapgsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListHsmsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListLunaClientsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ModifyHapgCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ModifyHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ModifyLunaClientCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +41 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +478 -433
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +245 -62
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
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
|
+
|
|
19
|
+
export declare class ModifyHapgCommand extends $Command<
|
|
20
|
+
ModifyHapgCommandInput,
|
|
21
|
+
ModifyHapgCommandOutput,
|
|
22
|
+
CloudHSMClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ModifyHapgCommandInput;
|
|
25
|
+
constructor(input: ModifyHapgCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ModifyHapgCommandInput, ModifyHapgCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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
|
+
|
|
19
|
+
export declare class ModifyHsmCommand extends $Command<
|
|
20
|
+
ModifyHsmCommandInput,
|
|
21
|
+
ModifyHsmCommandOutput,
|
|
22
|
+
CloudHSMClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ModifyHsmCommandInput;
|
|
25
|
+
constructor(input: ModifyHsmCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ModifyHsmCommandInput, ModifyHsmCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
ModifyLunaClientRequest,
|
|
15
|
+
ModifyLunaClientResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ModifyLunaClientCommandInput extends ModifyLunaClientRequest {}
|
|
18
|
+
export interface ModifyLunaClientCommandOutput
|
|
19
|
+
extends ModifyLunaClientResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ModifyLunaClientCommand extends $Command<
|
|
23
|
+
ModifyLunaClientCommandInput,
|
|
24
|
+
ModifyLunaClientCommandOutput,
|
|
25
|
+
CloudHSMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ModifyLunaClientCommandInput;
|
|
28
|
+
constructor(input: ModifyLunaClientCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ModifyLunaClientCommandInput, ModifyLunaClientCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
RemoveTagsFromResourceRequest,
|
|
15
|
+
RemoveTagsFromResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface RemoveTagsFromResourceCommandInput
|
|
18
|
+
extends RemoveTagsFromResourceRequest {}
|
|
19
|
+
export interface RemoveTagsFromResourceCommandOutput
|
|
20
|
+
extends RemoveTagsFromResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class RemoveTagsFromResourceCommand extends $Command<
|
|
24
|
+
RemoveTagsFromResourceCommandInput,
|
|
25
|
+
RemoveTagsFromResourceCommandOutput,
|
|
26
|
+
CloudHSMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: RemoveTagsFromResourceCommandInput;
|
|
29
|
+
constructor(input: RemoveTagsFromResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudHSMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
RemoveTagsFromResourceCommandInput,
|
|
37
|
+
RemoveTagsFromResourceCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export * from "./AddTagsToResourceCommand";
|
|
2
|
-
export * from "./CreateHapgCommand";
|
|
3
|
-
export * from "./CreateHsmCommand";
|
|
4
|
-
export * from "./CreateLunaClientCommand";
|
|
5
|
-
export * from "./DeleteHapgCommand";
|
|
6
|
-
export * from "./DeleteHsmCommand";
|
|
7
|
-
export * from "./DeleteLunaClientCommand";
|
|
8
|
-
export * from "./DescribeHapgCommand";
|
|
9
|
-
export * from "./DescribeHsmCommand";
|
|
10
|
-
export * from "./DescribeLunaClientCommand";
|
|
11
|
-
export * from "./GetConfigCommand";
|
|
12
|
-
export * from "./ListAvailableZonesCommand";
|
|
13
|
-
export * from "./ListHapgsCommand";
|
|
14
|
-
export * from "./ListHsmsCommand";
|
|
15
|
-
export * from "./ListLunaClientsCommand";
|
|
16
|
-
export * from "./ListTagsForResourceCommand";
|
|
17
|
-
export * from "./ModifyHapgCommand";
|
|
18
|
-
export * from "./ModifyHsmCommand";
|
|
19
|
-
export * from "./ModifyLunaClientCommand";
|
|
20
|
-
export * from "./RemoveTagsFromResourceCommand";
|
|
1
|
+
export * from "./AddTagsToResourceCommand";
|
|
2
|
+
export * from "./CreateHapgCommand";
|
|
3
|
+
export * from "./CreateHsmCommand";
|
|
4
|
+
export * from "./CreateLunaClientCommand";
|
|
5
|
+
export * from "./DeleteHapgCommand";
|
|
6
|
+
export * from "./DeleteHsmCommand";
|
|
7
|
+
export * from "./DeleteLunaClientCommand";
|
|
8
|
+
export * from "./DescribeHapgCommand";
|
|
9
|
+
export * from "./DescribeHsmCommand";
|
|
10
|
+
export * from "./DescribeLunaClientCommand";
|
|
11
|
+
export * from "./GetConfigCommand";
|
|
12
|
+
export * from "./ListAvailableZonesCommand";
|
|
13
|
+
export * from "./ListHapgsCommand";
|
|
14
|
+
export * from "./ListHsmsCommand";
|
|
15
|
+
export * from "./ListLunaClientsCommand";
|
|
16
|
+
export * from "./ListTagsForResourceCommand";
|
|
17
|
+
export * from "./ModifyHapgCommand";
|
|
18
|
+
export * from "./ModifyHsmCommand";
|
|
19
|
+
export * from "./ModifyLunaClientCommand";
|
|
20
|
+
export * from "./RemoveTagsFromResourceCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./CloudHSM";
|
|
2
|
-
export * from "./CloudHSMClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { CloudHSMServiceException } from "./models/CloudHSMServiceException";
|
|
1
|
+
export * from "./CloudHSM";
|
|
2
|
+
export * from "./CloudHSMClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { CloudHSMServiceException } from "./models/CloudHSMServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class CloudHSMServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|