@aws-sdk/client-lookoutequipment 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/LookoutEquipment.d.ts +598 -170
- package/dist-types/ts3.4/LookoutEquipmentClient.d.ts +328 -106
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateInferenceSchedulerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLabelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateLabelGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteInferenceSchedulerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteLabelCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteLabelGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteModelCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeDataIngestionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeInferenceSchedulerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLabelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeLabelGroupCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeModelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListDataIngestionJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListInferenceEventsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListInferenceExecutionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListInferenceSchedulersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListLabelGroupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListLabelsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListSensorStatisticsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartDataIngestionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartInferenceSchedulerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopInferenceSchedulerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateInferenceSchedulerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateLabelGroupCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +33 -33
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/LookoutEquipmentServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +2372 -136
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDataIngestionJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListInferenceEventsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListInferenceExecutionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListInferenceSchedulersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListLabelGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListLabelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListModelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSensorStatisticsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +10 -10
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +401 -101
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { LookoutEquipment } from "../LookoutEquipment";
|
|
3
|
-
import { LookoutEquipmentClient } from "../LookoutEquipmentClient";
|
|
4
|
-
export interface LookoutEquipmentPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { LookoutEquipment } from "../LookoutEquipment";
|
|
3
|
+
import { LookoutEquipmentClient } from "../LookoutEquipmentClient";
|
|
4
|
+
export interface LookoutEquipmentPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: LookoutEquipment | LookoutEquipmentClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDataIngestionJobsCommandInput,
|
|
4
|
+
ListDataIngestionJobsCommandOutput,
|
|
5
|
+
} from "../commands/ListDataIngestionJobsCommand";
|
|
6
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDataIngestionJobs(
|
|
8
|
+
config: LookoutEquipmentPaginationConfiguration,
|
|
9
|
+
input: ListDataIngestionJobsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDataIngestionJobsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDatasetsCommandInput,
|
|
4
|
+
ListDatasetsCommandOutput,
|
|
5
|
+
} from "../commands/ListDatasetsCommand";
|
|
6
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDatasets(
|
|
8
|
+
config: LookoutEquipmentPaginationConfiguration,
|
|
9
|
+
input: ListDatasetsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDatasetsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListInferenceEventsCommandInput,
|
|
4
|
+
ListInferenceEventsCommandOutput,
|
|
5
|
+
} from "../commands/ListInferenceEventsCommand";
|
|
6
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListInferenceEvents(
|
|
8
|
+
config: LookoutEquipmentPaginationConfiguration,
|
|
9
|
+
input: ListInferenceEventsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListInferenceEventsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListInferenceExecutionsCommandInput,
|
|
4
|
+
ListInferenceExecutionsCommandOutput,
|
|
5
|
+
} from "../commands/ListInferenceExecutionsCommand";
|
|
6
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListInferenceExecutions(
|
|
8
|
+
config: LookoutEquipmentPaginationConfiguration,
|
|
9
|
+
input: ListInferenceExecutionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListInferenceExecutionsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListInferenceSchedulersCommandInput,
|
|
4
|
+
ListInferenceSchedulersCommandOutput,
|
|
5
|
+
} from "../commands/ListInferenceSchedulersCommand";
|
|
6
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListInferenceSchedulers(
|
|
8
|
+
config: LookoutEquipmentPaginationConfiguration,
|
|
9
|
+
input: ListInferenceSchedulersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListInferenceSchedulersCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListLabelGroupsCommandInput,
|
|
4
|
+
ListLabelGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListLabelGroupsCommand";
|
|
6
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListLabelGroups(
|
|
8
|
+
config: LookoutEquipmentPaginationConfiguration,
|
|
9
|
+
input: ListLabelGroupsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListLabelGroupsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListLabelsCommandInput,
|
|
4
|
+
ListLabelsCommandOutput,
|
|
5
|
+
} from "../commands/ListLabelsCommand";
|
|
6
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListLabels(
|
|
8
|
+
config: LookoutEquipmentPaginationConfiguration,
|
|
9
|
+
input: ListLabelsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListLabelsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListModelsCommandInput,
|
|
4
|
+
ListModelsCommandOutput,
|
|
5
|
+
} from "../commands/ListModelsCommand";
|
|
6
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListModels(
|
|
8
|
+
config: LookoutEquipmentPaginationConfiguration,
|
|
9
|
+
input: ListModelsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListModelsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSensorStatisticsCommandInput,
|
|
4
|
+
ListSensorStatisticsCommandOutput,
|
|
5
|
+
} from "../commands/ListSensorStatisticsCommand";
|
|
6
|
+
import { LookoutEquipmentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListSensorStatistics(
|
|
8
|
+
config: LookoutEquipmentPaginationConfiguration,
|
|
9
|
+
input: ListSensorStatisticsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListSensorStatisticsCommandOutput>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListDataIngestionJobsPaginator";
|
|
3
|
-
export * from "./ListDatasetsPaginator";
|
|
4
|
-
export * from "./ListInferenceEventsPaginator";
|
|
5
|
-
export * from "./ListInferenceExecutionsPaginator";
|
|
6
|
-
export * from "./ListInferenceSchedulersPaginator";
|
|
7
|
-
export * from "./ListLabelGroupsPaginator";
|
|
8
|
-
export * from "./ListLabelsPaginator";
|
|
9
|
-
export * from "./ListModelsPaginator";
|
|
10
|
-
export * from "./ListSensorStatisticsPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListDataIngestionJobsPaginator";
|
|
3
|
+
export * from "./ListDatasetsPaginator";
|
|
4
|
+
export * from "./ListInferenceEventsPaginator";
|
|
5
|
+
export * from "./ListInferenceExecutionsPaginator";
|
|
6
|
+
export * from "./ListInferenceSchedulersPaginator";
|
|
7
|
+
export * from "./ListLabelGroupsPaginator";
|
|
8
|
+
export * from "./ListLabelsPaginator";
|
|
9
|
+
export * from "./ListModelsPaginator";
|
|
10
|
+
export * from "./ListSensorStatisticsPaginator";
|