@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.
Files changed (44) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/LookoutEquipment.js +15 -0
  3. package/dist-cjs/commands/ListSensorStatisticsCommand.js +36 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/models/models_0.js +121 -8
  6. package/dist-cjs/pagination/ListDataIngestionJobsPaginator.js +2 -1
  7. package/dist-cjs/pagination/ListDatasetsPaginator.js +2 -1
  8. package/dist-cjs/pagination/ListInferenceExecutionsPaginator.js +2 -1
  9. package/dist-cjs/pagination/ListInferenceSchedulersPaginator.js +2 -1
  10. package/dist-cjs/pagination/ListModelsPaginator.js +2 -1
  11. package/dist-cjs/pagination/ListSensorStatisticsPaginator.js +36 -0
  12. package/dist-cjs/pagination/index.js +1 -0
  13. package/dist-cjs/protocols/Aws_json1_0.js +264 -1
  14. package/dist-es/LookoutEquipment.js +15 -0
  15. package/dist-es/commands/ListSensorStatisticsCommand.js +39 -0
  16. package/dist-es/commands/index.js +1 -0
  17. package/dist-es/models/models_0.js +83 -4
  18. package/dist-es/pagination/ListDataIngestionJobsPaginator.js +3 -2
  19. package/dist-es/pagination/ListDatasetsPaginator.js +3 -2
  20. package/dist-es/pagination/ListInferenceExecutionsPaginator.js +3 -2
  21. package/dist-es/pagination/ListInferenceSchedulersPaginator.js +3 -2
  22. package/dist-es/pagination/ListModelsPaginator.js +3 -2
  23. package/dist-es/pagination/ListSensorStatisticsPaginator.js +75 -0
  24. package/dist-es/pagination/index.js +1 -0
  25. package/dist-es/protocols/Aws_json1_0.js +278 -2
  26. package/dist-types/LookoutEquipment.d.ts +11 -2
  27. package/dist-types/LookoutEquipmentClient.d.ts +3 -2
  28. package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +1 -1
  29. package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
  30. package/dist-types/commands/ListSensorStatisticsCommand.d.ts +37 -0
  31. package/dist-types/commands/index.d.ts +1 -0
  32. package/dist-types/models/models_0.d.ts +656 -27
  33. package/dist-types/pagination/ListSensorStatisticsPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +1 -0
  35. package/dist-types/protocols/Aws_json1_0.d.ts +3 -0
  36. package/dist-types/ts3.4/LookoutEquipment.d.ts +5 -0
  37. package/dist-types/ts3.4/LookoutEquipmentClient.d.ts +3 -2
  38. package/dist-types/ts3.4/commands/ListSensorStatisticsCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +54 -489
  41. package/dist-types/ts3.4/pagination/ListSensorStatisticsPaginator.d.ts +4 -0
  42. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  43. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +3 -0
  44. 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 that is in each time series dataset, including names, column names, and data types.</p>
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";