@aws-sdk/client-iot-events 3.170.0 → 3.171.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 +8 -0
- package/dist-types/ts3.4/IoTEvents.d.ts +0 -26
- package/dist-types/ts3.4/IoTEventsClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateAlarmModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateDetectorModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateInputCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteAlarmModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteDetectorModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteInputCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAlarmModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeDetectorModelAnalysisCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeDetectorModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeInputCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDetectorModelAnalysisResultsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAlarmModelVersionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAlarmModelsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDetectorModelVersionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDetectorModelsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListInputRoutingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListInputsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutLoggingOptionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartDetectorModelAnalysisCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateAlarmModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateDetectorModelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateInputCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/IoTEventsServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -393
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-iot-events
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-iot-events
|
|
@@ -104,7 +104,6 @@ import {
|
|
|
104
104
|
UpdateInputCommandOutput,
|
|
105
105
|
} from "./commands/UpdateInputCommand";
|
|
106
106
|
import { IoTEventsClient } from "./IoTEventsClient";
|
|
107
|
-
|
|
108
107
|
export declare class IoTEvents extends IoTEventsClient {
|
|
109
108
|
createAlarmModel(
|
|
110
109
|
args: CreateAlarmModelCommandInput,
|
|
@@ -119,7 +118,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
119
118
|
options: __HttpHandlerOptions,
|
|
120
119
|
cb: (err: any, data?: CreateAlarmModelCommandOutput) => void
|
|
121
120
|
): void;
|
|
122
|
-
|
|
123
121
|
createDetectorModel(
|
|
124
122
|
args: CreateDetectorModelCommandInput,
|
|
125
123
|
options?: __HttpHandlerOptions
|
|
@@ -133,7 +131,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
133
131
|
options: __HttpHandlerOptions,
|
|
134
132
|
cb: (err: any, data?: CreateDetectorModelCommandOutput) => void
|
|
135
133
|
): void;
|
|
136
|
-
|
|
137
134
|
createInput(
|
|
138
135
|
args: CreateInputCommandInput,
|
|
139
136
|
options?: __HttpHandlerOptions
|
|
@@ -147,7 +144,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
147
144
|
options: __HttpHandlerOptions,
|
|
148
145
|
cb: (err: any, data?: CreateInputCommandOutput) => void
|
|
149
146
|
): void;
|
|
150
|
-
|
|
151
147
|
deleteAlarmModel(
|
|
152
148
|
args: DeleteAlarmModelCommandInput,
|
|
153
149
|
options?: __HttpHandlerOptions
|
|
@@ -161,7 +157,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
161
157
|
options: __HttpHandlerOptions,
|
|
162
158
|
cb: (err: any, data?: DeleteAlarmModelCommandOutput) => void
|
|
163
159
|
): void;
|
|
164
|
-
|
|
165
160
|
deleteDetectorModel(
|
|
166
161
|
args: DeleteDetectorModelCommandInput,
|
|
167
162
|
options?: __HttpHandlerOptions
|
|
@@ -175,7 +170,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
175
170
|
options: __HttpHandlerOptions,
|
|
176
171
|
cb: (err: any, data?: DeleteDetectorModelCommandOutput) => void
|
|
177
172
|
): void;
|
|
178
|
-
|
|
179
173
|
deleteInput(
|
|
180
174
|
args: DeleteInputCommandInput,
|
|
181
175
|
options?: __HttpHandlerOptions
|
|
@@ -189,7 +183,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
189
183
|
options: __HttpHandlerOptions,
|
|
190
184
|
cb: (err: any, data?: DeleteInputCommandOutput) => void
|
|
191
185
|
): void;
|
|
192
|
-
|
|
193
186
|
describeAlarmModel(
|
|
194
187
|
args: DescribeAlarmModelCommandInput,
|
|
195
188
|
options?: __HttpHandlerOptions
|
|
@@ -203,7 +196,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
203
196
|
options: __HttpHandlerOptions,
|
|
204
197
|
cb: (err: any, data?: DescribeAlarmModelCommandOutput) => void
|
|
205
198
|
): void;
|
|
206
|
-
|
|
207
199
|
describeDetectorModel(
|
|
208
200
|
args: DescribeDetectorModelCommandInput,
|
|
209
201
|
options?: __HttpHandlerOptions
|
|
@@ -217,7 +209,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
217
209
|
options: __HttpHandlerOptions,
|
|
218
210
|
cb: (err: any, data?: DescribeDetectorModelCommandOutput) => void
|
|
219
211
|
): void;
|
|
220
|
-
|
|
221
212
|
describeDetectorModelAnalysis(
|
|
222
213
|
args: DescribeDetectorModelAnalysisCommandInput,
|
|
223
214
|
options?: __HttpHandlerOptions
|
|
@@ -231,7 +222,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
231
222
|
options: __HttpHandlerOptions,
|
|
232
223
|
cb: (err: any, data?: DescribeDetectorModelAnalysisCommandOutput) => void
|
|
233
224
|
): void;
|
|
234
|
-
|
|
235
225
|
describeInput(
|
|
236
226
|
args: DescribeInputCommandInput,
|
|
237
227
|
options?: __HttpHandlerOptions
|
|
@@ -245,7 +235,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
245
235
|
options: __HttpHandlerOptions,
|
|
246
236
|
cb: (err: any, data?: DescribeInputCommandOutput) => void
|
|
247
237
|
): void;
|
|
248
|
-
|
|
249
238
|
describeLoggingOptions(
|
|
250
239
|
args: DescribeLoggingOptionsCommandInput,
|
|
251
240
|
options?: __HttpHandlerOptions
|
|
@@ -259,7 +248,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
259
248
|
options: __HttpHandlerOptions,
|
|
260
249
|
cb: (err: any, data?: DescribeLoggingOptionsCommandOutput) => void
|
|
261
250
|
): void;
|
|
262
|
-
|
|
263
251
|
getDetectorModelAnalysisResults(
|
|
264
252
|
args: GetDetectorModelAnalysisResultsCommandInput,
|
|
265
253
|
options?: __HttpHandlerOptions
|
|
@@ -273,7 +261,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
273
261
|
options: __HttpHandlerOptions,
|
|
274
262
|
cb: (err: any, data?: GetDetectorModelAnalysisResultsCommandOutput) => void
|
|
275
263
|
): void;
|
|
276
|
-
|
|
277
264
|
listAlarmModels(
|
|
278
265
|
args: ListAlarmModelsCommandInput,
|
|
279
266
|
options?: __HttpHandlerOptions
|
|
@@ -287,7 +274,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
287
274
|
options: __HttpHandlerOptions,
|
|
288
275
|
cb: (err: any, data?: ListAlarmModelsCommandOutput) => void
|
|
289
276
|
): void;
|
|
290
|
-
|
|
291
277
|
listAlarmModelVersions(
|
|
292
278
|
args: ListAlarmModelVersionsCommandInput,
|
|
293
279
|
options?: __HttpHandlerOptions
|
|
@@ -301,7 +287,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
301
287
|
options: __HttpHandlerOptions,
|
|
302
288
|
cb: (err: any, data?: ListAlarmModelVersionsCommandOutput) => void
|
|
303
289
|
): void;
|
|
304
|
-
|
|
305
290
|
listDetectorModels(
|
|
306
291
|
args: ListDetectorModelsCommandInput,
|
|
307
292
|
options?: __HttpHandlerOptions
|
|
@@ -315,7 +300,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
315
300
|
options: __HttpHandlerOptions,
|
|
316
301
|
cb: (err: any, data?: ListDetectorModelsCommandOutput) => void
|
|
317
302
|
): void;
|
|
318
|
-
|
|
319
303
|
listDetectorModelVersions(
|
|
320
304
|
args: ListDetectorModelVersionsCommandInput,
|
|
321
305
|
options?: __HttpHandlerOptions
|
|
@@ -329,7 +313,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
329
313
|
options: __HttpHandlerOptions,
|
|
330
314
|
cb: (err: any, data?: ListDetectorModelVersionsCommandOutput) => void
|
|
331
315
|
): void;
|
|
332
|
-
|
|
333
316
|
listInputRoutings(
|
|
334
317
|
args: ListInputRoutingsCommandInput,
|
|
335
318
|
options?: __HttpHandlerOptions
|
|
@@ -343,7 +326,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
343
326
|
options: __HttpHandlerOptions,
|
|
344
327
|
cb: (err: any, data?: ListInputRoutingsCommandOutput) => void
|
|
345
328
|
): void;
|
|
346
|
-
|
|
347
329
|
listInputs(
|
|
348
330
|
args: ListInputsCommandInput,
|
|
349
331
|
options?: __HttpHandlerOptions
|
|
@@ -357,7 +339,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
357
339
|
options: __HttpHandlerOptions,
|
|
358
340
|
cb: (err: any, data?: ListInputsCommandOutput) => void
|
|
359
341
|
): void;
|
|
360
|
-
|
|
361
342
|
listTagsForResource(
|
|
362
343
|
args: ListTagsForResourceCommandInput,
|
|
363
344
|
options?: __HttpHandlerOptions
|
|
@@ -371,7 +352,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
371
352
|
options: __HttpHandlerOptions,
|
|
372
353
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
373
354
|
): void;
|
|
374
|
-
|
|
375
355
|
putLoggingOptions(
|
|
376
356
|
args: PutLoggingOptionsCommandInput,
|
|
377
357
|
options?: __HttpHandlerOptions
|
|
@@ -385,7 +365,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
385
365
|
options: __HttpHandlerOptions,
|
|
386
366
|
cb: (err: any, data?: PutLoggingOptionsCommandOutput) => void
|
|
387
367
|
): void;
|
|
388
|
-
|
|
389
368
|
startDetectorModelAnalysis(
|
|
390
369
|
args: StartDetectorModelAnalysisCommandInput,
|
|
391
370
|
options?: __HttpHandlerOptions
|
|
@@ -399,7 +378,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
399
378
|
options: __HttpHandlerOptions,
|
|
400
379
|
cb: (err: any, data?: StartDetectorModelAnalysisCommandOutput) => void
|
|
401
380
|
): void;
|
|
402
|
-
|
|
403
381
|
tagResource(
|
|
404
382
|
args: TagResourceCommandInput,
|
|
405
383
|
options?: __HttpHandlerOptions
|
|
@@ -413,7 +391,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
413
391
|
options: __HttpHandlerOptions,
|
|
414
392
|
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
415
393
|
): void;
|
|
416
|
-
|
|
417
394
|
untagResource(
|
|
418
395
|
args: UntagResourceCommandInput,
|
|
419
396
|
options?: __HttpHandlerOptions
|
|
@@ -427,7 +404,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
427
404
|
options: __HttpHandlerOptions,
|
|
428
405
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
429
406
|
): void;
|
|
430
|
-
|
|
431
407
|
updateAlarmModel(
|
|
432
408
|
args: UpdateAlarmModelCommandInput,
|
|
433
409
|
options?: __HttpHandlerOptions
|
|
@@ -441,7 +417,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
441
417
|
options: __HttpHandlerOptions,
|
|
442
418
|
cb: (err: any, data?: UpdateAlarmModelCommandOutput) => void
|
|
443
419
|
): void;
|
|
444
|
-
|
|
445
420
|
updateDetectorModel(
|
|
446
421
|
args: UpdateDetectorModelCommandInput,
|
|
447
422
|
options?: __HttpHandlerOptions
|
|
@@ -455,7 +430,6 @@ export declare class IoTEvents extends IoTEventsClient {
|
|
|
455
430
|
options: __HttpHandlerOptions,
|
|
456
431
|
cb: (err: any, data?: UpdateDetectorModelCommandOutput) => void
|
|
457
432
|
): void;
|
|
458
|
-
|
|
459
433
|
updateInput(
|
|
460
434
|
args: UpdateInputCommandInput,
|
|
461
435
|
options?: __HttpHandlerOptions
|
|
@@ -203,47 +203,26 @@ export declare type ServiceOutputTypes =
|
|
|
203
203
|
export interface ClientDefaults
|
|
204
204
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
205
205
|
requestHandler?: __HttpHandler;
|
|
206
|
-
|
|
207
206
|
sha256?: __HashConstructor;
|
|
208
|
-
|
|
209
207
|
urlParser?: __UrlParser;
|
|
210
|
-
|
|
211
208
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
212
|
-
|
|
213
209
|
streamCollector?: __StreamCollector;
|
|
214
|
-
|
|
215
210
|
base64Decoder?: __Decoder;
|
|
216
|
-
|
|
217
211
|
base64Encoder?: __Encoder;
|
|
218
|
-
|
|
219
212
|
utf8Decoder?: __Decoder;
|
|
220
|
-
|
|
221
213
|
utf8Encoder?: __Encoder;
|
|
222
|
-
|
|
223
214
|
runtime?: string;
|
|
224
|
-
|
|
225
215
|
disableHostPrefix?: boolean;
|
|
226
|
-
|
|
227
216
|
maxAttempts?: number | __Provider<number>;
|
|
228
|
-
|
|
229
217
|
retryMode?: string | __Provider<string>;
|
|
230
|
-
|
|
231
218
|
logger?: __Logger;
|
|
232
|
-
|
|
233
219
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
234
|
-
|
|
235
220
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
236
|
-
|
|
237
221
|
serviceId?: string;
|
|
238
|
-
|
|
239
222
|
region?: string | __Provider<string>;
|
|
240
|
-
|
|
241
223
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
242
|
-
|
|
243
224
|
regionInfoProvider?: RegionInfoProvider;
|
|
244
|
-
|
|
245
225
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
246
|
-
|
|
247
226
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
248
227
|
}
|
|
249
228
|
declare type IoTEventsClientConfigType = Partial<
|
|
@@ -256,7 +235,6 @@ declare type IoTEventsClientConfigType = Partial<
|
|
|
256
235
|
HostHeaderInputConfig &
|
|
257
236
|
AwsAuthInputConfig &
|
|
258
237
|
UserAgentInputConfig;
|
|
259
|
-
|
|
260
238
|
export interface IoTEventsClientConfig extends IoTEventsClientConfigType {}
|
|
261
239
|
declare type IoTEventsClientResolvedConfigType =
|
|
262
240
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
@@ -267,10 +245,8 @@ declare type IoTEventsClientResolvedConfigType =
|
|
|
267
245
|
HostHeaderResolvedConfig &
|
|
268
246
|
AwsAuthResolvedConfig &
|
|
269
247
|
UserAgentResolvedConfig;
|
|
270
|
-
|
|
271
248
|
export interface IoTEventsClientResolvedConfig
|
|
272
249
|
extends IoTEventsClientResolvedConfigType {}
|
|
273
|
-
|
|
274
250
|
export declare class IoTEventsClient extends __Client<
|
|
275
251
|
__HttpHandlerOptions,
|
|
276
252
|
ServiceInputTypes,
|
|
@@ -279,7 +255,6 @@ export declare class IoTEventsClient extends __Client<
|
|
|
279
255
|
> {
|
|
280
256
|
readonly config: IoTEventsClientResolvedConfig;
|
|
281
257
|
constructor(configuration: IoTEventsClientConfig);
|
|
282
|
-
|
|
283
258
|
destroy(): void;
|
|
284
259
|
}
|
|
285
260
|
export {};
|
|
@@ -18,7 +18,6 @@ export interface CreateAlarmModelCommandInput extends CreateAlarmModelRequest {}
|
|
|
18
18
|
export interface CreateAlarmModelCommandOutput
|
|
19
19
|
extends CreateAlarmModelResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class CreateAlarmModelCommand extends $Command<
|
|
23
22
|
CreateAlarmModelCommandInput,
|
|
24
23
|
CreateAlarmModelCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class CreateAlarmModelCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: CreateAlarmModelCommandInput;
|
|
28
27
|
constructor(input: CreateAlarmModelCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface CreateDetectorModelCommandInput
|
|
|
19
19
|
export interface CreateDetectorModelCommandOutput
|
|
20
20
|
extends CreateDetectorModelResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class CreateDetectorModelCommand extends $Command<
|
|
24
23
|
CreateDetectorModelCommandInput,
|
|
25
24
|
CreateDetectorModelCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class CreateDetectorModelCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: CreateDetectorModelCommandInput;
|
|
29
28
|
constructor(input: CreateDetectorModelCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface CreateInputCommandInput extends CreateInputRequest {}
|
|
|
15
15
|
export interface CreateInputCommandOutput
|
|
16
16
|
extends CreateInputResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class CreateInputCommand extends $Command<
|
|
20
19
|
CreateInputCommandInput,
|
|
21
20
|
CreateInputCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class CreateInputCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: CreateInputCommandInput;
|
|
25
24
|
constructor(input: CreateInputCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface DeleteAlarmModelCommandInput extends DeleteAlarmModelRequest {}
|
|
|
18
18
|
export interface DeleteAlarmModelCommandOutput
|
|
19
19
|
extends DeleteAlarmModelResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class DeleteAlarmModelCommand extends $Command<
|
|
23
22
|
DeleteAlarmModelCommandInput,
|
|
24
23
|
DeleteAlarmModelCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class DeleteAlarmModelCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: DeleteAlarmModelCommandInput;
|
|
28
27
|
constructor(input: DeleteAlarmModelCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DeleteDetectorModelCommandInput
|
|
|
19
19
|
export interface DeleteDetectorModelCommandOutput
|
|
20
20
|
extends DeleteDetectorModelResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DeleteDetectorModelCommand extends $Command<
|
|
24
23
|
DeleteDetectorModelCommandInput,
|
|
25
24
|
DeleteDetectorModelCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DeleteDetectorModelCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DeleteDetectorModelCommandInput;
|
|
29
28
|
constructor(input: DeleteDetectorModelCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface DeleteInputCommandInput extends DeleteInputRequest {}
|
|
|
15
15
|
export interface DeleteInputCommandOutput
|
|
16
16
|
extends DeleteInputResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class DeleteInputCommand extends $Command<
|
|
20
19
|
DeleteInputCommandInput,
|
|
21
20
|
DeleteInputCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class DeleteInputCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: DeleteInputCommandInput;
|
|
25
24
|
constructor(input: DeleteInputCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DescribeAlarmModelCommandInput
|
|
|
19
19
|
export interface DescribeAlarmModelCommandOutput
|
|
20
20
|
extends DescribeAlarmModelResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DescribeAlarmModelCommand extends $Command<
|
|
24
23
|
DescribeAlarmModelCommandInput,
|
|
25
24
|
DescribeAlarmModelCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DescribeAlarmModelCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DescribeAlarmModelCommandInput;
|
|
29
28
|
constructor(input: DescribeAlarmModelCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DescribeDetectorModelAnalysisCommandInput
|
|
|
19
19
|
export interface DescribeDetectorModelAnalysisCommandOutput
|
|
20
20
|
extends DescribeDetectorModelAnalysisResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DescribeDetectorModelAnalysisCommand extends $Command<
|
|
24
23
|
DescribeDetectorModelAnalysisCommandInput,
|
|
25
24
|
DescribeDetectorModelAnalysisCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DescribeDetectorModelAnalysisCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DescribeDetectorModelAnalysisCommandInput;
|
|
29
28
|
constructor(input: DescribeDetectorModelAnalysisCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DescribeDetectorModelCommandInput
|
|
|
19
19
|
export interface DescribeDetectorModelCommandOutput
|
|
20
20
|
extends DescribeDetectorModelResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DescribeDetectorModelCommand extends $Command<
|
|
24
23
|
DescribeDetectorModelCommandInput,
|
|
25
24
|
DescribeDetectorModelCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DescribeDetectorModelCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DescribeDetectorModelCommandInput;
|
|
29
28
|
constructor(input: DescribeDetectorModelCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface DescribeInputCommandInput extends DescribeInputRequest {}
|
|
|
18
18
|
export interface DescribeInputCommandOutput
|
|
19
19
|
extends DescribeInputResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class DescribeInputCommand extends $Command<
|
|
23
22
|
DescribeInputCommandInput,
|
|
24
23
|
DescribeInputCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class DescribeInputCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: DescribeInputCommandInput;
|
|
28
27
|
constructor(input: DescribeInputCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DescribeLoggingOptionsCommandInput
|
|
|
19
19
|
export interface DescribeLoggingOptionsCommandOutput
|
|
20
20
|
extends DescribeLoggingOptionsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DescribeLoggingOptionsCommand extends $Command<
|
|
24
23
|
DescribeLoggingOptionsCommandInput,
|
|
25
24
|
DescribeLoggingOptionsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DescribeLoggingOptionsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DescribeLoggingOptionsCommandInput;
|
|
29
28
|
constructor(input: DescribeLoggingOptionsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface GetDetectorModelAnalysisResultsCommandInput
|
|
|
19
19
|
export interface GetDetectorModelAnalysisResultsCommandOutput
|
|
20
20
|
extends GetDetectorModelAnalysisResultsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class GetDetectorModelAnalysisResultsCommand extends $Command<
|
|
24
23
|
GetDetectorModelAnalysisResultsCommandInput,
|
|
25
24
|
GetDetectorModelAnalysisResultsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class GetDetectorModelAnalysisResultsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: GetDetectorModelAnalysisResultsCommandInput;
|
|
29
28
|
constructor(input: GetDetectorModelAnalysisResultsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListAlarmModelVersionsCommandInput
|
|
|
19
19
|
export interface ListAlarmModelVersionsCommandOutput
|
|
20
20
|
extends ListAlarmModelVersionsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListAlarmModelVersionsCommand extends $Command<
|
|
24
23
|
ListAlarmModelVersionsCommandInput,
|
|
25
24
|
ListAlarmModelVersionsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListAlarmModelVersionsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListAlarmModelVersionsCommandInput;
|
|
29
28
|
constructor(input: ListAlarmModelVersionsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface ListAlarmModelsCommandInput extends ListAlarmModelsRequest {}
|
|
|
18
18
|
export interface ListAlarmModelsCommandOutput
|
|
19
19
|
extends ListAlarmModelsResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class ListAlarmModelsCommand extends $Command<
|
|
23
22
|
ListAlarmModelsCommandInput,
|
|
24
23
|
ListAlarmModelsCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class ListAlarmModelsCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: ListAlarmModelsCommandInput;
|
|
28
27
|
constructor(input: ListAlarmModelsCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListDetectorModelVersionsCommandInput
|
|
|
19
19
|
export interface ListDetectorModelVersionsCommandOutput
|
|
20
20
|
extends ListDetectorModelVersionsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListDetectorModelVersionsCommand extends $Command<
|
|
24
23
|
ListDetectorModelVersionsCommandInput,
|
|
25
24
|
ListDetectorModelVersionsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListDetectorModelVersionsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListDetectorModelVersionsCommandInput;
|
|
29
28
|
constructor(input: ListDetectorModelVersionsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListDetectorModelsCommandInput
|
|
|
19
19
|
export interface ListDetectorModelsCommandOutput
|
|
20
20
|
extends ListDetectorModelsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListDetectorModelsCommand extends $Command<
|
|
24
23
|
ListDetectorModelsCommandInput,
|
|
25
24
|
ListDetectorModelsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListDetectorModelsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListDetectorModelsCommandInput;
|
|
29
28
|
constructor(input: ListDetectorModelsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListInputRoutingsCommandInput
|
|
|
19
19
|
export interface ListInputRoutingsCommandOutput
|
|
20
20
|
extends ListInputRoutingsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListInputRoutingsCommand extends $Command<
|
|
24
23
|
ListInputRoutingsCommandInput,
|
|
25
24
|
ListInputRoutingsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListInputRoutingsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListInputRoutingsCommandInput;
|
|
29
28
|
constructor(input: ListInputRoutingsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListInputsCommandInput extends ListInputsRequest {}
|
|
|
15
15
|
export interface ListInputsCommandOutput
|
|
16
16
|
extends ListInputsResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListInputsCommand extends $Command<
|
|
20
19
|
ListInputsCommandInput,
|
|
21
20
|
ListInputsCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListInputsCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListInputsCommandInput;
|
|
25
24
|
constructor(input: ListInputsCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListTagsForResourceCommandInput
|
|
|
19
19
|
export interface ListTagsForResourceCommandOutput
|
|
20
20
|
extends ListTagsForResourceResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
23
|
ListTagsForResourceCommandInput,
|
|
25
24
|
ListTagsForResourceCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
28
|
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -14,7 +14,6 @@ import { PutLoggingOptionsRequest } from "../models/models_0";
|
|
|
14
14
|
export interface PutLoggingOptionsCommandInput
|
|
15
15
|
extends PutLoggingOptionsRequest {}
|
|
16
16
|
export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {}
|
|
17
|
-
|
|
18
17
|
export declare class PutLoggingOptionsCommand extends $Command<
|
|
19
18
|
PutLoggingOptionsCommandInput,
|
|
20
19
|
PutLoggingOptionsCommandOutput,
|
|
@@ -22,7 +21,6 @@ export declare class PutLoggingOptionsCommand extends $Command<
|
|
|
22
21
|
> {
|
|
23
22
|
readonly input: PutLoggingOptionsCommandInput;
|
|
24
23
|
constructor(input: PutLoggingOptionsCommandInput);
|
|
25
|
-
|
|
26
24
|
resolveMiddleware(
|
|
27
25
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
26
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface StartDetectorModelAnalysisCommandInput
|
|
|
19
19
|
export interface StartDetectorModelAnalysisCommandOutput
|
|
20
20
|
extends StartDetectorModelAnalysisResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class StartDetectorModelAnalysisCommand extends $Command<
|
|
24
23
|
StartDetectorModelAnalysisCommandInput,
|
|
25
24
|
StartDetectorModelAnalysisCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class StartDetectorModelAnalysisCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: StartDetectorModelAnalysisCommandInput;
|
|
29
28
|
constructor(input: StartDetectorModelAnalysisCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
|
15
15
|
export interface TagResourceCommandOutput
|
|
16
16
|
extends TagResourceResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class TagResourceCommand extends $Command<
|
|
20
19
|
TagResourceCommandInput,
|
|
21
20
|
TagResourceCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class TagResourceCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: TagResourceCommandInput;
|
|
25
24
|
constructor(input: TagResourceCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: IoTEventsClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
|
18
18
|
export interface UntagResourceCommandOutput
|
|
19
19
|
extends UntagResourceResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class UntagResourceCommand extends $Command<
|
|
23
22
|
UntagResourceCommandInput,
|
|
24
23
|
UntagResourceCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: UntagResourceCommandInput;
|
|
28
27
|
constructor(input: UntagResourceCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: IoTEventsClientResolvedConfig,
|