@aws-sdk/client-acm 3.1109.0 → 3.1110.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 +7 -0
- package/dist-cjs/index.js +105 -9
- package/dist-es/ACM.js +4 -0
- package/dist-es/commands/ListCertificateDomainValidationsCommand.js +4 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +8 -0
- package/dist-es/pagination/ListCertificateDomainValidationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +75 -8
- package/dist-types/ACM.d.ts +14 -0
- package/dist-types/ACMClient.d.ts +3 -2
- package/dist-types/commands/DescribeCertificateCommand.d.ts +11 -0
- package/dist-types/commands/ListCertificateDomainValidationsCommand.d.ts +128 -0
- package/dist-types/commands/RequestCertificateCommand.d.ts +1 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +5 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +24 -0
- package/dist-types/models/models_0.d.ts +209 -3
- package/dist-types/pagination/ListCertificateDomainValidationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +10 -0
- package/dist-types/ts3.4/ACM.d.ts +24 -0
- package/dist-types/ts3.4/ACMClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListCertificateDomainValidationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +67 -0
- package/dist-types/ts3.4/pagination/ListCertificateDomainValidationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
- package/package.json +1 -1
|
@@ -121,6 +121,10 @@ import {
|
|
|
121
121
|
ListAcmeExternalAccountBindingsCommandInput,
|
|
122
122
|
ListAcmeExternalAccountBindingsCommandOutput,
|
|
123
123
|
} from "./commands/ListAcmeExternalAccountBindingsCommand";
|
|
124
|
+
import {
|
|
125
|
+
ListCertificateDomainValidationsCommandInput,
|
|
126
|
+
ListCertificateDomainValidationsCommandOutput,
|
|
127
|
+
} from "./commands/ListCertificateDomainValidationsCommand";
|
|
124
128
|
import {
|
|
125
129
|
ListCertificatesCommandInput,
|
|
126
130
|
ListCertificatesCommandOutput,
|
|
@@ -216,6 +220,7 @@ export type ServiceInputTypes =
|
|
|
216
220
|
| ListAcmeDomainValidationsCommandInput
|
|
217
221
|
| ListAcmeEndpointsCommandInput
|
|
218
222
|
| ListAcmeExternalAccountBindingsCommandInput
|
|
223
|
+
| ListCertificateDomainValidationsCommandInput
|
|
219
224
|
| ListCertificatesCommandInput
|
|
220
225
|
| ListTagsForCertificateCommandInput
|
|
221
226
|
| ListTagsForResourceCommandInput
|
|
@@ -256,6 +261,7 @@ export type ServiceOutputTypes =
|
|
|
256
261
|
| ListAcmeDomainValidationsCommandOutput
|
|
257
262
|
| ListAcmeEndpointsCommandOutput
|
|
258
263
|
| ListAcmeExternalAccountBindingsCommandOutput
|
|
264
|
+
| ListCertificateDomainValidationsCommandOutput
|
|
259
265
|
| ListCertificatesCommandOutput
|
|
260
266
|
| ListTagsForCertificateCommandOutput
|
|
261
267
|
| ListTagsForResourceCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCertificateDomainValidationsRequest,
|
|
4
|
+
ListCertificateDomainValidationsResponse,
|
|
5
|
+
} from "../models/models_0";
|
|
6
|
+
export { __MetadataBearer };
|
|
7
|
+
export interface ListCertificateDomainValidationsCommandInput extends ListCertificateDomainValidationsRequest {}
|
|
8
|
+
export interface ListCertificateDomainValidationsCommandOutput
|
|
9
|
+
extends ListCertificateDomainValidationsResponse, __MetadataBearer {}
|
|
10
|
+
declare const ListCertificateDomainValidationsCommand_base: {
|
|
11
|
+
new (
|
|
12
|
+
input: ListCertificateDomainValidationsCommandInput,
|
|
13
|
+
): import("@smithy/core/client").CommandImpl<
|
|
14
|
+
ListCertificateDomainValidationsCommandInput,
|
|
15
|
+
ListCertificateDomainValidationsCommandOutput,
|
|
16
|
+
import("..").ACMClientResolvedConfig,
|
|
17
|
+
import("..").ServiceInputTypes,
|
|
18
|
+
import("..").ServiceOutputTypes
|
|
19
|
+
>;
|
|
20
|
+
new (
|
|
21
|
+
input: ListCertificateDomainValidationsCommandInput,
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListCertificateDomainValidationsCommandInput,
|
|
24
|
+
ListCertificateDomainValidationsCommandOutput,
|
|
25
|
+
import("..").ACMClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class ListCertificateDomainValidationsCommand extends ListCertificateDomainValidationsCommand_base {
|
|
32
|
+
protected static __types: {
|
|
33
|
+
api: {
|
|
34
|
+
input: ListCertificateDomainValidationsRequest;
|
|
35
|
+
output: ListCertificateDomainValidationsResponse;
|
|
36
|
+
};
|
|
37
|
+
sdk: {
|
|
38
|
+
input: ListCertificateDomainValidationsCommandInput;
|
|
39
|
+
output: ListCertificateDomainValidationsCommandOutput;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -20,6 +20,7 @@ export * from "./ListAcmeAccountsCommand";
|
|
|
20
20
|
export * from "./ListAcmeDomainValidationsCommand";
|
|
21
21
|
export * from "./ListAcmeEndpointsCommand";
|
|
22
22
|
export * from "./ListAcmeExternalAccountBindingsCommand";
|
|
23
|
+
export * from "./ListCertificateDomainValidationsCommand";
|
|
23
24
|
export * from "./ListCertificatesCommand";
|
|
24
25
|
export * from "./ListTagsForCertificateCommand";
|
|
25
26
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -196,6 +196,16 @@ export declare const RevocationReason: {
|
|
|
196
196
|
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
197
197
|
};
|
|
198
198
|
export type RevocationReason = (typeof RevocationReason)[keyof typeof RevocationReason];
|
|
199
|
+
export declare const UpdateStatus: {
|
|
200
|
+
readonly FAILED: "FAILED";
|
|
201
|
+
readonly PENDING_DOMAIN_VALIDATION: "PENDING_DOMAIN_VALIDATION";
|
|
202
|
+
readonly SUCCESS: "SUCCESS";
|
|
203
|
+
};
|
|
204
|
+
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
205
|
+
export declare const UpdateType: {
|
|
206
|
+
readonly DOMAIN_VALIDATION_METHOD: "DOMAIN_VALIDATION_METHOD";
|
|
207
|
+
};
|
|
208
|
+
export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
|
|
199
209
|
export declare const ComparisonOperator: {
|
|
200
210
|
readonly CONTAINS: "CONTAINS";
|
|
201
211
|
readonly EQUALS: "EQUALS";
|
|
@@ -29,6 +29,8 @@ import {
|
|
|
29
29
|
SortBy,
|
|
30
30
|
SortOrder,
|
|
31
31
|
TimeType,
|
|
32
|
+
UpdateStatus,
|
|
33
|
+
UpdateType,
|
|
32
34
|
ValidationMethod,
|
|
33
35
|
} from "./enums";
|
|
34
36
|
export interface AcmCertificateMetadata {
|
|
@@ -419,6 +421,7 @@ export interface KeyUsage {
|
|
|
419
421
|
export interface CertificateOptions {
|
|
420
422
|
CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference | undefined;
|
|
421
423
|
Export?: CertificateExport | undefined;
|
|
424
|
+
ValidationMethod?: ValidationMethod | undefined;
|
|
422
425
|
}
|
|
423
426
|
export interface RenewalSummary {
|
|
424
427
|
RenewalStatus: RenewalStatus | undefined;
|
|
@@ -426,6 +429,17 @@ export interface RenewalSummary {
|
|
|
426
429
|
RenewalStatusReason?: FailureReason | undefined;
|
|
427
430
|
UpdatedAt: Date | undefined;
|
|
428
431
|
}
|
|
432
|
+
export interface DomainValidationMethodUpdateSummary {
|
|
433
|
+
From?: ValidationMethod | undefined;
|
|
434
|
+
To?: ValidationMethod | undefined;
|
|
435
|
+
}
|
|
436
|
+
export interface UpdateSummary {
|
|
437
|
+
Status?: UpdateStatus | undefined;
|
|
438
|
+
Type?: UpdateType | undefined;
|
|
439
|
+
DomainValidationMethodUpdateSummary?: DomainValidationMethodUpdateSummary | undefined;
|
|
440
|
+
RequestedAt?: Date | undefined;
|
|
441
|
+
UpdatedAt?: Date | undefined;
|
|
442
|
+
}
|
|
429
443
|
export interface CertificateDetail {
|
|
430
444
|
CertificateArn?: string | undefined;
|
|
431
445
|
DomainName?: string | undefined;
|
|
@@ -454,6 +468,7 @@ export interface CertificateDetail {
|
|
|
454
468
|
CertificateAuthorityArn?: string | undefined;
|
|
455
469
|
RenewalEligibility?: RenewalEligibility | undefined;
|
|
456
470
|
Options?: CertificateOptions | undefined;
|
|
471
|
+
UpdateSummary?: UpdateSummary | undefined;
|
|
457
472
|
CertificateKeyPairOrigin?: CertificateKeyPairOrigin | undefined;
|
|
458
473
|
AcmeEndpointArn?: string | undefined;
|
|
459
474
|
AcmeAccountId?: string | undefined;
|
|
@@ -834,6 +849,58 @@ export interface ListAcmeExternalAccountBindingsResponse {
|
|
|
834
849
|
ExternalAccountBindings?: AcmeExternalAccountBindingSummary[] | undefined;
|
|
835
850
|
NextToken?: string | undefined;
|
|
836
851
|
}
|
|
852
|
+
export interface ListCertificateDomainValidationsRequest {
|
|
853
|
+
CertificateArn: string | undefined;
|
|
854
|
+
NextToken?: string | undefined;
|
|
855
|
+
MaxItems?: number | undefined;
|
|
856
|
+
}
|
|
857
|
+
export interface DnsValidationChallenge {
|
|
858
|
+
ResourceRecord?: ResourceRecord | undefined;
|
|
859
|
+
}
|
|
860
|
+
export interface EmailValidationChallenge {
|
|
861
|
+
ValidationEmails?: string[] | undefined;
|
|
862
|
+
ValidationDomain?: string | undefined;
|
|
863
|
+
}
|
|
864
|
+
export type ValidationChallenge =
|
|
865
|
+
| ValidationChallenge.DnsValidationChallengeMember
|
|
866
|
+
| ValidationChallenge.EmailValidationChallengeMember
|
|
867
|
+
| ValidationChallenge.$UnknownMember;
|
|
868
|
+
export declare namespace ValidationChallenge {
|
|
869
|
+
interface EmailValidationChallengeMember {
|
|
870
|
+
EmailValidationChallenge: EmailValidationChallenge;
|
|
871
|
+
DnsValidationChallenge?: never;
|
|
872
|
+
$unknown?: never;
|
|
873
|
+
}
|
|
874
|
+
interface DnsValidationChallengeMember {
|
|
875
|
+
EmailValidationChallenge?: never;
|
|
876
|
+
DnsValidationChallenge: DnsValidationChallenge;
|
|
877
|
+
$unknown?: never;
|
|
878
|
+
}
|
|
879
|
+
interface $UnknownMember {
|
|
880
|
+
EmailValidationChallenge?: never;
|
|
881
|
+
DnsValidationChallenge?: never;
|
|
882
|
+
$unknown: [string, any];
|
|
883
|
+
}
|
|
884
|
+
interface Visitor<T> {
|
|
885
|
+
EmailValidationChallenge: (value: EmailValidationChallenge) => T;
|
|
886
|
+
DnsValidationChallenge: (value: DnsValidationChallenge) => T;
|
|
887
|
+
_: (name: string, value: any) => T;
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
export interface ValidationConfiguration {
|
|
891
|
+
ValidationMethod?: ValidationMethod | undefined;
|
|
892
|
+
ValidationChallenge?: ValidationChallenge | undefined;
|
|
893
|
+
ValidationStatus?: DomainStatus | undefined;
|
|
894
|
+
}
|
|
895
|
+
export interface DomainValidationSummary {
|
|
896
|
+
DomainName: string | undefined;
|
|
897
|
+
ActiveValidationConfiguration?: ValidationConfiguration | undefined;
|
|
898
|
+
RequestedValidationConfiguration?: ValidationConfiguration | undefined;
|
|
899
|
+
}
|
|
900
|
+
export interface ListCertificateDomainValidationsResponse {
|
|
901
|
+
DomainValidationSummaryList?: DomainValidationSummary[] | undefined;
|
|
902
|
+
NextToken?: string | undefined;
|
|
903
|
+
}
|
|
837
904
|
export interface Filters {
|
|
838
905
|
extendedKeyUsage?: ExtendedKeyUsageName[] | undefined;
|
|
839
906
|
keyUsage?: KeyUsageName[] | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCertificateDomainValidationsCommandInput,
|
|
4
|
+
ListCertificateDomainValidationsCommandOutput,
|
|
5
|
+
} from "../commands/ListCertificateDomainValidationsCommand";
|
|
6
|
+
import { ACMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCertificateDomainValidations: (
|
|
8
|
+
config: ACMPaginationConfiguration,
|
|
9
|
+
input: ListCertificateDomainValidationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCertificateDomainValidationsCommandOutput>;
|
|
@@ -3,5 +3,6 @@ export * from "./ListAcmeAccountsPaginator";
|
|
|
3
3
|
export * from "./ListAcmeDomainValidationsPaginator";
|
|
4
4
|
export * from "./ListAcmeEndpointsPaginator";
|
|
5
5
|
export * from "./ListAcmeExternalAccountBindingsPaginator";
|
|
6
|
+
export * from "./ListCertificateDomainValidationsPaginator";
|
|
6
7
|
export * from "./ListCertificatesPaginator";
|
|
7
8
|
export * from "./SearchCertificatesPaginator";
|
|
@@ -65,9 +65,13 @@ export declare var DistinguishedName$: StaticStructureSchema;
|
|
|
65
65
|
export declare var DnsNameFilter$: StaticStructureSchema;
|
|
66
66
|
export declare var DnsPrevalidationDetails$: StaticStructureSchema;
|
|
67
67
|
export declare var DnsPrevalidationOptions$: StaticStructureSchema;
|
|
68
|
+
export declare var DnsValidationChallenge$: StaticStructureSchema;
|
|
68
69
|
export declare var DomainScope$: StaticStructureSchema;
|
|
69
70
|
export declare var DomainValidation$: StaticStructureSchema;
|
|
71
|
+
export declare var DomainValidationMethodUpdateSummary$: StaticStructureSchema;
|
|
70
72
|
export declare var DomainValidationOption$: StaticStructureSchema;
|
|
73
|
+
export declare var DomainValidationSummary$: StaticStructureSchema;
|
|
74
|
+
export declare var EmailValidationChallenge$: StaticStructureSchema;
|
|
71
75
|
export declare var Expiration$: StaticStructureSchema;
|
|
72
76
|
export declare var ExpiryEventsConfiguration$: StaticStructureSchema;
|
|
73
77
|
export declare var ExportCertificateRequest$: StaticStructureSchema;
|
|
@@ -92,6 +96,8 @@ export declare var ListAcmeEndpointsRequest$: StaticStructureSchema;
|
|
|
92
96
|
export declare var ListAcmeEndpointsResponse$: StaticStructureSchema;
|
|
93
97
|
export declare var ListAcmeExternalAccountBindingsRequest$: StaticStructureSchema;
|
|
94
98
|
export declare var ListAcmeExternalAccountBindingsResponse$: StaticStructureSchema;
|
|
99
|
+
export declare var ListCertificateDomainValidationsRequest$: StaticStructureSchema;
|
|
100
|
+
export declare var ListCertificateDomainValidationsResponse$: StaticStructureSchema;
|
|
95
101
|
export declare var ListCertificatesRequest$: StaticStructureSchema;
|
|
96
102
|
export declare var ListCertificatesResponse$: StaticStructureSchema;
|
|
97
103
|
export declare var ListTagsForCertificateRequest$: StaticStructureSchema;
|
|
@@ -122,6 +128,8 @@ export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
|
122
128
|
export declare var UpdateAcmeDomainValidationRequest$: StaticStructureSchema;
|
|
123
129
|
export declare var UpdateAcmeEndpointRequest$: StaticStructureSchema;
|
|
124
130
|
export declare var UpdateCertificateOptionsRequest$: StaticStructureSchema;
|
|
131
|
+
export declare var UpdateSummary$: StaticStructureSchema;
|
|
132
|
+
export declare var ValidationConfiguration$: StaticStructureSchema;
|
|
125
133
|
export declare var X509Attributes$: StaticStructureSchema;
|
|
126
134
|
export declare var AcmCertificateMetadataFilter$: StaticUnionSchema;
|
|
127
135
|
export declare var CertificateAuthority$: StaticUnionSchema;
|
|
@@ -133,6 +141,7 @@ export declare var PrevalidationDetails$: StaticUnionSchema;
|
|
|
133
141
|
export declare var PrevalidationOptions$: StaticUnionSchema;
|
|
134
142
|
export declare var SubjectAlternativeNameFilter$: StaticUnionSchema;
|
|
135
143
|
export declare var SubjectFilter$: StaticUnionSchema;
|
|
144
|
+
export declare var ValidationChallenge$: StaticUnionSchema;
|
|
136
145
|
export declare var X509AttributeFilter$: StaticUnionSchema;
|
|
137
146
|
export declare var AddTagsToCertificate$: StaticOperationSchema;
|
|
138
147
|
export declare var CreateAcmeDomainValidation$: StaticOperationSchema;
|
|
@@ -156,6 +165,7 @@ export declare var ListAcmeAccounts$: StaticOperationSchema;
|
|
|
156
165
|
export declare var ListAcmeDomainValidations$: StaticOperationSchema;
|
|
157
166
|
export declare var ListAcmeEndpoints$: StaticOperationSchema;
|
|
158
167
|
export declare var ListAcmeExternalAccountBindings$: StaticOperationSchema;
|
|
168
|
+
export declare var ListCertificateDomainValidations$: StaticOperationSchema;
|
|
159
169
|
export declare var ListCertificates$: StaticOperationSchema;
|
|
160
170
|
export declare var ListTagsForCertificate$: StaticOperationSchema;
|
|
161
171
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-acm",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1110.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Acm Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-acm",
|
|
6
6
|
"license": "Apache-2.0",
|