@aws-sdk/client-acm 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/ACM.d.ts +259 -80
- package/dist-types/ts3.4/ACMClient.d.ts +193 -88
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.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 +7 -7
- package/dist-types/ts3.4/models/ACMServiceException.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 +487 -570
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- 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/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +11 -7
- package/package.json +35 -35
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ACM } from "../ACM";
|
|
3
|
-
import { ACMClient } from "../ACMClient";
|
|
4
|
-
export interface ACMPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
|
|
6
|
-
}
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ACM } from "../ACM";
|
|
3
|
+
import { ACMClient } from "../ACMClient";
|
|
4
|
+
export interface ACMPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: ACM | ACMClient;
|
|
6
|
+
}
|
|
@@ -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
|
+
ListCertificatesCommandInput,
|
|
4
|
+
ListCertificatesCommandOutput,
|
|
5
|
+
} from "../commands/ListCertificatesCommand";
|
|
6
|
+
import { ACMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCertificates(
|
|
8
|
+
config: ACMPaginationConfiguration,
|
|
9
|
+
input: ListCertificatesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCertificatesCommandOutput>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListCertificatesPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListCertificatesPaginator";
|
|
@@ -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
|
+
AddTagsToCertificateCommandInput,
|
|
8
|
+
AddTagsToCertificateCommandOutput,
|
|
9
|
+
} from "../commands/AddTagsToCertificateCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteCertificateCommandInput,
|
|
12
|
+
DeleteCertificateCommandOutput,
|
|
13
|
+
} from "../commands/DeleteCertificateCommand";
|
|
14
|
+
import {
|
|
15
|
+
DescribeCertificateCommandInput,
|
|
16
|
+
DescribeCertificateCommandOutput,
|
|
17
|
+
} from "../commands/DescribeCertificateCommand";
|
|
18
|
+
import {
|
|
19
|
+
ExportCertificateCommandInput,
|
|
20
|
+
ExportCertificateCommandOutput,
|
|
21
|
+
} from "../commands/ExportCertificateCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetAccountConfigurationCommandInput,
|
|
24
|
+
GetAccountConfigurationCommandOutput,
|
|
25
|
+
} from "../commands/GetAccountConfigurationCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetCertificateCommandInput,
|
|
28
|
+
GetCertificateCommandOutput,
|
|
29
|
+
} from "../commands/GetCertificateCommand";
|
|
30
|
+
import {
|
|
31
|
+
ImportCertificateCommandInput,
|
|
32
|
+
ImportCertificateCommandOutput,
|
|
33
|
+
} from "../commands/ImportCertificateCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListCertificatesCommandInput,
|
|
36
|
+
ListCertificatesCommandOutput,
|
|
37
|
+
} from "../commands/ListCertificatesCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListTagsForCertificateCommandInput,
|
|
40
|
+
ListTagsForCertificateCommandOutput,
|
|
41
|
+
} from "../commands/ListTagsForCertificateCommand";
|
|
42
|
+
import {
|
|
43
|
+
PutAccountConfigurationCommandInput,
|
|
44
|
+
PutAccountConfigurationCommandOutput,
|
|
45
|
+
} from "../commands/PutAccountConfigurationCommand";
|
|
46
|
+
import {
|
|
47
|
+
RemoveTagsFromCertificateCommandInput,
|
|
48
|
+
RemoveTagsFromCertificateCommandOutput,
|
|
49
|
+
} from "../commands/RemoveTagsFromCertificateCommand";
|
|
50
|
+
import {
|
|
51
|
+
RenewCertificateCommandInput,
|
|
52
|
+
RenewCertificateCommandOutput,
|
|
53
|
+
} from "../commands/RenewCertificateCommand";
|
|
54
|
+
import {
|
|
55
|
+
RequestCertificateCommandInput,
|
|
56
|
+
RequestCertificateCommandOutput,
|
|
57
|
+
} from "../commands/RequestCertificateCommand";
|
|
58
|
+
import {
|
|
59
|
+
ResendValidationEmailCommandInput,
|
|
60
|
+
ResendValidationEmailCommandOutput,
|
|
61
|
+
} from "../commands/ResendValidationEmailCommand";
|
|
62
|
+
import {
|
|
63
|
+
UpdateCertificateOptionsCommandInput,
|
|
64
|
+
UpdateCertificateOptionsCommandOutput,
|
|
65
|
+
} from "../commands/UpdateCertificateOptionsCommand";
|
|
66
|
+
export declare const serializeAws_json1_1AddTagsToCertificateCommand: (
|
|
67
|
+
input: AddTagsToCertificateCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_json1_1DeleteCertificateCommand: (
|
|
71
|
+
input: DeleteCertificateCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_json1_1DescribeCertificateCommand: (
|
|
75
|
+
input: DescribeCertificateCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_json1_1ExportCertificateCommand: (
|
|
79
|
+
input: ExportCertificateCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_json1_1GetAccountConfigurationCommand: (
|
|
83
|
+
input: GetAccountConfigurationCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_json1_1GetCertificateCommand: (
|
|
87
|
+
input: GetCertificateCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_json1_1ImportCertificateCommand: (
|
|
91
|
+
input: ImportCertificateCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_json1_1ListCertificatesCommand: (
|
|
95
|
+
input: ListCertificatesCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_json1_1ListTagsForCertificateCommand: (
|
|
99
|
+
input: ListTagsForCertificateCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_json1_1PutAccountConfigurationCommand: (
|
|
103
|
+
input: PutAccountConfigurationCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_json1_1RemoveTagsFromCertificateCommand: (
|
|
107
|
+
input: RemoveTagsFromCertificateCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_1RenewCertificateCommand: (
|
|
111
|
+
input: RenewCertificateCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_1RequestCertificateCommand: (
|
|
115
|
+
input: RequestCertificateCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1ResendValidationEmailCommand: (
|
|
119
|
+
input: ResendValidationEmailCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_1UpdateCertificateOptionsCommand: (
|
|
123
|
+
input: UpdateCertificateOptionsCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const deserializeAws_json1_1AddTagsToCertificateCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<AddTagsToCertificateCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_json1_1DeleteCertificateCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<DeleteCertificateCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_json1_1DescribeCertificateCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<DescribeCertificateCommandOutput>;
|
|
138
|
+
export declare const deserializeAws_json1_1ExportCertificateCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<ExportCertificateCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_json1_1GetAccountConfigurationCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<GetAccountConfigurationCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_json1_1GetCertificateCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<GetCertificateCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_json1_1ImportCertificateCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<ImportCertificateCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_json1_1ListCertificatesCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<ListCertificatesCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_json1_1ListTagsForCertificateCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<ListTagsForCertificateCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_json1_1PutAccountConfigurationCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<PutAccountConfigurationCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_json1_1RemoveTagsFromCertificateCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<RemoveTagsFromCertificateCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_json1_1RenewCertificateCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<RenewCertificateCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_json1_1RequestCertificateCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<RequestCertificateCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_json1_1ResendValidationEmailCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<ResendValidationEmailCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_json1_1UpdateCertificateOptionsCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<UpdateCertificateOptionsCommandOutput>;
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ACMClientConfig } from "./ACMClient";
|
|
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 { ACMClientConfig } from "./ACMClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
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 { ACMClientConfig } from "./ACMClient";
|
|
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 { ACMClientConfig } from "./ACMClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
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
|
+
};
|
|
@@ -1,37 +1,66 @@
|
|
|
1
|
-
import { ACMClientConfig } from "./ACMClient";
|
|
2
|
-
|
|
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
|
-
|
|
1
|
+
import { ACMClientConfig } from "./ACMClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
5
|
+
requestHandler:
|
|
6
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
7
|
+
any,
|
|
8
|
+
any,
|
|
9
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
10
|
+
> &
|
|
11
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
12
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
13
|
+
apiVersion: string;
|
|
14
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
15
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
16
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
18
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
19
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
+
disableHostPrefix: boolean;
|
|
22
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
23
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
24
|
+
logger: import("@aws-sdk/types").Logger;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
29
|
+
credentialDefaultProvider: (
|
|
30
|
+
input: any
|
|
31
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
32
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
33
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
34
|
+
import("@aws-sdk/types").UserAgent
|
|
35
|
+
>;
|
|
36
|
+
defaultsMode:
|
|
37
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
38
|
+
| import("@aws-sdk/types").Provider<
|
|
39
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
40
|
+
>;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { ACMClientConfig } from "./ACMClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
};
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { ACMClientConfig } from "./ACMClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: ACMClientConfig) => {
|
|
4
|
+
apiVersion: string;
|
|
5
|
+
disableHostPrefix: boolean;
|
|
6
|
+
logger: __Logger;
|
|
7
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
8
|
+
serviceId: string;
|
|
9
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
10
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./waitForCertificateValidated";
|
|
1
|
+
export * from "./waitForCertificateValidated";
|