@aws-sdk/client-cloudhsm-v2 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/CloudHSMV2.d.ts +259 -80
- package/dist-types/ts3.4/CloudHSMV2Client.d.ts +194 -88
- package/dist-types/ts3.4/commands/CopyBackupToRegionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/InitializeClusterCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ModifyBackupAttributesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ModifyClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RestoreBackupCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/CloudHSMV2ServiceException.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 +365 -441
- package/dist-types/ts3.4/pagination/DescribeBackupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeClustersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
- 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,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeBackupsCommandInput,
|
|
4
|
+
DescribeBackupsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeBackupsCommand";
|
|
6
|
+
import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeBackups(
|
|
8
|
+
config: CloudHSMV2PaginationConfiguration,
|
|
9
|
+
input: DescribeBackupsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeBackupsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeClustersCommandInput,
|
|
4
|
+
DescribeClustersCommandOutput,
|
|
5
|
+
} from "../commands/DescribeClustersCommand";
|
|
6
|
+
import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeClusters(
|
|
8
|
+
config: CloudHSMV2PaginationConfiguration,
|
|
9
|
+
input: DescribeClustersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeClustersCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { CloudHSMV2 } from "../CloudHSMV2";
|
|
3
|
-
import { CloudHSMV2Client } from "../CloudHSMV2Client";
|
|
4
|
-
export interface CloudHSMV2PaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { CloudHSMV2 } from "../CloudHSMV2";
|
|
3
|
+
import { CloudHSMV2Client } from "../CloudHSMV2Client";
|
|
4
|
+
export interface CloudHSMV2PaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: CloudHSMV2 | CloudHSMV2Client;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTagsCommandInput,
|
|
4
|
+
ListTagsCommandOutput,
|
|
5
|
+
} from "../commands/ListTagsCommand";
|
|
6
|
+
import { CloudHSMV2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListTags(
|
|
8
|
+
config: CloudHSMV2PaginationConfiguration,
|
|
9
|
+
input: ListTagsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListTagsCommandOutput>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./DescribeBackupsPaginator";
|
|
2
|
-
export * from "./DescribeClustersPaginator";
|
|
3
|
-
export * from "./Interfaces";
|
|
4
|
-
export * from "./ListTagsPaginator";
|
|
1
|
+
export * from "./DescribeBackupsPaginator";
|
|
2
|
+
export * from "./DescribeClustersPaginator";
|
|
3
|
+
export * from "./Interfaces";
|
|
4
|
+
export * from "./ListTagsPaginator";
|
|
@@ -1,47 +1,185 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CopyBackupToRegionCommandInput,
|
|
8
|
+
CopyBackupToRegionCommandOutput,
|
|
9
|
+
} from "../commands/CopyBackupToRegionCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateClusterCommandInput,
|
|
12
|
+
CreateClusterCommandOutput,
|
|
13
|
+
} from "../commands/CreateClusterCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateHsmCommandInput,
|
|
16
|
+
CreateHsmCommandOutput,
|
|
17
|
+
} from "../commands/CreateHsmCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteBackupCommandInput,
|
|
20
|
+
DeleteBackupCommandOutput,
|
|
21
|
+
} from "../commands/DeleteBackupCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteClusterCommandInput,
|
|
24
|
+
DeleteClusterCommandOutput,
|
|
25
|
+
} from "../commands/DeleteClusterCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteHsmCommandInput,
|
|
28
|
+
DeleteHsmCommandOutput,
|
|
29
|
+
} from "../commands/DeleteHsmCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeBackupsCommandInput,
|
|
32
|
+
DescribeBackupsCommandOutput,
|
|
33
|
+
} from "../commands/DescribeBackupsCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeClustersCommandInput,
|
|
36
|
+
DescribeClustersCommandOutput,
|
|
37
|
+
} from "../commands/DescribeClustersCommand";
|
|
38
|
+
import {
|
|
39
|
+
InitializeClusterCommandInput,
|
|
40
|
+
InitializeClusterCommandOutput,
|
|
41
|
+
} from "../commands/InitializeClusterCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTagsCommandInput,
|
|
44
|
+
ListTagsCommandOutput,
|
|
45
|
+
} from "../commands/ListTagsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ModifyBackupAttributesCommandInput,
|
|
48
|
+
ModifyBackupAttributesCommandOutput,
|
|
49
|
+
} from "../commands/ModifyBackupAttributesCommand";
|
|
50
|
+
import {
|
|
51
|
+
ModifyClusterCommandInput,
|
|
52
|
+
ModifyClusterCommandOutput,
|
|
53
|
+
} from "../commands/ModifyClusterCommand";
|
|
54
|
+
import {
|
|
55
|
+
RestoreBackupCommandInput,
|
|
56
|
+
RestoreBackupCommandOutput,
|
|
57
|
+
} from "../commands/RestoreBackupCommand";
|
|
58
|
+
import {
|
|
59
|
+
TagResourceCommandInput,
|
|
60
|
+
TagResourceCommandOutput,
|
|
61
|
+
} from "../commands/TagResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UntagResourceCommandInput,
|
|
64
|
+
UntagResourceCommandOutput,
|
|
65
|
+
} from "../commands/UntagResourceCommand";
|
|
66
|
+
export declare const serializeAws_json1_1CopyBackupToRegionCommand: (
|
|
67
|
+
input: CopyBackupToRegionCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_json1_1CreateClusterCommand: (
|
|
71
|
+
input: CreateClusterCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_json1_1CreateHsmCommand: (
|
|
75
|
+
input: CreateHsmCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_json1_1DeleteBackupCommand: (
|
|
79
|
+
input: DeleteBackupCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_json1_1DeleteClusterCommand: (
|
|
83
|
+
input: DeleteClusterCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_json1_1DeleteHsmCommand: (
|
|
87
|
+
input: DeleteHsmCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_json1_1DescribeBackupsCommand: (
|
|
91
|
+
input: DescribeBackupsCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_json1_1DescribeClustersCommand: (
|
|
95
|
+
input: DescribeClustersCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_json1_1InitializeClusterCommand: (
|
|
99
|
+
input: InitializeClusterCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_json1_1ListTagsCommand: (
|
|
103
|
+
input: ListTagsCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_json1_1ModifyBackupAttributesCommand: (
|
|
107
|
+
input: ModifyBackupAttributesCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_1ModifyClusterCommand: (
|
|
111
|
+
input: ModifyClusterCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_1RestoreBackupCommand: (
|
|
115
|
+
input: RestoreBackupCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1TagResourceCommand: (
|
|
119
|
+
input: TagResourceCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_1UntagResourceCommand: (
|
|
123
|
+
input: UntagResourceCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const deserializeAws_json1_1CopyBackupToRegionCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<CopyBackupToRegionCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_json1_1CreateClusterCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<CreateClusterCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_json1_1CreateHsmCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<CreateHsmCommandOutput>;
|
|
138
|
+
export declare const deserializeAws_json1_1DeleteBackupCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<DeleteBackupCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_json1_1DeleteClusterCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<DeleteClusterCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_json1_1DeleteHsmCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<DeleteHsmCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_json1_1DescribeBackupsCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<DescribeBackupsCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_json1_1DescribeClustersCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<DescribeClustersCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_json1_1InitializeClusterCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<InitializeClusterCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_json1_1ListTagsCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<ListTagsCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_json1_1ModifyBackupAttributesCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<ModifyBackupAttributesCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_json1_1ModifyClusterCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<ModifyClusterCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_json1_1RestoreBackupCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<RestoreBackupCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_json1_1TagResourceCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<TagResourceCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_json1_1UntagResourceCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client";
|
|
3
|
+
export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client";
|
|
3
|
+
export declare const getRuntimeConfig: (config: CloudHSMV2ClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|