@aws-sdk/client-iot-events 3.952.0 → 3.953.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-cjs/index.js +494 -338
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateAlarmModelCommand.js +2 -2
- package/dist-es/commands/CreateDetectorModelCommand.js +2 -2
- package/dist-es/commands/CreateInputCommand.js +2 -2
- package/dist-es/commands/DeleteAlarmModelCommand.js +2 -2
- package/dist-es/commands/DeleteDetectorModelCommand.js +2 -2
- package/dist-es/commands/DeleteInputCommand.js +2 -2
- package/dist-es/commands/DescribeAlarmModelCommand.js +2 -2
- package/dist-es/commands/DescribeDetectorModelAnalysisCommand.js +2 -2
- package/dist-es/commands/DescribeDetectorModelCommand.js +2 -2
- package/dist-es/commands/DescribeInputCommand.js +2 -2
- package/dist-es/commands/DescribeLoggingOptionsCommand.js +2 -2
- package/dist-es/commands/GetDetectorModelAnalysisResultsCommand.js +2 -2
- package/dist-es/commands/ListAlarmModelVersionsCommand.js +2 -2
- package/dist-es/commands/ListAlarmModelsCommand.js +2 -2
- package/dist-es/commands/ListDetectorModelVersionsCommand.js +2 -2
- package/dist-es/commands/ListDetectorModelsCommand.js +2 -2
- package/dist-es/commands/ListInputRoutingsCommand.js +2 -2
- package/dist-es/commands/ListInputsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutLoggingOptionsCommand.js +2 -2
- package/dist-es/commands/StartDetectorModelAnalysisCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAlarmModelCommand.js +2 -2
- package/dist-es/commands/UpdateDetectorModelCommand.js +2 -2
- package/dist-es/commands/UpdateInputCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +294 -287
- package/dist-types/IoTEventsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +150 -172
- package/dist-types/ts3.4/IoTEventsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +149 -172
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.iotevents",
|
|
32
|
+
version: "2018-07-27",
|
|
33
|
+
serviceTarget: "IotColumboService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "IoT Events",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAlarmModel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAlarmModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAlarmModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAlarmModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "CreateAlarmModel", {})
|
|
13
13
|
.n("IoTEventsClient", "CreateAlarmModelCommand")
|
|
14
|
-
.sc(CreateAlarmModel)
|
|
14
|
+
.sc(CreateAlarmModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDetectorModel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDetectorModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDetectorModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDetectorModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "CreateDetectorModel", {})
|
|
13
13
|
.n("IoTEventsClient", "CreateDetectorModelCommand")
|
|
14
|
-
.sc(CreateDetectorModel)
|
|
14
|
+
.sc(CreateDetectorModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateInput } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateInput$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateInputCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateInputCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "CreateInput", {})
|
|
13
13
|
.n("IoTEventsClient", "CreateInputCommand")
|
|
14
|
-
.sc(CreateInput)
|
|
14
|
+
.sc(CreateInput$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAlarmModel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAlarmModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAlarmModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAlarmModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "DeleteAlarmModel", {})
|
|
13
13
|
.n("IoTEventsClient", "DeleteAlarmModelCommand")
|
|
14
|
-
.sc(DeleteAlarmModel)
|
|
14
|
+
.sc(DeleteAlarmModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDetectorModel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDetectorModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDetectorModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDetectorModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "DeleteDetectorModel", {})
|
|
13
13
|
.n("IoTEventsClient", "DeleteDetectorModelCommand")
|
|
14
|
-
.sc(DeleteDetectorModel)
|
|
14
|
+
.sc(DeleteDetectorModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteInput } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteInput$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteInputCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteInputCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "DeleteInput", {})
|
|
13
13
|
.n("IoTEventsClient", "DeleteInputCommand")
|
|
14
|
-
.sc(DeleteInput)
|
|
14
|
+
.sc(DeleteInput$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAlarmModel } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAlarmModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAlarmModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAlarmModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "DescribeAlarmModel", {})
|
|
13
13
|
.n("IoTEventsClient", "DescribeAlarmModelCommand")
|
|
14
|
-
.sc(DescribeAlarmModel)
|
|
14
|
+
.sc(DescribeAlarmModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeDetectorModelAnalysis } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDetectorModelAnalysis$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDetectorModelAnalysisCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDetectorModelAnalysisCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "DescribeDetectorModelAnalysis", {})
|
|
13
13
|
.n("IoTEventsClient", "DescribeDetectorModelAnalysisCommand")
|
|
14
|
-
.sc(DescribeDetectorModelAnalysis)
|
|
14
|
+
.sc(DescribeDetectorModelAnalysis$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeDetectorModel } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDetectorModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDetectorModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDetectorModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "DescribeDetectorModel", {})
|
|
13
13
|
.n("IoTEventsClient", "DescribeDetectorModelCommand")
|
|
14
|
-
.sc(DescribeDetectorModel)
|
|
14
|
+
.sc(DescribeDetectorModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeInput } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeInput$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeInputCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeInputCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "DescribeInput", {})
|
|
13
13
|
.n("IoTEventsClient", "DescribeInputCommand")
|
|
14
|
-
.sc(DescribeInput)
|
|
14
|
+
.sc(DescribeInput$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLoggingOptions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLoggingOptions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLoggingOptionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLoggingOptionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "DescribeLoggingOptions", {})
|
|
13
13
|
.n("IoTEventsClient", "DescribeLoggingOptionsCommand")
|
|
14
|
-
.sc(DescribeLoggingOptions)
|
|
14
|
+
.sc(DescribeLoggingOptions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDetectorModelAnalysisResults } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDetectorModelAnalysisResults$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDetectorModelAnalysisResultsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDetectorModelAnalysisResultsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "GetDetectorModelAnalysisResults", {})
|
|
13
13
|
.n("IoTEventsClient", "GetDetectorModelAnalysisResultsCommand")
|
|
14
|
-
.sc(GetDetectorModelAnalysisResults)
|
|
14
|
+
.sc(GetDetectorModelAnalysisResults$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAlarmModelVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAlarmModelVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAlarmModelVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAlarmModelVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "ListAlarmModelVersions", {})
|
|
13
13
|
.n("IoTEventsClient", "ListAlarmModelVersionsCommand")
|
|
14
|
-
.sc(ListAlarmModelVersions)
|
|
14
|
+
.sc(ListAlarmModelVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAlarmModels } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAlarmModels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAlarmModelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAlarmModelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "ListAlarmModels", {})
|
|
13
13
|
.n("IoTEventsClient", "ListAlarmModelsCommand")
|
|
14
|
-
.sc(ListAlarmModels)
|
|
14
|
+
.sc(ListAlarmModels$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDetectorModelVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDetectorModelVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDetectorModelVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDetectorModelVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "ListDetectorModelVersions", {})
|
|
13
13
|
.n("IoTEventsClient", "ListDetectorModelVersionsCommand")
|
|
14
|
-
.sc(ListDetectorModelVersions)
|
|
14
|
+
.sc(ListDetectorModelVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDetectorModels } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDetectorModels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDetectorModelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDetectorModelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "ListDetectorModels", {})
|
|
13
13
|
.n("IoTEventsClient", "ListDetectorModelsCommand")
|
|
14
|
-
.sc(ListDetectorModels)
|
|
14
|
+
.sc(ListDetectorModels$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListInputRoutings } from "../schemas/schemas_0";
|
|
4
|
+
import { ListInputRoutings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListInputRoutingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListInputRoutingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "ListInputRoutings", {})
|
|
13
13
|
.n("IoTEventsClient", "ListInputRoutingsCommand")
|
|
14
|
-
.sc(ListInputRoutings)
|
|
14
|
+
.sc(ListInputRoutings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListInputs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListInputs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListInputsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListInputsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "ListInputs", {})
|
|
13
13
|
.n("IoTEventsClient", "ListInputsCommand")
|
|
14
|
-
.sc(ListInputs)
|
|
14
|
+
.sc(ListInputs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "ListTagsForResource", {})
|
|
13
13
|
.n("IoTEventsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutLoggingOptions } from "../schemas/schemas_0";
|
|
4
|
+
import { PutLoggingOptions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutLoggingOptionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutLoggingOptionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "PutLoggingOptions", {})
|
|
13
13
|
.n("IoTEventsClient", "PutLoggingOptionsCommand")
|
|
14
|
-
.sc(PutLoggingOptions)
|
|
14
|
+
.sc(PutLoggingOptions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartDetectorModelAnalysis } from "../schemas/schemas_0";
|
|
4
|
+
import { StartDetectorModelAnalysis$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartDetectorModelAnalysisCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartDetectorModelAnalysisCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "StartDetectorModelAnalysis", {})
|
|
13
13
|
.n("IoTEventsClient", "StartDetectorModelAnalysisCommand")
|
|
14
|
-
.sc(StartDetectorModelAnalysis)
|
|
14
|
+
.sc(StartDetectorModelAnalysis$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "TagResource", {})
|
|
13
13
|
.n("IoTEventsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "UntagResource", {})
|
|
13
13
|
.n("IoTEventsClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAlarmModel } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAlarmModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAlarmModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAlarmModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "UpdateAlarmModel", {})
|
|
13
13
|
.n("IoTEventsClient", "UpdateAlarmModelCommand")
|
|
14
|
-
.sc(UpdateAlarmModel)
|
|
14
|
+
.sc(UpdateAlarmModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateDetectorModel } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDetectorModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDetectorModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDetectorModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "UpdateDetectorModel", {})
|
|
13
13
|
.n("IoTEventsClient", "UpdateDetectorModelCommand")
|
|
14
|
-
.sc(UpdateDetectorModel)
|
|
14
|
+
.sc(UpdateDetectorModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateInput } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateInput$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateInputCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateInputCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("IotColumboService", "UpdateInput", {})
|
|
13
13
|
.n("IoTEventsClient", "UpdateInputCommand")
|
|
14
|
-
.sc(UpdateInput)
|
|
14
|
+
.sc(UpdateInput$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./IoTEventsClient";
|
|
2
2
|
export * from "./IoTEvents";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export * from "./schemas/schemas_0";
|
|
4
5
|
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { IoTEventsServiceException } from "./models/IoTEventsServiceException";
|
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.iotevents",
|
|
29
|
+
version: "2018-07-27",
|
|
30
|
+
serviceTarget: "IotColumboService",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "IoT Events",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|