@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
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.lookoutequipment",
|
|
32
|
+
version: "2020-12-15",
|
|
33
|
+
serviceTarget: "AWSLookoutEquipmentFrontendService",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "LookoutEquipment",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
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 { CreateDataset } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDataset$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDatasetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDatasetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "CreateDataset", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "CreateDatasetCommand")
|
|
14
|
-
.sc(CreateDataset)
|
|
14
|
+
.sc(CreateDataset$)
|
|
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 { CreateInferenceScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateInferenceScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateInferenceSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateInferenceSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "CreateInferenceScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "CreateInferenceSchedulerCommand")
|
|
14
|
-
.sc(CreateInferenceScheduler)
|
|
14
|
+
.sc(CreateInferenceScheduler$)
|
|
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 { CreateLabel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLabel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLabelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLabelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "CreateLabel", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "CreateLabelCommand")
|
|
14
|
-
.sc(CreateLabel)
|
|
14
|
+
.sc(CreateLabel$)
|
|
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 { CreateLabelGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLabelGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLabelGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLabelGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "CreateLabelGroup", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "CreateLabelGroupCommand")
|
|
14
|
-
.sc(CreateLabelGroup)
|
|
14
|
+
.sc(CreateLabelGroup$)
|
|
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 { CreateModel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "CreateModel", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "CreateModelCommand")
|
|
14
|
-
.sc(CreateModel)
|
|
14
|
+
.sc(CreateModel$)
|
|
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 { CreateRetrainingScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRetrainingScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRetrainingSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRetrainingSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "CreateRetrainingScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "CreateRetrainingSchedulerCommand")
|
|
14
|
-
.sc(CreateRetrainingScheduler)
|
|
14
|
+
.sc(CreateRetrainingScheduler$)
|
|
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 { DeleteDataset } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDataset$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDatasetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDatasetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DeleteDataset", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DeleteDatasetCommand")
|
|
14
|
-
.sc(DeleteDataset)
|
|
14
|
+
.sc(DeleteDataset$)
|
|
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 { DeleteInferenceScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteInferenceScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteInferenceSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteInferenceSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DeleteInferenceScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DeleteInferenceSchedulerCommand")
|
|
14
|
-
.sc(DeleteInferenceScheduler)
|
|
14
|
+
.sc(DeleteInferenceScheduler$)
|
|
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 { DeleteLabel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLabel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLabelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLabelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DeleteLabel", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DeleteLabelCommand")
|
|
14
|
-
.sc(DeleteLabel)
|
|
14
|
+
.sc(DeleteLabel$)
|
|
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 { DeleteLabelGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLabelGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLabelGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLabelGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DeleteLabelGroup", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DeleteLabelGroupCommand")
|
|
14
|
-
.sc(DeleteLabelGroup)
|
|
14
|
+
.sc(DeleteLabelGroup$)
|
|
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 { DeleteModel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DeleteModel", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DeleteModelCommand")
|
|
14
|
-
.sc(DeleteModel)
|
|
14
|
+
.sc(DeleteModel$)
|
|
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 { DeleteResourcePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteResourcePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteResourcePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteResourcePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DeleteResourcePolicy", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DeleteResourcePolicyCommand")
|
|
14
|
-
.sc(DeleteResourcePolicy)
|
|
14
|
+
.sc(DeleteResourcePolicy$)
|
|
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 { DeleteRetrainingScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRetrainingScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRetrainingSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRetrainingSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DeleteRetrainingScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DeleteRetrainingSchedulerCommand")
|
|
14
|
-
.sc(DeleteRetrainingScheduler)
|
|
14
|
+
.sc(DeleteRetrainingScheduler$)
|
|
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 { DescribeDataIngestionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDataIngestionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDataIngestionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDataIngestionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DescribeDataIngestionJob", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DescribeDataIngestionJobCommand")
|
|
14
|
-
.sc(DescribeDataIngestionJob)
|
|
14
|
+
.sc(DescribeDataIngestionJob$)
|
|
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 { DescribeDataset } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDataset$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDatasetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDatasetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DescribeDataset", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DescribeDatasetCommand")
|
|
14
|
-
.sc(DescribeDataset)
|
|
14
|
+
.sc(DescribeDataset$)
|
|
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 { DescribeInferenceScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeInferenceScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeInferenceSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeInferenceSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DescribeInferenceScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DescribeInferenceSchedulerCommand")
|
|
14
|
-
.sc(DescribeInferenceScheduler)
|
|
14
|
+
.sc(DescribeInferenceScheduler$)
|
|
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 { DescribeLabel } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLabel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLabelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLabelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DescribeLabel", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DescribeLabelCommand")
|
|
14
|
-
.sc(DescribeLabel)
|
|
14
|
+
.sc(DescribeLabel$)
|
|
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 { DescribeLabelGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLabelGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLabelGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLabelGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DescribeLabelGroup", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DescribeLabelGroupCommand")
|
|
14
|
-
.sc(DescribeLabelGroup)
|
|
14
|
+
.sc(DescribeLabelGroup$)
|
|
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 { DescribeModel } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DescribeModel", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DescribeModelCommand")
|
|
14
|
-
.sc(DescribeModel)
|
|
14
|
+
.sc(DescribeModel$)
|
|
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 { DescribeModelVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeModelVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeModelVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeModelVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DescribeModelVersion", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DescribeModelVersionCommand")
|
|
14
|
-
.sc(DescribeModelVersion)
|
|
14
|
+
.sc(DescribeModelVersion$)
|
|
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 { DescribeResourcePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeResourcePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeResourcePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeResourcePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DescribeResourcePolicy", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DescribeResourcePolicyCommand")
|
|
14
|
-
.sc(DescribeResourcePolicy)
|
|
14
|
+
.sc(DescribeResourcePolicy$)
|
|
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 { DescribeRetrainingScheduler } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRetrainingScheduler$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRetrainingSchedulerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRetrainingSchedulerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "DescribeRetrainingScheduler", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "DescribeRetrainingSchedulerCommand")
|
|
14
|
-
.sc(DescribeRetrainingScheduler)
|
|
14
|
+
.sc(DescribeRetrainingScheduler$)
|
|
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 { ImportDataset } from "../schemas/schemas_0";
|
|
4
|
+
import { ImportDataset$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ImportDatasetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ImportDatasetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ImportDataset", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ImportDatasetCommand")
|
|
14
|
-
.sc(ImportDataset)
|
|
14
|
+
.sc(ImportDataset$)
|
|
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 { ImportModelVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { ImportModelVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ImportModelVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ImportModelVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ImportModelVersion", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ImportModelVersionCommand")
|
|
14
|
-
.sc(ImportModelVersion)
|
|
14
|
+
.sc(ImportModelVersion$)
|
|
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 { ListDataIngestionJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDataIngestionJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDataIngestionJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDataIngestionJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListDataIngestionJobs", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListDataIngestionJobsCommand")
|
|
14
|
-
.sc(ListDataIngestionJobs)
|
|
14
|
+
.sc(ListDataIngestionJobs$)
|
|
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 { ListDatasets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDatasets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDatasetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDatasetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListDatasets", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListDatasetsCommand")
|
|
14
|
-
.sc(ListDatasets)
|
|
14
|
+
.sc(ListDatasets$)
|
|
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 { ListInferenceEvents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListInferenceEvents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListInferenceEventsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListInferenceEventsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListInferenceEvents", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListInferenceEventsCommand")
|
|
14
|
-
.sc(ListInferenceEvents)
|
|
14
|
+
.sc(ListInferenceEvents$)
|
|
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 { ListInferenceExecutions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListInferenceExecutions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListInferenceExecutionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListInferenceExecutionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListInferenceExecutions", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListInferenceExecutionsCommand")
|
|
14
|
-
.sc(ListInferenceExecutions)
|
|
14
|
+
.sc(ListInferenceExecutions$)
|
|
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 { ListInferenceSchedulers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListInferenceSchedulers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListInferenceSchedulersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListInferenceSchedulersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListInferenceSchedulers", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListInferenceSchedulersCommand")
|
|
14
|
-
.sc(ListInferenceSchedulers)
|
|
14
|
+
.sc(ListInferenceSchedulers$)
|
|
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 { ListLabelGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLabelGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLabelGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLabelGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListLabelGroups", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListLabelGroupsCommand")
|
|
14
|
-
.sc(ListLabelGroups)
|
|
14
|
+
.sc(ListLabelGroups$)
|
|
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 { ListLabels } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLabels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLabelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLabelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListLabels", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListLabelsCommand")
|
|
14
|
-
.sc(ListLabels)
|
|
14
|
+
.sc(ListLabels$)
|
|
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 { ListModelVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListModelVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListModelVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListModelVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListModelVersions", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListModelVersionsCommand")
|
|
14
|
-
.sc(ListModelVersions)
|
|
14
|
+
.sc(ListModelVersions$)
|
|
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 { ListModels } from "../schemas/schemas_0";
|
|
4
|
+
import { ListModels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListModelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListModelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListModels", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListModelsCommand")
|
|
14
|
-
.sc(ListModels)
|
|
14
|
+
.sc(ListModels$)
|
|
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 { ListRetrainingSchedulers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRetrainingSchedulers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRetrainingSchedulersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRetrainingSchedulersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListRetrainingSchedulers", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListRetrainingSchedulersCommand")
|
|
14
|
-
.sc(ListRetrainingSchedulers)
|
|
14
|
+
.sc(ListRetrainingSchedulers$)
|
|
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 { ListSensorStatistics } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSensorStatistics$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSensorStatisticsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSensorStatisticsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSLookoutEquipmentFrontendService", "ListSensorStatistics", {})
|
|
13
13
|
.n("LookoutEquipmentClient", "ListSensorStatisticsCommand")
|
|
14
|
-
.sc(ListSensorStatistics)
|
|
14
|
+
.sc(ListSensorStatistics$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|