@aws-sdk/client-acm 3.1076.0 → 3.1077.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 +1406 -152
- package/dist-es/ACM.js +60 -0
- package/dist-es/commands/AddTagsToCertificateCommand.js +4 -1
- package/dist-es/commands/CreateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/CreateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteCertificateCommand.js +4 -1
- package/dist-es/commands/DescribeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DescribeCertificateCommand.js +4 -1
- package/dist-es/commands/ExportCertificateCommand.js +4 -1
- package/dist-es/commands/GetAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +19 -0
- package/dist-es/commands/GetCertificateCommand.js +4 -1
- package/dist-es/commands/ImportCertificateCommand.js +4 -1
- package/dist-es/commands/ListAcmeAccountsCommand.js +19 -0
- package/dist-es/commands/ListAcmeDomainValidationsCommand.js +19 -0
- package/dist-es/commands/ListAcmeEndpointsCommand.js +19 -0
- package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +19 -0
- package/dist-es/commands/ListCertificatesCommand.js +4 -1
- package/dist-es/commands/ListTagsForCertificateCommand.js +4 -1
- package/dist-es/commands/ListTagsForResourceCommand.js +19 -0
- package/dist-es/commands/PutAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +4 -1
- package/dist-es/commands/RenewCertificateCommand.js +4 -1
- package/dist-es/commands/RequestCertificateCommand.js +4 -1
- package/dist-es/commands/ResendValidationEmailCommand.js +4 -1
- package/dist-es/commands/RevokeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/RevokeCertificateCommand.js +4 -1
- package/dist-es/commands/SearchCertificatesCommand.js +4 -1
- package/dist-es/commands/TagResourceCommand.js +19 -0
- package/dist-es/commands/UntagResourceCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +4 -1
- 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/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/commands/AddTagsToCertificateCommand.d.ts +4 -1
- package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +118 -0
- package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +86 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -1
- package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +101 -0
- package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +118 -0
- package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +113 -0
- package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +100 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +6 -0
- package/dist-types/commands/ExportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +92 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ListAcmeAccountsCommand.d.ts +105 -0
- package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +123 -0
- package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +114 -0
- package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +105 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +5 -1
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +4 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +4 -1
- package/dist-types/commands/RenewCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +3 -0
- package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +93 -0
- package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +92 -0
- package/dist-types/commands/RevokeCertificateCommand.d.ts +3 -0
- package/dist-types/commands/SearchCertificatesCommand.d.ts +10 -1
- package/dist-types/commands/TagResourceCommand.d.ts +89 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +102 -0
- package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +101 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
- 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/commands/CreateAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +48 -0
- 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/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 +6 -8
package/dist-es/ACM.js
CHANGED
|
@@ -1,49 +1,109 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/core/client";
|
|
2
2
|
import { ACMClient } from "./ACMClient";
|
|
3
3
|
import { AddTagsToCertificateCommand, } from "./commands/AddTagsToCertificateCommand";
|
|
4
|
+
import { CreateAcmeDomainValidationCommand, } from "./commands/CreateAcmeDomainValidationCommand";
|
|
5
|
+
import { CreateAcmeEndpointCommand, } from "./commands/CreateAcmeEndpointCommand";
|
|
6
|
+
import { CreateAcmeExternalAccountBindingCommand, } from "./commands/CreateAcmeExternalAccountBindingCommand";
|
|
7
|
+
import { DeleteAcmeDomainValidationCommand, } from "./commands/DeleteAcmeDomainValidationCommand";
|
|
8
|
+
import { DeleteAcmeEndpointCommand, } from "./commands/DeleteAcmeEndpointCommand";
|
|
9
|
+
import { DeleteAcmeExternalAccountBindingCommand, } from "./commands/DeleteAcmeExternalAccountBindingCommand";
|
|
4
10
|
import { DeleteCertificateCommand, } from "./commands/DeleteCertificateCommand";
|
|
11
|
+
import { DescribeAcmeAccountCommand, } from "./commands/DescribeAcmeAccountCommand";
|
|
12
|
+
import { DescribeAcmeDomainValidationCommand, } from "./commands/DescribeAcmeDomainValidationCommand";
|
|
13
|
+
import { DescribeAcmeEndpointCommand, } from "./commands/DescribeAcmeEndpointCommand";
|
|
14
|
+
import { DescribeAcmeExternalAccountBindingCommand, } from "./commands/DescribeAcmeExternalAccountBindingCommand";
|
|
5
15
|
import { DescribeCertificateCommand, } from "./commands/DescribeCertificateCommand";
|
|
6
16
|
import { ExportCertificateCommand, } from "./commands/ExportCertificateCommand";
|
|
7
17
|
import { GetAccountConfigurationCommand, } from "./commands/GetAccountConfigurationCommand";
|
|
18
|
+
import { GetAcmeExternalAccountBindingCredentialsCommand, } from "./commands/GetAcmeExternalAccountBindingCredentialsCommand";
|
|
8
19
|
import { GetCertificateCommand, } from "./commands/GetCertificateCommand";
|
|
9
20
|
import { ImportCertificateCommand, } from "./commands/ImportCertificateCommand";
|
|
21
|
+
import { ListAcmeAccountsCommand, } from "./commands/ListAcmeAccountsCommand";
|
|
22
|
+
import { ListAcmeDomainValidationsCommand, } from "./commands/ListAcmeDomainValidationsCommand";
|
|
23
|
+
import { ListAcmeEndpointsCommand, } from "./commands/ListAcmeEndpointsCommand";
|
|
24
|
+
import { ListAcmeExternalAccountBindingsCommand, } from "./commands/ListAcmeExternalAccountBindingsCommand";
|
|
10
25
|
import { ListCertificatesCommand, } from "./commands/ListCertificatesCommand";
|
|
11
26
|
import { ListTagsForCertificateCommand, } from "./commands/ListTagsForCertificateCommand";
|
|
27
|
+
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
12
28
|
import { PutAccountConfigurationCommand, } from "./commands/PutAccountConfigurationCommand";
|
|
13
29
|
import { RemoveTagsFromCertificateCommand, } from "./commands/RemoveTagsFromCertificateCommand";
|
|
14
30
|
import { RenewCertificateCommand, } from "./commands/RenewCertificateCommand";
|
|
15
31
|
import { RequestCertificateCommand, } from "./commands/RequestCertificateCommand";
|
|
16
32
|
import { ResendValidationEmailCommand, } from "./commands/ResendValidationEmailCommand";
|
|
33
|
+
import { RevokeAcmeAccountCommand, } from "./commands/RevokeAcmeAccountCommand";
|
|
34
|
+
import { RevokeAcmeExternalAccountBindingCommand, } from "./commands/RevokeAcmeExternalAccountBindingCommand";
|
|
17
35
|
import { RevokeCertificateCommand, } from "./commands/RevokeCertificateCommand";
|
|
18
36
|
import { SearchCertificatesCommand, } from "./commands/SearchCertificatesCommand";
|
|
37
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
38
|
+
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
39
|
+
import { UpdateAcmeDomainValidationCommand, } from "./commands/UpdateAcmeDomainValidationCommand";
|
|
40
|
+
import { UpdateAcmeEndpointCommand, } from "./commands/UpdateAcmeEndpointCommand";
|
|
19
41
|
import { UpdateCertificateOptionsCommand, } from "./commands/UpdateCertificateOptionsCommand";
|
|
42
|
+
import { paginateListAcmeAccounts } from "./pagination/ListAcmeAccountsPaginator";
|
|
43
|
+
import { paginateListAcmeDomainValidations } from "./pagination/ListAcmeDomainValidationsPaginator";
|
|
44
|
+
import { paginateListAcmeEndpoints } from "./pagination/ListAcmeEndpointsPaginator";
|
|
45
|
+
import { paginateListAcmeExternalAccountBindings } from "./pagination/ListAcmeExternalAccountBindingsPaginator";
|
|
20
46
|
import { paginateListCertificates } from "./pagination/ListCertificatesPaginator";
|
|
21
47
|
import { paginateSearchCertificates } from "./pagination/SearchCertificatesPaginator";
|
|
48
|
+
import { waitUntilAcmeDomainValidationDeleted } from "./waiters/waitForAcmeDomainValidationDeleted";
|
|
49
|
+
import { waitUntilAcmeDomainValidationValidated } from "./waiters/waitForAcmeDomainValidationValidated";
|
|
50
|
+
import { waitUntilAcmeEndpointActive } from "./waiters/waitForAcmeEndpointActive";
|
|
51
|
+
import { waitUntilAcmeEndpointDeleted } from "./waiters/waitForAcmeEndpointDeleted";
|
|
22
52
|
import { waitUntilCertificateValidated } from "./waiters/waitForCertificateValidated";
|
|
23
53
|
const commands = {
|
|
24
54
|
AddTagsToCertificateCommand,
|
|
55
|
+
CreateAcmeDomainValidationCommand,
|
|
56
|
+
CreateAcmeEndpointCommand,
|
|
57
|
+
CreateAcmeExternalAccountBindingCommand,
|
|
58
|
+
DeleteAcmeDomainValidationCommand,
|
|
59
|
+
DeleteAcmeEndpointCommand,
|
|
60
|
+
DeleteAcmeExternalAccountBindingCommand,
|
|
25
61
|
DeleteCertificateCommand,
|
|
62
|
+
DescribeAcmeAccountCommand,
|
|
63
|
+
DescribeAcmeDomainValidationCommand,
|
|
64
|
+
DescribeAcmeEndpointCommand,
|
|
65
|
+
DescribeAcmeExternalAccountBindingCommand,
|
|
26
66
|
DescribeCertificateCommand,
|
|
27
67
|
ExportCertificateCommand,
|
|
28
68
|
GetAccountConfigurationCommand,
|
|
69
|
+
GetAcmeExternalAccountBindingCredentialsCommand,
|
|
29
70
|
GetCertificateCommand,
|
|
30
71
|
ImportCertificateCommand,
|
|
72
|
+
ListAcmeAccountsCommand,
|
|
73
|
+
ListAcmeDomainValidationsCommand,
|
|
74
|
+
ListAcmeEndpointsCommand,
|
|
75
|
+
ListAcmeExternalAccountBindingsCommand,
|
|
31
76
|
ListCertificatesCommand,
|
|
32
77
|
ListTagsForCertificateCommand,
|
|
78
|
+
ListTagsForResourceCommand,
|
|
33
79
|
PutAccountConfigurationCommand,
|
|
34
80
|
RemoveTagsFromCertificateCommand,
|
|
35
81
|
RenewCertificateCommand,
|
|
36
82
|
RequestCertificateCommand,
|
|
37
83
|
ResendValidationEmailCommand,
|
|
84
|
+
RevokeAcmeAccountCommand,
|
|
85
|
+
RevokeAcmeExternalAccountBindingCommand,
|
|
38
86
|
RevokeCertificateCommand,
|
|
39
87
|
SearchCertificatesCommand,
|
|
88
|
+
TagResourceCommand,
|
|
89
|
+
UntagResourceCommand,
|
|
90
|
+
UpdateAcmeDomainValidationCommand,
|
|
91
|
+
UpdateAcmeEndpointCommand,
|
|
40
92
|
UpdateCertificateOptionsCommand,
|
|
41
93
|
};
|
|
42
94
|
const paginators = {
|
|
95
|
+
paginateListAcmeAccounts,
|
|
96
|
+
paginateListAcmeDomainValidations,
|
|
97
|
+
paginateListAcmeEndpoints,
|
|
98
|
+
paginateListAcmeExternalAccountBindings,
|
|
43
99
|
paginateListCertificates,
|
|
44
100
|
paginateSearchCertificates,
|
|
45
101
|
};
|
|
46
102
|
const waiters = {
|
|
103
|
+
waitUntilAcmeDomainValidationValidated,
|
|
104
|
+
waitUntilAcmeDomainValidationDeleted,
|
|
105
|
+
waitUntilAcmeEndpointActive,
|
|
106
|
+
waitUntilAcmeEndpointDeleted,
|
|
47
107
|
waitUntilCertificateValidated,
|
|
48
108
|
};
|
|
49
109
|
export class ACM extends ACMClient {
|
|
@@ -5,7 +5,10 @@ import { AddTagsToCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddTagsToCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateAcmeDomainValidation$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateAcmeDomainValidationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "CreateAcmeDomainValidation", {})
|
|
16
|
+
.n("ACMClient", "CreateAcmeDomainValidationCommand")
|
|
17
|
+
.sc(CreateAcmeDomainValidation$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateAcmeEndpoint$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateAcmeEndpointCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "CreateAcmeEndpoint", {})
|
|
16
|
+
.n("ACMClient", "CreateAcmeEndpointCommand")
|
|
17
|
+
.sc(CreateAcmeEndpoint$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateAcmeExternalAccountBinding$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateAcmeExternalAccountBindingCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "CreateAcmeExternalAccountBinding", {})
|
|
16
|
+
.n("ACMClient", "CreateAcmeExternalAccountBindingCommand")
|
|
17
|
+
.sc(CreateAcmeExternalAccountBinding$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteAcmeDomainValidation$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteAcmeDomainValidationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "DeleteAcmeDomainValidation", {})
|
|
16
|
+
.n("ACMClient", "DeleteAcmeDomainValidationCommand")
|
|
17
|
+
.sc(DeleteAcmeDomainValidation$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteAcmeEndpoint$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteAcmeEndpointCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "DeleteAcmeEndpoint", {})
|
|
16
|
+
.n("ACMClient", "DeleteAcmeEndpointCommand")
|
|
17
|
+
.sc(DeleteAcmeEndpoint$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteAcmeExternalAccountBinding$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteAcmeExternalAccountBindingCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "DeleteAcmeExternalAccountBinding", {})
|
|
16
|
+
.n("ACMClient", "DeleteAcmeExternalAccountBindingCommand")
|
|
17
|
+
.sc(DeleteAcmeExternalAccountBinding$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -5,7 +5,10 @@ import { DeleteCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeAcmeAccount$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeAcmeAccountCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "DescribeAcmeAccount", {})
|
|
16
|
+
.n("ACMClient", "DescribeAcmeAccountCommand")
|
|
17
|
+
.sc(DescribeAcmeAccount$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeAcmeDomainValidation$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeAcmeDomainValidationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "DescribeAcmeDomainValidation", {})
|
|
16
|
+
.n("ACMClient", "DescribeAcmeDomainValidationCommand")
|
|
17
|
+
.sc(DescribeAcmeDomainValidation$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeAcmeEndpoint$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeAcmeEndpointCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "DescribeAcmeEndpoint", {})
|
|
16
|
+
.n("ACMClient", "DescribeAcmeEndpointCommand")
|
|
17
|
+
.sc(DescribeAcmeEndpoint$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeAcmeExternalAccountBinding$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeAcmeExternalAccountBindingCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "DescribeAcmeExternalAccountBinding", {})
|
|
16
|
+
.n("ACMClient", "DescribeAcmeExternalAccountBindingCommand")
|
|
17
|
+
.sc(DescribeAcmeExternalAccountBinding$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -5,7 +5,10 @@ import { DescribeCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -5,7 +5,10 @@ import { ExportCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ExportCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -5,7 +5,10 @@ import { GetAccountConfiguration$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAccountConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetAcmeExternalAccountBindingCredentials$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetAcmeExternalAccountBindingCredentialsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "GetAcmeExternalAccountBindingCredentials", {})
|
|
16
|
+
.n("ACMClient", "GetAcmeExternalAccountBindingCredentialsCommand")
|
|
17
|
+
.sc(GetAcmeExternalAccountBindingCredentials$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -5,7 +5,10 @@ import { GetCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -5,7 +5,10 @@ import { ImportCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ImportCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListAcmeAccounts$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListAcmeAccountsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "ListAcmeAccounts", {})
|
|
16
|
+
.n("ACMClient", "ListAcmeAccountsCommand")
|
|
17
|
+
.sc(ListAcmeAccounts$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListAcmeDomainValidations$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListAcmeDomainValidationsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "ListAcmeDomainValidations", {})
|
|
16
|
+
.n("ACMClient", "ListAcmeDomainValidationsCommand")
|
|
17
|
+
.sc(ListAcmeDomainValidations$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListAcmeEndpoints$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListAcmeEndpointsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "ListAcmeEndpoints", {})
|
|
16
|
+
.n("ACMClient", "ListAcmeEndpointsCommand")
|
|
17
|
+
.sc(ListAcmeEndpoints$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListAcmeExternalAccountBindings$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListAcmeExternalAccountBindingsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "ListAcmeExternalAccountBindings", {})
|
|
16
|
+
.n("ACMClient", "ListAcmeExternalAccountBindingsCommand")
|
|
17
|
+
.sc(ListAcmeExternalAccountBindings$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -5,7 +5,10 @@ import { ListCertificates$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCertificatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -5,7 +5,10 @@ import { ListTagsForCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListTagsForResourceCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "ListTagsForResource", {})
|
|
16
|
+
.n("ACMClient", "ListTagsForResourceCommand")
|
|
17
|
+
.sc(ListTagsForResource$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|
|
@@ -5,7 +5,10 @@ import { PutAccountConfiguration$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutAccountConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -5,7 +5,10 @@ import { RemoveTagsFromCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveTagsFromCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -5,7 +5,10 @@ import { RenewCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RenewCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -5,7 +5,10 @@ import { RequestCertificate$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RequestCertificateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -5,7 +5,10 @@ import { ResendValidationEmail$ } from "../schemas/schemas_0";
|
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ResendValidationEmailCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
8
|
-
.ep(
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM` },
|
|
11
|
+
})
|
|
9
12
|
.m(function (Command, cs, config, o) {
|
|
10
13
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
14
|
})
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { RevokeAcmeAccount$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class RevokeAcmeAccountCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep({
|
|
9
|
+
...commonParams,
|
|
10
|
+
ServiceType: { type: "staticContextParams", value: `ACM-ACME` },
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14
|
+
})
|
|
15
|
+
.s("CertificateManager", "RevokeAcmeAccount", {})
|
|
16
|
+
.n("ACMClient", "RevokeAcmeAccountCommand")
|
|
17
|
+
.sc(RevokeAcmeAccount$)
|
|
18
|
+
.build() {
|
|
19
|
+
}
|