@aws-sdk/client-acm 3.1076.0 → 3.1078.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/README.md +161 -7
- package/dist-cjs/index.js +1058 -262
- package/dist-es/ACM.js +60 -0
- package/dist-es/commandBuilder.js +11 -0
- package/dist-es/commands/AddTagsToCertificateCommand.js +2 -14
- package/dist-es/commands/CreateAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/CreateAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/DeleteAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/DeleteCertificateCommand.js +2 -14
- package/dist-es/commands/DescribeAcmeAccountCommand.js +4 -0
- package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/DescribeAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/DescribeCertificateCommand.js +2 -14
- package/dist-es/commands/ExportCertificateCommand.js +2 -14
- package/dist-es/commands/GetAccountConfigurationCommand.js +2 -14
- package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +4 -0
- package/dist-es/commands/GetCertificateCommand.js +2 -14
- package/dist-es/commands/ImportCertificateCommand.js +2 -14
- package/dist-es/commands/ListAcmeAccountsCommand.js +4 -0
- package/dist-es/commands/ListAcmeDomainValidationsCommand.js +4 -0
- package/dist-es/commands/ListAcmeEndpointsCommand.js +4 -0
- package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +4 -0
- package/dist-es/commands/ListCertificatesCommand.js +2 -14
- package/dist-es/commands/ListTagsForCertificateCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +4 -0
- package/dist-es/commands/PutAccountConfigurationCommand.js +2 -14
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -14
- package/dist-es/commands/RenewCertificateCommand.js +2 -14
- package/dist-es/commands/RequestCertificateCommand.js +2 -14
- package/dist-es/commands/ResendValidationEmailCommand.js +2 -14
- package/dist-es/commands/RevokeAcmeAccountCommand.js +4 -0
- package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/RevokeCertificateCommand.js +2 -14
- package/dist-es/commands/SearchCertificatesCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +4 -0
- package/dist-es/commands/UntagResourceCommand.js +4 -0
- package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/UpdateAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -14
- package/dist-es/commands/index.js +22 -0
- package/dist-es/endpoint/EndpointParameters.js +4 -1
- package/dist-es/endpoint/bdd.js +27 -35
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +60 -0
- package/dist-es/models/errors.js +37 -12
- package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +512 -39
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
- package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
- package/dist-types/ACM.d.ts +208 -0
- package/dist-types/ACMClient.d.ts +24 -2
- package/dist-types/commandBuilder.d.ts +22 -0
- package/dist-types/commands/AddTagsToCertificateCommand.d.ts +7 -9
- package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +110 -0
- package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +110 -0
- package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +113 -0
- package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +84 -0
- package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +84 -0
- package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +81 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +7 -9
- package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +96 -0
- package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +113 -0
- package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +108 -0
- package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +95 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +9 -8
- package/dist-types/commands/ExportCertificateCommand.d.ts +6 -8
- package/dist-types/commands/GetAccountConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +87 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +6 -8
- package/dist-types/commands/ImportCertificateCommand.d.ts +6 -8
- package/dist-types/commands/ListAcmeAccountsCommand.d.ts +100 -0
- package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +118 -0
- package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +109 -0
- package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +100 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +8 -9
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +7 -9
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +82 -0
- package/dist-types/commands/PutAccountConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +7 -9
- package/dist-types/commands/RenewCertificateCommand.d.ts +6 -8
- package/dist-types/commands/RequestCertificateCommand.d.ts +3 -8
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +6 -8
- package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +88 -0
- package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +87 -0
- package/dist-types/commands/RevokeCertificateCommand.d.ts +6 -8
- package/dist-types/commands/SearchCertificatesCommand.d.ts +13 -9
- package/dist-types/commands/TagResourceCommand.d.ts +84 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +78 -0
- package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +97 -0
- package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +96 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +6 -8
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +148 -0
- package/dist-types/models/errors.d.ts +37 -12
- package/dist-types/models/models_0.d.ts +1284 -67
- package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +5 -1
- package/dist-types/runtimeConfig.d.ts +5 -1
- package/dist-types/runtimeConfig.native.d.ts +5 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/ACM.d.ts +452 -0
- package/dist-types/ts3.4/ACMClient.d.ts +132 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +47 -0
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SearchCertificatesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +80 -0
- package/dist-types/ts3.4/models/errors.d.ts +22 -7
- package/dist-types/ts3.4/models/models_0.d.ts +395 -5
- package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
- package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
- package/package.json +8 -10
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ACMClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ACMClient";
|
|
8
2
|
import {
|
|
9
3
|
ListTagsForCertificateRequest,
|
|
10
4
|
ListTagsForCertificateResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListTagsForCertificateCommandInput
|
|
15
8
|
extends ListTagsForCertificateRequest {}
|
|
16
9
|
export interface ListTagsForCertificateCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListTagsForCertificateCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListTagsForCertificateCommandInput,
|
|
24
17
|
ListTagsForCertificateCommandOutput,
|
|
25
|
-
ACMClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ACMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListTagsForCertificateCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListTagsForCertificateCommandInput,
|
|
33
26
|
ListTagsForCertificateCommandOutput,
|
|
34
|
-
ACMClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ACMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListTagsForCertificateCommand extends ListTagsForCertificateCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTagsForResourceRequest,
|
|
4
|
+
ListTagsForResourceResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ListTagsForResourceCommandInput
|
|
8
|
+
extends ListTagsForResourceRequest {}
|
|
9
|
+
export interface ListTagsForResourceCommandOutput
|
|
10
|
+
extends ListTagsForResourceResponse,
|
|
11
|
+
__MetadataBearer {}
|
|
12
|
+
declare const ListTagsForResourceCommand_base: {
|
|
13
|
+
new (
|
|
14
|
+
input: ListTagsForResourceCommandInput
|
|
15
|
+
): import("@smithy/core/client").CommandImpl<
|
|
16
|
+
ListTagsForResourceCommandInput,
|
|
17
|
+
ListTagsForResourceCommandOutput,
|
|
18
|
+
import("..").ACMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
21
|
+
>;
|
|
22
|
+
new (
|
|
23
|
+
input: ListTagsForResourceCommandInput
|
|
24
|
+
): import("@smithy/core/client").CommandImpl<
|
|
25
|
+
ListTagsForResourceCommandInput,
|
|
26
|
+
ListTagsForResourceCommandOutput,
|
|
27
|
+
import("..").ACMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
30
|
+
>;
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
32
|
+
};
|
|
33
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
34
|
+
protected static __types: {
|
|
35
|
+
api: {
|
|
36
|
+
input: ListTagsForResourceRequest;
|
|
37
|
+
output: ListTagsForResourceResponse;
|
|
38
|
+
};
|
|
39
|
+
sdk: {
|
|
40
|
+
input: ListTagsForResourceCommandInput;
|
|
41
|
+
output: ListTagsForResourceCommandOutput;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
}
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ACMClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ACMClient";
|
|
8
2
|
import { PutAccountConfigurationRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface PutAccountConfigurationCommandInput
|
|
12
5
|
extends PutAccountConfigurationRequest {}
|
|
13
6
|
export interface PutAccountConfigurationCommandOutput
|
|
@@ -18,22 +11,20 @@ declare const PutAccountConfigurationCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
PutAccountConfigurationCommandInput,
|
|
20
13
|
PutAccountConfigurationCommandOutput,
|
|
21
|
-
ACMClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ACMClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: PutAccountConfigurationCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
PutAccountConfigurationCommandInput,
|
|
29
22
|
PutAccountConfigurationCommandOutput,
|
|
30
|
-
ACMClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ACMClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class PutAccountConfigurationCommand extends PutAccountConfigurationCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ACMClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ACMClient";
|
|
8
2
|
import { RemoveTagsFromCertificateRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface RemoveTagsFromCertificateCommandInput
|
|
12
5
|
extends RemoveTagsFromCertificateRequest {}
|
|
13
6
|
export interface RemoveTagsFromCertificateCommandOutput
|
|
@@ -18,22 +11,20 @@ declare const RemoveTagsFromCertificateCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
RemoveTagsFromCertificateCommandInput,
|
|
20
13
|
RemoveTagsFromCertificateCommandOutput,
|
|
21
|
-
ACMClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ACMClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: RemoveTagsFromCertificateCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
RemoveTagsFromCertificateCommandInput,
|
|
29
22
|
RemoveTagsFromCertificateCommandOutput,
|
|
30
|
-
ACMClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ACMClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class RemoveTagsFromCertificateCommand extends RemoveTagsFromCertificateCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ACMClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ACMClient";
|
|
8
2
|
import { RenewCertificateRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface RenewCertificateCommandInput extends RenewCertificateRequest {}
|
|
12
5
|
export interface RenewCertificateCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const RenewCertificateCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const RenewCertificateCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
RenewCertificateCommandInput,
|
|
18
11
|
RenewCertificateCommandOutput,
|
|
19
|
-
ACMClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").ACMClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: RenewCertificateCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
RenewCertificateCommandInput,
|
|
27
20
|
RenewCertificateCommandOutput,
|
|
28
|
-
ACMClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").ACMClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class RenewCertificateCommand extends RenewCertificateCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ACMClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ACMClient";
|
|
8
2
|
import {
|
|
9
3
|
RequestCertificateRequest,
|
|
10
4
|
RequestCertificateResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface RequestCertificateCommandInput
|
|
15
8
|
extends RequestCertificateRequest {}
|
|
16
9
|
export interface RequestCertificateCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const RequestCertificateCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
RequestCertificateCommandInput,
|
|
24
17
|
RequestCertificateCommandOutput,
|
|
25
|
-
ACMClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ACMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: RequestCertificateCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
RequestCertificateCommandInput,
|
|
33
26
|
RequestCertificateCommandOutput,
|
|
34
|
-
ACMClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ACMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class RequestCertificateCommand extends RequestCertificateCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ACMClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ACMClient";
|
|
8
2
|
import { ResendValidationEmailRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ResendValidationEmailCommandInput
|
|
12
5
|
extends ResendValidationEmailRequest {}
|
|
13
6
|
export interface ResendValidationEmailCommandOutput extends __MetadataBearer {}
|
|
@@ -17,22 +10,20 @@ declare const ResendValidationEmailCommand_base: {
|
|
|
17
10
|
): import("@smithy/core/client").CommandImpl<
|
|
18
11
|
ResendValidationEmailCommandInput,
|
|
19
12
|
ResendValidationEmailCommandOutput,
|
|
20
|
-
ACMClientResolvedConfig,
|
|
21
|
-
ServiceInputTypes,
|
|
22
|
-
ServiceOutputTypes
|
|
13
|
+
import("..").ACMClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
23
16
|
>;
|
|
24
17
|
new (
|
|
25
18
|
input: ResendValidationEmailCommandInput
|
|
26
19
|
): import("@smithy/core/client").CommandImpl<
|
|
27
20
|
ResendValidationEmailCommandInput,
|
|
28
21
|
ResendValidationEmailCommandOutput,
|
|
29
|
-
ACMClientResolvedConfig,
|
|
30
|
-
ServiceInputTypes,
|
|
31
|
-
ServiceOutputTypes
|
|
22
|
+
import("..").ACMClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
32
25
|
>;
|
|
33
|
-
getEndpointParameterInstructions():
|
|
34
|
-
[x: string]: unknown;
|
|
35
|
-
};
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
36
27
|
};
|
|
37
28
|
export declare class ResendValidationEmailCommand extends ResendValidationEmailCommand_base {
|
|
38
29
|
protected static __types: {
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { RevokeAcmeAccountRequest } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface RevokeAcmeAccountCommandInput
|
|
5
|
+
extends RevokeAcmeAccountRequest {}
|
|
6
|
+
export interface RevokeAcmeAccountCommandOutput extends __MetadataBearer {}
|
|
7
|
+
declare const RevokeAcmeAccountCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: RevokeAcmeAccountCommandInput
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
RevokeAcmeAccountCommandInput,
|
|
12
|
+
RevokeAcmeAccountCommandOutput,
|
|
13
|
+
import("..").ACMClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: RevokeAcmeAccountCommandInput
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
RevokeAcmeAccountCommandInput,
|
|
21
|
+
RevokeAcmeAccountCommandOutput,
|
|
22
|
+
import("..").ACMClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class RevokeAcmeAccountCommand extends RevokeAcmeAccountCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: RevokeAcmeAccountRequest;
|
|
32
|
+
output: {};
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: RevokeAcmeAccountCommandInput;
|
|
36
|
+
output: RevokeAcmeAccountCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { RevokeAcmeExternalAccountBindingRequest } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface RevokeAcmeExternalAccountBindingCommandInput
|
|
5
|
+
extends RevokeAcmeExternalAccountBindingRequest {}
|
|
6
|
+
export interface RevokeAcmeExternalAccountBindingCommandOutput
|
|
7
|
+
extends __MetadataBearer {}
|
|
8
|
+
declare const RevokeAcmeExternalAccountBindingCommand_base: {
|
|
9
|
+
new (
|
|
10
|
+
input: RevokeAcmeExternalAccountBindingCommandInput
|
|
11
|
+
): import("@smithy/core/client").CommandImpl<
|
|
12
|
+
RevokeAcmeExternalAccountBindingCommandInput,
|
|
13
|
+
RevokeAcmeExternalAccountBindingCommandOutput,
|
|
14
|
+
import("..").ACMClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
17
|
+
>;
|
|
18
|
+
new (
|
|
19
|
+
input: RevokeAcmeExternalAccountBindingCommandInput
|
|
20
|
+
): import("@smithy/core/client").CommandImpl<
|
|
21
|
+
RevokeAcmeExternalAccountBindingCommandInput,
|
|
22
|
+
RevokeAcmeExternalAccountBindingCommandOutput,
|
|
23
|
+
import("..").ACMClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class RevokeAcmeExternalAccountBindingCommand extends RevokeAcmeExternalAccountBindingCommand_base {
|
|
30
|
+
protected static __types: {
|
|
31
|
+
api: {
|
|
32
|
+
input: RevokeAcmeExternalAccountBindingRequest;
|
|
33
|
+
output: {};
|
|
34
|
+
};
|
|
35
|
+
sdk: {
|
|
36
|
+
input: RevokeAcmeExternalAccountBindingCommandInput;
|
|
37
|
+
output: RevokeAcmeExternalAccountBindingCommandOutput;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
}
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ACMClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ACMClient";
|
|
8
2
|
import {
|
|
9
3
|
RevokeCertificateRequest,
|
|
10
4
|
RevokeCertificateResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface RevokeCertificateCommandInput
|
|
15
8
|
extends RevokeCertificateRequest {}
|
|
16
9
|
export interface RevokeCertificateCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const RevokeCertificateCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
RevokeCertificateCommandInput,
|
|
24
17
|
RevokeCertificateCommandOutput,
|
|
25
|
-
ACMClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ACMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: RevokeCertificateCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
RevokeCertificateCommandInput,
|
|
33
26
|
RevokeCertificateCommandOutput,
|
|
34
|
-
ACMClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ACMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class RevokeCertificateCommand extends RevokeCertificateCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ACMClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ACMClient";
|
|
8
2
|
import {
|
|
9
3
|
SearchCertificatesRequest,
|
|
10
4
|
SearchCertificatesResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface SearchCertificatesCommandInput
|
|
15
8
|
extends SearchCertificatesRequest {}
|
|
16
9
|
export interface SearchCertificatesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const SearchCertificatesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
SearchCertificatesCommandInput,
|
|
24
17
|
SearchCertificatesCommandOutput,
|
|
25
|
-
ACMClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ACMClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [SearchCertificatesCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
SearchCertificatesCommandInput,
|
|
33
26
|
SearchCertificatesCommandOutput,
|
|
34
|
-
ACMClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ACMClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class SearchCertificatesCommand extends SearchCertificatesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { TagResourceRequest } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
+
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
6
|
+
declare const TagResourceCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: TagResourceCommandInput
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
TagResourceCommandInput,
|
|
11
|
+
TagResourceCommandOutput,
|
|
12
|
+
import("..").ACMClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: TagResourceCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
import("..").ACMClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: TagResourceRequest;
|
|
31
|
+
output: {};
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: TagResourceCommandInput;
|
|
35
|
+
output: TagResourceCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { UntagResourceRequest } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
6
|
+
declare const UntagResourceCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: UntagResourceCommandInput
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
UntagResourceCommandInput,
|
|
11
|
+
UntagResourceCommandOutput,
|
|
12
|
+
import("..").ACMClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: UntagResourceCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
UntagResourceCommandInput,
|
|
20
|
+
UntagResourceCommandOutput,
|
|
21
|
+
import("..").ACMClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: UntagResourceRequest;
|
|
31
|
+
output: {};
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: UntagResourceCommandInput;
|
|
35
|
+
output: UntagResourceCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { UpdateAcmeDomainValidationRequest } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface UpdateAcmeDomainValidationCommandInput
|
|
5
|
+
extends UpdateAcmeDomainValidationRequest {}
|
|
6
|
+
export interface UpdateAcmeDomainValidationCommandOutput
|
|
7
|
+
extends __MetadataBearer {}
|
|
8
|
+
declare const UpdateAcmeDomainValidationCommand_base: {
|
|
9
|
+
new (
|
|
10
|
+
input: UpdateAcmeDomainValidationCommandInput
|
|
11
|
+
): import("@smithy/core/client").CommandImpl<
|
|
12
|
+
UpdateAcmeDomainValidationCommandInput,
|
|
13
|
+
UpdateAcmeDomainValidationCommandOutput,
|
|
14
|
+
import("..").ACMClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
17
|
+
>;
|
|
18
|
+
new (
|
|
19
|
+
input: UpdateAcmeDomainValidationCommandInput
|
|
20
|
+
): import("@smithy/core/client").CommandImpl<
|
|
21
|
+
UpdateAcmeDomainValidationCommandInput,
|
|
22
|
+
UpdateAcmeDomainValidationCommandOutput,
|
|
23
|
+
import("..").ACMClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class UpdateAcmeDomainValidationCommand extends UpdateAcmeDomainValidationCommand_base {
|
|
30
|
+
protected static __types: {
|
|
31
|
+
api: {
|
|
32
|
+
input: UpdateAcmeDomainValidationRequest;
|
|
33
|
+
output: {};
|
|
34
|
+
};
|
|
35
|
+
sdk: {
|
|
36
|
+
input: UpdateAcmeDomainValidationCommandInput;
|
|
37
|
+
output: UpdateAcmeDomainValidationCommandOutput;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { UpdateAcmeEndpointRequest } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface UpdateAcmeEndpointCommandInput
|
|
5
|
+
extends UpdateAcmeEndpointRequest {}
|
|
6
|
+
export interface UpdateAcmeEndpointCommandOutput extends __MetadataBearer {}
|
|
7
|
+
declare const UpdateAcmeEndpointCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: UpdateAcmeEndpointCommandInput
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
UpdateAcmeEndpointCommandInput,
|
|
12
|
+
UpdateAcmeEndpointCommandOutput,
|
|
13
|
+
import("..").ACMClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: UpdateAcmeEndpointCommandInput
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
UpdateAcmeEndpointCommandInput,
|
|
21
|
+
UpdateAcmeEndpointCommandOutput,
|
|
22
|
+
import("..").ACMClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class UpdateAcmeEndpointCommand extends UpdateAcmeEndpointCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: UpdateAcmeEndpointRequest;
|
|
32
|
+
output: {};
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: UpdateAcmeEndpointCommandInput;
|
|
36
|
+
output: UpdateAcmeEndpointCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|