@aws-sdk/client-acm 3.478.0 → 3.481.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/dist-cjs/commands/AddTagsToCertificateCommand.js +18 -41
- package/dist-cjs/commands/DeleteCertificateCommand.js +18 -41
- package/dist-cjs/commands/DescribeCertificateCommand.js +18 -41
- package/dist-cjs/commands/ExportCertificateCommand.js +18 -41
- package/dist-cjs/commands/GetAccountConfigurationCommand.js +18 -41
- package/dist-cjs/commands/GetCertificateCommand.js +18 -41
- package/dist-cjs/commands/ImportCertificateCommand.js +18 -41
- package/dist-cjs/commands/ListCertificatesCommand.js +18 -41
- package/dist-cjs/commands/ListTagsForCertificateCommand.js +18 -41
- package/dist-cjs/commands/PutAccountConfigurationCommand.js +18 -41
- package/dist-cjs/commands/RemoveTagsFromCertificateCommand.js +18 -41
- package/dist-cjs/commands/RenewCertificateCommand.js +18 -41
- package/dist-cjs/commands/RequestCertificateCommand.js +18 -41
- package/dist-cjs/commands/ResendValidationEmailCommand.js +18 -41
- package/dist-cjs/commands/UpdateCertificateOptionsCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/AddTagsToCertificateCommand.js +18 -41
- package/dist-es/commands/DeleteCertificateCommand.js +18 -41
- package/dist-es/commands/DescribeCertificateCommand.js +18 -41
- package/dist-es/commands/ExportCertificateCommand.js +18 -41
- package/dist-es/commands/GetAccountConfigurationCommand.js +18 -41
- package/dist-es/commands/GetCertificateCommand.js +18 -41
- package/dist-es/commands/ImportCertificateCommand.js +18 -41
- package/dist-es/commands/ListCertificatesCommand.js +18 -41
- package/dist-es/commands/ListTagsForCertificateCommand.js +18 -41
- package/dist-es/commands/PutAccountConfigurationCommand.js +18 -41
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +18 -41
- package/dist-es/commands/RenewCertificateCommand.js +18 -41
- package/dist-es/commands/RequestCertificateCommand.js +18 -41
- package/dist-es/commands/ResendValidationEmailCommand.js +18 -41
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/AddTagsToCertificateCommand.d.ts +6 -21
- package/dist-types/commands/DeleteCertificateCommand.d.ts +6 -21
- package/dist-types/commands/DescribeCertificateCommand.d.ts +6 -21
- package/dist-types/commands/ExportCertificateCommand.d.ts +6 -21
- package/dist-types/commands/GetAccountConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/GetCertificateCommand.d.ts +6 -21
- package/dist-types/commands/ImportCertificateCommand.d.ts +6 -21
- package/dist-types/commands/ListCertificatesCommand.d.ts +6 -21
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +6 -21
- package/dist-types/commands/PutAccountConfigurationCommand.d.ts +6 -21
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +6 -21
- package/dist-types/commands/RenewCertificateCommand.d.ts +6 -21
- package/dist-types/commands/RequestCertificateCommand.d.ts +6 -21
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +6 -21
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +12 -24
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +9 -9
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
5
4
|
import { RemoveTagsFromCertificateRequest } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface RemoveTagsFromCertificateCommandInput extends RemoveTagsFromCer
|
|
|
21
20
|
*/
|
|
22
21
|
export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const RemoveTagsFromCertificateCommand_base: {
|
|
24
|
+
new (input: RemoveTagsFromCertificateCommandInput): import("@smithy/smithy-client").CommandImpl<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Remove one or more tags from an ACM certificate. A tag consists of a key-value pair. If
|
|
@@ -80,23 +83,5 @@ export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer
|
|
|
80
83
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
81
84
|
*
|
|
82
85
|
*/
|
|
83
|
-
export declare class RemoveTagsFromCertificateCommand extends
|
|
84
|
-
readonly input: RemoveTagsFromCertificateCommandInput;
|
|
85
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
-
/**
|
|
87
|
-
* @public
|
|
88
|
-
*/
|
|
89
|
-
constructor(input: RemoveTagsFromCertificateCommandInput);
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput>;
|
|
94
|
-
/**
|
|
95
|
-
* @internal
|
|
96
|
-
*/
|
|
97
|
-
private serialize;
|
|
98
|
-
/**
|
|
99
|
-
* @internal
|
|
100
|
-
*/
|
|
101
|
-
private deserialize;
|
|
86
|
+
export declare class RemoveTagsFromCertificateCommand extends RemoveTagsFromCertificateCommand_base {
|
|
102
87
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
5
4
|
import { RenewCertificateRequest } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface RenewCertificateCommandInput extends RenewCertificateRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface RenewCertificateCommandOutput extends __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const RenewCertificateCommand_base: {
|
|
24
|
+
new (input: RenewCertificateCommandInput): import("@smithy/smithy-client").CommandImpl<RenewCertificateCommandInput, RenewCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Renews an eligible ACM certificate. At this time, only exported private certificates can
|
|
@@ -60,23 +63,5 @@ export interface RenewCertificateCommandOutput extends __MetadataBearer {
|
|
|
60
63
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
61
64
|
*
|
|
62
65
|
*/
|
|
63
|
-
export declare class RenewCertificateCommand extends
|
|
64
|
-
readonly input: RenewCertificateCommandInput;
|
|
65
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
-
/**
|
|
67
|
-
* @public
|
|
68
|
-
*/
|
|
69
|
-
constructor(input: RenewCertificateCommandInput);
|
|
70
|
-
/**
|
|
71
|
-
* @internal
|
|
72
|
-
*/
|
|
73
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RenewCertificateCommandInput, RenewCertificateCommandOutput>;
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
private serialize;
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
private deserialize;
|
|
66
|
+
export declare class RenewCertificateCommand extends RenewCertificateCommand_base {
|
|
82
67
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
5
4
|
import { RequestCertificateRequest, RequestCertificateResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface RequestCertificateCommandInput extends RequestCertificateReques
|
|
|
21
20
|
*/
|
|
22
21
|
export interface RequestCertificateCommandOutput extends RequestCertificateResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const RequestCertificateCommand_base: {
|
|
24
|
+
new (input: RequestCertificateCommandInput): import("@smithy/smithy-client").CommandImpl<RequestCertificateCommandInput, RequestCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Requests an ACM certificate for use with other Amazon Web Services services. To request an ACM
|
|
@@ -111,23 +114,5 @@ export interface RequestCertificateCommandOutput extends RequestCertificateRespo
|
|
|
111
114
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
112
115
|
*
|
|
113
116
|
*/
|
|
114
|
-
export declare class RequestCertificateCommand extends
|
|
115
|
-
readonly input: RequestCertificateCommandInput;
|
|
116
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
117
|
-
/**
|
|
118
|
-
* @public
|
|
119
|
-
*/
|
|
120
|
-
constructor(input: RequestCertificateCommandInput);
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RequestCertificateCommandInput, RequestCertificateCommandOutput>;
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
private serialize;
|
|
129
|
-
/**
|
|
130
|
-
* @internal
|
|
131
|
-
*/
|
|
132
|
-
private deserialize;
|
|
117
|
+
export declare class RequestCertificateCommand extends RequestCertificateCommand_base {
|
|
133
118
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
5
4
|
import { ResendValidationEmailRequest } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ResendValidationEmailCommandInput extends ResendValidationEmail
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ResendValidationEmailCommand_base: {
|
|
24
|
+
new (input: ResendValidationEmailCommandInput): import("@smithy/smithy-client").CommandImpl<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Resends the email that requests domain ownership validation. The domain owner or an
|
|
@@ -73,23 +76,5 @@ export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
|
|
|
73
76
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
74
77
|
*
|
|
75
78
|
*/
|
|
76
|
-
export declare class ResendValidationEmailCommand extends
|
|
77
|
-
readonly input: ResendValidationEmailCommandInput;
|
|
78
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
-
/**
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
constructor(input: ResendValidationEmailCommandInput);
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput>;
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
private serialize;
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
private deserialize;
|
|
79
|
+
export declare class ResendValidationEmailCommand extends ResendValidationEmailCommand_base {
|
|
95
80
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
5
4
|
import { UpdateCertificateOptionsRequest } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UpdateCertificateOptionsCommandInput extends UpdateCertificateO
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UpdateCertificateOptionsCommand_base: {
|
|
24
|
+
new (input: UpdateCertificateOptionsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Updates a certificate. Currently, you can use this function to specify whether to opt in
|
|
@@ -68,23 +71,5 @@ export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer
|
|
|
68
71
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
69
72
|
*
|
|
70
73
|
*/
|
|
71
|
-
export declare class UpdateCertificateOptionsCommand extends
|
|
72
|
-
readonly input: UpdateCertificateOptionsCommandInput;
|
|
73
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
-
/**
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
constructor(input: UpdateCertificateOptionsCommandInput);
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput>;
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
private serialize;
|
|
86
|
-
/**
|
|
87
|
-
* @internal
|
|
88
|
-
*/
|
|
89
|
-
private deserialize;
|
|
74
|
+
export declare class UpdateCertificateOptionsCommand extends UpdateCertificateOptionsCommand_base {
|
|
90
75
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ACMClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -16,22 +10,16 @@ export { __MetadataBearer, $Command };
|
|
|
16
10
|
export interface AddTagsToCertificateCommandInput
|
|
17
11
|
extends AddTagsToCertificateRequest {}
|
|
18
12
|
export interface AddTagsToCertificateCommandOutput extends __MetadataBearer {}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
> {
|
|
24
|
-
readonly input: AddTagsToCertificateCommandInput;
|
|
25
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
-
constructor(input: AddTagsToCertificateCommandInput);
|
|
27
|
-
resolveMiddleware(
|
|
28
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
-
configuration: ACMClientResolvedConfig,
|
|
30
|
-
options?: __HttpHandlerOptions
|
|
31
|
-
): Handler<
|
|
13
|
+
declare const AddTagsToCertificateCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: AddTagsToCertificateCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
17
|
AddTagsToCertificateCommandInput,
|
|
33
|
-
AddTagsToCertificateCommandOutput
|
|
18
|
+
AddTagsToCertificateCommandOutput,
|
|
19
|
+
ACMClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
34
22
|
>;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
23
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
|
+
};
|
|
25
|
+
export declare class AddTagsToCertificateCommand extends AddTagsToCertificateCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ACMClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -16,19 +10,16 @@ export { __MetadataBearer, $Command };
|
|
|
16
10
|
export interface DeleteCertificateCommandInput
|
|
17
11
|
extends DeleteCertificateRequest {}
|
|
18
12
|
export interface DeleteCertificateCommandOutput extends __MetadataBearer {}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
private serialize;
|
|
33
|
-
private deserialize;
|
|
34
|
-
}
|
|
13
|
+
declare const DeleteCertificateCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: DeleteCertificateCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
DeleteCertificateCommandInput,
|
|
18
|
+
DeleteCertificateCommandOutput,
|
|
19
|
+
ACMClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
|
+
};
|
|
25
|
+
export declare class DeleteCertificateCommand extends DeleteCertificateCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ACMClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface DescribeCertificateCommandInput
|
|
|
21
15
|
export interface DescribeCertificateCommandOutput
|
|
22
16
|
extends DescribeCertificateResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const DescribeCertificateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeCertificateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DescribeCertificateCommandInput,
|
|
23
|
+
DescribeCertificateCommandOutput,
|
|
24
|
+
ACMClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DescribeCertificateCommand extends DescribeCertificateCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ACMClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface ExportCertificateCommandInput
|
|
|
21
15
|
export interface ExportCertificateCommandOutput
|
|
22
16
|
extends ExportCertificateResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const ExportCertificateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ExportCertificateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ExportCertificateCommandInput,
|
|
23
|
+
ExportCertificateCommandOutput,
|
|
24
|
+
ACMClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ExportCertificateCommand extends ExportCertificateCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ACMClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -17,22 +11,16 @@ export interface GetAccountConfigurationCommandInput {}
|
|
|
17
11
|
export interface GetAccountConfigurationCommandOutput
|
|
18
12
|
extends GetAccountConfigurationResponse,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
> {
|
|
25
|
-
readonly input: GetAccountConfigurationCommandInput;
|
|
26
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
-
constructor(input: GetAccountConfigurationCommandInput);
|
|
28
|
-
resolveMiddleware(
|
|
29
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
-
configuration: ACMClientResolvedConfig,
|
|
31
|
-
options?: __HttpHandlerOptions
|
|
32
|
-
): Handler<
|
|
14
|
+
declare const GetAccountConfigurationCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: GetAccountConfigurationCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
33
18
|
GetAccountConfigurationCommandInput,
|
|
34
|
-
GetAccountConfigurationCommandOutput
|
|
19
|
+
GetAccountConfigurationCommandOutput,
|
|
20
|
+
ACMClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
35
23
|
>;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class GetAccountConfigurationCommand extends GetAccountConfigurationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ACMClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface GetCertificateCommandInput extends GetCertificateRequest {}
|
|
|
20
14
|
export interface GetCertificateCommandOutput
|
|
21
15
|
extends GetCertificateResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const GetCertificateCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: GetCertificateCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
GetCertificateCommandInput,
|
|
22
|
+
GetCertificateCommandOutput,
|
|
23
|
+
ACMClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class GetCertificateCommand extends GetCertificateCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ACMClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface ImportCertificateCommandInput
|
|
|
21
15
|
export interface ImportCertificateCommandOutput
|
|
22
16
|
extends ImportCertificateResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const ImportCertificateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ImportCertificateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ImportCertificateCommandInput,
|
|
23
|
+
ImportCertificateCommandOutput,
|
|
24
|
+
ACMClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ImportCertificateCommand extends ImportCertificateCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ACMClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface ListCertificatesCommandInput extends ListCertificatesRequest {}
|
|
|
20
14
|
export interface ListCertificatesCommandOutput
|
|
21
15
|
extends ListCertificatesResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const ListCertificatesCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: ListCertificatesCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
ListCertificatesCommandInput,
|
|
22
|
+
ListCertificatesCommandOutput,
|
|
23
|
+
ACMClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class ListCertificatesCommand extends ListCertificatesCommand_base {}
|