@aws-sdk/client-lookoutequipment 3.76.0 → 3.80.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 +30 -0
- package/dist-cjs/LookoutEquipment.js +15 -0
- package/dist-cjs/commands/ListSensorStatisticsCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +121 -8
- package/dist-cjs/pagination/ListDataIngestionJobsPaginator.js +2 -1
- package/dist-cjs/pagination/ListDatasetsPaginator.js +2 -1
- package/dist-cjs/pagination/ListInferenceExecutionsPaginator.js +2 -1
- package/dist-cjs/pagination/ListInferenceSchedulersPaginator.js +2 -1
- package/dist-cjs/pagination/ListModelsPaginator.js +2 -1
- package/dist-cjs/pagination/ListSensorStatisticsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +264 -1
- package/dist-es/LookoutEquipment.js +15 -0
- package/dist-es/commands/ListSensorStatisticsCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +83 -4
- package/dist-es/pagination/ListDataIngestionJobsPaginator.js +3 -2
- package/dist-es/pagination/ListDatasetsPaginator.js +3 -2
- package/dist-es/pagination/ListInferenceExecutionsPaginator.js +3 -2
- package/dist-es/pagination/ListInferenceSchedulersPaginator.js +3 -2
- package/dist-es/pagination/ListModelsPaginator.js +3 -2
- package/dist-es/pagination/ListSensorStatisticsPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +278 -2
- package/dist-types/LookoutEquipment.d.ts +11 -2
- package/dist-types/LookoutEquipmentClient.d.ts +3 -2
- package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
- package/dist-types/commands/ListSensorStatisticsCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +656 -27
- package/dist-types/pagination/ListSensorStatisticsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +3 -0
- package/dist-types/ts3.4/LookoutEquipment.d.ts +5 -0
- package/dist-types/ts3.4/LookoutEquipmentClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/ListSensorStatisticsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +54 -489
- package/dist-types/ts3.4/pagination/ListSensorStatisticsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +3 -0
- package/package.json +25 -25
|
@@ -7,7 +7,7 @@ export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {
|
|
|
7
7
|
export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Provides a JSON description of the data
|
|
10
|
+
* <p>Provides a JSON description of the data in each time series dataset, including names, column names, and data types.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { ListSensorStatisticsRequest, ListSensorStatisticsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListSensorStatisticsCommandInput extends ListSensorStatisticsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>
|
|
11
|
+
* Lists statistics about the data collected for each of the sensors that have been successfully ingested in the particular dataset. Can also be used to retreive Sensor Statistics for a previous ingestion job.
|
|
12
|
+
* </p>
|
|
13
|
+
* @example
|
|
14
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
15
|
+
* ```javascript
|
|
16
|
+
* import { LookoutEquipmentClient, ListSensorStatisticsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
|
|
17
|
+
* // const { LookoutEquipmentClient, ListSensorStatisticsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
|
|
18
|
+
* const client = new LookoutEquipmentClient(config);
|
|
19
|
+
* const command = new ListSensorStatisticsCommand(input);
|
|
20
|
+
* const response = await client.send(command);
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* @see {@link ListSensorStatisticsCommandInput} for command's `input` shape.
|
|
24
|
+
* @see {@link ListSensorStatisticsCommandOutput} for command's `response` shape.
|
|
25
|
+
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export declare class ListSensorStatisticsCommand extends $Command<ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
29
|
+
readonly input: ListSensorStatisticsCommandInput;
|
|
30
|
+
constructor(input: ListSensorStatisticsCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -13,6 +13,7 @@ export * from "./ListDatasetsCommand";
|
|
|
13
13
|
export * from "./ListInferenceExecutionsCommand";
|
|
14
14
|
export * from "./ListInferenceSchedulersCommand";
|
|
15
15
|
export * from "./ListModelsCommand";
|
|
16
|
+
export * from "./ListSensorStatisticsCommand";
|
|
16
17
|
export * from "./ListTagsForResourceCommand";
|
|
17
18
|
export * from "./StartDataIngestionJobCommand";
|
|
18
19
|
export * from "./StartInferenceSchedulerCommand";
|