@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
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { UpdateLabelGroupRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateLabelGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateLabelGroupCommandInput extends UpdateLabelGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateLabelGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Updates the label group.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateLabelGroupCommandInput - {@link UpdateLabelGroupCommandInput}
|
|
36
|
+
* @returns {@link UpdateLabelGroupCommandOutput}
|
|
30
37
|
* @see {@link UpdateLabelGroupCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateLabelGroupCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {
|
|
|
59
66
|
export declare class UpdateLabelGroupCommand extends $Command<UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
60
67
|
readonly input: UpdateLabelGroupCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: UpdateLabelGroupCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from LookoutEquipment service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class LookoutEquipmentServiceException extends __ServiceException {
|