@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.
Files changed (27) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/IoTEventsData.d.ts +220 -65
  3. package/dist-types/ts3.4/IoTEventsDataClient.d.ts +202 -85
  4. package/dist-types/ts3.4/commands/BatchAcknowledgeAlarmCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/BatchDeleteDetectorCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/BatchDisableAlarmCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/BatchEnableAlarmCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/BatchPutMessageCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/BatchResetAlarmCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/BatchSnoozeAlarmCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/BatchUpdateDetectorCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/DescribeAlarmCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/DescribeDetectorCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/ListAlarmsCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/ListDetectorsCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +12 -12
  17. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  18. package/dist-types/ts3.4/index.d.ts +5 -5
  19. package/dist-types/ts3.4/models/IoTEventsDataServiceException.d.ts +8 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +679 -626
  22. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
  23. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  24. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  25. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  26. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  27. package/package.json +34 -34
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { BatchDeleteDetectorRequest, BatchDeleteDetectorResponse } from "../models/models_0";
5
- export interface BatchDeleteDetectorCommandInput extends BatchDeleteDetectorRequest {
6
- }
7
- export interface BatchDeleteDetectorCommandOutput extends BatchDeleteDetectorResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class BatchDeleteDetectorCommand extends $Command<BatchDeleteDetectorCommandInput, BatchDeleteDetectorCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: BatchDeleteDetectorCommandInput;
12
- constructor(input: BatchDeleteDetectorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDeleteDetectorCommandInput, BatchDeleteDetectorCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { BatchDisableAlarmRequest, BatchDisableAlarmResponse } from "../models/models_0";
5
- export interface BatchDisableAlarmCommandInput extends BatchDisableAlarmRequest {
6
- }
7
- export interface BatchDisableAlarmCommandOutput extends BatchDisableAlarmResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class BatchDisableAlarmCommand extends $Command<BatchDisableAlarmCommandInput, BatchDisableAlarmCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: BatchDisableAlarmCommandInput;
12
- constructor(input: BatchDisableAlarmCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDisableAlarmCommandInput, BatchDisableAlarmCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { BatchEnableAlarmRequest, BatchEnableAlarmResponse } from "../models/models_0";
5
- export interface BatchEnableAlarmCommandInput extends BatchEnableAlarmRequest {
6
- }
7
- export interface BatchEnableAlarmCommandOutput extends BatchEnableAlarmResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class BatchEnableAlarmCommand extends $Command<BatchEnableAlarmCommandInput, BatchEnableAlarmCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: BatchEnableAlarmCommandInput;
12
- constructor(input: BatchEnableAlarmCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchEnableAlarmCommandInput, BatchEnableAlarmCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { BatchPutMessageRequest, BatchPutMessageResponse } from "../models/models_0";
5
- export interface BatchPutMessageCommandInput extends BatchPutMessageRequest {
6
- }
7
- export interface BatchPutMessageCommandOutput extends BatchPutMessageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class BatchPutMessageCommand extends $Command<BatchPutMessageCommandInput, BatchPutMessageCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: BatchPutMessageCommandInput;
12
- constructor(input: BatchPutMessageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchPutMessageCommandInput, BatchPutMessageCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { BatchResetAlarmRequest, BatchResetAlarmResponse } from "../models/models_0";
5
- export interface BatchResetAlarmCommandInput extends BatchResetAlarmRequest {
6
- }
7
- export interface BatchResetAlarmCommandOutput extends BatchResetAlarmResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class BatchResetAlarmCommand extends $Command<BatchResetAlarmCommandInput, BatchResetAlarmCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: BatchResetAlarmCommandInput;
12
- constructor(input: BatchResetAlarmCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchResetAlarmCommandInput, BatchResetAlarmCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { BatchSnoozeAlarmRequest, BatchSnoozeAlarmResponse } from "../models/models_0";
5
- export interface BatchSnoozeAlarmCommandInput extends BatchSnoozeAlarmRequest {
6
- }
7
- export interface BatchSnoozeAlarmCommandOutput extends BatchSnoozeAlarmResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class BatchSnoozeAlarmCommand extends $Command<BatchSnoozeAlarmCommandInput, BatchSnoozeAlarmCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: BatchSnoozeAlarmCommandInput;
12
- constructor(input: BatchSnoozeAlarmCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchSnoozeAlarmCommandInput, BatchSnoozeAlarmCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { BatchUpdateDetectorRequest, BatchUpdateDetectorResponse } from "../models/models_0";
5
- export interface BatchUpdateDetectorCommandInput extends BatchUpdateDetectorRequest {
6
- }
7
- export interface BatchUpdateDetectorCommandOutput extends BatchUpdateDetectorResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class BatchUpdateDetectorCommand extends $Command<BatchUpdateDetectorCommandInput, BatchUpdateDetectorCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: BatchUpdateDetectorCommandInput;
12
- constructor(input: BatchUpdateDetectorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchUpdateDetectorCommandInput, BatchUpdateDetectorCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { DescribeAlarmRequest, DescribeAlarmResponse } from "../models/models_0";
5
- export interface DescribeAlarmCommandInput extends DescribeAlarmRequest {
6
- }
7
- export interface DescribeAlarmCommandOutput extends DescribeAlarmResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeAlarmCommand extends $Command<DescribeAlarmCommandInput, DescribeAlarmCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: DescribeAlarmCommandInput;
12
- constructor(input: DescribeAlarmCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAlarmCommandInput, DescribeAlarmCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { DescribeDetectorRequest, DescribeDetectorResponse } from "../models/models_0";
5
- export interface DescribeDetectorCommandInput extends DescribeDetectorRequest {
6
- }
7
- export interface DescribeDetectorCommandOutput extends DescribeDetectorResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeDetectorCommand extends $Command<DescribeDetectorCommandInput, DescribeDetectorCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: DescribeDetectorCommandInput;
12
- constructor(input: DescribeDetectorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDetectorCommandInput, DescribeDetectorCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { ListAlarmsRequest, ListAlarmsResponse } from "../models/models_0";
5
- export interface ListAlarmsCommandInput extends ListAlarmsRequest {
6
- }
7
- export interface ListAlarmsCommandOutput extends ListAlarmsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAlarmsCommand extends $Command<ListAlarmsCommandInput, ListAlarmsCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: ListAlarmsCommandInput;
12
- constructor(input: ListAlarmsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAlarmsCommandInput, ListAlarmsCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient";
4
- import { ListDetectorsRequest, ListDetectorsResponse } from "../models/models_0";
5
- export interface ListDetectorsCommandInput extends ListDetectorsRequest {
6
- }
7
- export interface ListDetectorsCommandOutput extends ListDetectorsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDetectorsCommand extends $Command<ListDetectorsCommandInput, ListDetectorsCommandOutput, IoTEventsDataClientResolvedConfig> {
11
- readonly input: ListDetectorsCommandInput;
12
- constructor(input: ListDetectorsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDetectorsCommandInput, ListDetectorsCommandOutput>;
15
- private serialize;
16
- private deserialize;
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;