@aws-sdk/client-lookoutequipment 3.927.0 → 3.929.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 +1679 -1993
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/LookoutEquipmentClient.js +2 -0
- package/dist-es/commands/CreateDatasetCommand.js +3 -9
- package/dist-es/commands/CreateInferenceSchedulerCommand.js +3 -9
- package/dist-es/commands/CreateLabelCommand.js +3 -9
- package/dist-es/commands/CreateLabelGroupCommand.js +3 -9
- package/dist-es/commands/CreateModelCommand.js +3 -9
- package/dist-es/commands/CreateRetrainingSchedulerCommand.js +3 -9
- package/dist-es/commands/DeleteDatasetCommand.js +3 -9
- package/dist-es/commands/DeleteInferenceSchedulerCommand.js +3 -9
- package/dist-es/commands/DeleteLabelCommand.js +3 -9
- package/dist-es/commands/DeleteLabelGroupCommand.js +3 -9
- package/dist-es/commands/DeleteModelCommand.js +3 -9
- package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -9
- package/dist-es/commands/DeleteRetrainingSchedulerCommand.js +3 -9
- package/dist-es/commands/DescribeDataIngestionJobCommand.js +3 -9
- package/dist-es/commands/DescribeDatasetCommand.js +3 -9
- package/dist-es/commands/DescribeInferenceSchedulerCommand.js +3 -9
- package/dist-es/commands/DescribeLabelCommand.js +3 -9
- package/dist-es/commands/DescribeLabelGroupCommand.js +3 -9
- package/dist-es/commands/DescribeModelCommand.js +3 -9
- package/dist-es/commands/DescribeModelVersionCommand.js +3 -9
- package/dist-es/commands/DescribeResourcePolicyCommand.js +3 -9
- package/dist-es/commands/DescribeRetrainingSchedulerCommand.js +3 -9
- package/dist-es/commands/ImportDatasetCommand.js +3 -9
- package/dist-es/commands/ImportModelVersionCommand.js +3 -9
- package/dist-es/commands/ListDataIngestionJobsCommand.js +3 -9
- package/dist-es/commands/ListDatasetsCommand.js +3 -9
- package/dist-es/commands/ListInferenceEventsCommand.js +3 -9
- package/dist-es/commands/ListInferenceExecutionsCommand.js +3 -9
- package/dist-es/commands/ListInferenceSchedulersCommand.js +3 -9
- package/dist-es/commands/ListLabelGroupsCommand.js +3 -9
- package/dist-es/commands/ListLabelsCommand.js +3 -9
- package/dist-es/commands/ListModelVersionsCommand.js +3 -9
- package/dist-es/commands/ListModelsCommand.js +3 -9
- package/dist-es/commands/ListRetrainingSchedulersCommand.js +3 -9
- package/dist-es/commands/ListSensorStatisticsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutResourcePolicyCommand.js +3 -9
- package/dist-es/commands/StartDataIngestionJobCommand.js +3 -9
- package/dist-es/commands/StartInferenceSchedulerCommand.js +3 -9
- package/dist-es/commands/StartRetrainingSchedulerCommand.js +3 -9
- package/dist-es/commands/StopInferenceSchedulerCommand.js +3 -9
- package/dist-es/commands/StopRetrainingSchedulerCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateActiveModelVersionCommand.js +3 -9
- package/dist-es/commands/UpdateInferenceSchedulerCommand.js +3 -9
- package/dist-es/commands/UpdateLabelGroupCommand.js +3 -9
- package/dist-es/commands/UpdateModelCommand.js +3 -9
- package/dist-es/commands/UpdateRetrainingSchedulerCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1560 -0
- package/dist-types/LookoutEquipmentClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +203 -0
- package/dist-types/ts3.4/LookoutEquipmentClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +209 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_0.js +0 -1633
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -443
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -593
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateInferenceScheduler } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateInferenceSchedulerCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AWSLookoutEquipmentFrontendService", "UpdateInferenceScheduler", {})
|
|
17
13
|
.n("LookoutEquipmentClient", "UpdateInferenceSchedulerCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateInferenceSchedulerCommand)
|
|
20
|
-
.de(de_UpdateInferenceSchedulerCommand)
|
|
14
|
+
.sc(UpdateInferenceScheduler)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateLabelGroup } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateLabelGroupCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AWSLookoutEquipmentFrontendService", "UpdateLabelGroup", {})
|
|
17
13
|
.n("LookoutEquipmentClient", "UpdateLabelGroupCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateLabelGroupCommand)
|
|
20
|
-
.de(de_UpdateLabelGroupCommand)
|
|
14
|
+
.sc(UpdateLabelGroup)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateModel } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateModelCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AWSLookoutEquipmentFrontendService", "UpdateModel", {})
|
|
17
13
|
.n("LookoutEquipmentClient", "UpdateModelCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateModelCommand)
|
|
20
|
-
.de(de_UpdateModelCommand)
|
|
14
|
+
.sc(UpdateModel)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateRetrainingScheduler } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateRetrainingSchedulerCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AWSLookoutEquipmentFrontendService", "UpdateRetrainingScheduler", {})
|
|
17
13
|
.n("LookoutEquipmentClient", "UpdateRetrainingSchedulerCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateRetrainingSchedulerCommand)
|
|
20
|
-
.de(de_UpdateRetrainingSchedulerCommand)
|
|
14
|
+
.sc(UpdateRetrainingScheduler)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ??
|
|
27
|
+
new AwsJson1_0Protocol({
|
|
28
|
+
defaultNamespace: "com.amazonaws.lookoutequipment",
|
|
29
|
+
serviceTarget: "AWSLookoutEquipmentFrontendService",
|
|
30
|
+
awsQueryCompatible: false,
|
|
31
|
+
}),
|
|
25
32
|
serviceId: config?.serviceId ?? "LookoutEquipment",
|
|
26
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|