@aws-sdk/client-iot-events-data 3.52.0 → 3.53.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/index.js +3 -0
- package/dist-cjs/models/IoTEventsDataServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +68 -2
- package/dist-cjs/protocols/Aws_restJson1.js +138 -440
- package/dist-es/index.js +1 -0
- package/dist-es/models/IoTEventsDataServiceException.js +12 -0
- package/dist-es/models/models_0.js +62 -1
- package/dist-es/protocols/Aws_restJson1.js +265 -490
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IoTEventsDataServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +27 -26
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/IoTEventsDataServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -21
- package/package.json +25 -25
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 IoTEventsDataServiceException = (function (_super) {
|
|
4
|
+
__extends(IoTEventsDataServiceException, _super);
|
|
5
|
+
function IoTEventsDataServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, IoTEventsDataServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return IoTEventsDataServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { IoTEventsDataServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { IoTEventsDataServiceException as __BaseException } from "./IoTEventsDataServiceException";
|
|
2
3
|
export var AcknowledgeActionConfiguration;
|
|
3
4
|
(function (AcknowledgeActionConfiguration) {
|
|
4
5
|
AcknowledgeActionConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -109,6 +110,54 @@ export var BatchAcknowledgeAlarmResponse;
|
|
|
109
110
|
(function (BatchAcknowledgeAlarmResponse) {
|
|
110
111
|
BatchAcknowledgeAlarmResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
111
112
|
})(BatchAcknowledgeAlarmResponse || (BatchAcknowledgeAlarmResponse = {}));
|
|
113
|
+
var InternalFailureException = (function (_super) {
|
|
114
|
+
__extends(InternalFailureException, _super);
|
|
115
|
+
function InternalFailureException(opts) {
|
|
116
|
+
var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
|
|
117
|
+
_this.name = "InternalFailureException";
|
|
118
|
+
_this.$fault = "server";
|
|
119
|
+
Object.setPrototypeOf(_this, InternalFailureException.prototype);
|
|
120
|
+
return _this;
|
|
121
|
+
}
|
|
122
|
+
return InternalFailureException;
|
|
123
|
+
}(__BaseException));
|
|
124
|
+
export { InternalFailureException };
|
|
125
|
+
var InvalidRequestException = (function (_super) {
|
|
126
|
+
__extends(InvalidRequestException, _super);
|
|
127
|
+
function InvalidRequestException(opts) {
|
|
128
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
129
|
+
_this.name = "InvalidRequestException";
|
|
130
|
+
_this.$fault = "client";
|
|
131
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
132
|
+
return _this;
|
|
133
|
+
}
|
|
134
|
+
return InvalidRequestException;
|
|
135
|
+
}(__BaseException));
|
|
136
|
+
export { InvalidRequestException };
|
|
137
|
+
var ServiceUnavailableException = (function (_super) {
|
|
138
|
+
__extends(ServiceUnavailableException, _super);
|
|
139
|
+
function ServiceUnavailableException(opts) {
|
|
140
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
141
|
+
_this.name = "ServiceUnavailableException";
|
|
142
|
+
_this.$fault = "server";
|
|
143
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
144
|
+
return _this;
|
|
145
|
+
}
|
|
146
|
+
return ServiceUnavailableException;
|
|
147
|
+
}(__BaseException));
|
|
148
|
+
export { ServiceUnavailableException };
|
|
149
|
+
var ThrottlingException = (function (_super) {
|
|
150
|
+
__extends(ThrottlingException, _super);
|
|
151
|
+
function ThrottlingException(opts) {
|
|
152
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
153
|
+
_this.name = "ThrottlingException";
|
|
154
|
+
_this.$fault = "client";
|
|
155
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
156
|
+
return _this;
|
|
157
|
+
}
|
|
158
|
+
return ThrottlingException;
|
|
159
|
+
}(__BaseException));
|
|
160
|
+
export { ThrottlingException };
|
|
112
161
|
export var DisableAlarmActionRequest;
|
|
113
162
|
(function (DisableAlarmActionRequest) {
|
|
114
163
|
DisableAlarmActionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -213,6 +262,18 @@ export var DescribeAlarmResponse;
|
|
|
213
262
|
(function (DescribeAlarmResponse) {
|
|
214
263
|
DescribeAlarmResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
215
264
|
})(DescribeAlarmResponse || (DescribeAlarmResponse = {}));
|
|
265
|
+
var ResourceNotFoundException = (function (_super) {
|
|
266
|
+
__extends(ResourceNotFoundException, _super);
|
|
267
|
+
function ResourceNotFoundException(opts) {
|
|
268
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
269
|
+
_this.name = "ResourceNotFoundException";
|
|
270
|
+
_this.$fault = "client";
|
|
271
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
272
|
+
return _this;
|
|
273
|
+
}
|
|
274
|
+
return ResourceNotFoundException;
|
|
275
|
+
}(__BaseException));
|
|
276
|
+
export { ResourceNotFoundException };
|
|
216
277
|
export var DescribeDetectorRequest;
|
|
217
278
|
(function (DescribeDetectorRequest) {
|
|
218
279
|
DescribeDetectorRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|