@aws-sdk/client-iot-events-data 3.478.0 → 3.481.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/commands/BatchAcknowledgeAlarmCommand.js +18 -41
- package/dist-cjs/commands/BatchDeleteDetectorCommand.js +18 -41
- package/dist-cjs/commands/BatchDisableAlarmCommand.js +18 -41
- package/dist-cjs/commands/BatchEnableAlarmCommand.js +18 -41
- package/dist-cjs/commands/BatchPutMessageCommand.js +18 -41
- package/dist-cjs/commands/BatchResetAlarmCommand.js +18 -41
- package/dist-cjs/commands/BatchSnoozeAlarmCommand.js +18 -41
- package/dist-cjs/commands/BatchUpdateDetectorCommand.js +18 -41
- package/dist-cjs/commands/DescribeAlarmCommand.js +18 -41
- package/dist-cjs/commands/DescribeDetectorCommand.js +18 -41
- package/dist-cjs/commands/ListAlarmsCommand.js +18 -41
- package/dist-cjs/commands/ListDetectorsCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/BatchAcknowledgeAlarmCommand.js +18 -41
- package/dist-es/commands/BatchDeleteDetectorCommand.js +18 -41
- package/dist-es/commands/BatchDisableAlarmCommand.js +18 -41
- package/dist-es/commands/BatchEnableAlarmCommand.js +18 -41
- package/dist-es/commands/BatchPutMessageCommand.js +18 -41
- package/dist-es/commands/BatchResetAlarmCommand.js +18 -41
- package/dist-es/commands/BatchSnoozeAlarmCommand.js +18 -41
- package/dist-es/commands/BatchUpdateDetectorCommand.js +18 -41
- package/dist-es/commands/DescribeAlarmCommand.js +18 -41
- package/dist-es/commands/DescribeDetectorCommand.js +18 -41
- package/dist-es/commands/ListAlarmsCommand.js +18 -41
- package/dist-es/commands/ListDetectorsCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/BatchAcknowledgeAlarmCommand.d.ts +6 -21
- package/dist-types/commands/BatchDeleteDetectorCommand.d.ts +6 -21
- package/dist-types/commands/BatchDisableAlarmCommand.d.ts +6 -21
- package/dist-types/commands/BatchEnableAlarmCommand.d.ts +6 -21
- package/dist-types/commands/BatchPutMessageCommand.d.ts +6 -21
- package/dist-types/commands/BatchResetAlarmCommand.d.ts +6 -21
- package/dist-types/commands/BatchSnoozeAlarmCommand.d.ts +6 -21
- package/dist-types/commands/BatchUpdateDetectorCommand.d.ts +6 -21
- package/dist-types/commands/DescribeAlarmCommand.d.ts +6 -21
- package/dist-types/commands/DescribeDetectorCommand.d.ts +6 -21
- package/dist-types/commands/ListAlarmsCommand.d.ts +6 -21
- package/dist-types/commands/ListDetectorsCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/BatchAcknowledgeAlarmCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/BatchDeleteDetectorCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/BatchDisableAlarmCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/BatchEnableAlarmCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/BatchPutMessageCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/BatchResetAlarmCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/BatchSnoozeAlarmCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/BatchUpdateDetectorCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeAlarmCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeDetectorCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListAlarmsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListDetectorsCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +9 -9
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
4
|
import { BatchResetAlarmRequest, BatchResetAlarmResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface BatchResetAlarmCommandInput extends BatchResetAlarmRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface BatchResetAlarmCommandOutput extends BatchResetAlarmResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const BatchResetAlarmCommand_base: {
|
|
24
|
+
new (input: BatchResetAlarmCommandInput): import("@smithy/smithy-client").CommandImpl<BatchResetAlarmCommandInput, BatchResetAlarmCommandOutput, IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Resets one or more alarms. The alarms return to the <code>NORMAL</code> state after you
|
|
@@ -77,23 +80,5 @@ export interface BatchResetAlarmCommandOutput extends BatchResetAlarmResponse, _
|
|
|
77
80
|
* <p>Base exception class for all service exceptions from IoTEventsData service.</p>
|
|
78
81
|
*
|
|
79
82
|
*/
|
|
80
|
-
export declare class BatchResetAlarmCommand extends
|
|
81
|
-
readonly input: BatchResetAlarmCommandInput;
|
|
82
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
-
/**
|
|
84
|
-
* @public
|
|
85
|
-
*/
|
|
86
|
-
constructor(input: BatchResetAlarmCommandInput);
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchResetAlarmCommandInput, BatchResetAlarmCommandOutput>;
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
private serialize;
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
private deserialize;
|
|
83
|
+
export declare class BatchResetAlarmCommand extends BatchResetAlarmCommand_base {
|
|
99
84
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
4
|
import { BatchSnoozeAlarmRequest, BatchSnoozeAlarmResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface BatchSnoozeAlarmCommandInput extends BatchSnoozeAlarmRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface BatchSnoozeAlarmCommandOutput extends BatchSnoozeAlarmResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const BatchSnoozeAlarmCommand_base: {
|
|
24
|
+
new (input: BatchSnoozeAlarmCommandInput): import("@smithy/smithy-client").CommandImpl<BatchSnoozeAlarmCommandInput, BatchSnoozeAlarmCommandOutput, IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Changes one or more alarms to the snooze mode. The alarms change to the
|
|
@@ -78,23 +81,5 @@ export interface BatchSnoozeAlarmCommandOutput extends BatchSnoozeAlarmResponse,
|
|
|
78
81
|
* <p>Base exception class for all service exceptions from IoTEventsData service.</p>
|
|
79
82
|
*
|
|
80
83
|
*/
|
|
81
|
-
export declare class BatchSnoozeAlarmCommand extends
|
|
82
|
-
readonly input: BatchSnoozeAlarmCommandInput;
|
|
83
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
-
/**
|
|
85
|
-
* @public
|
|
86
|
-
*/
|
|
87
|
-
constructor(input: BatchSnoozeAlarmCommandInput);
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchSnoozeAlarmCommandInput, BatchSnoozeAlarmCommandOutput>;
|
|
92
|
-
/**
|
|
93
|
-
* @internal
|
|
94
|
-
*/
|
|
95
|
-
private serialize;
|
|
96
|
-
/**
|
|
97
|
-
* @internal
|
|
98
|
-
*/
|
|
99
|
-
private deserialize;
|
|
84
|
+
export declare class BatchSnoozeAlarmCommand extends BatchSnoozeAlarmCommand_base {
|
|
100
85
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
4
|
import { BatchUpdateDetectorRequest, BatchUpdateDetectorResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface BatchUpdateDetectorCommandInput extends BatchUpdateDetectorRequ
|
|
|
21
20
|
*/
|
|
22
21
|
export interface BatchUpdateDetectorCommandOutput extends BatchUpdateDetectorResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const BatchUpdateDetectorCommand_base: {
|
|
24
|
+
new (input: BatchUpdateDetectorCommandInput): import("@smithy/smithy-client").CommandImpl<BatchUpdateDetectorCommandInput, BatchUpdateDetectorCommandOutput, IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Updates the state, variable values, and timer settings of one or more detectors
|
|
@@ -91,23 +94,5 @@ export interface BatchUpdateDetectorCommandOutput extends BatchUpdateDetectorRes
|
|
|
91
94
|
* <p>Base exception class for all service exceptions from IoTEventsData service.</p>
|
|
92
95
|
*
|
|
93
96
|
*/
|
|
94
|
-
export declare class BatchUpdateDetectorCommand extends
|
|
95
|
-
readonly input: BatchUpdateDetectorCommandInput;
|
|
96
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
97
|
-
/**
|
|
98
|
-
* @public
|
|
99
|
-
*/
|
|
100
|
-
constructor(input: BatchUpdateDetectorCommandInput);
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchUpdateDetectorCommandInput, BatchUpdateDetectorCommandOutput>;
|
|
105
|
-
/**
|
|
106
|
-
* @internal
|
|
107
|
-
*/
|
|
108
|
-
private serialize;
|
|
109
|
-
/**
|
|
110
|
-
* @internal
|
|
111
|
-
*/
|
|
112
|
-
private deserialize;
|
|
97
|
+
export declare class BatchUpdateDetectorCommand extends BatchUpdateDetectorCommand_base {
|
|
113
98
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
4
|
import { DescribeAlarmRequest, DescribeAlarmResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeAlarmCommandInput extends DescribeAlarmRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeAlarmCommandOutput extends DescribeAlarmResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeAlarmCommand_base: {
|
|
24
|
+
new (input: DescribeAlarmCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAlarmCommandInput, DescribeAlarmCommandOutput, IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Retrieves information about an alarm.</p>
|
|
@@ -109,23 +112,5 @@ export interface DescribeAlarmCommandOutput extends DescribeAlarmResponse, __Met
|
|
|
109
112
|
* <p>Base exception class for all service exceptions from IoTEventsData service.</p>
|
|
110
113
|
*
|
|
111
114
|
*/
|
|
112
|
-
export declare class DescribeAlarmCommand extends
|
|
113
|
-
readonly input: DescribeAlarmCommandInput;
|
|
114
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
115
|
-
/**
|
|
116
|
-
* @public
|
|
117
|
-
*/
|
|
118
|
-
constructor(input: DescribeAlarmCommandInput);
|
|
119
|
-
/**
|
|
120
|
-
* @internal
|
|
121
|
-
*/
|
|
122
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAlarmCommandInput, DescribeAlarmCommandOutput>;
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
private serialize;
|
|
127
|
-
/**
|
|
128
|
-
* @internal
|
|
129
|
-
*/
|
|
130
|
-
private deserialize;
|
|
115
|
+
export declare class DescribeAlarmCommand extends DescribeAlarmCommand_base {
|
|
131
116
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
4
|
import { DescribeDetectorRequest, DescribeDetectorResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeDetectorCommandInput extends DescribeDetectorRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeDetectorCommandOutput extends DescribeDetectorResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeDetectorCommand_base: {
|
|
24
|
+
new (input: DescribeDetectorCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDetectorCommandInput, DescribeDetectorCommandOutput, IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns information about the specified detector (instance).</p>
|
|
@@ -88,23 +91,5 @@ export interface DescribeDetectorCommandOutput extends DescribeDetectorResponse,
|
|
|
88
91
|
* <p>Base exception class for all service exceptions from IoTEventsData service.</p>
|
|
89
92
|
*
|
|
90
93
|
*/
|
|
91
|
-
export declare class DescribeDetectorCommand extends
|
|
92
|
-
readonly input: DescribeDetectorCommandInput;
|
|
93
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
-
/**
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
constructor(input: DescribeDetectorCommandInput);
|
|
98
|
-
/**
|
|
99
|
-
* @internal
|
|
100
|
-
*/
|
|
101
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDetectorCommandInput, DescribeDetectorCommandOutput>;
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
private serialize;
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
private deserialize;
|
|
94
|
+
export declare class DescribeDetectorCommand extends DescribeDetectorCommand_base {
|
|
110
95
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
4
|
import { ListAlarmsRequest, ListAlarmsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListAlarmsCommandInput extends ListAlarmsRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListAlarmsCommandOutput extends ListAlarmsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListAlarmsCommand_base: {
|
|
24
|
+
new (input: ListAlarmsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAlarmsCommandInput, ListAlarmsCommandOutput, IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists one or more alarms. The operation returns only the metadata associated with each
|
|
@@ -79,23 +82,5 @@ export interface ListAlarmsCommandOutput extends ListAlarmsResponse, __MetadataB
|
|
|
79
82
|
* <p>Base exception class for all service exceptions from IoTEventsData service.</p>
|
|
80
83
|
*
|
|
81
84
|
*/
|
|
82
|
-
export declare class ListAlarmsCommand extends
|
|
83
|
-
readonly input: ListAlarmsCommandInput;
|
|
84
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
85
|
-
/**
|
|
86
|
-
* @public
|
|
87
|
-
*/
|
|
88
|
-
constructor(input: ListAlarmsCommandInput);
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAlarmsCommandInput, ListAlarmsCommandOutput>;
|
|
93
|
-
/**
|
|
94
|
-
* @internal
|
|
95
|
-
*/
|
|
96
|
-
private serialize;
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
private deserialize;
|
|
85
|
+
export declare class ListAlarmsCommand extends ListAlarmsCommand_base {
|
|
101
86
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
|
|
5
4
|
import { ListDetectorsRequest, ListDetectorsResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListDetectorsCommandInput extends ListDetectorsRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListDetectorsCommandOutput extends ListDetectorsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListDetectorsCommand_base: {
|
|
24
|
+
new (input: ListDetectorsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDetectorsCommandInput, ListDetectorsCommandOutput, IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists detectors (the instances of a detector model).</p>
|
|
@@ -81,23 +84,5 @@ export interface ListDetectorsCommandOutput extends ListDetectorsResponse, __Met
|
|
|
81
84
|
* <p>Base exception class for all service exceptions from IoTEventsData service.</p>
|
|
82
85
|
*
|
|
83
86
|
*/
|
|
84
|
-
export declare class ListDetectorsCommand extends
|
|
85
|
-
readonly input: ListDetectorsCommandInput;
|
|
86
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
87
|
-
/**
|
|
88
|
-
* @public
|
|
89
|
-
*/
|
|
90
|
-
constructor(input: ListDetectorsCommandInput);
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDetectorsCommandInput, ListDetectorsCommandOutput>;
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
private serialize;
|
|
99
|
-
/**
|
|
100
|
-
* @internal
|
|
101
|
-
*/
|
|
102
|
-
private deserialize;
|
|
87
|
+
export declare class ListDetectorsCommand extends ListDetectorsCommand_base {
|
|
103
88
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
IoTEventsDataClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface BatchAcknowledgeAlarmCommandInput
|
|
|
21
15
|
export interface BatchAcknowledgeAlarmCommandOutput
|
|
22
16
|
extends BatchAcknowledgeAlarmResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: BatchAcknowledgeAlarmCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: BatchAcknowledgeAlarmCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: IoTEventsDataClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const BatchAcknowledgeAlarmCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: BatchAcknowledgeAlarmCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
BatchAcknowledgeAlarmCommandInput,
|
|
38
|
-
BatchAcknowledgeAlarmCommandOutput
|
|
23
|
+
BatchAcknowledgeAlarmCommandOutput,
|
|
24
|
+
IoTEventsDataClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class BatchAcknowledgeAlarmCommand extends BatchAcknowledgeAlarmCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
IoTEventsDataClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface BatchDeleteDetectorCommandInput
|
|
|
21
15
|
export interface BatchDeleteDetectorCommandOutput
|
|
22
16
|
extends BatchDeleteDetectorResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const BatchDeleteDetectorCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: BatchDeleteDetectorCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
BatchDeleteDetectorCommandInput,
|
|
23
|
+
BatchDeleteDetectorCommandOutput,
|
|
24
|
+
IoTEventsDataClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class BatchDeleteDetectorCommand extends BatchDeleteDetectorCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
IoTEventsDataClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface BatchDisableAlarmCommandInput
|
|
|
21
15
|
export interface BatchDisableAlarmCommandOutput
|
|
22
16
|
extends BatchDisableAlarmResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const BatchDisableAlarmCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: BatchDisableAlarmCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
BatchDisableAlarmCommandInput,
|
|
23
|
+
BatchDisableAlarmCommandOutput,
|
|
24
|
+
IoTEventsDataClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class BatchDisableAlarmCommand extends BatchDisableAlarmCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
IoTEventsDataClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface BatchEnableAlarmCommandInput extends BatchEnableAlarmRequest {}
|
|
|
20
14
|
export interface BatchEnableAlarmCommandOutput
|
|
21
15
|
extends BatchEnableAlarmResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const BatchEnableAlarmCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: BatchEnableAlarmCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
BatchEnableAlarmCommandInput,
|
|
22
|
+
BatchEnableAlarmCommandOutput,
|
|
23
|
+
IoTEventsDataClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class BatchEnableAlarmCommand extends BatchEnableAlarmCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
IoTEventsDataClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface BatchPutMessageCommandInput extends BatchPutMessageRequest {}
|
|
|
20
14
|
export interface BatchPutMessageCommandOutput
|
|
21
15
|
extends BatchPutMessageResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const BatchPutMessageCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: BatchPutMessageCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
BatchPutMessageCommandInput,
|
|
22
|
+
BatchPutMessageCommandOutput,
|
|
23
|
+
IoTEventsDataClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class BatchPutMessageCommand extends BatchPutMessageCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
IoTEventsDataClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -20,19 +14,16 @@ export interface BatchResetAlarmCommandInput extends BatchResetAlarmRequest {}
|
|
|
20
14
|
export interface BatchResetAlarmCommandOutput
|
|
21
15
|
extends BatchResetAlarmResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const BatchResetAlarmCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: BatchResetAlarmCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
BatchResetAlarmCommandInput,
|
|
22
|
+
BatchResetAlarmCommandOutput,
|
|
23
|
+
IoTEventsDataClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class BatchResetAlarmCommand extends BatchResetAlarmCommand_base {}
|