@aws-sdk/client-iot-events 3.168.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 +16 -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
|
+
ListDetectorModelsRequest,
|
|
15
|
+
ListDetectorModelsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListDetectorModelsCommandInput
|
|
18
|
+
extends ListDetectorModelsRequest {}
|
|
19
|
+
export interface ListDetectorModelsCommandOutput
|
|
20
|
+
extends ListDetectorModelsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListDetectorModelsCommand extends $Command<
|
|
24
|
+
ListDetectorModelsCommandInput,
|
|
25
|
+
ListDetectorModelsCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListDetectorModelsCommandInput;
|
|
29
|
+
constructor(input: ListDetectorModelsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListDetectorModelsCommandInput, ListDetectorModelsCommandOutput>;
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
ListInputRoutingsRequest,
|
|
15
|
+
ListInputRoutingsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListInputRoutingsCommandInput
|
|
18
|
+
extends ListInputRoutingsRequest {}
|
|
19
|
+
export interface ListInputRoutingsCommandOutput
|
|
20
|
+
extends ListInputRoutingsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListInputRoutingsCommand extends $Command<
|
|
24
|
+
ListInputRoutingsCommandInput,
|
|
25
|
+
ListInputRoutingsCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListInputRoutingsCommandInput;
|
|
29
|
+
constructor(input: ListInputRoutingsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListInputRoutingsCommandInput, ListInputRoutingsCommandOutput>;
|
|
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 { ListInputsRequest, ListInputsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListInputsCommandInput extends ListInputsRequest {}
|
|
15
|
+
export interface ListInputsCommandOutput
|
|
16
|
+
extends ListInputsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListInputsCommand extends $Command<
|
|
20
|
+
ListInputsCommandInput,
|
|
21
|
+
ListInputsCommandOutput,
|
|
22
|
+
IoTEventsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListInputsCommandInput;
|
|
25
|
+
constructor(input: ListInputsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListInputsCommandInput, ListInputsCommandOutput>;
|
|
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
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,33 @@
|
|
|
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 { PutLoggingOptionsRequest } from "../models/models_0";
|
|
14
|
+
export interface PutLoggingOptionsCommandInput
|
|
15
|
+
extends PutLoggingOptionsRequest {}
|
|
16
|
+
export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class PutLoggingOptionsCommand extends $Command<
|
|
19
|
+
PutLoggingOptionsCommandInput,
|
|
20
|
+
PutLoggingOptionsCommandOutput,
|
|
21
|
+
IoTEventsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: PutLoggingOptionsCommandInput;
|
|
24
|
+
constructor(input: PutLoggingOptionsCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<PutLoggingOptionsCommandInput, PutLoggingOptionsCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -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
|
+
StartDetectorModelAnalysisRequest,
|
|
15
|
+
StartDetectorModelAnalysisResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface StartDetectorModelAnalysisCommandInput
|
|
18
|
+
extends StartDetectorModelAnalysisRequest {}
|
|
19
|
+
export interface StartDetectorModelAnalysisCommandOutput
|
|
20
|
+
extends StartDetectorModelAnalysisResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartDetectorModelAnalysisCommand extends $Command<
|
|
24
|
+
StartDetectorModelAnalysisCommandInput,
|
|
25
|
+
StartDetectorModelAnalysisCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartDetectorModelAnalysisCommandInput;
|
|
29
|
+
constructor(input: StartDetectorModelAnalysisCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
StartDetectorModelAnalysisCommandInput,
|
|
37
|
+
StartDetectorModelAnalysisCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
IoTEventsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
constructor(input: TagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UntagResourceCommand extends $Command<
|
|
23
|
+
UntagResourceCommandInput,
|
|
24
|
+
UntagResourceCommandOutput,
|
|
25
|
+
IoTEventsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UntagResourceCommandInput;
|
|
28
|
+
constructor(input: UntagResourceCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateAlarmModelRequest,
|
|
15
|
+
UpdateAlarmModelResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateAlarmModelCommandInput extends UpdateAlarmModelRequest {}
|
|
18
|
+
export interface UpdateAlarmModelCommandOutput
|
|
19
|
+
extends UpdateAlarmModelResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UpdateAlarmModelCommand extends $Command<
|
|
23
|
+
UpdateAlarmModelCommandInput,
|
|
24
|
+
UpdateAlarmModelCommandOutput,
|
|
25
|
+
IoTEventsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateAlarmModelCommandInput;
|
|
28
|
+
constructor(input: UpdateAlarmModelCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateAlarmModelCommandInput, UpdateAlarmModelCommandOutput>;
|
|
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
|
+
IoTEventsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTEventsClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateDetectorModelRequest,
|
|
15
|
+
UpdateDetectorModelResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateDetectorModelCommandInput
|
|
18
|
+
extends UpdateDetectorModelRequest {}
|
|
19
|
+
export interface UpdateDetectorModelCommandOutput
|
|
20
|
+
extends UpdateDetectorModelResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateDetectorModelCommand extends $Command<
|
|
24
|
+
UpdateDetectorModelCommandInput,
|
|
25
|
+
UpdateDetectorModelCommandOutput,
|
|
26
|
+
IoTEventsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateDetectorModelCommandInput;
|
|
29
|
+
constructor(input: UpdateDetectorModelCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateDetectorModelCommandInput, UpdateDetectorModelCommandOutput>;
|
|
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 { UpdateInputRequest, UpdateInputResponse } from "../models/models_0";
|
|
14
|
+
export interface UpdateInputCommandInput extends UpdateInputRequest {}
|
|
15
|
+
export interface UpdateInputCommandOutput
|
|
16
|
+
extends UpdateInputResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateInputCommand extends $Command<
|
|
20
|
+
UpdateInputCommandInput,
|
|
21
|
+
UpdateInputCommandOutput,
|
|
22
|
+
IoTEventsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateInputCommandInput;
|
|
25
|
+
constructor(input: UpdateInputCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IoTEventsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateInputCommandInput, UpdateInputCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|