@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.
Files changed (48) hide show
  1. package/dist-types/LookoutEquipment.d.ts +34 -0
  2. package/dist-types/LookoutEquipmentClient.d.ts +24 -4
  3. package/dist-types/commands/CreateDatasetCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateInferenceSchedulerCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateLabelCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateLabelGroupCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateModelCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteDatasetCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteInferenceSchedulerCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteLabelCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteLabelGroupCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteModelCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeDatasetCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribeInferenceSchedulerCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeLabelCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeLabelGroupCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeModelCommand.d.ts +16 -0
  19. package/dist-types/commands/ListDataIngestionJobsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListDatasetsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListInferenceEventsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListInferenceExecutionsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListInferenceSchedulersCommand.d.ts +16 -0
  24. package/dist-types/commands/ListLabelGroupsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListLabelsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListModelsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListSensorStatisticsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  29. package/dist-types/commands/StartDataIngestionJobCommand.d.ts +16 -0
  30. package/dist-types/commands/StartInferenceSchedulerCommand.d.ts +16 -0
  31. package/dist-types/commands/StopInferenceSchedulerCommand.d.ts +16 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateInferenceSchedulerCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateLabelGroupCommand.d.ts +16 -0
  36. package/dist-types/models/LookoutEquipmentServiceException.d.ts +2 -0
  37. package/dist-types/models/models_0.d.ts +254 -1
  38. package/dist-types/pagination/Interfaces.d.ts +3 -0
  39. package/dist-types/pagination/ListDataIngestionJobsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListDatasetsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListInferenceEventsPaginator.d.ts +3 -0
  42. package/dist-types/pagination/ListInferenceExecutionsPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListInferenceSchedulersPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListLabelGroupsPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListLabelsPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListModelsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListSensorStatisticsPaginator.d.ts +3 -0
  48. 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.296.0",
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.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
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",