@aws-sdk/client-lookoutequipment 3.315.0 → 3.319.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/LookoutEquipment.js +37 -462
- package/dist-cjs/protocols/Aws_json1_0.js +6 -6
- package/dist-es/LookoutEquipment.js +37 -462
- package/dist-es/protocols/Aws_json1_0.js +6 -6
- package/dist-types/LookoutEquipment.d.ts +41 -130
- package/dist-types/ts3.4/LookoutEquipment.d.ts +4 -1
- package/package.json +8 -8
|
@@ -33,299 +33,210 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
33
33
|
import { UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput } from "./commands/UpdateInferenceSchedulerCommand";
|
|
34
34
|
import { UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput } from "./commands/UpdateLabelGroupCommand";
|
|
35
35
|
import { LookoutEquipmentClient } from "./LookoutEquipmentClient";
|
|
36
|
-
|
|
37
|
-
* @public
|
|
38
|
-
* <p>Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify
|
|
39
|
-
* anomalies in machines from sensor data for use in predictive maintenance. </p>
|
|
40
|
-
*/
|
|
41
|
-
export declare class LookoutEquipment extends LookoutEquipmentClient {
|
|
36
|
+
export interface LookoutEquipment {
|
|
42
37
|
/**
|
|
43
|
-
* @
|
|
44
|
-
* <p>Creates a container for a collection of data being ingested for analysis. The dataset
|
|
45
|
-
* contains the metadata describing where the data is and what the data actually looks like.
|
|
46
|
-
* In other words, it contains the location of the data source, the data schema, and other
|
|
47
|
-
* information. A dataset also contains any tags associated with the ingested data. </p>
|
|
38
|
+
* @see {@link CreateDatasetCommand}
|
|
48
39
|
*/
|
|
49
40
|
createDataset(args: CreateDatasetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDatasetCommandOutput>;
|
|
50
41
|
createDataset(args: CreateDatasetCommandInput, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
51
42
|
createDataset(args: CreateDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDatasetCommandOutput) => void): void;
|
|
52
43
|
/**
|
|
53
|
-
* @
|
|
54
|
-
* <p> Creates a scheduled inference. Scheduling an inference is setting up a continuous
|
|
55
|
-
* real-time inference plan to analyze new measurement data. When setting up the schedule, you
|
|
56
|
-
* provide an S3 bucket location for the input data, assign it a delimiter between separate
|
|
57
|
-
* entries in the data, set an offset delay if desired, and set the frequency of inferencing.
|
|
58
|
-
* You must also provide an S3 bucket location for the output data. </p>
|
|
44
|
+
* @see {@link CreateInferenceSchedulerCommand}
|
|
59
45
|
*/
|
|
60
46
|
createInferenceScheduler(args: CreateInferenceSchedulerCommandInput, options?: __HttpHandlerOptions): Promise<CreateInferenceSchedulerCommandOutput>;
|
|
61
47
|
createInferenceScheduler(args: CreateInferenceSchedulerCommandInput, cb: (err: any, data?: CreateInferenceSchedulerCommandOutput) => void): void;
|
|
62
48
|
createInferenceScheduler(args: CreateInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInferenceSchedulerCommandOutput) => void): void;
|
|
63
49
|
/**
|
|
64
|
-
* @
|
|
65
|
-
* <p>
|
|
66
|
-
* Creates a label for an event.
|
|
67
|
-
* </p>
|
|
50
|
+
* @see {@link CreateLabelCommand}
|
|
68
51
|
*/
|
|
69
52
|
createLabel(args: CreateLabelCommandInput, options?: __HttpHandlerOptions): Promise<CreateLabelCommandOutput>;
|
|
70
53
|
createLabel(args: CreateLabelCommandInput, cb: (err: any, data?: CreateLabelCommandOutput) => void): void;
|
|
71
54
|
createLabel(args: CreateLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLabelCommandOutput) => void): void;
|
|
72
55
|
/**
|
|
73
|
-
* @
|
|
74
|
-
* <p>
|
|
75
|
-
* Creates a group of labels.
|
|
76
|
-
* </p>
|
|
56
|
+
* @see {@link CreateLabelGroupCommand}
|
|
77
57
|
*/
|
|
78
58
|
createLabelGroup(args: CreateLabelGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateLabelGroupCommandOutput>;
|
|
79
59
|
createLabelGroup(args: CreateLabelGroupCommandInput, cb: (err: any, data?: CreateLabelGroupCommandOutput) => void): void;
|
|
80
60
|
createLabelGroup(args: CreateLabelGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLabelGroupCommandOutput) => void): void;
|
|
81
61
|
/**
|
|
82
|
-
* @
|
|
83
|
-
* <p>Creates an ML model for data inference. </p>
|
|
84
|
-
* <p>A machine-learning (ML) model is a mathematical model that finds patterns in your data.
|
|
85
|
-
* In Amazon Lookout for Equipment, the model learns the patterns of normal behavior and
|
|
86
|
-
* detects abnormal behavior that could be potential equipment failure (or maintenance
|
|
87
|
-
* events). The models are made by analyzing normal data and abnormalities in machine behavior
|
|
88
|
-
* that have already occurred.</p>
|
|
89
|
-
* <p>Your model is trained using a portion of the data from your dataset and uses that data
|
|
90
|
-
* to learn patterns of normal behavior and abnormal patterns that lead to equipment failure.
|
|
91
|
-
* Another portion of the data is used to evaluate the model's accuracy. </p>
|
|
62
|
+
* @see {@link CreateModelCommand}
|
|
92
63
|
*/
|
|
93
64
|
createModel(args: CreateModelCommandInput, options?: __HttpHandlerOptions): Promise<CreateModelCommandOutput>;
|
|
94
65
|
createModel(args: CreateModelCommandInput, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
|
|
95
66
|
createModel(args: CreateModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateModelCommandOutput) => void): void;
|
|
96
67
|
/**
|
|
97
|
-
* @
|
|
98
|
-
* <p> Deletes a dataset and associated artifacts. The operation will check to see if any
|
|
99
|
-
* inference scheduler or data ingestion job is currently using the dataset, and if there
|
|
100
|
-
* isn't, the dataset, its metadata, and any associated data stored in S3 will be deleted.
|
|
101
|
-
* This does not affect any models that used this dataset for training and evaluation, but
|
|
102
|
-
* does prevent it from being used in the future. </p>
|
|
68
|
+
* @see {@link DeleteDatasetCommand}
|
|
103
69
|
*/
|
|
104
70
|
deleteDataset(args: DeleteDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDatasetCommandOutput>;
|
|
105
71
|
deleteDataset(args: DeleteDatasetCommandInput, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
|
|
106
72
|
deleteDataset(args: DeleteDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDatasetCommandOutput) => void): void;
|
|
107
73
|
/**
|
|
108
|
-
* @
|
|
109
|
-
* <p>Deletes an inference scheduler that has been set up. Already processed output results
|
|
110
|
-
* are not affected. </p>
|
|
74
|
+
* @see {@link DeleteInferenceSchedulerCommand}
|
|
111
75
|
*/
|
|
112
76
|
deleteInferenceScheduler(args: DeleteInferenceSchedulerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInferenceSchedulerCommandOutput>;
|
|
113
77
|
deleteInferenceScheduler(args: DeleteInferenceSchedulerCommandInput, cb: (err: any, data?: DeleteInferenceSchedulerCommandOutput) => void): void;
|
|
114
78
|
deleteInferenceScheduler(args: DeleteInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInferenceSchedulerCommandOutput) => void): void;
|
|
115
79
|
/**
|
|
116
|
-
* @
|
|
117
|
-
* <p>
|
|
118
|
-
* Deletes a label.
|
|
119
|
-
* </p>
|
|
80
|
+
* @see {@link DeleteLabelCommand}
|
|
120
81
|
*/
|
|
121
82
|
deleteLabel(args: DeleteLabelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLabelCommandOutput>;
|
|
122
83
|
deleteLabel(args: DeleteLabelCommandInput, cb: (err: any, data?: DeleteLabelCommandOutput) => void): void;
|
|
123
84
|
deleteLabel(args: DeleteLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLabelCommandOutput) => void): void;
|
|
124
85
|
/**
|
|
125
|
-
* @
|
|
126
|
-
* <p>
|
|
127
|
-
* Deletes a group of labels.
|
|
128
|
-
* </p>
|
|
86
|
+
* @see {@link DeleteLabelGroupCommand}
|
|
129
87
|
*/
|
|
130
88
|
deleteLabelGroup(args: DeleteLabelGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLabelGroupCommandOutput>;
|
|
131
89
|
deleteLabelGroup(args: DeleteLabelGroupCommandInput, cb: (err: any, data?: DeleteLabelGroupCommandOutput) => void): void;
|
|
132
90
|
deleteLabelGroup(args: DeleteLabelGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLabelGroupCommandOutput) => void): void;
|
|
133
91
|
/**
|
|
134
|
-
* @
|
|
135
|
-
* <p>Deletes an ML model currently available for Amazon Lookout for Equipment. This will
|
|
136
|
-
* prevent it from being used with an inference scheduler, even one that is already set up.
|
|
137
|
-
* </p>
|
|
92
|
+
* @see {@link DeleteModelCommand}
|
|
138
93
|
*/
|
|
139
94
|
deleteModel(args: DeleteModelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelCommandOutput>;
|
|
140
95
|
deleteModel(args: DeleteModelCommandInput, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
|
|
141
96
|
deleteModel(args: DeleteModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelCommandOutput) => void): void;
|
|
142
97
|
/**
|
|
143
|
-
* @
|
|
144
|
-
* <p>Provides information on a specific data ingestion job such as creation time, dataset
|
|
145
|
-
* ARN, and status.</p>
|
|
98
|
+
* @see {@link DescribeDataIngestionJobCommand}
|
|
146
99
|
*/
|
|
147
100
|
describeDataIngestionJob(args: DescribeDataIngestionJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataIngestionJobCommandOutput>;
|
|
148
101
|
describeDataIngestionJob(args: DescribeDataIngestionJobCommandInput, cb: (err: any, data?: DescribeDataIngestionJobCommandOutput) => void): void;
|
|
149
102
|
describeDataIngestionJob(args: DescribeDataIngestionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataIngestionJobCommandOutput) => void): void;
|
|
150
103
|
/**
|
|
151
|
-
* @
|
|
152
|
-
* <p>Provides a JSON description of the data in each time series dataset, including names,
|
|
153
|
-
* column names, and data types.</p>
|
|
104
|
+
* @see {@link DescribeDatasetCommand}
|
|
154
105
|
*/
|
|
155
106
|
describeDataset(args: DescribeDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDatasetCommandOutput>;
|
|
156
107
|
describeDataset(args: DescribeDatasetCommandInput, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
|
|
157
108
|
describeDataset(args: DescribeDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDatasetCommandOutput) => void): void;
|
|
158
109
|
/**
|
|
159
|
-
* @
|
|
160
|
-
* <p> Specifies information about the inference scheduler being used, including name, model,
|
|
161
|
-
* status, and associated metadata </p>
|
|
110
|
+
* @see {@link DescribeInferenceSchedulerCommand}
|
|
162
111
|
*/
|
|
163
112
|
describeInferenceScheduler(args: DescribeInferenceSchedulerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInferenceSchedulerCommandOutput>;
|
|
164
113
|
describeInferenceScheduler(args: DescribeInferenceSchedulerCommandInput, cb: (err: any, data?: DescribeInferenceSchedulerCommandOutput) => void): void;
|
|
165
114
|
describeInferenceScheduler(args: DescribeInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInferenceSchedulerCommandOutput) => void): void;
|
|
166
115
|
/**
|
|
167
|
-
* @
|
|
168
|
-
* <p>
|
|
169
|
-
* Returns the name of the label.
|
|
170
|
-
* </p>
|
|
116
|
+
* @see {@link DescribeLabelCommand}
|
|
171
117
|
*/
|
|
172
118
|
describeLabel(args: DescribeLabelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLabelCommandOutput>;
|
|
173
119
|
describeLabel(args: DescribeLabelCommandInput, cb: (err: any, data?: DescribeLabelCommandOutput) => void): void;
|
|
174
120
|
describeLabel(args: DescribeLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLabelCommandOutput) => void): void;
|
|
175
121
|
/**
|
|
176
|
-
* @
|
|
177
|
-
* <p>
|
|
178
|
-
* Returns information about the label group.
|
|
179
|
-
* </p>
|
|
122
|
+
* @see {@link DescribeLabelGroupCommand}
|
|
180
123
|
*/
|
|
181
124
|
describeLabelGroup(args: DescribeLabelGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLabelGroupCommandOutput>;
|
|
182
125
|
describeLabelGroup(args: DescribeLabelGroupCommandInput, cb: (err: any, data?: DescribeLabelGroupCommandOutput) => void): void;
|
|
183
126
|
describeLabelGroup(args: DescribeLabelGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLabelGroupCommandOutput) => void): void;
|
|
184
127
|
/**
|
|
185
|
-
* @
|
|
186
|
-
* <p>Provides a JSON containing the overall information about a specific ML model, including
|
|
187
|
-
* model name and ARN, dataset, training and evaluation information, status, and so on.
|
|
188
|
-
* </p>
|
|
128
|
+
* @see {@link DescribeModelCommand}
|
|
189
129
|
*/
|
|
190
130
|
describeModel(args: DescribeModelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeModelCommandOutput>;
|
|
191
131
|
describeModel(args: DescribeModelCommandInput, cb: (err: any, data?: DescribeModelCommandOutput) => void): void;
|
|
192
132
|
describeModel(args: DescribeModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeModelCommandOutput) => void): void;
|
|
193
133
|
/**
|
|
194
|
-
* @
|
|
195
|
-
* <p>Provides a list of all data ingestion jobs, including dataset name and ARN, S3 location
|
|
196
|
-
* of the input data, status, and so on. </p>
|
|
134
|
+
* @see {@link ListDataIngestionJobsCommand}
|
|
197
135
|
*/
|
|
198
136
|
listDataIngestionJobs(args: ListDataIngestionJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataIngestionJobsCommandOutput>;
|
|
199
137
|
listDataIngestionJobs(args: ListDataIngestionJobsCommandInput, cb: (err: any, data?: ListDataIngestionJobsCommandOutput) => void): void;
|
|
200
138
|
listDataIngestionJobs(args: ListDataIngestionJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataIngestionJobsCommandOutput) => void): void;
|
|
201
139
|
/**
|
|
202
|
-
* @
|
|
203
|
-
* <p>Lists all datasets currently available in your account, filtering on the dataset name.
|
|
204
|
-
* </p>
|
|
140
|
+
* @see {@link ListDatasetsCommand}
|
|
205
141
|
*/
|
|
206
142
|
listDatasets(args: ListDatasetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasetsCommandOutput>;
|
|
207
143
|
listDatasets(args: ListDatasetsCommandInput, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
|
|
208
144
|
listDatasets(args: ListDatasetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
|
|
209
145
|
/**
|
|
210
|
-
* @
|
|
211
|
-
* <p> Lists all inference events that have been found for the specified inference scheduler.
|
|
212
|
-
* </p>
|
|
146
|
+
* @see {@link ListInferenceEventsCommand}
|
|
213
147
|
*/
|
|
214
148
|
listInferenceEvents(args: ListInferenceEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceEventsCommandOutput>;
|
|
215
149
|
listInferenceEvents(args: ListInferenceEventsCommandInput, cb: (err: any, data?: ListInferenceEventsCommandOutput) => void): void;
|
|
216
150
|
listInferenceEvents(args: ListInferenceEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceEventsCommandOutput) => void): void;
|
|
217
151
|
/**
|
|
218
|
-
* @
|
|
219
|
-
* <p> Lists all inference executions that have been performed by the specified inference
|
|
220
|
-
* scheduler. </p>
|
|
152
|
+
* @see {@link ListInferenceExecutionsCommand}
|
|
221
153
|
*/
|
|
222
154
|
listInferenceExecutions(args: ListInferenceExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceExecutionsCommandOutput>;
|
|
223
155
|
listInferenceExecutions(args: ListInferenceExecutionsCommandInput, cb: (err: any, data?: ListInferenceExecutionsCommandOutput) => void): void;
|
|
224
156
|
listInferenceExecutions(args: ListInferenceExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceExecutionsCommandOutput) => void): void;
|
|
225
157
|
/**
|
|
226
|
-
* @
|
|
227
|
-
* <p>Retrieves a list of all inference schedulers currently available for your account.
|
|
228
|
-
* </p>
|
|
158
|
+
* @see {@link ListInferenceSchedulersCommand}
|
|
229
159
|
*/
|
|
230
160
|
listInferenceSchedulers(args: ListInferenceSchedulersCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceSchedulersCommandOutput>;
|
|
231
161
|
listInferenceSchedulers(args: ListInferenceSchedulersCommandInput, cb: (err: any, data?: ListInferenceSchedulersCommandOutput) => void): void;
|
|
232
162
|
listInferenceSchedulers(args: ListInferenceSchedulersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceSchedulersCommandOutput) => void): void;
|
|
233
163
|
/**
|
|
234
|
-
* @
|
|
235
|
-
* <p>
|
|
236
|
-
* Returns a list of the label groups.
|
|
237
|
-
* </p>
|
|
164
|
+
* @see {@link ListLabelGroupsCommand}
|
|
238
165
|
*/
|
|
239
166
|
listLabelGroups(args: ListLabelGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListLabelGroupsCommandOutput>;
|
|
240
167
|
listLabelGroups(args: ListLabelGroupsCommandInput, cb: (err: any, data?: ListLabelGroupsCommandOutput) => void): void;
|
|
241
168
|
listLabelGroups(args: ListLabelGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLabelGroupsCommandOutput) => void): void;
|
|
242
169
|
/**
|
|
243
|
-
* @
|
|
244
|
-
* <p>
|
|
245
|
-
* Provides a list of labels.
|
|
246
|
-
* </p>
|
|
170
|
+
* @see {@link ListLabelsCommand}
|
|
247
171
|
*/
|
|
248
172
|
listLabels(args: ListLabelsCommandInput, options?: __HttpHandlerOptions): Promise<ListLabelsCommandOutput>;
|
|
249
173
|
listLabels(args: ListLabelsCommandInput, cb: (err: any, data?: ListLabelsCommandOutput) => void): void;
|
|
250
174
|
listLabels(args: ListLabelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLabelsCommandOutput) => void): void;
|
|
251
175
|
/**
|
|
252
|
-
* @
|
|
253
|
-
* <p>Generates a list of all models in the account, including model name and ARN, dataset,
|
|
254
|
-
* and status. </p>
|
|
176
|
+
* @see {@link ListModelsCommand}
|
|
255
177
|
*/
|
|
256
178
|
listModels(args: ListModelsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelsCommandOutput>;
|
|
257
179
|
listModels(args: ListModelsCommandInput, cb: (err: any, data?: ListModelsCommandOutput) => void): void;
|
|
258
180
|
listModels(args: ListModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelsCommandOutput) => void): void;
|
|
259
181
|
/**
|
|
260
|
-
* @
|
|
261
|
-
* <p> Lists statistics about the data collected for each of the sensors that have been
|
|
262
|
-
* successfully ingested in the particular dataset. Can also be used to retreive Sensor
|
|
263
|
-
* Statistics for a previous ingestion job. </p>
|
|
182
|
+
* @see {@link ListSensorStatisticsCommand}
|
|
264
183
|
*/
|
|
265
184
|
listSensorStatistics(args: ListSensorStatisticsCommandInput, options?: __HttpHandlerOptions): Promise<ListSensorStatisticsCommandOutput>;
|
|
266
185
|
listSensorStatistics(args: ListSensorStatisticsCommandInput, cb: (err: any, data?: ListSensorStatisticsCommandOutput) => void): void;
|
|
267
186
|
listSensorStatistics(args: ListSensorStatisticsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSensorStatisticsCommandOutput) => void): void;
|
|
268
187
|
/**
|
|
269
|
-
* @
|
|
270
|
-
* <p>Lists all the tags for a specified resource, including key and value. </p>
|
|
188
|
+
* @see {@link ListTagsForResourceCommand}
|
|
271
189
|
*/
|
|
272
190
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
273
191
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
274
192
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
275
193
|
/**
|
|
276
|
-
* @
|
|
277
|
-
* <p>Starts a data ingestion job. Amazon Lookout for Equipment returns the job status.
|
|
278
|
-
* </p>
|
|
194
|
+
* @see {@link StartDataIngestionJobCommand}
|
|
279
195
|
*/
|
|
280
196
|
startDataIngestionJob(args: StartDataIngestionJobCommandInput, options?: __HttpHandlerOptions): Promise<StartDataIngestionJobCommandOutput>;
|
|
281
197
|
startDataIngestionJob(args: StartDataIngestionJobCommandInput, cb: (err: any, data?: StartDataIngestionJobCommandOutput) => void): void;
|
|
282
198
|
startDataIngestionJob(args: StartDataIngestionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDataIngestionJobCommandOutput) => void): void;
|
|
283
199
|
/**
|
|
284
|
-
* @
|
|
285
|
-
* <p>Starts an inference scheduler. </p>
|
|
200
|
+
* @see {@link StartInferenceSchedulerCommand}
|
|
286
201
|
*/
|
|
287
202
|
startInferenceScheduler(args: StartInferenceSchedulerCommandInput, options?: __HttpHandlerOptions): Promise<StartInferenceSchedulerCommandOutput>;
|
|
288
203
|
startInferenceScheduler(args: StartInferenceSchedulerCommandInput, cb: (err: any, data?: StartInferenceSchedulerCommandOutput) => void): void;
|
|
289
204
|
startInferenceScheduler(args: StartInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartInferenceSchedulerCommandOutput) => void): void;
|
|
290
205
|
/**
|
|
291
|
-
* @
|
|
292
|
-
* <p>Stops an inference scheduler. </p>
|
|
206
|
+
* @see {@link StopInferenceSchedulerCommand}
|
|
293
207
|
*/
|
|
294
208
|
stopInferenceScheduler(args: StopInferenceSchedulerCommandInput, options?: __HttpHandlerOptions): Promise<StopInferenceSchedulerCommandOutput>;
|
|
295
209
|
stopInferenceScheduler(args: StopInferenceSchedulerCommandInput, cb: (err: any, data?: StopInferenceSchedulerCommandOutput) => void): void;
|
|
296
210
|
stopInferenceScheduler(args: StopInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopInferenceSchedulerCommandOutput) => void): void;
|
|
297
211
|
/**
|
|
298
|
-
* @
|
|
299
|
-
* <p>Associates a given tag to a resource in your account. A tag is a key-value pair which
|
|
300
|
-
* can be added to an Amazon Lookout for Equipment resource as metadata. Tags can be used for
|
|
301
|
-
* organizing your resources as well as helping you to search and filter by tag. Multiple tags
|
|
302
|
-
* can be added to a resource, either when you create it, or later. Up to 50 tags can be
|
|
303
|
-
* associated with each resource. </p>
|
|
212
|
+
* @see {@link TagResourceCommand}
|
|
304
213
|
*/
|
|
305
214
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
306
215
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
307
216
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
308
217
|
/**
|
|
309
|
-
* @
|
|
310
|
-
* <p>Removes a specific tag from a given resource. The tag is specified by its key. </p>
|
|
218
|
+
* @see {@link UntagResourceCommand}
|
|
311
219
|
*/
|
|
312
220
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
313
221
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
314
222
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
315
223
|
/**
|
|
316
|
-
* @
|
|
317
|
-
* <p>Updates an inference scheduler. </p>
|
|
224
|
+
* @see {@link UpdateInferenceSchedulerCommand}
|
|
318
225
|
*/
|
|
319
226
|
updateInferenceScheduler(args: UpdateInferenceSchedulerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInferenceSchedulerCommandOutput>;
|
|
320
227
|
updateInferenceScheduler(args: UpdateInferenceSchedulerCommandInput, cb: (err: any, data?: UpdateInferenceSchedulerCommandOutput) => void): void;
|
|
321
228
|
updateInferenceScheduler(args: UpdateInferenceSchedulerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInferenceSchedulerCommandOutput) => void): void;
|
|
322
229
|
/**
|
|
323
|
-
* @
|
|
324
|
-
* <p>
|
|
325
|
-
* Updates the label group.
|
|
326
|
-
* </p>
|
|
230
|
+
* @see {@link UpdateLabelGroupCommand}
|
|
327
231
|
*/
|
|
328
232
|
updateLabelGroup(args: UpdateLabelGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLabelGroupCommandOutput>;
|
|
329
233
|
updateLabelGroup(args: UpdateLabelGroupCommandInput, cb: (err: any, data?: UpdateLabelGroupCommandOutput) => void): void;
|
|
330
234
|
updateLabelGroup(args: UpdateLabelGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLabelGroupCommandOutput) => void): void;
|
|
331
235
|
}
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
* <p>Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify
|
|
239
|
+
* anomalies in machines from sensor data for use in predictive maintenance. </p>
|
|
240
|
+
*/
|
|
241
|
+
export declare class LookoutEquipment extends LookoutEquipmentClient implements LookoutEquipment {
|
|
242
|
+
}
|
|
@@ -132,7 +132,7 @@ import {
|
|
|
132
132
|
UpdateLabelGroupCommandOutput,
|
|
133
133
|
} from "./commands/UpdateLabelGroupCommand";
|
|
134
134
|
import { LookoutEquipmentClient } from "./LookoutEquipmentClient";
|
|
135
|
-
export
|
|
135
|
+
export interface LookoutEquipment {
|
|
136
136
|
createDataset(
|
|
137
137
|
args: CreateDatasetCommandInput,
|
|
138
138
|
options?: __HttpHandlerOptions
|
|
@@ -563,3 +563,6 @@ export declare class LookoutEquipment extends LookoutEquipmentClient {
|
|
|
563
563
|
cb: (err: any, data?: UpdateLabelGroupCommandOutput) => void
|
|
564
564
|
): void;
|
|
565
565
|
}
|
|
566
|
+
export declare class LookoutEquipment
|
|
567
|
+
extends LookoutEquipmentClient
|
|
568
|
+
implements LookoutEquipment {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lookoutequipment",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lookoutequipment Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.319.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.319.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.319.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.319.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|