@aws-sdk/client-acm-pca 3.181.0 → 3.183.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-es/ACMPCA.js +94 -101
- package/dist-es/ACMPCAClient.js +22 -28
- package/dist-es/commands/CreateCertificateAuthorityAuditReportCommand.js +21 -28
- package/dist-es/commands/CreateCertificateAuthorityCommand.js +21 -28
- package/dist-es/commands/CreatePermissionCommand.js +22 -29
- package/dist-es/commands/DeleteCertificateAuthorityCommand.js +22 -29
- package/dist-es/commands/DeletePermissionCommand.js +22 -29
- package/dist-es/commands/DeletePolicyCommand.js +22 -29
- package/dist-es/commands/DescribeCertificateAuthorityAuditReportCommand.js +21 -28
- package/dist-es/commands/DescribeCertificateAuthorityCommand.js +21 -28
- package/dist-es/commands/GetCertificateAuthorityCertificateCommand.js +21 -28
- package/dist-es/commands/GetCertificateAuthorityCsrCommand.js +21 -28
- package/dist-es/commands/GetCertificateCommand.js +21 -28
- package/dist-es/commands/GetPolicyCommand.js +21 -28
- package/dist-es/commands/ImportCertificateAuthorityCertificateCommand.js +22 -29
- package/dist-es/commands/IssueCertificateCommand.js +21 -28
- package/dist-es/commands/ListCertificateAuthoritiesCommand.js +21 -28
- package/dist-es/commands/ListPermissionsCommand.js +21 -28
- package/dist-es/commands/ListTagsCommand.js +21 -28
- package/dist-es/commands/PutPolicyCommand.js +22 -29
- package/dist-es/commands/RestoreCertificateAuthorityCommand.js +22 -29
- package/dist-es/commands/RevokeCertificateCommand.js +22 -29
- package/dist-es/commands/TagCertificateAuthorityCommand.js +22 -29
- package/dist-es/commands/UntagCertificateAuthorityCommand.js +22 -29
- package/dist-es/commands/UpdateCertificateAuthorityCommand.js +22 -29
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ACMPCAServiceException.js +5 -10
- package/dist-es/models/models_0.js +386 -269
- package/dist-es/pagination/ListCertificateAuthoritiesPaginator.js +25 -68
- package/dist-es/pagination/ListPermissionsPaginator.js +25 -68
- package/dist-es/pagination/ListTagsPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +1817 -2238
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForAuditReportCreated.js +36 -56
- package/dist-es/waiters/waitForCertificateAuthorityCSRCreated.js +23 -42
- package/dist-es/waiters/waitForCertificateIssued.js +23 -42
- package/package.json +34 -34
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { ACMPCAServiceException as __BaseException } from "./ACMPCAServiceException";
|
|
3
2
|
export var AccessMethodType;
|
|
4
3
|
(function (AccessMethodType) {
|
|
@@ -37,161 +36,161 @@ export var S3ObjectAcl;
|
|
|
37
36
|
S3ObjectAcl["BUCKET_OWNER_FULL_CONTROL"] = "BUCKET_OWNER_FULL_CONTROL";
|
|
38
37
|
S3ObjectAcl["PUBLIC_READ"] = "PUBLIC_READ";
|
|
39
38
|
})(S3ObjectAcl || (S3ObjectAcl = {}));
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
39
|
+
export class InvalidArgsException extends __BaseException {
|
|
40
|
+
constructor(opts) {
|
|
41
|
+
super({
|
|
42
|
+
name: "InvalidArgsException",
|
|
43
|
+
$fault: "client",
|
|
44
|
+
...opts,
|
|
45
|
+
});
|
|
46
|
+
this.name = "InvalidArgsException";
|
|
47
|
+
this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(this, InvalidArgsException.prototype);
|
|
48
49
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
50
|
+
}
|
|
51
|
+
export class InvalidPolicyException extends __BaseException {
|
|
52
|
+
constructor(opts) {
|
|
53
|
+
super({
|
|
54
|
+
name: "InvalidPolicyException",
|
|
55
|
+
$fault: "client",
|
|
56
|
+
...opts,
|
|
57
|
+
});
|
|
58
|
+
this.name = "InvalidPolicyException";
|
|
59
|
+
this.$fault = "client";
|
|
60
|
+
Object.setPrototypeOf(this, InvalidPolicyException.prototype);
|
|
60
61
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
62
|
+
}
|
|
63
|
+
export class InvalidTagException extends __BaseException {
|
|
64
|
+
constructor(opts) {
|
|
65
|
+
super({
|
|
66
|
+
name: "InvalidTagException",
|
|
67
|
+
$fault: "client",
|
|
68
|
+
...opts,
|
|
69
|
+
});
|
|
70
|
+
this.name = "InvalidTagException";
|
|
71
|
+
this.$fault = "client";
|
|
72
|
+
Object.setPrototypeOf(this, InvalidTagException.prototype);
|
|
72
73
|
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
74
|
+
}
|
|
75
|
+
export class LimitExceededException extends __BaseException {
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "LimitExceededException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
this.name = "LimitExceededException";
|
|
83
|
+
this.$fault = "client";
|
|
84
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
84
85
|
}
|
|
85
|
-
|
|
86
|
-
}(__BaseException));
|
|
87
|
-
export { LimitExceededException };
|
|
86
|
+
}
|
|
88
87
|
export var AuditReportResponseFormat;
|
|
89
88
|
(function (AuditReportResponseFormat) {
|
|
90
89
|
AuditReportResponseFormat["CSV"] = "CSV";
|
|
91
90
|
AuditReportResponseFormat["JSON"] = "JSON";
|
|
92
91
|
})(AuditReportResponseFormat || (AuditReportResponseFormat = {}));
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
92
|
+
export class InvalidArnException extends __BaseException {
|
|
93
|
+
constructor(opts) {
|
|
94
|
+
super({
|
|
95
|
+
name: "InvalidArnException",
|
|
96
|
+
$fault: "client",
|
|
97
|
+
...opts,
|
|
98
|
+
});
|
|
99
|
+
this.name = "InvalidArnException";
|
|
100
|
+
this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(this, InvalidArnException.prototype);
|
|
101
102
|
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
103
|
+
}
|
|
104
|
+
export class InvalidStateException extends __BaseException {
|
|
105
|
+
constructor(opts) {
|
|
106
|
+
super({
|
|
107
|
+
name: "InvalidStateException",
|
|
108
|
+
$fault: "client",
|
|
109
|
+
...opts,
|
|
110
|
+
});
|
|
111
|
+
this.name = "InvalidStateException";
|
|
112
|
+
this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
113
114
|
}
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
115
|
+
}
|
|
116
|
+
export class RequestFailedException extends __BaseException {
|
|
117
|
+
constructor(opts) {
|
|
118
|
+
super({
|
|
119
|
+
name: "RequestFailedException",
|
|
120
|
+
$fault: "client",
|
|
121
|
+
...opts,
|
|
122
|
+
});
|
|
123
|
+
this.name = "RequestFailedException";
|
|
124
|
+
this.$fault = "client";
|
|
125
|
+
Object.setPrototypeOf(this, RequestFailedException.prototype);
|
|
125
126
|
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
127
|
+
}
|
|
128
|
+
export class RequestInProgressException extends __BaseException {
|
|
129
|
+
constructor(opts) {
|
|
130
|
+
super({
|
|
131
|
+
name: "RequestInProgressException",
|
|
132
|
+
$fault: "client",
|
|
133
|
+
...opts,
|
|
134
|
+
});
|
|
135
|
+
this.name = "RequestInProgressException";
|
|
136
|
+
this.$fault = "client";
|
|
137
|
+
Object.setPrototypeOf(this, RequestInProgressException.prototype);
|
|
137
138
|
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
139
|
+
}
|
|
140
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
141
|
+
constructor(opts) {
|
|
142
|
+
super({
|
|
143
|
+
name: "ResourceNotFoundException",
|
|
144
|
+
$fault: "client",
|
|
145
|
+
...opts,
|
|
146
|
+
});
|
|
147
|
+
this.name = "ResourceNotFoundException";
|
|
148
|
+
this.$fault = "client";
|
|
149
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
149
150
|
}
|
|
150
|
-
|
|
151
|
-
}(__BaseException));
|
|
152
|
-
export { ResourceNotFoundException };
|
|
151
|
+
}
|
|
153
152
|
export var ActionType;
|
|
154
153
|
(function (ActionType) {
|
|
155
154
|
ActionType["GetCertificate"] = "GetCertificate";
|
|
156
155
|
ActionType["IssueCertificate"] = "IssueCertificate";
|
|
157
156
|
ActionType["ListPermissions"] = "ListPermissions";
|
|
158
157
|
})(ActionType || (ActionType = {}));
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
158
|
+
export class PermissionAlreadyExistsException extends __BaseException {
|
|
159
|
+
constructor(opts) {
|
|
160
|
+
super({
|
|
161
|
+
name: "PermissionAlreadyExistsException",
|
|
162
|
+
$fault: "client",
|
|
163
|
+
...opts,
|
|
164
|
+
});
|
|
165
|
+
this.name = "PermissionAlreadyExistsException";
|
|
166
|
+
this.$fault = "client";
|
|
167
|
+
Object.setPrototypeOf(this, PermissionAlreadyExistsException.prototype);
|
|
167
168
|
}
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
169
|
+
}
|
|
170
|
+
export class ConcurrentModificationException extends __BaseException {
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "ConcurrentModificationException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
this.name = "ConcurrentModificationException";
|
|
178
|
+
this.$fault = "client";
|
|
179
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
179
180
|
}
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
181
|
+
}
|
|
182
|
+
export class LockoutPreventedException extends __BaseException {
|
|
183
|
+
constructor(opts) {
|
|
184
|
+
super({
|
|
185
|
+
name: "LockoutPreventedException",
|
|
186
|
+
$fault: "client",
|
|
187
|
+
...opts,
|
|
188
|
+
});
|
|
189
|
+
this.name = "LockoutPreventedException";
|
|
190
|
+
this.$fault = "client";
|
|
191
|
+
Object.setPrototypeOf(this, LockoutPreventedException.prototype);
|
|
191
192
|
}
|
|
192
|
-
|
|
193
|
-
}(__BaseException));
|
|
194
|
-
export { LockoutPreventedException };
|
|
193
|
+
}
|
|
195
194
|
export var FailureReason;
|
|
196
195
|
(function (FailureReason) {
|
|
197
196
|
FailureReason["OTHER"] = "OTHER";
|
|
@@ -214,42 +213,42 @@ export var AuditReportStatus;
|
|
|
214
213
|
AuditReportStatus["FAILED"] = "FAILED";
|
|
215
214
|
AuditReportStatus["SUCCESS"] = "SUCCESS";
|
|
216
215
|
})(AuditReportStatus || (AuditReportStatus = {}));
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
216
|
+
export class CertificateMismatchException extends __BaseException {
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "CertificateMismatchException",
|
|
220
|
+
$fault: "client",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
this.name = "CertificateMismatchException";
|
|
224
|
+
this.$fault = "client";
|
|
225
|
+
Object.setPrototypeOf(this, CertificateMismatchException.prototype);
|
|
225
226
|
}
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
227
|
+
}
|
|
228
|
+
export class InvalidRequestException extends __BaseException {
|
|
229
|
+
constructor(opts) {
|
|
230
|
+
super({
|
|
231
|
+
name: "InvalidRequestException",
|
|
232
|
+
$fault: "client",
|
|
233
|
+
...opts,
|
|
234
|
+
});
|
|
235
|
+
this.name = "InvalidRequestException";
|
|
236
|
+
this.$fault = "client";
|
|
237
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
237
238
|
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
239
|
+
}
|
|
240
|
+
export class MalformedCertificateException extends __BaseException {
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "MalformedCertificateException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
this.name = "MalformedCertificateException";
|
|
248
|
+
this.$fault = "client";
|
|
249
|
+
Object.setPrototypeOf(this, MalformedCertificateException.prototype);
|
|
249
250
|
}
|
|
250
|
-
|
|
251
|
-
}(__BaseException));
|
|
252
|
-
export { MalformedCertificateException };
|
|
251
|
+
}
|
|
253
252
|
export var PolicyQualifierId;
|
|
254
253
|
(function (PolicyQualifierId) {
|
|
255
254
|
PolicyQualifierId["CPS"] = "CPS";
|
|
@@ -274,47 +273,47 @@ export var ValidityPeriodType;
|
|
|
274
273
|
ValidityPeriodType["MONTHS"] = "MONTHS";
|
|
275
274
|
ValidityPeriodType["YEARS"] = "YEARS";
|
|
276
275
|
})(ValidityPeriodType || (ValidityPeriodType = {}));
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
276
|
+
export class MalformedCSRException extends __BaseException {
|
|
277
|
+
constructor(opts) {
|
|
278
|
+
super({
|
|
279
|
+
name: "MalformedCSRException",
|
|
280
|
+
$fault: "client",
|
|
281
|
+
...opts,
|
|
282
|
+
});
|
|
283
|
+
this.name = "MalformedCSRException";
|
|
284
|
+
this.$fault = "client";
|
|
285
|
+
Object.setPrototypeOf(this, MalformedCSRException.prototype);
|
|
285
286
|
}
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
287
|
+
}
|
|
288
|
+
export class InvalidNextTokenException extends __BaseException {
|
|
289
|
+
constructor(opts) {
|
|
290
|
+
super({
|
|
291
|
+
name: "InvalidNextTokenException",
|
|
292
|
+
$fault: "client",
|
|
293
|
+
...opts,
|
|
294
|
+
});
|
|
295
|
+
this.name = "InvalidNextTokenException";
|
|
296
|
+
this.$fault = "client";
|
|
297
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
297
298
|
}
|
|
298
|
-
|
|
299
|
-
}(__BaseException));
|
|
300
|
-
export { InvalidNextTokenException };
|
|
299
|
+
}
|
|
301
300
|
export var ResourceOwner;
|
|
302
301
|
(function (ResourceOwner) {
|
|
303
302
|
ResourceOwner["OTHER_ACCOUNTS"] = "OTHER_ACCOUNTS";
|
|
304
303
|
ResourceOwner["SELF"] = "SELF";
|
|
305
304
|
})(ResourceOwner || (ResourceOwner = {}));
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
305
|
+
export class RequestAlreadyProcessedException extends __BaseException {
|
|
306
|
+
constructor(opts) {
|
|
307
|
+
super({
|
|
308
|
+
name: "RequestAlreadyProcessedException",
|
|
309
|
+
$fault: "client",
|
|
310
|
+
...opts,
|
|
311
|
+
});
|
|
312
|
+
this.name = "RequestAlreadyProcessedException";
|
|
313
|
+
this.$fault = "client";
|
|
314
|
+
Object.setPrototypeOf(this, RequestAlreadyProcessedException.prototype);
|
|
314
315
|
}
|
|
315
|
-
|
|
316
|
-
}(__BaseException));
|
|
317
|
-
export { RequestAlreadyProcessedException };
|
|
316
|
+
}
|
|
318
317
|
export var RevocationReason;
|
|
319
318
|
(function (RevocationReason) {
|
|
320
319
|
RevocationReason["AFFILIATION_CHANGED"] = "AFFILIATION_CHANGED";
|
|
@@ -326,74 +325,192 @@ export var RevocationReason;
|
|
|
326
325
|
RevocationReason["SUPERSEDED"] = "SUPERSEDED";
|
|
327
326
|
RevocationReason["UNSPECIFIED"] = "UNSPECIFIED";
|
|
328
327
|
})(RevocationReason || (RevocationReason = {}));
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
328
|
+
export class TooManyTagsException extends __BaseException {
|
|
329
|
+
constructor(opts) {
|
|
330
|
+
super({
|
|
331
|
+
name: "TooManyTagsException",
|
|
332
|
+
$fault: "client",
|
|
333
|
+
...opts,
|
|
334
|
+
});
|
|
335
|
+
this.name = "TooManyTagsException";
|
|
336
|
+
this.$fault = "client";
|
|
337
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
337
338
|
}
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
export
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
export
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
export
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
export
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
export
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
export
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
export
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
export
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
export
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
export
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
export
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
export
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
export
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
export
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
export
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
export
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
export
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
export
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
export
|
|
339
|
+
}
|
|
340
|
+
export const CustomAttributeFilterSensitiveLog = (obj) => ({
|
|
341
|
+
...obj,
|
|
342
|
+
});
|
|
343
|
+
export const ASN1SubjectFilterSensitiveLog = (obj) => ({
|
|
344
|
+
...obj,
|
|
345
|
+
});
|
|
346
|
+
export const EdiPartyNameFilterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
});
|
|
349
|
+
export const OtherNameFilterSensitiveLog = (obj) => ({
|
|
350
|
+
...obj,
|
|
351
|
+
});
|
|
352
|
+
export const GeneralNameFilterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
});
|
|
355
|
+
export const AccessMethodFilterSensitiveLog = (obj) => ({
|
|
356
|
+
...obj,
|
|
357
|
+
});
|
|
358
|
+
export const AccessDescriptionFilterSensitiveLog = (obj) => ({
|
|
359
|
+
...obj,
|
|
360
|
+
});
|
|
361
|
+
export const KeyUsageFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
});
|
|
364
|
+
export const CsrExtensionsFilterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
});
|
|
367
|
+
export const CertificateAuthorityConfigurationFilterSensitiveLog = (obj) => ({
|
|
368
|
+
...obj,
|
|
369
|
+
});
|
|
370
|
+
export const CrlConfigurationFilterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
});
|
|
373
|
+
export const OcspConfigurationFilterSensitiveLog = (obj) => ({
|
|
374
|
+
...obj,
|
|
375
|
+
});
|
|
376
|
+
export const RevocationConfigurationFilterSensitiveLog = (obj) => ({
|
|
377
|
+
...obj,
|
|
378
|
+
});
|
|
379
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
380
|
+
...obj,
|
|
381
|
+
});
|
|
382
|
+
export const CreateCertificateAuthorityRequestFilterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
export const CreateCertificateAuthorityResponseFilterSensitiveLog = (obj) => ({
|
|
386
|
+
...obj,
|
|
387
|
+
});
|
|
388
|
+
export const CreateCertificateAuthorityAuditReportRequestFilterSensitiveLog = (obj) => ({
|
|
389
|
+
...obj,
|
|
390
|
+
});
|
|
391
|
+
export const CreateCertificateAuthorityAuditReportResponseFilterSensitiveLog = (obj) => ({
|
|
392
|
+
...obj,
|
|
393
|
+
});
|
|
394
|
+
export const CreatePermissionRequestFilterSensitiveLog = (obj) => ({
|
|
395
|
+
...obj,
|
|
396
|
+
});
|
|
397
|
+
export const DeleteCertificateAuthorityRequestFilterSensitiveLog = (obj) => ({
|
|
398
|
+
...obj,
|
|
399
|
+
});
|
|
400
|
+
export const DeletePermissionRequestFilterSensitiveLog = (obj) => ({
|
|
401
|
+
...obj,
|
|
402
|
+
});
|
|
403
|
+
export const DeletePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
404
|
+
...obj,
|
|
405
|
+
});
|
|
406
|
+
export const DescribeCertificateAuthorityRequestFilterSensitiveLog = (obj) => ({
|
|
407
|
+
...obj,
|
|
408
|
+
});
|
|
409
|
+
export const CertificateAuthorityFilterSensitiveLog = (obj) => ({
|
|
410
|
+
...obj,
|
|
411
|
+
});
|
|
412
|
+
export const DescribeCertificateAuthorityResponseFilterSensitiveLog = (obj) => ({
|
|
413
|
+
...obj,
|
|
414
|
+
});
|
|
415
|
+
export const DescribeCertificateAuthorityAuditReportRequestFilterSensitiveLog = (obj) => ({
|
|
416
|
+
...obj,
|
|
417
|
+
});
|
|
418
|
+
export const DescribeCertificateAuthorityAuditReportResponseFilterSensitiveLog = (obj) => ({
|
|
419
|
+
...obj,
|
|
420
|
+
});
|
|
421
|
+
export const GetCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
422
|
+
...obj,
|
|
423
|
+
});
|
|
424
|
+
export const GetCertificateResponseFilterSensitiveLog = (obj) => ({
|
|
425
|
+
...obj,
|
|
426
|
+
});
|
|
427
|
+
export const GetCertificateAuthorityCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
428
|
+
...obj,
|
|
429
|
+
});
|
|
430
|
+
export const GetCertificateAuthorityCertificateResponseFilterSensitiveLog = (obj) => ({
|
|
431
|
+
...obj,
|
|
432
|
+
});
|
|
433
|
+
export const GetCertificateAuthorityCsrRequestFilterSensitiveLog = (obj) => ({
|
|
434
|
+
...obj,
|
|
435
|
+
});
|
|
436
|
+
export const GetCertificateAuthorityCsrResponseFilterSensitiveLog = (obj) => ({
|
|
437
|
+
...obj,
|
|
438
|
+
});
|
|
439
|
+
export const GetPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
440
|
+
...obj,
|
|
441
|
+
});
|
|
442
|
+
export const GetPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
443
|
+
...obj,
|
|
444
|
+
});
|
|
445
|
+
export const ImportCertificateAuthorityCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
446
|
+
...obj,
|
|
447
|
+
});
|
|
448
|
+
export const QualifierFilterSensitiveLog = (obj) => ({
|
|
449
|
+
...obj,
|
|
450
|
+
});
|
|
451
|
+
export const PolicyQualifierInfoFilterSensitiveLog = (obj) => ({
|
|
452
|
+
...obj,
|
|
453
|
+
});
|
|
454
|
+
export const PolicyInformationFilterSensitiveLog = (obj) => ({
|
|
455
|
+
...obj,
|
|
456
|
+
});
|
|
457
|
+
export const CustomExtensionFilterSensitiveLog = (obj) => ({
|
|
458
|
+
...obj,
|
|
459
|
+
});
|
|
460
|
+
export const ExtendedKeyUsageFilterSensitiveLog = (obj) => ({
|
|
461
|
+
...obj,
|
|
462
|
+
});
|
|
463
|
+
export const ExtensionsFilterSensitiveLog = (obj) => ({
|
|
464
|
+
...obj,
|
|
465
|
+
});
|
|
466
|
+
export const ApiPassthroughFilterSensitiveLog = (obj) => ({
|
|
467
|
+
...obj,
|
|
468
|
+
});
|
|
469
|
+
export const ValidityFilterSensitiveLog = (obj) => ({
|
|
470
|
+
...obj,
|
|
471
|
+
});
|
|
472
|
+
export const IssueCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
473
|
+
...obj,
|
|
474
|
+
});
|
|
475
|
+
export const IssueCertificateResponseFilterSensitiveLog = (obj) => ({
|
|
476
|
+
...obj,
|
|
477
|
+
});
|
|
478
|
+
export const ListCertificateAuthoritiesRequestFilterSensitiveLog = (obj) => ({
|
|
479
|
+
...obj,
|
|
480
|
+
});
|
|
481
|
+
export const ListCertificateAuthoritiesResponseFilterSensitiveLog = (obj) => ({
|
|
482
|
+
...obj,
|
|
483
|
+
});
|
|
484
|
+
export const ListPermissionsRequestFilterSensitiveLog = (obj) => ({
|
|
485
|
+
...obj,
|
|
486
|
+
});
|
|
487
|
+
export const PermissionFilterSensitiveLog = (obj) => ({
|
|
488
|
+
...obj,
|
|
489
|
+
});
|
|
490
|
+
export const ListPermissionsResponseFilterSensitiveLog = (obj) => ({
|
|
491
|
+
...obj,
|
|
492
|
+
});
|
|
493
|
+
export const ListTagsRequestFilterSensitiveLog = (obj) => ({
|
|
494
|
+
...obj,
|
|
495
|
+
});
|
|
496
|
+
export const ListTagsResponseFilterSensitiveLog = (obj) => ({
|
|
497
|
+
...obj,
|
|
498
|
+
});
|
|
499
|
+
export const PutPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
500
|
+
...obj,
|
|
501
|
+
});
|
|
502
|
+
export const RestoreCertificateAuthorityRequestFilterSensitiveLog = (obj) => ({
|
|
503
|
+
...obj,
|
|
504
|
+
});
|
|
505
|
+
export const RevokeCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
506
|
+
...obj,
|
|
507
|
+
});
|
|
508
|
+
export const TagCertificateAuthorityRequestFilterSensitiveLog = (obj) => ({
|
|
509
|
+
...obj,
|
|
510
|
+
});
|
|
511
|
+
export const UntagCertificateAuthorityRequestFilterSensitiveLog = (obj) => ({
|
|
512
|
+
...obj,
|
|
513
|
+
});
|
|
514
|
+
export const UpdateCertificateAuthorityRequestFilterSensitiveLog = (obj) => ({
|
|
515
|
+
...obj,
|
|
516
|
+
});
|