@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
|
@@ -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 { PutAccountConfigurationRequest } from "../models/models_0";
|
|
5
|
+
export interface PutAccountConfigurationCommandInput extends PutAccountConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface PutAccountConfigurationCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class PutAccountConfigurationCommand extends $Command<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: PutAccountConfigurationCommandInput;
|
|
12
|
+
constructor(input: PutAccountConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput>;
|
|
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 { RemoveTagsFromCertificateRequest } from "../models/models_0";
|
|
5
|
+
export interface RemoveTagsFromCertificateCommandInput extends RemoveTagsFromCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class RemoveTagsFromCertificateCommand extends $Command<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: RemoveTagsFromCertificateCommandInput;
|
|
12
|
+
constructor(input: RemoveTagsFromCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput>;
|
|
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 { RenewCertificateRequest } from "../models/models_0";
|
|
5
|
+
export interface RenewCertificateCommandInput extends RenewCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface RenewCertificateCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class RenewCertificateCommand extends $Command<RenewCertificateCommandInput, RenewCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: RenewCertificateCommandInput;
|
|
12
|
+
constructor(input: RenewCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RenewCertificateCommandInput, RenewCertificateCommandOutput>;
|
|
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 { RequestCertificateRequest, RequestCertificateResponse } from "../models/models_0";
|
|
5
|
+
export interface RequestCertificateCommandInput extends RequestCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface RequestCertificateCommandOutput extends RequestCertificateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class RequestCertificateCommand extends $Command<RequestCertificateCommandInput, RequestCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: RequestCertificateCommandInput;
|
|
12
|
+
constructor(input: RequestCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RequestCertificateCommandInput, RequestCertificateCommandOutput>;
|
|
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 { ResendValidationEmailRequest } from "../models/models_0";
|
|
5
|
+
export interface ResendValidationEmailCommandInput extends ResendValidationEmailRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ResendValidationEmailCommand extends $Command<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: ResendValidationEmailCommandInput;
|
|
12
|
+
constructor(input: ResendValidationEmailCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput>;
|
|
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 { UpdateCertificateOptionsRequest } from "../models/models_0";
|
|
5
|
+
export interface UpdateCertificateOptionsCommandInput extends UpdateCertificateOptionsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateCertificateOptionsCommand extends $Command<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput, ACMClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateCertificateOptionsCommandInput;
|
|
12
|
+
constructor(input: UpdateCertificateOptionsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +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";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|