@aws-sdk/client-acm-pca 3.1087.0 → 3.1089.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/index.js +1 -1
- package/dist-types/ts3.4/ACMPCA.d.ts +79 -126
- package/dist-types/ts3.4/ACMPCAClient.d.ts +18 -37
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/CreateCertificateAuthorityAuditReportCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateCertificateAuthorityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreatePermissionCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteCertificateAuthorityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeletePermissionCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DescribeCertificateAuthorityAuditReportCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeCertificateAuthorityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetCertificateAuthorityCertificateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetCertificateAuthorityCsrCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ImportCertificateAuthorityCertificateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/IssueCertificateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListCertificateAuthoritiesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/RestoreCertificateAuthorityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/TagCertificateAuthorityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UntagCertificateAuthorityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateCertificateAuthorityCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +19 -66
- package/dist-types/ts3.4/models/models_0.d.ts +2 -6
- package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForAuditReportCreated.d.ts +4 -9
- package/dist-types/ts3.4/waiters/waitForCertificateAuthorityCSRCreated.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForCertificateIssued.d.ts +3 -5
- package/package.json +38 -38
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ServiceInputTypes,
|
|
5
|
-
ServiceOutputTypes,
|
|
6
|
-
} from "./ACMPCAClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./ACMPCAClient";
|
|
3
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
4
|
added: EndpointParameterInstructions,
|
|
12
5
|
plugins: (
|
|
13
6
|
CommandCtor: any,
|
|
14
7
|
clientStack: any,
|
|
15
8
|
config: any,
|
|
16
|
-
options: any
|
|
9
|
+
options: any,
|
|
17
10
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
11
|
op: string,
|
|
19
12
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
13
|
+
smithyContext?: Record<string, unknown>,
|
|
21
14
|
) => {
|
|
22
|
-
new (
|
|
15
|
+
new (
|
|
16
|
+
input: I,
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
18
|
I,
|
|
24
19
|
O,
|
|
25
20
|
ACMPCAClientResolvedConfig,
|
|
@@ -38,9 +33,4 @@ export declare const command: <
|
|
|
38
33
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
34
|
};
|
|
40
35
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
36
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateCertificateAuthorityAuditReportResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateCertificateAuthorityAuditReportCommandInput
|
|
8
|
-
extends CreateCertificateAuthorityAuditReportRequest {}
|
|
7
|
+
export interface CreateCertificateAuthorityAuditReportCommandInput extends CreateCertificateAuthorityAuditReportRequest {}
|
|
9
8
|
export interface CreateCertificateAuthorityAuditReportCommandOutput
|
|
10
|
-
extends CreateCertificateAuthorityAuditReportResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateCertificateAuthorityAuditReportResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateCertificateAuthorityAuditReportCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateCertificateAuthorityAuditReportCommandInput
|
|
12
|
+
input: CreateCertificateAuthorityAuditReportCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateCertificateAuthorityAuditReportCommandInput,
|
|
17
15
|
CreateCertificateAuthorityAuditReportCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateCertificateAuthorityAuditReportCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateCertificateAuthorityAuditReportCommandInput
|
|
21
|
+
input: CreateCertificateAuthorityAuditReportCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateCertificateAuthorityAuditReportCommandInput,
|
|
26
24
|
CreateCertificateAuthorityAuditReportCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateCertificateAuthorityResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateCertificateAuthorityCommandInput
|
|
8
|
-
extends CreateCertificateAuthorityRequest {}
|
|
7
|
+
export interface CreateCertificateAuthorityCommandInput extends CreateCertificateAuthorityRequest {}
|
|
9
8
|
export interface CreateCertificateAuthorityCommandOutput
|
|
10
|
-
extends CreateCertificateAuthorityResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateCertificateAuthorityResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateCertificateAuthorityCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateCertificateAuthorityCommandInput
|
|
12
|
+
input: CreateCertificateAuthorityCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateCertificateAuthorityCommandInput,
|
|
17
15
|
CreateCertificateAuthorityCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateCertificateAuthorityCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateCertificateAuthorityCommandInput
|
|
21
|
+
input: CreateCertificateAuthorityCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateCertificateAuthorityCommandInput,
|
|
26
24
|
CreateCertificateAuthorityCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface CreatePermissionCommandInput extends CreatePermissionRequest {}
|
|
|
5
5
|
export interface CreatePermissionCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const CreatePermissionCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: CreatePermissionCommandInput
|
|
8
|
+
input: CreatePermissionCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
CreatePermissionCommandInput,
|
|
11
11
|
CreatePermissionCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const CreatePermissionCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: CreatePermissionCommandInput
|
|
17
|
+
input: CreatePermissionCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
CreatePermissionCommandInput,
|
|
20
20
|
CreatePermissionCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { DeleteCertificateAuthorityRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface DeleteCertificateAuthorityCommandInput
|
|
5
|
-
|
|
6
|
-
export interface DeleteCertificateAuthorityCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface DeleteCertificateAuthorityCommandInput extends DeleteCertificateAuthorityRequest {}
|
|
5
|
+
export interface DeleteCertificateAuthorityCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const DeleteCertificateAuthorityCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteCertificateAuthorityCommandInput
|
|
8
|
+
input: DeleteCertificateAuthorityCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteCertificateAuthorityCommandInput,
|
|
13
11
|
DeleteCertificateAuthorityCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteCertificateAuthorityCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteCertificateAuthorityCommandInput
|
|
17
|
+
input: DeleteCertificateAuthorityCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteCertificateAuthorityCommandInput,
|
|
22
20
|
DeleteCertificateAuthorityCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface DeletePermissionCommandInput extends DeletePermissionRequest {}
|
|
|
5
5
|
export interface DeletePermissionCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const DeletePermissionCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: DeletePermissionCommandInput
|
|
8
|
+
input: DeletePermissionCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeletePermissionCommandInput,
|
|
11
11
|
DeletePermissionCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const DeletePermissionCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: DeletePermissionCommandInput
|
|
17
|
+
input: DeletePermissionCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
DeletePermissionCommandInput,
|
|
20
20
|
DeletePermissionCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface DeletePolicyCommandInput extends DeletePolicyRequest {}
|
|
|
5
5
|
export interface DeletePolicyCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const DeletePolicyCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: DeletePolicyCommandInput
|
|
8
|
+
input: DeletePolicyCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DeletePolicyCommandInput,
|
|
11
11
|
DeletePolicyCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const DeletePolicyCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: DeletePolicyCommandInput
|
|
17
|
+
input: DeletePolicyCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
DeletePolicyCommandInput,
|
|
20
20
|
DeletePolicyCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeCertificateAuthorityAuditReportResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeCertificateAuthorityAuditReportCommandInput
|
|
8
|
-
extends DescribeCertificateAuthorityAuditReportRequest {}
|
|
7
|
+
export interface DescribeCertificateAuthorityAuditReportCommandInput extends DescribeCertificateAuthorityAuditReportRequest {}
|
|
9
8
|
export interface DescribeCertificateAuthorityAuditReportCommandOutput
|
|
10
|
-
extends DescribeCertificateAuthorityAuditReportResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeCertificateAuthorityAuditReportResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeCertificateAuthorityAuditReportCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeCertificateAuthorityAuditReportCommandInput
|
|
12
|
+
input: DescribeCertificateAuthorityAuditReportCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeCertificateAuthorityAuditReportCommandInput,
|
|
17
15
|
DescribeCertificateAuthorityAuditReportCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeCertificateAuthorityAuditReportCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeCertificateAuthorityAuditReportCommandInput
|
|
21
|
+
input: DescribeCertificateAuthorityAuditReportCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeCertificateAuthorityAuditReportCommandInput,
|
|
26
24
|
DescribeCertificateAuthorityAuditReportCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeCertificateAuthorityResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeCertificateAuthorityCommandInput
|
|
8
|
-
extends DescribeCertificateAuthorityRequest {}
|
|
7
|
+
export interface DescribeCertificateAuthorityCommandInput extends DescribeCertificateAuthorityRequest {}
|
|
9
8
|
export interface DescribeCertificateAuthorityCommandOutput
|
|
10
|
-
extends DescribeCertificateAuthorityResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeCertificateAuthorityResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeCertificateAuthorityCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeCertificateAuthorityCommandInput
|
|
12
|
+
input: DescribeCertificateAuthorityCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeCertificateAuthorityCommandInput,
|
|
17
15
|
DescribeCertificateAuthorityCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeCertificateAuthorityCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeCertificateAuthorityCommandInput
|
|
21
|
+
input: DescribeCertificateAuthorityCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeCertificateAuthorityCommandInput,
|
|
26
24
|
DescribeCertificateAuthorityCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetCertificateAuthorityCertificateResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetCertificateAuthorityCertificateCommandInput
|
|
8
|
-
extends GetCertificateAuthorityCertificateRequest {}
|
|
7
|
+
export interface GetCertificateAuthorityCertificateCommandInput extends GetCertificateAuthorityCertificateRequest {}
|
|
9
8
|
export interface GetCertificateAuthorityCertificateCommandOutput
|
|
10
|
-
extends GetCertificateAuthorityCertificateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetCertificateAuthorityCertificateResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetCertificateAuthorityCertificateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetCertificateAuthorityCertificateCommandInput
|
|
12
|
+
input: GetCertificateAuthorityCertificateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetCertificateAuthorityCertificateCommandInput,
|
|
17
15
|
GetCertificateAuthorityCertificateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetCertificateAuthorityCertificateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetCertificateAuthorityCertificateCommandInput
|
|
21
|
+
input: GetCertificateAuthorityCertificateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetCertificateAuthorityCertificateCommandInput,
|
|
26
24
|
GetCertificateAuthorityCertificateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetCertificateAuthorityCsrResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetCertificateAuthorityCsrCommandInput
|
|
8
|
-
extends GetCertificateAuthorityCsrRequest {}
|
|
7
|
+
export interface GetCertificateAuthorityCsrCommandInput extends GetCertificateAuthorityCsrRequest {}
|
|
9
8
|
export interface GetCertificateAuthorityCsrCommandOutput
|
|
10
|
-
extends GetCertificateAuthorityCsrResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetCertificateAuthorityCsrResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetCertificateAuthorityCsrCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetCertificateAuthorityCsrCommandInput
|
|
12
|
+
input: GetCertificateAuthorityCsrCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetCertificateAuthorityCsrCommandInput,
|
|
17
15
|
GetCertificateAuthorityCsrCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetCertificateAuthorityCsrCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetCertificateAuthorityCsrCommandInput
|
|
21
|
+
input: GetCertificateAuthorityCsrCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetCertificateAuthorityCsrCommandInput,
|
|
26
24
|
GetCertificateAuthorityCsrCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetCertificateRequest,
|
|
4
|
-
GetCertificateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetCertificateRequest, GetCertificateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetCertificateCommandInput extends GetCertificateRequest {}
|
|
8
|
-
export interface GetCertificateCommandOutput
|
|
9
|
-
extends GetCertificateResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetCertificateCommandOutput extends GetCertificateResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetCertificateCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetCertificateCommandInput
|
|
8
|
+
input: GetCertificateCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetCertificateCommandInput,
|
|
16
11
|
GetCertificateCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetCertificateCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetCertificateCommandInput
|
|
17
|
+
input: GetCertificateCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetCertificateCommandInput,
|
|
25
20
|
GetCertificateCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetPolicyCommandInput extends GetPolicyRequest {}
|
|
5
|
-
export interface GetPolicyCommandOutput
|
|
6
|
-
extends GetPolicyResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetPolicyCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetPolicyCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetPolicyCommandInput,
|
|
11
11
|
GetPolicyCommandOutput,
|
|
12
12
|
import("..").ACMPCAClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetPolicyCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetPolicyCommandInput,
|
|
18
20
|
GetPolicyCommandOutput,
|
|
19
21
|
import("..").ACMPCAClientResolvedConfig,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { ImportCertificateAuthorityCertificateRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface ImportCertificateAuthorityCertificateCommandInput
|
|
5
|
-
|
|
6
|
-
export interface ImportCertificateAuthorityCertificateCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface ImportCertificateAuthorityCertificateCommandInput extends ImportCertificateAuthorityCertificateRequest {}
|
|
5
|
+
export interface ImportCertificateAuthorityCertificateCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const ImportCertificateAuthorityCertificateCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ImportCertificateAuthorityCertificateCommandInput
|
|
8
|
+
input: ImportCertificateAuthorityCertificateCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ImportCertificateAuthorityCertificateCommandInput,
|
|
13
11
|
ImportCertificateAuthorityCertificateCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ImportCertificateAuthorityCertificateCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ImportCertificateAuthorityCertificateCommandInput
|
|
17
|
+
input: ImportCertificateAuthorityCertificateCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ImportCertificateAuthorityCertificateCommandInput,
|
|
22
20
|
ImportCertificateAuthorityCertificateCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
IssueCertificateRequest,
|
|
4
|
-
IssueCertificateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { IssueCertificateRequest, IssueCertificateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface IssueCertificateCommandInput extends IssueCertificateRequest {}
|
|
8
|
-
export interface IssueCertificateCommandOutput
|
|
9
|
-
extends IssueCertificateResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface IssueCertificateCommandOutput extends IssueCertificateResponse, __MetadataBearer {}
|
|
11
6
|
declare const IssueCertificateCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: IssueCertificateCommandInput
|
|
8
|
+
input: IssueCertificateCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
IssueCertificateCommandInput,
|
|
16
11
|
IssueCertificateCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const IssueCertificateCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: IssueCertificateCommandInput
|
|
17
|
+
input: IssueCertificateCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
IssueCertificateCommandInput,
|
|
25
20
|
IssueCertificateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListCertificateAuthoritiesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListCertificateAuthoritiesCommandInput
|
|
8
|
-
extends ListCertificateAuthoritiesRequest {}
|
|
7
|
+
export interface ListCertificateAuthoritiesCommandInput extends ListCertificateAuthoritiesRequest {}
|
|
9
8
|
export interface ListCertificateAuthoritiesCommandOutput
|
|
10
|
-
extends ListCertificateAuthoritiesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListCertificateAuthoritiesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListCertificateAuthoritiesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListCertificateAuthoritiesCommandInput
|
|
12
|
+
input: ListCertificateAuthoritiesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListCertificateAuthoritiesCommandInput,
|
|
17
15
|
ListCertificateAuthoritiesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPermissionsRequest,
|
|
4
|
-
ListPermissionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListPermissionsCommandInput extends ListPermissionsRequest {}
|
|
8
|
-
export interface ListPermissionsCommandOutput
|
|
9
|
-
extends ListPermissionsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListPermissionsCommandOutput extends ListPermissionsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListPermissionsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListPermissionsCommandInput
|
|
8
|
+
input: ListPermissionsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListPermissionsCommandInput,
|
|
16
11
|
ListPermissionsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListPermissionsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListPermissionsCommandInput
|
|
17
|
+
input: ListPermissionsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListPermissionsCommandInput,
|
|
25
20
|
ListPermissionsCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListTagsCommandInput extends ListTagsRequest {}
|
|
5
|
-
export interface ListTagsCommandOutput
|
|
6
|
-
extends ListTagsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListTagsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListTagsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListTagsCommandInput,
|
|
11
11
|
ListTagsCommandOutput,
|
|
12
12
|
import("..").ACMPCAClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: ListTagsCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
ListTagsCommandInput,
|
|
18
20
|
ListTagsCommandOutput,
|
|
19
21
|
import("..").ACMPCAClientResolvedConfig,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface PutPolicyCommandInput extends PutPolicyRequest {}
|
|
5
5
|
export interface PutPolicyCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const PutPolicyCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: PutPolicyCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
PutPolicyCommandInput,
|
|
9
11
|
PutPolicyCommandOutput,
|
|
10
12
|
import("..").ACMPCAClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: PutPolicyCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
PutPolicyCommandInput,
|
|
16
20
|
PutPolicyCommandOutput,
|
|
17
21
|
import("..").ACMPCAClientResolvedConfig,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { RestoreCertificateAuthorityRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface RestoreCertificateAuthorityCommandInput
|
|
5
|
-
|
|
6
|
-
export interface RestoreCertificateAuthorityCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface RestoreCertificateAuthorityCommandInput extends RestoreCertificateAuthorityRequest {}
|
|
5
|
+
export interface RestoreCertificateAuthorityCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const RestoreCertificateAuthorityCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: RestoreCertificateAuthorityCommandInput
|
|
8
|
+
input: RestoreCertificateAuthorityCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
RestoreCertificateAuthorityCommandInput,
|
|
13
11
|
RestoreCertificateAuthorityCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const RestoreCertificateAuthorityCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: RestoreCertificateAuthorityCommandInput
|
|
17
|
+
input: RestoreCertificateAuthorityCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
RestoreCertificateAuthorityCommandInput,
|
|
22
20
|
RestoreCertificateAuthorityCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { RevokeCertificateRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface RevokeCertificateCommandInput
|
|
5
|
-
extends RevokeCertificateRequest {}
|
|
4
|
+
export interface RevokeCertificateCommandInput extends RevokeCertificateRequest {}
|
|
6
5
|
export interface RevokeCertificateCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const RevokeCertificateCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: RevokeCertificateCommandInput
|
|
8
|
+
input: RevokeCertificateCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
RevokeCertificateCommandInput,
|
|
12
11
|
RevokeCertificateCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const RevokeCertificateCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: RevokeCertificateCommandInput
|
|
17
|
+
input: RevokeCertificateCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
RevokeCertificateCommandInput,
|
|
21
20
|
RevokeCertificateCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { TagCertificateAuthorityRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface TagCertificateAuthorityCommandInput
|
|
5
|
-
|
|
6
|
-
export interface TagCertificateAuthorityCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface TagCertificateAuthorityCommandInput extends TagCertificateAuthorityRequest {}
|
|
5
|
+
export interface TagCertificateAuthorityCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const TagCertificateAuthorityCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagCertificateAuthorityCommandInput
|
|
8
|
+
input: TagCertificateAuthorityCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagCertificateAuthorityCommandInput,
|
|
13
11
|
TagCertificateAuthorityCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagCertificateAuthorityCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagCertificateAuthorityCommandInput
|
|
17
|
+
input: TagCertificateAuthorityCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagCertificateAuthorityCommandInput,
|
|
22
20
|
TagCertificateAuthorityCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { UntagCertificateAuthorityRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface UntagCertificateAuthorityCommandInput
|
|
5
|
-
|
|
6
|
-
export interface UntagCertificateAuthorityCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface UntagCertificateAuthorityCommandInput extends UntagCertificateAuthorityRequest {}
|
|
5
|
+
export interface UntagCertificateAuthorityCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const UntagCertificateAuthorityCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UntagCertificateAuthorityCommandInput
|
|
8
|
+
input: UntagCertificateAuthorityCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UntagCertificateAuthorityCommandInput,
|
|
13
11
|
UntagCertificateAuthorityCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UntagCertificateAuthorityCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UntagCertificateAuthorityCommandInput
|
|
17
|
+
input: UntagCertificateAuthorityCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UntagCertificateAuthorityCommandInput,
|
|
22
20
|
UntagCertificateAuthorityCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { UpdateCertificateAuthorityRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface UpdateCertificateAuthorityCommandInput
|
|
5
|
-
|
|
6
|
-
export interface UpdateCertificateAuthorityCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface UpdateCertificateAuthorityCommandInput extends UpdateCertificateAuthorityRequest {}
|
|
5
|
+
export interface UpdateCertificateAuthorityCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const UpdateCertificateAuthorityCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateCertificateAuthorityCommandInput
|
|
8
|
+
input: UpdateCertificateAuthorityCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateCertificateAuthorityCommandInput,
|
|
13
11
|
UpdateCertificateAuthorityCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateCertificateAuthorityCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateCertificateAuthorityCommandInput
|
|
17
|
+
input: UpdateCertificateAuthorityCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateCertificateAuthorityCommandInput,
|
|
22
20
|
UpdateCertificateAuthorityCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|