@aws-sdk/client-health 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/HealthServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +41 -1
- package/dist-cjs/protocols/Aws_json1_1.js +103 -253
- package/dist-es/index.js +1 -0
- package/dist-es/models/HealthServiceException.js +12 -0
- package/dist-es/models/models_0.js +38 -1
- package/dist-es/protocols/Aws_json1_1.js +216 -286
- package/dist-types/HealthClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/HealthServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +23 -13
- 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/HealthClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/HealthServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -13
- 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 +33 -33
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 HealthServiceException = (function (_super) {
|
|
4
|
+
__extends(HealthServiceException, _super);
|
|
5
|
+
function HealthServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, HealthServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return HealthServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { HealthServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { HealthServiceException as __BaseException } from "./HealthServiceException";
|
|
2
3
|
export var EntityStatusCode;
|
|
3
4
|
(function (EntityStatusCode) {
|
|
4
5
|
EntityStatusCode["IMPAIRED"] = "IMPAIRED";
|
|
@@ -23,6 +24,18 @@ export var DescribeAffectedAccountsForOrganizationResponse;
|
|
|
23
24
|
(function (DescribeAffectedAccountsForOrganizationResponse) {
|
|
24
25
|
DescribeAffectedAccountsForOrganizationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
25
26
|
})(DescribeAffectedAccountsForOrganizationResponse || (DescribeAffectedAccountsForOrganizationResponse = {}));
|
|
27
|
+
var InvalidPaginationToken = (function (_super) {
|
|
28
|
+
__extends(InvalidPaginationToken, _super);
|
|
29
|
+
function InvalidPaginationToken(opts) {
|
|
30
|
+
var _this = _super.call(this, __assign({ name: "InvalidPaginationToken", $fault: "client" }, opts)) || this;
|
|
31
|
+
_this.name = "InvalidPaginationToken";
|
|
32
|
+
_this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(_this, InvalidPaginationToken.prototype);
|
|
34
|
+
return _this;
|
|
35
|
+
}
|
|
36
|
+
return InvalidPaginationToken;
|
|
37
|
+
}(__BaseException));
|
|
38
|
+
export { InvalidPaginationToken };
|
|
26
39
|
export var DateTimeRange;
|
|
27
40
|
(function (DateTimeRange) {
|
|
28
41
|
DateTimeRange.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -39,6 +52,18 @@ export var DescribeAffectedEntitiesResponse;
|
|
|
39
52
|
(function (DescribeAffectedEntitiesResponse) {
|
|
40
53
|
DescribeAffectedEntitiesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
41
54
|
})(DescribeAffectedEntitiesResponse || (DescribeAffectedEntitiesResponse = {}));
|
|
55
|
+
var UnsupportedLocale = (function (_super) {
|
|
56
|
+
__extends(UnsupportedLocale, _super);
|
|
57
|
+
function UnsupportedLocale(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedLocale", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "UnsupportedLocale";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, UnsupportedLocale.prototype);
|
|
62
|
+
return _this;
|
|
63
|
+
}
|
|
64
|
+
return UnsupportedLocale;
|
|
65
|
+
}(__BaseException));
|
|
66
|
+
export { UnsupportedLocale };
|
|
42
67
|
export var EventAccountFilter;
|
|
43
68
|
(function (EventAccountFilter) {
|
|
44
69
|
EventAccountFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -184,3 +209,15 @@ export var DescribeHealthServiceStatusForOrganizationResponse;
|
|
|
184
209
|
(function (DescribeHealthServiceStatusForOrganizationResponse) {
|
|
185
210
|
DescribeHealthServiceStatusForOrganizationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
211
|
})(DescribeHealthServiceStatusForOrganizationResponse || (DescribeHealthServiceStatusForOrganizationResponse = {}));
|
|
212
|
+
var ConcurrentModificationException = (function (_super) {
|
|
213
|
+
__extends(ConcurrentModificationException, _super);
|
|
214
|
+
function ConcurrentModificationException(opts) {
|
|
215
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
|
|
216
|
+
_this.name = "ConcurrentModificationException";
|
|
217
|
+
_this.$fault = "client";
|
|
218
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
219
|
+
return _this;
|
|
220
|
+
}
|
|
221
|
+
return ConcurrentModificationException;
|
|
222
|
+
}(__BaseException));
|
|
223
|
+
export { ConcurrentModificationException };
|