@aws-sdk/client-acm 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/ACM.d.ts +259 -80
- package/dist-types/ts3.4/ACMClient.d.ts +193 -88
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/ACMServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +487 -570
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/dist-types/ts3.4/waiters/index.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +11 -7
- package/package.json +35 -35
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ACMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMClient";
|
|
13
|
+
import {
|
|
14
|
+
RequestCertificateRequest,
|
|
15
|
+
RequestCertificateResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface RequestCertificateCommandInput
|
|
18
|
+
extends RequestCertificateRequest {}
|
|
19
|
+
export interface RequestCertificateCommandOutput
|
|
20
|
+
extends RequestCertificateResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class RequestCertificateCommand extends $Command<
|
|
23
|
+
RequestCertificateCommandInput,
|
|
24
|
+
RequestCertificateCommandOutput,
|
|
25
|
+
ACMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: RequestCertificateCommandInput;
|
|
28
|
+
constructor(input: RequestCertificateCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ACMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<RequestCertificateCommandInput, RequestCertificateCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ACMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMClient";
|
|
13
|
+
import { ResendValidationEmailRequest } from "../models/models_0";
|
|
14
|
+
export interface ResendValidationEmailCommandInput
|
|
15
|
+
extends ResendValidationEmailRequest {}
|
|
16
|
+
export interface ResendValidationEmailCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class ResendValidationEmailCommand extends $Command<
|
|
18
|
+
ResendValidationEmailCommandInput,
|
|
19
|
+
ResendValidationEmailCommandOutput,
|
|
20
|
+
ACMClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: ResendValidationEmailCommandInput;
|
|
23
|
+
constructor(input: ResendValidationEmailCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: ACMClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<
|
|
29
|
+
ResendValidationEmailCommandInput,
|
|
30
|
+
ResendValidationEmailCommandOutput
|
|
31
|
+
>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ACMClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMClient";
|
|
13
|
+
import { UpdateCertificateOptionsRequest } from "../models/models_0";
|
|
14
|
+
export interface UpdateCertificateOptionsCommandInput
|
|
15
|
+
extends UpdateCertificateOptionsRequest {}
|
|
16
|
+
export interface UpdateCertificateOptionsCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
export declare class UpdateCertificateOptionsCommand extends $Command<
|
|
19
|
+
UpdateCertificateOptionsCommandInput,
|
|
20
|
+
UpdateCertificateOptionsCommandOutput,
|
|
21
|
+
ACMClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UpdateCertificateOptionsCommandInput;
|
|
24
|
+
constructor(input: UpdateCertificateOptionsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ACMClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<
|
|
30
|
+
UpdateCertificateOptionsCommandInput,
|
|
31
|
+
UpdateCertificateOptionsCommandOutput
|
|
32
|
+
>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export * from "./AddTagsToCertificateCommand";
|
|
2
|
-
export * from "./DeleteCertificateCommand";
|
|
3
|
-
export * from "./DescribeCertificateCommand";
|
|
4
|
-
export * from "./ExportCertificateCommand";
|
|
5
|
-
export * from "./GetAccountConfigurationCommand";
|
|
6
|
-
export * from "./GetCertificateCommand";
|
|
7
|
-
export * from "./ImportCertificateCommand";
|
|
8
|
-
export * from "./ListCertificatesCommand";
|
|
9
|
-
export * from "./ListTagsForCertificateCommand";
|
|
10
|
-
export * from "./PutAccountConfigurationCommand";
|
|
11
|
-
export * from "./RemoveTagsFromCertificateCommand";
|
|
12
|
-
export * from "./RenewCertificateCommand";
|
|
13
|
-
export * from "./RequestCertificateCommand";
|
|
14
|
-
export * from "./ResendValidationEmailCommand";
|
|
15
|
-
export * from "./UpdateCertificateOptionsCommand";
|
|
1
|
+
export * from "./AddTagsToCertificateCommand";
|
|
2
|
+
export * from "./DeleteCertificateCommand";
|
|
3
|
+
export * from "./DescribeCertificateCommand";
|
|
4
|
+
export * from "./ExportCertificateCommand";
|
|
5
|
+
export * from "./GetAccountConfigurationCommand";
|
|
6
|
+
export * from "./GetCertificateCommand";
|
|
7
|
+
export * from "./ImportCertificateCommand";
|
|
8
|
+
export * from "./ListCertificatesCommand";
|
|
9
|
+
export * from "./ListTagsForCertificateCommand";
|
|
10
|
+
export * from "./PutAccountConfigurationCommand";
|
|
11
|
+
export * from "./RemoveTagsFromCertificateCommand";
|
|
12
|
+
export * from "./RenewCertificateCommand";
|
|
13
|
+
export * from "./RequestCertificateCommand";
|
|
14
|
+
export * from "./ResendValidationEmailCommand";
|
|
15
|
+
export * from "./UpdateCertificateOptionsCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from "./ACM";
|
|
2
|
-
export * from "./ACMClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export * from "./waiters";
|
|
7
|
-
export { ACMServiceException } from "./models/ACMServiceException";
|
|
1
|
+
export * from "./ACM";
|
|
2
|
+
export * from "./ACMClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export * from "./waiters";
|
|
7
|
+
export { ACMServiceException } from "./models/ACMServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class ACMServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|