@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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/ACMPCA.js +101 -94
- package/dist-es/ACMPCAClient.js +28 -22
- package/dist-es/commands/CreateCertificateAuthorityAuditReportCommand.js +28 -21
- package/dist-es/commands/CreateCertificateAuthorityCommand.js +28 -21
- package/dist-es/commands/CreatePermissionCommand.js +29 -22
- package/dist-es/commands/DeleteCertificateAuthorityCommand.js +29 -22
- package/dist-es/commands/DeletePermissionCommand.js +29 -22
- package/dist-es/commands/DeletePolicyCommand.js +29 -22
- package/dist-es/commands/DescribeCertificateAuthorityAuditReportCommand.js +28 -21
- package/dist-es/commands/DescribeCertificateAuthorityCommand.js +28 -21
- package/dist-es/commands/GetCertificateAuthorityCertificateCommand.js +28 -21
- package/dist-es/commands/GetCertificateAuthorityCsrCommand.js +28 -21
- package/dist-es/commands/GetCertificateCommand.js +28 -21
- package/dist-es/commands/GetPolicyCommand.js +28 -21
- package/dist-es/commands/ImportCertificateAuthorityCertificateCommand.js +29 -22
- package/dist-es/commands/IssueCertificateCommand.js +28 -21
- package/dist-es/commands/ListCertificateAuthoritiesCommand.js +28 -21
- package/dist-es/commands/ListPermissionsCommand.js +28 -21
- package/dist-es/commands/ListTagsCommand.js +28 -21
- package/dist-es/commands/PutPolicyCommand.js +29 -22
- package/dist-es/commands/RestoreCertificateAuthorityCommand.js +29 -22
- package/dist-es/commands/RevokeCertificateCommand.js +29 -22
- package/dist-es/commands/TagCertificateAuthorityCommand.js +29 -22
- package/dist-es/commands/UntagCertificateAuthorityCommand.js +29 -22
- package/dist-es/commands/UpdateCertificateAuthorityCommand.js +29 -22
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ACMPCAServiceException.js +10 -5
- package/dist-es/models/models_0.js +269 -386
- package/dist-es/pagination/ListCertificateAuthoritiesPaginator.js +68 -25
- package/dist-es/pagination/ListPermissionsPaginator.js +68 -25
- package/dist-es/pagination/ListTagsPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +2238 -1817
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/dist-es/waiters/waitForAuditReportCreated.js +56 -36
- package/dist-es/waiters/waitForCertificateAuthorityCSRCreated.js +42 -23
- package/dist-es/waiters/waitForCertificateIssued.js +42 -23
- 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
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
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
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
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
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
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
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
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
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
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
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
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
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
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
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
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
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
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
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
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
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
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
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
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
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
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
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
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
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
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
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
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
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
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
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
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
|
-
|
|
341
|
-
|
|
342
|
-
});
|
|
343
|
-
export
|
|
344
|
-
|
|
345
|
-
});
|
|
346
|
-
export
|
|
347
|
-
|
|
348
|
-
});
|
|
349
|
-
export
|
|
350
|
-
|
|
351
|
-
});
|
|
352
|
-
export
|
|
353
|
-
|
|
354
|
-
});
|
|
355
|
-
export
|
|
356
|
-
|
|
357
|
-
});
|
|
358
|
-
export
|
|
359
|
-
|
|
360
|
-
});
|
|
361
|
-
export
|
|
362
|
-
|
|
363
|
-
});
|
|
364
|
-
export
|
|
365
|
-
|
|
366
|
-
});
|
|
367
|
-
export
|
|
368
|
-
|
|
369
|
-
});
|
|
370
|
-
export
|
|
371
|
-
|
|
372
|
-
});
|
|
373
|
-
export
|
|
374
|
-
|
|
375
|
-
});
|
|
376
|
-
export
|
|
377
|
-
|
|
378
|
-
});
|
|
379
|
-
export
|
|
380
|
-
|
|
381
|
-
});
|
|
382
|
-
export
|
|
383
|
-
|
|
384
|
-
});
|
|
385
|
-
export
|
|
386
|
-
|
|
387
|
-
});
|
|
388
|
-
export
|
|
389
|
-
|
|
390
|
-
});
|
|
391
|
-
export
|
|
392
|
-
|
|
393
|
-
});
|
|
394
|
-
export
|
|
395
|
-
|
|
396
|
-
});
|
|
397
|
-
export
|
|
398
|
-
|
|
399
|
-
});
|
|
400
|
-
export
|
|
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)); };
|