@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.
Files changed (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ACM.d.ts +259 -80
  3. package/dist-types/ts3.4/ACMClient.d.ts +193 -88
  4. package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +31 -17
  6. package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +30 -17
  16. package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +7 -7
  22. package/dist-types/ts3.4/models/ACMServiceException.d.ts +7 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +487 -570
  25. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  26. package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  28. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  33. package/dist-types/ts3.4/waiters/index.d.ts +1 -1
  34. package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +11 -7
  35. package/package.json +35 -35
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-acm
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-acm
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-acm
@@ -1,80 +1,259 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { ACMClient } from "./ACMClient";
3
- import { AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput } from "./commands/AddTagsToCertificateCommand";
4
- import { DeleteCertificateCommandInput, DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
5
- import { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "./commands/DescribeCertificateCommand";
6
- import { ExportCertificateCommandInput, ExportCertificateCommandOutput } from "./commands/ExportCertificateCommand";
7
- import { GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput } from "./commands/GetAccountConfigurationCommand";
8
- import { GetCertificateCommandInput, GetCertificateCommandOutput } from "./commands/GetCertificateCommand";
9
- import { ImportCertificateCommandInput, ImportCertificateCommandOutput } from "./commands/ImportCertificateCommand";
10
- import { ListCertificatesCommandInput, ListCertificatesCommandOutput } from "./commands/ListCertificatesCommand";
11
- import { ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput } from "./commands/ListTagsForCertificateCommand";
12
- import { PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput } from "./commands/PutAccountConfigurationCommand";
13
- import { RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput } from "./commands/RemoveTagsFromCertificateCommand";
14
- import { RenewCertificateCommandInput, RenewCertificateCommandOutput } from "./commands/RenewCertificateCommand";
15
- import { RequestCertificateCommandInput, RequestCertificateCommandOutput } from "./commands/RequestCertificateCommand";
16
- import { ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput } from "./commands/ResendValidationEmailCommand";
17
- import { UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput } from "./commands/UpdateCertificateOptionsCommand";
18
-
19
- export declare class ACM extends ACMClient {
20
-
21
- addTagsToCertificate(args: AddTagsToCertificateCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsToCertificateCommandOutput>;
22
- addTagsToCertificate(args: AddTagsToCertificateCommandInput, cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void): void;
23
- addTagsToCertificate(args: AddTagsToCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void): void;
24
-
25
- deleteCertificate(args: DeleteCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCertificateCommandOutput>;
26
- deleteCertificate(args: DeleteCertificateCommandInput, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
27
- deleteCertificate(args: DeleteCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
28
-
29
- describeCertificate(args: DescribeCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCertificateCommandOutput>;
30
- describeCertificate(args: DescribeCertificateCommandInput, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
31
- describeCertificate(args: DescribeCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
32
-
33
- exportCertificate(args: ExportCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ExportCertificateCommandOutput>;
34
- exportCertificate(args: ExportCertificateCommandInput, cb: (err: any, data?: ExportCertificateCommandOutput) => void): void;
35
- exportCertificate(args: ExportCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportCertificateCommandOutput) => void): void;
36
-
37
- getAccountConfiguration(args: GetAccountConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountConfigurationCommandOutput>;
38
- getAccountConfiguration(args: GetAccountConfigurationCommandInput, cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void): void;
39
- getAccountConfiguration(args: GetAccountConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void): void;
40
-
41
- getCertificate(args: GetCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetCertificateCommandOutput>;
42
- getCertificate(args: GetCertificateCommandInput, cb: (err: any, data?: GetCertificateCommandOutput) => void): void;
43
- getCertificate(args: GetCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCertificateCommandOutput) => void): void;
44
-
45
- importCertificate(args: ImportCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ImportCertificateCommandOutput>;
46
- importCertificate(args: ImportCertificateCommandInput, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
47
- importCertificate(args: ImportCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
48
-
49
- listCertificates(args: ListCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<ListCertificatesCommandOutput>;
50
- listCertificates(args: ListCertificatesCommandInput, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
51
- listCertificates(args: ListCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
52
-
53
- listTagsForCertificate(args: ListTagsForCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForCertificateCommandOutput>;
54
- listTagsForCertificate(args: ListTagsForCertificateCommandInput, cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void): void;
55
- listTagsForCertificate(args: ListTagsForCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void): void;
56
-
57
- putAccountConfiguration(args: PutAccountConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountConfigurationCommandOutput>;
58
- putAccountConfiguration(args: PutAccountConfigurationCommandInput, cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void): void;
59
- putAccountConfiguration(args: PutAccountConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void): void;
60
-
61
- removeTagsFromCertificate(args: RemoveTagsFromCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsFromCertificateCommandOutput>;
62
- removeTagsFromCertificate(args: RemoveTagsFromCertificateCommandInput, cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void): void;
63
- removeTagsFromCertificate(args: RemoveTagsFromCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void): void;
64
-
65
- renewCertificate(args: RenewCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RenewCertificateCommandOutput>;
66
- renewCertificate(args: RenewCertificateCommandInput, cb: (err: any, data?: RenewCertificateCommandOutput) => void): void;
67
- renewCertificate(args: RenewCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RenewCertificateCommandOutput) => void): void;
68
-
69
- requestCertificate(args: RequestCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RequestCertificateCommandOutput>;
70
- requestCertificate(args: RequestCertificateCommandInput, cb: (err: any, data?: RequestCertificateCommandOutput) => void): void;
71
- requestCertificate(args: RequestCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestCertificateCommandOutput) => void): void;
72
-
73
- resendValidationEmail(args: ResendValidationEmailCommandInput, options?: __HttpHandlerOptions): Promise<ResendValidationEmailCommandOutput>;
74
- resendValidationEmail(args: ResendValidationEmailCommandInput, cb: (err: any, data?: ResendValidationEmailCommandOutput) => void): void;
75
- resendValidationEmail(args: ResendValidationEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResendValidationEmailCommandOutput) => void): void;
76
-
77
- updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCertificateOptionsCommandOutput>;
78
- updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void): void;
79
- updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void): void;
80
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { ACMClient } from "./ACMClient";
3
+ import {
4
+ AddTagsToCertificateCommandInput,
5
+ AddTagsToCertificateCommandOutput,
6
+ } from "./commands/AddTagsToCertificateCommand";
7
+ import {
8
+ DeleteCertificateCommandInput,
9
+ DeleteCertificateCommandOutput,
10
+ } from "./commands/DeleteCertificateCommand";
11
+ import {
12
+ DescribeCertificateCommandInput,
13
+ DescribeCertificateCommandOutput,
14
+ } from "./commands/DescribeCertificateCommand";
15
+ import {
16
+ ExportCertificateCommandInput,
17
+ ExportCertificateCommandOutput,
18
+ } from "./commands/ExportCertificateCommand";
19
+ import {
20
+ GetAccountConfigurationCommandInput,
21
+ GetAccountConfigurationCommandOutput,
22
+ } from "./commands/GetAccountConfigurationCommand";
23
+ import {
24
+ GetCertificateCommandInput,
25
+ GetCertificateCommandOutput,
26
+ } from "./commands/GetCertificateCommand";
27
+ import {
28
+ ImportCertificateCommandInput,
29
+ ImportCertificateCommandOutput,
30
+ } from "./commands/ImportCertificateCommand";
31
+ import {
32
+ ListCertificatesCommandInput,
33
+ ListCertificatesCommandOutput,
34
+ } from "./commands/ListCertificatesCommand";
35
+ import {
36
+ ListTagsForCertificateCommandInput,
37
+ ListTagsForCertificateCommandOutput,
38
+ } from "./commands/ListTagsForCertificateCommand";
39
+ import {
40
+ PutAccountConfigurationCommandInput,
41
+ PutAccountConfigurationCommandOutput,
42
+ } from "./commands/PutAccountConfigurationCommand";
43
+ import {
44
+ RemoveTagsFromCertificateCommandInput,
45
+ RemoveTagsFromCertificateCommandOutput,
46
+ } from "./commands/RemoveTagsFromCertificateCommand";
47
+ import {
48
+ RenewCertificateCommandInput,
49
+ RenewCertificateCommandOutput,
50
+ } from "./commands/RenewCertificateCommand";
51
+ import {
52
+ RequestCertificateCommandInput,
53
+ RequestCertificateCommandOutput,
54
+ } from "./commands/RequestCertificateCommand";
55
+ import {
56
+ ResendValidationEmailCommandInput,
57
+ ResendValidationEmailCommandOutput,
58
+ } from "./commands/ResendValidationEmailCommand";
59
+ import {
60
+ UpdateCertificateOptionsCommandInput,
61
+ UpdateCertificateOptionsCommandOutput,
62
+ } from "./commands/UpdateCertificateOptionsCommand";
63
+ export declare class ACM extends ACMClient {
64
+ addTagsToCertificate(
65
+ args: AddTagsToCertificateCommandInput,
66
+ options?: __HttpHandlerOptions
67
+ ): Promise<AddTagsToCertificateCommandOutput>;
68
+ addTagsToCertificate(
69
+ args: AddTagsToCertificateCommandInput,
70
+ cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void
71
+ ): void;
72
+ addTagsToCertificate(
73
+ args: AddTagsToCertificateCommandInput,
74
+ options: __HttpHandlerOptions,
75
+ cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void
76
+ ): void;
77
+ deleteCertificate(
78
+ args: DeleteCertificateCommandInput,
79
+ options?: __HttpHandlerOptions
80
+ ): Promise<DeleteCertificateCommandOutput>;
81
+ deleteCertificate(
82
+ args: DeleteCertificateCommandInput,
83
+ cb: (err: any, data?: DeleteCertificateCommandOutput) => void
84
+ ): void;
85
+ deleteCertificate(
86
+ args: DeleteCertificateCommandInput,
87
+ options: __HttpHandlerOptions,
88
+ cb: (err: any, data?: DeleteCertificateCommandOutput) => void
89
+ ): void;
90
+ describeCertificate(
91
+ args: DescribeCertificateCommandInput,
92
+ options?: __HttpHandlerOptions
93
+ ): Promise<DescribeCertificateCommandOutput>;
94
+ describeCertificate(
95
+ args: DescribeCertificateCommandInput,
96
+ cb: (err: any, data?: DescribeCertificateCommandOutput) => void
97
+ ): void;
98
+ describeCertificate(
99
+ args: DescribeCertificateCommandInput,
100
+ options: __HttpHandlerOptions,
101
+ cb: (err: any, data?: DescribeCertificateCommandOutput) => void
102
+ ): void;
103
+ exportCertificate(
104
+ args: ExportCertificateCommandInput,
105
+ options?: __HttpHandlerOptions
106
+ ): Promise<ExportCertificateCommandOutput>;
107
+ exportCertificate(
108
+ args: ExportCertificateCommandInput,
109
+ cb: (err: any, data?: ExportCertificateCommandOutput) => void
110
+ ): void;
111
+ exportCertificate(
112
+ args: ExportCertificateCommandInput,
113
+ options: __HttpHandlerOptions,
114
+ cb: (err: any, data?: ExportCertificateCommandOutput) => void
115
+ ): void;
116
+ getAccountConfiguration(
117
+ args: GetAccountConfigurationCommandInput,
118
+ options?: __HttpHandlerOptions
119
+ ): Promise<GetAccountConfigurationCommandOutput>;
120
+ getAccountConfiguration(
121
+ args: GetAccountConfigurationCommandInput,
122
+ cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void
123
+ ): void;
124
+ getAccountConfiguration(
125
+ args: GetAccountConfigurationCommandInput,
126
+ options: __HttpHandlerOptions,
127
+ cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void
128
+ ): void;
129
+ getCertificate(
130
+ args: GetCertificateCommandInput,
131
+ options?: __HttpHandlerOptions
132
+ ): Promise<GetCertificateCommandOutput>;
133
+ getCertificate(
134
+ args: GetCertificateCommandInput,
135
+ cb: (err: any, data?: GetCertificateCommandOutput) => void
136
+ ): void;
137
+ getCertificate(
138
+ args: GetCertificateCommandInput,
139
+ options: __HttpHandlerOptions,
140
+ cb: (err: any, data?: GetCertificateCommandOutput) => void
141
+ ): void;
142
+ importCertificate(
143
+ args: ImportCertificateCommandInput,
144
+ options?: __HttpHandlerOptions
145
+ ): Promise<ImportCertificateCommandOutput>;
146
+ importCertificate(
147
+ args: ImportCertificateCommandInput,
148
+ cb: (err: any, data?: ImportCertificateCommandOutput) => void
149
+ ): void;
150
+ importCertificate(
151
+ args: ImportCertificateCommandInput,
152
+ options: __HttpHandlerOptions,
153
+ cb: (err: any, data?: ImportCertificateCommandOutput) => void
154
+ ): void;
155
+ listCertificates(
156
+ args: ListCertificatesCommandInput,
157
+ options?: __HttpHandlerOptions
158
+ ): Promise<ListCertificatesCommandOutput>;
159
+ listCertificates(
160
+ args: ListCertificatesCommandInput,
161
+ cb: (err: any, data?: ListCertificatesCommandOutput) => void
162
+ ): void;
163
+ listCertificates(
164
+ args: ListCertificatesCommandInput,
165
+ options: __HttpHandlerOptions,
166
+ cb: (err: any, data?: ListCertificatesCommandOutput) => void
167
+ ): void;
168
+ listTagsForCertificate(
169
+ args: ListTagsForCertificateCommandInput,
170
+ options?: __HttpHandlerOptions
171
+ ): Promise<ListTagsForCertificateCommandOutput>;
172
+ listTagsForCertificate(
173
+ args: ListTagsForCertificateCommandInput,
174
+ cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void
175
+ ): void;
176
+ listTagsForCertificate(
177
+ args: ListTagsForCertificateCommandInput,
178
+ options: __HttpHandlerOptions,
179
+ cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void
180
+ ): void;
181
+ putAccountConfiguration(
182
+ args: PutAccountConfigurationCommandInput,
183
+ options?: __HttpHandlerOptions
184
+ ): Promise<PutAccountConfigurationCommandOutput>;
185
+ putAccountConfiguration(
186
+ args: PutAccountConfigurationCommandInput,
187
+ cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void
188
+ ): void;
189
+ putAccountConfiguration(
190
+ args: PutAccountConfigurationCommandInput,
191
+ options: __HttpHandlerOptions,
192
+ cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void
193
+ ): void;
194
+ removeTagsFromCertificate(
195
+ args: RemoveTagsFromCertificateCommandInput,
196
+ options?: __HttpHandlerOptions
197
+ ): Promise<RemoveTagsFromCertificateCommandOutput>;
198
+ removeTagsFromCertificate(
199
+ args: RemoveTagsFromCertificateCommandInput,
200
+ cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void
201
+ ): void;
202
+ removeTagsFromCertificate(
203
+ args: RemoveTagsFromCertificateCommandInput,
204
+ options: __HttpHandlerOptions,
205
+ cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void
206
+ ): void;
207
+ renewCertificate(
208
+ args: RenewCertificateCommandInput,
209
+ options?: __HttpHandlerOptions
210
+ ): Promise<RenewCertificateCommandOutput>;
211
+ renewCertificate(
212
+ args: RenewCertificateCommandInput,
213
+ cb: (err: any, data?: RenewCertificateCommandOutput) => void
214
+ ): void;
215
+ renewCertificate(
216
+ args: RenewCertificateCommandInput,
217
+ options: __HttpHandlerOptions,
218
+ cb: (err: any, data?: RenewCertificateCommandOutput) => void
219
+ ): void;
220
+ requestCertificate(
221
+ args: RequestCertificateCommandInput,
222
+ options?: __HttpHandlerOptions
223
+ ): Promise<RequestCertificateCommandOutput>;
224
+ requestCertificate(
225
+ args: RequestCertificateCommandInput,
226
+ cb: (err: any, data?: RequestCertificateCommandOutput) => void
227
+ ): void;
228
+ requestCertificate(
229
+ args: RequestCertificateCommandInput,
230
+ options: __HttpHandlerOptions,
231
+ cb: (err: any, data?: RequestCertificateCommandOutput) => void
232
+ ): void;
233
+ resendValidationEmail(
234
+ args: ResendValidationEmailCommandInput,
235
+ options?: __HttpHandlerOptions
236
+ ): Promise<ResendValidationEmailCommandOutput>;
237
+ resendValidationEmail(
238
+ args: ResendValidationEmailCommandInput,
239
+ cb: (err: any, data?: ResendValidationEmailCommandOutput) => void
240
+ ): void;
241
+ resendValidationEmail(
242
+ args: ResendValidationEmailCommandInput,
243
+ options: __HttpHandlerOptions,
244
+ cb: (err: any, data?: ResendValidationEmailCommandOutput) => void
245
+ ): void;
246
+ updateCertificateOptions(
247
+ args: UpdateCertificateOptionsCommandInput,
248
+ options?: __HttpHandlerOptions
249
+ ): Promise<UpdateCertificateOptionsCommandOutput>;
250
+ updateCertificateOptions(
251
+ args: UpdateCertificateOptionsCommandInput,
252
+ cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void
253
+ ): void;
254
+ updateCertificateOptions(
255
+ args: UpdateCertificateOptionsCommandInput,
256
+ options: __HttpHandlerOptions,
257
+ cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void
258
+ ): void;
259
+ }
@@ -1,88 +1,193 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput } from "./commands/AddTagsToCertificateCommand";
10
- import { DeleteCertificateCommandInput, DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
11
- import { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "./commands/DescribeCertificateCommand";
12
- import { ExportCertificateCommandInput, ExportCertificateCommandOutput } from "./commands/ExportCertificateCommand";
13
- import { GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput } from "./commands/GetAccountConfigurationCommand";
14
- import { GetCertificateCommandInput, GetCertificateCommandOutput } from "./commands/GetCertificateCommand";
15
- import { ImportCertificateCommandInput, ImportCertificateCommandOutput } from "./commands/ImportCertificateCommand";
16
- import { ListCertificatesCommandInput, ListCertificatesCommandOutput } from "./commands/ListCertificatesCommand";
17
- import { ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput } from "./commands/ListTagsForCertificateCommand";
18
- import { PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput } from "./commands/PutAccountConfigurationCommand";
19
- import { RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput } from "./commands/RemoveTagsFromCertificateCommand";
20
- import { RenewCertificateCommandInput, RenewCertificateCommandOutput } from "./commands/RenewCertificateCommand";
21
- import { RequestCertificateCommandInput, RequestCertificateCommandOutput } from "./commands/RequestCertificateCommand";
22
- import { ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput } from "./commands/ResendValidationEmailCommand";
23
- import { UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput } from "./commands/UpdateCertificateOptionsCommand";
24
- export declare type ServiceInputTypes = AddTagsToCertificateCommandInput | DeleteCertificateCommandInput | DescribeCertificateCommandInput | ExportCertificateCommandInput | GetAccountConfigurationCommandInput | GetCertificateCommandInput | ImportCertificateCommandInput | ListCertificatesCommandInput | ListTagsForCertificateCommandInput | PutAccountConfigurationCommandInput | RemoveTagsFromCertificateCommandInput | RenewCertificateCommandInput | RequestCertificateCommandInput | ResendValidationEmailCommandInput | UpdateCertificateOptionsCommandInput;
25
- export declare type ServiceOutputTypes = AddTagsToCertificateCommandOutput | DeleteCertificateCommandOutput | DescribeCertificateCommandOutput | ExportCertificateCommandOutput | GetAccountConfigurationCommandOutput | GetCertificateCommandOutput | ImportCertificateCommandOutput | ListCertificatesCommandOutput | ListTagsForCertificateCommandOutput | PutAccountConfigurationCommandOutput | RemoveTagsFromCertificateCommandOutput | RenewCertificateCommandOutput | RequestCertificateCommandOutput | ResendValidationEmailCommandOutput | UpdateCertificateOptionsCommandOutput;
26
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
27
-
28
- requestHandler?: __HttpHandler;
29
-
30
- sha256?: __HashConstructor;
31
-
32
- urlParser?: __UrlParser;
33
-
34
- bodyLengthChecker?: __BodyLengthCalculator;
35
-
36
- streamCollector?: __StreamCollector;
37
-
38
- base64Decoder?: __Decoder;
39
-
40
- base64Encoder?: __Encoder;
41
-
42
- utf8Decoder?: __Decoder;
43
-
44
- utf8Encoder?: __Encoder;
45
-
46
- runtime?: string;
47
-
48
- disableHostPrefix?: boolean;
49
-
50
- maxAttempts?: number | __Provider<number>;
51
-
52
- retryMode?: string | __Provider<string>;
53
-
54
- logger?: __Logger;
55
-
56
- useDualstackEndpoint?: boolean | __Provider<boolean>;
57
-
58
- useFipsEndpoint?: boolean | __Provider<boolean>;
59
-
60
- serviceId?: string;
61
-
62
- region?: string | __Provider<string>;
63
-
64
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
65
-
66
- regionInfoProvider?: RegionInfoProvider;
67
-
68
- defaultUserAgentProvider?: Provider<__UserAgent>;
69
-
70
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
71
- }
72
- declare type ACMClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
73
-
74
- export interface ACMClientConfig extends ACMClientConfigType {
75
- }
76
- declare type ACMClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
77
-
78
- export interface ACMClientResolvedConfig extends ACMClientResolvedConfigType {
79
- }
80
-
81
- export declare class ACMClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ACMClientResolvedConfig> {
82
-
83
- readonly config: ACMClientResolvedConfig;
84
- constructor(configuration: ACMClientConfig);
85
-
86
- destroy(): void;
87
- }
88
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ AddTagsToCertificateCommandInput,
47
+ AddTagsToCertificateCommandOutput,
48
+ } from "./commands/AddTagsToCertificateCommand";
49
+ import {
50
+ DeleteCertificateCommandInput,
51
+ DeleteCertificateCommandOutput,
52
+ } from "./commands/DeleteCertificateCommand";
53
+ import {
54
+ DescribeCertificateCommandInput,
55
+ DescribeCertificateCommandOutput,
56
+ } from "./commands/DescribeCertificateCommand";
57
+ import {
58
+ ExportCertificateCommandInput,
59
+ ExportCertificateCommandOutput,
60
+ } from "./commands/ExportCertificateCommand";
61
+ import {
62
+ GetAccountConfigurationCommandInput,
63
+ GetAccountConfigurationCommandOutput,
64
+ } from "./commands/GetAccountConfigurationCommand";
65
+ import {
66
+ GetCertificateCommandInput,
67
+ GetCertificateCommandOutput,
68
+ } from "./commands/GetCertificateCommand";
69
+ import {
70
+ ImportCertificateCommandInput,
71
+ ImportCertificateCommandOutput,
72
+ } from "./commands/ImportCertificateCommand";
73
+ import {
74
+ ListCertificatesCommandInput,
75
+ ListCertificatesCommandOutput,
76
+ } from "./commands/ListCertificatesCommand";
77
+ import {
78
+ ListTagsForCertificateCommandInput,
79
+ ListTagsForCertificateCommandOutput,
80
+ } from "./commands/ListTagsForCertificateCommand";
81
+ import {
82
+ PutAccountConfigurationCommandInput,
83
+ PutAccountConfigurationCommandOutput,
84
+ } from "./commands/PutAccountConfigurationCommand";
85
+ import {
86
+ RemoveTagsFromCertificateCommandInput,
87
+ RemoveTagsFromCertificateCommandOutput,
88
+ } from "./commands/RemoveTagsFromCertificateCommand";
89
+ import {
90
+ RenewCertificateCommandInput,
91
+ RenewCertificateCommandOutput,
92
+ } from "./commands/RenewCertificateCommand";
93
+ import {
94
+ RequestCertificateCommandInput,
95
+ RequestCertificateCommandOutput,
96
+ } from "./commands/RequestCertificateCommand";
97
+ import {
98
+ ResendValidationEmailCommandInput,
99
+ ResendValidationEmailCommandOutput,
100
+ } from "./commands/ResendValidationEmailCommand";
101
+ import {
102
+ UpdateCertificateOptionsCommandInput,
103
+ UpdateCertificateOptionsCommandOutput,
104
+ } from "./commands/UpdateCertificateOptionsCommand";
105
+ export declare type ServiceInputTypes =
106
+ | AddTagsToCertificateCommandInput
107
+ | DeleteCertificateCommandInput
108
+ | DescribeCertificateCommandInput
109
+ | ExportCertificateCommandInput
110
+ | GetAccountConfigurationCommandInput
111
+ | GetCertificateCommandInput
112
+ | ImportCertificateCommandInput
113
+ | ListCertificatesCommandInput
114
+ | ListTagsForCertificateCommandInput
115
+ | PutAccountConfigurationCommandInput
116
+ | RemoveTagsFromCertificateCommandInput
117
+ | RenewCertificateCommandInput
118
+ | RequestCertificateCommandInput
119
+ | ResendValidationEmailCommandInput
120
+ | UpdateCertificateOptionsCommandInput;
121
+ export declare type ServiceOutputTypes =
122
+ | AddTagsToCertificateCommandOutput
123
+ | DeleteCertificateCommandOutput
124
+ | DescribeCertificateCommandOutput
125
+ | ExportCertificateCommandOutput
126
+ | GetAccountConfigurationCommandOutput
127
+ | GetCertificateCommandOutput
128
+ | ImportCertificateCommandOutput
129
+ | ListCertificatesCommandOutput
130
+ | ListTagsForCertificateCommandOutput
131
+ | PutAccountConfigurationCommandOutput
132
+ | RemoveTagsFromCertificateCommandOutput
133
+ | RenewCertificateCommandOutput
134
+ | RequestCertificateCommandOutput
135
+ | ResendValidationEmailCommandOutput
136
+ | UpdateCertificateOptionsCommandOutput;
137
+ export interface ClientDefaults
138
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
139
+ requestHandler?: __HttpHandler;
140
+ sha256?: __HashConstructor;
141
+ urlParser?: __UrlParser;
142
+ bodyLengthChecker?: __BodyLengthCalculator;
143
+ streamCollector?: __StreamCollector;
144
+ base64Decoder?: __Decoder;
145
+ base64Encoder?: __Encoder;
146
+ utf8Decoder?: __Decoder;
147
+ utf8Encoder?: __Encoder;
148
+ runtime?: string;
149
+ disableHostPrefix?: boolean;
150
+ maxAttempts?: number | __Provider<number>;
151
+ retryMode?: string | __Provider<string>;
152
+ logger?: __Logger;
153
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
154
+ useFipsEndpoint?: boolean | __Provider<boolean>;
155
+ serviceId?: string;
156
+ region?: string | __Provider<string>;
157
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
158
+ regionInfoProvider?: RegionInfoProvider;
159
+ defaultUserAgentProvider?: Provider<__UserAgent>;
160
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
161
+ }
162
+ declare type ACMClientConfigType = Partial<
163
+ __SmithyConfiguration<__HttpHandlerOptions>
164
+ > &
165
+ ClientDefaults &
166
+ RegionInputConfig &
167
+ EndpointsInputConfig &
168
+ RetryInputConfig &
169
+ HostHeaderInputConfig &
170
+ AwsAuthInputConfig &
171
+ UserAgentInputConfig;
172
+ export interface ACMClientConfig extends ACMClientConfigType {}
173
+ declare type ACMClientResolvedConfigType =
174
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
175
+ Required<ClientDefaults> &
176
+ RegionResolvedConfig &
177
+ EndpointsResolvedConfig &
178
+ RetryResolvedConfig &
179
+ HostHeaderResolvedConfig &
180
+ AwsAuthResolvedConfig &
181
+ UserAgentResolvedConfig;
182
+ export interface ACMClientResolvedConfig extends ACMClientResolvedConfigType {}
183
+ export declare class ACMClient extends __Client<
184
+ __HttpHandlerOptions,
185
+ ServiceInputTypes,
186
+ ServiceOutputTypes,
187
+ ACMClientResolvedConfig
188
+ > {
189
+ readonly config: ACMClientResolvedConfig;
190
+ constructor(configuration: ACMClientConfig);
191
+ destroy(): void;
192
+ }
193
+ export {};