@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
@@ -1,17 +1,34 @@
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
+ export declare class AddTagsToCertificateCommand extends $Command<
18
+ AddTagsToCertificateCommandInput,
19
+ AddTagsToCertificateCommandOutput,
20
+ ACMClientResolvedConfig
21
+ > {
22
+ readonly input: AddTagsToCertificateCommandInput;
23
+ constructor(input: AddTagsToCertificateCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: ACMClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<
29
+ AddTagsToCertificateCommandInput,
30
+ AddTagsToCertificateCommandOutput
31
+ >;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,31 @@
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
+ export declare class DeleteCertificateCommand extends $Command<
18
+ DeleteCertificateCommandInput,
19
+ DeleteCertificateCommandOutput,
20
+ ACMClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteCertificateCommandInput;
23
+ constructor(input: DeleteCertificateCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: ACMClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<DeleteCertificateCommandInput, DeleteCertificateCommandOutput>;
29
+ private serialize;
30
+ private deserialize;
31
+ }
@@ -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 { 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
+ export declare class DescribeCertificateCommand extends $Command<
23
+ DescribeCertificateCommandInput,
24
+ DescribeCertificateCommandOutput,
25
+ ACMClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeCertificateCommandInput;
28
+ constructor(input: DescribeCertificateCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ACMClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeCertificateCommandInput, DescribeCertificateCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -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 { 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
+ export declare class ExportCertificateCommand extends $Command<
23
+ ExportCertificateCommandInput,
24
+ ExportCertificateCommandOutput,
25
+ ACMClientResolvedConfig
26
+ > {
27
+ readonly input: ExportCertificateCommandInput;
28
+ constructor(input: ExportCertificateCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ACMClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ExportCertificateCommandInput, ExportCertificateCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
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
+ export declare class GetAccountConfigurationCommand extends $Command<
19
+ GetAccountConfigurationCommandInput,
20
+ GetAccountConfigurationCommandOutput,
21
+ ACMClientResolvedConfig
22
+ > {
23
+ readonly input: GetAccountConfigurationCommandInput;
24
+ constructor(input: GetAccountConfigurationCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ACMClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<
30
+ GetAccountConfigurationCommandInput,
31
+ GetAccountConfigurationCommandOutput
32
+ >;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
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
+ export declare class GetCertificateCommand extends $Command<
22
+ GetCertificateCommandInput,
23
+ GetCertificateCommandOutput,
24
+ ACMClientResolvedConfig
25
+ > {
26
+ readonly input: GetCertificateCommandInput;
27
+ constructor(input: GetCertificateCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ACMClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetCertificateCommandInput, GetCertificateCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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 { ImportCertificateRequest, ImportCertificateResponse } from "../models/models_0";
5
- export interface ImportCertificateCommandInput extends ImportCertificateRequest {
6
- }
7
- export interface ImportCertificateCommandOutput extends ImportCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ImportCertificateCommand extends $Command<ImportCertificateCommandInput, ImportCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: ImportCertificateCommandInput;
12
- constructor(input: ImportCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportCertificateCommandInput, ImportCertificateCommandOutput>;
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
+ ImportCertificateRequest,
15
+ ImportCertificateResponse,
16
+ } from "../models/models_0";
17
+ export interface ImportCertificateCommandInput
18
+ extends ImportCertificateRequest {}
19
+ export interface ImportCertificateCommandOutput
20
+ extends ImportCertificateResponse,
21
+ __MetadataBearer {}
22
+ export declare class ImportCertificateCommand extends $Command<
23
+ ImportCertificateCommandInput,
24
+ ImportCertificateCommandOutput,
25
+ ACMClientResolvedConfig
26
+ > {
27
+ readonly input: ImportCertificateCommandInput;
28
+ constructor(input: ImportCertificateCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ACMClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ImportCertificateCommandInput, ImportCertificateCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
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 { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_0";
5
- export interface ListCertificatesCommandInput extends ListCertificatesRequest {
6
- }
7
- export interface ListCertificatesCommandOutput extends ListCertificatesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListCertificatesCommand extends $Command<ListCertificatesCommandInput, ListCertificatesCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: ListCertificatesCommandInput;
12
- constructor(input: ListCertificatesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCertificatesCommandInput, ListCertificatesCommandOutput>;
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
+ ListCertificatesRequest,
15
+ ListCertificatesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListCertificatesCommandInput extends ListCertificatesRequest {}
18
+ export interface ListCertificatesCommandOutput
19
+ extends ListCertificatesResponse,
20
+ __MetadataBearer {}
21
+ export declare class ListCertificatesCommand extends $Command<
22
+ ListCertificatesCommandInput,
23
+ ListCertificatesCommandOutput,
24
+ ACMClientResolvedConfig
25
+ > {
26
+ readonly input: ListCertificatesCommandInput;
27
+ constructor(input: ListCertificatesCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ACMClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListCertificatesCommandInput, ListCertificatesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
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 { ListTagsForCertificateRequest, ListTagsForCertificateResponse } from "../models/models_0";
5
- export interface ListTagsForCertificateCommandInput extends ListTagsForCertificateRequest {
6
- }
7
- export interface ListTagsForCertificateCommandOutput extends ListTagsForCertificateResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForCertificateCommand extends $Command<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: ListTagsForCertificateCommandInput;
12
- constructor(input: ListTagsForCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput>;
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
+ ListTagsForCertificateRequest,
15
+ ListTagsForCertificateResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForCertificateCommandInput
18
+ extends ListTagsForCertificateRequest {}
19
+ export interface ListTagsForCertificateCommandOutput
20
+ extends ListTagsForCertificateResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForCertificateCommand extends $Command<
23
+ ListTagsForCertificateCommandInput,
24
+ ListTagsForCertificateCommandOutput,
25
+ ACMClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForCertificateCommandInput;
28
+ constructor(input: ListTagsForCertificateCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ACMClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListTagsForCertificateCommandInput,
35
+ ListTagsForCertificateCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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 { PutAccountConfigurationRequest } from "../models/models_0";
5
- export interface PutAccountConfigurationCommandInput extends PutAccountConfigurationRequest {
6
- }
7
- export interface PutAccountConfigurationCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class PutAccountConfigurationCommand extends $Command<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: PutAccountConfigurationCommandInput;
12
- constructor(input: PutAccountConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput>;
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 { PutAccountConfigurationRequest } from "../models/models_0";
14
+ export interface PutAccountConfigurationCommandInput
15
+ extends PutAccountConfigurationRequest {}
16
+ export interface PutAccountConfigurationCommandOutput
17
+ extends __MetadataBearer {}
18
+ export declare class PutAccountConfigurationCommand extends $Command<
19
+ PutAccountConfigurationCommandInput,
20
+ PutAccountConfigurationCommandOutput,
21
+ ACMClientResolvedConfig
22
+ > {
23
+ readonly input: PutAccountConfigurationCommandInput;
24
+ constructor(input: PutAccountConfigurationCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ACMClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<
30
+ PutAccountConfigurationCommandInput,
31
+ PutAccountConfigurationCommandOutput
32
+ >;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
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 { RemoveTagsFromCertificateRequest } from "../models/models_0";
5
- export interface RemoveTagsFromCertificateCommandInput extends RemoveTagsFromCertificateRequest {
6
- }
7
- export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RemoveTagsFromCertificateCommand extends $Command<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: RemoveTagsFromCertificateCommandInput;
12
- constructor(input: RemoveTagsFromCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput>;
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 { RemoveTagsFromCertificateRequest } from "../models/models_0";
14
+ export interface RemoveTagsFromCertificateCommandInput
15
+ extends RemoveTagsFromCertificateRequest {}
16
+ export interface RemoveTagsFromCertificateCommandOutput
17
+ extends __MetadataBearer {}
18
+ export declare class RemoveTagsFromCertificateCommand extends $Command<
19
+ RemoveTagsFromCertificateCommandInput,
20
+ RemoveTagsFromCertificateCommandOutput,
21
+ ACMClientResolvedConfig
22
+ > {
23
+ readonly input: RemoveTagsFromCertificateCommandInput;
24
+ constructor(input: RemoveTagsFromCertificateCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ACMClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<
30
+ RemoveTagsFromCertificateCommandInput,
31
+ RemoveTagsFromCertificateCommandOutput
32
+ >;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,30 @@
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 { RenewCertificateRequest } from "../models/models_0";
5
- export interface RenewCertificateCommandInput extends RenewCertificateRequest {
6
- }
7
- export interface RenewCertificateCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RenewCertificateCommand extends $Command<RenewCertificateCommandInput, RenewCertificateCommandOutput, ACMClientResolvedConfig> {
11
- readonly input: RenewCertificateCommandInput;
12
- constructor(input: RenewCertificateCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RenewCertificateCommandInput, RenewCertificateCommandOutput>;
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 { RenewCertificateRequest } from "../models/models_0";
14
+ export interface RenewCertificateCommandInput extends RenewCertificateRequest {}
15
+ export interface RenewCertificateCommandOutput extends __MetadataBearer {}
16
+ export declare class RenewCertificateCommand extends $Command<
17
+ RenewCertificateCommandInput,
18
+ RenewCertificateCommandOutput,
19
+ ACMClientResolvedConfig
20
+ > {
21
+ readonly input: RenewCertificateCommandInput;
22
+ constructor(input: RenewCertificateCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: ACMClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<RenewCertificateCommandInput, RenewCertificateCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }