@aws-sdk/client-acm 3.169.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ACM.d.ts +274 -80
  3. package/dist-types/ts3.4/ACMClient.d.ts +218 -88
  4. package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +33 -17
  6. package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +37 -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 +8 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +631 -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 +66 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  33. package/dist-types/ts3.4/waiters/index.d.ts +1 -1
  34. package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +13 -7
  35. package/package.json +35 -35
@@ -1,88 +1,218 @@
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
+
141
+ sha256?: __HashConstructor;
142
+
143
+ urlParser?: __UrlParser;
144
+
145
+ bodyLengthChecker?: __BodyLengthCalculator;
146
+
147
+ streamCollector?: __StreamCollector;
148
+
149
+ base64Decoder?: __Decoder;
150
+
151
+ base64Encoder?: __Encoder;
152
+
153
+ utf8Decoder?: __Decoder;
154
+
155
+ utf8Encoder?: __Encoder;
156
+
157
+ runtime?: string;
158
+
159
+ disableHostPrefix?: boolean;
160
+
161
+ maxAttempts?: number | __Provider<number>;
162
+
163
+ retryMode?: string | __Provider<string>;
164
+
165
+ logger?: __Logger;
166
+
167
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
168
+
169
+ useFipsEndpoint?: boolean | __Provider<boolean>;
170
+
171
+ serviceId?: string;
172
+
173
+ region?: string | __Provider<string>;
174
+
175
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
176
+
177
+ regionInfoProvider?: RegionInfoProvider;
178
+
179
+ defaultUserAgentProvider?: Provider<__UserAgent>;
180
+
181
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
182
+ }
183
+ declare type ACMClientConfigType = Partial<
184
+ __SmithyConfiguration<__HttpHandlerOptions>
185
+ > &
186
+ ClientDefaults &
187
+ RegionInputConfig &
188
+ EndpointsInputConfig &
189
+ RetryInputConfig &
190
+ HostHeaderInputConfig &
191
+ AwsAuthInputConfig &
192
+ UserAgentInputConfig;
193
+
194
+ export interface ACMClientConfig extends ACMClientConfigType {}
195
+ declare type ACMClientResolvedConfigType =
196
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
197
+ Required<ClientDefaults> &
198
+ RegionResolvedConfig &
199
+ EndpointsResolvedConfig &
200
+ RetryResolvedConfig &
201
+ HostHeaderResolvedConfig &
202
+ AwsAuthResolvedConfig &
203
+ UserAgentResolvedConfig;
204
+
205
+ export interface ACMClientResolvedConfig extends ACMClientResolvedConfigType {}
206
+
207
+ export declare class ACMClient extends __Client<
208
+ __HttpHandlerOptions,
209
+ ServiceInputTypes,
210
+ ServiceOutputTypes,
211
+ ACMClientResolvedConfig
212
+ > {
213
+ readonly config: ACMClientResolvedConfig;
214
+ constructor(configuration: ACMClientConfig);
215
+
216
+ destroy(): void;
217
+ }
218
+ export {};
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { AddTagsToCertificateRequest } from "../models/models_0";
5
- export interface AddTagsToCertificateCommandInput extends AddTagsToCertificateRequest {
6
- }
7
- export interface AddTagsToCertificateCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class AddTagsToCertificateCommand extends $Command<AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: AddTagsToCertificateCommandInput;
12
- constructor(input: AddTagsToCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { AddTagsToCertificateRequest } from "../models/models_0";
14
+ export interface AddTagsToCertificateCommandInput
15
+ extends AddTagsToCertificateRequest {}
16
+ export interface AddTagsToCertificateCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class AddTagsToCertificateCommand extends $Command<
19
+ AddTagsToCertificateCommandInput,
20
+ AddTagsToCertificateCommandOutput,
21
+ ACMClientResolvedConfig
22
+ > {
23
+ readonly input: AddTagsToCertificateCommandInput;
24
+ constructor(input: AddTagsToCertificateCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: ACMClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ AddTagsToCertificateCommandInput,
32
+ AddTagsToCertificateCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,33 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { DeleteCertificateRequest } from "../models/models_0";
5
- export interface DeleteCertificateCommandInput extends DeleteCertificateRequest {
6
- }
7
- export interface DeleteCertificateCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteCertificateCommand extends $Command<DeleteCertificateCommandInput, DeleteCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: DeleteCertificateCommandInput;
12
- constructor(input: DeleteCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCertificateCommandInput, DeleteCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { DeleteCertificateRequest } from "../models/models_0";
14
+ export interface DeleteCertificateCommandInput
15
+ extends DeleteCertificateRequest {}
16
+ export interface DeleteCertificateCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class DeleteCertificateCommand extends $Command<
19
+ DeleteCertificateCommandInput,
20
+ DeleteCertificateCommandOutput,
21
+ ACMClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteCertificateCommandInput;
24
+ constructor(input: DeleteCertificateCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: ACMClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<DeleteCertificateCommandInput, DeleteCertificateCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { DescribeCertificateRequest, DescribeCertificateResponse } from "../models/models_0";
5
- export interface DescribeCertificateCommandInput extends DescribeCertificateRequest {
6
- }
7
- export interface DescribeCertificateCommandOutput extends DescribeCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeCertificateCommand extends $Command<DescribeCertificateCommandInput, DescribeCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: DescribeCertificateCommandInput;
12
- constructor(input: DescribeCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCertificateCommandInput, DescribeCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import {
14
+ DescribeCertificateRequest,
15
+ DescribeCertificateResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeCertificateCommandInput
18
+ extends DescribeCertificateRequest {}
19
+ export interface DescribeCertificateCommandOutput
20
+ extends DescribeCertificateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeCertificateCommand extends $Command<
24
+ DescribeCertificateCommandInput,
25
+ DescribeCertificateCommandOutput,
26
+ ACMClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeCertificateCommandInput;
29
+ constructor(input: DescribeCertificateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ACMClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeCertificateCommandInput, DescribeCertificateCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { ExportCertificateRequest, ExportCertificateResponse } from "../models/models_0";
5
- export interface ExportCertificateCommandInput extends ExportCertificateRequest {
6
- }
7
- export interface ExportCertificateCommandOutput extends ExportCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ExportCertificateCommand extends $Command<ExportCertificateCommandInput, ExportCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: ExportCertificateCommandInput;
12
- constructor(input: ExportCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportCertificateCommandInput, ExportCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import {
14
+ ExportCertificateRequest,
15
+ ExportCertificateResponse,
16
+ } from "../models/models_0";
17
+ export interface ExportCertificateCommandInput
18
+ extends ExportCertificateRequest {}
19
+ export interface ExportCertificateCommandOutput
20
+ extends ExportCertificateResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ExportCertificateCommand extends $Command<
24
+ ExportCertificateCommandInput,
25
+ ExportCertificateCommandOutput,
26
+ ACMClientResolvedConfig
27
+ > {
28
+ readonly input: ExportCertificateCommandInput;
29
+ constructor(input: ExportCertificateCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ACMClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ExportCertificateCommandInput, ExportCertificateCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { GetAccountConfigurationResponse } from "../models/models_0";
5
- export interface GetAccountConfigurationCommandInput {
6
- }
7
- export interface GetAccountConfigurationCommandOutput extends GetAccountConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAccountConfigurationCommand extends $Command<GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: GetAccountConfigurationCommandInput;
12
- constructor(input: GetAccountConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import { GetAccountConfigurationResponse } from "../models/models_0";
14
+ export interface GetAccountConfigurationCommandInput {}
15
+ export interface GetAccountConfigurationCommandOutput
16
+ extends GetAccountConfigurationResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetAccountConfigurationCommand extends $Command<
20
+ GetAccountConfigurationCommandInput,
21
+ GetAccountConfigurationCommandOutput,
22
+ ACMClientResolvedConfig
23
+ > {
24
+ readonly input: GetAccountConfigurationCommandInput;
25
+ constructor(input: GetAccountConfigurationCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ACMClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ GetAccountConfigurationCommandInput,
33
+ GetAccountConfigurationCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
- import { GetCertificateRequest, GetCertificateResponse } from "../models/models_0";
5
- export interface GetCertificateCommandInput extends GetCertificateRequest {
6
- }
7
- export interface GetCertificateCommandOutput extends GetCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetCertificateCommand extends $Command<GetCertificateCommandInput, GetCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: GetCertificateCommandInput;
12
- constructor(input: GetCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCertificateCommandInput, GetCertificateCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ACMClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ACMClient";
13
+ import {
14
+ GetCertificateRequest,
15
+ GetCertificateResponse,
16
+ } from "../models/models_0";
17
+ export interface GetCertificateCommandInput extends GetCertificateRequest {}
18
+ export interface GetCertificateCommandOutput
19
+ extends GetCertificateResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetCertificateCommand extends $Command<
23
+ GetCertificateCommandInput,
24
+ GetCertificateCommandOutput,
25
+ ACMClientResolvedConfig
26
+ > {
27
+ readonly input: GetCertificateCommandInput;
28
+ constructor(input: GetCertificateCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ACMClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetCertificateCommandInput, GetCertificateCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }