@aws-sdk/client-iottwinmaker 3.186.0 → 3.188.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 (43) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/IoTTwinMaker.js +106 -113
  3. package/dist-es/IoTTwinMakerClient.js +22 -28
  4. package/dist-es/commands/BatchPutPropertyValuesCommand.js +21 -28
  5. package/dist-es/commands/CreateComponentTypeCommand.js +21 -28
  6. package/dist-es/commands/CreateEntityCommand.js +21 -28
  7. package/dist-es/commands/CreateSceneCommand.js +21 -28
  8. package/dist-es/commands/CreateWorkspaceCommand.js +21 -28
  9. package/dist-es/commands/DeleteComponentTypeCommand.js +21 -28
  10. package/dist-es/commands/DeleteEntityCommand.js +21 -28
  11. package/dist-es/commands/DeleteSceneCommand.js +21 -28
  12. package/dist-es/commands/DeleteWorkspaceCommand.js +21 -28
  13. package/dist-es/commands/GetComponentTypeCommand.js +21 -28
  14. package/dist-es/commands/GetEntityCommand.js +21 -28
  15. package/dist-es/commands/GetPropertyValueCommand.js +21 -28
  16. package/dist-es/commands/GetPropertyValueHistoryCommand.js +21 -28
  17. package/dist-es/commands/GetSceneCommand.js +21 -28
  18. package/dist-es/commands/GetWorkspaceCommand.js +21 -28
  19. package/dist-es/commands/ListComponentTypesCommand.js +21 -28
  20. package/dist-es/commands/ListEntitiesCommand.js +21 -28
  21. package/dist-es/commands/ListScenesCommand.js +21 -28
  22. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  23. package/dist-es/commands/ListWorkspacesCommand.js +21 -28
  24. package/dist-es/commands/TagResourceCommand.js +21 -28
  25. package/dist-es/commands/UntagResourceCommand.js +21 -28
  26. package/dist-es/commands/UpdateComponentTypeCommand.js +21 -28
  27. package/dist-es/commands/UpdateEntityCommand.js +21 -28
  28. package/dist-es/commands/UpdateSceneCommand.js +21 -28
  29. package/dist-es/commands/UpdateWorkspaceCommand.js +21 -28
  30. package/dist-es/endpoints.js +8 -8
  31. package/dist-es/models/IoTTwinMakerServiceException.js +5 -10
  32. package/dist-es/models/models_0.js +367 -202
  33. package/dist-es/pagination/GetPropertyValueHistoryPaginator.js +25 -68
  34. package/dist-es/pagination/ListComponentTypesPaginator.js +25 -68
  35. package/dist-es/pagination/ListEntitiesPaginator.js +25 -68
  36. package/dist-es/pagination/ListScenesPaginator.js +25 -68
  37. package/dist-es/pagination/ListWorkspacesPaginator.js +25 -68
  38. package/dist-es/protocols/Aws_restJson1.js +2541 -3283
  39. package/dist-es/runtimeConfig.browser.js +26 -12
  40. package/dist-es/runtimeConfig.js +30 -12
  41. package/dist-es/runtimeConfig.native.js +8 -5
  42. package/dist-es/runtimeConfig.shared.js +8 -11
  43. package/package.json +33 -33
@@ -1,77 +1,76 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
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;
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);
11
12
  }
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;
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);
23
24
  }
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;
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);
35
36
  }
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;
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);
47
48
  }
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;
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);
59
60
  }
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;
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);
71
72
  }
72
- return ConflictException;
73
- }(__BaseException));
74
- export { ConflictException };
73
+ }
75
74
  export var Scope;
76
75
  (function (Scope) {
77
76
  Scope["ENTITY"] = "ENTITY";
@@ -96,18 +95,18 @@ export var State;
96
95
  State["ERROR"] = "ERROR";
97
96
  State["UPDATING"] = "UPDATING";
98
97
  })(State || (State = {}));
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;
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);
107
108
  }
108
- return ServiceQuotaExceededException;
109
- }(__BaseException));
110
- export { ServiceQuotaExceededException };
109
+ }
111
110
  export var PropertyUpdateType;
112
111
  (function (PropertyUpdateType) {
113
112
  PropertyUpdateType["CREATE"] = "CREATE";
@@ -119,30 +118,30 @@ export var ErrorCode;
119
118
  ErrorCode["INTERNAL_FAILURE"] = "INTERNAL_FAILURE";
120
119
  ErrorCode["VALIDATION_ERROR"] = "VALIDATION_ERROR";
121
120
  })(ErrorCode || (ErrorCode = {}));
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;
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);
130
131
  }
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;
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);
142
143
  }
143
- return ConnectorTimeoutException;
144
- }(__BaseException));
145
- export { ConnectorTimeoutException };
144
+ }
146
145
  export var InterpolationType;
147
146
  (function (InterpolationType) {
148
147
  InterpolationType["LINEAR"] = "LINEAR";
@@ -154,7 +153,7 @@ export var OrderByTime;
154
153
  })(OrderByTime || (OrderByTime = {}));
155
154
  export var ListComponentTypesFilter;
156
155
  (function (ListComponentTypesFilter) {
157
- ListComponentTypesFilter.visit = function (value, visitor) {
156
+ ListComponentTypesFilter.visit = (value, visitor) => {
158
157
  if (value.extendsFrom !== undefined)
159
158
  return visitor.extendsFrom(value.extendsFrom);
160
159
  if (value.namespace !== undefined)
@@ -166,7 +165,7 @@ export var ListComponentTypesFilter;
166
165
  })(ListComponentTypesFilter || (ListComponentTypesFilter = {}));
167
166
  export var ListEntitiesFilter;
168
167
  (function (ListEntitiesFilter) {
169
- ListEntitiesFilter.visit = function (value, visitor) {
168
+ ListEntitiesFilter.visit = (value, visitor) => {
170
169
  if (value.parentEntityId !== undefined)
171
170
  return visitor.parentEntityId(value.parentEntityId);
172
171
  if (value.componentTypeId !== undefined)
@@ -176,18 +175,18 @@ export var ListEntitiesFilter;
176
175
  return visitor._(value.$unknown[0], value.$unknown[1]);
177
176
  };
178
177
  })(ListEntitiesFilter || (ListEntitiesFilter = {}));
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;
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);
187
188
  }
188
- return TooManyTagsException;
189
- }(__BaseException));
190
- export { TooManyTagsException };
189
+ }
191
190
  export var ComponentUpdateType;
192
191
  (function (ComponentUpdateType) {
193
192
  ComponentUpdateType["CREATE"] = "CREATE";
@@ -199,39 +198,100 @@ export var ParentEntityUpdateType;
199
198
  ParentEntityUpdateType["DELETE"] = "DELETE";
200
199
  ParentEntityUpdateType["UPDATE"] = "UPDATE";
201
200
  })(ParentEntityUpdateType || (ParentEntityUpdateType = {}));
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;
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) => {
235
295
  if (obj.extendsFrom !== undefined)
236
296
  return { extendsFrom: obj.extendsFrom };
237
297
  if (obj.namespace !== undefined)
@@ -239,13 +299,19 @@ export var ListComponentTypesFilterFilterSensitiveLog = function (obj) {
239
299
  if (obj.isAbstract !== undefined)
240
300
  return { isAbstract: obj.isAbstract };
241
301
  if (obj.$unknown !== undefined)
242
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
302
+ return { [obj.$unknown[0]]: "UNKNOWN" };
243
303
  };
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;
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) => {
249
315
  if (obj.parentEntityId !== undefined)
250
316
  return { parentEntityId: obj.parentEntityId };
251
317
  if (obj.componentTypeId !== undefined)
@@ -253,54 +319,153 @@ export var ListEntitiesFilterFilterSensitiveLog = function (obj) {
253
319
  if (obj.externalId !== undefined)
254
320
  return { externalId: obj.externalId };
255
321
  if (obj.$unknown !== undefined)
256
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
322
+ return { [obj.$unknown[0]]: "UNKNOWN" };
257
323
  };
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)); };
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
+ });