@aws-sdk/client-lookoutequipment 3.296.0 → 3.297.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-types/LookoutEquipment.d.ts +34 -0
- package/dist-types/LookoutEquipmentClient.d.ts +24 -4
- package/dist-types/commands/CreateDatasetCommand.d.ts +16 -0
- package/dist-types/commands/CreateInferenceSchedulerCommand.d.ts +16 -0
- package/dist-types/commands/CreateLabelCommand.d.ts +16 -0
- package/dist-types/commands/CreateLabelGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateModelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInferenceSchedulerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLabelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLabelGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteModelCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInferenceSchedulerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLabelCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLabelGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeModelCommand.d.ts +16 -0
- package/dist-types/commands/ListDataIngestionJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +16 -0
- package/dist-types/commands/ListInferenceEventsCommand.d.ts +16 -0
- package/dist-types/commands/ListInferenceExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListInferenceSchedulersCommand.d.ts +16 -0
- package/dist-types/commands/ListLabelGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListLabelsCommand.d.ts +16 -0
- package/dist-types/commands/ListModelsCommand.d.ts +16 -0
- package/dist-types/commands/ListSensorStatisticsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartDataIngestionJobCommand.d.ts +16 -0
- package/dist-types/commands/StartInferenceSchedulerCommand.d.ts +16 -0
- package/dist-types/commands/StopInferenceSchedulerCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInferenceSchedulerCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLabelGroupCommand.d.ts +16 -0
- package/dist-types/models/LookoutEquipmentServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +254 -1
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDataIngestionJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDatasetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInferenceEventsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInferenceExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInferenceSchedulersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLabelGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLabelsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListModelsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSensorStatisticsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { LookoutEquipmentClient } from "../LookoutEquipmentClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface LookoutEquipmentPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: LookoutEquipmentClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput } from "../commands/ListDataIngestionJobsCommand";
|
|
3
3
|
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDataIngestionJobs(config: LookoutEquipmentPaginationConfiguration, input: ListDataIngestionJobsCommandInput, ...additionalArguments: any): Paginator<ListDataIngestionJobsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
|
|
3
3
|
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDatasets(config: LookoutEquipmentPaginationConfiguration, input: ListDatasetsCommandInput, ...additionalArguments: any): Paginator<ListDatasetsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput } from "../commands/ListInferenceEventsCommand";
|
|
3
3
|
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListInferenceEvents(config: LookoutEquipmentPaginationConfiguration, input: ListInferenceEventsCommandInput, ...additionalArguments: any): Paginator<ListInferenceEventsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput } from "../commands/ListInferenceExecutionsCommand";
|
|
3
3
|
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListInferenceExecutions(config: LookoutEquipmentPaginationConfiguration, input: ListInferenceExecutionsCommandInput, ...additionalArguments: any): Paginator<ListInferenceExecutionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput } from "../commands/ListInferenceSchedulersCommand";
|
|
3
3
|
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListInferenceSchedulers(config: LookoutEquipmentPaginationConfiguration, input: ListInferenceSchedulersCommandInput, ...additionalArguments: any): Paginator<ListInferenceSchedulersCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput } from "../commands/ListLabelGroupsCommand";
|
|
3
3
|
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListLabelGroups(config: LookoutEquipmentPaginationConfiguration, input: ListLabelGroupsCommandInput, ...additionalArguments: any): Paginator<ListLabelGroupsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListLabelsCommandInput, ListLabelsCommandOutput } from "../commands/ListLabelsCommand";
|
|
3
3
|
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListLabels(config: LookoutEquipmentPaginationConfiguration, input: ListLabelsCommandInput, ...additionalArguments: any): Paginator<ListLabelsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListModelsCommandInput, ListModelsCommandOutput } from "../commands/ListModelsCommand";
|
|
3
3
|
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListModels(config: LookoutEquipmentPaginationConfiguration, input: ListModelsCommandInput, ...additionalArguments: any): Paginator<ListModelsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput } from "../commands/ListSensorStatisticsCommand";
|
|
3
3
|
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListSensorStatistics(config: LookoutEquipmentPaginationConfiguration, input: ListSensorStatisticsCommandInput, ...additionalArguments: any): Paginator<ListSensorStatisticsCommandOutput>;
|
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.297.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",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|