@aws-sdk/client-iot-events 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/IoTEvents.d.ts +472 -135
- package/dist-types/ts3.4/IoTEventsClient.d.ts +285 -99
- package/dist-types/ts3.4/commands/CreateAlarmModelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDetectorModelCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateInputCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteAlarmModelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteDetectorModelCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteInputCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeAlarmModelCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeDetectorModelAnalysisCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeDetectorModelCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeInputCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetDetectorModelAnalysisResultsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAlarmModelVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAlarmModelsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDetectorModelVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDetectorModelsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListInputRoutingsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListInputsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutLoggingOptionsCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/StartDetectorModelAnalysisCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateAlarmModelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDetectorModelCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateInputCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +26 -26
- 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/IoTEventsServiceException.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 +1346 -1245
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
- 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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteDetectorModelRequest,
|
|
15
|
+
DeleteDetectorModelResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteDetectorModelCommandInput
|
|
18
|
+
extends DeleteDetectorModelRequest {}
|
|
19
|
+
export interface DeleteDetectorModelCommandOutput
|
|
20
|
+
extends DeleteDetectorModelResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteDetectorModelCommand extends $Command<
|
|
24
|
+
DeleteDetectorModelCommandInput,
|
|
25
|
+
DeleteDetectorModelCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteDetectorModelCommandInput;
|
|
29
|
+
constructor(input: DeleteDetectorModelCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteDetectorModelCommandInput, DeleteDetectorModelCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import { DeleteInputRequest, DeleteInputResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteInputCommandInput extends DeleteInputRequest {}
|
|
15
|
+
export interface DeleteInputCommandOutput
|
|
16
|
+
extends DeleteInputResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteInputCommand extends $Command<
|
|
20
|
+
DeleteInputCommandInput,
|
|
21
|
+
DeleteInputCommandOutput,
|
|
22
|
+
IoTEventsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteInputCommandInput;
|
|
25
|
+
constructor(input: DeleteInputCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteInputCommandInput, DeleteInputCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAlarmModelRequest,
|
|
15
|
+
DescribeAlarmModelResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAlarmModelCommandInput
|
|
18
|
+
extends DescribeAlarmModelRequest {}
|
|
19
|
+
export interface DescribeAlarmModelCommandOutput
|
|
20
|
+
extends DescribeAlarmModelResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeAlarmModelCommand extends $Command<
|
|
24
|
+
DescribeAlarmModelCommandInput,
|
|
25
|
+
DescribeAlarmModelCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAlarmModelCommandInput;
|
|
29
|
+
constructor(input: DescribeAlarmModelCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeAlarmModelCommandInput, DescribeAlarmModelCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeDetectorModelAnalysisRequest,
|
|
15
|
+
DescribeDetectorModelAnalysisResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeDetectorModelAnalysisCommandInput
|
|
18
|
+
extends DescribeDetectorModelAnalysisRequest {}
|
|
19
|
+
export interface DescribeDetectorModelAnalysisCommandOutput
|
|
20
|
+
extends DescribeDetectorModelAnalysisResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeDetectorModelAnalysisCommand extends $Command<
|
|
24
|
+
DescribeDetectorModelAnalysisCommandInput,
|
|
25
|
+
DescribeDetectorModelAnalysisCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeDetectorModelAnalysisCommandInput;
|
|
29
|
+
constructor(input: DescribeDetectorModelAnalysisCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeDetectorModelAnalysisCommandInput,
|
|
37
|
+
DescribeDetectorModelAnalysisCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeDetectorModelRequest,
|
|
15
|
+
DescribeDetectorModelResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeDetectorModelCommandInput
|
|
18
|
+
extends DescribeDetectorModelRequest {}
|
|
19
|
+
export interface DescribeDetectorModelCommandOutput
|
|
20
|
+
extends DescribeDetectorModelResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeDetectorModelCommand extends $Command<
|
|
24
|
+
DescribeDetectorModelCommandInput,
|
|
25
|
+
DescribeDetectorModelCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeDetectorModelCommandInput;
|
|
29
|
+
constructor(input: DescribeDetectorModelCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeDetectorModelCommandInput,
|
|
37
|
+
DescribeDetectorModelCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeInputRequest,
|
|
15
|
+
DescribeInputResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeInputCommandInput extends DescribeInputRequest {}
|
|
18
|
+
export interface DescribeInputCommandOutput
|
|
19
|
+
extends DescribeInputResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeInputCommand extends $Command<
|
|
23
|
+
DescribeInputCommandInput,
|
|
24
|
+
DescribeInputCommandOutput,
|
|
25
|
+
IoTEventsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeInputCommandInput;
|
|
28
|
+
constructor(input: DescribeInputCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeInputCommandInput, DescribeInputCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeLoggingOptionsRequest,
|
|
15
|
+
DescribeLoggingOptionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLoggingOptionsCommandInput
|
|
18
|
+
extends DescribeLoggingOptionsRequest {}
|
|
19
|
+
export interface DescribeLoggingOptionsCommandOutput
|
|
20
|
+
extends DescribeLoggingOptionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLoggingOptionsCommand extends $Command<
|
|
24
|
+
DescribeLoggingOptionsCommandInput,
|
|
25
|
+
DescribeLoggingOptionsCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLoggingOptionsCommandInput;
|
|
29
|
+
constructor(input: DescribeLoggingOptionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLoggingOptionsCommandInput,
|
|
37
|
+
DescribeLoggingOptionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
GetDetectorModelAnalysisResultsRequest,
|
|
15
|
+
GetDetectorModelAnalysisResultsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetDetectorModelAnalysisResultsCommandInput
|
|
18
|
+
extends GetDetectorModelAnalysisResultsRequest {}
|
|
19
|
+
export interface GetDetectorModelAnalysisResultsCommandOutput
|
|
20
|
+
extends GetDetectorModelAnalysisResultsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetDetectorModelAnalysisResultsCommand extends $Command<
|
|
24
|
+
GetDetectorModelAnalysisResultsCommandInput,
|
|
25
|
+
GetDetectorModelAnalysisResultsCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetDetectorModelAnalysisResultsCommandInput;
|
|
29
|
+
constructor(input: GetDetectorModelAnalysisResultsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetDetectorModelAnalysisResultsCommandInput,
|
|
37
|
+
GetDetectorModelAnalysisResultsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAlarmModelVersionsRequest,
|
|
15
|
+
ListAlarmModelVersionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAlarmModelVersionsCommandInput
|
|
18
|
+
extends ListAlarmModelVersionsRequest {}
|
|
19
|
+
export interface ListAlarmModelVersionsCommandOutput
|
|
20
|
+
extends ListAlarmModelVersionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListAlarmModelVersionsCommand extends $Command<
|
|
24
|
+
ListAlarmModelVersionsCommandInput,
|
|
25
|
+
ListAlarmModelVersionsCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListAlarmModelVersionsCommandInput;
|
|
29
|
+
constructor(input: ListAlarmModelVersionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListAlarmModelVersionsCommandInput,
|
|
37
|
+
ListAlarmModelVersionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAlarmModelsRequest,
|
|
15
|
+
ListAlarmModelsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAlarmModelsCommandInput extends ListAlarmModelsRequest {}
|
|
18
|
+
export interface ListAlarmModelsCommandOutput
|
|
19
|
+
extends ListAlarmModelsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListAlarmModelsCommand extends $Command<
|
|
23
|
+
ListAlarmModelsCommandInput,
|
|
24
|
+
ListAlarmModelsCommandOutput,
|
|
25
|
+
IoTEventsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAlarmModelsCommandInput;
|
|
28
|
+
constructor(input: ListAlarmModelsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListAlarmModelsCommandInput, ListAlarmModelsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
ListDetectorModelVersionsRequest,
|
|
15
|
+
ListDetectorModelVersionsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListDetectorModelVersionsCommandInput
|
|
18
|
+
extends ListDetectorModelVersionsRequest {}
|
|
19
|
+
export interface ListDetectorModelVersionsCommandOutput
|
|
20
|
+
extends ListDetectorModelVersionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListDetectorModelVersionsCommand extends $Command<
|
|
24
|
+
ListDetectorModelVersionsCommandInput,
|
|
25
|
+
ListDetectorModelVersionsCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListDetectorModelVersionsCommandInput;
|
|
29
|
+
constructor(input: ListDetectorModelVersionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListDetectorModelVersionsCommandInput,
|
|
37
|
+
ListDetectorModelVersionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|