@aws-sdk/client-acm-pca 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/ACMPCA.d.ts +442 -120
- package/dist-types/ts3.4/ACMPCAClient.d.ts +267 -96
- package/dist-types/ts3.4/commands/CreateCertificateAuthorityAuditReportCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateCertificateAuthorityCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreatePermissionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteCertificateAuthorityCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeletePermissionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeCertificateAuthorityAuditReportCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeCertificateAuthorityCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCertificateAuthorityCertificateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCertificateAuthorityCsrCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ImportCertificateAuthorityCertificateCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/IssueCertificateCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListCertificateAuthoritiesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RestoreCertificateAuthorityCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/TagCertificateAuthorityCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UntagCertificateAuthorityCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateCertificateAuthorityCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +23 -23
- 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/ACMPCAServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +933 -847
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListCertificateAuthoritiesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPermissionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/dist-types/ts3.4/waiters/index.d.ts +3 -3
- package/dist-types/ts3.4/waiters/waitForAuditReportCreated.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForCertificateAuthorityCSRCreated.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForCertificateIssued.d.ts +13 -7
- package/package.json +35 -35
|
@@ -1,17 +1,32 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import { DeletePolicyRequest } from "../models/models_0";
|
|
14
|
+
export interface DeletePolicyCommandInput extends DeletePolicyRequest {}
|
|
15
|
+
export interface DeletePolicyCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeletePolicyCommand extends $Command<
|
|
18
|
+
DeletePolicyCommandInput,
|
|
19
|
+
DeletePolicyCommandOutput,
|
|
20
|
+
ACMPCAClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeletePolicyCommandInput;
|
|
23
|
+
constructor(input: DeletePolicyCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeCertificateAuthorityAuditReportRequest,
|
|
15
|
+
DescribeCertificateAuthorityAuditReportResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeCertificateAuthorityAuditReportCommandInput
|
|
18
|
+
extends DescribeCertificateAuthorityAuditReportRequest {}
|
|
19
|
+
export interface DescribeCertificateAuthorityAuditReportCommandOutput
|
|
20
|
+
extends DescribeCertificateAuthorityAuditReportResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeCertificateAuthorityAuditReportCommand extends $Command<
|
|
24
|
+
DescribeCertificateAuthorityAuditReportCommandInput,
|
|
25
|
+
DescribeCertificateAuthorityAuditReportCommandOutput,
|
|
26
|
+
ACMPCAClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeCertificateAuthorityAuditReportCommandInput;
|
|
29
|
+
constructor(input: DescribeCertificateAuthorityAuditReportCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeCertificateAuthorityAuditReportCommandInput,
|
|
37
|
+
DescribeCertificateAuthorityAuditReportCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeCertificateAuthorityRequest,
|
|
15
|
+
DescribeCertificateAuthorityResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeCertificateAuthorityCommandInput
|
|
18
|
+
extends DescribeCertificateAuthorityRequest {}
|
|
19
|
+
export interface DescribeCertificateAuthorityCommandOutput
|
|
20
|
+
extends DescribeCertificateAuthorityResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeCertificateAuthorityCommand extends $Command<
|
|
24
|
+
DescribeCertificateAuthorityCommandInput,
|
|
25
|
+
DescribeCertificateAuthorityCommandOutput,
|
|
26
|
+
ACMPCAClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeCertificateAuthorityCommandInput;
|
|
29
|
+
constructor(input: DescribeCertificateAuthorityCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeCertificateAuthorityCommandInput,
|
|
37
|
+
DescribeCertificateAuthorityCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import {
|
|
14
|
+
GetCertificateAuthorityCertificateRequest,
|
|
15
|
+
GetCertificateAuthorityCertificateResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetCertificateAuthorityCertificateCommandInput
|
|
18
|
+
extends GetCertificateAuthorityCertificateRequest {}
|
|
19
|
+
export interface GetCertificateAuthorityCertificateCommandOutput
|
|
20
|
+
extends GetCertificateAuthorityCertificateResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetCertificateAuthorityCertificateCommand extends $Command<
|
|
24
|
+
GetCertificateAuthorityCertificateCommandInput,
|
|
25
|
+
GetCertificateAuthorityCertificateCommandOutput,
|
|
26
|
+
ACMPCAClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetCertificateAuthorityCertificateCommandInput;
|
|
29
|
+
constructor(input: GetCertificateAuthorityCertificateCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetCertificateAuthorityCertificateCommandInput,
|
|
37
|
+
GetCertificateAuthorityCertificateCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import {
|
|
14
|
+
GetCertificateAuthorityCsrRequest,
|
|
15
|
+
GetCertificateAuthorityCsrResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetCertificateAuthorityCsrCommandInput
|
|
18
|
+
extends GetCertificateAuthorityCsrRequest {}
|
|
19
|
+
export interface GetCertificateAuthorityCsrCommandOutput
|
|
20
|
+
extends GetCertificateAuthorityCsrResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetCertificateAuthorityCsrCommand extends $Command<
|
|
24
|
+
GetCertificateAuthorityCsrCommandInput,
|
|
25
|
+
GetCertificateAuthorityCsrCommandOutput,
|
|
26
|
+
ACMPCAClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetCertificateAuthorityCsrCommandInput;
|
|
29
|
+
constructor(input: GetCertificateAuthorityCsrCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetCertificateAuthorityCsrCommandInput,
|
|
37
|
+
GetCertificateAuthorityCsrCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import {
|
|
14
|
+
GetCertificateRequest,
|
|
15
|
+
GetCertificateResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetCertificateCommandInput extends GetCertificateRequest {}
|
|
18
|
+
export interface GetCertificateCommandOutput
|
|
19
|
+
extends GetCertificateResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetCertificateCommand extends $Command<
|
|
23
|
+
GetCertificateCommandInput,
|
|
24
|
+
GetCertificateCommandOutput,
|
|
25
|
+
ACMPCAClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetCertificateCommandInput;
|
|
28
|
+
constructor(input: GetCertificateCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetCertificateCommandInput, GetCertificateCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
|
|
14
|
+
export interface GetPolicyCommandInput extends GetPolicyRequest {}
|
|
15
|
+
export interface GetPolicyCommandOutput
|
|
16
|
+
extends GetPolicyResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetPolicyCommand extends $Command<
|
|
20
|
+
GetPolicyCommandInput,
|
|
21
|
+
GetPolicyCommandOutput,
|
|
22
|
+
ACMPCAClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetPolicyCommandInput;
|
|
25
|
+
constructor(input: GetPolicyCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import { ImportCertificateAuthorityCertificateRequest } from "../models/models_0";
|
|
14
|
+
export interface ImportCertificateAuthorityCertificateCommandInput
|
|
15
|
+
extends ImportCertificateAuthorityCertificateRequest {}
|
|
16
|
+
export interface ImportCertificateAuthorityCertificateCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ImportCertificateAuthorityCertificateCommand extends $Command<
|
|
20
|
+
ImportCertificateAuthorityCertificateCommandInput,
|
|
21
|
+
ImportCertificateAuthorityCertificateCommandOutput,
|
|
22
|
+
ACMPCAClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ImportCertificateAuthorityCertificateCommandInput;
|
|
25
|
+
constructor(input: ImportCertificateAuthorityCertificateCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
ImportCertificateAuthorityCertificateCommandInput,
|
|
33
|
+
ImportCertificateAuthorityCertificateCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import {
|
|
14
|
+
IssueCertificateRequest,
|
|
15
|
+
IssueCertificateResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface IssueCertificateCommandInput extends IssueCertificateRequest {}
|
|
18
|
+
export interface IssueCertificateCommandOutput
|
|
19
|
+
extends IssueCertificateResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class IssueCertificateCommand extends $Command<
|
|
23
|
+
IssueCertificateCommandInput,
|
|
24
|
+
IssueCertificateCommandOutput,
|
|
25
|
+
ACMPCAClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: IssueCertificateCommandInput;
|
|
28
|
+
constructor(input: IssueCertificateCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<IssueCertificateCommandInput, IssueCertificateCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import {
|
|
14
|
+
ListCertificateAuthoritiesRequest,
|
|
15
|
+
ListCertificateAuthoritiesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListCertificateAuthoritiesCommandInput
|
|
18
|
+
extends ListCertificateAuthoritiesRequest {}
|
|
19
|
+
export interface ListCertificateAuthoritiesCommandOutput
|
|
20
|
+
extends ListCertificateAuthoritiesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListCertificateAuthoritiesCommand extends $Command<
|
|
24
|
+
ListCertificateAuthoritiesCommandInput,
|
|
25
|
+
ListCertificateAuthoritiesCommandOutput,
|
|
26
|
+
ACMPCAClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListCertificateAuthoritiesCommandInput;
|
|
29
|
+
constructor(input: ListCertificateAuthoritiesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListCertificateAuthoritiesCommandInput,
|
|
37
|
+
ListCertificateAuthoritiesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
ACMPCAClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ACMPCAClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPermissionsRequest,
|
|
15
|
+
ListPermissionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPermissionsCommandInput extends ListPermissionsRequest {}
|
|
18
|
+
export interface ListPermissionsCommandOutput
|
|
19
|
+
extends ListPermissionsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListPermissionsCommand extends $Command<
|
|
23
|
+
ListPermissionsCommandInput,
|
|
24
|
+
ListPermissionsCommandOutput,
|
|
25
|
+
ACMPCAClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListPermissionsCommandInput;
|
|
28
|
+
constructor(input: ListPermissionsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ACMPCAClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListPermissionsCommandInput, ListPermissionsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|