@aws-sdk/client-iottwinmaker 3.183.0 → 3.186.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 (44) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/IoTTwinMaker.js +113 -106
  4. package/dist-es/IoTTwinMakerClient.js +28 -22
  5. package/dist-es/commands/BatchPutPropertyValuesCommand.js +28 -21
  6. package/dist-es/commands/CreateComponentTypeCommand.js +28 -21
  7. package/dist-es/commands/CreateEntityCommand.js +28 -21
  8. package/dist-es/commands/CreateSceneCommand.js +28 -21
  9. package/dist-es/commands/CreateWorkspaceCommand.js +28 -21
  10. package/dist-es/commands/DeleteComponentTypeCommand.js +28 -21
  11. package/dist-es/commands/DeleteEntityCommand.js +28 -21
  12. package/dist-es/commands/DeleteSceneCommand.js +28 -21
  13. package/dist-es/commands/DeleteWorkspaceCommand.js +28 -21
  14. package/dist-es/commands/GetComponentTypeCommand.js +28 -21
  15. package/dist-es/commands/GetEntityCommand.js +28 -21
  16. package/dist-es/commands/GetPropertyValueCommand.js +28 -21
  17. package/dist-es/commands/GetPropertyValueHistoryCommand.js +28 -21
  18. package/dist-es/commands/GetSceneCommand.js +28 -21
  19. package/dist-es/commands/GetWorkspaceCommand.js +28 -21
  20. package/dist-es/commands/ListComponentTypesCommand.js +28 -21
  21. package/dist-es/commands/ListEntitiesCommand.js +28 -21
  22. package/dist-es/commands/ListScenesCommand.js +28 -21
  23. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  24. package/dist-es/commands/ListWorkspacesCommand.js +28 -21
  25. package/dist-es/commands/TagResourceCommand.js +28 -21
  26. package/dist-es/commands/UntagResourceCommand.js +28 -21
  27. package/dist-es/commands/UpdateComponentTypeCommand.js +28 -21
  28. package/dist-es/commands/UpdateEntityCommand.js +28 -21
  29. package/dist-es/commands/UpdateSceneCommand.js +28 -21
  30. package/dist-es/commands/UpdateWorkspaceCommand.js +28 -21
  31. package/dist-es/endpoints.js +8 -8
  32. package/dist-es/models/IoTTwinMakerServiceException.js +10 -5
  33. package/dist-es/models/models_0.js +202 -367
  34. package/dist-es/pagination/GetPropertyValueHistoryPaginator.js +68 -25
  35. package/dist-es/pagination/ListComponentTypesPaginator.js +68 -25
  36. package/dist-es/pagination/ListEntitiesPaginator.js +68 -25
  37. package/dist-es/pagination/ListScenesPaginator.js +68 -25
  38. package/dist-es/pagination/ListWorkspacesPaginator.js +68 -25
  39. package/dist-es/protocols/Aws_restJson1.js +3283 -2541
  40. package/dist-es/runtimeConfig.browser.js +12 -26
  41. package/dist-es/runtimeConfig.js +12 -30
  42. package/dist-es/runtimeConfig.native.js +5 -8
  43. package/dist-es/runtimeConfig.shared.js +11 -8
  44. package/package.json +33 -33
@@ -1,76 +1,77 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
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);
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
+ return _this;
12
11
  }
13
- }
14
- export class InternalServerException extends __BaseException {
15
- constructor(opts) {
16
- super({
17
- name: "InternalServerException",
18
- $fault: "server",
19
- ...opts,
20
- });
21
- this.name = "InternalServerException";
22
- this.$fault = "server";
23
- Object.setPrototypeOf(this, InternalServerException.prototype);
12
+ return AccessDeniedException;
13
+ }(__BaseException));
14
+ export { AccessDeniedException };
15
+ var InternalServerException = (function (_super) {
16
+ __extends(InternalServerException, _super);
17
+ function InternalServerException(opts) {
18
+ var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
19
+ _this.name = "InternalServerException";
20
+ _this.$fault = "server";
21
+ Object.setPrototypeOf(_this, InternalServerException.prototype);
22
+ return _this;
24
23
  }
25
- }
26
- export class ResourceNotFoundException extends __BaseException {
27
- constructor(opts) {
28
- super({
29
- name: "ResourceNotFoundException",
30
- $fault: "client",
31
- ...opts,
32
- });
33
- this.name = "ResourceNotFoundException";
34
- this.$fault = "client";
35
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
24
+ return InternalServerException;
25
+ }(__BaseException));
26
+ export { InternalServerException };
27
+ var ResourceNotFoundException = (function (_super) {
28
+ __extends(ResourceNotFoundException, _super);
29
+ function ResourceNotFoundException(opts) {
30
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
31
+ _this.name = "ResourceNotFoundException";
32
+ _this.$fault = "client";
33
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
34
+ return _this;
36
35
  }
37
- }
38
- export class ThrottlingException extends __BaseException {
39
- constructor(opts) {
40
- super({
41
- name: "ThrottlingException",
42
- $fault: "client",
43
- ...opts,
44
- });
45
- this.name = "ThrottlingException";
46
- this.$fault = "client";
47
- Object.setPrototypeOf(this, ThrottlingException.prototype);
36
+ return ResourceNotFoundException;
37
+ }(__BaseException));
38
+ export { ResourceNotFoundException };
39
+ var ThrottlingException = (function (_super) {
40
+ __extends(ThrottlingException, _super);
41
+ function ThrottlingException(opts) {
42
+ var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
43
+ _this.name = "ThrottlingException";
44
+ _this.$fault = "client";
45
+ Object.setPrototypeOf(_this, ThrottlingException.prototype);
46
+ return _this;
48
47
  }
49
- }
50
- export class ValidationException extends __BaseException {
51
- constructor(opts) {
52
- super({
53
- name: "ValidationException",
54
- $fault: "client",
55
- ...opts,
56
- });
57
- this.name = "ValidationException";
58
- this.$fault = "client";
59
- Object.setPrototypeOf(this, ValidationException.prototype);
48
+ return ThrottlingException;
49
+ }(__BaseException));
50
+ export { ThrottlingException };
51
+ var ValidationException = (function (_super) {
52
+ __extends(ValidationException, _super);
53
+ function ValidationException(opts) {
54
+ var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
55
+ _this.name = "ValidationException";
56
+ _this.$fault = "client";
57
+ Object.setPrototypeOf(_this, ValidationException.prototype);
58
+ return _this;
60
59
  }
61
- }
62
- export class ConflictException extends __BaseException {
63
- constructor(opts) {
64
- super({
65
- name: "ConflictException",
66
- $fault: "client",
67
- ...opts,
68
- });
69
- this.name = "ConflictException";
70
- this.$fault = "client";
71
- Object.setPrototypeOf(this, ConflictException.prototype);
60
+ return ValidationException;
61
+ }(__BaseException));
62
+ export { ValidationException };
63
+ var ConflictException = (function (_super) {
64
+ __extends(ConflictException, _super);
65
+ function ConflictException(opts) {
66
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
67
+ _this.name = "ConflictException";
68
+ _this.$fault = "client";
69
+ Object.setPrototypeOf(_this, ConflictException.prototype);
70
+ return _this;
72
71
  }
73
- }
72
+ return ConflictException;
73
+ }(__BaseException));
74
+ export { ConflictException };
74
75
  export var Scope;
75
76
  (function (Scope) {
76
77
  Scope["ENTITY"] = "ENTITY";
@@ -95,18 +96,18 @@ export var State;
95
96
  State["ERROR"] = "ERROR";
96
97
  State["UPDATING"] = "UPDATING";
97
98
  })(State || (State = {}));
98
- export class ServiceQuotaExceededException extends __BaseException {
99
- constructor(opts) {
100
- super({
101
- name: "ServiceQuotaExceededException",
102
- $fault: "client",
103
- ...opts,
104
- });
105
- this.name = "ServiceQuotaExceededException";
106
- this.$fault = "client";
107
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
99
+ var ServiceQuotaExceededException = (function (_super) {
100
+ __extends(ServiceQuotaExceededException, _super);
101
+ function ServiceQuotaExceededException(opts) {
102
+ var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
103
+ _this.name = "ServiceQuotaExceededException";
104
+ _this.$fault = "client";
105
+ Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
106
+ return _this;
108
107
  }
109
- }
108
+ return ServiceQuotaExceededException;
109
+ }(__BaseException));
110
+ export { ServiceQuotaExceededException };
110
111
  export var PropertyUpdateType;
111
112
  (function (PropertyUpdateType) {
112
113
  PropertyUpdateType["CREATE"] = "CREATE";
@@ -118,30 +119,30 @@ export var ErrorCode;
118
119
  ErrorCode["INTERNAL_FAILURE"] = "INTERNAL_FAILURE";
119
120
  ErrorCode["VALIDATION_ERROR"] = "VALIDATION_ERROR";
120
121
  })(ErrorCode || (ErrorCode = {}));
121
- export class ConnectorFailureException extends __BaseException {
122
- constructor(opts) {
123
- super({
124
- name: "ConnectorFailureException",
125
- $fault: "client",
126
- ...opts,
127
- });
128
- this.name = "ConnectorFailureException";
129
- this.$fault = "client";
130
- Object.setPrototypeOf(this, ConnectorFailureException.prototype);
122
+ var ConnectorFailureException = (function (_super) {
123
+ __extends(ConnectorFailureException, _super);
124
+ function ConnectorFailureException(opts) {
125
+ var _this = _super.call(this, __assign({ name: "ConnectorFailureException", $fault: "client" }, opts)) || this;
126
+ _this.name = "ConnectorFailureException";
127
+ _this.$fault = "client";
128
+ Object.setPrototypeOf(_this, ConnectorFailureException.prototype);
129
+ return _this;
131
130
  }
132
- }
133
- export class ConnectorTimeoutException extends __BaseException {
134
- constructor(opts) {
135
- super({
136
- name: "ConnectorTimeoutException",
137
- $fault: "client",
138
- ...opts,
139
- });
140
- this.name = "ConnectorTimeoutException";
141
- this.$fault = "client";
142
- Object.setPrototypeOf(this, ConnectorTimeoutException.prototype);
131
+ return ConnectorFailureException;
132
+ }(__BaseException));
133
+ export { ConnectorFailureException };
134
+ var ConnectorTimeoutException = (function (_super) {
135
+ __extends(ConnectorTimeoutException, _super);
136
+ function ConnectorTimeoutException(opts) {
137
+ var _this = _super.call(this, __assign({ name: "ConnectorTimeoutException", $fault: "client" }, opts)) || this;
138
+ _this.name = "ConnectorTimeoutException";
139
+ _this.$fault = "client";
140
+ Object.setPrototypeOf(_this, ConnectorTimeoutException.prototype);
141
+ return _this;
143
142
  }
144
- }
143
+ return ConnectorTimeoutException;
144
+ }(__BaseException));
145
+ export { ConnectorTimeoutException };
145
146
  export var InterpolationType;
146
147
  (function (InterpolationType) {
147
148
  InterpolationType["LINEAR"] = "LINEAR";
@@ -153,7 +154,7 @@ export var OrderByTime;
153
154
  })(OrderByTime || (OrderByTime = {}));
154
155
  export var ListComponentTypesFilter;
155
156
  (function (ListComponentTypesFilter) {
156
- ListComponentTypesFilter.visit = (value, visitor) => {
157
+ ListComponentTypesFilter.visit = function (value, visitor) {
157
158
  if (value.extendsFrom !== undefined)
158
159
  return visitor.extendsFrom(value.extendsFrom);
159
160
  if (value.namespace !== undefined)
@@ -165,7 +166,7 @@ export var ListComponentTypesFilter;
165
166
  })(ListComponentTypesFilter || (ListComponentTypesFilter = {}));
166
167
  export var ListEntitiesFilter;
167
168
  (function (ListEntitiesFilter) {
168
- ListEntitiesFilter.visit = (value, visitor) => {
169
+ ListEntitiesFilter.visit = function (value, visitor) {
169
170
  if (value.parentEntityId !== undefined)
170
171
  return visitor.parentEntityId(value.parentEntityId);
171
172
  if (value.componentTypeId !== undefined)
@@ -175,18 +176,18 @@ export var ListEntitiesFilter;
175
176
  return visitor._(value.$unknown[0], value.$unknown[1]);
176
177
  };
177
178
  })(ListEntitiesFilter || (ListEntitiesFilter = {}));
178
- export class TooManyTagsException extends __BaseException {
179
- constructor(opts) {
180
- super({
181
- name: "TooManyTagsException",
182
- $fault: "client",
183
- ...opts,
184
- });
185
- this.name = "TooManyTagsException";
186
- this.$fault = "client";
187
- Object.setPrototypeOf(this, TooManyTagsException.prototype);
179
+ var TooManyTagsException = (function (_super) {
180
+ __extends(TooManyTagsException, _super);
181
+ function TooManyTagsException(opts) {
182
+ var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
183
+ _this.name = "TooManyTagsException";
184
+ _this.$fault = "client";
185
+ Object.setPrototypeOf(_this, TooManyTagsException.prototype);
186
+ return _this;
188
187
  }
189
- }
188
+ return TooManyTagsException;
189
+ }(__BaseException));
190
+ export { TooManyTagsException };
190
191
  export var ComponentUpdateType;
191
192
  (function (ComponentUpdateType) {
192
193
  ComponentUpdateType["CREATE"] = "CREATE";
@@ -198,100 +199,39 @@ export var ParentEntityUpdateType;
198
199
  ParentEntityUpdateType["DELETE"] = "DELETE";
199
200
  ParentEntityUpdateType["UPDATE"] = "UPDATE";
200
201
  })(ParentEntityUpdateType || (ParentEntityUpdateType = {}));
201
- export const EntityPropertyReferenceFilterSensitiveLog = (obj) => ({
202
- ...obj,
203
- });
204
- export const RelationshipValueFilterSensitiveLog = (obj) => ({
205
- ...obj,
206
- });
207
- export const LambdaFunctionFilterSensitiveLog = (obj) => ({
208
- ...obj,
209
- });
210
- export const DataConnectorFilterSensitiveLog = (obj) => ({
211
- ...obj,
212
- });
213
- export const FunctionRequestFilterSensitiveLog = (obj) => ({
214
- ...obj,
215
- });
216
- export const RelationshipFilterSensitiveLog = (obj) => ({
217
- ...obj,
218
- });
219
- export const CreateComponentTypeResponseFilterSensitiveLog = (obj) => ({
220
- ...obj,
221
- });
222
- export const CreateEntityResponseFilterSensitiveLog = (obj) => ({
223
- ...obj,
224
- });
225
- export const CreateSceneRequestFilterSensitiveLog = (obj) => ({
226
- ...obj,
227
- });
228
- export const CreateSceneResponseFilterSensitiveLog = (obj) => ({
229
- ...obj,
230
- });
231
- export const CreateWorkspaceRequestFilterSensitiveLog = (obj) => ({
232
- ...obj,
233
- });
234
- export const CreateWorkspaceResponseFilterSensitiveLog = (obj) => ({
235
- ...obj,
236
- });
237
- export const DeleteComponentTypeRequestFilterSensitiveLog = (obj) => ({
238
- ...obj,
239
- });
240
- export const DeleteComponentTypeResponseFilterSensitiveLog = (obj) => ({
241
- ...obj,
242
- });
243
- export const DeleteEntityRequestFilterSensitiveLog = (obj) => ({
244
- ...obj,
245
- });
246
- export const DeleteEntityResponseFilterSensitiveLog = (obj) => ({
247
- ...obj,
248
- });
249
- export const DeleteSceneRequestFilterSensitiveLog = (obj) => ({
250
- ...obj,
251
- });
252
- export const DeleteSceneResponseFilterSensitiveLog = (obj) => ({
253
- ...obj,
254
- });
255
- export const DeleteWorkspaceRequestFilterSensitiveLog = (obj) => ({
256
- ...obj,
257
- });
258
- export const DeleteWorkspaceResponseFilterSensitiveLog = (obj) => ({
259
- ...obj,
260
- });
261
- export const GetComponentTypeRequestFilterSensitiveLog = (obj) => ({
262
- ...obj,
263
- });
264
- export const FunctionResponseFilterSensitiveLog = (obj) => ({
265
- ...obj,
266
- });
267
- export const ErrorDetailsFilterSensitiveLog = (obj) => ({
268
- ...obj,
269
- });
270
- export const StatusFilterSensitiveLog = (obj) => ({
271
- ...obj,
272
- });
273
- export const GetEntityRequestFilterSensitiveLog = (obj) => ({
274
- ...obj,
275
- });
276
- export const GetPropertyValueRequestFilterSensitiveLog = (obj) => ({
277
- ...obj,
278
- });
279
- export const InterpolationParametersFilterSensitiveLog = (obj) => ({
280
- ...obj,
281
- });
282
- export const GetSceneRequestFilterSensitiveLog = (obj) => ({
283
- ...obj,
284
- });
285
- export const GetSceneResponseFilterSensitiveLog = (obj) => ({
286
- ...obj,
287
- });
288
- export const GetWorkspaceRequestFilterSensitiveLog = (obj) => ({
289
- ...obj,
290
- });
291
- export const GetWorkspaceResponseFilterSensitiveLog = (obj) => ({
292
- ...obj,
293
- });
294
- export const ListComponentTypesFilterFilterSensitiveLog = (obj) => {
202
+ export var EntityPropertyReferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
+ export var RelationshipValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
204
+ export var LambdaFunctionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
+ export var DataConnectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
206
+ export var FunctionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
+ export var RelationshipFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
208
+ export var CreateComponentTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
209
+ export var CreateEntityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
210
+ export var CreateSceneRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
211
+ export var CreateSceneResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
212
+ export var CreateWorkspaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
213
+ export var CreateWorkspaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
214
+ export var DeleteComponentTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
215
+ export var DeleteComponentTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
+ export var DeleteEntityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
217
+ export var DeleteEntityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
218
+ export var DeleteSceneRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
+ export var DeleteSceneResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
220
+ export var DeleteWorkspaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
221
+ export var DeleteWorkspaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
222
+ export var GetComponentTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
223
+ export var FunctionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
224
+ export var ErrorDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
225
+ export var StatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
226
+ export var GetEntityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
+ export var GetPropertyValueRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
228
+ export var InterpolationParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
229
+ export var GetSceneRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
+ export var GetSceneResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
231
+ export var GetWorkspaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
232
+ export var GetWorkspaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
233
+ export var ListComponentTypesFilterFilterSensitiveLog = function (obj) {
234
+ var _a;
295
235
  if (obj.extendsFrom !== undefined)
296
236
  return { extendsFrom: obj.extendsFrom };
297
237
  if (obj.namespace !== undefined)
@@ -299,19 +239,13 @@ export const ListComponentTypesFilterFilterSensitiveLog = (obj) => {
299
239
  if (obj.isAbstract !== undefined)
300
240
  return { isAbstract: obj.isAbstract };
301
241
  if (obj.$unknown !== undefined)
302
- return { [obj.$unknown[0]]: "UNKNOWN" };
242
+ return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
303
243
  };
304
- export const ListComponentTypesRequestFilterSensitiveLog = (obj) => ({
305
- ...obj,
306
- ...(obj.filters && { filters: obj.filters.map((item) => ListComponentTypesFilterFilterSensitiveLog(item)) }),
307
- });
308
- export const ComponentTypeSummaryFilterSensitiveLog = (obj) => ({
309
- ...obj,
310
- });
311
- export const ListComponentTypesResponseFilterSensitiveLog = (obj) => ({
312
- ...obj,
313
- });
314
- export const ListEntitiesFilterFilterSensitiveLog = (obj) => {
244
+ export var ListComponentTypesRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.filters && { filters: obj.filters.map(function (item) { return ListComponentTypesFilterFilterSensitiveLog(item); }) }))); };
245
+ export var ComponentTypeSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
246
+ export var ListComponentTypesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
247
+ export var ListEntitiesFilterFilterSensitiveLog = function (obj) {
248
+ var _a;
315
249
  if (obj.parentEntityId !== undefined)
316
250
  return { parentEntityId: obj.parentEntityId };
317
251
  if (obj.componentTypeId !== undefined)
@@ -319,153 +253,54 @@ export const ListEntitiesFilterFilterSensitiveLog = (obj) => {
319
253
  if (obj.externalId !== undefined)
320
254
  return { externalId: obj.externalId };
321
255
  if (obj.$unknown !== undefined)
322
- return { [obj.$unknown[0]]: "UNKNOWN" };
256
+ return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
323
257
  };
324
- export const ListEntitiesRequestFilterSensitiveLog = (obj) => ({
325
- ...obj,
326
- ...(obj.filters && { filters: obj.filters.map((item) => ListEntitiesFilterFilterSensitiveLog(item)) }),
327
- });
328
- export const EntitySummaryFilterSensitiveLog = (obj) => ({
329
- ...obj,
330
- });
331
- export const ListEntitiesResponseFilterSensitiveLog = (obj) => ({
332
- ...obj,
333
- });
334
- export const ListScenesRequestFilterSensitiveLog = (obj) => ({
335
- ...obj,
336
- });
337
- export const SceneSummaryFilterSensitiveLog = (obj) => ({
338
- ...obj,
339
- });
340
- export const ListScenesResponseFilterSensitiveLog = (obj) => ({
341
- ...obj,
342
- });
343
- export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
344
- ...obj,
345
- });
346
- export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
347
- ...obj,
348
- });
349
- export const ListWorkspacesRequestFilterSensitiveLog = (obj) => ({
350
- ...obj,
351
- });
352
- export const WorkspaceSummaryFilterSensitiveLog = (obj) => ({
353
- ...obj,
354
- });
355
- export const ListWorkspacesResponseFilterSensitiveLog = (obj) => ({
356
- ...obj,
357
- });
358
- export const TagResourceRequestFilterSensitiveLog = (obj) => ({
359
- ...obj,
360
- });
361
- export const TagResourceResponseFilterSensitiveLog = (obj) => ({
362
- ...obj,
363
- });
364
- export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
365
- ...obj,
366
- });
367
- export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
368
- ...obj,
369
- });
370
- export const UpdateComponentTypeResponseFilterSensitiveLog = (obj) => ({
371
- ...obj,
372
- });
373
- export const ParentEntityUpdateRequestFilterSensitiveLog = (obj) => ({
374
- ...obj,
375
- });
376
- export const UpdateEntityResponseFilterSensitiveLog = (obj) => ({
377
- ...obj,
378
- });
379
- export const UpdateSceneRequestFilterSensitiveLog = (obj) => ({
380
- ...obj,
381
- });
382
- export const UpdateSceneResponseFilterSensitiveLog = (obj) => ({
383
- ...obj,
384
- });
385
- export const UpdateWorkspaceRequestFilterSensitiveLog = (obj) => ({
386
- ...obj,
387
- });
388
- export const UpdateWorkspaceResponseFilterSensitiveLog = (obj) => ({
389
- ...obj,
390
- });
391
- export const DataValueFilterSensitiveLog = (obj) => ({
392
- ...obj,
393
- });
394
- export const PropertyFilterFilterSensitiveLog = (obj) => ({
395
- ...obj,
396
- });
397
- export const PropertyLatestValueFilterSensitiveLog = (obj) => ({
398
- ...obj,
399
- });
400
- export const PropertyValueFilterSensitiveLog = (obj) => ({
401
- ...obj,
402
- });
403
- export const DataTypeFilterSensitiveLog = (obj) => ({
404
- ...obj,
405
- });
406
- export const GetPropertyValueHistoryRequestFilterSensitiveLog = (obj) => ({
407
- ...obj,
408
- });
409
- export const GetPropertyValueResponseFilterSensitiveLog = (obj) => ({
410
- ...obj,
411
- });
412
- export const PropertyValueEntryFilterSensitiveLog = (obj) => ({
413
- ...obj,
414
- });
415
- export const PropertyValueHistoryFilterSensitiveLog = (obj) => ({
416
- ...obj,
417
- });
418
- export const BatchPutPropertyErrorFilterSensitiveLog = (obj) => ({
419
- ...obj,
420
- });
421
- export const BatchPutPropertyValuesRequestFilterSensitiveLog = (obj) => ({
422
- ...obj,
423
- });
424
- export const GetPropertyValueHistoryResponseFilterSensitiveLog = (obj) => ({
425
- ...obj,
426
- });
427
- export const BatchPutPropertyErrorEntryFilterSensitiveLog = (obj) => ({
428
- ...obj,
429
- });
430
- export const PropertyDefinitionRequestFilterSensitiveLog = (obj) => ({
431
- ...obj,
432
- });
433
- export const PropertyDefinitionResponseFilterSensitiveLog = (obj) => ({
434
- ...obj,
435
- });
436
- export const BatchPutPropertyValuesResponseFilterSensitiveLog = (obj) => ({
437
- ...obj,
438
- });
439
- export const CreateComponentTypeRequestFilterSensitiveLog = (obj) => ({
440
- ...obj,
441
- });
442
- export const GetComponentTypeResponseFilterSensitiveLog = (obj) => ({
443
- ...obj,
444
- });
445
- export const UpdateComponentTypeRequestFilterSensitiveLog = (obj) => ({
446
- ...obj,
447
- });
448
- export const PropertyRequestFilterSensitiveLog = (obj) => ({
449
- ...obj,
450
- });
451
- export const PropertyResponseFilterSensitiveLog = (obj) => ({
452
- ...obj,
453
- });
454
- export const ComponentRequestFilterSensitiveLog = (obj) => ({
455
- ...obj,
456
- });
457
- export const ComponentResponseFilterSensitiveLog = (obj) => ({
458
- ...obj,
459
- });
460
- export const ComponentUpdateRequestFilterSensitiveLog = (obj) => ({
461
- ...obj,
462
- });
463
- export const CreateEntityRequestFilterSensitiveLog = (obj) => ({
464
- ...obj,
465
- });
466
- export const GetEntityResponseFilterSensitiveLog = (obj) => ({
467
- ...obj,
468
- });
469
- export const UpdateEntityRequestFilterSensitiveLog = (obj) => ({
470
- ...obj,
471
- });
258
+ export var ListEntitiesRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.filters && { filters: obj.filters.map(function (item) { return ListEntitiesFilterFilterSensitiveLog(item); }) }))); };
259
+ export var EntitySummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
260
+ export var ListEntitiesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
261
+ export var ListScenesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
262
+ export var SceneSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
+ export var ListScenesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
+ export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
+ export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
+ export var ListWorkspacesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
+ export var WorkspaceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
+ export var ListWorkspacesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
+ export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
+ export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
+ export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
+ export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
+ export var UpdateComponentTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
+ export var ParentEntityUpdateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
+ export var UpdateEntityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
+ export var UpdateSceneRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
+ export var UpdateSceneResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
+ export var UpdateWorkspaceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
+ export var UpdateWorkspaceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
+ export var DataValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
+ export var PropertyFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
+ export var PropertyLatestValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
+ export var PropertyValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
+ export var DataTypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
+ export var GetPropertyValueHistoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
+ export var GetPropertyValueResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
+ export var PropertyValueEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
+ export var PropertyValueHistoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
+ export var BatchPutPropertyErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
+ export var BatchPutPropertyValuesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
+ export var GetPropertyValueHistoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
+ export var BatchPutPropertyErrorEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
+ export var PropertyDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
+ export var PropertyDefinitionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
+ export var BatchPutPropertyValuesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
+ export var CreateComponentTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
+ export var GetComponentTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
+ export var UpdateComponentTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
+ export var PropertyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
+ export var PropertyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
+ export var ComponentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
+ export var ComponentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
+ export var ComponentUpdateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
+ export var CreateEntityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
+ export var GetEntityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
+ export var UpdateEntityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };