@aws-sdk/client-iot-events 3.529.1 → 3.535.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/IoTEvents.d.ts +5 -1
- package/dist-types/IoTEventsClient.d.ts +1 -1
- package/dist-types/commands/CreateAlarmModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateDetectorModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateInputCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAlarmModelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDetectorModelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteInputCommand.d.ts +2 -1
- package/dist-types/commands/DescribeAlarmModelCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDetectorModelCommand.d.ts +2 -1
- package/dist-types/commands/DescribeInputCommand.d.ts +2 -1
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +2 -1
- package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +2 -1
- package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ListAlarmModelsCommand.d.ts +2 -1
- package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ListDetectorModelsCommand.d.ts +2 -1
- package/dist-types/commands/ListInputRoutingsCommand.d.ts +2 -1
- package/dist-types/commands/ListInputsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +2 -1
- package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAlarmModelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDetectorModelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateInputCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +378 -378
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/IoTEvents.d.ts +4 -0
- package/dist-types/ts3.4/commands/CreateAlarmModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDetectorModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateInputCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteAlarmModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDetectorModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteInputCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeAlarmModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeDetectorModelAnalysisCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeDetectorModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeInputCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeLoggingOptionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDetectorModelAnalysisResultsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAlarmModelVersionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAlarmModelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDetectorModelVersionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDetectorModelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListInputRoutingsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListInputsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutLoggingOptionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartDetectorModelAnalysisCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateAlarmModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateDetectorModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateInputCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
11
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
-
base64Encoder:
|
|
14
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
15
15
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
utf8Encoder:
|
|
16
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
17
17
|
disableHostPrefix: boolean;
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -5,7 +5,7 @@ import { IoTEventsClientConfig } from "./IoTEventsClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder:
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|
|
@@ -235,6 +235,7 @@ export interface IoTEvents {
|
|
|
235
235
|
options: __HttpHandlerOptions,
|
|
236
236
|
cb: (err: any, data?: DescribeInputCommandOutput) => void
|
|
237
237
|
): void;
|
|
238
|
+
describeLoggingOptions(): Promise<DescribeLoggingOptionsCommandOutput>;
|
|
238
239
|
describeLoggingOptions(
|
|
239
240
|
args: DescribeLoggingOptionsCommandInput,
|
|
240
241
|
options?: __HttpHandlerOptions
|
|
@@ -261,6 +262,7 @@ export interface IoTEvents {
|
|
|
261
262
|
options: __HttpHandlerOptions,
|
|
262
263
|
cb: (err: any, data?: GetDetectorModelAnalysisResultsCommandOutput) => void
|
|
263
264
|
): void;
|
|
265
|
+
listAlarmModels(): Promise<ListAlarmModelsCommandOutput>;
|
|
264
266
|
listAlarmModels(
|
|
265
267
|
args: ListAlarmModelsCommandInput,
|
|
266
268
|
options?: __HttpHandlerOptions
|
|
@@ -287,6 +289,7 @@ export interface IoTEvents {
|
|
|
287
289
|
options: __HttpHandlerOptions,
|
|
288
290
|
cb: (err: any, data?: ListAlarmModelVersionsCommandOutput) => void
|
|
289
291
|
): void;
|
|
292
|
+
listDetectorModels(): Promise<ListDetectorModelsCommandOutput>;
|
|
290
293
|
listDetectorModels(
|
|
291
294
|
args: ListDetectorModelsCommandInput,
|
|
292
295
|
options?: __HttpHandlerOptions
|
|
@@ -326,6 +329,7 @@ export interface IoTEvents {
|
|
|
326
329
|
options: __HttpHandlerOptions,
|
|
327
330
|
cb: (err: any, data?: ListInputRoutingsCommandOutput) => void
|
|
328
331
|
): void;
|
|
332
|
+
listInputs(): Promise<ListInputsCommandOutput>;
|
|
329
333
|
listInputs(
|
|
330
334
|
args: ListInputsCommandInput,
|
|
331
335
|
options?: __HttpHandlerOptions
|
|
@@ -24,6 +24,15 @@ declare const CreateAlarmModelCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: CreateAlarmModelCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CreateAlarmModelCommandInput,
|
|
31
|
+
CreateAlarmModelCommandOutput,
|
|
32
|
+
IoTEventsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class CreateAlarmModelCommand extends CreateAlarmModelCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateDetectorModelCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateDetectorModelCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateDetectorModelCommandInput,
|
|
32
|
+
CreateDetectorModelCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateDetectorModelCommand extends CreateDetectorModelCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const CreateInputCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CreateInputCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CreateInputCommandInput,
|
|
28
|
+
CreateInputCommandOutput,
|
|
29
|
+
IoTEventsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CreateInputCommand extends CreateInputCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const DeleteAlarmModelCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DeleteAlarmModelCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DeleteAlarmModelCommandInput,
|
|
31
|
+
DeleteAlarmModelCommandOutput,
|
|
32
|
+
IoTEventsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DeleteAlarmModelCommand extends DeleteAlarmModelCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DeleteDetectorModelCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteDetectorModelCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteDetectorModelCommandInput,
|
|
32
|
+
DeleteDetectorModelCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DeleteDetectorModelCommand extends DeleteDetectorModelCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DeleteInputCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteInputCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteInputCommandInput,
|
|
28
|
+
DeleteInputCommandOutput,
|
|
29
|
+
IoTEventsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DeleteInputCommand extends DeleteInputCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeAlarmModelCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeAlarmModelCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeAlarmModelCommandInput,
|
|
32
|
+
DescribeAlarmModelCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeAlarmModelCommand extends DescribeAlarmModelCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeDetectorModelAnalysisCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeDetectorModelAnalysisCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeDetectorModelAnalysisCommandInput,
|
|
32
|
+
DescribeDetectorModelAnalysisCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeDetectorModelAnalysisCommand extends DescribeDetectorModelAnalysisCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeDetectorModelCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeDetectorModelCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeDetectorModelCommandInput,
|
|
32
|
+
DescribeDetectorModelCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeDetectorModelCommand extends DescribeDetectorModelCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const DescribeInputCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: DescribeInputCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
DescribeInputCommandInput,
|
|
31
|
+
DescribeInputCommandOutput,
|
|
32
|
+
IoTEventsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class DescribeInputCommand extends DescribeInputCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeLoggingOptionsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeLoggingOptionsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeLoggingOptionsCommandInput,
|
|
32
|
+
DescribeLoggingOptionsCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeLoggingOptionsCommand extends DescribeLoggingOptionsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetDetectorModelAnalysisResultsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetDetectorModelAnalysisResultsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetDetectorModelAnalysisResultsCommandInput,
|
|
32
|
+
GetDetectorModelAnalysisResultsCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetDetectorModelAnalysisResultsCommand extends GetDetectorModelAnalysisResultsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListAlarmModelVersionsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListAlarmModelVersionsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListAlarmModelVersionsCommandInput,
|
|
32
|
+
ListAlarmModelVersionsCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListAlarmModelVersionsCommand extends ListAlarmModelVersionsCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const ListAlarmModelsCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [ListAlarmModelsCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ListAlarmModelsCommandInput,
|
|
31
|
+
ListAlarmModelsCommandOutput,
|
|
32
|
+
IoTEventsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class ListAlarmModelsCommand extends ListAlarmModelsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListDetectorModelVersionsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListDetectorModelVersionsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListDetectorModelVersionsCommandInput,
|
|
32
|
+
ListDetectorModelVersionsCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListDetectorModelVersionsCommand extends ListDetectorModelVersionsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListDetectorModelsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListDetectorModelsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListDetectorModelsCommandInput,
|
|
32
|
+
ListDetectorModelsCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListDetectorModelsCommand extends ListDetectorModelsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListInputRoutingsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListInputRoutingsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListInputRoutingsCommandInput,
|
|
32
|
+
ListInputRoutingsCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListInputRoutingsCommand extends ListInputRoutingsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListInputsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
...[input]: [] | [ListInputsCommandInput]
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListInputsCommandInput,
|
|
28
|
+
ListInputsCommandOutput,
|
|
29
|
+
IoTEventsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListInputsCommand extends ListInputsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListTagsForResourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListTagsForResourceCommandInput,
|
|
32
|
+
ListTagsForResourceCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
|
|
@@ -20,6 +20,15 @@ declare const PutLoggingOptionsCommand_base: {
|
|
|
20
20
|
ServiceInputTypes,
|
|
21
21
|
ServiceOutputTypes
|
|
22
22
|
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: PutLoggingOptionsCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
PutLoggingOptionsCommandInput,
|
|
27
|
+
PutLoggingOptionsCommandOutput,
|
|
28
|
+
IoTEventsClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
23
32
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
33
|
};
|
|
25
34
|
export declare class PutLoggingOptionsCommand extends PutLoggingOptionsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const StartDetectorModelAnalysisCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: StartDetectorModelAnalysisCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartDetectorModelAnalysisCommandInput,
|
|
32
|
+
StartDetectorModelAnalysisCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class StartDetectorModelAnalysisCommand extends StartDetectorModelAnalysisCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const TagResourceCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: TagResourceCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
TagResourceCommandInput,
|
|
28
|
+
TagResourceCommandOutput,
|
|
29
|
+
IoTEventsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class TagResourceCommand extends TagResourceCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UntagResourceCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UntagResourceCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UntagResourceCommandInput,
|
|
31
|
+
UntagResourceCommandOutput,
|
|
32
|
+
IoTEventsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UpdateAlarmModelCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdateAlarmModelCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateAlarmModelCommandInput,
|
|
31
|
+
UpdateAlarmModelCommandOutput,
|
|
32
|
+
IoTEventsClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UpdateAlarmModelCommand extends UpdateAlarmModelCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const UpdateDetectorModelCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateDetectorModelCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateDetectorModelCommandInput,
|
|
32
|
+
UpdateDetectorModelCommandOutput,
|
|
33
|
+
IoTEventsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class UpdateDetectorModelCommand extends UpdateDetectorModelCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const UpdateInputCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: UpdateInputCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UpdateInputCommandInput,
|
|
28
|
+
UpdateInputCommandOutput,
|
|
29
|
+
IoTEventsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class UpdateInputCommand extends UpdateInputCommand_base {}
|
|
@@ -25,9 +25,9 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
25
25
|
apiVersion: string;
|
|
26
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
-
base64Encoder:
|
|
28
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
29
29
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
utf8Encoder:
|
|
30
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
31
31
|
disableHostPrefix: boolean;
|
|
32
32
|
serviceId: string;
|
|
33
33
|
logger: import("@smithy/types").Logger;
|
|
@@ -29,9 +29,9 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
29
29
|
apiVersion: string;
|
|
30
30
|
urlParser: import("@smithy/types").UrlParser;
|
|
31
31
|
base64Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
base64Encoder:
|
|
32
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
33
33
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
34
|
-
utf8Encoder:
|
|
34
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
35
35
|
disableHostPrefix: boolean;
|
|
36
36
|
serviceId: string;
|
|
37
37
|
logger: import("@smithy/types").Logger;
|
|
@@ -13,9 +13,9 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
13
13
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
14
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
15
15
|
base64Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
base64Encoder:
|
|
16
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
17
17
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
18
|
-
utf8Encoder:
|
|
18
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
19
19
|
disableHostPrefix: boolean;
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -2,7 +2,7 @@ import { IoTEventsClientConfig } from "./IoTEventsClient";
|
|
|
2
2
|
export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
3
3
|
apiVersion: string;
|
|
4
4
|
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
-
base64Encoder:
|
|
5
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
6
6
|
disableHostPrefix: boolean;
|
|
7
7
|
endpointProvider: (
|
|
8
8
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: IoTEventsClientConfig) => {
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|