@aws-sdk/client-acm 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/ACM.js +69 -62
- package/dist-es/ACMClient.js +28 -22
- package/dist-es/commands/AddTagsToCertificateCommand.js +29 -22
- package/dist-es/commands/DeleteCertificateCommand.js +29 -22
- package/dist-es/commands/DescribeCertificateCommand.js +28 -21
- package/dist-es/commands/ExportCertificateCommand.js +28 -21
- package/dist-es/commands/GetAccountConfigurationCommand.js +29 -22
- package/dist-es/commands/GetCertificateCommand.js +28 -21
- package/dist-es/commands/ImportCertificateCommand.js +28 -21
- package/dist-es/commands/ListCertificatesCommand.js +28 -21
- package/dist-es/commands/ListTagsForCertificateCommand.js +28 -21
- package/dist-es/commands/PutAccountConfigurationCommand.js +29 -22
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +29 -22
- package/dist-es/commands/RenewCertificateCommand.js +29 -22
- package/dist-es/commands/RequestCertificateCommand.js +28 -21
- package/dist-es/commands/ResendValidationEmailCommand.js +29 -22
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +29 -22
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ACMServiceException.js +10 -5
- package/dist-es/models/models_0.js +212 -282
- package/dist-es/pagination/ListCertificatesPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +1452 -1129
- 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/waitForCertificateValidated.js +102 -61
- package/package.json +5 -5
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { UpdateCertificateOptionsRequestFilterSensitiveLog } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_json1_1UpdateCertificateOptionsCommand, serializeAws_json1_1UpdateCertificateOptionsCommand, } from "../protocols/Aws_json1_1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UpdateCertificateOptionsCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateCertificateOptionsCommand, _super);
|
|
8
|
+
function UpdateCertificateOptionsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateCertificateOptionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ACMClient";
|
|
18
|
+
var commandName = "UpdateCertificateOptionsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateCertificateOptionsRequestFilterSensitiveLog,
|
|
21
|
-
outputFilterSensitiveLog: (output)
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateCertificateOptionsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_json1_1UpdateCertificateOptionsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateCertificateOptionsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_json1_1UpdateCertificateOptionsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateCertificateOptionsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateCertificateOptionsCommand };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
3
|
+
var regionHash = {
|
|
3
4
|
"ca-central-1": {
|
|
4
5
|
variants: [
|
|
5
6
|
{
|
|
@@ -59,7 +60,7 @@ const regionHash = {
|
|
|
59
60
|
],
|
|
60
61
|
},
|
|
61
62
|
};
|
|
62
|
-
|
|
63
|
+
var partitionHash = {
|
|
63
64
|
aws: {
|
|
64
65
|
regions: [
|
|
65
66
|
"af-south-1",
|
|
@@ -184,9 +185,8 @@ const partitionHash = {
|
|
|
184
185
|
],
|
|
185
186
|
},
|
|
186
187
|
};
|
|
187
|
-
export
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
});
|
|
188
|
+
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
189
|
+
return __generator(this, function (_a) {
|
|
190
|
+
return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "acm", regionHash: regionHash, partitionHash: partitionHash }))];
|
|
191
|
+
});
|
|
192
|
+
}); };
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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;
|
|
6
9
|
}
|
|
7
|
-
|
|
10
|
+
return ACMServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ACMServiceException };
|
|
@@ -1,102 +1,103 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { ACMServiceException as __BaseException } from "./ACMServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
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;
|
|
14
13
|
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
14
|
+
return AccessDeniedException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { AccessDeniedException };
|
|
17
|
+
var InvalidArnException = (function (_super) {
|
|
18
|
+
__extends(InvalidArnException, _super);
|
|
19
|
+
function InvalidArnException(opts) {
|
|
20
|
+
var _this = _super.call(this, __assign({ name: "InvalidArnException", $fault: "client" }, opts)) || this;
|
|
21
|
+
_this.name = "InvalidArnException";
|
|
22
|
+
_this.$fault = "client";
|
|
23
|
+
Object.setPrototypeOf(_this, InvalidArnException.prototype);
|
|
24
|
+
return _this;
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
26
|
+
return InvalidArnException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { InvalidArnException };
|
|
29
|
+
var InvalidParameterException = (function (_super) {
|
|
30
|
+
__extends(InvalidParameterException, _super);
|
|
31
|
+
function InvalidParameterException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
|
|
33
|
+
_this.name = "InvalidParameterException";
|
|
34
|
+
_this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(_this, InvalidParameterException.prototype);
|
|
36
|
+
return _this;
|
|
38
37
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
38
|
+
return InvalidParameterException;
|
|
39
|
+
}(__BaseException));
|
|
40
|
+
export { InvalidParameterException };
|
|
41
|
+
var InvalidTagException = (function (_super) {
|
|
42
|
+
__extends(InvalidTagException, _super);
|
|
43
|
+
function InvalidTagException(opts) {
|
|
44
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagException", $fault: "client" }, opts)) || this;
|
|
45
|
+
_this.name = "InvalidTagException";
|
|
46
|
+
_this.$fault = "client";
|
|
47
|
+
Object.setPrototypeOf(_this, InvalidTagException.prototype);
|
|
48
|
+
return _this;
|
|
50
49
|
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
50
|
+
return InvalidTagException;
|
|
51
|
+
}(__BaseException));
|
|
52
|
+
export { InvalidTagException };
|
|
53
|
+
var ResourceNotFoundException = (function (_super) {
|
|
54
|
+
__extends(ResourceNotFoundException, _super);
|
|
55
|
+
function ResourceNotFoundException(opts) {
|
|
56
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
57
|
+
_this.name = "ResourceNotFoundException";
|
|
58
|
+
_this.$fault = "client";
|
|
59
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
60
|
+
return _this;
|
|
62
61
|
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
62
|
+
return ResourceNotFoundException;
|
|
63
|
+
}(__BaseException));
|
|
64
|
+
export { ResourceNotFoundException };
|
|
65
|
+
var TagPolicyException = (function (_super) {
|
|
66
|
+
__extends(TagPolicyException, _super);
|
|
67
|
+
function TagPolicyException(opts) {
|
|
68
|
+
var _this = _super.call(this, __assign({ name: "TagPolicyException", $fault: "client" }, opts)) || this;
|
|
69
|
+
_this.name = "TagPolicyException";
|
|
70
|
+
_this.$fault = "client";
|
|
71
|
+
Object.setPrototypeOf(_this, TagPolicyException.prototype);
|
|
72
|
+
return _this;
|
|
74
73
|
}
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
74
|
+
return TagPolicyException;
|
|
75
|
+
}(__BaseException));
|
|
76
|
+
export { TagPolicyException };
|
|
77
|
+
var ThrottlingException = (function (_super) {
|
|
78
|
+
__extends(ThrottlingException, _super);
|
|
79
|
+
function ThrottlingException(opts) {
|
|
80
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
81
|
+
_this.name = "ThrottlingException";
|
|
82
|
+
_this.$fault = "client";
|
|
83
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
84
|
+
return _this;
|
|
86
85
|
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
86
|
+
return ThrottlingException;
|
|
87
|
+
}(__BaseException));
|
|
88
|
+
export { ThrottlingException };
|
|
89
|
+
var TooManyTagsException = (function (_super) {
|
|
90
|
+
__extends(TooManyTagsException, _super);
|
|
91
|
+
function TooManyTagsException(opts) {
|
|
92
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
93
|
+
_this.name = "TooManyTagsException";
|
|
94
|
+
_this.$fault = "client";
|
|
95
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
96
|
+
return _this;
|
|
98
97
|
}
|
|
99
|
-
|
|
98
|
+
return TooManyTagsException;
|
|
99
|
+
}(__BaseException));
|
|
100
|
+
export { TooManyTagsException };
|
|
100
101
|
export var RecordType;
|
|
101
102
|
(function (RecordType) {
|
|
102
103
|
RecordType["CNAME"] = "CNAME";
|
|
@@ -217,54 +218,54 @@ export var CertificateType;
|
|
|
217
218
|
CertificateType["IMPORTED"] = "IMPORTED";
|
|
218
219
|
CertificateType["PRIVATE"] = "PRIVATE";
|
|
219
220
|
})(CertificateType || (CertificateType = {}));
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
this.$fault = "client";
|
|
229
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
221
|
+
var ResourceInUseException = (function (_super) {
|
|
222
|
+
__extends(ResourceInUseException, _super);
|
|
223
|
+
function ResourceInUseException(opts) {
|
|
224
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
225
|
+
_this.name = "ResourceInUseException";
|
|
226
|
+
_this.$fault = "client";
|
|
227
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
228
|
+
return _this;
|
|
230
229
|
}
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
230
|
+
return ResourceInUseException;
|
|
231
|
+
}(__BaseException));
|
|
232
|
+
export { ResourceInUseException };
|
|
233
|
+
var RequestInProgressException = (function (_super) {
|
|
234
|
+
__extends(RequestInProgressException, _super);
|
|
235
|
+
function RequestInProgressException(opts) {
|
|
236
|
+
var _this = _super.call(this, __assign({ name: "RequestInProgressException", $fault: "client" }, opts)) || this;
|
|
237
|
+
_this.name = "RequestInProgressException";
|
|
238
|
+
_this.$fault = "client";
|
|
239
|
+
Object.setPrototypeOf(_this, RequestInProgressException.prototype);
|
|
240
|
+
return _this;
|
|
242
241
|
}
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
242
|
+
return RequestInProgressException;
|
|
243
|
+
}(__BaseException));
|
|
244
|
+
export { RequestInProgressException };
|
|
245
|
+
var LimitExceededException = (function (_super) {
|
|
246
|
+
__extends(LimitExceededException, _super);
|
|
247
|
+
function LimitExceededException(opts) {
|
|
248
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
249
|
+
_this.name = "LimitExceededException";
|
|
250
|
+
_this.$fault = "client";
|
|
251
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
252
|
+
return _this;
|
|
254
253
|
}
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
254
|
+
return LimitExceededException;
|
|
255
|
+
}(__BaseException));
|
|
256
|
+
export { LimitExceededException };
|
|
257
|
+
var InvalidArgsException = (function (_super) {
|
|
258
|
+
__extends(InvalidArgsException, _super);
|
|
259
|
+
function InvalidArgsException(opts) {
|
|
260
|
+
var _this = _super.call(this, __assign({ name: "InvalidArgsException", $fault: "client" }, opts)) || this;
|
|
261
|
+
_this.name = "InvalidArgsException";
|
|
262
|
+
_this.$fault = "client";
|
|
263
|
+
Object.setPrototypeOf(_this, InvalidArgsException.prototype);
|
|
264
|
+
return _this;
|
|
266
265
|
}
|
|
267
|
-
|
|
266
|
+
return InvalidArgsException;
|
|
267
|
+
}(__BaseException));
|
|
268
|
+
export { InvalidArgsException };
|
|
268
269
|
export var SortBy;
|
|
269
270
|
(function (SortBy) {
|
|
270
271
|
SortBy["CREATED_AT"] = "CREATED_AT";
|
|
@@ -274,156 +275,85 @@ export var SortOrder;
|
|
|
274
275
|
SortOrder["ASCENDING"] = "ASCENDING";
|
|
275
276
|
SortOrder["DESCENDING"] = "DESCENDING";
|
|
276
277
|
})(SortOrder || (SortOrder = {}));
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
this.$fault = "client";
|
|
286
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
278
|
+
var ConflictException = (function (_super) {
|
|
279
|
+
__extends(ConflictException, _super);
|
|
280
|
+
function ConflictException(opts) {
|
|
281
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
282
|
+
_this.name = "ConflictException";
|
|
283
|
+
_this.$fault = "client";
|
|
284
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
285
|
+
return _this;
|
|
287
286
|
}
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
287
|
+
return ConflictException;
|
|
288
|
+
}(__BaseException));
|
|
289
|
+
export { ConflictException };
|
|
290
|
+
var ValidationException = (function (_super) {
|
|
291
|
+
__extends(ValidationException, _super);
|
|
292
|
+
function ValidationException(opts) {
|
|
293
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
294
|
+
_this.name = "ValidationException";
|
|
295
|
+
_this.$fault = "client";
|
|
296
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
297
|
+
return _this;
|
|
299
298
|
}
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
299
|
+
return ValidationException;
|
|
300
|
+
}(__BaseException));
|
|
301
|
+
export { ValidationException };
|
|
302
|
+
var InvalidDomainValidationOptionsException = (function (_super) {
|
|
303
|
+
__extends(InvalidDomainValidationOptionsException, _super);
|
|
304
|
+
function InvalidDomainValidationOptionsException(opts) {
|
|
305
|
+
var _this = _super.call(this, __assign({ name: "InvalidDomainValidationOptionsException", $fault: "client" }, opts)) || this;
|
|
306
|
+
_this.name = "InvalidDomainValidationOptionsException";
|
|
307
|
+
_this.$fault = "client";
|
|
308
|
+
Object.setPrototypeOf(_this, InvalidDomainValidationOptionsException.prototype);
|
|
309
|
+
return _this;
|
|
311
310
|
}
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
311
|
+
return InvalidDomainValidationOptionsException;
|
|
312
|
+
}(__BaseException));
|
|
313
|
+
export { InvalidDomainValidationOptionsException };
|
|
314
|
+
var InvalidStateException = (function (_super) {
|
|
315
|
+
__extends(InvalidStateException, _super);
|
|
316
|
+
function InvalidStateException(opts) {
|
|
317
|
+
var _this = _super.call(this, __assign({ name: "InvalidStateException", $fault: "client" }, opts)) || this;
|
|
318
|
+
_this.name = "InvalidStateException";
|
|
319
|
+
_this.$fault = "client";
|
|
320
|
+
Object.setPrototypeOf(_this, InvalidStateException.prototype);
|
|
321
|
+
return _this;
|
|
323
322
|
}
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
});
|
|
328
|
-
export
|
|
329
|
-
|
|
330
|
-
});
|
|
331
|
-
export
|
|
332
|
-
|
|
333
|
-
});
|
|
334
|
-
export
|
|
335
|
-
|
|
336
|
-
});
|
|
337
|
-
export
|
|
338
|
-
|
|
339
|
-
});
|
|
340
|
-
export
|
|
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 const ExportCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
362
|
-
...obj,
|
|
363
|
-
...(obj.Passphrase && { Passphrase: SENSITIVE_STRING }),
|
|
364
|
-
});
|
|
365
|
-
export const ExportCertificateResponseFilterSensitiveLog = (obj) => ({
|
|
366
|
-
...obj,
|
|
367
|
-
...(obj.PrivateKey && { PrivateKey: SENSITIVE_STRING }),
|
|
368
|
-
});
|
|
369
|
-
export const ExpiryEventsConfigurationFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
|
-
export const GetAccountConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const GetCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
});
|
|
378
|
-
export const GetCertificateResponseFilterSensitiveLog = (obj) => ({
|
|
379
|
-
...obj,
|
|
380
|
-
});
|
|
381
|
-
export const ImportCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
...(obj.PrivateKey && { PrivateKey: SENSITIVE_STRING }),
|
|
384
|
-
});
|
|
385
|
-
export const ImportCertificateResponseFilterSensitiveLog = (obj) => ({
|
|
386
|
-
...obj,
|
|
387
|
-
});
|
|
388
|
-
export const FiltersFilterSensitiveLog = (obj) => ({
|
|
389
|
-
...obj,
|
|
390
|
-
});
|
|
391
|
-
export const ListCertificatesRequestFilterSensitiveLog = (obj) => ({
|
|
392
|
-
...obj,
|
|
393
|
-
});
|
|
394
|
-
export const CertificateSummaryFilterSensitiveLog = (obj) => ({
|
|
395
|
-
...obj,
|
|
396
|
-
});
|
|
397
|
-
export const ListCertificatesResponseFilterSensitiveLog = (obj) => ({
|
|
398
|
-
...obj,
|
|
399
|
-
});
|
|
400
|
-
export const ListTagsForCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
401
|
-
...obj,
|
|
402
|
-
});
|
|
403
|
-
export const ListTagsForCertificateResponseFilterSensitiveLog = (obj) => ({
|
|
404
|
-
...obj,
|
|
405
|
-
});
|
|
406
|
-
export const PutAccountConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
407
|
-
...obj,
|
|
408
|
-
});
|
|
409
|
-
export const RemoveTagsFromCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
410
|
-
...obj,
|
|
411
|
-
});
|
|
412
|
-
export const RenewCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
413
|
-
...obj,
|
|
414
|
-
});
|
|
415
|
-
export const DomainValidationOptionFilterSensitiveLog = (obj) => ({
|
|
416
|
-
...obj,
|
|
417
|
-
});
|
|
418
|
-
export const RequestCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
419
|
-
...obj,
|
|
420
|
-
});
|
|
421
|
-
export const RequestCertificateResponseFilterSensitiveLog = (obj) => ({
|
|
422
|
-
...obj,
|
|
423
|
-
});
|
|
424
|
-
export const ResendValidationEmailRequestFilterSensitiveLog = (obj) => ({
|
|
425
|
-
...obj,
|
|
426
|
-
});
|
|
427
|
-
export const UpdateCertificateOptionsRequestFilterSensitiveLog = (obj) => ({
|
|
428
|
-
...obj,
|
|
429
|
-
});
|
|
323
|
+
return InvalidStateException;
|
|
324
|
+
}(__BaseException));
|
|
325
|
+
export { InvalidStateException };
|
|
326
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var AddTagsToCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var ResourceRecordFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var DomainValidationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var ExtendedKeyUsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var KeyUsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
|
+
export var CertificateOptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
|
+
export var RenewalSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var CertificateDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
export var DeleteCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var DescribeCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var DescribeCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var ExportCertificateRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Passphrase && { Passphrase: SENSITIVE_STRING }))); };
|
|
339
|
+
export var ExportCertificateResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.PrivateKey && { PrivateKey: SENSITIVE_STRING }))); };
|
|
340
|
+
export var ExpiryEventsConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
export var GetAccountConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
+
export var GetCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
+
export var GetCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
+
export var ImportCertificateRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.PrivateKey && { PrivateKey: SENSITIVE_STRING }))); };
|
|
345
|
+
export var ImportCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
346
|
+
export var FiltersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
+
export var ListCertificatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
348
|
+
export var CertificateSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
349
|
+
export var ListCertificatesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
|
+
export var ListTagsForCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
+
export var ListTagsForCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
352
|
+
export var PutAccountConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
export var RemoveTagsFromCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
354
|
+
export var RenewCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
+
export var DomainValidationOptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
356
|
+
export var RequestCertificateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
export var RequestCertificateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
+
export var ResendValidationEmailRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
+
export var UpdateCertificateOptionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|