@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ACM.d.ts +274 -80
- package/dist-types/ts3.4/ACMClient.d.ts +218 -88
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +37 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +631 -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 +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +13 -7
- package/package.json +35 -35
|
@@ -1,88 +1,218 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
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
|
+
}
|