@aws-sdk/client-acm-pca 3.183.0 → 3.185.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 (42) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/ACMPCA.js +101 -94
  4. package/dist-es/ACMPCAClient.js +28 -22
  5. package/dist-es/commands/CreateCertificateAuthorityAuditReportCommand.js +28 -21
  6. package/dist-es/commands/CreateCertificateAuthorityCommand.js +28 -21
  7. package/dist-es/commands/CreatePermissionCommand.js +29 -22
  8. package/dist-es/commands/DeleteCertificateAuthorityCommand.js +29 -22
  9. package/dist-es/commands/DeletePermissionCommand.js +29 -22
  10. package/dist-es/commands/DeletePolicyCommand.js +29 -22
  11. package/dist-es/commands/DescribeCertificateAuthorityAuditReportCommand.js +28 -21
  12. package/dist-es/commands/DescribeCertificateAuthorityCommand.js +28 -21
  13. package/dist-es/commands/GetCertificateAuthorityCertificateCommand.js +28 -21
  14. package/dist-es/commands/GetCertificateAuthorityCsrCommand.js +28 -21
  15. package/dist-es/commands/GetCertificateCommand.js +28 -21
  16. package/dist-es/commands/GetPolicyCommand.js +28 -21
  17. package/dist-es/commands/ImportCertificateAuthorityCertificateCommand.js +29 -22
  18. package/dist-es/commands/IssueCertificateCommand.js +28 -21
  19. package/dist-es/commands/ListCertificateAuthoritiesCommand.js +28 -21
  20. package/dist-es/commands/ListPermissionsCommand.js +28 -21
  21. package/dist-es/commands/ListTagsCommand.js +28 -21
  22. package/dist-es/commands/PutPolicyCommand.js +29 -22
  23. package/dist-es/commands/RestoreCertificateAuthorityCommand.js +29 -22
  24. package/dist-es/commands/RevokeCertificateCommand.js +29 -22
  25. package/dist-es/commands/TagCertificateAuthorityCommand.js +29 -22
  26. package/dist-es/commands/UntagCertificateAuthorityCommand.js +29 -22
  27. package/dist-es/commands/UpdateCertificateAuthorityCommand.js +29 -22
  28. package/dist-es/endpoints.js +8 -8
  29. package/dist-es/models/ACMPCAServiceException.js +10 -5
  30. package/dist-es/models/models_0.js +269 -386
  31. package/dist-es/pagination/ListCertificateAuthoritiesPaginator.js +68 -25
  32. package/dist-es/pagination/ListPermissionsPaginator.js +68 -25
  33. package/dist-es/pagination/ListTagsPaginator.js +68 -25
  34. package/dist-es/protocols/Aws_json1_1.js +2238 -1817
  35. package/dist-es/runtimeConfig.browser.js +12 -26
  36. package/dist-es/runtimeConfig.js +12 -30
  37. package/dist-es/runtimeConfig.native.js +5 -8
  38. package/dist-es/runtimeConfig.shared.js +11 -8
  39. package/dist-es/waiters/waitForAuditReportCreated.js +56 -36
  40. package/dist-es/waiters/waitForCertificateAuthorityCSRCreated.js +42 -23
  41. package/dist-es/waiters/waitForCertificateIssued.js +42 -23
  42. package/package.json +5 -5
@@ -1,3 +1,4 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { ACMPCAServiceException as __BaseException } from "./ACMPCAServiceException";
2
3
  export var AccessMethodType;
3
4
  (function (AccessMethodType) {
@@ -36,161 +37,161 @@ export var S3ObjectAcl;
36
37
  S3ObjectAcl["BUCKET_OWNER_FULL_CONTROL"] = "BUCKET_OWNER_FULL_CONTROL";
37
38
  S3ObjectAcl["PUBLIC_READ"] = "PUBLIC_READ";
38
39
  })(S3ObjectAcl || (S3ObjectAcl = {}));
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);
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;
49
48
  }
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);
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;
61
60
  }
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);
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;
73
72
  }
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);
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;
85
84
  }
86
- }
85
+ return LimitExceededException;
86
+ }(__BaseException));
87
+ export { LimitExceededException };
87
88
  export var AuditReportResponseFormat;
88
89
  (function (AuditReportResponseFormat) {
89
90
  AuditReportResponseFormat["CSV"] = "CSV";
90
91
  AuditReportResponseFormat["JSON"] = "JSON";
91
92
  })(AuditReportResponseFormat || (AuditReportResponseFormat = {}));
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);
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;
102
101
  }
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);
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;
114
113
  }
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);
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;
126
125
  }
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);
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;
138
137
  }
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);
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;
150
149
  }
151
- }
150
+ return ResourceNotFoundException;
151
+ }(__BaseException));
152
+ export { ResourceNotFoundException };
152
153
  export var ActionType;
153
154
  (function (ActionType) {
154
155
  ActionType["GetCertificate"] = "GetCertificate";
155
156
  ActionType["IssueCertificate"] = "IssueCertificate";
156
157
  ActionType["ListPermissions"] = "ListPermissions";
157
158
  })(ActionType || (ActionType = {}));
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);
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;
168
167
  }
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);
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;
180
179
  }
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);
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;
192
191
  }
193
- }
192
+ return LockoutPreventedException;
193
+ }(__BaseException));
194
+ export { LockoutPreventedException };
194
195
  export var FailureReason;
195
196
  (function (FailureReason) {
196
197
  FailureReason["OTHER"] = "OTHER";
@@ -213,42 +214,42 @@ export var AuditReportStatus;
213
214
  AuditReportStatus["FAILED"] = "FAILED";
214
215
  AuditReportStatus["SUCCESS"] = "SUCCESS";
215
216
  })(AuditReportStatus || (AuditReportStatus = {}));
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);
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;
226
225
  }
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);
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;
238
237
  }
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);
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;
250
249
  }
251
- }
250
+ return MalformedCertificateException;
251
+ }(__BaseException));
252
+ export { MalformedCertificateException };
252
253
  export var PolicyQualifierId;
253
254
  (function (PolicyQualifierId) {
254
255
  PolicyQualifierId["CPS"] = "CPS";
@@ -273,47 +274,47 @@ export var ValidityPeriodType;
273
274
  ValidityPeriodType["MONTHS"] = "MONTHS";
274
275
  ValidityPeriodType["YEARS"] = "YEARS";
275
276
  })(ValidityPeriodType || (ValidityPeriodType = {}));
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);
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;
286
285
  }
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);
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;
298
297
  }
299
- }
298
+ return InvalidNextTokenException;
299
+ }(__BaseException));
300
+ export { InvalidNextTokenException };
300
301
  export var ResourceOwner;
301
302
  (function (ResourceOwner) {
302
303
  ResourceOwner["OTHER_ACCOUNTS"] = "OTHER_ACCOUNTS";
303
304
  ResourceOwner["SELF"] = "SELF";
304
305
  })(ResourceOwner || (ResourceOwner = {}));
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);
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;
315
314
  }
316
- }
315
+ return RequestAlreadyProcessedException;
316
+ }(__BaseException));
317
+ export { RequestAlreadyProcessedException };
317
318
  export var RevocationReason;
318
319
  (function (RevocationReason) {
319
320
  RevocationReason["AFFILIATION_CHANGED"] = "AFFILIATION_CHANGED";
@@ -325,192 +326,74 @@ export var RevocationReason;
325
326
  RevocationReason["SUPERSEDED"] = "SUPERSEDED";
326
327
  RevocationReason["UNSPECIFIED"] = "UNSPECIFIED";
327
328
  })(RevocationReason || (RevocationReason = {}));
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);
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;
338
337
  }
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
- });
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)); };