@aws-sdk/client-iot-events 3.300.0 → 3.303.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/dist-cjs/models/models_0.js +52 -61
- package/dist-es/models/models_0.js +52 -61
- package/dist-types/commands/CreateAlarmModelCommand.d.ts +41 -53
- package/dist-types/commands/CreateDetectorModelCommand.d.ts +59 -140
- package/dist-types/commands/CreateInputCommand.d.ts +6 -6
- package/dist-types/commands/DeleteAlarmModelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDetectorModelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInputCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAlarmModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDetectorModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInputCommand.d.ts +1 -1
- package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +1 -1
- package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListAlarmModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListDetectorModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListInputRoutingsCommand.d.ts +5 -5
- package/dist-types/commands/ListInputsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +4 -4
- package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +57 -138
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAlarmModelCommand.d.ts +39 -51
- package/dist-types/commands/UpdateDetectorModelCommand.d.ts +57 -138
- package/dist-types/commands/UpdateInputCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +97 -52
- package/dist-types/ts3.4/models/models_0.d.ts +67 -52
- package/package.json +34 -34
|
@@ -6,10 +6,11 @@ export interface AcknowledgeFlow {
|
|
|
6
6
|
export interface ClearTimerAction {
|
|
7
7
|
timerName: string | undefined;
|
|
8
8
|
}
|
|
9
|
-
export declare
|
|
10
|
-
JSON
|
|
11
|
-
STRING
|
|
12
|
-
}
|
|
9
|
+
export declare const PayloadType: {
|
|
10
|
+
readonly JSON: "JSON";
|
|
11
|
+
readonly STRING: "STRING";
|
|
12
|
+
};
|
|
13
|
+
export type PayloadType = (typeof PayloadType)[keyof typeof PayloadType];
|
|
13
14
|
export interface Payload {
|
|
14
15
|
contentExpression: string | undefined;
|
|
15
16
|
type: PayloadType | string | undefined;
|
|
@@ -131,12 +132,14 @@ export interface AlarmModelSummary {
|
|
|
131
132
|
alarmModelDescription?: string;
|
|
132
133
|
alarmModelName?: string;
|
|
133
134
|
}
|
|
134
|
-
export declare
|
|
135
|
-
ACTIVATING
|
|
136
|
-
ACTIVE
|
|
137
|
-
FAILED
|
|
138
|
-
INACTIVE
|
|
139
|
-
}
|
|
135
|
+
export declare const AlarmModelVersionStatus: {
|
|
136
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
137
|
+
readonly ACTIVE: "ACTIVE";
|
|
138
|
+
readonly FAILED: "FAILED";
|
|
139
|
+
readonly INACTIVE: "INACTIVE";
|
|
140
|
+
};
|
|
141
|
+
export type AlarmModelVersionStatus =
|
|
142
|
+
(typeof AlarmModelVersionStatus)[keyof typeof AlarmModelVersionStatus];
|
|
140
143
|
export interface AlarmModelVersionSummary {
|
|
141
144
|
alarmModelName?: string;
|
|
142
145
|
alarmModelArn?: string;
|
|
@@ -182,14 +185,16 @@ export interface NotificationAction {
|
|
|
182
185
|
export interface AlarmNotification {
|
|
183
186
|
notificationActions?: NotificationAction[];
|
|
184
187
|
}
|
|
185
|
-
export declare
|
|
186
|
-
EQUAL
|
|
187
|
-
GREATER
|
|
188
|
-
GREATER_OR_EQUAL
|
|
189
|
-
LESS
|
|
190
|
-
LESS_OR_EQUAL
|
|
191
|
-
NOT_EQUAL
|
|
192
|
-
}
|
|
188
|
+
export declare const ComparisonOperator: {
|
|
189
|
+
readonly EQUAL: "EQUAL";
|
|
190
|
+
readonly GREATER: "GREATER";
|
|
191
|
+
readonly GREATER_OR_EQUAL: "GREATER_OR_EQUAL";
|
|
192
|
+
readonly LESS: "LESS";
|
|
193
|
+
readonly LESS_OR_EQUAL: "LESS_OR_EQUAL";
|
|
194
|
+
readonly NOT_EQUAL: "NOT_EQUAL";
|
|
195
|
+
};
|
|
196
|
+
export type ComparisonOperator =
|
|
197
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
193
198
|
export interface SimpleRule {
|
|
194
199
|
inputProperty: string | undefined;
|
|
195
200
|
comparisonOperator: ComparisonOperator | string | undefined;
|
|
@@ -198,11 +203,13 @@ export interface SimpleRule {
|
|
|
198
203
|
export interface AlarmRule {
|
|
199
204
|
simpleRule?: SimpleRule;
|
|
200
205
|
}
|
|
201
|
-
export declare
|
|
202
|
-
ERROR
|
|
203
|
-
INFO
|
|
204
|
-
WARNING
|
|
205
|
-
}
|
|
206
|
+
export declare const AnalysisResultLevel: {
|
|
207
|
+
readonly ERROR: "ERROR";
|
|
208
|
+
readonly INFO: "INFO";
|
|
209
|
+
readonly WARNING: "WARNING";
|
|
210
|
+
};
|
|
211
|
+
export type AnalysisResultLevel =
|
|
212
|
+
(typeof AnalysisResultLevel)[keyof typeof AnalysisResultLevel];
|
|
206
213
|
export interface AnalysisResultLocation {
|
|
207
214
|
path?: string;
|
|
208
215
|
}
|
|
@@ -212,11 +219,13 @@ export interface AnalysisResult {
|
|
|
212
219
|
message?: string;
|
|
213
220
|
locations?: AnalysisResultLocation[];
|
|
214
221
|
}
|
|
215
|
-
export declare
|
|
216
|
-
COMPLETE
|
|
217
|
-
FAILED
|
|
218
|
-
RUNNING
|
|
219
|
-
}
|
|
222
|
+
export declare const AnalysisStatus: {
|
|
223
|
+
readonly COMPLETE: "COMPLETE";
|
|
224
|
+
readonly FAILED: "FAILED";
|
|
225
|
+
readonly RUNNING: "RUNNING";
|
|
226
|
+
};
|
|
227
|
+
export type AnalysisStatus =
|
|
228
|
+
(typeof AnalysisStatus)[keyof typeof AnalysisStatus];
|
|
220
229
|
export interface Attribute {
|
|
221
230
|
jsonPath: string | undefined;
|
|
222
231
|
}
|
|
@@ -325,10 +334,12 @@ export interface DetectorModelDefinition {
|
|
|
325
334
|
states: State[] | undefined;
|
|
326
335
|
initialStateName: string | undefined;
|
|
327
336
|
}
|
|
328
|
-
export declare
|
|
329
|
-
BATCH
|
|
330
|
-
SERIAL
|
|
331
|
-
}
|
|
337
|
+
export declare const EvaluationMethod: {
|
|
338
|
+
readonly BATCH: "BATCH";
|
|
339
|
+
readonly SERIAL: "SERIAL";
|
|
340
|
+
};
|
|
341
|
+
export type EvaluationMethod =
|
|
342
|
+
(typeof EvaluationMethod)[keyof typeof EvaluationMethod];
|
|
332
343
|
export interface CreateDetectorModelRequest {
|
|
333
344
|
detectorModelName: string | undefined;
|
|
334
345
|
detectorModelDefinition: DetectorModelDefinition | undefined;
|
|
@@ -338,15 +349,17 @@ export interface CreateDetectorModelRequest {
|
|
|
338
349
|
tags?: Tag[];
|
|
339
350
|
evaluationMethod?: EvaluationMethod | string;
|
|
340
351
|
}
|
|
341
|
-
export declare
|
|
342
|
-
ACTIVATING
|
|
343
|
-
ACTIVE
|
|
344
|
-
DEPRECATED
|
|
345
|
-
DRAFT
|
|
346
|
-
FAILED
|
|
347
|
-
INACTIVE
|
|
348
|
-
PAUSED
|
|
349
|
-
}
|
|
352
|
+
export declare const DetectorModelVersionStatus: {
|
|
353
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
354
|
+
readonly ACTIVE: "ACTIVE";
|
|
355
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
356
|
+
readonly DRAFT: "DRAFT";
|
|
357
|
+
readonly FAILED: "FAILED";
|
|
358
|
+
readonly INACTIVE: "INACTIVE";
|
|
359
|
+
readonly PAUSED: "PAUSED";
|
|
360
|
+
};
|
|
361
|
+
export type DetectorModelVersionStatus =
|
|
362
|
+
(typeof DetectorModelVersionStatus)[keyof typeof DetectorModelVersionStatus];
|
|
350
363
|
export interface DetectorModelConfiguration {
|
|
351
364
|
detectorModelName?: string;
|
|
352
365
|
detectorModelVersion?: string;
|
|
@@ -371,12 +384,13 @@ export interface CreateInputRequest {
|
|
|
371
384
|
inputDefinition: InputDefinition | undefined;
|
|
372
385
|
tags?: Tag[];
|
|
373
386
|
}
|
|
374
|
-
export declare
|
|
375
|
-
ACTIVE
|
|
376
|
-
CREATING
|
|
377
|
-
DELETING
|
|
378
|
-
UPDATING
|
|
379
|
-
}
|
|
387
|
+
export declare const InputStatus: {
|
|
388
|
+
readonly ACTIVE: "ACTIVE";
|
|
389
|
+
readonly CREATING: "CREATING";
|
|
390
|
+
readonly DELETING: "DELETING";
|
|
391
|
+
readonly UPDATING: "UPDATING";
|
|
392
|
+
};
|
|
393
|
+
export type InputStatus = (typeof InputStatus)[keyof typeof InputStatus];
|
|
380
394
|
export interface InputConfiguration {
|
|
381
395
|
inputName: string | undefined;
|
|
382
396
|
inputDescription?: string;
|
|
@@ -460,11 +474,12 @@ export interface DetectorDebugOption {
|
|
|
460
474
|
detectorModelName: string | undefined;
|
|
461
475
|
keyValue?: string;
|
|
462
476
|
}
|
|
463
|
-
export declare
|
|
464
|
-
DEBUG
|
|
465
|
-
ERROR
|
|
466
|
-
INFO
|
|
467
|
-
}
|
|
477
|
+
export declare const LoggingLevel: {
|
|
478
|
+
readonly DEBUG: "DEBUG";
|
|
479
|
+
readonly ERROR: "ERROR";
|
|
480
|
+
readonly INFO: "INFO";
|
|
481
|
+
};
|
|
482
|
+
export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];
|
|
468
483
|
export interface LoggingOptions {
|
|
469
484
|
roleArn: string | undefined;
|
|
470
485
|
level: LoggingLevel | string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-events",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Events Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|