@aws-sdk/client-lookoutequipment 3.154.0 → 3.161.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/CHANGELOG.md +27 -0
- package/README.md +2 -3
- package/dist-cjs/LookoutEquipment.js +135 -0
- package/dist-cjs/commands/CreateLabelCommand.js +36 -0
- package/dist-cjs/commands/CreateLabelGroupCommand.js +36 -0
- package/dist-cjs/commands/DeleteLabelCommand.js +36 -0
- package/dist-cjs/commands/DeleteLabelGroupCommand.js +36 -0
- package/dist-cjs/commands/DescribeLabelCommand.js +36 -0
- package/dist-cjs/commands/DescribeLabelGroupCommand.js +36 -0
- package/dist-cjs/commands/ListLabelGroupsCommand.js +36 -0
- package/dist-cjs/commands/ListLabelsCommand.js +36 -0
- package/dist-cjs/commands/UpdateLabelGroupCommand.js +36 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +82 -2
- package/dist-cjs/pagination/ListLabelGroupsPaginator.js +36 -0
- package/dist-cjs/pagination/ListLabelsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_0.js +704 -21
- package/dist-es/LookoutEquipment.js +135 -0
- package/dist-es/commands/CreateLabelCommand.js +39 -0
- package/dist-es/commands/CreateLabelGroupCommand.js +39 -0
- package/dist-es/commands/DeleteLabelCommand.js +39 -0
- package/dist-es/commands/DeleteLabelGroupCommand.js +39 -0
- package/dist-es/commands/DescribeLabelCommand.js +39 -0
- package/dist-es/commands/DescribeLabelGroupCommand.js +39 -0
- package/dist-es/commands/ListLabelGroupsCommand.js +39 -0
- package/dist-es/commands/ListLabelsCommand.js +39 -0
- package/dist-es/commands/UpdateLabelGroupCommand.js +39 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +28 -0
- package/dist-es/pagination/ListLabelGroupsPaginator.js +75 -0
- package/dist-es/pagination/ListLabelsPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_0.js +1005 -154
- package/dist-types/LookoutEquipment.d.ts +85 -5
- package/dist-types/LookoutEquipmentClient.d.ts +13 -5
- package/dist-types/commands/CreateLabelCommand.d.ts +37 -0
- package/dist-types/commands/CreateLabelGroupCommand.d.ts +37 -0
- package/dist-types/commands/DeleteLabelCommand.d.ts +37 -0
- package/dist-types/commands/DeleteLabelGroupCommand.d.ts +37 -0
- package/dist-types/commands/DescribeLabelCommand.d.ts +37 -0
- package/dist-types/commands/DescribeLabelGroupCommand.d.ts +37 -0
- package/dist-types/commands/ListInferenceEventsCommand.d.ts +2 -2
- package/dist-types/commands/ListLabelGroupsCommand.d.ts +37 -0
- package/dist-types/commands/ListLabelsCommand.d.ts +37 -0
- package/dist-types/commands/UpdateLabelGroupCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +573 -49
- package/dist-types/pagination/ListLabelGroupsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListLabelsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +27 -0
- package/dist-types/ts3.4/LookoutEquipment.d.ts +45 -0
- package/dist-types/ts3.4/LookoutEquipmentClient.d.ts +11 -2
- package/dist-types/ts3.4/commands/CreateLabelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateLabelGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteLabelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteLabelGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeLabelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeLabelGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListLabelGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListLabelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateLabelGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +56 -1
- package/dist-types/ts3.4/pagination/ListLabelGroupsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListLabelsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +27 -0
- package/package.json +26 -26
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput } from "../commands/ListLabelGroupsCommand";
|
|
3
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListLabelGroups(config: LookoutEquipmentPaginationConfiguration, input: ListLabelGroupsCommandInput, ...additionalArguments: any): Paginator<ListLabelGroupsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListLabelsCommandInput, ListLabelsCommandOutput } from "../commands/ListLabelsCommand";
|
|
3
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListLabels(config: LookoutEquipmentPaginationConfiguration, input: ListLabelsCommandInput, ...additionalArguments: any): Paginator<ListLabelsCommandOutput>;
|
|
@@ -4,5 +4,7 @@ export * from "./ListDatasetsPaginator";
|
|
|
4
4
|
export * from "./ListInferenceEventsPaginator";
|
|
5
5
|
export * from "./ListInferenceExecutionsPaginator";
|
|
6
6
|
export * from "./ListInferenceSchedulersPaginator";
|
|
7
|
+
export * from "./ListLabelGroupsPaginator";
|
|
8
|
+
export * from "./ListLabelsPaginator";
|
|
7
9
|
export * from "./ListModelsPaginator";
|
|
8
10
|
export * from "./ListSensorStatisticsPaginator";
|
|
@@ -2,19 +2,27 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@a
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "../commands/CreateDatasetCommand";
|
|
4
4
|
import { CreateInferenceSchedulerCommandInput, CreateInferenceSchedulerCommandOutput } from "../commands/CreateInferenceSchedulerCommand";
|
|
5
|
+
import { CreateLabelCommandInput, CreateLabelCommandOutput } from "../commands/CreateLabelCommand";
|
|
6
|
+
import { CreateLabelGroupCommandInput, CreateLabelGroupCommandOutput } from "../commands/CreateLabelGroupCommand";
|
|
5
7
|
import { CreateModelCommandInput, CreateModelCommandOutput } from "../commands/CreateModelCommand";
|
|
6
8
|
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
|
|
7
9
|
import { DeleteInferenceSchedulerCommandInput, DeleteInferenceSchedulerCommandOutput } from "../commands/DeleteInferenceSchedulerCommand";
|
|
10
|
+
import { DeleteLabelCommandInput, DeleteLabelCommandOutput } from "../commands/DeleteLabelCommand";
|
|
11
|
+
import { DeleteLabelGroupCommandInput, DeleteLabelGroupCommandOutput } from "../commands/DeleteLabelGroupCommand";
|
|
8
12
|
import { DeleteModelCommandInput, DeleteModelCommandOutput } from "../commands/DeleteModelCommand";
|
|
9
13
|
import { DescribeDataIngestionJobCommandInput, DescribeDataIngestionJobCommandOutput } from "../commands/DescribeDataIngestionJobCommand";
|
|
10
14
|
import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "../commands/DescribeDatasetCommand";
|
|
11
15
|
import { DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerCommandOutput } from "../commands/DescribeInferenceSchedulerCommand";
|
|
16
|
+
import { DescribeLabelCommandInput, DescribeLabelCommandOutput } from "../commands/DescribeLabelCommand";
|
|
17
|
+
import { DescribeLabelGroupCommandInput, DescribeLabelGroupCommandOutput } from "../commands/DescribeLabelGroupCommand";
|
|
12
18
|
import { DescribeModelCommandInput, DescribeModelCommandOutput } from "../commands/DescribeModelCommand";
|
|
13
19
|
import { ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput } from "../commands/ListDataIngestionJobsCommand";
|
|
14
20
|
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
|
|
15
21
|
import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "../commands/ListInferenceEventsCommand";
|
|
16
22
|
import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "../commands/ListInferenceExecutionsCommand";
|
|
17
23
|
import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "../commands/ListInferenceSchedulersCommand";
|
|
24
|
+
import { ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput } from "../commands/ListLabelGroupsCommand";
|
|
25
|
+
import { ListLabelsCommandInput, ListLabelsCommandOutput } from "../commands/ListLabelsCommand";
|
|
18
26
|
import { ListModelsCommandInput, ListModelsCommandOutput } from "../commands/ListModelsCommand";
|
|
19
27
|
import { ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput } from "../commands/ListSensorStatisticsCommand";
|
|
20
28
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -24,21 +32,30 @@ import { StopInferenceSchedulerCommandInput, StopInferenceSchedulerCommandOutput
|
|
|
24
32
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
25
33
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
26
34
|
import { UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput } from "../commands/UpdateInferenceSchedulerCommand";
|
|
35
|
+
import { UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput } from "../commands/UpdateLabelGroupCommand";
|
|
27
36
|
export declare const serializeAws_json1_0CreateDatasetCommand: (input: CreateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
37
|
export declare const serializeAws_json1_0CreateInferenceSchedulerCommand: (input: CreateInferenceSchedulerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
export declare const serializeAws_json1_0CreateLabelCommand: (input: CreateLabelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
export declare const serializeAws_json1_0CreateLabelGroupCommand: (input: CreateLabelGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
40
|
export declare const serializeAws_json1_0CreateModelCommand: (input: CreateModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
41
|
export declare const serializeAws_json1_0DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
42
|
export declare const serializeAws_json1_0DeleteInferenceSchedulerCommand: (input: DeleteInferenceSchedulerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
export declare const serializeAws_json1_0DeleteLabelCommand: (input: DeleteLabelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
export declare const serializeAws_json1_0DeleteLabelGroupCommand: (input: DeleteLabelGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
45
|
export declare const serializeAws_json1_0DeleteModelCommand: (input: DeleteModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
46
|
export declare const serializeAws_json1_0DescribeDataIngestionJobCommand: (input: DescribeDataIngestionJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
47
|
export declare const serializeAws_json1_0DescribeDatasetCommand: (input: DescribeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
48
|
export declare const serializeAws_json1_0DescribeInferenceSchedulerCommand: (input: DescribeInferenceSchedulerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
+
export declare const serializeAws_json1_0DescribeLabelCommand: (input: DescribeLabelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
export declare const serializeAws_json1_0DescribeLabelGroupCommand: (input: DescribeLabelGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
51
|
export declare const serializeAws_json1_0DescribeModelCommand: (input: DescribeModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
52
|
export declare const serializeAws_json1_0ListDataIngestionJobsCommand: (input: ListDataIngestionJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
53
|
export declare const serializeAws_json1_0ListDatasetsCommand: (input: ListDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
54
|
export declare const serializeAws_json1_0ListInferenceEventsCommand: (input: ListInferenceEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
55
|
export declare const serializeAws_json1_0ListInferenceExecutionsCommand: (input: ListInferenceExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
56
|
export declare const serializeAws_json1_0ListInferenceSchedulersCommand: (input: ListInferenceSchedulersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
+
export declare const serializeAws_json1_0ListLabelGroupsCommand: (input: ListLabelGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const serializeAws_json1_0ListLabelsCommand: (input: ListLabelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
59
|
export declare const serializeAws_json1_0ListModelsCommand: (input: ListModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
60
|
export declare const serializeAws_json1_0ListSensorStatisticsCommand: (input: ListSensorStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
61
|
export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -48,21 +65,30 @@ export declare const serializeAws_json1_0StopInferenceSchedulerCommand: (input:
|
|
|
48
65
|
export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
66
|
export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
67
|
export declare const serializeAws_json1_0UpdateInferenceSchedulerCommand: (input: UpdateInferenceSchedulerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
export declare const serializeAws_json1_0UpdateLabelGroupCommand: (input: UpdateLabelGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
69
|
export declare const deserializeAws_json1_0CreateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatasetCommandOutput>;
|
|
52
70
|
export declare const deserializeAws_json1_0CreateInferenceSchedulerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInferenceSchedulerCommandOutput>;
|
|
71
|
+
export declare const deserializeAws_json1_0CreateLabelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLabelCommandOutput>;
|
|
72
|
+
export declare const deserializeAws_json1_0CreateLabelGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLabelGroupCommandOutput>;
|
|
53
73
|
export declare const deserializeAws_json1_0CreateModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateModelCommandOutput>;
|
|
54
74
|
export declare const deserializeAws_json1_0DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
|
|
55
75
|
export declare const deserializeAws_json1_0DeleteInferenceSchedulerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteInferenceSchedulerCommandOutput>;
|
|
76
|
+
export declare const deserializeAws_json1_0DeleteLabelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLabelCommandOutput>;
|
|
77
|
+
export declare const deserializeAws_json1_0DeleteLabelGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLabelGroupCommandOutput>;
|
|
56
78
|
export declare const deserializeAws_json1_0DeleteModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteModelCommandOutput>;
|
|
57
79
|
export declare const deserializeAws_json1_0DescribeDataIngestionJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDataIngestionJobCommandOutput>;
|
|
58
80
|
export declare const deserializeAws_json1_0DescribeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDatasetCommandOutput>;
|
|
59
81
|
export declare const deserializeAws_json1_0DescribeInferenceSchedulerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeInferenceSchedulerCommandOutput>;
|
|
82
|
+
export declare const deserializeAws_json1_0DescribeLabelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLabelCommandOutput>;
|
|
83
|
+
export declare const deserializeAws_json1_0DescribeLabelGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLabelGroupCommandOutput>;
|
|
60
84
|
export declare const deserializeAws_json1_0DescribeModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeModelCommandOutput>;
|
|
61
85
|
export declare const deserializeAws_json1_0ListDataIngestionJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIngestionJobsCommandOutput>;
|
|
62
86
|
export declare const deserializeAws_json1_0ListDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetsCommandOutput>;
|
|
63
87
|
export declare const deserializeAws_json1_0ListInferenceEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceEventsCommandOutput>;
|
|
64
88
|
export declare const deserializeAws_json1_0ListInferenceExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceExecutionsCommandOutput>;
|
|
65
89
|
export declare const deserializeAws_json1_0ListInferenceSchedulersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceSchedulersCommandOutput>;
|
|
90
|
+
export declare const deserializeAws_json1_0ListLabelGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLabelGroupsCommandOutput>;
|
|
91
|
+
export declare const deserializeAws_json1_0ListLabelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLabelsCommandOutput>;
|
|
66
92
|
export declare const deserializeAws_json1_0ListModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListModelsCommandOutput>;
|
|
67
93
|
export declare const deserializeAws_json1_0ListSensorStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSensorStatisticsCommandOutput>;
|
|
68
94
|
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
@@ -72,3 +98,4 @@ export declare const deserializeAws_json1_0StopInferenceSchedulerCommand: (outpu
|
|
|
72
98
|
export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
73
99
|
export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
74
100
|
export declare const deserializeAws_json1_0UpdateInferenceSchedulerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateInferenceSchedulerCommandOutput>;
|
|
101
|
+
export declare const deserializeAws_json1_0UpdateLabelGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLabelGroupCommandOutput>;
|
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "./commands/CreateDatasetCommand";
|
|
3
3
|
import { CreateInferenceSchedulerCommandInput, CreateInferenceSchedulerCommandOutput } from "./commands/CreateInferenceSchedulerCommand";
|
|
4
|
+
import { CreateLabelCommandInput, CreateLabelCommandOutput } from "./commands/CreateLabelCommand";
|
|
5
|
+
import { CreateLabelGroupCommandInput, CreateLabelGroupCommandOutput } from "./commands/CreateLabelGroupCommand";
|
|
4
6
|
import { CreateModelCommandInput, CreateModelCommandOutput } from "./commands/CreateModelCommand";
|
|
5
7
|
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
6
8
|
import { DeleteInferenceSchedulerCommandInput, DeleteInferenceSchedulerCommandOutput } from "./commands/DeleteInferenceSchedulerCommand";
|
|
9
|
+
import { DeleteLabelCommandInput, DeleteLabelCommandOutput } from "./commands/DeleteLabelCommand";
|
|
10
|
+
import { DeleteLabelGroupCommandInput, DeleteLabelGroupCommandOutput } from "./commands/DeleteLabelGroupCommand";
|
|
7
11
|
import { DeleteModelCommandInput, DeleteModelCommandOutput } from "./commands/DeleteModelCommand";
|
|
8
12
|
import { DescribeDataIngestionJobCommandInput, DescribeDataIngestionJobCommandOutput } from "./commands/DescribeDataIngestionJobCommand";
|
|
9
13
|
import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "./commands/DescribeDatasetCommand";
|
|
10
14
|
import { DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerCommandOutput } from "./commands/DescribeInferenceSchedulerCommand";
|
|
15
|
+
import { DescribeLabelCommandInput, DescribeLabelCommandOutput } from "./commands/DescribeLabelCommand";
|
|
16
|
+
import { DescribeLabelGroupCommandInput, DescribeLabelGroupCommandOutput } from "./commands/DescribeLabelGroupCommand";
|
|
11
17
|
import { DescribeModelCommandInput, DescribeModelCommandOutput } from "./commands/DescribeModelCommand";
|
|
12
18
|
import { ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput } from "./commands/ListDataIngestionJobsCommand";
|
|
13
19
|
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
|
|
14
20
|
import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "./commands/ListInferenceEventsCommand";
|
|
15
21
|
import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "./commands/ListInferenceExecutionsCommand";
|
|
16
22
|
import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "./commands/ListInferenceSchedulersCommand";
|
|
23
|
+
import { ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput } from "./commands/ListLabelGroupsCommand";
|
|
24
|
+
import { ListLabelsCommandInput, ListLabelsCommandOutput } from "./commands/ListLabelsCommand";
|
|
17
25
|
import { ListModelsCommandInput, ListModelsCommandOutput } from "./commands/ListModelsCommand";
|
|
18
26
|
import { ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput } from "./commands/ListSensorStatisticsCommand";
|
|
19
27
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
@@ -23,6 +31,7 @@ import { StopInferenceSchedulerCommandInput, StopInferenceSchedulerCommandOutput
|
|
|
23
31
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
32
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
33
|
import { UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput } from "./commands/UpdateInferenceSchedulerCommand";
|
|
34
|
+
import { UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput } from "./commands/UpdateLabelGroupCommand";
|
|
26
35
|
import { LookoutEquipmentClient } from "./LookoutEquipmentClient";
|
|
27
36
|
|
|
28
37
|
export declare class LookoutEquipment extends LookoutEquipmentClient {
|
|
@@ -35,6 +44,14 @@ export declare class LookoutEquipment extends LookoutEquipmentClient {
|
|
|
35
44
|
createInferenceScheduler(args: CreateInferenceSchedulerCommandInput, cb: (err: any, data?: CreateInferenceSchedulerCommandOutput) => void): void;
|
|
36
45
|
createInferenceScheduler(args: CreateInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInferenceSchedulerCommandOutput) => void): void;
|
|
37
46
|
|
|
47
|
+
createLabel(args: CreateLabelCommandInput, options?: __HttpHandlerOptions): Promise<CreateLabelCommandOutput>;
|
|
48
|
+
createLabel(args: CreateLabelCommandInput, cb: (err: any, data?: CreateLabelCommandOutput) => void): void;
|
|
49
|
+
createLabel(args: CreateLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLabelCommandOutput) => void): void;
|
|
50
|
+
|
|
51
|
+
createLabelGroup(args: CreateLabelGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateLabelGroupCommandOutput>;
|
|
52
|
+
createLabelGroup(args: CreateLabelGroupCommandInput, cb: (err: any, data?: CreateLabelGroupCommandOutput) => void): void;
|
|
53
|
+
createLabelGroup(args: CreateLabelGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLabelGroupCommandOutput) => void): void;
|
|
54
|
+
|
|
38
55
|
createModel(args: CreateModelCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelCommandOutput>;
|
|
39
56
|
createModel(args: CreateModelCommandInput, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
|
|
40
57
|
createModel(args: CreateModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
|
|
@@ -47,6 +64,14 @@ export declare class LookoutEquipment extends LookoutEquipmentClient {
|
|
|
47
64
|
deleteInferenceScheduler(args: DeleteInferenceSchedulerCommandInput, cb: (err: any, data?: DeleteInferenceSchedulerCommandOutput) => void): void;
|
|
48
65
|
deleteInferenceScheduler(args: DeleteInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInferenceSchedulerCommandOutput) => void): void;
|
|
49
66
|
|
|
67
|
+
deleteLabel(args: DeleteLabelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLabelCommandOutput>;
|
|
68
|
+
deleteLabel(args: DeleteLabelCommandInput, cb: (err: any, data?: DeleteLabelCommandOutput) => void): void;
|
|
69
|
+
deleteLabel(args: DeleteLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLabelCommandOutput) => void): void;
|
|
70
|
+
|
|
71
|
+
deleteLabelGroup(args: DeleteLabelGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLabelGroupCommandOutput>;
|
|
72
|
+
deleteLabelGroup(args: DeleteLabelGroupCommandInput, cb: (err: any, data?: DeleteLabelGroupCommandOutput) => void): void;
|
|
73
|
+
deleteLabelGroup(args: DeleteLabelGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLabelGroupCommandOutput) => void): void;
|
|
74
|
+
|
|
50
75
|
deleteModel(args: DeleteModelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelCommandOutput>;
|
|
51
76
|
deleteModel(args: DeleteModelCommandInput, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
|
|
52
77
|
deleteModel(args: DeleteModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
|
|
@@ -63,6 +88,14 @@ export declare class LookoutEquipment extends LookoutEquipmentClient {
|
|
|
63
88
|
describeInferenceScheduler(args: DescribeInferenceSchedulerCommandInput, cb: (err: any, data?: DescribeInferenceSchedulerCommandOutput) => void): void;
|
|
64
89
|
describeInferenceScheduler(args: DescribeInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInferenceSchedulerCommandOutput) => void): void;
|
|
65
90
|
|
|
91
|
+
describeLabel(args: DescribeLabelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLabelCommandOutput>;
|
|
92
|
+
describeLabel(args: DescribeLabelCommandInput, cb: (err: any, data?: DescribeLabelCommandOutput) => void): void;
|
|
93
|
+
describeLabel(args: DescribeLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLabelCommandOutput) => void): void;
|
|
94
|
+
|
|
95
|
+
describeLabelGroup(args: DescribeLabelGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLabelGroupCommandOutput>;
|
|
96
|
+
describeLabelGroup(args: DescribeLabelGroupCommandInput, cb: (err: any, data?: DescribeLabelGroupCommandOutput) => void): void;
|
|
97
|
+
describeLabelGroup(args: DescribeLabelGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLabelGroupCommandOutput) => void): void;
|
|
98
|
+
|
|
66
99
|
describeModel(args: DescribeModelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelCommandOutput>;
|
|
67
100
|
describeModel(args: DescribeModelCommandInput, cb: (err: any, data?: DescribeModelCommandOutput) => void): void;
|
|
68
101
|
describeModel(args: DescribeModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelCommandOutput) => void): void;
|
|
@@ -87,6 +120,14 @@ export declare class LookoutEquipment extends LookoutEquipmentClient {
|
|
|
87
120
|
listInferenceSchedulers(args: ListInferenceSchedulersCommandInput, cb: (err: any, data?: ListInferenceSchedulersCommandOutput) => void): void;
|
|
88
121
|
listInferenceSchedulers(args: ListInferenceSchedulersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceSchedulersCommandOutput) => void): void;
|
|
89
122
|
|
|
123
|
+
listLabelGroups(args: ListLabelGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListLabelGroupsCommandOutput>;
|
|
124
|
+
listLabelGroups(args: ListLabelGroupsCommandInput, cb: (err: any, data?: ListLabelGroupsCommandOutput) => void): void;
|
|
125
|
+
listLabelGroups(args: ListLabelGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLabelGroupsCommandOutput) => void): void;
|
|
126
|
+
|
|
127
|
+
listLabels(args: ListLabelsCommandInput, options?: __HttpHandlerOptions): Promise<ListLabelsCommandOutput>;
|
|
128
|
+
listLabels(args: ListLabelsCommandInput, cb: (err: any, data?: ListLabelsCommandOutput) => void): void;
|
|
129
|
+
listLabels(args: ListLabelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLabelsCommandOutput) => void): void;
|
|
130
|
+
|
|
90
131
|
listModels(args: ListModelsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelsCommandOutput>;
|
|
91
132
|
listModels(args: ListModelsCommandInput, cb: (err: any, data?: ListModelsCommandOutput) => void): void;
|
|
92
133
|
listModels(args: ListModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelsCommandOutput) => void): void;
|
|
@@ -122,4 +163,8 @@ export declare class LookoutEquipment extends LookoutEquipmentClient {
|
|
|
122
163
|
updateInferenceScheduler(args: UpdateInferenceSchedulerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInferenceSchedulerCommandOutput>;
|
|
123
164
|
updateInferenceScheduler(args: UpdateInferenceSchedulerCommandInput, cb: (err: any, data?: UpdateInferenceSchedulerCommandOutput) => void): void;
|
|
124
165
|
updateInferenceScheduler(args: UpdateInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInferenceSchedulerCommandOutput) => void): void;
|
|
166
|
+
|
|
167
|
+
updateLabelGroup(args: UpdateLabelGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLabelGroupCommandOutput>;
|
|
168
|
+
updateLabelGroup(args: UpdateLabelGroupCommandInput, cb: (err: any, data?: UpdateLabelGroupCommandOutput) => void): void;
|
|
169
|
+
updateLabelGroup(args: UpdateLabelGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLabelGroupCommandOutput) => void): void;
|
|
125
170
|
}
|
|
@@ -8,19 +8,27 @@ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfig
|
|
|
8
8
|
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "./commands/CreateDatasetCommand";
|
|
10
10
|
import { CreateInferenceSchedulerCommandInput, CreateInferenceSchedulerCommandOutput } from "./commands/CreateInferenceSchedulerCommand";
|
|
11
|
+
import { CreateLabelCommandInput, CreateLabelCommandOutput } from "./commands/CreateLabelCommand";
|
|
12
|
+
import { CreateLabelGroupCommandInput, CreateLabelGroupCommandOutput } from "./commands/CreateLabelGroupCommand";
|
|
11
13
|
import { CreateModelCommandInput, CreateModelCommandOutput } from "./commands/CreateModelCommand";
|
|
12
14
|
import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
|
|
13
15
|
import { DeleteInferenceSchedulerCommandInput, DeleteInferenceSchedulerCommandOutput } from "./commands/DeleteInferenceSchedulerCommand";
|
|
16
|
+
import { DeleteLabelCommandInput, DeleteLabelCommandOutput } from "./commands/DeleteLabelCommand";
|
|
17
|
+
import { DeleteLabelGroupCommandInput, DeleteLabelGroupCommandOutput } from "./commands/DeleteLabelGroupCommand";
|
|
14
18
|
import { DeleteModelCommandInput, DeleteModelCommandOutput } from "./commands/DeleteModelCommand";
|
|
15
19
|
import { DescribeDataIngestionJobCommandInput, DescribeDataIngestionJobCommandOutput } from "./commands/DescribeDataIngestionJobCommand";
|
|
16
20
|
import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "./commands/DescribeDatasetCommand";
|
|
17
21
|
import { DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerCommandOutput } from "./commands/DescribeInferenceSchedulerCommand";
|
|
22
|
+
import { DescribeLabelCommandInput, DescribeLabelCommandOutput } from "./commands/DescribeLabelCommand";
|
|
23
|
+
import { DescribeLabelGroupCommandInput, DescribeLabelGroupCommandOutput } from "./commands/DescribeLabelGroupCommand";
|
|
18
24
|
import { DescribeModelCommandInput, DescribeModelCommandOutput } from "./commands/DescribeModelCommand";
|
|
19
25
|
import { ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput } from "./commands/ListDataIngestionJobsCommand";
|
|
20
26
|
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
|
|
21
27
|
import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "./commands/ListInferenceEventsCommand";
|
|
22
28
|
import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "./commands/ListInferenceExecutionsCommand";
|
|
23
29
|
import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "./commands/ListInferenceSchedulersCommand";
|
|
30
|
+
import { ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput } from "./commands/ListLabelGroupsCommand";
|
|
31
|
+
import { ListLabelsCommandInput, ListLabelsCommandOutput } from "./commands/ListLabelsCommand";
|
|
24
32
|
import { ListModelsCommandInput, ListModelsCommandOutput } from "./commands/ListModelsCommand";
|
|
25
33
|
import { ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput } from "./commands/ListSensorStatisticsCommand";
|
|
26
34
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
@@ -30,8 +38,9 @@ import { StopInferenceSchedulerCommandInput, StopInferenceSchedulerCommandOutput
|
|
|
30
38
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
31
39
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
32
40
|
import { UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput } from "./commands/UpdateInferenceSchedulerCommand";
|
|
33
|
-
|
|
34
|
-
export declare type
|
|
41
|
+
import { UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput } from "./commands/UpdateLabelGroupCommand";
|
|
42
|
+
export declare type ServiceInputTypes = CreateDatasetCommandInput | CreateInferenceSchedulerCommandInput | CreateLabelCommandInput | CreateLabelGroupCommandInput | CreateModelCommandInput | DeleteDatasetCommandInput | DeleteInferenceSchedulerCommandInput | DeleteLabelCommandInput | DeleteLabelGroupCommandInput | DeleteModelCommandInput | DescribeDataIngestionJobCommandInput | DescribeDatasetCommandInput | DescribeInferenceSchedulerCommandInput | DescribeLabelCommandInput | DescribeLabelGroupCommandInput | DescribeModelCommandInput | ListDataIngestionJobsCommandInput | ListDatasetsCommandInput | ListInferenceEventsCommandInput | ListInferenceExecutionsCommandInput | ListInferenceSchedulersCommandInput | ListLabelGroupsCommandInput | ListLabelsCommandInput | ListModelsCommandInput | ListSensorStatisticsCommandInput | ListTagsForResourceCommandInput | StartDataIngestionJobCommandInput | StartInferenceSchedulerCommandInput | StopInferenceSchedulerCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateInferenceSchedulerCommandInput | UpdateLabelGroupCommandInput;
|
|
43
|
+
export declare type ServiceOutputTypes = CreateDatasetCommandOutput | CreateInferenceSchedulerCommandOutput | CreateLabelCommandOutput | CreateLabelGroupCommandOutput | CreateModelCommandOutput | DeleteDatasetCommandOutput | DeleteInferenceSchedulerCommandOutput | DeleteLabelCommandOutput | DeleteLabelGroupCommandOutput | DeleteModelCommandOutput | DescribeDataIngestionJobCommandOutput | DescribeDatasetCommandOutput | DescribeInferenceSchedulerCommandOutput | DescribeLabelCommandOutput | DescribeLabelGroupCommandOutput | DescribeModelCommandOutput | ListDataIngestionJobsCommandOutput | ListDatasetsCommandOutput | ListInferenceEventsCommandOutput | ListInferenceExecutionsCommandOutput | ListInferenceSchedulersCommandOutput | ListLabelGroupsCommandOutput | ListLabelsCommandOutput | ListModelsCommandOutput | ListSensorStatisticsCommandOutput | ListTagsForResourceCommandOutput | StartDataIngestionJobCommandOutput | StartInferenceSchedulerCommandOutput | StopInferenceSchedulerCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateInferenceSchedulerCommandOutput | UpdateLabelGroupCommandOutput;
|
|
35
44
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
36
45
|
|
|
37
46
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
4
|
+
import { CreateLabelRequest, CreateLabelResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateLabelCommandInput extends CreateLabelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateLabelCommandOutput extends CreateLabelResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateLabelCommand extends $Command<CreateLabelCommandInput, CreateLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateLabelCommandInput;
|
|
12
|
+
constructor(input: CreateLabelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLabelCommandInput, CreateLabelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
4
|
+
import { CreateLabelGroupRequest, CreateLabelGroupResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateLabelGroupCommandInput extends CreateLabelGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateLabelGroupCommandOutput extends CreateLabelGroupResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateLabelGroupCommand extends $Command<CreateLabelGroupCommandInput, CreateLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateLabelGroupCommandInput;
|
|
12
|
+
constructor(input: CreateLabelGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLabelGroupCommandInput, CreateLabelGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
4
|
+
import { DeleteLabelRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteLabelCommandInput extends DeleteLabelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteLabelCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteLabelCommand extends $Command<DeleteLabelCommandInput, DeleteLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteLabelCommandInput;
|
|
12
|
+
constructor(input: DeleteLabelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLabelCommandInput, DeleteLabelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
4
|
+
import { DeleteLabelGroupRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteLabelGroupCommandInput extends DeleteLabelGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteLabelGroupCommand extends $Command<DeleteLabelGroupCommandInput, DeleteLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteLabelGroupCommandInput;
|
|
12
|
+
constructor(input: DeleteLabelGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLabelGroupCommandInput, DeleteLabelGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
4
|
+
import { DescribeLabelRequest, DescribeLabelResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeLabelCommandInput extends DescribeLabelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeLabelCommand extends $Command<DescribeLabelCommandInput, DescribeLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeLabelCommandInput;
|
|
12
|
+
constructor(input: DescribeLabelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLabelCommandInput, DescribeLabelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
4
|
+
import { DescribeLabelGroupRequest, DescribeLabelGroupResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeLabelGroupCommandInput extends DescribeLabelGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeLabelGroupCommand extends $Command<DescribeLabelGroupCommandInput, DescribeLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeLabelGroupCommandInput;
|
|
12
|
+
constructor(input: DescribeLabelGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLabelGroupCommandInput, DescribeLabelGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
4
|
+
import { ListLabelGroupsRequest, ListLabelGroupsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListLabelGroupsCommandInput extends ListLabelGroupsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListLabelGroupsCommand extends $Command<ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
11
|
+
readonly input: ListLabelGroupsCommandInput;
|
|
12
|
+
constructor(input: ListLabelGroupsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
4
|
+
import { ListLabelsRequest, ListLabelsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListLabelsCommandInput extends ListLabelsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListLabelsCommand extends $Command<ListLabelsCommandInput, ListLabelsCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
11
|
+
readonly input: ListLabelsCommandInput;
|
|
12
|
+
constructor(input: ListLabelsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLabelsCommandInput, ListLabelsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
4
|
+
import { UpdateLabelGroupRequest } from "../models/models_0";
|
|
5
|
+
export interface UpdateLabelGroupCommandInput extends UpdateLabelGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateLabelGroupCommand extends $Command<UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateLabelGroupCommandInput;
|
|
12
|
+
constructor(input: UpdateLabelGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
export * from "./CreateDatasetCommand";
|
|
2
2
|
export * from "./CreateInferenceSchedulerCommand";
|
|
3
|
+
export * from "./CreateLabelCommand";
|
|
4
|
+
export * from "./CreateLabelGroupCommand";
|
|
3
5
|
export * from "./CreateModelCommand";
|
|
4
6
|
export * from "./DeleteDatasetCommand";
|
|
5
7
|
export * from "./DeleteInferenceSchedulerCommand";
|
|
8
|
+
export * from "./DeleteLabelCommand";
|
|
9
|
+
export * from "./DeleteLabelGroupCommand";
|
|
6
10
|
export * from "./DeleteModelCommand";
|
|
7
11
|
export * from "./DescribeDataIngestionJobCommand";
|
|
8
12
|
export * from "./DescribeDatasetCommand";
|
|
9
13
|
export * from "./DescribeInferenceSchedulerCommand";
|
|
14
|
+
export * from "./DescribeLabelCommand";
|
|
15
|
+
export * from "./DescribeLabelGroupCommand";
|
|
10
16
|
export * from "./DescribeModelCommand";
|
|
11
17
|
export * from "./ListDataIngestionJobsCommand";
|
|
12
18
|
export * from "./ListDatasetsCommand";
|
|
13
19
|
export * from "./ListInferenceEventsCommand";
|
|
14
20
|
export * from "./ListInferenceExecutionsCommand";
|
|
15
21
|
export * from "./ListInferenceSchedulersCommand";
|
|
22
|
+
export * from "./ListLabelGroupsCommand";
|
|
23
|
+
export * from "./ListLabelsCommand";
|
|
16
24
|
export * from "./ListModelsCommand";
|
|
17
25
|
export * from "./ListSensorStatisticsCommand";
|
|
18
26
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -22,3 +30,4 @@ export * from "./StopInferenceSchedulerCommand";
|
|
|
22
30
|
export * from "./TagResourceCommand";
|
|
23
31
|
export * from "./UntagResourceCommand";
|
|
24
32
|
export * from "./UpdateInferenceSchedulerCommand";
|
|
33
|
+
export * from "./UpdateLabelGroupCommand";
|
|
@@ -173,6 +173,49 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
173
173
|
|
|
174
174
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
175
175
|
}
|
|
176
|
+
export declare enum LabelRating {
|
|
177
|
+
ANOMALY = "ANOMALY",
|
|
178
|
+
NEUTRAL = "NEUTRAL",
|
|
179
|
+
NO_ANOMALY = "NO_ANOMALY"
|
|
180
|
+
}
|
|
181
|
+
export interface CreateLabelRequest {
|
|
182
|
+
|
|
183
|
+
LabelGroupName: string | undefined;
|
|
184
|
+
|
|
185
|
+
StartTime: Date | undefined;
|
|
186
|
+
|
|
187
|
+
EndTime: Date | undefined;
|
|
188
|
+
|
|
189
|
+
Rating: LabelRating | string | undefined;
|
|
190
|
+
|
|
191
|
+
FaultCode?: string;
|
|
192
|
+
|
|
193
|
+
Notes?: string;
|
|
194
|
+
|
|
195
|
+
Equipment?: string;
|
|
196
|
+
|
|
197
|
+
ClientToken?: string;
|
|
198
|
+
}
|
|
199
|
+
export interface CreateLabelResponse {
|
|
200
|
+
|
|
201
|
+
LabelId?: string;
|
|
202
|
+
}
|
|
203
|
+
export interface CreateLabelGroupRequest {
|
|
204
|
+
|
|
205
|
+
LabelGroupName: string | undefined;
|
|
206
|
+
|
|
207
|
+
FaultCodes?: string[];
|
|
208
|
+
|
|
209
|
+
ClientToken?: string;
|
|
210
|
+
|
|
211
|
+
Tags?: Tag[];
|
|
212
|
+
}
|
|
213
|
+
export interface CreateLabelGroupResponse {
|
|
214
|
+
|
|
215
|
+
LabelGroupName?: string;
|
|
216
|
+
|
|
217
|
+
LabelGroupArn?: string;
|
|
218
|
+
}
|
|
176
219
|
export declare enum TargetSamplingRate {
|
|
177
220
|
PT10M = "PT10M",
|
|
178
221
|
PT10S = "PT10S",
|
|
@@ -201,7 +244,9 @@ export interface LabelsS3InputConfiguration {
|
|
|
201
244
|
|
|
202
245
|
export interface LabelsInputConfiguration {
|
|
203
246
|
|
|
204
|
-
S3InputConfiguration
|
|
247
|
+
S3InputConfiguration?: LabelsS3InputConfiguration;
|
|
248
|
+
|
|
249
|
+
LabelGroupName?: string;
|
|
205
250
|
}
|
|
206
251
|
export interface CreateModelRequest {
|
|
207
252
|
|
|
@@ -252,6 +297,16 @@ export interface DeleteInferenceSchedulerRequest {
|
|
|
252
297
|
|
|
253
298
|
InferenceSchedulerName: string | undefined;
|
|
254
299
|
}
|
|
300
|
+
export interface DeleteLabelRequest {
|
|
301
|
+
|
|
302
|
+
LabelGroupName: string | undefined;
|
|
303
|
+
|
|
304
|
+
LabelId: string | undefined;
|
|
305
|
+
}
|
|
306
|
+
export interface DeleteLabelGroupRequest {
|
|
307
|
+
|
|
308
|
+
LabelGroupName: string | undefined;
|
|
309
|
+
}
|
|
255
310
|
export interface DeleteModelRequest {
|
|
256
311
|
|
|
257
312
|
ModelName: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput } from "../commands/ListLabelGroupsCommand";
|
|
3
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListLabelGroups(config: LookoutEquipmentPaginationConfiguration, input: ListLabelGroupsCommandInput, ...additionalArguments: any): Paginator<ListLabelGroupsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListLabelsCommandInput, ListLabelsCommandOutput } from "../commands/ListLabelsCommand";
|
|
3
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListLabels(config: LookoutEquipmentPaginationConfiguration, input: ListLabelsCommandInput, ...additionalArguments: any): Paginator<ListLabelsCommandOutput>;
|
|
@@ -4,5 +4,7 @@ export * from "./ListDatasetsPaginator";
|
|
|
4
4
|
export * from "./ListInferenceEventsPaginator";
|
|
5
5
|
export * from "./ListInferenceExecutionsPaginator";
|
|
6
6
|
export * from "./ListInferenceSchedulersPaginator";
|
|
7
|
+
export * from "./ListLabelGroupsPaginator";
|
|
8
|
+
export * from "./ListLabelsPaginator";
|
|
7
9
|
export * from "./ListModelsPaginator";
|
|
8
10
|
export * from "./ListSensorStatisticsPaginator";
|