@aws-sdk/client-acm-pca 3.1087.0 → 3.1088.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
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ACMPCAExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,8 +3,7 @@ export declare const AccessMethodType: {
|
|
|
3
3
|
readonly RESOURCE_PKI_MANIFEST: "RESOURCE_PKI_MANIFEST";
|
|
4
4
|
readonly RESOURCE_PKI_NOTIFY: "RESOURCE_PKI_NOTIFY";
|
|
5
5
|
};
|
|
6
|
-
export type AccessMethodType =
|
|
7
|
-
(typeof AccessMethodType)[keyof typeof AccessMethodType];
|
|
6
|
+
export type AccessMethodType = (typeof AccessMethodType)[keyof typeof AccessMethodType];
|
|
8
7
|
export declare const KeyAlgorithm: {
|
|
9
8
|
readonly EC_prime256v1: "EC_prime256v1";
|
|
10
9
|
readonly EC_secp384r1: "EC_secp384r1";
|
|
@@ -30,8 +29,7 @@ export declare const SigningAlgorithm: {
|
|
|
30
29
|
readonly SHA512WITHRSA: "SHA512WITHRSA";
|
|
31
30
|
readonly SM3WITHSM2: "SM3WITHSM2";
|
|
32
31
|
};
|
|
33
|
-
export type SigningAlgorithm =
|
|
34
|
-
(typeof SigningAlgorithm)[keyof typeof SigningAlgorithm];
|
|
32
|
+
export type SigningAlgorithm = (typeof SigningAlgorithm)[keyof typeof SigningAlgorithm];
|
|
35
33
|
export declare const CertificateAuthorityType: {
|
|
36
34
|
readonly ROOT: "ROOT";
|
|
37
35
|
readonly SUBORDINATE: "SUBORDINATE";
|
|
@@ -95,13 +93,11 @@ export declare const AuditReportStatus: {
|
|
|
95
93
|
readonly FAILED: "FAILED";
|
|
96
94
|
readonly SUCCESS: "SUCCESS";
|
|
97
95
|
};
|
|
98
|
-
export type AuditReportStatus =
|
|
99
|
-
(typeof AuditReportStatus)[keyof typeof AuditReportStatus];
|
|
96
|
+
export type AuditReportStatus = (typeof AuditReportStatus)[keyof typeof AuditReportStatus];
|
|
100
97
|
export declare const PolicyQualifierId: {
|
|
101
98
|
readonly CPS: "CPS";
|
|
102
99
|
};
|
|
103
|
-
export type PolicyQualifierId =
|
|
104
|
-
(typeof PolicyQualifierId)[keyof typeof PolicyQualifierId];
|
|
100
|
+
export type PolicyQualifierId = (typeof PolicyQualifierId)[keyof typeof PolicyQualifierId];
|
|
105
101
|
export declare const ExtendedKeyUsageType: {
|
|
106
102
|
readonly CERTIFICATE_TRANSPARENCY: "CERTIFICATE_TRANSPARENCY";
|
|
107
103
|
readonly CLIENT_AUTH: "CLIENT_AUTH";
|
|
@@ -113,8 +109,7 @@ export declare const ExtendedKeyUsageType: {
|
|
|
113
109
|
readonly SMART_CARD_LOGIN: "SMART_CARD_LOGIN";
|
|
114
110
|
readonly TIME_STAMPING: "TIME_STAMPING";
|
|
115
111
|
};
|
|
116
|
-
export type ExtendedKeyUsageType =
|
|
117
|
-
(typeof ExtendedKeyUsageType)[keyof typeof ExtendedKeyUsageType];
|
|
112
|
+
export type ExtendedKeyUsageType = (typeof ExtendedKeyUsageType)[keyof typeof ExtendedKeyUsageType];
|
|
118
113
|
export declare const ValidityPeriodType: {
|
|
119
114
|
readonly ABSOLUTE: "ABSOLUTE";
|
|
120
115
|
readonly DAYS: "DAYS";
|
|
@@ -122,8 +117,7 @@ export declare const ValidityPeriodType: {
|
|
|
122
117
|
readonly MONTHS: "MONTHS";
|
|
123
118
|
readonly YEARS: "YEARS";
|
|
124
119
|
};
|
|
125
|
-
export type ValidityPeriodType =
|
|
126
|
-
(typeof ValidityPeriodType)[keyof typeof ValidityPeriodType];
|
|
120
|
+
export type ValidityPeriodType = (typeof ValidityPeriodType)[keyof typeof ValidityPeriodType];
|
|
127
121
|
export declare const ResourceOwner: {
|
|
128
122
|
readonly OTHER_ACCOUNTS: "OTHER_ACCOUNTS";
|
|
129
123
|
readonly SELF: "SELF";
|
|
@@ -139,5 +133,4 @@ export declare const RevocationReason: {
|
|
|
139
133
|
readonly SUPERSEDED: "SUPERSEDED";
|
|
140
134
|
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
141
135
|
};
|
|
142
|
-
export type RevocationReason =
|
|
143
|
-
(typeof RevocationReason)[keyof typeof RevocationReason];
|
|
136
|
+
export type RevocationReason = (typeof RevocationReason)[keyof typeof RevocationReason];
|
|
@@ -3,142 +3,95 @@ import { ACMPCAServiceException as __BaseException } from "./ACMPCAServiceExcept
|
|
|
3
3
|
export declare class InvalidArgsException extends __BaseException {
|
|
4
4
|
readonly name: "InvalidArgsException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<InvalidArgsException, __BaseException>
|
|
8
|
-
);
|
|
6
|
+
constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
|
|
9
7
|
}
|
|
10
8
|
export declare class InvalidPolicyException extends __BaseException {
|
|
11
9
|
readonly name: "InvalidPolicyException";
|
|
12
10
|
readonly $fault: "client";
|
|
13
|
-
constructor(
|
|
14
|
-
opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>
|
|
15
|
-
);
|
|
11
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>);
|
|
16
12
|
}
|
|
17
13
|
export declare class InvalidTagException extends __BaseException {
|
|
18
14
|
readonly name: "InvalidTagException";
|
|
19
15
|
readonly $fault: "client";
|
|
20
|
-
constructor(
|
|
21
|
-
opts: __ExceptionOptionType<InvalidTagException, __BaseException>
|
|
22
|
-
);
|
|
16
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
23
17
|
}
|
|
24
18
|
export declare class LimitExceededException extends __BaseException {
|
|
25
19
|
readonly name: "LimitExceededException";
|
|
26
20
|
readonly $fault: "client";
|
|
27
|
-
constructor(
|
|
28
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
29
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
30
22
|
}
|
|
31
23
|
export declare class InvalidArnException extends __BaseException {
|
|
32
24
|
readonly name: "InvalidArnException";
|
|
33
25
|
readonly $fault: "client";
|
|
34
|
-
constructor(
|
|
35
|
-
opts: __ExceptionOptionType<InvalidArnException, __BaseException>
|
|
36
|
-
);
|
|
26
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
37
27
|
}
|
|
38
28
|
export declare class InvalidStateException extends __BaseException {
|
|
39
29
|
readonly name: "InvalidStateException";
|
|
40
30
|
readonly $fault: "client";
|
|
41
|
-
constructor(
|
|
42
|
-
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
43
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
44
32
|
}
|
|
45
33
|
export declare class RequestFailedException extends __BaseException {
|
|
46
34
|
readonly name: "RequestFailedException";
|
|
47
35
|
readonly $fault: "client";
|
|
48
|
-
constructor(
|
|
49
|
-
opts: __ExceptionOptionType<RequestFailedException, __BaseException>
|
|
50
|
-
);
|
|
36
|
+
constructor(opts: __ExceptionOptionType<RequestFailedException, __BaseException>);
|
|
51
37
|
}
|
|
52
38
|
export declare class RequestInProgressException extends __BaseException {
|
|
53
39
|
readonly name: "RequestInProgressException";
|
|
54
40
|
readonly $fault: "client";
|
|
55
|
-
constructor(
|
|
56
|
-
opts: __ExceptionOptionType<RequestInProgressException, __BaseException>
|
|
57
|
-
);
|
|
41
|
+
constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
|
|
58
42
|
}
|
|
59
43
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
60
44
|
readonly name: "ResourceNotFoundException";
|
|
61
45
|
readonly $fault: "client";
|
|
62
|
-
constructor(
|
|
63
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
64
|
-
);
|
|
46
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
65
47
|
}
|
|
66
48
|
export declare class PermissionAlreadyExistsException extends __BaseException {
|
|
67
49
|
readonly name: "PermissionAlreadyExistsException";
|
|
68
50
|
readonly $fault: "client";
|
|
69
|
-
constructor(
|
|
70
|
-
opts: __ExceptionOptionType<
|
|
71
|
-
PermissionAlreadyExistsException,
|
|
72
|
-
__BaseException
|
|
73
|
-
>
|
|
74
|
-
);
|
|
51
|
+
constructor(opts: __ExceptionOptionType<PermissionAlreadyExistsException, __BaseException>);
|
|
75
52
|
}
|
|
76
53
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
77
54
|
readonly name: "ConcurrentModificationException";
|
|
78
55
|
readonly $fault: "client";
|
|
79
|
-
constructor(
|
|
80
|
-
opts: __ExceptionOptionType<
|
|
81
|
-
ConcurrentModificationException,
|
|
82
|
-
__BaseException
|
|
83
|
-
>
|
|
84
|
-
);
|
|
56
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
85
57
|
}
|
|
86
58
|
export declare class LockoutPreventedException extends __BaseException {
|
|
87
59
|
readonly name: "LockoutPreventedException";
|
|
88
60
|
readonly $fault: "client";
|
|
89
|
-
constructor(
|
|
90
|
-
opts: __ExceptionOptionType<LockoutPreventedException, __BaseException>
|
|
91
|
-
);
|
|
61
|
+
constructor(opts: __ExceptionOptionType<LockoutPreventedException, __BaseException>);
|
|
92
62
|
}
|
|
93
63
|
export declare class CertificateMismatchException extends __BaseException {
|
|
94
64
|
readonly name: "CertificateMismatchException";
|
|
95
65
|
readonly $fault: "client";
|
|
96
|
-
constructor(
|
|
97
|
-
opts: __ExceptionOptionType<CertificateMismatchException, __BaseException>
|
|
98
|
-
);
|
|
66
|
+
constructor(opts: __ExceptionOptionType<CertificateMismatchException, __BaseException>);
|
|
99
67
|
}
|
|
100
68
|
export declare class InvalidRequestException extends __BaseException {
|
|
101
69
|
readonly name: "InvalidRequestException";
|
|
102
70
|
readonly $fault: "client";
|
|
103
|
-
constructor(
|
|
104
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
105
|
-
);
|
|
71
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
106
72
|
}
|
|
107
73
|
export declare class MalformedCertificateException extends __BaseException {
|
|
108
74
|
readonly name: "MalformedCertificateException";
|
|
109
75
|
readonly $fault: "client";
|
|
110
|
-
constructor(
|
|
111
|
-
opts: __ExceptionOptionType<MalformedCertificateException, __BaseException>
|
|
112
|
-
);
|
|
76
|
+
constructor(opts: __ExceptionOptionType<MalformedCertificateException, __BaseException>);
|
|
113
77
|
}
|
|
114
78
|
export declare class MalformedCSRException extends __BaseException {
|
|
115
79
|
readonly name: "MalformedCSRException";
|
|
116
80
|
readonly $fault: "client";
|
|
117
|
-
constructor(
|
|
118
|
-
opts: __ExceptionOptionType<MalformedCSRException, __BaseException>
|
|
119
|
-
);
|
|
81
|
+
constructor(opts: __ExceptionOptionType<MalformedCSRException, __BaseException>);
|
|
120
82
|
}
|
|
121
83
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
122
84
|
readonly name: "InvalidNextTokenException";
|
|
123
85
|
readonly $fault: "client";
|
|
124
|
-
constructor(
|
|
125
|
-
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
126
|
-
);
|
|
86
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
127
87
|
}
|
|
128
88
|
export declare class RequestAlreadyProcessedException extends __BaseException {
|
|
129
89
|
readonly name: "RequestAlreadyProcessedException";
|
|
130
90
|
readonly $fault: "client";
|
|
131
|
-
constructor(
|
|
132
|
-
opts: __ExceptionOptionType<
|
|
133
|
-
RequestAlreadyProcessedException,
|
|
134
|
-
__BaseException
|
|
135
|
-
>
|
|
136
|
-
);
|
|
91
|
+
constructor(opts: __ExceptionOptionType<RequestAlreadyProcessedException, __BaseException>);
|
|
137
92
|
}
|
|
138
93
|
export declare class TooManyTagsException extends __BaseException {
|
|
139
94
|
readonly name: "TooManyTagsException";
|
|
140
95
|
readonly $fault: "client";
|
|
141
|
-
constructor(
|
|
142
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
143
|
-
);
|
|
96
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
144
97
|
}
|
|
@@ -114,9 +114,7 @@ export interface Tag {
|
|
|
114
114
|
Value?: string | undefined;
|
|
115
115
|
}
|
|
116
116
|
export interface CreateCertificateAuthorityRequest {
|
|
117
|
-
CertificateAuthorityConfiguration:
|
|
118
|
-
| CertificateAuthorityConfiguration
|
|
119
|
-
| undefined;
|
|
117
|
+
CertificateAuthorityConfiguration: CertificateAuthorityConfiguration | undefined;
|
|
120
118
|
RevocationConfiguration?: RevocationConfiguration | undefined;
|
|
121
119
|
CertificateAuthorityType: CertificateAuthorityType | undefined;
|
|
122
120
|
IdempotencyToken?: string | undefined;
|
|
@@ -168,9 +166,7 @@ export interface CertificateAuthority {
|
|
|
168
166
|
NotBefore?: Date | undefined;
|
|
169
167
|
NotAfter?: Date | undefined;
|
|
170
168
|
FailureReason?: FailureReason | undefined;
|
|
171
|
-
CertificateAuthorityConfiguration?:
|
|
172
|
-
| CertificateAuthorityConfiguration
|
|
173
|
-
| undefined;
|
|
169
|
+
CertificateAuthorityConfiguration?: CertificateAuthorityConfiguration | undefined;
|
|
174
170
|
RevocationConfiguration?: RevocationConfiguration | undefined;
|
|
175
171
|
RestorableUntil?: Date | undefined;
|
|
176
172
|
KeyStorageSecurityStandard?: KeyStorageSecurityStandard | undefined;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsCommandInput,
|
|
4
|
-
ListTagsCommandOutput,
|
|
5
|
-
} from "../commands/ListTagsCommand";
|
|
2
|
+
import { ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand";
|
|
6
3
|
import { ACMPCAPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListTags: (
|
|
8
5
|
config: ACMPCAPaginationConfiguration,
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: ACMPCAClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ACMPCAHttpAuthSchemeProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var ACMPCAServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var CertificateMismatchException$: StaticErrorSchema;
|
|
9
5
|
export declare var ConcurrentModificationException$: StaticErrorSchema;
|
|
@@ -7,16 +7,11 @@ import {
|
|
|
7
7
|
import { ACMPCAServiceException } from "../models/ACMPCAServiceException";
|
|
8
8
|
export declare const waitForAuditReportCreated: (
|
|
9
9
|
params: WaiterConfiguration<ACMPCAClient>,
|
|
10
|
-
input: DescribeCertificateAuthorityAuditReportCommandInput
|
|
10
|
+
input: DescribeCertificateAuthorityAuditReportCommandInput,
|
|
11
11
|
) => Promise<
|
|
12
|
-
WaiterResult<
|
|
13
|
-
| DescribeCertificateAuthorityAuditReportCommandOutput
|
|
14
|
-
| ACMPCAServiceException
|
|
15
|
-
>
|
|
12
|
+
WaiterResult<DescribeCertificateAuthorityAuditReportCommandOutput | ACMPCAServiceException>
|
|
16
13
|
>;
|
|
17
14
|
export declare const waitUntilAuditReportCreated: (
|
|
18
15
|
params: WaiterConfiguration<ACMPCAClient>,
|
|
19
|
-
input: DescribeCertificateAuthorityAuditReportCommandInput
|
|
20
|
-
) => Promise<
|
|
21
|
-
WaiterResult<DescribeCertificateAuthorityAuditReportCommandOutput>
|
|
22
|
-
>;
|
|
16
|
+
input: DescribeCertificateAuthorityAuditReportCommandInput,
|
|
17
|
+
) => Promise<WaiterResult<DescribeCertificateAuthorityAuditReportCommandOutput>>;
|
|
@@ -7,11 +7,9 @@ import {
|
|
|
7
7
|
import { ACMPCAServiceException } from "../models/ACMPCAServiceException";
|
|
8
8
|
export declare const waitForCertificateAuthorityCSRCreated: (
|
|
9
9
|
params: WaiterConfiguration<ACMPCAClient>,
|
|
10
|
-
input: GetCertificateAuthorityCsrCommandInput
|
|
11
|
-
) => Promise<
|
|
12
|
-
WaiterResult<GetCertificateAuthorityCsrCommandOutput | ACMPCAServiceException>
|
|
13
|
-
>;
|
|
10
|
+
input: GetCertificateAuthorityCsrCommandInput,
|
|
11
|
+
) => Promise<WaiterResult<GetCertificateAuthorityCsrCommandOutput | ACMPCAServiceException>>;
|
|
14
12
|
export declare const waitUntilCertificateAuthorityCSRCreated: (
|
|
15
13
|
params: WaiterConfiguration<ACMPCAClient>,
|
|
16
|
-
input: GetCertificateAuthorityCsrCommandInput
|
|
14
|
+
input: GetCertificateAuthorityCsrCommandInput,
|
|
17
15
|
) => Promise<WaiterResult<GetCertificateAuthorityCsrCommandOutput>>;
|
|
@@ -7,11 +7,9 @@ import {
|
|
|
7
7
|
import { ACMPCAServiceException } from "../models/ACMPCAServiceException";
|
|
8
8
|
export declare const waitForCertificateIssued: (
|
|
9
9
|
params: WaiterConfiguration<ACMPCAClient>,
|
|
10
|
-
input: GetCertificateCommandInput
|
|
11
|
-
) => Promise<
|
|
12
|
-
WaiterResult<GetCertificateCommandOutput | ACMPCAServiceException>
|
|
13
|
-
>;
|
|
10
|
+
input: GetCertificateCommandInput,
|
|
11
|
+
) => Promise<WaiterResult<GetCertificateCommandOutput | ACMPCAServiceException>>;
|
|
14
12
|
export declare const waitUntilCertificateIssued: (
|
|
15
13
|
params: WaiterConfiguration<ACMPCAClient>,
|
|
16
|
-
input: GetCertificateCommandInput
|
|
14
|
+
input: GetCertificateCommandInput,
|
|
17
15
|
) => Promise<WaiterResult<GetCertificateCommandOutput>>;
|