@aws-sdk/client-iot-events-data 3.300.0 → 3.301.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-types/commands/BatchAcknowledgeAlarmCommand.d.ts +3 -3
- package/dist-types/commands/BatchDeleteDetectorCommand.d.ts +3 -3
- package/dist-types/commands/BatchDisableAlarmCommand.d.ts +3 -3
- package/dist-types/commands/BatchEnableAlarmCommand.d.ts +3 -3
- package/dist-types/commands/BatchPutMessageCommand.d.ts +4 -4
- package/dist-types/commands/BatchResetAlarmCommand.d.ts +3 -3
- package/dist-types/commands/BatchSnoozeAlarmCommand.d.ts +3 -3
- package/dist-types/commands/BatchUpdateDetectorCommand.d.ts +8 -8
- package/dist-types/commands/DescribeAlarmCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDetectorCommand.d.ts +1 -1
- package/dist-types/commands/ListAlarmsCommand.d.ts +1 -1
- package/dist-types/commands/ListDetectorsCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -27,9 +27,9 @@ export interface BatchAcknowledgeAlarmCommandOutput extends BatchAcknowledgeAlar
|
|
|
27
27
|
* import { IoTEventsDataClient, BatchAcknowledgeAlarmCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
28
28
|
* // const { IoTEventsDataClient, BatchAcknowledgeAlarmCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
29
29
|
* const client = new IoTEventsDataClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* acknowledgeActionRequests: [ // required
|
|
32
|
-
* {
|
|
30
|
+
* const input = { // BatchAcknowledgeAlarmRequest
|
|
31
|
+
* acknowledgeActionRequests: [ // AcknowledgeAlarmActionRequests // required
|
|
32
|
+
* { // AcknowledgeAlarmActionRequest
|
|
33
33
|
* requestId: "STRING_VALUE", // required
|
|
34
34
|
* alarmModelName: "STRING_VALUE", // required
|
|
35
35
|
* keyValue: "STRING_VALUE",
|
|
@@ -26,9 +26,9 @@ export interface BatchDeleteDetectorCommandOutput extends BatchDeleteDetectorRes
|
|
|
26
26
|
* import { IoTEventsDataClient, BatchDeleteDetectorCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
27
27
|
* // const { IoTEventsDataClient, BatchDeleteDetectorCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
28
28
|
* const client = new IoTEventsDataClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* detectors: [ // required
|
|
31
|
-
* {
|
|
29
|
+
* const input = { // BatchDeleteDetectorRequest
|
|
30
|
+
* detectors: [ // DeleteDetectorRequests // required
|
|
31
|
+
* { // DeleteDetectorRequest
|
|
32
32
|
* messageId: "STRING_VALUE", // required
|
|
33
33
|
* detectorModelName: "STRING_VALUE", // required
|
|
34
34
|
* keyValue: "STRING_VALUE",
|
|
@@ -27,9 +27,9 @@ export interface BatchDisableAlarmCommandOutput extends BatchDisableAlarmRespons
|
|
|
27
27
|
* import { IoTEventsDataClient, BatchDisableAlarmCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
28
28
|
* // const { IoTEventsDataClient, BatchDisableAlarmCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
29
29
|
* const client = new IoTEventsDataClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* disableActionRequests: [ // required
|
|
32
|
-
* {
|
|
30
|
+
* const input = { // BatchDisableAlarmRequest
|
|
31
|
+
* disableActionRequests: [ // DisableAlarmActionRequests // required
|
|
32
|
+
* { // DisableAlarmActionRequest
|
|
33
33
|
* requestId: "STRING_VALUE", // required
|
|
34
34
|
* alarmModelName: "STRING_VALUE", // required
|
|
35
35
|
* keyValue: "STRING_VALUE",
|
|
@@ -27,9 +27,9 @@ export interface BatchEnableAlarmCommandOutput extends BatchEnableAlarmResponse,
|
|
|
27
27
|
* import { IoTEventsDataClient, BatchEnableAlarmCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
28
28
|
* // const { IoTEventsDataClient, BatchEnableAlarmCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
29
29
|
* const client = new IoTEventsDataClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* enableActionRequests: [ // required
|
|
32
|
-
* {
|
|
30
|
+
* const input = { // BatchEnableAlarmRequest
|
|
31
|
+
* enableActionRequests: [ // EnableAlarmActionRequests // required
|
|
32
|
+
* { // EnableAlarmActionRequest
|
|
33
33
|
* requestId: "STRING_VALUE", // required
|
|
34
34
|
* alarmModelName: "STRING_VALUE", // required
|
|
35
35
|
* keyValue: "STRING_VALUE",
|
|
@@ -30,13 +30,13 @@ export interface BatchPutMessageCommandOutput extends BatchPutMessageResponse, _
|
|
|
30
30
|
* import { IoTEventsDataClient, BatchPutMessageCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
31
31
|
* // const { IoTEventsDataClient, BatchPutMessageCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
32
32
|
* const client = new IoTEventsDataClient(config);
|
|
33
|
-
* const input = {
|
|
34
|
-
* messages: [ // required
|
|
35
|
-
* {
|
|
33
|
+
* const input = { // BatchPutMessageRequest
|
|
34
|
+
* messages: [ // Messages // required
|
|
35
|
+
* { // Message
|
|
36
36
|
* messageId: "STRING_VALUE", // required
|
|
37
37
|
* inputName: "STRING_VALUE", // required
|
|
38
38
|
* payload: "BLOB_VALUE", // required
|
|
39
|
-
* timestamp: {
|
|
39
|
+
* timestamp: { // TimestampValue
|
|
40
40
|
* timeInMillis: Number("long"),
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
@@ -27,9 +27,9 @@ export interface BatchResetAlarmCommandOutput extends BatchResetAlarmResponse, _
|
|
|
27
27
|
* import { IoTEventsDataClient, BatchResetAlarmCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
28
28
|
* // const { IoTEventsDataClient, BatchResetAlarmCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
29
29
|
* const client = new IoTEventsDataClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* resetActionRequests: [ // required
|
|
32
|
-
* {
|
|
30
|
+
* const input = { // BatchResetAlarmRequest
|
|
31
|
+
* resetActionRequests: [ // ResetAlarmActionRequests // required
|
|
32
|
+
* { // ResetAlarmActionRequest
|
|
33
33
|
* requestId: "STRING_VALUE", // required
|
|
34
34
|
* alarmModelName: "STRING_VALUE", // required
|
|
35
35
|
* keyValue: "STRING_VALUE",
|
|
@@ -27,9 +27,9 @@ export interface BatchSnoozeAlarmCommandOutput extends BatchSnoozeAlarmResponse,
|
|
|
27
27
|
* import { IoTEventsDataClient, BatchSnoozeAlarmCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
28
28
|
* // const { IoTEventsDataClient, BatchSnoozeAlarmCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
29
29
|
* const client = new IoTEventsDataClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* snoozeActionRequests: [ // required
|
|
32
|
-
* {
|
|
30
|
+
* const input = { // BatchSnoozeAlarmRequest
|
|
31
|
+
* snoozeActionRequests: [ // SnoozeAlarmActionRequests // required
|
|
32
|
+
* { // SnoozeAlarmActionRequest
|
|
33
33
|
* requestId: "STRING_VALUE", // required
|
|
34
34
|
* alarmModelName: "STRING_VALUE", // required
|
|
35
35
|
* keyValue: "STRING_VALUE",
|
|
@@ -27,22 +27,22 @@ export interface BatchUpdateDetectorCommandOutput extends BatchUpdateDetectorRes
|
|
|
27
27
|
* import { IoTEventsDataClient, BatchUpdateDetectorCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
28
28
|
* // const { IoTEventsDataClient, BatchUpdateDetectorCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
29
29
|
* const client = new IoTEventsDataClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* detectors: [ // required
|
|
32
|
-
* {
|
|
30
|
+
* const input = { // BatchUpdateDetectorRequest
|
|
31
|
+
* detectors: [ // UpdateDetectorRequests // required
|
|
32
|
+
* { // UpdateDetectorRequest
|
|
33
33
|
* messageId: "STRING_VALUE", // required
|
|
34
34
|
* detectorModelName: "STRING_VALUE", // required
|
|
35
35
|
* keyValue: "STRING_VALUE",
|
|
36
|
-
* state: {
|
|
36
|
+
* state: { // DetectorStateDefinition
|
|
37
37
|
* stateName: "STRING_VALUE", // required
|
|
38
|
-
* variables: [ // required
|
|
39
|
-
* {
|
|
38
|
+
* variables: [ // VariableDefinitions // required
|
|
39
|
+
* { // VariableDefinition
|
|
40
40
|
* name: "STRING_VALUE", // required
|
|
41
41
|
* value: "STRING_VALUE", // required
|
|
42
42
|
* },
|
|
43
43
|
* ],
|
|
44
|
-
* timers: [ // required
|
|
45
|
-
* {
|
|
44
|
+
* timers: [ // TimerDefinitions // required
|
|
45
|
+
* { // TimerDefinition
|
|
46
46
|
* name: "STRING_VALUE", // required
|
|
47
47
|
* seconds: Number("int"), // required
|
|
48
48
|
* },
|
|
@@ -26,7 +26,7 @@ export interface DescribeAlarmCommandOutput extends DescribeAlarmResponse, __Met
|
|
|
26
26
|
* import { IoTEventsDataClient, DescribeAlarmCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
27
27
|
* // const { IoTEventsDataClient, DescribeAlarmCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
28
28
|
* const client = new IoTEventsDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeAlarmRequest
|
|
30
30
|
* alarmModelName: "STRING_VALUE", // required
|
|
31
31
|
* keyValue: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeDetectorCommandOutput extends DescribeDetectorResponse,
|
|
|
26
26
|
* import { IoTEventsDataClient, DescribeDetectorCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
27
27
|
* // const { IoTEventsDataClient, DescribeDetectorCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
28
28
|
* const client = new IoTEventsDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeDetectorRequest
|
|
30
30
|
* detectorModelName: "STRING_VALUE", // required
|
|
31
31
|
* keyValue: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListAlarmsCommandOutput extends ListAlarmsResponse, __MetadataB
|
|
|
27
27
|
* import { IoTEventsDataClient, ListAlarmsCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
28
28
|
* // const { IoTEventsDataClient, ListAlarmsCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
29
29
|
* const client = new IoTEventsDataClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListAlarmsRequest
|
|
31
31
|
* alarmModelName: "STRING_VALUE", // required
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
|
33
33
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListDetectorsCommandOutput extends ListDetectorsResponse, __Met
|
|
|
26
26
|
* import { IoTEventsDataClient, ListDetectorsCommand } from "@aws-sdk/client-iot-events-data"; // ES Modules import
|
|
27
27
|
* // const { IoTEventsDataClient, ListDetectorsCommand } = require("@aws-sdk/client-iot-events-data"); // CommonJS import
|
|
28
28
|
* const client = new IoTEventsDataClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListDetectorsRequest
|
|
30
30
|
* detectorModelName: "STRING_VALUE", // required
|
|
31
31
|
* stateName: "STRING_VALUE",
|
|
32
32
|
* nextToken: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-events-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Events Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|