@aws-sdk/client-iot-events-data 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/IoTEventsData.js +57 -50
- package/dist-es/IoTEventsDataClient.js +28 -22
- package/dist-es/commands/BatchAcknowledgeAlarmCommand.js +28 -21
- package/dist-es/commands/BatchDeleteDetectorCommand.js +28 -21
- package/dist-es/commands/BatchDisableAlarmCommand.js +28 -21
- package/dist-es/commands/BatchEnableAlarmCommand.js +28 -21
- package/dist-es/commands/BatchPutMessageCommand.js +28 -21
- package/dist-es/commands/BatchResetAlarmCommand.js +28 -21
- package/dist-es/commands/BatchSnoozeAlarmCommand.js +28 -21
- package/dist-es/commands/BatchUpdateDetectorCommand.js +28 -21
- package/dist-es/commands/DescribeAlarmCommand.js +28 -21
- package/dist-es/commands/DescribeDetectorCommand.js +28 -21
- package/dist-es/commands/ListAlarmsCommand.js +28 -21
- package/dist-es/commands/ListDetectorsCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/IoTEventsDataServiceException.js +10 -5
- package/dist-es/models/models_0.js +115 -232
- package/dist-es/protocols/Aws_restJson1.js +1327 -988
- 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/package.json +33 -33
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { IoTEventsDataServiceException as __BaseException } from "./IoTEventsDataServiceException";
|
|
2
3
|
export var CustomerActionName;
|
|
3
4
|
(function (CustomerActionName) {
|
|
@@ -41,240 +42,122 @@ export var ErrorCode;
|
|
|
41
42
|
ErrorCode["ServiceUnavailableException"] = "ServiceUnavailableException";
|
|
42
43
|
ErrorCode["ThrottlingException"] = "ThrottlingException";
|
|
43
44
|
})(ErrorCode || (ErrorCode = {}));
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
this.$fault = "server";
|
|
53
|
-
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
45
|
+
var InternalFailureException = (function (_super) {
|
|
46
|
+
__extends(InternalFailureException, _super);
|
|
47
|
+
function InternalFailureException(opts) {
|
|
48
|
+
var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
|
|
49
|
+
_this.name = "InternalFailureException";
|
|
50
|
+
_this.$fault = "server";
|
|
51
|
+
Object.setPrototypeOf(_this, InternalFailureException.prototype);
|
|
52
|
+
return _this;
|
|
54
53
|
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
54
|
+
return InternalFailureException;
|
|
55
|
+
}(__BaseException));
|
|
56
|
+
export { InternalFailureException };
|
|
57
|
+
var InvalidRequestException = (function (_super) {
|
|
58
|
+
__extends(InvalidRequestException, _super);
|
|
59
|
+
function InvalidRequestException(opts) {
|
|
60
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
61
|
+
_this.name = "InvalidRequestException";
|
|
62
|
+
_this.$fault = "client";
|
|
63
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
64
|
+
return _this;
|
|
66
65
|
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
66
|
+
return InvalidRequestException;
|
|
67
|
+
}(__BaseException));
|
|
68
|
+
export { InvalidRequestException };
|
|
69
|
+
var ServiceUnavailableException = (function (_super) {
|
|
70
|
+
__extends(ServiceUnavailableException, _super);
|
|
71
|
+
function ServiceUnavailableException(opts) {
|
|
72
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
73
|
+
_this.name = "ServiceUnavailableException";
|
|
74
|
+
_this.$fault = "server";
|
|
75
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
76
|
+
return _this;
|
|
78
77
|
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
78
|
+
return ServiceUnavailableException;
|
|
79
|
+
}(__BaseException));
|
|
80
|
+
export { ServiceUnavailableException };
|
|
81
|
+
var ThrottlingException = (function (_super) {
|
|
82
|
+
__extends(ThrottlingException, _super);
|
|
83
|
+
function ThrottlingException(opts) {
|
|
84
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
85
|
+
_this.name = "ThrottlingException";
|
|
86
|
+
_this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
88
|
+
return _this;
|
|
90
89
|
}
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
90
|
+
return ThrottlingException;
|
|
91
|
+
}(__BaseException));
|
|
92
|
+
export { ThrottlingException };
|
|
93
|
+
var ResourceNotFoundException = (function (_super) {
|
|
94
|
+
__extends(ResourceNotFoundException, _super);
|
|
95
|
+
function ResourceNotFoundException(opts) {
|
|
96
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
97
|
+
_this.name = "ResourceNotFoundException";
|
|
98
|
+
_this.$fault = "client";
|
|
99
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
100
|
+
return _this;
|
|
102
101
|
}
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
});
|
|
107
|
-
export
|
|
108
|
-
|
|
109
|
-
});
|
|
110
|
-
export
|
|
111
|
-
|
|
112
|
-
});
|
|
113
|
-
export
|
|
114
|
-
|
|
115
|
-
});
|
|
116
|
-
export
|
|
117
|
-
|
|
118
|
-
});
|
|
119
|
-
export
|
|
120
|
-
|
|
121
|
-
});
|
|
122
|
-
export
|
|
123
|
-
|
|
124
|
-
});
|
|
125
|
-
export
|
|
126
|
-
|
|
127
|
-
});
|
|
128
|
-
export
|
|
129
|
-
|
|
130
|
-
});
|
|
131
|
-
export
|
|
132
|
-
|
|
133
|
-
});
|
|
134
|
-
export
|
|
135
|
-
|
|
136
|
-
});
|
|
137
|
-
export
|
|
138
|
-
|
|
139
|
-
});
|
|
140
|
-
export
|
|
141
|
-
|
|
142
|
-
});
|
|
143
|
-
export
|
|
144
|
-
|
|
145
|
-
});
|
|
146
|
-
export
|
|
147
|
-
|
|
148
|
-
});
|
|
149
|
-
export
|
|
150
|
-
|
|
151
|
-
});
|
|
152
|
-
export
|
|
153
|
-
|
|
154
|
-
});
|
|
155
|
-
export
|
|
156
|
-
|
|
157
|
-
});
|
|
158
|
-
export
|
|
159
|
-
|
|
160
|
-
});
|
|
161
|
-
export
|
|
162
|
-
|
|
163
|
-
});
|
|
164
|
-
export
|
|
165
|
-
...obj,
|
|
166
|
-
});
|
|
167
|
-
export const DisableAlarmActionRequestFilterSensitiveLog = (obj) => ({
|
|
168
|
-
...obj,
|
|
169
|
-
});
|
|
170
|
-
export const BatchDisableAlarmRequestFilterSensitiveLog = (obj) => ({
|
|
171
|
-
...obj,
|
|
172
|
-
});
|
|
173
|
-
export const BatchDisableAlarmResponseFilterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
});
|
|
176
|
-
export const EnableAlarmActionRequestFilterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
export const BatchEnableAlarmRequestFilterSensitiveLog = (obj) => ({
|
|
180
|
-
...obj,
|
|
181
|
-
});
|
|
182
|
-
export const BatchEnableAlarmResponseFilterSensitiveLog = (obj) => ({
|
|
183
|
-
...obj,
|
|
184
|
-
});
|
|
185
|
-
export const TimestampValueFilterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
});
|
|
188
|
-
export const MessageFilterSensitiveLog = (obj) => ({
|
|
189
|
-
...obj,
|
|
190
|
-
});
|
|
191
|
-
export const BatchPutMessageRequestFilterSensitiveLog = (obj) => ({
|
|
192
|
-
...obj,
|
|
193
|
-
});
|
|
194
|
-
export const BatchPutMessageErrorEntryFilterSensitiveLog = (obj) => ({
|
|
195
|
-
...obj,
|
|
196
|
-
});
|
|
197
|
-
export const BatchPutMessageResponseFilterSensitiveLog = (obj) => ({
|
|
198
|
-
...obj,
|
|
199
|
-
});
|
|
200
|
-
export const ResetAlarmActionRequestFilterSensitiveLog = (obj) => ({
|
|
201
|
-
...obj,
|
|
202
|
-
});
|
|
203
|
-
export const BatchResetAlarmRequestFilterSensitiveLog = (obj) => ({
|
|
204
|
-
...obj,
|
|
205
|
-
});
|
|
206
|
-
export const BatchResetAlarmResponseFilterSensitiveLog = (obj) => ({
|
|
207
|
-
...obj,
|
|
208
|
-
});
|
|
209
|
-
export const SnoozeAlarmActionRequestFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
});
|
|
212
|
-
export const BatchSnoozeAlarmRequestFilterSensitiveLog = (obj) => ({
|
|
213
|
-
...obj,
|
|
214
|
-
});
|
|
215
|
-
export const BatchSnoozeAlarmResponseFilterSensitiveLog = (obj) => ({
|
|
216
|
-
...obj,
|
|
217
|
-
});
|
|
218
|
-
export const TimerDefinitionFilterSensitiveLog = (obj) => ({
|
|
219
|
-
...obj,
|
|
220
|
-
});
|
|
221
|
-
export const VariableDefinitionFilterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
});
|
|
224
|
-
export const DetectorStateDefinitionFilterSensitiveLog = (obj) => ({
|
|
225
|
-
...obj,
|
|
226
|
-
});
|
|
227
|
-
export const UpdateDetectorRequestFilterSensitiveLog = (obj) => ({
|
|
228
|
-
...obj,
|
|
229
|
-
});
|
|
230
|
-
export const BatchUpdateDetectorRequestFilterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
export const BatchUpdateDetectorErrorEntryFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
});
|
|
236
|
-
export const BatchUpdateDetectorResponseFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
});
|
|
239
|
-
export const DescribeAlarmRequestFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
|
242
|
-
export const DescribeAlarmResponseFilterSensitiveLog = (obj) => ({
|
|
243
|
-
...obj,
|
|
244
|
-
});
|
|
245
|
-
export const DescribeDetectorRequestFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
});
|
|
248
|
-
export const TimerFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
export const VariableFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
});
|
|
254
|
-
export const DetectorStateFilterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
});
|
|
257
|
-
export const DetectorFilterSensitiveLog = (obj) => ({
|
|
258
|
-
...obj,
|
|
259
|
-
});
|
|
260
|
-
export const DescribeDetectorResponseFilterSensitiveLog = (obj) => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
export const DetectorStateSummaryFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
});
|
|
266
|
-
export const DetectorSummaryFilterSensitiveLog = (obj) => ({
|
|
267
|
-
...obj,
|
|
268
|
-
});
|
|
269
|
-
export const ListAlarmsRequestFilterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
|
-
export const ListAlarmsResponseFilterSensitiveLog = (obj) => ({
|
|
273
|
-
...obj,
|
|
274
|
-
});
|
|
275
|
-
export const ListDetectorsRequestFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
|
-
export const ListDetectorsResponseFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
});
|
|
102
|
+
return ResourceNotFoundException;
|
|
103
|
+
}(__BaseException));
|
|
104
|
+
export { ResourceNotFoundException };
|
|
105
|
+
export var AcknowledgeActionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
106
|
+
export var AcknowledgeAlarmActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
107
|
+
export var DisableActionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
|
+
export var EnableActionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
109
|
+
export var ResetActionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
110
|
+
export var SnoozeActionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
111
|
+
export var CustomerActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
112
|
+
export var SimpleRuleEvaluationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
113
|
+
export var RuleEvaluationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
114
|
+
export var StateChangeConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
115
|
+
export var SystemEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
116
|
+
export var AlarmStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
117
|
+
export var AlarmFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
118
|
+
export var AlarmSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
119
|
+
export var BatchAcknowledgeAlarmRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
120
|
+
export var BatchAlarmActionErrorEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
121
|
+
export var BatchAcknowledgeAlarmResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
+
export var DeleteDetectorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
123
|
+
export var BatchDeleteDetectorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
|
+
export var BatchDeleteDetectorErrorEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
|
+
export var BatchDeleteDetectorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
|
+
export var DisableAlarmActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
127
|
+
export var BatchDisableAlarmRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
|
+
export var BatchDisableAlarmResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
|
+
export var EnableAlarmActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
130
|
+
export var BatchEnableAlarmRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
131
|
+
export var BatchEnableAlarmResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
132
|
+
export var TimestampValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
133
|
+
export var MessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
|
+
export var BatchPutMessageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
|
+
export var BatchPutMessageErrorEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
136
|
+
export var BatchPutMessageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
|
+
export var ResetAlarmActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
export var BatchResetAlarmRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
|
+
export var BatchResetAlarmResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
|
+
export var SnoozeAlarmActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
+
export var BatchSnoozeAlarmRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
export var BatchSnoozeAlarmResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
|
+
export var TimerDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
|
+
export var VariableDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
+
export var DetectorStateDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
|
+
export var UpdateDetectorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
147
|
+
export var BatchUpdateDetectorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
148
|
+
export var BatchUpdateDetectorErrorEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
|
+
export var BatchUpdateDetectorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
150
|
+
export var DescribeAlarmRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
|
+
export var DescribeAlarmResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
152
|
+
export var DescribeDetectorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
153
|
+
export var TimerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
154
|
+
export var VariableFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
155
|
+
export var DetectorStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
156
|
+
export var DetectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
|
+
export var DescribeDetectorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
158
|
+
export var DetectorStateSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
159
|
+
export var DetectorSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
160
|
+
export var ListAlarmsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
|
+
export var ListAlarmsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
|
+
export var ListDetectorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
163
|
+
export var ListDetectorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|