@aws-sdk/client-lookoutequipment 3.295.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 +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DeleteInferenceSchedulerRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteInferenceSchedulerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteInferenceSchedulerCommandInput extends DeleteInferenceSchedulerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteInferenceSchedulerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteInferenceSchedulerCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an inference scheduler that has been set up. Already processed output results
|
|
18
23
|
* are not affected. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteInferenceSchedulerCommandOutput extends __MetadataBearer
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteInferenceSchedulerCommandInput - {@link DeleteInferenceSchedulerCommandInput}
|
|
35
|
+
* @returns {@link DeleteInferenceSchedulerCommandOutput}
|
|
29
36
|
* @see {@link DeleteInferenceSchedulerCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteInferenceSchedulerCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeleteInferenceSchedulerCommandOutput extends __MetadataBearer
|
|
|
58
65
|
export declare class DeleteInferenceSchedulerCommand extends $Command<DeleteInferenceSchedulerCommandInput, DeleteInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
59
66
|
readonly input: DeleteInferenceSchedulerCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeleteInferenceSchedulerCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteInferenceSchedulerCommandInput, DeleteInferenceSchedulerCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DeleteLabelRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLabelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLabelCommandInput extends DeleteLabelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLabelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLabelCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Deletes a label.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteLabelCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteLabelCommandInput - {@link DeleteLabelCommandInput}
|
|
36
|
+
* @returns {@link DeleteLabelCommandOutput}
|
|
30
37
|
* @see {@link DeleteLabelCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteLabelCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface DeleteLabelCommandOutput extends __MetadataBearer {
|
|
|
59
66
|
export declare class DeleteLabelCommand extends $Command<DeleteLabelCommandInput, DeleteLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
60
67
|
readonly input: DeleteLabelCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: DeleteLabelCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLabelCommandInput, DeleteLabelCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DeleteLabelGroupRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLabelGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLabelGroupCommandInput extends DeleteLabelGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLabelGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Deletes a group of labels.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteLabelGroupCommandInput - {@link DeleteLabelGroupCommandInput}
|
|
36
|
+
* @returns {@link DeleteLabelGroupCommandOutput}
|
|
30
37
|
* @see {@link DeleteLabelGroupCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteLabelGroupCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {
|
|
|
59
66
|
export declare class DeleteLabelGroupCommand extends $Command<DeleteLabelGroupCommandInput, DeleteLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
60
67
|
readonly input: DeleteLabelGroupCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: DeleteLabelGroupCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLabelGroupCommandInput, DeleteLabelGroupCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DeleteModelRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteModelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteModelCommandInput extends DeleteModelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteModelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteModelCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an ML model currently available for Amazon Lookout for Equipment. This will
|
|
18
23
|
* prevent it from being used with an inference scheduler, even one that is already set up.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteModelCommandInput - {@link DeleteModelCommandInput}
|
|
36
|
+
* @returns {@link DeleteModelCommandOutput}
|
|
30
37
|
* @see {@link DeleteModelCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteModelCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {
|
|
|
59
66
|
export declare class DeleteModelCommand extends $Command<DeleteModelCommandInput, DeleteModelCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
60
67
|
readonly input: DeleteModelCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: DeleteModelCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteModelCommandInput, DeleteModelCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DescribeDataIngestionJobRequest, DescribeDataIngestionJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDataIngestionJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDataIngestionJobCommandInput extends DescribeDataIngestionJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDataIngestionJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDataIngestionJobCommandOutput extends DescribeDataIngestionJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides information on a specific data ingestion job such as creation time, dataset
|
|
18
23
|
* ARN, and status.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeDataIngestionJobCommandOutput extends DescribeDataInges
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeDataIngestionJobCommandInput - {@link DescribeDataIngestionJobCommandInput}
|
|
35
|
+
* @returns {@link DescribeDataIngestionJobCommandOutput}
|
|
29
36
|
* @see {@link DescribeDataIngestionJobCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeDataIngestionJobCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DescribeDataIngestionJobCommandOutput extends DescribeDataInges
|
|
|
54
61
|
export declare class DescribeDataIngestionJobCommand extends $Command<DescribeDataIngestionJobCommandInput, DescribeDataIngestionJobCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
55
62
|
readonly input: DescribeDataIngestionJobCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DescribeDataIngestionJobCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDataIngestionJobCommandInput, DescribeDataIngestionJobCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDatasetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDatasetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a JSON description of the data in each time series dataset, including names,
|
|
18
23
|
* column names, and data types.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeDatasetCommandInput - {@link DescribeDatasetCommandInput}
|
|
35
|
+
* @returns {@link DescribeDatasetCommandOutput}
|
|
29
36
|
* @see {@link DescribeDatasetCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeDatasetCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
|
|
|
54
61
|
export declare class DescribeDatasetCommand extends $Command<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
55
62
|
readonly input: DescribeDatasetCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DescribeDatasetCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDatasetCommandInput, DescribeDatasetCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DescribeInferenceSchedulerRequest, DescribeInferenceSchedulerResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeInferenceSchedulerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeInferenceSchedulerCommandInput extends DescribeInferenceSchedulerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeInferenceSchedulerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeInferenceSchedulerCommandOutput extends DescribeInferenceSchedulerResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Specifies information about the inference scheduler being used, including name, model,
|
|
18
23
|
* status, and associated metadata </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeInferenceSchedulerCommandOutput extends DescribeInferen
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeInferenceSchedulerCommandInput - {@link DescribeInferenceSchedulerCommandInput}
|
|
35
|
+
* @returns {@link DescribeInferenceSchedulerCommandOutput}
|
|
29
36
|
* @see {@link DescribeInferenceSchedulerCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeInferenceSchedulerCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DescribeInferenceSchedulerCommandOutput extends DescribeInferen
|
|
|
54
61
|
export declare class DescribeInferenceSchedulerCommand extends $Command<DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
55
62
|
readonly input: DescribeInferenceSchedulerCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DescribeInferenceSchedulerCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DescribeLabelRequest, DescribeLabelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeLabelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeLabelCommandInput extends DescribeLabelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeLabelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Returns the name of the label.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __Met
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeLabelCommandInput - {@link DescribeLabelCommandInput}
|
|
36
|
+
* @returns {@link DescribeLabelCommandOutput}
|
|
30
37
|
* @see {@link DescribeLabelCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeLabelCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __Met
|
|
|
55
62
|
export declare class DescribeLabelCommand extends $Command<DescribeLabelCommandInput, DescribeLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeLabelCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeLabelCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLabelCommandInput, DescribeLabelCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DescribeLabelGroupRequest, DescribeLabelGroupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeLabelGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeLabelGroupCommandInput extends DescribeLabelGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeLabelGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Returns information about the label group.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupRespo
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeLabelGroupCommandInput - {@link DescribeLabelGroupCommandInput}
|
|
36
|
+
* @returns {@link DescribeLabelGroupCommandOutput}
|
|
30
37
|
* @see {@link DescribeLabelGroupCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeLabelGroupCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupRespo
|
|
|
55
62
|
export declare class DescribeLabelGroupCommand extends $Command<DescribeLabelGroupCommandInput, DescribeLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeLabelGroupCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeLabelGroupCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLabelGroupCommandInput, DescribeLabelGroupCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { DescribeModelRequest, DescribeModelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeModelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeModelCommandInput extends DescribeModelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeModelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeModelCommandOutput extends DescribeModelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a JSON containing the overall information about a specific ML model, including
|
|
18
23
|
* model name and ARN, dataset, training and evaluation information, status, and so on.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeModelCommandOutput extends DescribeModelResponse, __Met
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeModelCommandInput - {@link DescribeModelCommandInput}
|
|
36
|
+
* @returns {@link DescribeModelCommandOutput}
|
|
30
37
|
* @see {@link DescribeModelCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeModelCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeModelCommandOutput extends DescribeModelResponse, __Met
|
|
|
55
62
|
export declare class DescribeModelCommand extends $Command<DescribeModelCommandInput, DescribeModelCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeModelCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeModelCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeModelCommandInput, DescribeModelCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { ListDataIngestionJobsRequest, ListDataIngestionJobsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDataIngestionJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDataIngestionJobsCommandInput extends ListDataIngestionJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDataIngestionJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDataIngestionJobsCommandOutput extends ListDataIngestionJobsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a list of all data ingestion jobs, including dataset name and ARN, S3 location
|
|
18
23
|
* of the input data, status, and so on. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListDataIngestionJobsCommandOutput extends ListDataIngestionJob
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListDataIngestionJobsCommandInput - {@link ListDataIngestionJobsCommandInput}
|
|
35
|
+
* @returns {@link ListDataIngestionJobsCommandOutput}
|
|
29
36
|
* @see {@link ListDataIngestionJobsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListDataIngestionJobsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListDataIngestionJobsCommandOutput extends ListDataIngestionJob
|
|
|
50
57
|
export declare class ListDataIngestionJobsCommand extends $Command<ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
51
58
|
readonly input: ListDataIngestionJobsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListDataIngestionJobsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDatasetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDatasetsCommandInput extends ListDatasetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDatasetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all datasets currently available in your account, filtering on the dataset name.
|
|
18
23
|
* </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListDatasetsCommandInput - {@link ListDatasetsCommandInput}
|
|
35
|
+
* @returns {@link ListDatasetsCommandOutput}
|
|
29
36
|
* @see {@link ListDatasetsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListDatasetsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
|
|
|
50
57
|
export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
51
58
|
readonly input: ListDatasetsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListDatasetsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatasetsCommandInput, ListDatasetsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
|
|
5
5
|
import { ListInferenceEventsRequest, ListInferenceEventsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListInferenceEventsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListInferenceEventsCommandInput extends ListInferenceEventsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListInferenceEventsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListInferenceEventsCommandOutput extends ListInferenceEventsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Lists all inference events that have been found for the specified inference scheduler.
|
|
18
23
|
* </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListInferenceEventsCommandOutput extends ListInferenceEventsRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListInferenceEventsCommandInput - {@link ListInferenceEventsCommandInput}
|
|
35
|
+
* @returns {@link ListInferenceEventsCommandOutput}
|
|
29
36
|
* @see {@link ListInferenceEventsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListInferenceEventsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListInferenceEventsCommandOutput extends ListInferenceEventsRes
|
|
|
54
61
|
export declare class ListInferenceEventsCommand extends $Command<ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput, LookoutEquipmentClientResolvedConfig> {
|
|
55
62
|
readonly input: ListInferenceEventsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListInferenceEventsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|