@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.
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 +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
5
5
  import { ListInferenceExecutionsRequest, ListInferenceExecutionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListInferenceExecutionsCommand}.
8
10
  */
9
11
  export interface ListInferenceExecutionsCommandInput extends ListInferenceExecutionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListInferenceExecutionsCommand}.
13
17
  */
14
18
  export interface ListInferenceExecutionsCommandOutput extends ListInferenceExecutionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p> Lists all inference executions that have been performed by the specified inference
18
23
  * scheduler. </p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListInferenceExecutionsCommandOutput extends ListInferenceExecu
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListInferenceExecutionsCommandInput - {@link ListInferenceExecutionsCommandInput}
35
+ * @returns {@link ListInferenceExecutionsCommandOutput}
29
36
  * @see {@link ListInferenceExecutionsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListInferenceExecutionsCommandOutput} for command's `response` shape.
31
38
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -54,11 +61,20 @@ export interface ListInferenceExecutionsCommandOutput extends ListInferenceExecu
54
61
  export declare class ListInferenceExecutionsCommand extends $Command<ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput, LookoutEquipmentClientResolvedConfig> {
55
62
  readonly input: ListInferenceExecutionsCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: ListInferenceExecutionsCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput>;
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 { ListInferenceSchedulersRequest, ListInferenceSchedulersResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListInferenceSchedulersCommand}.
8
10
  */
9
11
  export interface ListInferenceSchedulersCommandInput extends ListInferenceSchedulersRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListInferenceSchedulersCommand}.
13
17
  */
14
18
  export interface ListInferenceSchedulersCommandOutput extends ListInferenceSchedulersResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of all inference schedulers currently available for your account.
18
23
  * </p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListInferenceSchedulersCommandOutput extends ListInferenceSched
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListInferenceSchedulersCommandInput - {@link ListInferenceSchedulersCommandInput}
35
+ * @returns {@link ListInferenceSchedulersCommandOutput}
29
36
  * @see {@link ListInferenceSchedulersCommandInput} for command's `input` shape.
30
37
  * @see {@link ListInferenceSchedulersCommandOutput} for command's `response` shape.
31
38
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListInferenceSchedulersCommandOutput extends ListInferenceSched
50
57
  export declare class ListInferenceSchedulersCommand extends $Command<ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput, LookoutEquipmentClientResolvedConfig> {
51
58
  readonly input: ListInferenceSchedulersCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListInferenceSchedulersCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput>;
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 { ListLabelGroupsRequest, ListLabelGroupsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListLabelGroupsCommand}.
8
10
  */
9
11
  export interface ListLabelGroupsCommandInput extends ListLabelGroupsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListLabelGroupsCommand}.
13
17
  */
14
18
  export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Returns a list of the label groups.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, _
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListLabelGroupsCommandInput - {@link ListLabelGroupsCommandInput}
36
+ * @returns {@link ListLabelGroupsCommandOutput}
30
37
  * @see {@link ListLabelGroupsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListLabelGroupsCommandOutput} for command's `response` shape.
32
39
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -51,11 +58,20 @@ export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, _
51
58
  export declare class ListLabelGroupsCommand extends $Command<ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput, LookoutEquipmentClientResolvedConfig> {
52
59
  readonly input: ListLabelGroupsCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: ListLabelGroupsCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
5
5
  import { ListLabelsRequest, ListLabelsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListLabelsCommand}.
8
10
  */
9
11
  export interface ListLabelsCommandInput extends ListLabelsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListLabelsCommand}.
13
17
  */
14
18
  export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Provides a list of labels.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataB
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListLabelsCommandInput - {@link ListLabelsCommandInput}
36
+ * @returns {@link ListLabelsCommandOutput}
30
37
  * @see {@link ListLabelsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListLabelsCommandOutput} for command's `response` shape.
32
39
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -51,11 +58,20 @@ export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataB
51
58
  export declare class ListLabelsCommand extends $Command<ListLabelsCommandInput, ListLabelsCommandOutput, LookoutEquipmentClientResolvedConfig> {
52
59
  readonly input: ListLabelsCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: ListLabelsCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLabelsCommandInput, ListLabelsCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
5
5
  import { ListModelsRequest, ListModelsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListModelsCommand}.
8
10
  */
9
11
  export interface ListModelsCommandInput extends ListModelsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListModelsCommand}.
13
17
  */
14
18
  export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Generates a list of all models in the account, including model name and ARN, dataset,
18
23
  * and status. </p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataB
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListModelsCommandInput - {@link ListModelsCommandInput}
35
+ * @returns {@link ListModelsCommandOutput}
29
36
  * @see {@link ListModelsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListModelsCommandOutput} for command's `response` shape.
31
38
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataB
50
57
  export declare class ListModelsCommand extends $Command<ListModelsCommandInput, ListModelsCommandOutput, LookoutEquipmentClientResolvedConfig> {
51
58
  readonly input: ListModelsCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListModelsCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListModelsCommandInput, ListModelsCommandOutput>;
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 { ListSensorStatisticsRequest, ListSensorStatisticsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSensorStatisticsCommand}.
8
10
  */
9
11
  export interface ListSensorStatisticsCommandInput extends ListSensorStatisticsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSensorStatisticsCommand}.
13
17
  */
14
18
  export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p> Lists statistics about the data collected for each of the sensors that have been
18
23
  * successfully ingested in the particular dataset. Can also be used to retreive Sensor
19
24
  * Statistics for a previous ingestion job. </p>
@@ -27,6 +32,8 @@ export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsR
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListSensorStatisticsCommandInput - {@link ListSensorStatisticsCommandInput}
36
+ * @returns {@link ListSensorStatisticsCommandOutput}
30
37
  * @see {@link ListSensorStatisticsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListSensorStatisticsCommandOutput} for command's `response` shape.
32
39
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -55,11 +62,20 @@ export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsR
55
62
  export declare class ListSensorStatisticsCommand extends $Command<ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput, LookoutEquipmentClientResolvedConfig> {
56
63
  readonly input: ListSensorStatisticsCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: ListSensorStatisticsCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput>;
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all the tags for a specified resource, including key and value. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -53,11 +60,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
53
60
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, LookoutEquipmentClientResolvedConfig> {
54
61
  readonly input: ListTagsForResourceCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: ListTagsForResourceCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
5
5
  import { StartDataIngestionJobRequest, StartDataIngestionJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartDataIngestionJobCommand}.
8
10
  */
9
11
  export interface StartDataIngestionJobCommandInput extends StartDataIngestionJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartDataIngestionJobCommand}.
13
17
  */
14
18
  export interface StartDataIngestionJobCommandOutput extends StartDataIngestionJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Starts a data ingestion job. Amazon Lookout for Equipment returns the job status.
18
23
  * </p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface StartDataIngestionJobCommandOutput extends StartDataIngestionJo
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param StartDataIngestionJobCommandInput - {@link StartDataIngestionJobCommandInput}
35
+ * @returns {@link StartDataIngestionJobCommandOutput}
29
36
  * @see {@link StartDataIngestionJobCommandInput} for command's `input` shape.
30
37
  * @see {@link StartDataIngestionJobCommandOutput} for command's `response` shape.
31
38
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -61,11 +68,20 @@ export interface StartDataIngestionJobCommandOutput extends StartDataIngestionJo
61
68
  export declare class StartDataIngestionJobCommand extends $Command<StartDataIngestionJobCommandInput, StartDataIngestionJobCommandOutput, LookoutEquipmentClientResolvedConfig> {
62
69
  readonly input: StartDataIngestionJobCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: StartDataIngestionJobCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDataIngestionJobCommandInput, StartDataIngestionJobCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
5
5
  import { StartInferenceSchedulerRequest, StartInferenceSchedulerResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartInferenceSchedulerCommand}.
8
10
  */
9
11
  export interface StartInferenceSchedulerCommandInput extends StartInferenceSchedulerRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartInferenceSchedulerCommand}.
13
17
  */
14
18
  export interface StartInferenceSchedulerCommandOutput extends StartInferenceSchedulerResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Starts an inference scheduler. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StartInferenceSchedulerCommandOutput extends StartInferenceSche
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StartInferenceSchedulerCommandInput - {@link StartInferenceSchedulerCommandInput}
34
+ * @returns {@link StartInferenceSchedulerCommandOutput}
28
35
  * @see {@link StartInferenceSchedulerCommandInput} for command's `input` shape.
29
36
  * @see {@link StartInferenceSchedulerCommandOutput} for command's `response` shape.
30
37
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -57,11 +64,20 @@ export interface StartInferenceSchedulerCommandOutput extends StartInferenceSche
57
64
  export declare class StartInferenceSchedulerCommand extends $Command<StartInferenceSchedulerCommandInput, StartInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
58
65
  readonly input: StartInferenceSchedulerCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: StartInferenceSchedulerCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartInferenceSchedulerCommandInput, StartInferenceSchedulerCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
5
5
  import { StopInferenceSchedulerRequest, StopInferenceSchedulerResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StopInferenceSchedulerCommand}.
8
10
  */
9
11
  export interface StopInferenceSchedulerCommandInput extends StopInferenceSchedulerRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StopInferenceSchedulerCommand}.
13
17
  */
14
18
  export interface StopInferenceSchedulerCommandOutput extends StopInferenceSchedulerResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops an inference scheduler. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface StopInferenceSchedulerCommandOutput extends StopInferenceSchedu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param StopInferenceSchedulerCommandInput - {@link StopInferenceSchedulerCommandInput}
34
+ * @returns {@link StopInferenceSchedulerCommandOutput}
28
35
  * @see {@link StopInferenceSchedulerCommandInput} for command's `input` shape.
29
36
  * @see {@link StopInferenceSchedulerCommandOutput} for command's `response` shape.
30
37
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -57,11 +64,20 @@ export interface StopInferenceSchedulerCommandOutput extends StopInferenceSchedu
57
64
  export declare class StopInferenceSchedulerCommand extends $Command<StopInferenceSchedulerCommandInput, StopInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
58
65
  readonly input: StopInferenceSchedulerCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: StopInferenceSchedulerCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopInferenceSchedulerCommandInput, StopInferenceSchedulerCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates a given tag to a resource in your account. A tag is a key-value pair which
18
23
  * can be added to an Amazon Lookout for Equipment resource as metadata. Tags can be used for
19
24
  * organizing your resources as well as helping you to search and filter by tag. Multiple tags
@@ -29,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
38
+ * @returns {@link TagResourceCommandOutput}
32
39
  * @see {@link TagResourceCommandInput} for command's `input` shape.
33
40
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
34
41
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -60,11 +67,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
60
67
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, LookoutEquipmentClientResolvedConfig> {
61
68
  readonly input: TagResourceCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: TagResourceCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
78
+ /**
79
+ * @internal
80
+ */
68
81
  private serialize;
82
+ /**
83
+ * @internal
84
+ */
69
85
  private deserialize;
70
86
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes a specific tag from a given resource. The tag is specified by its key. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -53,11 +60,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
53
60
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, LookoutEquipmentClientResolvedConfig> {
54
61
  readonly input: UntagResourceCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: UntagResourceCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient";
5
5
  import { UpdateInferenceSchedulerRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateInferenceSchedulerCommand}.
8
10
  */
9
11
  export interface UpdateInferenceSchedulerCommandInput extends UpdateInferenceSchedulerRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateInferenceSchedulerCommand}.
13
17
  */
14
18
  export interface UpdateInferenceSchedulerCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an inference scheduler. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateInferenceSchedulerCommandOutput extends __MetadataBearer
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateInferenceSchedulerCommandInput - {@link UpdateInferenceSchedulerCommandInput}
34
+ * @returns {@link UpdateInferenceSchedulerCommandOutput}
28
35
  * @see {@link UpdateInferenceSchedulerCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateInferenceSchedulerCommandOutput} for command's `response` shape.
30
37
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
@@ -57,11 +64,20 @@ export interface UpdateInferenceSchedulerCommandOutput extends __MetadataBearer
57
64
  export declare class UpdateInferenceSchedulerCommand extends $Command<UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
58
65
  readonly input: UpdateInferenceSchedulerCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: UpdateInferenceSchedulerCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LookoutEquipmentClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }