@aws-sdk/client-lookoutequipment 3.289.0 → 3.290.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 (34) hide show
  1. package/dist-types/commands/CreateDatasetCommand.d.ts +23 -0
  2. package/dist-types/commands/CreateInferenceSchedulerCommand.d.ts +27 -0
  3. package/dist-types/commands/CreateLabelCommand.d.ts +27 -0
  4. package/dist-types/commands/CreateLabelGroupCommand.d.ts +23 -0
  5. package/dist-types/commands/CreateModelCommand.d.ts +27 -0
  6. package/dist-types/commands/DeleteDatasetCommand.d.ts +24 -0
  7. package/dist-types/commands/DeleteInferenceSchedulerCommand.d.ts +24 -0
  8. package/dist-types/commands/DeleteLabelCommand.d.ts +24 -0
  9. package/dist-types/commands/DeleteLabelGroupCommand.d.ts +24 -0
  10. package/dist-types/commands/DeleteModelCommand.d.ts +24 -0
  11. package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +20 -0
  12. package/dist-types/commands/DescribeDatasetCommand.d.ts +20 -0
  13. package/dist-types/commands/DescribeInferenceSchedulerCommand.d.ts +20 -0
  14. package/dist-types/commands/DescribeLabelCommand.d.ts +20 -0
  15. package/dist-types/commands/DescribeLabelGroupCommand.d.ts +20 -0
  16. package/dist-types/commands/DescribeModelCommand.d.ts +20 -0
  17. package/dist-types/commands/ListDataIngestionJobsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListDatasetsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListInferenceEventsCommand.d.ts +20 -0
  20. package/dist-types/commands/ListInferenceExecutionsCommand.d.ts +20 -0
  21. package/dist-types/commands/ListInferenceSchedulersCommand.d.ts +16 -0
  22. package/dist-types/commands/ListLabelGroupsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListLabelsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListModelsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListSensorStatisticsCommand.d.ts +20 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +20 -0
  27. package/dist-types/commands/StartDataIngestionJobCommand.d.ts +27 -0
  28. package/dist-types/commands/StartInferenceSchedulerCommand.d.ts +24 -0
  29. package/dist-types/commands/StopInferenceSchedulerCommand.d.ts +24 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +23 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +20 -0
  32. package/dist-types/commands/UpdateInferenceSchedulerCommand.d.ts +24 -0
  33. package/dist-types/commands/UpdateLabelGroupCommand.d.ts +24 -0
  34. package/package.json +29 -29
@@ -32,6 +32,29 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
32
32
  * @see {@link CreateDatasetCommandOutput} for command's `response` shape.
33
33
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
34
34
  *
35
+ * @throws {@link AccessDeniedException} (client fault)
36
+ * <p>The request could not be completed because you do not have access to the resource.
37
+ * </p>
38
+ *
39
+ * @throws {@link ConflictException} (client fault)
40
+ * <p> The request could not be completed due to a conflict with the current state of the
41
+ * target resource. </p>
42
+ *
43
+ * @throws {@link InternalServerException} (server fault)
44
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
45
+ * </p>
46
+ *
47
+ * @throws {@link ServiceQuotaExceededException} (client fault)
48
+ * <p> Resource limitations have been exceeded. </p>
49
+ *
50
+ * @throws {@link ThrottlingException} (client fault)
51
+ * <p>The request was denied due to request throttling.</p>
52
+ *
53
+ * @throws {@link ValidationException} (client fault)
54
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
55
+ * related AWS service that's being utilized. </p>
56
+ *
57
+ *
35
58
  */
36
59
  export declare class CreateDatasetCommand extends $Command<CreateDatasetCommandInput, CreateDatasetCommandOutput, LookoutEquipmentClientResolvedConfig> {
37
60
  readonly input: CreateDatasetCommandInput;
@@ -33,6 +33,33 @@ export interface CreateInferenceSchedulerCommandOutput extends CreateInferenceSc
33
33
  * @see {@link CreateInferenceSchedulerCommandOutput} for command's `response` shape.
34
34
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
35
35
  *
36
+ * @throws {@link AccessDeniedException} (client fault)
37
+ * <p>The request could not be completed because you do not have access to the resource.
38
+ * </p>
39
+ *
40
+ * @throws {@link ConflictException} (client fault)
41
+ * <p> The request could not be completed due to a conflict with the current state of the
42
+ * target resource. </p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
46
+ * </p>
47
+ *
48
+ * @throws {@link ResourceNotFoundException} (client fault)
49
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
50
+ * request. </p>
51
+ *
52
+ * @throws {@link ServiceQuotaExceededException} (client fault)
53
+ * <p> Resource limitations have been exceeded. </p>
54
+ *
55
+ * @throws {@link ThrottlingException} (client fault)
56
+ * <p>The request was denied due to request throttling.</p>
57
+ *
58
+ * @throws {@link ValidationException} (client fault)
59
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
60
+ * related AWS service that's being utilized. </p>
61
+ *
62
+ *
36
63
  */
37
64
  export declare class CreateInferenceSchedulerCommand extends $Command<CreateInferenceSchedulerCommandInput, CreateInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
38
65
  readonly input: CreateInferenceSchedulerCommandInput;
@@ -31,6 +31,33 @@ export interface CreateLabelCommandOutput extends CreateLabelResponse, __Metadat
31
31
  * @see {@link CreateLabelCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p> The request could not be completed due to a conflict with the current state of the
40
+ * target resource. </p>
41
+ *
42
+ * @throws {@link InternalServerException} (server fault)
43
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
44
+ * </p>
45
+ *
46
+ * @throws {@link ResourceNotFoundException} (client fault)
47
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
48
+ * request. </p>
49
+ *
50
+ * @throws {@link ServiceQuotaExceededException} (client fault)
51
+ * <p> Resource limitations have been exceeded. </p>
52
+ *
53
+ * @throws {@link ThrottlingException} (client fault)
54
+ * <p>The request was denied due to request throttling.</p>
55
+ *
56
+ * @throws {@link ValidationException} (client fault)
57
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
58
+ * related AWS service that's being utilized. </p>
59
+ *
60
+ *
34
61
  */
35
62
  export declare class CreateLabelCommand extends $Command<CreateLabelCommandInput, CreateLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
63
  readonly input: CreateLabelCommandInput;
@@ -31,6 +31,29 @@ export interface CreateLabelGroupCommandOutput extends CreateLabelGroupResponse,
31
31
  * @see {@link CreateLabelGroupCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p> The request could not be completed due to a conflict with the current state of the
40
+ * target resource. </p>
41
+ *
42
+ * @throws {@link InternalServerException} (server fault)
43
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
44
+ * </p>
45
+ *
46
+ * @throws {@link ServiceQuotaExceededException} (client fault)
47
+ * <p> Resource limitations have been exceeded. </p>
48
+ *
49
+ * @throws {@link ThrottlingException} (client fault)
50
+ * <p>The request was denied due to request throttling.</p>
51
+ *
52
+ * @throws {@link ValidationException} (client fault)
53
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
54
+ * related AWS service that's being utilized. </p>
55
+ *
56
+ *
34
57
  */
35
58
  export declare class CreateLabelGroupCommand extends $Command<CreateLabelGroupCommandInput, CreateLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
59
  readonly input: CreateLabelGroupCommandInput;
@@ -37,6 +37,33 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat
37
37
  * @see {@link CreateModelCommandOutput} for command's `response` shape.
38
38
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
39
39
  *
40
+ * @throws {@link AccessDeniedException} (client fault)
41
+ * <p>The request could not be completed because you do not have access to the resource.
42
+ * </p>
43
+ *
44
+ * @throws {@link ConflictException} (client fault)
45
+ * <p> The request could not be completed due to a conflict with the current state of the
46
+ * target resource. </p>
47
+ *
48
+ * @throws {@link InternalServerException} (server fault)
49
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
50
+ * </p>
51
+ *
52
+ * @throws {@link ResourceNotFoundException} (client fault)
53
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
54
+ * request. </p>
55
+ *
56
+ * @throws {@link ServiceQuotaExceededException} (client fault)
57
+ * <p> Resource limitations have been exceeded. </p>
58
+ *
59
+ * @throws {@link ThrottlingException} (client fault)
60
+ * <p>The request was denied due to request throttling.</p>
61
+ *
62
+ * @throws {@link ValidationException} (client fault)
63
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
64
+ * related AWS service that's being utilized. </p>
65
+ *
66
+ *
40
67
  */
41
68
  export declare class CreateModelCommand extends $Command<CreateModelCommandInput, CreateModelCommandOutput, LookoutEquipmentClientResolvedConfig> {
42
69
  readonly input: CreateModelCommandInput;
@@ -33,6 +33,30 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {
33
33
  * @see {@link DeleteDatasetCommandOutput} for command's `response` shape.
34
34
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
35
35
  *
36
+ * @throws {@link AccessDeniedException} (client fault)
37
+ * <p>The request could not be completed because you do not have access to the resource.
38
+ * </p>
39
+ *
40
+ * @throws {@link ConflictException} (client fault)
41
+ * <p> The request could not be completed due to a conflict with the current state of the
42
+ * target resource. </p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
46
+ * </p>
47
+ *
48
+ * @throws {@link ResourceNotFoundException} (client fault)
49
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
50
+ * request. </p>
51
+ *
52
+ * @throws {@link ThrottlingException} (client fault)
53
+ * <p>The request was denied due to request throttling.</p>
54
+ *
55
+ * @throws {@link ValidationException} (client fault)
56
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
57
+ * related AWS service that's being utilized. </p>
58
+ *
59
+ *
36
60
  */
37
61
  export declare class DeleteDatasetCommand extends $Command<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, LookoutEquipmentClientResolvedConfig> {
38
62
  readonly input: DeleteDatasetCommandInput;
@@ -30,6 +30,30 @@ export interface DeleteInferenceSchedulerCommandOutput extends __MetadataBearer
30
30
  * @see {@link DeleteInferenceSchedulerCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link ConflictException} (client fault)
38
+ * <p> The request could not be completed due to a conflict with the current state of the
39
+ * target resource. </p>
40
+ *
41
+ * @throws {@link InternalServerException} (server fault)
42
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
43
+ * </p>
44
+ *
45
+ * @throws {@link ResourceNotFoundException} (client fault)
46
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
47
+ * request. </p>
48
+ *
49
+ * @throws {@link ThrottlingException} (client fault)
50
+ * <p>The request was denied due to request throttling.</p>
51
+ *
52
+ * @throws {@link ValidationException} (client fault)
53
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
54
+ * related AWS service that's being utilized. </p>
55
+ *
56
+ *
33
57
  */
34
58
  export declare class DeleteInferenceSchedulerCommand extends $Command<DeleteInferenceSchedulerCommandInput, DeleteInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
59
  readonly input: DeleteInferenceSchedulerCommandInput;
@@ -31,6 +31,30 @@ export interface DeleteLabelCommandOutput extends __MetadataBearer {
31
31
  * @see {@link DeleteLabelCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p> The request could not be completed due to a conflict with the current state of the
40
+ * target resource. </p>
41
+ *
42
+ * @throws {@link InternalServerException} (server fault)
43
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
44
+ * </p>
45
+ *
46
+ * @throws {@link ResourceNotFoundException} (client fault)
47
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
48
+ * request. </p>
49
+ *
50
+ * @throws {@link ThrottlingException} (client fault)
51
+ * <p>The request was denied due to request throttling.</p>
52
+ *
53
+ * @throws {@link ValidationException} (client fault)
54
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
55
+ * related AWS service that's being utilized. </p>
56
+ *
57
+ *
34
58
  */
35
59
  export declare class DeleteLabelCommand extends $Command<DeleteLabelCommandInput, DeleteLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
60
  readonly input: DeleteLabelCommandInput;
@@ -31,6 +31,30 @@ export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {
31
31
  * @see {@link DeleteLabelGroupCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p> The request could not be completed due to a conflict with the current state of the
40
+ * target resource. </p>
41
+ *
42
+ * @throws {@link InternalServerException} (server fault)
43
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
44
+ * </p>
45
+ *
46
+ * @throws {@link ResourceNotFoundException} (client fault)
47
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
48
+ * request. </p>
49
+ *
50
+ * @throws {@link ThrottlingException} (client fault)
51
+ * <p>The request was denied due to request throttling.</p>
52
+ *
53
+ * @throws {@link ValidationException} (client fault)
54
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
55
+ * related AWS service that's being utilized. </p>
56
+ *
57
+ *
34
58
  */
35
59
  export declare class DeleteLabelGroupCommand extends $Command<DeleteLabelGroupCommandInput, DeleteLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
60
  readonly input: DeleteLabelGroupCommandInput;
@@ -31,6 +31,30 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {
31
31
  * @see {@link DeleteModelCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p> The request could not be completed due to a conflict with the current state of the
40
+ * target resource. </p>
41
+ *
42
+ * @throws {@link InternalServerException} (server fault)
43
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
44
+ * </p>
45
+ *
46
+ * @throws {@link ResourceNotFoundException} (client fault)
47
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
48
+ * request. </p>
49
+ *
50
+ * @throws {@link ThrottlingException} (client fault)
51
+ * <p>The request was denied due to request throttling.</p>
52
+ *
53
+ * @throws {@link ValidationException} (client fault)
54
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
55
+ * related AWS service that's being utilized. </p>
56
+ *
57
+ *
34
58
  */
35
59
  export declare class DeleteModelCommand extends $Command<DeleteModelCommandInput, DeleteModelCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
60
  readonly input: DeleteModelCommandInput;
@@ -30,6 +30,26 @@ export interface DescribeDataIngestionJobCommandOutput extends DescribeDataInges
30
30
  * @see {@link DescribeDataIngestionJobCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
39
+ * </p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
43
+ * request. </p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request was denied due to request throttling.</p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
50
+ * related AWS service that's being utilized. </p>
51
+ *
52
+ *
33
53
  */
34
54
  export declare class DescribeDataIngestionJobCommand extends $Command<DescribeDataIngestionJobCommandInput, DescribeDataIngestionJobCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
55
  readonly input: DescribeDataIngestionJobCommandInput;
@@ -30,6 +30,26 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
30
30
  * @see {@link DescribeDatasetCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
39
+ * </p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
43
+ * request. </p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request was denied due to request throttling.</p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
50
+ * related AWS service that's being utilized. </p>
51
+ *
52
+ *
33
53
  */
34
54
  export declare class DescribeDatasetCommand extends $Command<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
55
  readonly input: DescribeDatasetCommandInput;
@@ -30,6 +30,26 @@ export interface DescribeInferenceSchedulerCommandOutput extends DescribeInferen
30
30
  * @see {@link DescribeInferenceSchedulerCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
39
+ * </p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
43
+ * request. </p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request was denied due to request throttling.</p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
50
+ * related AWS service that's being utilized. </p>
51
+ *
52
+ *
33
53
  */
34
54
  export declare class DescribeInferenceSchedulerCommand extends $Command<DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
55
  readonly input: DescribeInferenceSchedulerCommandInput;
@@ -31,6 +31,26 @@ export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __Met
31
31
  * @see {@link DescribeLabelCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
40
+ * </p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
44
+ * request. </p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
51
+ * related AWS service that's being utilized. </p>
52
+ *
53
+ *
34
54
  */
35
55
  export declare class DescribeLabelCommand extends $Command<DescribeLabelCommandInput, DescribeLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
56
  readonly input: DescribeLabelCommandInput;
@@ -31,6 +31,26 @@ export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupRespo
31
31
  * @see {@link DescribeLabelGroupCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
40
+ * </p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
44
+ * request. </p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
51
+ * related AWS service that's being utilized. </p>
52
+ *
53
+ *
34
54
  */
35
55
  export declare class DescribeLabelGroupCommand extends $Command<DescribeLabelGroupCommandInput, DescribeLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
56
  readonly input: DescribeLabelGroupCommandInput;
@@ -31,6 +31,26 @@ export interface DescribeModelCommandOutput extends DescribeModelResponse, __Met
31
31
  * @see {@link DescribeModelCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
40
+ * </p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
44
+ * request. </p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
51
+ * related AWS service that's being utilized. </p>
52
+ *
53
+ *
34
54
  */
35
55
  export declare class DescribeModelCommand extends $Command<DescribeModelCommandInput, DescribeModelCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
56
  readonly input: DescribeModelCommandInput;
@@ -30,6 +30,22 @@ export interface ListDataIngestionJobsCommandOutput extends ListDataIngestionJob
30
30
  * @see {@link ListDataIngestionJobsCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
39
+ * </p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>The request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
46
+ * related AWS service that's being utilized. </p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class ListDataIngestionJobsCommand extends $Command<ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
51
  readonly input: ListDataIngestionJobsCommandInput;
@@ -30,6 +30,22 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
30
30
  * @see {@link ListDatasetsCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
39
+ * </p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>The request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
46
+ * related AWS service that's being utilized. </p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
51
  readonly input: ListDatasetsCommandInput;
@@ -30,6 +30,26 @@ export interface ListInferenceEventsCommandOutput extends ListInferenceEventsRes
30
30
  * @see {@link ListInferenceEventsCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
39
+ * </p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
43
+ * request. </p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request was denied due to request throttling.</p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
50
+ * related AWS service that's being utilized. </p>
51
+ *
52
+ *
33
53
  */
34
54
  export declare class ListInferenceEventsCommand extends $Command<ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
55
  readonly input: ListInferenceEventsCommandInput;
@@ -30,6 +30,26 @@ export interface ListInferenceExecutionsCommandOutput extends ListInferenceExecu
30
30
  * @see {@link ListInferenceExecutionsCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
39
+ * </p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
43
+ * request. </p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request was denied due to request throttling.</p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
50
+ * related AWS service that's being utilized. </p>
51
+ *
52
+ *
33
53
  */
34
54
  export declare class ListInferenceExecutionsCommand extends $Command<ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
55
  readonly input: ListInferenceExecutionsCommandInput;
@@ -30,6 +30,22 @@ export interface ListInferenceSchedulersCommandOutput extends ListInferenceSched
30
30
  * @see {@link ListInferenceSchedulersCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
39
+ * </p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>The request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
46
+ * related AWS service that's being utilized. </p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class ListInferenceSchedulersCommand extends $Command<ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
51
  readonly input: ListInferenceSchedulersCommandInput;
@@ -31,6 +31,22 @@ export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, _
31
31
  * @see {@link ListLabelGroupsCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
40
+ * </p>
41
+ *
42
+ * @throws {@link ThrottlingException} (client fault)
43
+ * <p>The request was denied due to request throttling.</p>
44
+ *
45
+ * @throws {@link ValidationException} (client fault)
46
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
47
+ * related AWS service that's being utilized. </p>
48
+ *
49
+ *
34
50
  */
35
51
  export declare class ListLabelGroupsCommand extends $Command<ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
52
  readonly input: ListLabelGroupsCommandInput;
@@ -31,6 +31,22 @@ export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataB
31
31
  * @see {@link ListLabelsCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
40
+ * </p>
41
+ *
42
+ * @throws {@link ThrottlingException} (client fault)
43
+ * <p>The request was denied due to request throttling.</p>
44
+ *
45
+ * @throws {@link ValidationException} (client fault)
46
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
47
+ * related AWS service that's being utilized. </p>
48
+ *
49
+ *
34
50
  */
35
51
  export declare class ListLabelsCommand extends $Command<ListLabelsCommandInput, ListLabelsCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
52
  readonly input: ListLabelsCommandInput;
@@ -30,6 +30,22 @@ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataB
30
30
  * @see {@link ListModelsCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
39
+ * </p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>The request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
46
+ * related AWS service that's being utilized. </p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class ListModelsCommand extends $Command<ListModelsCommandInput, ListModelsCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
51
  readonly input: ListModelsCommandInput;
@@ -31,6 +31,26 @@ export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsR
31
31
  * @see {@link ListSensorStatisticsCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
40
+ * </p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
44
+ * request. </p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
51
+ * related AWS service that's being utilized. </p>
52
+ *
53
+ *
34
54
  */
35
55
  export declare class ListSensorStatisticsCommand extends $Command<ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
56
  readonly input: ListSensorStatisticsCommandInput;
@@ -29,6 +29,26 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
29
29
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request could not be completed because you do not have access to the resource.
34
+ * </p>
35
+ *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
38
+ * </p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
42
+ * request. </p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>The request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
49
+ * related AWS service that's being utilized. </p>
50
+ *
51
+ *
32
52
  */
33
53
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, LookoutEquipmentClientResolvedConfig> {
34
54
  readonly input: ListTagsForResourceCommandInput;
@@ -30,6 +30,33 @@ export interface StartDataIngestionJobCommandOutput extends StartDataIngestionJo
30
30
  * @see {@link StartDataIngestionJobCommandOutput} for command's `response` shape.
31
31
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request could not be completed because you do not have access to the resource.
35
+ * </p>
36
+ *
37
+ * @throws {@link ConflictException} (client fault)
38
+ * <p> The request could not be completed due to a conflict with the current state of the
39
+ * target resource. </p>
40
+ *
41
+ * @throws {@link InternalServerException} (server fault)
42
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
43
+ * </p>
44
+ *
45
+ * @throws {@link ResourceNotFoundException} (client fault)
46
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
47
+ * request. </p>
48
+ *
49
+ * @throws {@link ServiceQuotaExceededException} (client fault)
50
+ * <p> Resource limitations have been exceeded. </p>
51
+ *
52
+ * @throws {@link ThrottlingException} (client fault)
53
+ * <p>The request was denied due to request throttling.</p>
54
+ *
55
+ * @throws {@link ValidationException} (client fault)
56
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
57
+ * related AWS service that's being utilized. </p>
58
+ *
59
+ *
33
60
  */
34
61
  export declare class StartDataIngestionJobCommand extends $Command<StartDataIngestionJobCommandInput, StartDataIngestionJobCommandOutput, LookoutEquipmentClientResolvedConfig> {
35
62
  readonly input: StartDataIngestionJobCommandInput;
@@ -29,6 +29,30 @@ export interface StartInferenceSchedulerCommandOutput extends StartInferenceSche
29
29
  * @see {@link StartInferenceSchedulerCommandOutput} for command's `response` shape.
30
30
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request could not be completed because you do not have access to the resource.
34
+ * </p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p> The request could not be completed due to a conflict with the current state of the
38
+ * target resource. </p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
42
+ * </p>
43
+ *
44
+ * @throws {@link ResourceNotFoundException} (client fault)
45
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
46
+ * request. </p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>The request was denied due to request throttling.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
53
+ * related AWS service that's being utilized. </p>
54
+ *
55
+ *
32
56
  */
33
57
  export declare class StartInferenceSchedulerCommand extends $Command<StartInferenceSchedulerCommandInput, StartInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
34
58
  readonly input: StartInferenceSchedulerCommandInput;
@@ -29,6 +29,30 @@ export interface StopInferenceSchedulerCommandOutput extends StopInferenceSchedu
29
29
  * @see {@link StopInferenceSchedulerCommandOutput} for command's `response` shape.
30
30
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request could not be completed because you do not have access to the resource.
34
+ * </p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p> The request could not be completed due to a conflict with the current state of the
38
+ * target resource. </p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
42
+ * </p>
43
+ *
44
+ * @throws {@link ResourceNotFoundException} (client fault)
45
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
46
+ * request. </p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>The request was denied due to request throttling.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
53
+ * related AWS service that's being utilized. </p>
54
+ *
55
+ *
32
56
  */
33
57
  export declare class StopInferenceSchedulerCommand extends $Command<StopInferenceSchedulerCommandInput, StopInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
34
58
  readonly input: StopInferenceSchedulerCommandInput;
@@ -33,6 +33,29 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
33
33
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
34
34
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
35
35
  *
36
+ * @throws {@link AccessDeniedException} (client fault)
37
+ * <p>The request could not be completed because you do not have access to the resource.
38
+ * </p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
42
+ * </p>
43
+ *
44
+ * @throws {@link ResourceNotFoundException} (client fault)
45
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
46
+ * request. </p>
47
+ *
48
+ * @throws {@link ServiceQuotaExceededException} (client fault)
49
+ * <p> Resource limitations have been exceeded. </p>
50
+ *
51
+ * @throws {@link ThrottlingException} (client fault)
52
+ * <p>The request was denied due to request throttling.</p>
53
+ *
54
+ * @throws {@link ValidationException} (client fault)
55
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
56
+ * related AWS service that's being utilized. </p>
57
+ *
58
+ *
36
59
  */
37
60
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, LookoutEquipmentClientResolvedConfig> {
38
61
  readonly input: TagResourceCommandInput;
@@ -29,6 +29,26 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
29
29
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request could not be completed because you do not have access to the resource.
34
+ * </p>
35
+ *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
38
+ * </p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
42
+ * request. </p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>The request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
49
+ * related AWS service that's being utilized. </p>
50
+ *
51
+ *
32
52
  */
33
53
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, LookoutEquipmentClientResolvedConfig> {
34
54
  readonly input: UntagResourceCommandInput;
@@ -29,6 +29,30 @@ export interface UpdateInferenceSchedulerCommandOutput extends __MetadataBearer
29
29
  * @see {@link UpdateInferenceSchedulerCommandOutput} for command's `response` shape.
30
30
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request could not be completed because you do not have access to the resource.
34
+ * </p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p> The request could not be completed due to a conflict with the current state of the
38
+ * target resource. </p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
42
+ * </p>
43
+ *
44
+ * @throws {@link ResourceNotFoundException} (client fault)
45
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
46
+ * request. </p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>The request was denied due to request throttling.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
53
+ * related AWS service that's being utilized. </p>
54
+ *
55
+ *
32
56
  */
33
57
  export declare class UpdateInferenceSchedulerCommand extends $Command<UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
34
58
  readonly input: UpdateInferenceSchedulerCommandInput;
@@ -31,6 +31,30 @@ export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {
31
31
  * @see {@link UpdateLabelGroupCommandOutput} for command's `response` shape.
32
32
  * @see {@link LookoutEquipmentClientResolvedConfig | config} for LookoutEquipmentClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>The request could not be completed because you do not have access to the resource.
36
+ * </p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p> The request could not be completed due to a conflict with the current state of the
40
+ * target resource. </p>
41
+ *
42
+ * @throws {@link InternalServerException} (server fault)
43
+ * <p> Processing of the request has failed because of an unknown error, exception or failure.
44
+ * </p>
45
+ *
46
+ * @throws {@link ResourceNotFoundException} (client fault)
47
+ * <p> The resource requested could not be found. Verify the resource ID and retry your
48
+ * request. </p>
49
+ *
50
+ * @throws {@link ThrottlingException} (client fault)
51
+ * <p>The request was denied due to request throttling.</p>
52
+ *
53
+ * @throws {@link ValidationException} (client fault)
54
+ * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
55
+ * related AWS service that's being utilized. </p>
56
+ *
57
+ *
34
58
  */
35
59
  export declare class UpdateLabelGroupCommand extends $Command<UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
36
60
  readonly input: UpdateLabelGroupCommandInput;
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.289.0",
4
+ "version": "3.290.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,37 +20,37 @@
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.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1",
56
56
  "uuid": "^8.3.2"