@aws-sdk/client-lookoutequipment 3.112.0 → 3.117.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 (39) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +3 -2
  3. package/dist-cjs/LookoutEquipment.js +15 -0
  4. package/dist-cjs/commands/ListInferenceEventsCommand.js +36 -0
  5. package/dist-cjs/commands/index.js +1 -0
  6. package/dist-cjs/models/models_0.js +19 -1
  7. package/dist-cjs/pagination/ListInferenceEventsPaginator.js +36 -0
  8. package/dist-cjs/pagination/index.js +1 -0
  9. package/dist-cjs/protocols/Aws_json1_0.js +104 -1
  10. package/dist-es/LookoutEquipment.js +15 -0
  11. package/dist-es/commands/ListInferenceEventsCommand.js +39 -0
  12. package/dist-es/commands/index.js +1 -0
  13. package/dist-es/models/models_0.js +12 -0
  14. package/dist-es/pagination/ListInferenceEventsPaginator.js +75 -0
  15. package/dist-es/pagination/index.js +1 -0
  16. package/dist-es/protocols/Aws_json1_0.js +116 -0
  17. package/dist-types/LookoutEquipment.d.ts +32 -19
  18. package/dist-types/LookoutEquipmentClient.d.ts +6 -4
  19. package/dist-types/commands/CreateModelCommand.d.ts +4 -4
  20. package/dist-types/commands/DeleteModelCommand.d.ts +3 -2
  21. package/dist-types/commands/DescribeDatasetCommand.d.ts +2 -1
  22. package/dist-types/commands/DescribeModelCommand.d.ts +3 -2
  23. package/dist-types/commands/ListInferenceEventsCommand.d.ts +36 -0
  24. package/dist-types/commands/ListSensorStatisticsCommand.d.ts +3 -3
  25. package/dist-types/commands/StartDataIngestionJobCommand.d.ts +2 -1
  26. package/dist-types/commands/TagResourceCommand.d.ts +4 -4
  27. package/dist-types/commands/index.d.ts +1 -0
  28. package/dist-types/models/models_0.d.ts +310 -349
  29. package/dist-types/pagination/ListInferenceEventsPaginator.d.ts +4 -0
  30. package/dist-types/pagination/index.d.ts +1 -0
  31. package/dist-types/protocols/Aws_json1_0.d.ts +3 -0
  32. package/dist-types/ts3.4/LookoutEquipment.d.ts +5 -0
  33. package/dist-types/ts3.4/LookoutEquipmentClient.d.ts +3 -2
  34. package/dist-types/ts3.4/commands/ListInferenceEventsCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  36. package/dist-types/ts3.4/pagination/ListInferenceEventsPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  38. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +3 -0
  39. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "../commands/ListInferenceEventsCommand";
3
+ import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListInferenceEvents(config: LookoutEquipmentPaginationConfiguration, input: ListInferenceEventsCommandInput, ...additionalArguments: any): Paginator<ListInferenceEventsCommandOutput>;
@@ -1,6 +1,7 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListDataIngestionJobsPaginator";
3
3
  export * from "./ListDatasetsPaginator";
4
+ export * from "./ListInferenceEventsPaginator";
4
5
  export * from "./ListInferenceExecutionsPaginator";
5
6
  export * from "./ListInferenceSchedulersPaginator";
6
7
  export * from "./ListModelsPaginator";
@@ -12,6 +12,7 @@ import { DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerComma
12
12
  import { DescribeModelCommandInput, DescribeModelCommandOutput } from "../commands/DescribeModelCommand";
13
13
  import { ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput } from "../commands/ListDataIngestionJobsCommand";
14
14
  import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
15
+ import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "../commands/ListInferenceEventsCommand";
15
16
  import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "../commands/ListInferenceExecutionsCommand";
16
17
  import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "../commands/ListInferenceSchedulersCommand";
17
18
  import { ListModelsCommandInput, ListModelsCommandOutput } from "../commands/ListModelsCommand";
@@ -35,6 +36,7 @@ export declare const serializeAws_json1_0DescribeInferenceSchedulerCommand: (inp
35
36
  export declare const serializeAws_json1_0DescribeModelCommand: (input: DescribeModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
37
  export declare const serializeAws_json1_0ListDataIngestionJobsCommand: (input: ListDataIngestionJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
38
  export declare const serializeAws_json1_0ListDatasetsCommand: (input: ListDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ export declare const serializeAws_json1_0ListInferenceEventsCommand: (input: ListInferenceEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
40
  export declare const serializeAws_json1_0ListInferenceExecutionsCommand: (input: ListInferenceExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
41
  export declare const serializeAws_json1_0ListInferenceSchedulersCommand: (input: ListInferenceSchedulersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
42
  export declare const serializeAws_json1_0ListModelsCommand: (input: ListModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -58,6 +60,7 @@ export declare const deserializeAws_json1_0DescribeInferenceSchedulerCommand: (o
58
60
  export declare const deserializeAws_json1_0DescribeModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeModelCommandOutput>;
59
61
  export declare const deserializeAws_json1_0ListDataIngestionJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIngestionJobsCommandOutput>;
60
62
  export declare const deserializeAws_json1_0ListDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetsCommandOutput>;
63
+ export declare const deserializeAws_json1_0ListInferenceEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceEventsCommandOutput>;
61
64
  export declare const deserializeAws_json1_0ListInferenceExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceExecutionsCommandOutput>;
62
65
  export declare const deserializeAws_json1_0ListInferenceSchedulersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceSchedulersCommandOutput>;
63
66
  export declare const deserializeAws_json1_0ListModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListModelsCommandOutput>;
@@ -11,6 +11,7 @@ import { DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerComma
11
11
  import { DescribeModelCommandInput, DescribeModelCommandOutput } from "./commands/DescribeModelCommand";
12
12
  import { ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput } from "./commands/ListDataIngestionJobsCommand";
13
13
  import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
14
+ import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "./commands/ListInferenceEventsCommand";
14
15
  import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "./commands/ListInferenceExecutionsCommand";
15
16
  import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "./commands/ListInferenceSchedulersCommand";
16
17
  import { ListModelsCommandInput, ListModelsCommandOutput } from "./commands/ListModelsCommand";
@@ -74,6 +75,10 @@ export declare class LookoutEquipment extends LookoutEquipmentClient {
74
75
  listDatasets(args: ListDatasetsCommandInput, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
75
76
  listDatasets(args: ListDatasetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasetsCommandOutput) => void): void;
76
77
 
78
+ listInferenceEvents(args: ListInferenceEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceEventsCommandOutput>;
79
+ listInferenceEvents(args: ListInferenceEventsCommandInput, cb: (err: any, data?: ListInferenceEventsCommandOutput) => void): void;
80
+ listInferenceEvents(args: ListInferenceEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceEventsCommandOutput) => void): void;
81
+
77
82
  listInferenceExecutions(args: ListInferenceExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListInferenceExecutionsCommandOutput>;
78
83
  listInferenceExecutions(args: ListInferenceExecutionsCommandInput, cb: (err: any, data?: ListInferenceExecutionsCommandOutput) => void): void;
79
84
  listInferenceExecutions(args: ListInferenceExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInferenceExecutionsCommandOutput) => void): void;
@@ -18,6 +18,7 @@ import { DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerComma
18
18
  import { DescribeModelCommandInput, DescribeModelCommandOutput } from "./commands/DescribeModelCommand";
19
19
  import { ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput } from "./commands/ListDataIngestionJobsCommand";
20
20
  import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "./commands/ListDatasetsCommand";
21
+ import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "./commands/ListInferenceEventsCommand";
21
22
  import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "./commands/ListInferenceExecutionsCommand";
22
23
  import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "./commands/ListInferenceSchedulersCommand";
23
24
  import { ListModelsCommandInput, ListModelsCommandOutput } from "./commands/ListModelsCommand";
@@ -29,8 +30,8 @@ import { StopInferenceSchedulerCommandInput, StopInferenceSchedulerCommandOutput
29
30
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
30
31
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
31
32
  import { UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput } from "./commands/UpdateInferenceSchedulerCommand";
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
+ export declare type ServiceInputTypes = CreateDatasetCommandInput | CreateInferenceSchedulerCommandInput | CreateModelCommandInput | DeleteDatasetCommandInput | DeleteInferenceSchedulerCommandInput | DeleteModelCommandInput | DescribeDataIngestionJobCommandInput | DescribeDatasetCommandInput | DescribeInferenceSchedulerCommandInput | DescribeModelCommandInput | ListDataIngestionJobsCommandInput | ListDatasetsCommandInput | ListInferenceEventsCommandInput | ListInferenceExecutionsCommandInput | ListInferenceSchedulersCommandInput | ListModelsCommandInput | ListSensorStatisticsCommandInput | ListTagsForResourceCommandInput | StartDataIngestionJobCommandInput | StartInferenceSchedulerCommandInput | StopInferenceSchedulerCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateInferenceSchedulerCommandInput;
34
+ export declare type ServiceOutputTypes = CreateDatasetCommandOutput | CreateInferenceSchedulerCommandOutput | CreateModelCommandOutput | DeleteDatasetCommandOutput | DeleteInferenceSchedulerCommandOutput | DeleteModelCommandOutput | DescribeDataIngestionJobCommandOutput | DescribeDatasetCommandOutput | DescribeInferenceSchedulerCommandOutput | DescribeModelCommandOutput | ListDataIngestionJobsCommandOutput | ListDatasetsCommandOutput | ListInferenceEventsCommandOutput | ListInferenceExecutionsCommandOutput | ListInferenceSchedulersCommandOutput | ListModelsCommandOutput | ListSensorStatisticsCommandOutput | ListTagsForResourceCommandOutput | StartDataIngestionJobCommandOutput | StartInferenceSchedulerCommandOutput | StopInferenceSchedulerCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateInferenceSchedulerCommandOutput;
34
35
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
35
36
 
36
37
  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 { ListInferenceEventsRequest, ListInferenceEventsResponse } from "../models/models_0";
5
+ export interface ListInferenceEventsCommandInput extends ListInferenceEventsRequest {
6
+ }
7
+ export interface ListInferenceEventsCommandOutput extends ListInferenceEventsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListInferenceEventsCommand extends $Command<ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput, LookoutEquipmentClientResolvedConfig> {
11
+ readonly input: ListInferenceEventsCommandInput;
12
+ constructor(input: ListInferenceEventsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -10,6 +10,7 @@ export * from "./DescribeInferenceSchedulerCommand";
10
10
  export * from "./DescribeModelCommand";
11
11
  export * from "./ListDataIngestionJobsCommand";
12
12
  export * from "./ListDatasetsCommand";
13
+ export * from "./ListInferenceEventsCommand";
13
14
  export * from "./ListInferenceExecutionsCommand";
14
15
  export * from "./ListInferenceSchedulersCommand";
15
16
  export * from "./ListModelsCommand";
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "../commands/ListInferenceEventsCommand";
3
+ import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListInferenceEvents(config: LookoutEquipmentPaginationConfiguration, input: ListInferenceEventsCommandInput, ...additionalArguments: any): Paginator<ListInferenceEventsCommandOutput>;
@@ -1,6 +1,7 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListDataIngestionJobsPaginator";
3
3
  export * from "./ListDatasetsPaginator";
4
+ export * from "./ListInferenceEventsPaginator";
4
5
  export * from "./ListInferenceExecutionsPaginator";
5
6
  export * from "./ListInferenceSchedulersPaginator";
6
7
  export * from "./ListModelsPaginator";
@@ -12,6 +12,7 @@ import { DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerComma
12
12
  import { DescribeModelCommandInput, DescribeModelCommandOutput } from "../commands/DescribeModelCommand";
13
13
  import { ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput } from "../commands/ListDataIngestionJobsCommand";
14
14
  import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
15
+ import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "../commands/ListInferenceEventsCommand";
15
16
  import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "../commands/ListInferenceExecutionsCommand";
16
17
  import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "../commands/ListInferenceSchedulersCommand";
17
18
  import { ListModelsCommandInput, ListModelsCommandOutput } from "../commands/ListModelsCommand";
@@ -35,6 +36,7 @@ export declare const serializeAws_json1_0DescribeInferenceSchedulerCommand: (inp
35
36
  export declare const serializeAws_json1_0DescribeModelCommand: (input: DescribeModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
37
  export declare const serializeAws_json1_0ListDataIngestionJobsCommand: (input: ListDataIngestionJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
38
  export declare const serializeAws_json1_0ListDatasetsCommand: (input: ListDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ export declare const serializeAws_json1_0ListInferenceEventsCommand: (input: ListInferenceEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
40
  export declare const serializeAws_json1_0ListInferenceExecutionsCommand: (input: ListInferenceExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
41
  export declare const serializeAws_json1_0ListInferenceSchedulersCommand: (input: ListInferenceSchedulersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
42
  export declare const serializeAws_json1_0ListModelsCommand: (input: ListModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -58,6 +60,7 @@ export declare const deserializeAws_json1_0DescribeInferenceSchedulerCommand: (o
58
60
  export declare const deserializeAws_json1_0DescribeModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeModelCommandOutput>;
59
61
  export declare const deserializeAws_json1_0ListDataIngestionJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIngestionJobsCommandOutput>;
60
62
  export declare const deserializeAws_json1_0ListDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetsCommandOutput>;
63
+ export declare const deserializeAws_json1_0ListInferenceEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceEventsCommandOutput>;
61
64
  export declare const deserializeAws_json1_0ListInferenceExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceExecutionsCommandOutput>;
62
65
  export declare const deserializeAws_json1_0ListInferenceSchedulersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceSchedulersCommandOutput>;
63
66
  export declare const deserializeAws_json1_0ListModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListModelsCommandOutput>;
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.112.0",
4
+ "version": "3.117.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",