@aws-sdk/client-lookoutequipment 3.159.0 → 3.162.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 (72) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +2 -3
  3. package/dist-cjs/LookoutEquipment.js +135 -0
  4. package/dist-cjs/commands/CreateLabelCommand.js +36 -0
  5. package/dist-cjs/commands/CreateLabelGroupCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteLabelCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteLabelGroupCommand.js +36 -0
  8. package/dist-cjs/commands/DescribeLabelCommand.js +36 -0
  9. package/dist-cjs/commands/DescribeLabelGroupCommand.js +36 -0
  10. package/dist-cjs/commands/ListLabelGroupsCommand.js +36 -0
  11. package/dist-cjs/commands/ListLabelsCommand.js +36 -0
  12. package/dist-cjs/commands/UpdateLabelGroupCommand.js +36 -0
  13. package/dist-cjs/commands/index.js +9 -0
  14. package/dist-cjs/endpoints.js +1 -0
  15. package/dist-cjs/models/models_0.js +82 -2
  16. package/dist-cjs/pagination/ListLabelGroupsPaginator.js +36 -0
  17. package/dist-cjs/pagination/ListLabelsPaginator.js +36 -0
  18. package/dist-cjs/pagination/index.js +2 -0
  19. package/dist-cjs/protocols/Aws_json1_0.js +704 -21
  20. package/dist-es/LookoutEquipment.js +135 -0
  21. package/dist-es/commands/CreateLabelCommand.js +39 -0
  22. package/dist-es/commands/CreateLabelGroupCommand.js +39 -0
  23. package/dist-es/commands/DeleteLabelCommand.js +39 -0
  24. package/dist-es/commands/DeleteLabelGroupCommand.js +39 -0
  25. package/dist-es/commands/DescribeLabelCommand.js +39 -0
  26. package/dist-es/commands/DescribeLabelGroupCommand.js +39 -0
  27. package/dist-es/commands/ListLabelGroupsCommand.js +39 -0
  28. package/dist-es/commands/ListLabelsCommand.js +39 -0
  29. package/dist-es/commands/UpdateLabelGroupCommand.js +39 -0
  30. package/dist-es/commands/index.js +9 -0
  31. package/dist-es/endpoints.js +1 -0
  32. package/dist-es/models/models_0.js +28 -0
  33. package/dist-es/pagination/ListLabelGroupsPaginator.js +75 -0
  34. package/dist-es/pagination/ListLabelsPaginator.js +75 -0
  35. package/dist-es/pagination/index.js +2 -0
  36. package/dist-es/protocols/Aws_json1_0.js +1005 -154
  37. package/dist-types/LookoutEquipment.d.ts +85 -5
  38. package/dist-types/LookoutEquipmentClient.d.ts +13 -5
  39. package/dist-types/commands/CreateLabelCommand.d.ts +37 -0
  40. package/dist-types/commands/CreateLabelGroupCommand.d.ts +37 -0
  41. package/dist-types/commands/DeleteLabelCommand.d.ts +37 -0
  42. package/dist-types/commands/DeleteLabelGroupCommand.d.ts +37 -0
  43. package/dist-types/commands/DescribeLabelCommand.d.ts +37 -0
  44. package/dist-types/commands/DescribeLabelGroupCommand.d.ts +37 -0
  45. package/dist-types/commands/ListInferenceEventsCommand.d.ts +2 -2
  46. package/dist-types/commands/ListLabelGroupsCommand.d.ts +37 -0
  47. package/dist-types/commands/ListLabelsCommand.d.ts +37 -0
  48. package/dist-types/commands/UpdateLabelGroupCommand.d.ts +37 -0
  49. package/dist-types/commands/index.d.ts +9 -0
  50. package/dist-types/models/models_0.d.ts +573 -49
  51. package/dist-types/pagination/ListLabelGroupsPaginator.d.ts +4 -0
  52. package/dist-types/pagination/ListLabelsPaginator.d.ts +4 -0
  53. package/dist-types/pagination/index.d.ts +2 -0
  54. package/dist-types/protocols/Aws_json1_0.d.ts +27 -0
  55. package/dist-types/ts3.4/LookoutEquipment.d.ts +45 -0
  56. package/dist-types/ts3.4/LookoutEquipmentClient.d.ts +11 -2
  57. package/dist-types/ts3.4/commands/CreateLabelCommand.d.ts +17 -0
  58. package/dist-types/ts3.4/commands/CreateLabelGroupCommand.d.ts +17 -0
  59. package/dist-types/ts3.4/commands/DeleteLabelCommand.d.ts +17 -0
  60. package/dist-types/ts3.4/commands/DeleteLabelGroupCommand.d.ts +17 -0
  61. package/dist-types/ts3.4/commands/DescribeLabelCommand.d.ts +17 -0
  62. package/dist-types/ts3.4/commands/DescribeLabelGroupCommand.d.ts +17 -0
  63. package/dist-types/ts3.4/commands/ListLabelGroupsCommand.d.ts +17 -0
  64. package/dist-types/ts3.4/commands/ListLabelsCommand.d.ts +17 -0
  65. package/dist-types/ts3.4/commands/UpdateLabelGroupCommand.d.ts +17 -0
  66. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  67. package/dist-types/ts3.4/models/models_0.d.ts +56 -1
  68. package/dist-types/ts3.4/pagination/ListLabelGroupsPaginator.d.ts +4 -0
  69. package/dist-types/ts3.4/pagination/ListLabelsPaginator.d.ts +4 -0
  70. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  71. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +27 -0
  72. package/package.json +26 -26
@@ -1,19 +1,27 @@
1
1
  import { __extends } from "tslib";
2
2
  import { CreateDatasetCommand, } from "./commands/CreateDatasetCommand";
3
3
  import { CreateInferenceSchedulerCommand, } from "./commands/CreateInferenceSchedulerCommand";
4
+ import { CreateLabelCommand } from "./commands/CreateLabelCommand";
5
+ import { CreateLabelGroupCommand, } from "./commands/CreateLabelGroupCommand";
4
6
  import { CreateModelCommand } from "./commands/CreateModelCommand";
5
7
  import { DeleteDatasetCommand, } from "./commands/DeleteDatasetCommand";
6
8
  import { DeleteInferenceSchedulerCommand, } from "./commands/DeleteInferenceSchedulerCommand";
9
+ import { DeleteLabelCommand } from "./commands/DeleteLabelCommand";
10
+ import { DeleteLabelGroupCommand, } from "./commands/DeleteLabelGroupCommand";
7
11
  import { DeleteModelCommand } from "./commands/DeleteModelCommand";
8
12
  import { DescribeDataIngestionJobCommand, } from "./commands/DescribeDataIngestionJobCommand";
9
13
  import { DescribeDatasetCommand, } from "./commands/DescribeDatasetCommand";
10
14
  import { DescribeInferenceSchedulerCommand, } from "./commands/DescribeInferenceSchedulerCommand";
15
+ import { DescribeLabelCommand, } from "./commands/DescribeLabelCommand";
16
+ import { DescribeLabelGroupCommand, } from "./commands/DescribeLabelGroupCommand";
11
17
  import { DescribeModelCommand, } from "./commands/DescribeModelCommand";
12
18
  import { ListDataIngestionJobsCommand, } from "./commands/ListDataIngestionJobsCommand";
13
19
  import { ListDatasetsCommand, } from "./commands/ListDatasetsCommand";
14
20
  import { ListInferenceEventsCommand, } from "./commands/ListInferenceEventsCommand";
15
21
  import { ListInferenceExecutionsCommand, } from "./commands/ListInferenceExecutionsCommand";
16
22
  import { ListInferenceSchedulersCommand, } from "./commands/ListInferenceSchedulersCommand";
23
+ import { ListLabelGroupsCommand, } from "./commands/ListLabelGroupsCommand";
24
+ import { ListLabelsCommand } from "./commands/ListLabelsCommand";
17
25
  import { ListModelsCommand } from "./commands/ListModelsCommand";
18
26
  import { ListSensorStatisticsCommand, } from "./commands/ListSensorStatisticsCommand";
19
27
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
@@ -23,6 +31,7 @@ import { StopInferenceSchedulerCommand, } from "./commands/StopInferenceSchedule
23
31
  import { TagResourceCommand } from "./commands/TagResourceCommand";
24
32
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
25
33
  import { UpdateInferenceSchedulerCommand, } from "./commands/UpdateInferenceSchedulerCommand";
34
+ import { UpdateLabelGroupCommand, } from "./commands/UpdateLabelGroupCommand";
26
35
  import { LookoutEquipmentClient } from "./LookoutEquipmentClient";
27
36
  var LookoutEquipment = (function (_super) {
28
37
  __extends(LookoutEquipment, _super);
@@ -57,6 +66,34 @@ var LookoutEquipment = (function (_super) {
57
66
  return this.send(command, optionsOrCb);
58
67
  }
59
68
  };
69
+ LookoutEquipment.prototype.createLabel = function (args, optionsOrCb, cb) {
70
+ var command = new CreateLabelCommand(args);
71
+ if (typeof optionsOrCb === "function") {
72
+ this.send(command, optionsOrCb);
73
+ }
74
+ else if (typeof cb === "function") {
75
+ if (typeof optionsOrCb !== "object")
76
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
77
+ this.send(command, optionsOrCb || {}, cb);
78
+ }
79
+ else {
80
+ return this.send(command, optionsOrCb);
81
+ }
82
+ };
83
+ LookoutEquipment.prototype.createLabelGroup = function (args, optionsOrCb, cb) {
84
+ var command = new CreateLabelGroupCommand(args);
85
+ if (typeof optionsOrCb === "function") {
86
+ this.send(command, optionsOrCb);
87
+ }
88
+ else if (typeof cb === "function") {
89
+ if (typeof optionsOrCb !== "object")
90
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
91
+ this.send(command, optionsOrCb || {}, cb);
92
+ }
93
+ else {
94
+ return this.send(command, optionsOrCb);
95
+ }
96
+ };
60
97
  LookoutEquipment.prototype.createModel = function (args, optionsOrCb, cb) {
61
98
  var command = new CreateModelCommand(args);
62
99
  if (typeof optionsOrCb === "function") {
@@ -99,6 +136,34 @@ var LookoutEquipment = (function (_super) {
99
136
  return this.send(command, optionsOrCb);
100
137
  }
101
138
  };
139
+ LookoutEquipment.prototype.deleteLabel = function (args, optionsOrCb, cb) {
140
+ var command = new DeleteLabelCommand(args);
141
+ if (typeof optionsOrCb === "function") {
142
+ this.send(command, optionsOrCb);
143
+ }
144
+ else if (typeof cb === "function") {
145
+ if (typeof optionsOrCb !== "object")
146
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
147
+ this.send(command, optionsOrCb || {}, cb);
148
+ }
149
+ else {
150
+ return this.send(command, optionsOrCb);
151
+ }
152
+ };
153
+ LookoutEquipment.prototype.deleteLabelGroup = function (args, optionsOrCb, cb) {
154
+ var command = new DeleteLabelGroupCommand(args);
155
+ if (typeof optionsOrCb === "function") {
156
+ this.send(command, optionsOrCb);
157
+ }
158
+ else if (typeof cb === "function") {
159
+ if (typeof optionsOrCb !== "object")
160
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
161
+ this.send(command, optionsOrCb || {}, cb);
162
+ }
163
+ else {
164
+ return this.send(command, optionsOrCb);
165
+ }
166
+ };
102
167
  LookoutEquipment.prototype.deleteModel = function (args, optionsOrCb, cb) {
103
168
  var command = new DeleteModelCommand(args);
104
169
  if (typeof optionsOrCb === "function") {
@@ -155,6 +220,34 @@ var LookoutEquipment = (function (_super) {
155
220
  return this.send(command, optionsOrCb);
156
221
  }
157
222
  };
223
+ LookoutEquipment.prototype.describeLabel = function (args, optionsOrCb, cb) {
224
+ var command = new DescribeLabelCommand(args);
225
+ if (typeof optionsOrCb === "function") {
226
+ this.send(command, optionsOrCb);
227
+ }
228
+ else if (typeof cb === "function") {
229
+ if (typeof optionsOrCb !== "object")
230
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
231
+ this.send(command, optionsOrCb || {}, cb);
232
+ }
233
+ else {
234
+ return this.send(command, optionsOrCb);
235
+ }
236
+ };
237
+ LookoutEquipment.prototype.describeLabelGroup = function (args, optionsOrCb, cb) {
238
+ var command = new DescribeLabelGroupCommand(args);
239
+ if (typeof optionsOrCb === "function") {
240
+ this.send(command, optionsOrCb);
241
+ }
242
+ else if (typeof cb === "function") {
243
+ if (typeof optionsOrCb !== "object")
244
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
245
+ this.send(command, optionsOrCb || {}, cb);
246
+ }
247
+ else {
248
+ return this.send(command, optionsOrCb);
249
+ }
250
+ };
158
251
  LookoutEquipment.prototype.describeModel = function (args, optionsOrCb, cb) {
159
252
  var command = new DescribeModelCommand(args);
160
253
  if (typeof optionsOrCb === "function") {
@@ -239,6 +332,34 @@ var LookoutEquipment = (function (_super) {
239
332
  return this.send(command, optionsOrCb);
240
333
  }
241
334
  };
335
+ LookoutEquipment.prototype.listLabelGroups = function (args, optionsOrCb, cb) {
336
+ var command = new ListLabelGroupsCommand(args);
337
+ if (typeof optionsOrCb === "function") {
338
+ this.send(command, optionsOrCb);
339
+ }
340
+ else if (typeof cb === "function") {
341
+ if (typeof optionsOrCb !== "object")
342
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
343
+ this.send(command, optionsOrCb || {}, cb);
344
+ }
345
+ else {
346
+ return this.send(command, optionsOrCb);
347
+ }
348
+ };
349
+ LookoutEquipment.prototype.listLabels = function (args, optionsOrCb, cb) {
350
+ var command = new ListLabelsCommand(args);
351
+ if (typeof optionsOrCb === "function") {
352
+ this.send(command, optionsOrCb);
353
+ }
354
+ else if (typeof cb === "function") {
355
+ if (typeof optionsOrCb !== "object")
356
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
357
+ this.send(command, optionsOrCb || {}, cb);
358
+ }
359
+ else {
360
+ return this.send(command, optionsOrCb);
361
+ }
362
+ };
242
363
  LookoutEquipment.prototype.listModels = function (args, optionsOrCb, cb) {
243
364
  var command = new ListModelsCommand(args);
244
365
  if (typeof optionsOrCb === "function") {
@@ -365,6 +486,20 @@ var LookoutEquipment = (function (_super) {
365
486
  return this.send(command, optionsOrCb);
366
487
  }
367
488
  };
489
+ LookoutEquipment.prototype.updateLabelGroup = function (args, optionsOrCb, cb) {
490
+ var command = new UpdateLabelGroupCommand(args);
491
+ if (typeof optionsOrCb === "function") {
492
+ this.send(command, optionsOrCb);
493
+ }
494
+ else if (typeof cb === "function") {
495
+ if (typeof optionsOrCb !== "object")
496
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
497
+ this.send(command, optionsOrCb || {}, cb);
498
+ }
499
+ else {
500
+ return this.send(command, optionsOrCb);
501
+ }
502
+ };
368
503
  return LookoutEquipment;
369
504
  }(LookoutEquipmentClient));
370
505
  export { LookoutEquipment };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { CreateLabelRequestFilterSensitiveLog, CreateLabelResponseFilterSensitiveLog, } from "../models/models_0";
5
+ import { deserializeAws_json1_0CreateLabelCommand, serializeAws_json1_0CreateLabelCommand, } from "../protocols/Aws_json1_0";
6
+ var CreateLabelCommand = (function (_super) {
7
+ __extends(CreateLabelCommand, _super);
8
+ function CreateLabelCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ CreateLabelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "CreateLabelCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: CreateLabelRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: CreateLabelResponseFilterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ CreateLabelCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0CreateLabelCommand(input, context);
33
+ };
34
+ CreateLabelCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0CreateLabelCommand(output, context);
36
+ };
37
+ return CreateLabelCommand;
38
+ }($Command));
39
+ export { CreateLabelCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { CreateLabelGroupRequestFilterSensitiveLog, CreateLabelGroupResponseFilterSensitiveLog, } from "../models/models_0";
5
+ import { deserializeAws_json1_0CreateLabelGroupCommand, serializeAws_json1_0CreateLabelGroupCommand, } from "../protocols/Aws_json1_0";
6
+ var CreateLabelGroupCommand = (function (_super) {
7
+ __extends(CreateLabelGroupCommand, _super);
8
+ function CreateLabelGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ CreateLabelGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "CreateLabelGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: CreateLabelGroupRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: CreateLabelGroupResponseFilterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ CreateLabelGroupCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0CreateLabelGroupCommand(input, context);
33
+ };
34
+ CreateLabelGroupCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0CreateLabelGroupCommand(output, context);
36
+ };
37
+ return CreateLabelGroupCommand;
38
+ }($Command));
39
+ export { CreateLabelGroupCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DeleteLabelRequestFilterSensitiveLog } from "../models/models_0";
5
+ import { deserializeAws_json1_0DeleteLabelCommand, serializeAws_json1_0DeleteLabelCommand, } from "../protocols/Aws_json1_0";
6
+ var DeleteLabelCommand = (function (_super) {
7
+ __extends(DeleteLabelCommand, _super);
8
+ function DeleteLabelCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DeleteLabelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "DeleteLabelCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: DeleteLabelRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: function (output) { return output; },
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteLabelCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0DeleteLabelCommand(input, context);
33
+ };
34
+ DeleteLabelCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0DeleteLabelCommand(output, context);
36
+ };
37
+ return DeleteLabelCommand;
38
+ }($Command));
39
+ export { DeleteLabelCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DeleteLabelGroupRequestFilterSensitiveLog } from "../models/models_0";
5
+ import { deserializeAws_json1_0DeleteLabelGroupCommand, serializeAws_json1_0DeleteLabelGroupCommand, } from "../protocols/Aws_json1_0";
6
+ var DeleteLabelGroupCommand = (function (_super) {
7
+ __extends(DeleteLabelGroupCommand, _super);
8
+ function DeleteLabelGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DeleteLabelGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "DeleteLabelGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: DeleteLabelGroupRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: function (output) { return output; },
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteLabelGroupCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0DeleteLabelGroupCommand(input, context);
33
+ };
34
+ DeleteLabelGroupCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0DeleteLabelGroupCommand(output, context);
36
+ };
37
+ return DeleteLabelGroupCommand;
38
+ }($Command));
39
+ export { DeleteLabelGroupCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DescribeLabelRequestFilterSensitiveLog, DescribeLabelResponseFilterSensitiveLog, } from "../models/models_0";
5
+ import { deserializeAws_json1_0DescribeLabelCommand, serializeAws_json1_0DescribeLabelCommand, } from "../protocols/Aws_json1_0";
6
+ var DescribeLabelCommand = (function (_super) {
7
+ __extends(DescribeLabelCommand, _super);
8
+ function DescribeLabelCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DescribeLabelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "DescribeLabelCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: DescribeLabelRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: DescribeLabelResponseFilterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeLabelCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0DescribeLabelCommand(input, context);
33
+ };
34
+ DescribeLabelCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0DescribeLabelCommand(output, context);
36
+ };
37
+ return DescribeLabelCommand;
38
+ }($Command));
39
+ export { DescribeLabelCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DescribeLabelGroupRequestFilterSensitiveLog, DescribeLabelGroupResponseFilterSensitiveLog, } from "../models/models_0";
5
+ import { deserializeAws_json1_0DescribeLabelGroupCommand, serializeAws_json1_0DescribeLabelGroupCommand, } from "../protocols/Aws_json1_0";
6
+ var DescribeLabelGroupCommand = (function (_super) {
7
+ __extends(DescribeLabelGroupCommand, _super);
8
+ function DescribeLabelGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DescribeLabelGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "DescribeLabelGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: DescribeLabelGroupRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: DescribeLabelGroupResponseFilterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeLabelGroupCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0DescribeLabelGroupCommand(input, context);
33
+ };
34
+ DescribeLabelGroupCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0DescribeLabelGroupCommand(output, context);
36
+ };
37
+ return DescribeLabelGroupCommand;
38
+ }($Command));
39
+ export { DescribeLabelGroupCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListLabelGroupsRequestFilterSensitiveLog, ListLabelGroupsResponseFilterSensitiveLog, } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListLabelGroupsCommand, serializeAws_json1_0ListLabelGroupsCommand, } from "../protocols/Aws_json1_0";
6
+ var ListLabelGroupsCommand = (function (_super) {
7
+ __extends(ListLabelGroupsCommand, _super);
8
+ function ListLabelGroupsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListLabelGroupsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "ListLabelGroupsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListLabelGroupsRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: ListLabelGroupsResponseFilterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListLabelGroupsCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListLabelGroupsCommand(input, context);
33
+ };
34
+ ListLabelGroupsCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListLabelGroupsCommand(output, context);
36
+ };
37
+ return ListLabelGroupsCommand;
38
+ }($Command));
39
+ export { ListLabelGroupsCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListLabelsRequestFilterSensitiveLog, ListLabelsResponseFilterSensitiveLog, } from "../models/models_0";
5
+ import { deserializeAws_json1_0ListLabelsCommand, serializeAws_json1_0ListLabelsCommand, } from "../protocols/Aws_json1_0";
6
+ var ListLabelsCommand = (function (_super) {
7
+ __extends(ListLabelsCommand, _super);
8
+ function ListLabelsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListLabelsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "ListLabelsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListLabelsRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: ListLabelsResponseFilterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListLabelsCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0ListLabelsCommand(input, context);
33
+ };
34
+ ListLabelsCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0ListLabelsCommand(output, context);
36
+ };
37
+ return ListLabelsCommand;
38
+ }($Command));
39
+ export { ListLabelsCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { UpdateLabelGroupRequestFilterSensitiveLog } from "../models/models_0";
5
+ import { deserializeAws_json1_0UpdateLabelGroupCommand, serializeAws_json1_0UpdateLabelGroupCommand, } from "../protocols/Aws_json1_0";
6
+ var UpdateLabelGroupCommand = (function (_super) {
7
+ __extends(UpdateLabelGroupCommand, _super);
8
+ function UpdateLabelGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ UpdateLabelGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "LookoutEquipmentClient";
18
+ var commandName = "UpdateLabelGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: UpdateLabelGroupRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: function (output) { return output; },
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateLabelGroupCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_0UpdateLabelGroupCommand(input, context);
33
+ };
34
+ UpdateLabelGroupCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_0UpdateLabelGroupCommand(output, context);
36
+ };
37
+ return UpdateLabelGroupCommand;
38
+ }($Command));
39
+ export { UpdateLabelGroupCommand };
@@ -1,18 +1,26 @@
1
1
  export * from "./CreateDatasetCommand";
2
2
  export * from "./CreateInferenceSchedulerCommand";
3
+ export * from "./CreateLabelCommand";
4
+ export * from "./CreateLabelGroupCommand";
3
5
  export * from "./CreateModelCommand";
4
6
  export * from "./DeleteDatasetCommand";
5
7
  export * from "./DeleteInferenceSchedulerCommand";
8
+ export * from "./DeleteLabelCommand";
9
+ export * from "./DeleteLabelGroupCommand";
6
10
  export * from "./DeleteModelCommand";
7
11
  export * from "./DescribeDataIngestionJobCommand";
8
12
  export * from "./DescribeDatasetCommand";
9
13
  export * from "./DescribeInferenceSchedulerCommand";
14
+ export * from "./DescribeLabelCommand";
15
+ export * from "./DescribeLabelGroupCommand";
10
16
  export * from "./DescribeModelCommand";
11
17
  export * from "./ListDataIngestionJobsCommand";
12
18
  export * from "./ListDatasetsCommand";
13
19
  export * from "./ListInferenceEventsCommand";
14
20
  export * from "./ListInferenceExecutionsCommand";
15
21
  export * from "./ListInferenceSchedulersCommand";
22
+ export * from "./ListLabelGroupsCommand";
23
+ export * from "./ListLabelsCommand";
16
24
  export * from "./ListModelsCommand";
17
25
  export * from "./ListSensorStatisticsCommand";
18
26
  export * from "./ListTagsForResourceCommand";
@@ -22,3 +30,4 @@ export * from "./StopInferenceSchedulerCommand";
22
30
  export * from "./TagResourceCommand";
23
31
  export * from "./UntagResourceCommand";
24
32
  export * from "./UpdateInferenceSchedulerCommand";
33
+ export * from "./UpdateLabelGroupCommand";
@@ -20,6 +20,7 @@ var partitionHash = {
20
20
  "eu-west-1",
21
21
  "eu-west-2",
22
22
  "eu-west-3",
23
+ "me-central-1",
23
24
  "me-south-1",
24
25
  "sa-east-1",
25
26
  "us-east-1",