@aws-sdk/client-lookoutequipment 3.186.0 → 3.190.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 (54) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-es/LookoutEquipment.js +134 -141
  3. package/dist-es/LookoutEquipmentClient.js +22 -28
  4. package/dist-es/commands/CreateDatasetCommand.js +21 -28
  5. package/dist-es/commands/CreateInferenceSchedulerCommand.js +21 -28
  6. package/dist-es/commands/CreateLabelCommand.js +21 -28
  7. package/dist-es/commands/CreateLabelGroupCommand.js +21 -28
  8. package/dist-es/commands/CreateModelCommand.js +21 -28
  9. package/dist-es/commands/DeleteDatasetCommand.js +22 -29
  10. package/dist-es/commands/DeleteInferenceSchedulerCommand.js +22 -29
  11. package/dist-es/commands/DeleteLabelCommand.js +22 -29
  12. package/dist-es/commands/DeleteLabelGroupCommand.js +22 -29
  13. package/dist-es/commands/DeleteModelCommand.js +22 -29
  14. package/dist-es/commands/DescribeDataIngestionJobCommand.js +21 -28
  15. package/dist-es/commands/DescribeDatasetCommand.js +21 -28
  16. package/dist-es/commands/DescribeInferenceSchedulerCommand.js +21 -28
  17. package/dist-es/commands/DescribeLabelCommand.js +21 -28
  18. package/dist-es/commands/DescribeLabelGroupCommand.js +21 -28
  19. package/dist-es/commands/DescribeModelCommand.js +21 -28
  20. package/dist-es/commands/ListDataIngestionJobsCommand.js +21 -28
  21. package/dist-es/commands/ListDatasetsCommand.js +21 -28
  22. package/dist-es/commands/ListInferenceEventsCommand.js +21 -28
  23. package/dist-es/commands/ListInferenceExecutionsCommand.js +21 -28
  24. package/dist-es/commands/ListInferenceSchedulersCommand.js +21 -28
  25. package/dist-es/commands/ListLabelGroupsCommand.js +21 -28
  26. package/dist-es/commands/ListLabelsCommand.js +21 -28
  27. package/dist-es/commands/ListModelsCommand.js +21 -28
  28. package/dist-es/commands/ListSensorStatisticsCommand.js +21 -28
  29. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  30. package/dist-es/commands/StartDataIngestionJobCommand.js +21 -28
  31. package/dist-es/commands/StartInferenceSchedulerCommand.js +21 -28
  32. package/dist-es/commands/StopInferenceSchedulerCommand.js +21 -28
  33. package/dist-es/commands/TagResourceCommand.js +21 -28
  34. package/dist-es/commands/UntagResourceCommand.js +21 -28
  35. package/dist-es/commands/UpdateInferenceSchedulerCommand.js +22 -29
  36. package/dist-es/commands/UpdateLabelGroupCommand.js +22 -29
  37. package/dist-es/endpoints.js +8 -8
  38. package/dist-es/models/LookoutEquipmentServiceException.js +5 -10
  39. package/dist-es/models/models_0.js +369 -180
  40. package/dist-es/pagination/ListDataIngestionJobsPaginator.js +25 -68
  41. package/dist-es/pagination/ListDatasetsPaginator.js +25 -68
  42. package/dist-es/pagination/ListInferenceEventsPaginator.js +25 -68
  43. package/dist-es/pagination/ListInferenceExecutionsPaginator.js +25 -68
  44. package/dist-es/pagination/ListInferenceSchedulersPaginator.js +25 -68
  45. package/dist-es/pagination/ListLabelGroupsPaginator.js +25 -68
  46. package/dist-es/pagination/ListLabelsPaginator.js +25 -68
  47. package/dist-es/pagination/ListModelsPaginator.js +25 -68
  48. package/dist-es/pagination/ListSensorStatisticsPaginator.js +25 -68
  49. package/dist-es/protocols/Aws_json1_0.js +2351 -3022
  50. package/dist-es/runtimeConfig.browser.js +26 -12
  51. package/dist-es/runtimeConfig.js +30 -12
  52. package/dist-es/runtimeConfig.native.js +8 -5
  53. package/dist-es/runtimeConfig.shared.js +8 -11
  54. package/package.json +33 -33
@@ -1,89 +1,88 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { LookoutEquipmentServiceException as __BaseException } from "./LookoutEquipmentServiceException";
3
- var AccessDeniedException = (function (_super) {
4
- __extends(AccessDeniedException, _super);
5
- function AccessDeniedException(opts) {
6
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
7
- _this.name = "AccessDeniedException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
10
- _this.Message = opts.Message;
11
- return _this;
2
+ export class AccessDeniedException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "AccessDeniedException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "AccessDeniedException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ this.Message = opts.Message;
12
13
  }
13
- return AccessDeniedException;
14
- }(__BaseException));
15
- export { AccessDeniedException };
16
- var ConflictException = (function (_super) {
17
- __extends(ConflictException, _super);
18
- function ConflictException(opts) {
19
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
20
- _this.name = "ConflictException";
21
- _this.$fault = "client";
22
- Object.setPrototypeOf(_this, ConflictException.prototype);
23
- _this.Message = opts.Message;
24
- return _this;
14
+ }
15
+ export class ConflictException extends __BaseException {
16
+ constructor(opts) {
17
+ super({
18
+ name: "ConflictException",
19
+ $fault: "client",
20
+ ...opts,
21
+ });
22
+ this.name = "ConflictException";
23
+ this.$fault = "client";
24
+ Object.setPrototypeOf(this, ConflictException.prototype);
25
+ this.Message = opts.Message;
25
26
  }
26
- return ConflictException;
27
- }(__BaseException));
28
- export { ConflictException };
27
+ }
29
28
  export var DatasetStatus;
30
29
  (function (DatasetStatus) {
31
30
  DatasetStatus["ACTIVE"] = "ACTIVE";
32
31
  DatasetStatus["CREATED"] = "CREATED";
33
32
  DatasetStatus["INGESTION_IN_PROGRESS"] = "INGESTION_IN_PROGRESS";
34
33
  })(DatasetStatus || (DatasetStatus = {}));
35
- var InternalServerException = (function (_super) {
36
- __extends(InternalServerException, _super);
37
- function InternalServerException(opts) {
38
- var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
39
- _this.name = "InternalServerException";
40
- _this.$fault = "server";
41
- Object.setPrototypeOf(_this, InternalServerException.prototype);
42
- _this.Message = opts.Message;
43
- return _this;
34
+ export class InternalServerException extends __BaseException {
35
+ constructor(opts) {
36
+ super({
37
+ name: "InternalServerException",
38
+ $fault: "server",
39
+ ...opts,
40
+ });
41
+ this.name = "InternalServerException";
42
+ this.$fault = "server";
43
+ Object.setPrototypeOf(this, InternalServerException.prototype);
44
+ this.Message = opts.Message;
44
45
  }
45
- return InternalServerException;
46
- }(__BaseException));
47
- export { InternalServerException };
48
- var ServiceQuotaExceededException = (function (_super) {
49
- __extends(ServiceQuotaExceededException, _super);
50
- function ServiceQuotaExceededException(opts) {
51
- var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
52
- _this.name = "ServiceQuotaExceededException";
53
- _this.$fault = "client";
54
- Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
55
- _this.Message = opts.Message;
56
- return _this;
46
+ }
47
+ export class ServiceQuotaExceededException extends __BaseException {
48
+ constructor(opts) {
49
+ super({
50
+ name: "ServiceQuotaExceededException",
51
+ $fault: "client",
52
+ ...opts,
53
+ });
54
+ this.name = "ServiceQuotaExceededException";
55
+ this.$fault = "client";
56
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
57
+ this.Message = opts.Message;
57
58
  }
58
- return ServiceQuotaExceededException;
59
- }(__BaseException));
60
- export { ServiceQuotaExceededException };
61
- var ThrottlingException = (function (_super) {
62
- __extends(ThrottlingException, _super);
63
- function ThrottlingException(opts) {
64
- var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
65
- _this.name = "ThrottlingException";
66
- _this.$fault = "client";
67
- Object.setPrototypeOf(_this, ThrottlingException.prototype);
68
- _this.Message = opts.Message;
69
- return _this;
59
+ }
60
+ export class ThrottlingException extends __BaseException {
61
+ constructor(opts) {
62
+ super({
63
+ name: "ThrottlingException",
64
+ $fault: "client",
65
+ ...opts,
66
+ });
67
+ this.name = "ThrottlingException";
68
+ this.$fault = "client";
69
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
70
+ this.Message = opts.Message;
70
71
  }
71
- return ThrottlingException;
72
- }(__BaseException));
73
- export { ThrottlingException };
74
- var ValidationException = (function (_super) {
75
- __extends(ValidationException, _super);
76
- function ValidationException(opts) {
77
- var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
78
- _this.name = "ValidationException";
79
- _this.$fault = "client";
80
- Object.setPrototypeOf(_this, ValidationException.prototype);
81
- _this.Message = opts.Message;
82
- return _this;
72
+ }
73
+ export class ValidationException extends __BaseException {
74
+ constructor(opts) {
75
+ super({
76
+ name: "ValidationException",
77
+ $fault: "client",
78
+ ...opts,
79
+ });
80
+ this.name = "ValidationException";
81
+ this.$fault = "client";
82
+ Object.setPrototypeOf(this, ValidationException.prototype);
83
+ this.Message = opts.Message;
83
84
  }
84
- return ValidationException;
85
- }(__BaseException));
86
- export { ValidationException };
85
+ }
87
86
  export var DataUploadFrequency;
88
87
  (function (DataUploadFrequency) {
89
88
  DataUploadFrequency["PT10M"] = "PT10M";
@@ -99,19 +98,19 @@ export var InferenceSchedulerStatus;
99
98
  InferenceSchedulerStatus["STOPPED"] = "STOPPED";
100
99
  InferenceSchedulerStatus["STOPPING"] = "STOPPING";
101
100
  })(InferenceSchedulerStatus || (InferenceSchedulerStatus = {}));
102
- var ResourceNotFoundException = (function (_super) {
103
- __extends(ResourceNotFoundException, _super);
104
- function ResourceNotFoundException(opts) {
105
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
106
- _this.name = "ResourceNotFoundException";
107
- _this.$fault = "client";
108
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
109
- _this.Message = opts.Message;
110
- return _this;
101
+ export class ResourceNotFoundException extends __BaseException {
102
+ constructor(opts) {
103
+ super({
104
+ name: "ResourceNotFoundException",
105
+ $fault: "client",
106
+ ...opts,
107
+ });
108
+ this.name = "ResourceNotFoundException";
109
+ this.$fault = "client";
110
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
111
+ this.Message = opts.Message;
111
112
  }
112
- return ResourceNotFoundException;
113
- }(__BaseException));
114
- export { ResourceNotFoundException };
113
+ }
115
114
  export var LabelRating;
116
115
  (function (LabelRating) {
117
116
  LabelRating["ANOMALY"] = "ANOMALY";
@@ -166,98 +165,288 @@ export var Monotonicity;
166
165
  Monotonicity["INCREASING"] = "INCREASING";
167
166
  Monotonicity["STATIC"] = "STATIC";
168
167
  })(Monotonicity || (Monotonicity = {}));
169
- export var DatasetSchemaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
170
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
171
- export var CreateDatasetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
172
- export var CreateDatasetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
173
- export var InferenceInputNameConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
174
- export var InferenceS3InputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
- export var InferenceInputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
- export var InferenceS3OutputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
- export var InferenceOutputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
178
- export var CreateInferenceSchedulerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
- export var CreateInferenceSchedulerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
- export var CreateLabelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
- export var CreateLabelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
- export var CreateLabelGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
- export var CreateLabelGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
- export var DataPreProcessingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
185
- export var LabelsS3InputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
- export var LabelsInputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
187
- export var CreateModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
188
- export var CreateModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
189
- export var DeleteDatasetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
190
- export var DeleteInferenceSchedulerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
- export var DeleteLabelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
192
- export var DeleteLabelGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
193
- export var DeleteModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
194
- export var DescribeDataIngestionJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
195
- export var DuplicateTimestampsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
196
- export var MissingCompleteSensorDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
197
- export var SensorsWithShortDateRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
198
- export var InsufficientSensorDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
- export var InvalidSensorDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
200
- export var MissingSensorDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
201
- export var UnsupportedTimestampsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
202
- export var DataQualitySummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
- export var S3ObjectFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
204
- export var IngestedFilesSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
- export var IngestionS3InputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
206
- export var IngestionInputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
- export var DescribeDataIngestionJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
208
- export var DescribeDatasetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
209
- export var DescribeDatasetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
210
- export var DescribeInferenceSchedulerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
211
- export var DescribeInferenceSchedulerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
212
- export var DescribeLabelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
213
- export var DescribeLabelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
214
- export var DescribeLabelGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
215
- export var DescribeLabelGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
- export var DescribeModelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
217
- export var DescribeModelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
218
- export var ListDataIngestionJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
- export var DataIngestionJobSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
220
- export var ListDataIngestionJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
221
- export var ListDatasetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
222
- export var DatasetSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
223
- export var ListDatasetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
224
- export var ListInferenceEventsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
225
- export var InferenceEventSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
226
- export var ListInferenceEventsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
- export var ListInferenceExecutionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
228
- export var InferenceExecutionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
229
- export var ListInferenceExecutionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
- export var ListInferenceSchedulersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
231
- export var InferenceSchedulerSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
232
- export var ListInferenceSchedulersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
233
- export var ListLabelGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
234
- export var LabelGroupSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
235
- export var ListLabelGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
236
- export var ListLabelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
237
- export var LabelSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
238
- export var ListLabelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
239
- export var ListModelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
240
- export var ModelSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
241
- export var ListModelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
242
- export var ListSensorStatisticsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
243
- export var CategoricalValuesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
- export var CountPercentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
245
- export var LargeTimestampGapsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
246
- export var MonotonicValuesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
- export var MultipleOperatingModesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
248
- export var SensorStatisticsSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
249
- export var ListSensorStatisticsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
250
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
251
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
252
- export var StartDataIngestionJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
253
- export var StartDataIngestionJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
254
- export var StartInferenceSchedulerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
255
- export var StartInferenceSchedulerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
256
- export var StopInferenceSchedulerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
257
- export var StopInferenceSchedulerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
258
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
259
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
260
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
- export var UpdateInferenceSchedulerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
- export var UpdateLabelGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
168
+ export const DatasetSchemaFilterSensitiveLog = (obj) => ({
169
+ ...obj,
170
+ });
171
+ export const TagFilterSensitiveLog = (obj) => ({
172
+ ...obj,
173
+ });
174
+ export const CreateDatasetRequestFilterSensitiveLog = (obj) => ({
175
+ ...obj,
176
+ });
177
+ export const CreateDatasetResponseFilterSensitiveLog = (obj) => ({
178
+ ...obj,
179
+ });
180
+ export const InferenceInputNameConfigurationFilterSensitiveLog = (obj) => ({
181
+ ...obj,
182
+ });
183
+ export const InferenceS3InputConfigurationFilterSensitiveLog = (obj) => ({
184
+ ...obj,
185
+ });
186
+ export const InferenceInputConfigurationFilterSensitiveLog = (obj) => ({
187
+ ...obj,
188
+ });
189
+ export const InferenceS3OutputConfigurationFilterSensitiveLog = (obj) => ({
190
+ ...obj,
191
+ });
192
+ export const InferenceOutputConfigurationFilterSensitiveLog = (obj) => ({
193
+ ...obj,
194
+ });
195
+ export const CreateInferenceSchedulerRequestFilterSensitiveLog = (obj) => ({
196
+ ...obj,
197
+ });
198
+ export const CreateInferenceSchedulerResponseFilterSensitiveLog = (obj) => ({
199
+ ...obj,
200
+ });
201
+ export const CreateLabelRequestFilterSensitiveLog = (obj) => ({
202
+ ...obj,
203
+ });
204
+ export const CreateLabelResponseFilterSensitiveLog = (obj) => ({
205
+ ...obj,
206
+ });
207
+ export const CreateLabelGroupRequestFilterSensitiveLog = (obj) => ({
208
+ ...obj,
209
+ });
210
+ export const CreateLabelGroupResponseFilterSensitiveLog = (obj) => ({
211
+ ...obj,
212
+ });
213
+ export const DataPreProcessingConfigurationFilterSensitiveLog = (obj) => ({
214
+ ...obj,
215
+ });
216
+ export const LabelsS3InputConfigurationFilterSensitiveLog = (obj) => ({
217
+ ...obj,
218
+ });
219
+ export const LabelsInputConfigurationFilterSensitiveLog = (obj) => ({
220
+ ...obj,
221
+ });
222
+ export const CreateModelRequestFilterSensitiveLog = (obj) => ({
223
+ ...obj,
224
+ });
225
+ export const CreateModelResponseFilterSensitiveLog = (obj) => ({
226
+ ...obj,
227
+ });
228
+ export const DeleteDatasetRequestFilterSensitiveLog = (obj) => ({
229
+ ...obj,
230
+ });
231
+ export const DeleteInferenceSchedulerRequestFilterSensitiveLog = (obj) => ({
232
+ ...obj,
233
+ });
234
+ export const DeleteLabelRequestFilterSensitiveLog = (obj) => ({
235
+ ...obj,
236
+ });
237
+ export const DeleteLabelGroupRequestFilterSensitiveLog = (obj) => ({
238
+ ...obj,
239
+ });
240
+ export const DeleteModelRequestFilterSensitiveLog = (obj) => ({
241
+ ...obj,
242
+ });
243
+ export const DescribeDataIngestionJobRequestFilterSensitiveLog = (obj) => ({
244
+ ...obj,
245
+ });
246
+ export const DuplicateTimestampsFilterSensitiveLog = (obj) => ({
247
+ ...obj,
248
+ });
249
+ export const MissingCompleteSensorDataFilterSensitiveLog = (obj) => ({
250
+ ...obj,
251
+ });
252
+ export const SensorsWithShortDateRangeFilterSensitiveLog = (obj) => ({
253
+ ...obj,
254
+ });
255
+ export const InsufficientSensorDataFilterSensitiveLog = (obj) => ({
256
+ ...obj,
257
+ });
258
+ export const InvalidSensorDataFilterSensitiveLog = (obj) => ({
259
+ ...obj,
260
+ });
261
+ export const MissingSensorDataFilterSensitiveLog = (obj) => ({
262
+ ...obj,
263
+ });
264
+ export const UnsupportedTimestampsFilterSensitiveLog = (obj) => ({
265
+ ...obj,
266
+ });
267
+ export const DataQualitySummaryFilterSensitiveLog = (obj) => ({
268
+ ...obj,
269
+ });
270
+ export const S3ObjectFilterSensitiveLog = (obj) => ({
271
+ ...obj,
272
+ });
273
+ export const IngestedFilesSummaryFilterSensitiveLog = (obj) => ({
274
+ ...obj,
275
+ });
276
+ export const IngestionS3InputConfigurationFilterSensitiveLog = (obj) => ({
277
+ ...obj,
278
+ });
279
+ export const IngestionInputConfigurationFilterSensitiveLog = (obj) => ({
280
+ ...obj,
281
+ });
282
+ export const DescribeDataIngestionJobResponseFilterSensitiveLog = (obj) => ({
283
+ ...obj,
284
+ });
285
+ export const DescribeDatasetRequestFilterSensitiveLog = (obj) => ({
286
+ ...obj,
287
+ });
288
+ export const DescribeDatasetResponseFilterSensitiveLog = (obj) => ({
289
+ ...obj,
290
+ });
291
+ export const DescribeInferenceSchedulerRequestFilterSensitiveLog = (obj) => ({
292
+ ...obj,
293
+ });
294
+ export const DescribeInferenceSchedulerResponseFilterSensitiveLog = (obj) => ({
295
+ ...obj,
296
+ });
297
+ export const DescribeLabelRequestFilterSensitiveLog = (obj) => ({
298
+ ...obj,
299
+ });
300
+ export const DescribeLabelResponseFilterSensitiveLog = (obj) => ({
301
+ ...obj,
302
+ });
303
+ export const DescribeLabelGroupRequestFilterSensitiveLog = (obj) => ({
304
+ ...obj,
305
+ });
306
+ export const DescribeLabelGroupResponseFilterSensitiveLog = (obj) => ({
307
+ ...obj,
308
+ });
309
+ export const DescribeModelRequestFilterSensitiveLog = (obj) => ({
310
+ ...obj,
311
+ });
312
+ export const DescribeModelResponseFilterSensitiveLog = (obj) => ({
313
+ ...obj,
314
+ });
315
+ export const ListDataIngestionJobsRequestFilterSensitiveLog = (obj) => ({
316
+ ...obj,
317
+ });
318
+ export const DataIngestionJobSummaryFilterSensitiveLog = (obj) => ({
319
+ ...obj,
320
+ });
321
+ export const ListDataIngestionJobsResponseFilterSensitiveLog = (obj) => ({
322
+ ...obj,
323
+ });
324
+ export const ListDatasetsRequestFilterSensitiveLog = (obj) => ({
325
+ ...obj,
326
+ });
327
+ export const DatasetSummaryFilterSensitiveLog = (obj) => ({
328
+ ...obj,
329
+ });
330
+ export const ListDatasetsResponseFilterSensitiveLog = (obj) => ({
331
+ ...obj,
332
+ });
333
+ export const ListInferenceEventsRequestFilterSensitiveLog = (obj) => ({
334
+ ...obj,
335
+ });
336
+ export const InferenceEventSummaryFilterSensitiveLog = (obj) => ({
337
+ ...obj,
338
+ });
339
+ export const ListInferenceEventsResponseFilterSensitiveLog = (obj) => ({
340
+ ...obj,
341
+ });
342
+ export const ListInferenceExecutionsRequestFilterSensitiveLog = (obj) => ({
343
+ ...obj,
344
+ });
345
+ export const InferenceExecutionSummaryFilterSensitiveLog = (obj) => ({
346
+ ...obj,
347
+ });
348
+ export const ListInferenceExecutionsResponseFilterSensitiveLog = (obj) => ({
349
+ ...obj,
350
+ });
351
+ export const ListInferenceSchedulersRequestFilterSensitiveLog = (obj) => ({
352
+ ...obj,
353
+ });
354
+ export const InferenceSchedulerSummaryFilterSensitiveLog = (obj) => ({
355
+ ...obj,
356
+ });
357
+ export const ListInferenceSchedulersResponseFilterSensitiveLog = (obj) => ({
358
+ ...obj,
359
+ });
360
+ export const ListLabelGroupsRequestFilterSensitiveLog = (obj) => ({
361
+ ...obj,
362
+ });
363
+ export const LabelGroupSummaryFilterSensitiveLog = (obj) => ({
364
+ ...obj,
365
+ });
366
+ export const ListLabelGroupsResponseFilterSensitiveLog = (obj) => ({
367
+ ...obj,
368
+ });
369
+ export const ListLabelsRequestFilterSensitiveLog = (obj) => ({
370
+ ...obj,
371
+ });
372
+ export const LabelSummaryFilterSensitiveLog = (obj) => ({
373
+ ...obj,
374
+ });
375
+ export const ListLabelsResponseFilterSensitiveLog = (obj) => ({
376
+ ...obj,
377
+ });
378
+ export const ListModelsRequestFilterSensitiveLog = (obj) => ({
379
+ ...obj,
380
+ });
381
+ export const ModelSummaryFilterSensitiveLog = (obj) => ({
382
+ ...obj,
383
+ });
384
+ export const ListModelsResponseFilterSensitiveLog = (obj) => ({
385
+ ...obj,
386
+ });
387
+ export const ListSensorStatisticsRequestFilterSensitiveLog = (obj) => ({
388
+ ...obj,
389
+ });
390
+ export const CategoricalValuesFilterSensitiveLog = (obj) => ({
391
+ ...obj,
392
+ });
393
+ export const CountPercentFilterSensitiveLog = (obj) => ({
394
+ ...obj,
395
+ });
396
+ export const LargeTimestampGapsFilterSensitiveLog = (obj) => ({
397
+ ...obj,
398
+ });
399
+ export const MonotonicValuesFilterSensitiveLog = (obj) => ({
400
+ ...obj,
401
+ });
402
+ export const MultipleOperatingModesFilterSensitiveLog = (obj) => ({
403
+ ...obj,
404
+ });
405
+ export const SensorStatisticsSummaryFilterSensitiveLog = (obj) => ({
406
+ ...obj,
407
+ });
408
+ export const ListSensorStatisticsResponseFilterSensitiveLog = (obj) => ({
409
+ ...obj,
410
+ });
411
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
412
+ ...obj,
413
+ });
414
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
415
+ ...obj,
416
+ });
417
+ export const StartDataIngestionJobRequestFilterSensitiveLog = (obj) => ({
418
+ ...obj,
419
+ });
420
+ export const StartDataIngestionJobResponseFilterSensitiveLog = (obj) => ({
421
+ ...obj,
422
+ });
423
+ export const StartInferenceSchedulerRequestFilterSensitiveLog = (obj) => ({
424
+ ...obj,
425
+ });
426
+ export const StartInferenceSchedulerResponseFilterSensitiveLog = (obj) => ({
427
+ ...obj,
428
+ });
429
+ export const StopInferenceSchedulerRequestFilterSensitiveLog = (obj) => ({
430
+ ...obj,
431
+ });
432
+ export const StopInferenceSchedulerResponseFilterSensitiveLog = (obj) => ({
433
+ ...obj,
434
+ });
435
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
436
+ ...obj,
437
+ });
438
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
439
+ ...obj,
440
+ });
441
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
442
+ ...obj,
443
+ });
444
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
445
+ ...obj,
446
+ });
447
+ export const UpdateInferenceSchedulerRequestFilterSensitiveLog = (obj) => ({
448
+ ...obj,
449
+ });
450
+ export const UpdateLabelGroupRequestFilterSensitiveLog = (obj) => ({
451
+ ...obj,
452
+ });