@aws-sdk/client-acm-pca 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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ACMPCAServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +250 -2
- package/dist-cjs/protocols/Aws_json1_1.js +271 -990
- package/dist-es/index.js +1 -0
- package/dist-es/models/ACMPCAServiceException.js +12 -0
- package/dist-es/models/models_0.js +230 -1
- package/dist-es/protocols/Aws_json1_1.js +566 -1045
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ACMPCAServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +135 -77
- package/dist-types/ts3.4/ACMPCA.d.ts +120 -0
- package/dist-types/ts3.4/ACMPCAClient.d.ts +96 -0
- package/dist-types/ts3.4/commands/CreateCertificateAuthorityAuditReportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreatePermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeCertificateAuthorityAuditReportCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCertificateAuthorityCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCertificateAuthorityCsrCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ImportCertificateAuthorityCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/IssueCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListCertificateAuthoritiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RestoreCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateCertificateAuthorityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +23 -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/ACMPCAServiceException.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 +937 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListCertificateAuthoritiesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPermissionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +71 -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 +3 -0
- package/dist-types/ts3.4/waiters/waitForAuditReportCreated.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForCertificateAuthorityCSRCreated.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForCertificateIssued.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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { DeleteCertificateAuthorityRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteCertificateAuthorityCommandInput extends DeleteCertificateAuthorityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteCertificateAuthorityCommand extends $Command<DeleteCertificateAuthorityCommandInput, DeleteCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteCertificateAuthorityCommandInput;
|
|
12
|
+
constructor(input: DeleteCertificateAuthorityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCertificateAuthorityCommandInput, DeleteCertificateAuthorityCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { DeletePermissionRequest } from "../models/models_0";
|
|
5
|
+
export interface DeletePermissionCommandInput extends DeletePermissionRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeletePermissionCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeletePermissionCommand extends $Command<DeletePermissionCommandInput, DeletePermissionCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: DeletePermissionCommandInput;
|
|
12
|
+
constructor(input: DeletePermissionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePermissionCommandInput, DeletePermissionCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { DeletePolicyRequest } from "../models/models_0";
|
|
5
|
+
export interface DeletePolicyCommandInput extends DeletePolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeletePolicyCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeletePolicyCommand extends $Command<DeletePolicyCommandInput, DeletePolicyCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: DeletePolicyCommandInput;
|
|
12
|
+
constructor(input: DeletePolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { DescribeCertificateAuthorityAuditReportRequest, DescribeCertificateAuthorityAuditReportResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeCertificateAuthorityAuditReportCommandInput extends DescribeCertificateAuthorityAuditReportRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeCertificateAuthorityAuditReportCommandOutput extends DescribeCertificateAuthorityAuditReportResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeCertificateAuthorityAuditReportCommand extends $Command<DescribeCertificateAuthorityAuditReportCommandInput, DescribeCertificateAuthorityAuditReportCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeCertificateAuthorityAuditReportCommandInput;
|
|
12
|
+
constructor(input: DescribeCertificateAuthorityAuditReportCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCertificateAuthorityAuditReportCommandInput, DescribeCertificateAuthorityAuditReportCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { DescribeCertificateAuthorityRequest, DescribeCertificateAuthorityResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeCertificateAuthorityCommandInput extends DescribeCertificateAuthorityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeCertificateAuthorityCommandOutput extends DescribeCertificateAuthorityResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeCertificateAuthorityCommand extends $Command<DescribeCertificateAuthorityCommandInput, DescribeCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeCertificateAuthorityCommandInput;
|
|
12
|
+
constructor(input: DescribeCertificateAuthorityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCertificateAuthorityCommandInput, DescribeCertificateAuthorityCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { GetCertificateAuthorityCertificateRequest, GetCertificateAuthorityCertificateResponse } from "../models/models_0";
|
|
5
|
+
export interface GetCertificateAuthorityCertificateCommandInput extends GetCertificateAuthorityCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetCertificateAuthorityCertificateCommandOutput extends GetCertificateAuthorityCertificateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetCertificateAuthorityCertificateCommand extends $Command<GetCertificateAuthorityCertificateCommandInput, GetCertificateAuthorityCertificateCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: GetCertificateAuthorityCertificateCommandInput;
|
|
12
|
+
constructor(input: GetCertificateAuthorityCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCertificateAuthorityCertificateCommandInput, GetCertificateAuthorityCertificateCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { GetCertificateAuthorityCsrRequest, GetCertificateAuthorityCsrResponse } from "../models/models_0";
|
|
5
|
+
export interface GetCertificateAuthorityCsrCommandInput extends GetCertificateAuthorityCsrRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetCertificateAuthorityCsrCommandOutput extends GetCertificateAuthorityCsrResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetCertificateAuthorityCsrCommand extends $Command<GetCertificateAuthorityCsrCommandInput, GetCertificateAuthorityCsrCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: GetCertificateAuthorityCsrCommandInput;
|
|
12
|
+
constructor(input: GetCertificateAuthorityCsrCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCertificateAuthorityCsrCommandInput, GetCertificateAuthorityCsrCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
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, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: GetCertificateCommandInput;
|
|
12
|
+
constructor(input: GetCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, 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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
|
|
5
|
+
export interface GetPolicyCommandInput extends GetPolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: GetPolicyCommandInput;
|
|
12
|
+
constructor(input: GetPolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { ImportCertificateAuthorityCertificateRequest } from "../models/models_0";
|
|
5
|
+
export interface ImportCertificateAuthorityCertificateCommandInput extends ImportCertificateAuthorityCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ImportCertificateAuthorityCertificateCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ImportCertificateAuthorityCertificateCommand extends $Command<ImportCertificateAuthorityCertificateCommandInput, ImportCertificateAuthorityCertificateCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: ImportCertificateAuthorityCertificateCommandInput;
|
|
12
|
+
constructor(input: ImportCertificateAuthorityCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportCertificateAuthorityCertificateCommandInput, ImportCertificateAuthorityCertificateCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { IssueCertificateRequest, IssueCertificateResponse } from "../models/models_0";
|
|
5
|
+
export interface IssueCertificateCommandInput extends IssueCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface IssueCertificateCommandOutput extends IssueCertificateResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class IssueCertificateCommand extends $Command<IssueCertificateCommandInput, IssueCertificateCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: IssueCertificateCommandInput;
|
|
12
|
+
constructor(input: IssueCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<IssueCertificateCommandInput, IssueCertificateCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { ListCertificateAuthoritiesRequest, ListCertificateAuthoritiesResponse } from "../models/models_0";
|
|
5
|
+
export interface ListCertificateAuthoritiesCommandInput extends ListCertificateAuthoritiesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListCertificateAuthoritiesCommandOutput extends ListCertificateAuthoritiesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListCertificateAuthoritiesCommand extends $Command<ListCertificateAuthoritiesCommandInput, ListCertificateAuthoritiesCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: ListCertificateAuthoritiesCommandInput;
|
|
12
|
+
constructor(input: ListCertificateAuthoritiesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCertificateAuthoritiesCommandInput, ListCertificateAuthoritiesCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListPermissionsCommandInput extends ListPermissionsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListPermissionsCommandOutput extends ListPermissionsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListPermissionsCommand extends $Command<ListPermissionsCommandInput, ListPermissionsCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: ListPermissionsCommandInput;
|
|
12
|
+
constructor(input: ListPermissionsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPermissionsCommandInput, ListPermissionsCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListTagsCommandInput extends ListTagsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: ListTagsCommandInput;
|
|
12
|
+
constructor(input: ListTagsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { PutPolicyRequest } from "../models/models_0";
|
|
5
|
+
export interface PutPolicyCommandInput extends PutPolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface PutPolicyCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class PutPolicyCommand extends $Command<PutPolicyCommandInput, PutPolicyCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: PutPolicyCommandInput;
|
|
12
|
+
constructor(input: PutPolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPolicyCommandInput, PutPolicyCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { RestoreCertificateAuthorityRequest } from "../models/models_0";
|
|
5
|
+
export interface RestoreCertificateAuthorityCommandInput extends RestoreCertificateAuthorityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface RestoreCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class RestoreCertificateAuthorityCommand extends $Command<RestoreCertificateAuthorityCommandInput, RestoreCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: RestoreCertificateAuthorityCommandInput;
|
|
12
|
+
constructor(input: RestoreCertificateAuthorityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreCertificateAuthorityCommandInput, RestoreCertificateAuthorityCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { RevokeCertificateRequest } from "../models/models_0";
|
|
5
|
+
export interface RevokeCertificateCommandInput extends RevokeCertificateRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface RevokeCertificateCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class RevokeCertificateCommand extends $Command<RevokeCertificateCommandInput, RevokeCertificateCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: RevokeCertificateCommandInput;
|
|
12
|
+
constructor(input: RevokeCertificateCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RevokeCertificateCommandInput, RevokeCertificateCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { TagCertificateAuthorityRequest } from "../models/models_0";
|
|
5
|
+
export interface TagCertificateAuthorityCommandInput extends TagCertificateAuthorityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface TagCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class TagCertificateAuthorityCommand extends $Command<TagCertificateAuthorityCommandInput, TagCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: TagCertificateAuthorityCommandInput;
|
|
12
|
+
constructor(input: TagCertificateAuthorityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagCertificateAuthorityCommandInput, TagCertificateAuthorityCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { UntagCertificateAuthorityRequest } from "../models/models_0";
|
|
5
|
+
export interface UntagCertificateAuthorityCommandInput extends UntagCertificateAuthorityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UntagCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UntagCertificateAuthorityCommand extends $Command<UntagCertificateAuthorityCommandInput, UntagCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: UntagCertificateAuthorityCommandInput;
|
|
12
|
+
constructor(input: UntagCertificateAuthorityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagCertificateAuthorityCommandInput, UntagCertificateAuthorityCommandOutput>;
|
|
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 { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient";
|
|
4
|
+
import { UpdateCertificateAuthorityRequest } from "../models/models_0";
|
|
5
|
+
export interface UpdateCertificateAuthorityCommandInput extends UpdateCertificateAuthorityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateCertificateAuthorityCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateCertificateAuthorityCommand extends $Command<UpdateCertificateAuthorityCommandInput, UpdateCertificateAuthorityCommandOutput, ACMPCAClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateCertificateAuthorityCommandInput;
|
|
12
|
+
constructor(input: UpdateCertificateAuthorityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ACMPCAClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCertificateAuthorityCommandInput, UpdateCertificateAuthorityCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export * from "./CreateCertificateAuthorityAuditReportCommand";
|
|
2
|
+
export * from "./CreateCertificateAuthorityCommand";
|
|
3
|
+
export * from "./CreatePermissionCommand";
|
|
4
|
+
export * from "./DeleteCertificateAuthorityCommand";
|
|
5
|
+
export * from "./DeletePermissionCommand";
|
|
6
|
+
export * from "./DeletePolicyCommand";
|
|
7
|
+
export * from "./DescribeCertificateAuthorityAuditReportCommand";
|
|
8
|
+
export * from "./DescribeCertificateAuthorityCommand";
|
|
9
|
+
export * from "./GetCertificateAuthorityCertificateCommand";
|
|
10
|
+
export * from "./GetCertificateAuthorityCsrCommand";
|
|
11
|
+
export * from "./GetCertificateCommand";
|
|
12
|
+
export * from "./GetPolicyCommand";
|
|
13
|
+
export * from "./ImportCertificateAuthorityCertificateCommand";
|
|
14
|
+
export * from "./IssueCertificateCommand";
|
|
15
|
+
export * from "./ListCertificateAuthoritiesCommand";
|
|
16
|
+
export * from "./ListPermissionsCommand";
|
|
17
|
+
export * from "./ListTagsCommand";
|
|
18
|
+
export * from "./PutPolicyCommand";
|
|
19
|
+
export * from "./RestoreCertificateAuthorityCommand";
|
|
20
|
+
export * from "./RevokeCertificateCommand";
|
|
21
|
+
export * from "./TagCertificateAuthorityCommand";
|
|
22
|
+
export * from "./UntagCertificateAuthorityCommand";
|
|
23
|
+
export * from "./UpdateCertificateAuthorityCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|