@aws-sdk/client-iot-events-data 3.335.0 → 3.338.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/IoTEventsDataClient.js +2 -1
- package/dist-cjs/commands/BatchAcknowledgeAlarmCommand.js +2 -1
- package/dist-cjs/commands/BatchDeleteDetectorCommand.js +2 -1
- package/dist-cjs/commands/BatchDisableAlarmCommand.js +2 -1
- package/dist-cjs/commands/BatchEnableAlarmCommand.js +2 -1
- package/dist-cjs/commands/BatchPutMessageCommand.js +2 -1
- package/dist-cjs/commands/BatchResetAlarmCommand.js +2 -1
- package/dist-cjs/commands/BatchSnoozeAlarmCommand.js +2 -1
- package/dist-cjs/commands/BatchUpdateDetectorCommand.js +2 -1
- package/dist-cjs/commands/DescribeAlarmCommand.js +2 -1
- package/dist-cjs/commands/DescribeDetectorCommand.js +2 -1
- package/dist-cjs/commands/ListAlarmsCommand.js +2 -1
- package/dist-cjs/commands/ListDetectorsCommand.js +2 -1
- package/dist-cjs/index.js +1 -1
- package/dist-cjs/models/IoTEventsDataServiceException.js +2 -1
- package/dist-es/IoTEventsDataClient.js +1 -0
- package/dist-es/commands/BatchAcknowledgeAlarmCommand.js +1 -0
- package/dist-es/commands/BatchDeleteDetectorCommand.js +1 -0
- package/dist-es/commands/BatchDisableAlarmCommand.js +1 -0
- package/dist-es/commands/BatchEnableAlarmCommand.js +1 -0
- package/dist-es/commands/BatchPutMessageCommand.js +1 -0
- package/dist-es/commands/BatchResetAlarmCommand.js +1 -0
- package/dist-es/commands/BatchSnoozeAlarmCommand.js +1 -0
- package/dist-es/commands/BatchUpdateDetectorCommand.js +1 -0
- package/dist-es/commands/DescribeAlarmCommand.js +1 -0
- package/dist-es/commands/DescribeDetectorCommand.js +1 -0
- package/dist-es/commands/ListAlarmsCommand.js +1 -0
- package/dist-es/commands/ListDetectorsCommand.js +1 -0
- package/dist-es/index.js +1 -1
- package/dist-es/models/IoTEventsDataServiceException.js +1 -0
- package/dist-types/IoTEventsDataClient.d.ts +3 -3
- package/dist-types/commands/BatchAcknowledgeAlarmCommand.d.ts +4 -0
- package/dist-types/commands/BatchDeleteDetectorCommand.d.ts +4 -0
- package/dist-types/commands/BatchDisableAlarmCommand.d.ts +4 -0
- package/dist-types/commands/BatchEnableAlarmCommand.d.ts +4 -0
- package/dist-types/commands/BatchPutMessageCommand.d.ts +4 -0
- package/dist-types/commands/BatchResetAlarmCommand.d.ts +4 -0
- package/dist-types/commands/BatchSnoozeAlarmCommand.d.ts +4 -0
- package/dist-types/commands/BatchUpdateDetectorCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAlarmCommand.d.ts +4 -0
- package/dist-types/commands/DescribeDetectorCommand.d.ts +4 -0
- package/dist-types/commands/ListAlarmsCommand.d.ts +4 -0
- package/dist-types/commands/ListDetectorsCommand.d.ts +4 -0
- package/dist-types/index.d.ts +10 -1
- package/dist-types/models/IoTEventsDataServiceException.d.ts +1 -0
- package/dist-types/ts3.4/IoTEventsDataClient.d.ts +3 -3
- package/dist-types/ts3.4/commands/BatchAcknowledgeAlarmCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/BatchDeleteDetectorCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/BatchDisableAlarmCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/BatchEnableAlarmCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/BatchPutMessageCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/BatchResetAlarmCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/BatchSnoozeAlarmCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/BatchUpdateDetectorCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/DescribeAlarmCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/DescribeDetectorCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListAlarmsCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListDetectorsCommand.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +1 -1
- package/dist-types/ts3.4/models/IoTEventsDataServiceException.d.ts +1 -0
- package/package.json +28 -28
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IoTEventsDataClient = void 0;
|
|
3
|
+
exports.IoTEventsDataClient = exports.__Client = void 0;
|
|
4
4
|
const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
@@ -11,6 +11,7 @@ const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
|
11
11
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
12
12
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
13
13
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
14
|
+
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
14
15
|
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
15
16
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
16
17
|
class IoTEventsDataClient extends smithy_client_1.Client {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchAcknowledgeAlarmCommand = void 0;
|
|
3
|
+
exports.BatchAcknowledgeAlarmCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class BatchAcknowledgeAlarmCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchDeleteDetectorCommand = void 0;
|
|
3
|
+
exports.BatchDeleteDetectorCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class BatchDeleteDetectorCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchDisableAlarmCommand = void 0;
|
|
3
|
+
exports.BatchDisableAlarmCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class BatchDisableAlarmCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchEnableAlarmCommand = void 0;
|
|
3
|
+
exports.BatchEnableAlarmCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class BatchEnableAlarmCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchPutMessageCommand = void 0;
|
|
3
|
+
exports.BatchPutMessageCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class BatchPutMessageCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchResetAlarmCommand = void 0;
|
|
3
|
+
exports.BatchResetAlarmCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class BatchResetAlarmCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchSnoozeAlarmCommand = void 0;
|
|
3
|
+
exports.BatchSnoozeAlarmCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class BatchSnoozeAlarmCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchUpdateDetectorCommand = void 0;
|
|
3
|
+
exports.BatchUpdateDetectorCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class BatchUpdateDetectorCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeAlarmCommand = void 0;
|
|
3
|
+
exports.DescribeAlarmCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class DescribeAlarmCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeDetectorCommand = void 0;
|
|
3
|
+
exports.DescribeDetectorCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class DescribeDetectorCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListAlarmsCommand = void 0;
|
|
3
|
+
exports.ListAlarmsCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class ListAlarmsCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListDetectorsCommand = void 0;
|
|
3
|
+
exports.ListDetectorsCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class ListDetectorsCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
package/dist-cjs/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.IoTEventsDataServiceException = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
tslib_1.__exportStar(require("./IoTEventsData"), exports);
|
|
6
5
|
tslib_1.__exportStar(require("./IoTEventsDataClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./IoTEventsData"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
9
9
|
var IoTEventsDataServiceException_1 = require("./models/IoTEventsDataServiceException");
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IoTEventsDataServiceException = void 0;
|
|
3
|
+
exports.IoTEventsDataServiceException = exports.__ServiceException = void 0;
|
|
4
4
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
5
6
|
class IoTEventsDataServiceException extends smithy_client_1.ServiceException {
|
|
6
7
|
constructor(options) {
|
|
7
8
|
super(options);
|
|
@@ -10,6 +10,7 @@ import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware
|
|
|
10
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
11
11
|
import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
|
|
12
12
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
13
|
+
export { __Client };
|
|
13
14
|
export class IoTEventsDataClient extends __Client {
|
|
14
15
|
constructor(configuration) {
|
|
15
16
|
const _config_0 = __getRuntimeConfig(configuration);
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_BatchAcknowledgeAlarmCommand, se_BatchAcknowledgeAlarmCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class BatchAcknowledgeAlarmCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_BatchDeleteDetectorCommand, se_BatchDeleteDetectorCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class BatchDeleteDetectorCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_BatchDisableAlarmCommand, se_BatchDisableAlarmCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class BatchDisableAlarmCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_BatchEnableAlarmCommand, se_BatchEnableAlarmCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class BatchEnableAlarmCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_BatchPutMessageCommand, se_BatchPutMessageCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class BatchPutMessageCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_BatchResetAlarmCommand, se_BatchResetAlarmCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class BatchResetAlarmCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_BatchSnoozeAlarmCommand, se_BatchSnoozeAlarmCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class BatchSnoozeAlarmCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_BatchUpdateDetectorCommand, se_BatchUpdateDetectorCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class BatchUpdateDetectorCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_DescribeAlarmCommand, se_DescribeAlarmCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class DescribeAlarmCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_DescribeDetectorCommand, se_DescribeDetectorCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class DescribeDetectorCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_ListAlarmsCommand, se_ListAlarmsCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class ListAlarmsCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_ListDetectorsCommand, se_ListDetectorsCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class ListDetectorsCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
package/dist-es/index.js
CHANGED
|
@@ -21,6 +21,7 @@ import { DescribeDetectorCommandInput, DescribeDetectorCommandOutput } from "./c
|
|
|
21
21
|
import { ListAlarmsCommandInput, ListAlarmsCommandOutput } from "./commands/ListAlarmsCommand";
|
|
22
22
|
import { ListDetectorsCommandInput, ListDetectorsCommandOutput } from "./commands/ListDetectorsCommand";
|
|
23
23
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
24
|
+
export { __Client };
|
|
24
25
|
/**
|
|
25
26
|
* @public
|
|
26
27
|
*/
|
|
@@ -135,7 +136,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
135
136
|
/**
|
|
136
137
|
* @public
|
|
137
138
|
*/
|
|
138
|
-
type IoTEventsDataClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
139
|
+
export type IoTEventsDataClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
139
140
|
/**
|
|
140
141
|
* @public
|
|
141
142
|
*
|
|
@@ -146,7 +147,7 @@ export interface IoTEventsDataClientConfig extends IoTEventsDataClientConfigType
|
|
|
146
147
|
/**
|
|
147
148
|
* @public
|
|
148
149
|
*/
|
|
149
|
-
type IoTEventsDataClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
150
|
+
export type IoTEventsDataClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
150
151
|
/**
|
|
151
152
|
* @public
|
|
152
153
|
*
|
|
@@ -175,4 +176,3 @@ export declare class IoTEventsDataClient extends __Client<__HttpHandlerOptions,
|
|
|
175
176
|
*/
|
|
176
177
|
destroy(): void;
|
|
177
178
|
}
|
|
178
|
-
export {};
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { BatchAcknowledgeAlarmRequest, BatchAcknowledgeAlarmResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { BatchDeleteDetectorRequest, BatchDeleteDetectorResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { BatchDisableAlarmRequest, BatchDisableAlarmResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { BatchEnableAlarmRequest, BatchEnableAlarmResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { BatchPutMessageRequest, BatchPutMessageResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { BatchResetAlarmRequest, BatchResetAlarmResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { BatchSnoozeAlarmRequest, BatchSnoozeAlarmResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { BatchUpdateDetectorRequest, BatchUpdateDetectorResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { DescribeAlarmRequest, DescribeAlarmResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { DescribeDetectorRequest, DescribeDetectorResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { ListAlarmsRequest, ListAlarmsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
5
|
import { ListDetectorsRequest, ListDetectorsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* <p>IoT Events monitors your equipment or device fleets for failures or changes in operation, and
|
|
3
|
+
* triggers actions when such events occur. You can use IoT Events Data API commands to send inputs to
|
|
4
|
+
* detectors, list detectors, and view or update a detector's status.</p>
|
|
5
|
+
* <p> For more information, see <a href="https://docs.aws.amazon.com/iotevents/latest/developerguide/what-is-iotevents.html">What is IoT Events?</a> in the
|
|
6
|
+
* <i>IoT Events Developer Guide</i>.</p>
|
|
7
|
+
*
|
|
8
|
+
* @packageDocumentation
|
|
9
|
+
*/
|
|
2
10
|
export * from "./IoTEventsDataClient";
|
|
11
|
+
export * from "./IoTEventsData";
|
|
3
12
|
export * from "./commands";
|
|
4
13
|
export * from "./models";
|
|
5
14
|
export { IoTEventsDataServiceException } from "./models/IoTEventsDataServiceException";
|
|
@@ -99,6 +99,7 @@ import {
|
|
|
99
99
|
ClientResolvedEndpointParameters,
|
|
100
100
|
EndpointParameters,
|
|
101
101
|
} from "./endpoint/EndpointParameters";
|
|
102
|
+
export { __Client };
|
|
102
103
|
export type ServiceInputTypes =
|
|
103
104
|
| BatchAcknowledgeAlarmCommandInput
|
|
104
105
|
| BatchDeleteDetectorCommandInput
|
|
@@ -149,7 +150,7 @@ export interface ClientDefaults
|
|
|
149
150
|
logger?: __Logger;
|
|
150
151
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
151
152
|
}
|
|
152
|
-
type IoTEventsDataClientConfigType = Partial<
|
|
153
|
+
export type IoTEventsDataClientConfigType = Partial<
|
|
153
154
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
154
155
|
> &
|
|
155
156
|
ClientDefaults &
|
|
@@ -162,7 +163,7 @@ type IoTEventsDataClientConfigType = Partial<
|
|
|
162
163
|
ClientInputEndpointParameters;
|
|
163
164
|
export interface IoTEventsDataClientConfig
|
|
164
165
|
extends IoTEventsDataClientConfigType {}
|
|
165
|
-
type IoTEventsDataClientResolvedConfigType =
|
|
166
|
+
export type IoTEventsDataClientResolvedConfigType =
|
|
166
167
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
167
168
|
Required<ClientDefaults> &
|
|
168
169
|
RegionResolvedConfig &
|
|
@@ -184,4 +185,3 @@ export declare class IoTEventsDataClient extends __Client<
|
|
|
184
185
|
constructor(configuration: IoTEventsDataClientConfig);
|
|
185
186
|
destroy(): void;
|
|
186
187
|
}
|
|
187
|
-
export {};
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
BatchAcknowledgeAlarmRequest,
|
|
16
16
|
BatchAcknowledgeAlarmResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface BatchAcknowledgeAlarmCommandInput
|
|
19
20
|
extends BatchAcknowledgeAlarmRequest {}
|
|
20
21
|
export interface BatchAcknowledgeAlarmCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
BatchDeleteDetectorRequest,
|
|
16
16
|
BatchDeleteDetectorResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface BatchDeleteDetectorCommandInput
|
|
19
20
|
extends BatchDeleteDetectorRequest {}
|
|
20
21
|
export interface BatchDeleteDetectorCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
BatchDisableAlarmRequest,
|
|
16
16
|
BatchDisableAlarmResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface BatchDisableAlarmCommandInput
|
|
19
20
|
extends BatchDisableAlarmRequest {}
|
|
20
21
|
export interface BatchDisableAlarmCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
BatchEnableAlarmRequest,
|
|
16
16
|
BatchEnableAlarmResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface BatchEnableAlarmCommandInput extends BatchEnableAlarmRequest {}
|
|
19
20
|
export interface BatchEnableAlarmCommandOutput
|
|
20
21
|
extends BatchEnableAlarmResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
BatchPutMessageRequest,
|
|
16
16
|
BatchPutMessageResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface BatchPutMessageCommandInput extends BatchPutMessageRequest {}
|
|
19
20
|
export interface BatchPutMessageCommandOutput
|
|
20
21
|
extends BatchPutMessageResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
BatchResetAlarmRequest,
|
|
16
16
|
BatchResetAlarmResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface BatchResetAlarmCommandInput extends BatchResetAlarmRequest {}
|
|
19
20
|
export interface BatchResetAlarmCommandOutput
|
|
20
21
|
extends BatchResetAlarmResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
BatchSnoozeAlarmRequest,
|
|
16
16
|
BatchSnoozeAlarmResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface BatchSnoozeAlarmCommandInput extends BatchSnoozeAlarmRequest {}
|
|
19
20
|
export interface BatchSnoozeAlarmCommandOutput
|
|
20
21
|
extends BatchSnoozeAlarmResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
BatchUpdateDetectorRequest,
|
|
16
16
|
BatchUpdateDetectorResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface BatchUpdateDetectorCommandInput
|
|
19
20
|
extends BatchUpdateDetectorRequest {}
|
|
20
21
|
export interface BatchUpdateDetectorCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
DescribeAlarmRequest,
|
|
16
16
|
DescribeAlarmResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface DescribeAlarmCommandInput extends DescribeAlarmRequest {}
|
|
19
20
|
export interface DescribeAlarmCommandOutput
|
|
20
21
|
extends DescribeAlarmResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
DescribeDetectorRequest,
|
|
16
16
|
DescribeDetectorResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface DescribeDetectorCommandInput extends DescribeDetectorRequest {}
|
|
19
20
|
export interface DescribeDetectorCommandOutput
|
|
20
21
|
extends DescribeDetectorResponse,
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../IoTEventsDataClient";
|
|
14
14
|
import { ListAlarmsRequest, ListAlarmsResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
15
16
|
export interface ListAlarmsCommandInput extends ListAlarmsRequest {}
|
|
16
17
|
export interface ListAlarmsCommandOutput
|
|
17
18
|
extends ListAlarmsResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ListDetectorsRequest,
|
|
16
16
|
ListDetectorsResponse,
|
|
17
17
|
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface ListDetectorsCommandInput extends ListDetectorsRequest {}
|
|
19
20
|
export interface ListDetectorsCommandOutput
|
|
20
21
|
extends ListDetectorsResponse,
|
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
5
6
|
export declare class IoTEventsDataServiceException extends __ServiceException {
|
|
6
7
|
constructor(options: __ServiceExceptionOptions);
|
|
7
8
|
}
|
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.338.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,36 +21,36 @@
|
|
|
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/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.338.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.338.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.338.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.338.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.338.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.338.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.338.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.338.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.338.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.338.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.338.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.338.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.338.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.338.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.338.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.338.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.338.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.338.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.338.0",
|
|
43
|
+
"@aws-sdk/types": "3.338.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.338.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.338.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.338.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.338.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.338.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.338.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.338.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
55
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
56
|
"@smithy/types": "^1.0.0",
|