@aws-sdk/client-iot-events-data 3.169.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/IoTEventsData.d.ts +220 -65
- package/dist-types/ts3.4/IoTEventsDataClient.d.ts +202 -85
- package/dist-types/ts3.4/commands/BatchAcknowledgeAlarmCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/BatchDeleteDetectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/BatchDisableAlarmCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/BatchEnableAlarmCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/BatchPutMessageCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/BatchResetAlarmCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/BatchSnoozeAlarmCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/BatchUpdateDetectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeAlarmCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeDetectorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListAlarmsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDetectorsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +12 -12
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/IoTEventsDataServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +679 -626
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
BatchDeleteDetectorRequest,
|
|
15
|
+
BatchDeleteDetectorResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface BatchDeleteDetectorCommandInput
|
|
18
|
+
extends BatchDeleteDetectorRequest {}
|
|
19
|
+
export interface BatchDeleteDetectorCommandOutput
|
|
20
|
+
extends BatchDeleteDetectorResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class BatchDeleteDetectorCommand extends $Command<
|
|
24
|
+
BatchDeleteDetectorCommandInput,
|
|
25
|
+
BatchDeleteDetectorCommandOutput,
|
|
26
|
+
IoTEventsDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: BatchDeleteDetectorCommandInput;
|
|
29
|
+
constructor(input: BatchDeleteDetectorCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<BatchDeleteDetectorCommandInput, BatchDeleteDetectorCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
BatchDisableAlarmRequest,
|
|
15
|
+
BatchDisableAlarmResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface BatchDisableAlarmCommandInput
|
|
18
|
+
extends BatchDisableAlarmRequest {}
|
|
19
|
+
export interface BatchDisableAlarmCommandOutput
|
|
20
|
+
extends BatchDisableAlarmResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class BatchDisableAlarmCommand extends $Command<
|
|
24
|
+
BatchDisableAlarmCommandInput,
|
|
25
|
+
BatchDisableAlarmCommandOutput,
|
|
26
|
+
IoTEventsDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: BatchDisableAlarmCommandInput;
|
|
29
|
+
constructor(input: BatchDisableAlarmCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<BatchDisableAlarmCommandInput, BatchDisableAlarmCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
BatchEnableAlarmRequest,
|
|
15
|
+
BatchEnableAlarmResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface BatchEnableAlarmCommandInput extends BatchEnableAlarmRequest {}
|
|
18
|
+
export interface BatchEnableAlarmCommandOutput
|
|
19
|
+
extends BatchEnableAlarmResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class BatchEnableAlarmCommand extends $Command<
|
|
23
|
+
BatchEnableAlarmCommandInput,
|
|
24
|
+
BatchEnableAlarmCommandOutput,
|
|
25
|
+
IoTEventsDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: BatchEnableAlarmCommandInput;
|
|
28
|
+
constructor(input: BatchEnableAlarmCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<BatchEnableAlarmCommandInput, BatchEnableAlarmCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
BatchPutMessageRequest,
|
|
15
|
+
BatchPutMessageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface BatchPutMessageCommandInput extends BatchPutMessageRequest {}
|
|
18
|
+
export interface BatchPutMessageCommandOutput
|
|
19
|
+
extends BatchPutMessageResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class BatchPutMessageCommand extends $Command<
|
|
23
|
+
BatchPutMessageCommandInput,
|
|
24
|
+
BatchPutMessageCommandOutput,
|
|
25
|
+
IoTEventsDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: BatchPutMessageCommandInput;
|
|
28
|
+
constructor(input: BatchPutMessageCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<BatchPutMessageCommandInput, BatchPutMessageCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
BatchResetAlarmRequest,
|
|
15
|
+
BatchResetAlarmResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface BatchResetAlarmCommandInput extends BatchResetAlarmRequest {}
|
|
18
|
+
export interface BatchResetAlarmCommandOutput
|
|
19
|
+
extends BatchResetAlarmResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class BatchResetAlarmCommand extends $Command<
|
|
23
|
+
BatchResetAlarmCommandInput,
|
|
24
|
+
BatchResetAlarmCommandOutput,
|
|
25
|
+
IoTEventsDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: BatchResetAlarmCommandInput;
|
|
28
|
+
constructor(input: BatchResetAlarmCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<BatchResetAlarmCommandInput, BatchResetAlarmCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
BatchSnoozeAlarmRequest,
|
|
15
|
+
BatchSnoozeAlarmResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface BatchSnoozeAlarmCommandInput extends BatchSnoozeAlarmRequest {}
|
|
18
|
+
export interface BatchSnoozeAlarmCommandOutput
|
|
19
|
+
extends BatchSnoozeAlarmResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class BatchSnoozeAlarmCommand extends $Command<
|
|
23
|
+
BatchSnoozeAlarmCommandInput,
|
|
24
|
+
BatchSnoozeAlarmCommandOutput,
|
|
25
|
+
IoTEventsDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: BatchSnoozeAlarmCommandInput;
|
|
28
|
+
constructor(input: BatchSnoozeAlarmCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<BatchSnoozeAlarmCommandInput, BatchSnoozeAlarmCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
BatchUpdateDetectorRequest,
|
|
15
|
+
BatchUpdateDetectorResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface BatchUpdateDetectorCommandInput
|
|
18
|
+
extends BatchUpdateDetectorRequest {}
|
|
19
|
+
export interface BatchUpdateDetectorCommandOutput
|
|
20
|
+
extends BatchUpdateDetectorResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class BatchUpdateDetectorCommand extends $Command<
|
|
24
|
+
BatchUpdateDetectorCommandInput,
|
|
25
|
+
BatchUpdateDetectorCommandOutput,
|
|
26
|
+
IoTEventsDataClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: BatchUpdateDetectorCommandInput;
|
|
29
|
+
constructor(input: BatchUpdateDetectorCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<BatchUpdateDetectorCommandInput, BatchUpdateDetectorCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAlarmRequest,
|
|
15
|
+
DescribeAlarmResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAlarmCommandInput extends DescribeAlarmRequest {}
|
|
18
|
+
export interface DescribeAlarmCommandOutput
|
|
19
|
+
extends DescribeAlarmResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeAlarmCommand extends $Command<
|
|
23
|
+
DescribeAlarmCommandInput,
|
|
24
|
+
DescribeAlarmCommandOutput,
|
|
25
|
+
IoTEventsDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeAlarmCommandInput;
|
|
28
|
+
constructor(input: DescribeAlarmCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeAlarmCommandInput, DescribeAlarmCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeDetectorRequest,
|
|
15
|
+
DescribeDetectorResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeDetectorCommandInput extends DescribeDetectorRequest {}
|
|
18
|
+
export interface DescribeDetectorCommandOutput
|
|
19
|
+
extends DescribeDetectorResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeDetectorCommand extends $Command<
|
|
23
|
+
DescribeDetectorCommandInput,
|
|
24
|
+
DescribeDetectorCommandOutput,
|
|
25
|
+
IoTEventsDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeDetectorCommandInput;
|
|
28
|
+
constructor(input: DescribeDetectorCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeDetectorCommandInput, DescribeDetectorCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import { ListAlarmsRequest, ListAlarmsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListAlarmsCommandInput extends ListAlarmsRequest {}
|
|
15
|
+
export interface ListAlarmsCommandOutput
|
|
16
|
+
extends ListAlarmsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListAlarmsCommand extends $Command<
|
|
20
|
+
ListAlarmsCommandInput,
|
|
21
|
+
ListAlarmsCommandOutput,
|
|
22
|
+
IoTEventsDataClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListAlarmsCommandInput;
|
|
25
|
+
constructor(input: ListAlarmsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListAlarmsCommandInput, ListAlarmsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
IoTEventsDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsDataClient";
|
|
13
|
+
import {
|
|
14
|
+
ListDetectorsRequest,
|
|
15
|
+
ListDetectorsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListDetectorsCommandInput extends ListDetectorsRequest {}
|
|
18
|
+
export interface ListDetectorsCommandOutput
|
|
19
|
+
extends ListDetectorsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListDetectorsCommand extends $Command<
|
|
23
|
+
ListDetectorsCommandInput,
|
|
24
|
+
ListDetectorsCommandOutput,
|
|
25
|
+
IoTEventsDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListDetectorsCommandInput;
|
|
28
|
+
constructor(input: ListDetectorsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListDetectorsCommandInput, ListDetectorsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export * from "./BatchAcknowledgeAlarmCommand";
|
|
2
|
-
export * from "./BatchDeleteDetectorCommand";
|
|
3
|
-
export * from "./BatchDisableAlarmCommand";
|
|
4
|
-
export * from "./BatchEnableAlarmCommand";
|
|
5
|
-
export * from "./BatchPutMessageCommand";
|
|
6
|
-
export * from "./BatchResetAlarmCommand";
|
|
7
|
-
export * from "./BatchSnoozeAlarmCommand";
|
|
8
|
-
export * from "./BatchUpdateDetectorCommand";
|
|
9
|
-
export * from "./DescribeAlarmCommand";
|
|
10
|
-
export * from "./DescribeDetectorCommand";
|
|
11
|
-
export * from "./ListAlarmsCommand";
|
|
12
|
-
export * from "./ListDetectorsCommand";
|
|
1
|
+
export * from "./BatchAcknowledgeAlarmCommand";
|
|
2
|
+
export * from "./BatchDeleteDetectorCommand";
|
|
3
|
+
export * from "./BatchDisableAlarmCommand";
|
|
4
|
+
export * from "./BatchEnableAlarmCommand";
|
|
5
|
+
export * from "./BatchPutMessageCommand";
|
|
6
|
+
export * from "./BatchResetAlarmCommand";
|
|
7
|
+
export * from "./BatchSnoozeAlarmCommand";
|
|
8
|
+
export * from "./BatchUpdateDetectorCommand";
|
|
9
|
+
export * from "./DescribeAlarmCommand";
|
|
10
|
+
export * from "./DescribeDetectorCommand";
|
|
11
|
+
export * from "./ListAlarmsCommand";
|
|
12
|
+
export * from "./ListDetectorsCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|