@aws-sdk/client-acm 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ACM.d.ts +259 -80
- package/dist-types/ts3.4/ACMClient.d.ts +193 -88
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/ACMServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +487 -570
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +11 -7
- package/package.json +35 -35
|
@@ -1,17 +1,34 @@
|
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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 { 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 {
|
|
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 { 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
|
+
}
|