@aws-sdk/client-acm 3.52.0 → 3.54.1
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 +28 -0
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ACMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +212 -1
- package/dist-cjs/protocols/Aws_json1_1.js +183 -580
- package/dist-es/endpoints.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/ACMServiceException.js +12 -0
- package/dist-es/models/models_0.js +195 -1
- package/dist-es/protocols/Aws_json1_1.js +361 -609
- package/dist-types/ACMClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ACMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +114 -64
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ACMClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ACMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +82 -64
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +28 -28
package/dist-es/endpoints.js
CHANGED
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var ACMServiceException = (function (_super) {
|
|
4
|
+
__extends(ACMServiceException, _super);
|
|
5
|
+
function ACMServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ACMServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ACMServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ACMServiceException };
|
|
@@ -1,5 +1,19 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { ACMServiceException as __BaseException } from "./ACMServiceException";
|
|
4
|
+
var AccessDeniedException = (function (_super) {
|
|
5
|
+
__extends(AccessDeniedException, _super);
|
|
6
|
+
function AccessDeniedException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AccessDeniedException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
return _this;
|
|
13
|
+
}
|
|
14
|
+
return AccessDeniedException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { AccessDeniedException };
|
|
3
17
|
export var Tag;
|
|
4
18
|
(function (Tag) {
|
|
5
19
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -8,6 +22,90 @@ export var AddTagsToCertificateRequest;
|
|
|
8
22
|
(function (AddTagsToCertificateRequest) {
|
|
9
23
|
AddTagsToCertificateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
24
|
})(AddTagsToCertificateRequest || (AddTagsToCertificateRequest = {}));
|
|
25
|
+
var InvalidArnException = (function (_super) {
|
|
26
|
+
__extends(InvalidArnException, _super);
|
|
27
|
+
function InvalidArnException(opts) {
|
|
28
|
+
var _this = _super.call(this, __assign({ name: "InvalidArnException", $fault: "client" }, opts)) || this;
|
|
29
|
+
_this.name = "InvalidArnException";
|
|
30
|
+
_this.$fault = "client";
|
|
31
|
+
Object.setPrototypeOf(_this, InvalidArnException.prototype);
|
|
32
|
+
return _this;
|
|
33
|
+
}
|
|
34
|
+
return InvalidArnException;
|
|
35
|
+
}(__BaseException));
|
|
36
|
+
export { InvalidArnException };
|
|
37
|
+
var InvalidParameterException = (function (_super) {
|
|
38
|
+
__extends(InvalidParameterException, _super);
|
|
39
|
+
function InvalidParameterException(opts) {
|
|
40
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
|
|
41
|
+
_this.name = "InvalidParameterException";
|
|
42
|
+
_this.$fault = "client";
|
|
43
|
+
Object.setPrototypeOf(_this, InvalidParameterException.prototype);
|
|
44
|
+
return _this;
|
|
45
|
+
}
|
|
46
|
+
return InvalidParameterException;
|
|
47
|
+
}(__BaseException));
|
|
48
|
+
export { InvalidParameterException };
|
|
49
|
+
var InvalidTagException = (function (_super) {
|
|
50
|
+
__extends(InvalidTagException, _super);
|
|
51
|
+
function InvalidTagException(opts) {
|
|
52
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagException", $fault: "client" }, opts)) || this;
|
|
53
|
+
_this.name = "InvalidTagException";
|
|
54
|
+
_this.$fault = "client";
|
|
55
|
+
Object.setPrototypeOf(_this, InvalidTagException.prototype);
|
|
56
|
+
return _this;
|
|
57
|
+
}
|
|
58
|
+
return InvalidTagException;
|
|
59
|
+
}(__BaseException));
|
|
60
|
+
export { InvalidTagException };
|
|
61
|
+
var ResourceNotFoundException = (function (_super) {
|
|
62
|
+
__extends(ResourceNotFoundException, _super);
|
|
63
|
+
function ResourceNotFoundException(opts) {
|
|
64
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
65
|
+
_this.name = "ResourceNotFoundException";
|
|
66
|
+
_this.$fault = "client";
|
|
67
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
68
|
+
return _this;
|
|
69
|
+
}
|
|
70
|
+
return ResourceNotFoundException;
|
|
71
|
+
}(__BaseException));
|
|
72
|
+
export { ResourceNotFoundException };
|
|
73
|
+
var TagPolicyException = (function (_super) {
|
|
74
|
+
__extends(TagPolicyException, _super);
|
|
75
|
+
function TagPolicyException(opts) {
|
|
76
|
+
var _this = _super.call(this, __assign({ name: "TagPolicyException", $fault: "client" }, opts)) || this;
|
|
77
|
+
_this.name = "TagPolicyException";
|
|
78
|
+
_this.$fault = "client";
|
|
79
|
+
Object.setPrototypeOf(_this, TagPolicyException.prototype);
|
|
80
|
+
return _this;
|
|
81
|
+
}
|
|
82
|
+
return TagPolicyException;
|
|
83
|
+
}(__BaseException));
|
|
84
|
+
export { TagPolicyException };
|
|
85
|
+
var ThrottlingException = (function (_super) {
|
|
86
|
+
__extends(ThrottlingException, _super);
|
|
87
|
+
function ThrottlingException(opts) {
|
|
88
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
89
|
+
_this.name = "ThrottlingException";
|
|
90
|
+
_this.$fault = "client";
|
|
91
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
92
|
+
return _this;
|
|
93
|
+
}
|
|
94
|
+
return ThrottlingException;
|
|
95
|
+
}(__BaseException));
|
|
96
|
+
export { ThrottlingException };
|
|
97
|
+
var TooManyTagsException = (function (_super) {
|
|
98
|
+
__extends(TooManyTagsException, _super);
|
|
99
|
+
function TooManyTagsException(opts) {
|
|
100
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
101
|
+
_this.name = "TooManyTagsException";
|
|
102
|
+
_this.$fault = "client";
|
|
103
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
104
|
+
return _this;
|
|
105
|
+
}
|
|
106
|
+
return TooManyTagsException;
|
|
107
|
+
}(__BaseException));
|
|
108
|
+
export { TooManyTagsException };
|
|
11
109
|
export var RecordType;
|
|
12
110
|
(function (RecordType) {
|
|
13
111
|
RecordType["CNAME"] = "CNAME";
|
|
@@ -160,6 +258,18 @@ export var DeleteCertificateRequest;
|
|
|
160
258
|
(function (DeleteCertificateRequest) {
|
|
161
259
|
DeleteCertificateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
260
|
})(DeleteCertificateRequest || (DeleteCertificateRequest = {}));
|
|
261
|
+
var ResourceInUseException = (function (_super) {
|
|
262
|
+
__extends(ResourceInUseException, _super);
|
|
263
|
+
function ResourceInUseException(opts) {
|
|
264
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
265
|
+
_this.name = "ResourceInUseException";
|
|
266
|
+
_this.$fault = "client";
|
|
267
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
268
|
+
return _this;
|
|
269
|
+
}
|
|
270
|
+
return ResourceInUseException;
|
|
271
|
+
}(__BaseException));
|
|
272
|
+
export { ResourceInUseException };
|
|
163
273
|
export var DescribeCertificateRequest;
|
|
164
274
|
(function (DescribeCertificateRequest) {
|
|
165
275
|
DescribeCertificateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -176,6 +286,18 @@ export var ExportCertificateResponse;
|
|
|
176
286
|
(function (ExportCertificateResponse) {
|
|
177
287
|
ExportCertificateResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.PrivateKey && { PrivateKey: SENSITIVE_STRING }))); };
|
|
178
288
|
})(ExportCertificateResponse || (ExportCertificateResponse = {}));
|
|
289
|
+
var RequestInProgressException = (function (_super) {
|
|
290
|
+
__extends(RequestInProgressException, _super);
|
|
291
|
+
function RequestInProgressException(opts) {
|
|
292
|
+
var _this = _super.call(this, __assign({ name: "RequestInProgressException", $fault: "client" }, opts)) || this;
|
|
293
|
+
_this.name = "RequestInProgressException";
|
|
294
|
+
_this.$fault = "client";
|
|
295
|
+
Object.setPrototypeOf(_this, RequestInProgressException.prototype);
|
|
296
|
+
return _this;
|
|
297
|
+
}
|
|
298
|
+
return RequestInProgressException;
|
|
299
|
+
}(__BaseException));
|
|
300
|
+
export { RequestInProgressException };
|
|
179
301
|
export var ExpiryEventsConfiguration;
|
|
180
302
|
(function (ExpiryEventsConfiguration) {
|
|
181
303
|
ExpiryEventsConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -200,6 +322,30 @@ export var ImportCertificateResponse;
|
|
|
200
322
|
(function (ImportCertificateResponse) {
|
|
201
323
|
ImportCertificateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
324
|
})(ImportCertificateResponse || (ImportCertificateResponse = {}));
|
|
325
|
+
var LimitExceededException = (function (_super) {
|
|
326
|
+
__extends(LimitExceededException, _super);
|
|
327
|
+
function LimitExceededException(opts) {
|
|
328
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
329
|
+
_this.name = "LimitExceededException";
|
|
330
|
+
_this.$fault = "client";
|
|
331
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
332
|
+
return _this;
|
|
333
|
+
}
|
|
334
|
+
return LimitExceededException;
|
|
335
|
+
}(__BaseException));
|
|
336
|
+
export { LimitExceededException };
|
|
337
|
+
var InvalidArgsException = (function (_super) {
|
|
338
|
+
__extends(InvalidArgsException, _super);
|
|
339
|
+
function InvalidArgsException(opts) {
|
|
340
|
+
var _this = _super.call(this, __assign({ name: "InvalidArgsException", $fault: "client" }, opts)) || this;
|
|
341
|
+
_this.name = "InvalidArgsException";
|
|
342
|
+
_this.$fault = "client";
|
|
343
|
+
Object.setPrototypeOf(_this, InvalidArgsException.prototype);
|
|
344
|
+
return _this;
|
|
345
|
+
}
|
|
346
|
+
return InvalidArgsException;
|
|
347
|
+
}(__BaseException));
|
|
348
|
+
export { InvalidArgsException };
|
|
203
349
|
export var Filters;
|
|
204
350
|
(function (Filters) {
|
|
205
351
|
Filters.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -224,10 +370,34 @@ export var ListTagsForCertificateResponse;
|
|
|
224
370
|
(function (ListTagsForCertificateResponse) {
|
|
225
371
|
ListTagsForCertificateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
372
|
})(ListTagsForCertificateResponse || (ListTagsForCertificateResponse = {}));
|
|
373
|
+
var ConflictException = (function (_super) {
|
|
374
|
+
__extends(ConflictException, _super);
|
|
375
|
+
function ConflictException(opts) {
|
|
376
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
377
|
+
_this.name = "ConflictException";
|
|
378
|
+
_this.$fault = "client";
|
|
379
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
380
|
+
return _this;
|
|
381
|
+
}
|
|
382
|
+
return ConflictException;
|
|
383
|
+
}(__BaseException));
|
|
384
|
+
export { ConflictException };
|
|
227
385
|
export var PutAccountConfigurationRequest;
|
|
228
386
|
(function (PutAccountConfigurationRequest) {
|
|
229
387
|
PutAccountConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
388
|
})(PutAccountConfigurationRequest || (PutAccountConfigurationRequest = {}));
|
|
389
|
+
var ValidationException = (function (_super) {
|
|
390
|
+
__extends(ValidationException, _super);
|
|
391
|
+
function ValidationException(opts) {
|
|
392
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
393
|
+
_this.name = "ValidationException";
|
|
394
|
+
_this.$fault = "client";
|
|
395
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
396
|
+
return _this;
|
|
397
|
+
}
|
|
398
|
+
return ValidationException;
|
|
399
|
+
}(__BaseException));
|
|
400
|
+
export { ValidationException };
|
|
231
401
|
export var RemoveTagsFromCertificateRequest;
|
|
232
402
|
(function (RemoveTagsFromCertificateRequest) {
|
|
233
403
|
RemoveTagsFromCertificateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -236,6 +406,18 @@ export var RenewCertificateRequest;
|
|
|
236
406
|
(function (RenewCertificateRequest) {
|
|
237
407
|
RenewCertificateRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
238
408
|
})(RenewCertificateRequest || (RenewCertificateRequest = {}));
|
|
409
|
+
var InvalidDomainValidationOptionsException = (function (_super) {
|
|
410
|
+
__extends(InvalidDomainValidationOptionsException, _super);
|
|
411
|
+
function InvalidDomainValidationOptionsException(opts) {
|
|
412
|
+
var _this = _super.call(this, __assign({ name: "InvalidDomainValidationOptionsException", $fault: "client" }, opts)) || this;
|
|
413
|
+
_this.name = "InvalidDomainValidationOptionsException";
|
|
414
|
+
_this.$fault = "client";
|
|
415
|
+
Object.setPrototypeOf(_this, InvalidDomainValidationOptionsException.prototype);
|
|
416
|
+
return _this;
|
|
417
|
+
}
|
|
418
|
+
return InvalidDomainValidationOptionsException;
|
|
419
|
+
}(__BaseException));
|
|
420
|
+
export { InvalidDomainValidationOptionsException };
|
|
239
421
|
export var DomainValidationOption;
|
|
240
422
|
(function (DomainValidationOption) {
|
|
241
423
|
DomainValidationOption.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -248,6 +430,18 @@ export var RequestCertificateResponse;
|
|
|
248
430
|
(function (RequestCertificateResponse) {
|
|
249
431
|
RequestCertificateResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
432
|
})(RequestCertificateResponse || (RequestCertificateResponse = {}));
|
|
433
|
+
var InvalidStateException = (function (_super) {
|
|
434
|
+
__extends(InvalidStateException, _super);
|
|
435
|
+
function InvalidStateException(opts) {
|
|
436
|
+
var _this = _super.call(this, __assign({ name: "InvalidStateException", $fault: "client" }, opts)) || this;
|
|
437
|
+
_this.name = "InvalidStateException";
|
|
438
|
+
_this.$fault = "client";
|
|
439
|
+
Object.setPrototypeOf(_this, InvalidStateException.prototype);
|
|
440
|
+
return _this;
|
|
441
|
+
}
|
|
442
|
+
return InvalidStateException;
|
|
443
|
+
}(__BaseException));
|
|
444
|
+
export { InvalidStateException };
|
|
251
445
|
export var ResendValidationEmailRequest;
|
|
252
446
|
(function (ResendValidationEmailRequest) {
|
|
253
447
|
ResendValidationEmailRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|