@aws-sdk/client-lookoutequipment 3.78.0 → 3.79.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 (34) hide show
  1. package/CHANGELOG.md +11 -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/ListSensorStatisticsPaginator.js +36 -0
  7. package/dist-cjs/pagination/index.js +1 -0
  8. package/dist-cjs/protocols/Aws_json1_0.js +264 -1
  9. package/dist-es/LookoutEquipment.js +15 -0
  10. package/dist-es/commands/ListSensorStatisticsCommand.js +39 -0
  11. package/dist-es/commands/index.js +1 -0
  12. package/dist-es/models/models_0.js +83 -4
  13. package/dist-es/pagination/ListSensorStatisticsPaginator.js +75 -0
  14. package/dist-es/pagination/index.js +1 -0
  15. package/dist-es/protocols/Aws_json1_0.js +278 -2
  16. package/dist-types/LookoutEquipment.d.ts +11 -2
  17. package/dist-types/LookoutEquipmentClient.d.ts +3 -2
  18. package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
  20. package/dist-types/commands/ListSensorStatisticsCommand.d.ts +37 -0
  21. package/dist-types/commands/index.d.ts +1 -0
  22. package/dist-types/models/models_0.d.ts +656 -27
  23. package/dist-types/pagination/ListSensorStatisticsPaginator.d.ts +4 -0
  24. package/dist-types/pagination/index.d.ts +1 -0
  25. package/dist-types/protocols/Aws_json1_0.d.ts +3 -0
  26. package/dist-types/ts3.4/LookoutEquipment.d.ts +5 -0
  27. package/dist-types/ts3.4/LookoutEquipmentClient.d.ts +3 -2
  28. package/dist-types/ts3.4/commands/ListSensorStatisticsCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +54 -489
  31. package/dist-types/ts3.4/pagination/ListSensorStatisticsPaginator.d.ts +4 -0
  32. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  33. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +3 -0
  34. package/package.json +8 -8
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput } from "../commands/ListSensorStatisticsCommand";
3
+ import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListSensorStatistics(config: LookoutEquipmentPaginationConfiguration, input: ListSensorStatisticsCommandInput, ...additionalArguments: any): Paginator<ListSensorStatisticsCommandOutput>;
@@ -4,3 +4,4 @@ export * from "./ListDatasetsPaginator";
4
4
  export * from "./ListInferenceExecutionsPaginator";
5
5
  export * from "./ListInferenceSchedulersPaginator";
6
6
  export * from "./ListModelsPaginator";
7
+ export * from "./ListSensorStatisticsPaginator";
@@ -15,6 +15,7 @@ import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands
15
15
  import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "../commands/ListInferenceExecutionsCommand";
16
16
  import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "../commands/ListInferenceSchedulersCommand";
17
17
  import { ListModelsCommandInput, ListModelsCommandOutput } from "../commands/ListModelsCommand";
18
+ import { ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput } from "../commands/ListSensorStatisticsCommand";
18
19
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
19
20
  import { StartDataIngestionJobCommandInput, StartDataIngestionJobCommandOutput } from "../commands/StartDataIngestionJobCommand";
20
21
  import { StartInferenceSchedulerCommandInput, StartInferenceSchedulerCommandOutput } from "../commands/StartInferenceSchedulerCommand";
@@ -37,6 +38,7 @@ export declare const serializeAws_json1_0ListDatasetsCommand: (input: ListDatase
37
38
  export declare const serializeAws_json1_0ListInferenceExecutionsCommand: (input: ListInferenceExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
39
  export declare const serializeAws_json1_0ListInferenceSchedulersCommand: (input: ListInferenceSchedulersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
40
  export declare const serializeAws_json1_0ListModelsCommand: (input: ListModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ export declare const serializeAws_json1_0ListSensorStatisticsCommand: (input: ListSensorStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
42
  export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
43
  export declare const serializeAws_json1_0StartDataIngestionJobCommand: (input: StartDataIngestionJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
44
  export declare const serializeAws_json1_0StartInferenceSchedulerCommand: (input: StartInferenceSchedulerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -59,6 +61,7 @@ export declare const deserializeAws_json1_0ListDatasetsCommand: (output: __HttpR
59
61
  export declare const deserializeAws_json1_0ListInferenceExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceExecutionsCommandOutput>;
60
62
  export declare const deserializeAws_json1_0ListInferenceSchedulersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceSchedulersCommandOutput>;
61
63
  export declare const deserializeAws_json1_0ListModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListModelsCommandOutput>;
64
+ export declare const deserializeAws_json1_0ListSensorStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSensorStatisticsCommandOutput>;
62
65
  export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
63
66
  export declare const deserializeAws_json1_0StartDataIngestionJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDataIngestionJobCommandOutput>;
64
67
  export declare const deserializeAws_json1_0StartInferenceSchedulerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartInferenceSchedulerCommandOutput>;
@@ -14,6 +14,7 @@ import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/
14
14
  import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "./commands/ListInferenceExecutionsCommand";
15
15
  import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "./commands/ListInferenceSchedulersCommand";
16
16
  import { ListModelsCommandInput, ListModelsCommandOutput } from "./commands/ListModelsCommand";
17
+ import { ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput } from "./commands/ListSensorStatisticsCommand";
17
18
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
18
19
  import { StartDataIngestionJobCommandInput, StartDataIngestionJobCommandOutput } from "./commands/StartDataIngestionJobCommand";
19
20
  import { StartInferenceSchedulerCommandInput, StartInferenceSchedulerCommandOutput } from "./commands/StartInferenceSchedulerCommand";
@@ -85,6 +86,10 @@ export declare class LookoutEquipment extends LookoutEquipmentClient {
85
86
  listModels(args: ListModelsCommandInput, cb: (err: any, data?: ListModelsCommandOutput) => void): void;
86
87
  listModels(args: ListModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelsCommandOutput) => void): void;
87
88
 
89
+ listSensorStatistics(args: ListSensorStatisticsCommandInput, options?: __HttpHandlerOptions): Promise<ListSensorStatisticsCommandOutput>;
90
+ listSensorStatistics(args: ListSensorStatisticsCommandInput, cb: (err: any, data?: ListSensorStatisticsCommandOutput) => void): void;
91
+ listSensorStatistics(args: ListSensorStatisticsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSensorStatisticsCommandOutput) => void): void;
92
+
88
93
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
89
94
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
90
95
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
@@ -21,6 +21,7 @@ import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/
21
21
  import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "./commands/ListInferenceExecutionsCommand";
22
22
  import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "./commands/ListInferenceSchedulersCommand";
23
23
  import { ListModelsCommandInput, ListModelsCommandOutput } from "./commands/ListModelsCommand";
24
+ import { ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput } from "./commands/ListSensorStatisticsCommand";
24
25
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
25
26
  import { StartDataIngestionJobCommandInput, StartDataIngestionJobCommandOutput } from "./commands/StartDataIngestionJobCommand";
26
27
  import { StartInferenceSchedulerCommandInput, StartInferenceSchedulerCommandOutput } from "./commands/StartInferenceSchedulerCommand";
@@ -28,8 +29,8 @@ import { StopInferenceSchedulerCommandInput, StopInferenceSchedulerCommandOutput
28
29
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
29
30
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
30
31
  import { UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput } from "./commands/UpdateInferenceSchedulerCommand";
31
- export declare type ServiceInputTypes = CreateDatasetCommandInput | CreateInferenceSchedulerCommandInput | CreateModelCommandInput | DeleteDatasetCommandInput | DeleteInferenceSchedulerCommandInput | DeleteModelCommandInput | DescribeDataIngestionJobCommandInput | DescribeDatasetCommandInput | DescribeInferenceSchedulerCommandInput | DescribeModelCommandInput | ListDataIngestionJobsCommandInput | ListDatasetsCommandInput | ListInferenceExecutionsCommandInput | ListInferenceSchedulersCommandInput | ListModelsCommandInput | ListTagsForResourceCommandInput | StartDataIngestionJobCommandInput | StartInferenceSchedulerCommandInput | StopInferenceSchedulerCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateInferenceSchedulerCommandInput;
32
- export declare type ServiceOutputTypes = CreateDatasetCommandOutput | CreateInferenceSchedulerCommandOutput | CreateModelCommandOutput | DeleteDatasetCommandOutput | DeleteInferenceSchedulerCommandOutput | DeleteModelCommandOutput | DescribeDataIngestionJobCommandOutput | DescribeDatasetCommandOutput | DescribeInferenceSchedulerCommandOutput | DescribeModelCommandOutput | ListDataIngestionJobsCommandOutput | ListDatasetsCommandOutput | ListInferenceExecutionsCommandOutput | ListInferenceSchedulersCommandOutput | ListModelsCommandOutput | ListTagsForResourceCommandOutput | StartDataIngestionJobCommandOutput | StartInferenceSchedulerCommandOutput | StopInferenceSchedulerCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateInferenceSchedulerCommandOutput;
32
+ export declare type ServiceInputTypes = CreateDatasetCommandInput | CreateInferenceSchedulerCommandInput | CreateModelCommandInput | DeleteDatasetCommandInput | DeleteInferenceSchedulerCommandInput | DeleteModelCommandInput | DescribeDataIngestionJobCommandInput | DescribeDatasetCommandInput | DescribeInferenceSchedulerCommandInput | DescribeModelCommandInput | ListDataIngestionJobsCommandInput | ListDatasetsCommandInput | ListInferenceExecutionsCommandInput | ListInferenceSchedulersCommandInput | ListModelsCommandInput | ListSensorStatisticsCommandInput | ListTagsForResourceCommandInput | StartDataIngestionJobCommandInput | StartInferenceSchedulerCommandInput | StopInferenceSchedulerCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateInferenceSchedulerCommandInput;
33
+ export declare type ServiceOutputTypes = CreateDatasetCommandOutput | CreateInferenceSchedulerCommandOutput | CreateModelCommandOutput | DeleteDatasetCommandOutput | DeleteInferenceSchedulerCommandOutput | DeleteModelCommandOutput | DescribeDataIngestionJobCommandOutput | DescribeDatasetCommandOutput | DescribeInferenceSchedulerCommandOutput | DescribeModelCommandOutput | ListDataIngestionJobsCommandOutput | ListDatasetsCommandOutput | ListInferenceExecutionsCommandOutput | ListInferenceSchedulersCommandOutput | ListModelsCommandOutput | ListSensorStatisticsCommandOutput | ListTagsForResourceCommandOutput | StartDataIngestionJobCommandOutput | StartInferenceSchedulerCommandOutput | StopInferenceSchedulerCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateInferenceSchedulerCommandOutput;
33
34
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
34
35
 
35
36
  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 { ListSensorStatisticsRequest, ListSensorStatisticsResponse } from "../models/models_0";
5
+ export interface ListSensorStatisticsCommandInput extends ListSensorStatisticsRequest {
6
+ }
7
+ export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListSensorStatisticsCommand extends $Command<ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput, LookoutEquipmentClientResolvedConfig> {
11
+ readonly input: ListSensorStatisticsCommandInput;
12
+ constructor(input: ListSensorStatisticsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -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";