@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.
Files changed (41) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/ACMPCA.js +94 -101
  3. package/dist-es/ACMPCAClient.js +22 -28
  4. package/dist-es/commands/CreateCertificateAuthorityAuditReportCommand.js +21 -28
  5. package/dist-es/commands/CreateCertificateAuthorityCommand.js +21 -28
  6. package/dist-es/commands/CreatePermissionCommand.js +22 -29
  7. package/dist-es/commands/DeleteCertificateAuthorityCommand.js +22 -29
  8. package/dist-es/commands/DeletePermissionCommand.js +22 -29
  9. package/dist-es/commands/DeletePolicyCommand.js +22 -29
  10. package/dist-es/commands/DescribeCertificateAuthorityAuditReportCommand.js +21 -28
  11. package/dist-es/commands/DescribeCertificateAuthorityCommand.js +21 -28
  12. package/dist-es/commands/GetCertificateAuthorityCertificateCommand.js +21 -28
  13. package/dist-es/commands/GetCertificateAuthorityCsrCommand.js +21 -28
  14. package/dist-es/commands/GetCertificateCommand.js +21 -28
  15. package/dist-es/commands/GetPolicyCommand.js +21 -28
  16. package/dist-es/commands/ImportCertificateAuthorityCertificateCommand.js +22 -29
  17. package/dist-es/commands/IssueCertificateCommand.js +21 -28
  18. package/dist-es/commands/ListCertificateAuthoritiesCommand.js +21 -28
  19. package/dist-es/commands/ListPermissionsCommand.js +21 -28
  20. package/dist-es/commands/ListTagsCommand.js +21 -28
  21. package/dist-es/commands/PutPolicyCommand.js +22 -29
  22. package/dist-es/commands/RestoreCertificateAuthorityCommand.js +22 -29
  23. package/dist-es/commands/RevokeCertificateCommand.js +22 -29
  24. package/dist-es/commands/TagCertificateAuthorityCommand.js +22 -29
  25. package/dist-es/commands/UntagCertificateAuthorityCommand.js +22 -29
  26. package/dist-es/commands/UpdateCertificateAuthorityCommand.js +22 -29
  27. package/dist-es/endpoints.js +8 -8
  28. package/dist-es/models/ACMPCAServiceException.js +5 -10
  29. package/dist-es/models/models_0.js +386 -269
  30. package/dist-es/pagination/ListCertificateAuthoritiesPaginator.js +25 -68
  31. package/dist-es/pagination/ListPermissionsPaginator.js +25 -68
  32. package/dist-es/pagination/ListTagsPaginator.js +25 -68
  33. package/dist-es/protocols/Aws_json1_1.js +1817 -2238
  34. package/dist-es/runtimeConfig.browser.js +26 -12
  35. package/dist-es/runtimeConfig.js +30 -12
  36. package/dist-es/runtimeConfig.native.js +8 -5
  37. package/dist-es/runtimeConfig.shared.js +8 -11
  38. package/dist-es/waiters/waitForAuditReportCreated.js +36 -56
  39. package/dist-es/waiters/waitForCertificateAuthorityCSRCreated.js +23 -42
  40. package/dist-es/waiters/waitForCertificateIssued.js +23 -42
  41. 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
- var InvalidArgsException = (function (_super) {
41
- __extends(InvalidArgsException, _super);
42
- function InvalidArgsException(opts) {
43
- var _this = _super.call(this, __assign({ name: "InvalidArgsException", $fault: "client" }, opts)) || this;
44
- _this.name = "InvalidArgsException";
45
- _this.$fault = "client";
46
- Object.setPrototypeOf(_this, InvalidArgsException.prototype);
47
- return _this;
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
- return InvalidArgsException;
50
- }(__BaseException));
51
- export { InvalidArgsException };
52
- var InvalidPolicyException = (function (_super) {
53
- __extends(InvalidPolicyException, _super);
54
- function InvalidPolicyException(opts) {
55
- var _this = _super.call(this, __assign({ name: "InvalidPolicyException", $fault: "client" }, opts)) || this;
56
- _this.name = "InvalidPolicyException";
57
- _this.$fault = "client";
58
- Object.setPrototypeOf(_this, InvalidPolicyException.prototype);
59
- return _this;
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
- return InvalidPolicyException;
62
- }(__BaseException));
63
- export { InvalidPolicyException };
64
- var InvalidTagException = (function (_super) {
65
- __extends(InvalidTagException, _super);
66
- function InvalidTagException(opts) {
67
- var _this = _super.call(this, __assign({ name: "InvalidTagException", $fault: "client" }, opts)) || this;
68
- _this.name = "InvalidTagException";
69
- _this.$fault = "client";
70
- Object.setPrototypeOf(_this, InvalidTagException.prototype);
71
- return _this;
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
- return InvalidTagException;
74
- }(__BaseException));
75
- export { InvalidTagException };
76
- var LimitExceededException = (function (_super) {
77
- __extends(LimitExceededException, _super);
78
- function LimitExceededException(opts) {
79
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
80
- _this.name = "LimitExceededException";
81
- _this.$fault = "client";
82
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
83
- return _this;
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
- return LimitExceededException;
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
- var InvalidArnException = (function (_super) {
94
- __extends(InvalidArnException, _super);
95
- function InvalidArnException(opts) {
96
- var _this = _super.call(this, __assign({ name: "InvalidArnException", $fault: "client" }, opts)) || this;
97
- _this.name = "InvalidArnException";
98
- _this.$fault = "client";
99
- Object.setPrototypeOf(_this, InvalidArnException.prototype);
100
- return _this;
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
- return InvalidArnException;
103
- }(__BaseException));
104
- export { InvalidArnException };
105
- var InvalidStateException = (function (_super) {
106
- __extends(InvalidStateException, _super);
107
- function InvalidStateException(opts) {
108
- var _this = _super.call(this, __assign({ name: "InvalidStateException", $fault: "client" }, opts)) || this;
109
- _this.name = "InvalidStateException";
110
- _this.$fault = "client";
111
- Object.setPrototypeOf(_this, InvalidStateException.prototype);
112
- return _this;
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
- return InvalidStateException;
115
- }(__BaseException));
116
- export { InvalidStateException };
117
- var RequestFailedException = (function (_super) {
118
- __extends(RequestFailedException, _super);
119
- function RequestFailedException(opts) {
120
- var _this = _super.call(this, __assign({ name: "RequestFailedException", $fault: "client" }, opts)) || this;
121
- _this.name = "RequestFailedException";
122
- _this.$fault = "client";
123
- Object.setPrototypeOf(_this, RequestFailedException.prototype);
124
- return _this;
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
- return RequestFailedException;
127
- }(__BaseException));
128
- export { RequestFailedException };
129
- var RequestInProgressException = (function (_super) {
130
- __extends(RequestInProgressException, _super);
131
- function RequestInProgressException(opts) {
132
- var _this = _super.call(this, __assign({ name: "RequestInProgressException", $fault: "client" }, opts)) || this;
133
- _this.name = "RequestInProgressException";
134
- _this.$fault = "client";
135
- Object.setPrototypeOf(_this, RequestInProgressException.prototype);
136
- return _this;
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
- return RequestInProgressException;
139
- }(__BaseException));
140
- export { RequestInProgressException };
141
- var ResourceNotFoundException = (function (_super) {
142
- __extends(ResourceNotFoundException, _super);
143
- function ResourceNotFoundException(opts) {
144
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
145
- _this.name = "ResourceNotFoundException";
146
- _this.$fault = "client";
147
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
148
- return _this;
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
- return ResourceNotFoundException;
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
- var PermissionAlreadyExistsException = (function (_super) {
160
- __extends(PermissionAlreadyExistsException, _super);
161
- function PermissionAlreadyExistsException(opts) {
162
- var _this = _super.call(this, __assign({ name: "PermissionAlreadyExistsException", $fault: "client" }, opts)) || this;
163
- _this.name = "PermissionAlreadyExistsException";
164
- _this.$fault = "client";
165
- Object.setPrototypeOf(_this, PermissionAlreadyExistsException.prototype);
166
- return _this;
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
- return PermissionAlreadyExistsException;
169
- }(__BaseException));
170
- export { PermissionAlreadyExistsException };
171
- var ConcurrentModificationException = (function (_super) {
172
- __extends(ConcurrentModificationException, _super);
173
- function ConcurrentModificationException(opts) {
174
- var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
175
- _this.name = "ConcurrentModificationException";
176
- _this.$fault = "client";
177
- Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
178
- return _this;
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
- return ConcurrentModificationException;
181
- }(__BaseException));
182
- export { ConcurrentModificationException };
183
- var LockoutPreventedException = (function (_super) {
184
- __extends(LockoutPreventedException, _super);
185
- function LockoutPreventedException(opts) {
186
- var _this = _super.call(this, __assign({ name: "LockoutPreventedException", $fault: "client" }, opts)) || this;
187
- _this.name = "LockoutPreventedException";
188
- _this.$fault = "client";
189
- Object.setPrototypeOf(_this, LockoutPreventedException.prototype);
190
- return _this;
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
- return LockoutPreventedException;
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
- var CertificateMismatchException = (function (_super) {
218
- __extends(CertificateMismatchException, _super);
219
- function CertificateMismatchException(opts) {
220
- var _this = _super.call(this, __assign({ name: "CertificateMismatchException", $fault: "client" }, opts)) || this;
221
- _this.name = "CertificateMismatchException";
222
- _this.$fault = "client";
223
- Object.setPrototypeOf(_this, CertificateMismatchException.prototype);
224
- return _this;
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
- return CertificateMismatchException;
227
- }(__BaseException));
228
- export { CertificateMismatchException };
229
- var InvalidRequestException = (function (_super) {
230
- __extends(InvalidRequestException, _super);
231
- function InvalidRequestException(opts) {
232
- var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
233
- _this.name = "InvalidRequestException";
234
- _this.$fault = "client";
235
- Object.setPrototypeOf(_this, InvalidRequestException.prototype);
236
- return _this;
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
- return InvalidRequestException;
239
- }(__BaseException));
240
- export { InvalidRequestException };
241
- var MalformedCertificateException = (function (_super) {
242
- __extends(MalformedCertificateException, _super);
243
- function MalformedCertificateException(opts) {
244
- var _this = _super.call(this, __assign({ name: "MalformedCertificateException", $fault: "client" }, opts)) || this;
245
- _this.name = "MalformedCertificateException";
246
- _this.$fault = "client";
247
- Object.setPrototypeOf(_this, MalformedCertificateException.prototype);
248
- return _this;
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
- return MalformedCertificateException;
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
- var MalformedCSRException = (function (_super) {
278
- __extends(MalformedCSRException, _super);
279
- function MalformedCSRException(opts) {
280
- var _this = _super.call(this, __assign({ name: "MalformedCSRException", $fault: "client" }, opts)) || this;
281
- _this.name = "MalformedCSRException";
282
- _this.$fault = "client";
283
- Object.setPrototypeOf(_this, MalformedCSRException.prototype);
284
- return _this;
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
- return MalformedCSRException;
287
- }(__BaseException));
288
- export { MalformedCSRException };
289
- var InvalidNextTokenException = (function (_super) {
290
- __extends(InvalidNextTokenException, _super);
291
- function InvalidNextTokenException(opts) {
292
- var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
293
- _this.name = "InvalidNextTokenException";
294
- _this.$fault = "client";
295
- Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
296
- return _this;
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
- return InvalidNextTokenException;
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
- var RequestAlreadyProcessedException = (function (_super) {
307
- __extends(RequestAlreadyProcessedException, _super);
308
- function RequestAlreadyProcessedException(opts) {
309
- var _this = _super.call(this, __assign({ name: "RequestAlreadyProcessedException", $fault: "client" }, opts)) || this;
310
- _this.name = "RequestAlreadyProcessedException";
311
- _this.$fault = "client";
312
- Object.setPrototypeOf(_this, RequestAlreadyProcessedException.prototype);
313
- return _this;
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
- return RequestAlreadyProcessedException;
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
- var TooManyTagsException = (function (_super) {
330
- __extends(TooManyTagsException, _super);
331
- function TooManyTagsException(opts) {
332
- var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
333
- _this.name = "TooManyTagsException";
334
- _this.$fault = "client";
335
- Object.setPrototypeOf(_this, TooManyTagsException.prototype);
336
- return _this;
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
- return TooManyTagsException;
339
- }(__BaseException));
340
- export { TooManyTagsException };
341
- export var CustomAttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
- export var ASN1SubjectFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
- export var EdiPartyNameFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
- export var OtherNameFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
- export var GeneralNameFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
- export var AccessMethodFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
- export var AccessDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
- export var KeyUsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
- export var CsrExtensionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
- export var CertificateAuthorityConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
- export var CrlConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
- export var OcspConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
- export var RevocationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
- export var CreateCertificateAuthorityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var CreateCertificateAuthorityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var CreateCertificateAuthorityAuditReportRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var CreateCertificateAuthorityAuditReportResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
- export var CreatePermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var DeleteCertificateAuthorityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var DeletePermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
- export var DeletePolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var DescribeCertificateAuthorityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var CertificateAuthorityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var DescribeCertificateAuthorityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var DescribeCertificateAuthorityAuditReportRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
- export var DescribeCertificateAuthorityAuditReportResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
- export var GetCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
- export var GetCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- export var GetCertificateAuthorityCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
- export var GetCertificateAuthorityCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
- export var GetCertificateAuthorityCsrRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
- export var GetCertificateAuthorityCsrResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
374
- export var GetPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
375
- export var GetPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
376
- export var ImportCertificateAuthorityCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
- export var QualifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
378
- export var PolicyQualifierInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
379
- export var PolicyInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
- export var CustomExtensionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
381
- export var ExtendedKeyUsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
382
- export var ExtensionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
383
- export var ApiPassthroughFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
- export var ValidityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
- export var IssueCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
386
- export var IssueCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
- export var ListCertificateAuthoritiesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
388
- export var ListCertificateAuthoritiesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
389
- export var ListPermissionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
390
- export var PermissionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
391
- export var ListPermissionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
392
- export var ListTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
393
- export var ListTagsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
394
- export var PutPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
395
- export var RestoreCertificateAuthorityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
396
- export var RevokeCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
397
- export var TagCertificateAuthorityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
398
- export var UntagCertificateAuthorityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
399
- export var UpdateCertificateAuthorityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
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
+ });