@aws-sdk/client-acm 3.50.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -0
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ACMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +212 -1
- package/dist-cjs/protocols/Aws_json1_1.js +183 -580
- package/dist-es/endpoints.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/ACMServiceException.js +12 -0
- package/dist-es/models/models_0.js +195 -1
- package/dist-es/protocols/Aws_json1_1.js +361 -609
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ACMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +114 -64
- package/dist-types/ts3.4/ACM.d.ts +80 -0
- package/dist-types/ts3.4/ACMClient.d.ts +88 -0
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +7 -0
- package/dist-types/ts3.4/models/ACMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +638 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +47 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +7 -0
- package/package.json +34 -34
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ACM service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ACMServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ACMServiceException as __BaseException } from "./ACMServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You do not have access
|
|
4
5
|
* required to perform this action.</p>
|
|
5
6
|
*/
|
|
6
|
-
export
|
|
7
|
-
name: "AccessDeniedException";
|
|
8
|
-
$fault: "client";
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
9
10
|
Message?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
15
|
}
|
|
11
16
|
/**
|
|
12
17
|
* <p>A key-value pair that identifies or specifies metadata about an ACM resource.</p>
|
|
@@ -53,61 +58,82 @@ export declare namespace AddTagsToCertificateRequest {
|
|
|
53
58
|
/**
|
|
54
59
|
* <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
|
|
55
60
|
*/
|
|
56
|
-
export
|
|
57
|
-
name: "InvalidArnException";
|
|
58
|
-
$fault: "client";
|
|
59
|
-
|
|
61
|
+
export declare class InvalidArnException extends __BaseException {
|
|
62
|
+
readonly name: "InvalidArnException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
60
68
|
}
|
|
61
69
|
/**
|
|
62
70
|
* <p>An input parameter was invalid.</p>
|
|
63
71
|
*/
|
|
64
|
-
export
|
|
65
|
-
name: "InvalidParameterException";
|
|
66
|
-
$fault: "client";
|
|
67
|
-
|
|
72
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
73
|
+
readonly name: "InvalidParameterException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
68
79
|
}
|
|
69
80
|
/**
|
|
70
81
|
* <p>One or both of the values that make up the key-value pair is not valid. For example, you
|
|
71
82
|
* cannot specify a tag value that begins with <code>aws:</code>.</p>
|
|
72
83
|
*/
|
|
73
|
-
export
|
|
74
|
-
name: "InvalidTagException";
|
|
75
|
-
$fault: "client";
|
|
76
|
-
|
|
84
|
+
export declare class InvalidTagException extends __BaseException {
|
|
85
|
+
readonly name: "InvalidTagException";
|
|
86
|
+
readonly $fault: "client";
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
77
91
|
}
|
|
78
92
|
/**
|
|
79
93
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
80
94
|
* cannot be found.</p>
|
|
81
95
|
*/
|
|
82
|
-
export
|
|
83
|
-
name: "ResourceNotFoundException";
|
|
84
|
-
$fault: "client";
|
|
85
|
-
|
|
96
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
97
|
+
readonly name: "ResourceNotFoundException";
|
|
98
|
+
readonly $fault: "client";
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
86
103
|
}
|
|
87
104
|
/**
|
|
88
105
|
* <p>A specified tag did not comply with an existing tag policy and was rejected.</p>
|
|
89
106
|
*/
|
|
90
|
-
export
|
|
91
|
-
name: "TagPolicyException";
|
|
92
|
-
$fault: "client";
|
|
93
|
-
|
|
107
|
+
export declare class TagPolicyException extends __BaseException {
|
|
108
|
+
readonly name: "TagPolicyException";
|
|
109
|
+
readonly $fault: "client";
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
113
|
+
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
94
114
|
}
|
|
95
115
|
/**
|
|
96
116
|
* <p>The request was denied
|
|
97
117
|
* because it exceeded a quota.</p>
|
|
98
118
|
*/
|
|
99
|
-
export
|
|
100
|
-
name: "ThrottlingException";
|
|
101
|
-
$fault: "client";
|
|
102
|
-
|
|
119
|
+
export declare class ThrottlingException extends __BaseException {
|
|
120
|
+
readonly name: "ThrottlingException";
|
|
121
|
+
readonly $fault: "client";
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
*/
|
|
125
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
103
126
|
}
|
|
104
127
|
/**
|
|
105
128
|
* <p>The request contains too many tags. Try the request again with fewer tags.</p>
|
|
106
129
|
*/
|
|
107
|
-
export
|
|
108
|
-
name: "TooManyTagsException";
|
|
109
|
-
$fault: "client";
|
|
110
|
-
|
|
130
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
131
|
+
readonly name: "TooManyTagsException";
|
|
132
|
+
readonly $fault: "client";
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
136
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
111
137
|
}
|
|
112
138
|
export declare enum RecordType {
|
|
113
139
|
CNAME = "CNAME"
|
|
@@ -612,10 +638,13 @@ export declare namespace DeleteCertificateRequest {
|
|
|
612
638
|
* <p>The certificate is in use by another Amazon Web Services service in the caller's account. Remove the
|
|
613
639
|
* association and try again.</p>
|
|
614
640
|
*/
|
|
615
|
-
export
|
|
616
|
-
name: "ResourceInUseException";
|
|
617
|
-
$fault: "client";
|
|
618
|
-
|
|
641
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
642
|
+
readonly name: "ResourceInUseException";
|
|
643
|
+
readonly $fault: "client";
|
|
644
|
+
/**
|
|
645
|
+
* @internal
|
|
646
|
+
*/
|
|
647
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
619
648
|
}
|
|
620
649
|
export interface DescribeCertificateRequest {
|
|
621
650
|
/**
|
|
@@ -696,10 +725,13 @@ export declare namespace ExportCertificateResponse {
|
|
|
696
725
|
* <p>The certificate request is in process and the certificate in your account has not yet been
|
|
697
726
|
* issued.</p>
|
|
698
727
|
*/
|
|
699
|
-
export
|
|
700
|
-
name: "RequestInProgressException";
|
|
701
|
-
$fault: "client";
|
|
702
|
-
|
|
728
|
+
export declare class RequestInProgressException extends __BaseException {
|
|
729
|
+
readonly name: "RequestInProgressException";
|
|
730
|
+
readonly $fault: "client";
|
|
731
|
+
/**
|
|
732
|
+
* @internal
|
|
733
|
+
*/
|
|
734
|
+
constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
|
|
703
735
|
}
|
|
704
736
|
/**
|
|
705
737
|
* <p>Object containing
|
|
@@ -814,18 +846,24 @@ export declare namespace ImportCertificateResponse {
|
|
|
814
846
|
/**
|
|
815
847
|
* <p>An ACM quota has been exceeded.</p>
|
|
816
848
|
*/
|
|
817
|
-
export
|
|
818
|
-
name: "LimitExceededException";
|
|
819
|
-
$fault: "client";
|
|
820
|
-
|
|
849
|
+
export declare class LimitExceededException extends __BaseException {
|
|
850
|
+
readonly name: "LimitExceededException";
|
|
851
|
+
readonly $fault: "client";
|
|
852
|
+
/**
|
|
853
|
+
* @internal
|
|
854
|
+
*/
|
|
855
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
821
856
|
}
|
|
822
857
|
/**
|
|
823
858
|
* <p>One or more of of request parameters specified is not valid.</p>
|
|
824
859
|
*/
|
|
825
|
-
export
|
|
826
|
-
name: "InvalidArgsException";
|
|
827
|
-
$fault: "client";
|
|
828
|
-
|
|
860
|
+
export declare class InvalidArgsException extends __BaseException {
|
|
861
|
+
readonly name: "InvalidArgsException";
|
|
862
|
+
readonly $fault: "client";
|
|
863
|
+
/**
|
|
864
|
+
* @internal
|
|
865
|
+
*/
|
|
866
|
+
constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
|
|
829
867
|
}
|
|
830
868
|
/**
|
|
831
869
|
* <p>This structure can be used in the <a>ListCertificates</a> action to filter the
|
|
@@ -964,10 +1002,13 @@ export declare namespace ListTagsForCertificateResponse {
|
|
|
964
1002
|
* update a resource or configuration that is already being created or updated. Wait for the
|
|
965
1003
|
* previous operation to finish and try again.</p>
|
|
966
1004
|
*/
|
|
967
|
-
export
|
|
968
|
-
name: "ConflictException";
|
|
969
|
-
$fault: "client";
|
|
970
|
-
|
|
1005
|
+
export declare class ConflictException extends __BaseException {
|
|
1006
|
+
readonly name: "ConflictException";
|
|
1007
|
+
readonly $fault: "client";
|
|
1008
|
+
/**
|
|
1009
|
+
* @internal
|
|
1010
|
+
*/
|
|
1011
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
971
1012
|
}
|
|
972
1013
|
export interface PutAccountConfigurationRequest {
|
|
973
1014
|
/**
|
|
@@ -995,10 +1036,13 @@ export declare namespace PutAccountConfigurationRequest {
|
|
|
995
1036
|
* <p>The supplied input
|
|
996
1037
|
* failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
997
1038
|
*/
|
|
998
|
-
export
|
|
999
|
-
name: "ValidationException";
|
|
1000
|
-
$fault: "client";
|
|
1001
|
-
|
|
1039
|
+
export declare class ValidationException extends __BaseException {
|
|
1040
|
+
readonly name: "ValidationException";
|
|
1041
|
+
readonly $fault: "client";
|
|
1042
|
+
/**
|
|
1043
|
+
* @internal
|
|
1044
|
+
*/
|
|
1045
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
1002
1046
|
}
|
|
1003
1047
|
export interface RemoveTagsFromCertificateRequest {
|
|
1004
1048
|
/**
|
|
@@ -1044,10 +1088,13 @@ export declare namespace RenewCertificateRequest {
|
|
|
1044
1088
|
* <p>One or more values in the <a>DomainValidationOption</a> structure is
|
|
1045
1089
|
* incorrect.</p>
|
|
1046
1090
|
*/
|
|
1047
|
-
export
|
|
1048
|
-
name: "InvalidDomainValidationOptionsException";
|
|
1049
|
-
$fault: "client";
|
|
1050
|
-
|
|
1091
|
+
export declare class InvalidDomainValidationOptionsException extends __BaseException {
|
|
1092
|
+
readonly name: "InvalidDomainValidationOptionsException";
|
|
1093
|
+
readonly $fault: "client";
|
|
1094
|
+
/**
|
|
1095
|
+
* @internal
|
|
1096
|
+
*/
|
|
1097
|
+
constructor(opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>);
|
|
1051
1098
|
}
|
|
1052
1099
|
/**
|
|
1053
1100
|
* <p>Contains information about the domain names that you want ACM to use to send you emails
|
|
@@ -1201,10 +1248,13 @@ export declare namespace RequestCertificateResponse {
|
|
|
1201
1248
|
/**
|
|
1202
1249
|
* <p>Processing has reached an invalid state.</p>
|
|
1203
1250
|
*/
|
|
1204
|
-
export
|
|
1205
|
-
name: "InvalidStateException";
|
|
1206
|
-
$fault: "client";
|
|
1207
|
-
|
|
1251
|
+
export declare class InvalidStateException extends __BaseException {
|
|
1252
|
+
readonly name: "InvalidStateException";
|
|
1253
|
+
readonly $fault: "client";
|
|
1254
|
+
/**
|
|
1255
|
+
* @internal
|
|
1256
|
+
*/
|
|
1257
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
1208
1258
|
}
|
|
1209
1259
|
export interface ResendValidationEmailRequest {
|
|
1210
1260
|
/**
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { ACMClient } from "./ACMClient";
|
|
3
|
+
import { AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput } from "./commands/AddTagsToCertificateCommand";
|
|
4
|
+
import { DeleteCertificateCommandInput, DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
|
|
5
|
+
import { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "./commands/DescribeCertificateCommand";
|
|
6
|
+
import { ExportCertificateCommandInput, ExportCertificateCommandOutput } from "./commands/ExportCertificateCommand";
|
|
7
|
+
import { GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput } from "./commands/GetAccountConfigurationCommand";
|
|
8
|
+
import { GetCertificateCommandInput, GetCertificateCommandOutput } from "./commands/GetCertificateCommand";
|
|
9
|
+
import { ImportCertificateCommandInput, ImportCertificateCommandOutput } from "./commands/ImportCertificateCommand";
|
|
10
|
+
import { ListCertificatesCommandInput, ListCertificatesCommandOutput } from "./commands/ListCertificatesCommand";
|
|
11
|
+
import { ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput } from "./commands/ListTagsForCertificateCommand";
|
|
12
|
+
import { PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput } from "./commands/PutAccountConfigurationCommand";
|
|
13
|
+
import { RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput } from "./commands/RemoveTagsFromCertificateCommand";
|
|
14
|
+
import { RenewCertificateCommandInput, RenewCertificateCommandOutput } from "./commands/RenewCertificateCommand";
|
|
15
|
+
import { RequestCertificateCommandInput, RequestCertificateCommandOutput } from "./commands/RequestCertificateCommand";
|
|
16
|
+
import { ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput } from "./commands/ResendValidationEmailCommand";
|
|
17
|
+
import { UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput } from "./commands/UpdateCertificateOptionsCommand";
|
|
18
|
+
|
|
19
|
+
export declare class ACM extends ACMClient {
|
|
20
|
+
|
|
21
|
+
addTagsToCertificate(args: AddTagsToCertificateCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsToCertificateCommandOutput>;
|
|
22
|
+
addTagsToCertificate(args: AddTagsToCertificateCommandInput, cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void): void;
|
|
23
|
+
addTagsToCertificate(args: AddTagsToCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToCertificateCommandOutput) => void): void;
|
|
24
|
+
|
|
25
|
+
deleteCertificate(args: DeleteCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCertificateCommandOutput>;
|
|
26
|
+
deleteCertificate(args: DeleteCertificateCommandInput, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
|
|
27
|
+
deleteCertificate(args: DeleteCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
|
|
28
|
+
|
|
29
|
+
describeCertificate(args: DescribeCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCertificateCommandOutput>;
|
|
30
|
+
describeCertificate(args: DescribeCertificateCommandInput, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
|
|
31
|
+
describeCertificate(args: DescribeCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCertificateCommandOutput) => void): void;
|
|
32
|
+
|
|
33
|
+
exportCertificate(args: ExportCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ExportCertificateCommandOutput>;
|
|
34
|
+
exportCertificate(args: ExportCertificateCommandInput, cb: (err: any, data?: ExportCertificateCommandOutput) => void): void;
|
|
35
|
+
exportCertificate(args: ExportCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportCertificateCommandOutput) => void): void;
|
|
36
|
+
|
|
37
|
+
getAccountConfiguration(args: GetAccountConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountConfigurationCommandOutput>;
|
|
38
|
+
getAccountConfiguration(args: GetAccountConfigurationCommandInput, cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void): void;
|
|
39
|
+
getAccountConfiguration(args: GetAccountConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountConfigurationCommandOutput) => void): void;
|
|
40
|
+
|
|
41
|
+
getCertificate(args: GetCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetCertificateCommandOutput>;
|
|
42
|
+
getCertificate(args: GetCertificateCommandInput, cb: (err: any, data?: GetCertificateCommandOutput) => void): void;
|
|
43
|
+
getCertificate(args: GetCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCertificateCommandOutput) => void): void;
|
|
44
|
+
|
|
45
|
+
importCertificate(args: ImportCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ImportCertificateCommandOutput>;
|
|
46
|
+
importCertificate(args: ImportCertificateCommandInput, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
|
|
47
|
+
importCertificate(args: ImportCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
|
|
48
|
+
|
|
49
|
+
listCertificates(args: ListCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<ListCertificatesCommandOutput>;
|
|
50
|
+
listCertificates(args: ListCertificatesCommandInput, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
|
|
51
|
+
listCertificates(args: ListCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCertificatesCommandOutput) => void): void;
|
|
52
|
+
|
|
53
|
+
listTagsForCertificate(args: ListTagsForCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForCertificateCommandOutput>;
|
|
54
|
+
listTagsForCertificate(args: ListTagsForCertificateCommandInput, cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void): void;
|
|
55
|
+
listTagsForCertificate(args: ListTagsForCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForCertificateCommandOutput) => void): void;
|
|
56
|
+
|
|
57
|
+
putAccountConfiguration(args: PutAccountConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutAccountConfigurationCommandOutput>;
|
|
58
|
+
putAccountConfiguration(args: PutAccountConfigurationCommandInput, cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void): void;
|
|
59
|
+
putAccountConfiguration(args: PutAccountConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccountConfigurationCommandOutput) => void): void;
|
|
60
|
+
|
|
61
|
+
removeTagsFromCertificate(args: RemoveTagsFromCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsFromCertificateCommandOutput>;
|
|
62
|
+
removeTagsFromCertificate(args: RemoveTagsFromCertificateCommandInput, cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void): void;
|
|
63
|
+
removeTagsFromCertificate(args: RemoveTagsFromCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsFromCertificateCommandOutput) => void): void;
|
|
64
|
+
|
|
65
|
+
renewCertificate(args: RenewCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RenewCertificateCommandOutput>;
|
|
66
|
+
renewCertificate(args: RenewCertificateCommandInput, cb: (err: any, data?: RenewCertificateCommandOutput) => void): void;
|
|
67
|
+
renewCertificate(args: RenewCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RenewCertificateCommandOutput) => void): void;
|
|
68
|
+
|
|
69
|
+
requestCertificate(args: RequestCertificateCommandInput, options?: __HttpHandlerOptions): Promise<RequestCertificateCommandOutput>;
|
|
70
|
+
requestCertificate(args: RequestCertificateCommandInput, cb: (err: any, data?: RequestCertificateCommandOutput) => void): void;
|
|
71
|
+
requestCertificate(args: RequestCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RequestCertificateCommandOutput) => void): void;
|
|
72
|
+
|
|
73
|
+
resendValidationEmail(args: ResendValidationEmailCommandInput, options?: __HttpHandlerOptions): Promise<ResendValidationEmailCommandOutput>;
|
|
74
|
+
resendValidationEmail(args: ResendValidationEmailCommandInput, cb: (err: any, data?: ResendValidationEmailCommandOutput) => void): void;
|
|
75
|
+
resendValidationEmail(args: ResendValidationEmailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResendValidationEmailCommandOutput) => void): void;
|
|
76
|
+
|
|
77
|
+
updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCertificateOptionsCommandOutput>;
|
|
78
|
+
updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void): void;
|
|
79
|
+
updateCertificateOptions(args: UpdateCertificateOptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCertificateOptionsCommandOutput) => void): void;
|
|
80
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput } from "./commands/AddTagsToCertificateCommand";
|
|
10
|
+
import { DeleteCertificateCommandInput, DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
|
|
11
|
+
import { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "./commands/DescribeCertificateCommand";
|
|
12
|
+
import { ExportCertificateCommandInput, ExportCertificateCommandOutput } from "./commands/ExportCertificateCommand";
|
|
13
|
+
import { GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput } from "./commands/GetAccountConfigurationCommand";
|
|
14
|
+
import { GetCertificateCommandInput, GetCertificateCommandOutput } from "./commands/GetCertificateCommand";
|
|
15
|
+
import { ImportCertificateCommandInput, ImportCertificateCommandOutput } from "./commands/ImportCertificateCommand";
|
|
16
|
+
import { ListCertificatesCommandInput, ListCertificatesCommandOutput } from "./commands/ListCertificatesCommand";
|
|
17
|
+
import { ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput } from "./commands/ListTagsForCertificateCommand";
|
|
18
|
+
import { PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput } from "./commands/PutAccountConfigurationCommand";
|
|
19
|
+
import { RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput } from "./commands/RemoveTagsFromCertificateCommand";
|
|
20
|
+
import { RenewCertificateCommandInput, RenewCertificateCommandOutput } from "./commands/RenewCertificateCommand";
|
|
21
|
+
import { RequestCertificateCommandInput, RequestCertificateCommandOutput } from "./commands/RequestCertificateCommand";
|
|
22
|
+
import { ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput } from "./commands/ResendValidationEmailCommand";
|
|
23
|
+
import { UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput } from "./commands/UpdateCertificateOptionsCommand";
|
|
24
|
+
export declare type ServiceInputTypes = AddTagsToCertificateCommandInput | DeleteCertificateCommandInput | DescribeCertificateCommandInput | ExportCertificateCommandInput | GetAccountConfigurationCommandInput | GetCertificateCommandInput | ImportCertificateCommandInput | ListCertificatesCommandInput | ListTagsForCertificateCommandInput | PutAccountConfigurationCommandInput | RemoveTagsFromCertificateCommandInput | RenewCertificateCommandInput | RequestCertificateCommandInput | ResendValidationEmailCommandInput | UpdateCertificateOptionsCommandInput;
|
|
25
|
+
export declare type ServiceOutputTypes = AddTagsToCertificateCommandOutput | DeleteCertificateCommandOutput | DescribeCertificateCommandOutput | ExportCertificateCommandOutput | GetAccountConfigurationCommandOutput | GetCertificateCommandOutput | ImportCertificateCommandOutput | ListCertificatesCommandOutput | ListTagsForCertificateCommandOutput | PutAccountConfigurationCommandOutput | RemoveTagsFromCertificateCommandOutput | RenewCertificateCommandOutput | RequestCertificateCommandOutput | ResendValidationEmailCommandOutput | UpdateCertificateOptionsCommandOutput;
|
|
26
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
27
|
+
|
|
28
|
+
requestHandler?: __HttpHandler;
|
|
29
|
+
|
|
30
|
+
sha256?: __HashConstructor;
|
|
31
|
+
|
|
32
|
+
urlParser?: __UrlParser;
|
|
33
|
+
|
|
34
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
35
|
+
|
|
36
|
+
streamCollector?: __StreamCollector;
|
|
37
|
+
|
|
38
|
+
base64Decoder?: __Decoder;
|
|
39
|
+
|
|
40
|
+
base64Encoder?: __Encoder;
|
|
41
|
+
|
|
42
|
+
utf8Decoder?: __Decoder;
|
|
43
|
+
|
|
44
|
+
utf8Encoder?: __Encoder;
|
|
45
|
+
|
|
46
|
+
runtime?: string;
|
|
47
|
+
|
|
48
|
+
disableHostPrefix?: boolean;
|
|
49
|
+
|
|
50
|
+
maxAttempts?: number | __Provider<number>;
|
|
51
|
+
|
|
52
|
+
retryMode?: string | __Provider<string>;
|
|
53
|
+
|
|
54
|
+
logger?: __Logger;
|
|
55
|
+
|
|
56
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
57
|
+
|
|
58
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
59
|
+
|
|
60
|
+
serviceId?: string;
|
|
61
|
+
|
|
62
|
+
region?: string | __Provider<string>;
|
|
63
|
+
|
|
64
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
65
|
+
|
|
66
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
67
|
+
|
|
68
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
69
|
+
|
|
70
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
71
|
+
}
|
|
72
|
+
declare type ACMClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
73
|
+
|
|
74
|
+
export interface ACMClientConfig extends ACMClientConfigType {
|
|
75
|
+
}
|
|
76
|
+
declare type ACMClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
77
|
+
|
|
78
|
+
export interface ACMClientResolvedConfig extends ACMClientResolvedConfigType {
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export declare class ACMClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ACMClientResolvedConfig> {
|
|
82
|
+
|
|
83
|
+
readonly config: ACMClientResolvedConfig;
|
|
84
|
+
constructor(configuration: ACMClientConfig);
|
|
85
|
+
|
|
86
|
+
destroy(): void;
|
|
87
|
+
}
|
|
88
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
|
+
import { AddTagsToCertificateRequest } from "../models/models_0";
|
|
5
|
+
export interface AddTagsToCertificateCommandInput extends AddTagsToCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AddTagsToCertificateCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddTagsToCertificateCommand extends $Command<AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: AddTagsToCertificateCommandInput;
|
|
12
|
+
constructor(input: AddTagsToCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
|
+
import { DeleteCertificateRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteCertificateCommandInput extends DeleteCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteCertificateCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteCertificateCommand extends $Command<DeleteCertificateCommandInput, DeleteCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteCertificateCommandInput;
|
|
12
|
+
constructor(input: DeleteCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCertificateCommandInput, DeleteCertificateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
|
+
import { DescribeCertificateRequest, DescribeCertificateResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeCertificateCommandInput extends DescribeCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeCertificateCommandOutput extends DescribeCertificateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeCertificateCommand extends $Command<DescribeCertificateCommandInput, DescribeCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeCertificateCommandInput;
|
|
12
|
+
constructor(input: DescribeCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCertificateCommandInput, DescribeCertificateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
|
+
import { ExportCertificateRequest, ExportCertificateResponse } from "../models/models_0";
|
|
5
|
+
export interface ExportCertificateCommandInput extends ExportCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ExportCertificateCommandOutput extends ExportCertificateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ExportCertificateCommand extends $Command<ExportCertificateCommandInput, ExportCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: ExportCertificateCommandInput;
|
|
12
|
+
constructor(input: ExportCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportCertificateCommandInput, ExportCertificateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
|
+
import { GetAccountConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface GetAccountConfigurationCommandInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetAccountConfigurationCommandOutput extends GetAccountConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetAccountConfigurationCommand extends $Command<GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: GetAccountConfigurationCommandInput;
|
|
12
|
+
constructor(input: GetAccountConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
|
+
import { GetCertificateRequest, GetCertificateResponse } from "../models/models_0";
|
|
5
|
+
export interface GetCertificateCommandInput extends GetCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetCertificateCommandOutput extends GetCertificateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetCertificateCommand extends $Command<GetCertificateCommandInput, GetCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: GetCertificateCommandInput;
|
|
12
|
+
constructor(input: GetCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCertificateCommandInput, GetCertificateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
|
+
import { ImportCertificateRequest, ImportCertificateResponse } from "../models/models_0";
|
|
5
|
+
export interface ImportCertificateCommandInput extends ImportCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ImportCertificateCommandOutput extends ImportCertificateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ImportCertificateCommand extends $Command<ImportCertificateCommandInput, ImportCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: ImportCertificateCommandInput;
|
|
12
|
+
constructor(input: ImportCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportCertificateCommandInput, ImportCertificateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
|
+
import { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_0";
|
|
5
|
+
export interface ListCertificatesCommandInput extends ListCertificatesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListCertificatesCommandOutput extends ListCertificatesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListCertificatesCommand extends $Command<ListCertificatesCommandInput, ListCertificatesCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: ListCertificatesCommandInput;
|
|
12
|
+
constructor(input: ListCertificatesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCertificatesCommandInput, ListCertificatesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
|
+
import { ListTagsForCertificateRequest, ListTagsForCertificateResponse } from "../models/models_0";
|
|
5
|
+
export interface ListTagsForCertificateCommandInput extends ListTagsForCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListTagsForCertificateCommandOutput extends ListTagsForCertificateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListTagsForCertificateCommand extends $Command<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: ListTagsForCertificateCommandInput;
|
|
12
|
+
constructor(input: ListTagsForCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|