@aws-sdk/client-lookoutequipment 3.948.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 +593 -395
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateDatasetCommand.js +2 -2
- package/dist-es/commands/CreateInferenceSchedulerCommand.js +2 -2
- package/dist-es/commands/CreateLabelCommand.js +2 -2
- package/dist-es/commands/CreateLabelGroupCommand.js +2 -2
- package/dist-es/commands/CreateModelCommand.js +2 -2
- package/dist-es/commands/CreateRetrainingSchedulerCommand.js +2 -2
- package/dist-es/commands/DeleteDatasetCommand.js +2 -2
- package/dist-es/commands/DeleteInferenceSchedulerCommand.js +2 -2
- package/dist-es/commands/DeleteLabelCommand.js +2 -2
- package/dist-es/commands/DeleteLabelGroupCommand.js +2 -2
- package/dist-es/commands/DeleteModelCommand.js +2 -2
- package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteRetrainingSchedulerCommand.js +2 -2
- package/dist-es/commands/DescribeDataIngestionJobCommand.js +2 -2
- package/dist-es/commands/DescribeDatasetCommand.js +2 -2
- package/dist-es/commands/DescribeInferenceSchedulerCommand.js +2 -2
- package/dist-es/commands/DescribeLabelCommand.js +2 -2
- package/dist-es/commands/DescribeLabelGroupCommand.js +2 -2
- package/dist-es/commands/DescribeModelCommand.js +2 -2
- package/dist-es/commands/DescribeModelVersionCommand.js +2 -2
- package/dist-es/commands/DescribeResourcePolicyCommand.js +2 -2
- package/dist-es/commands/DescribeRetrainingSchedulerCommand.js +2 -2
- package/dist-es/commands/ImportDatasetCommand.js +2 -2
- package/dist-es/commands/ImportModelVersionCommand.js +2 -2
- package/dist-es/commands/ListDataIngestionJobsCommand.js +2 -2
- package/dist-es/commands/ListDatasetsCommand.js +2 -2
- package/dist-es/commands/ListInferenceEventsCommand.js +2 -2
- package/dist-es/commands/ListInferenceExecutionsCommand.js +2 -2
- package/dist-es/commands/ListInferenceSchedulersCommand.js +2 -2
- package/dist-es/commands/ListLabelGroupsCommand.js +2 -2
- package/dist-es/commands/ListLabelsCommand.js +2 -2
- package/dist-es/commands/ListModelVersionsCommand.js +2 -2
- package/dist-es/commands/ListModelsCommand.js +2 -2
- package/dist-es/commands/ListRetrainingSchedulersCommand.js +2 -2
- package/dist-es/commands/ListSensorStatisticsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-es/commands/StartDataIngestionJobCommand.js +2 -2
- package/dist-es/commands/StartInferenceSchedulerCommand.js +2 -2
- package/dist-es/commands/StartRetrainingSchedulerCommand.js +2 -2
- package/dist-es/commands/StopInferenceSchedulerCommand.js +2 -2
- package/dist-es/commands/StopRetrainingSchedulerCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateActiveModelVersionCommand.js +2 -2
- package/dist-es/commands/UpdateInferenceSchedulerCommand.js +2 -2
- package/dist-es/commands/UpdateLabelGroupCommand.js +2 -2
- package/dist-es/commands/UpdateModelCommand.js +2 -2
- package/dist-es/commands/UpdateRetrainingSchedulerCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +343 -329
- package/dist-types/LookoutEquipmentClient.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 +185 -203
- package/dist-types/ts3.4/LookoutEquipmentClient.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 +184 -204
- package/package.json +34 -34
|
@@ -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("AWSLookoutEquipmentFrontendService", "ListTagsForResource", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "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 { PutResourcePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutResourcePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutResourcePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutResourcePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "PutResourcePolicy", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "PutResourcePolicyCommand")
|
|
14
|
-
.sc(PutResourcePolicy)
|
|
14
|
+
.sc(PutResourcePolicy$)
|
|
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 { StartDataIngestionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartDataIngestionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartDataIngestionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartDataIngestionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "StartDataIngestionJob", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "StartDataIngestionJobCommand")
|
|
14
|
-
.sc(StartDataIngestionJob)
|
|
14
|
+
.sc(StartDataIngestionJob$)
|
|
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 { StartInferenceScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { StartInferenceScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartInferenceSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartInferenceSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "StartInferenceScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "StartInferenceSchedulerCommand")
|
|
14
|
-
.sc(StartInferenceScheduler)
|
|
14
|
+
.sc(StartInferenceScheduler$)
|
|
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 { StartRetrainingScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { StartRetrainingScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartRetrainingSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartRetrainingSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "StartRetrainingScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "StartRetrainingSchedulerCommand")
|
|
14
|
-
.sc(StartRetrainingScheduler)
|
|
14
|
+
.sc(StartRetrainingScheduler$)
|
|
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 { StopInferenceScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { StopInferenceScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopInferenceSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopInferenceSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "StopInferenceScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "StopInferenceSchedulerCommand")
|
|
14
|
-
.sc(StopInferenceScheduler)
|
|
14
|
+
.sc(StopInferenceScheduler$)
|
|
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 { StopRetrainingScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { StopRetrainingScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopRetrainingSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopRetrainingSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "StopRetrainingScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "StopRetrainingSchedulerCommand")
|
|
14
|
-
.sc(StopRetrainingScheduler)
|
|
14
|
+
.sc(StopRetrainingScheduler$)
|
|
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("AWSLookoutEquipmentFrontendService", "TagResource", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "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("AWSLookoutEquipmentFrontendService", "UntagResource", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "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 { UpdateActiveModelVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateActiveModelVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateActiveModelVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateActiveModelVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "UpdateActiveModelVersion", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "UpdateActiveModelVersionCommand")
|
|
14
|
-
.sc(UpdateActiveModelVersion)
|
|
14
|
+
.sc(UpdateActiveModelVersion$)
|
|
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 { UpdateInferenceScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateInferenceScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateInferenceSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateInferenceSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "UpdateInferenceScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "UpdateInferenceSchedulerCommand")
|
|
14
|
-
.sc(UpdateInferenceScheduler)
|
|
14
|
+
.sc(UpdateInferenceScheduler$)
|
|
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 { UpdateLabelGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateLabelGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateLabelGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateLabelGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "UpdateLabelGroup", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "UpdateLabelGroupCommand")
|
|
14
|
-
.sc(UpdateLabelGroup)
|
|
14
|
+
.sc(UpdateLabelGroup$)
|
|
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 { UpdateModel } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "UpdateModel", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "UpdateModelCommand")
|
|
14
|
-
.sc(UpdateModel)
|
|
14
|
+
.sc(UpdateModel$)
|
|
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 { UpdateRetrainingScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateRetrainingScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateRetrainingSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateRetrainingSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "UpdateRetrainingScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "UpdateRetrainingSchedulerCommand")
|
|
14
|
-
.sc(UpdateRetrainingScheduler)
|
|
14
|
+
.sc(UpdateRetrainingScheduler$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.lookoutequipment",
|
|
29
|
+
version: "2020-12-15",
|
|
30
|
+
serviceTarget: "AWSLookoutEquipmentFrontendService",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "LookoutEquipment",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|