@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.
- package/CHANGELOG.md +8 -0
- package/dist-es/IoTTwinMaker.js +106 -113
- package/dist-es/IoTTwinMakerClient.js +22 -28
- package/dist-es/commands/BatchPutPropertyValuesCommand.js +21 -28
- package/dist-es/commands/CreateComponentTypeCommand.js +21 -28
- package/dist-es/commands/CreateEntityCommand.js +21 -28
- package/dist-es/commands/CreateSceneCommand.js +21 -28
- package/dist-es/commands/CreateWorkspaceCommand.js +21 -28
- package/dist-es/commands/DeleteComponentTypeCommand.js +21 -28
- package/dist-es/commands/DeleteEntityCommand.js +21 -28
- package/dist-es/commands/DeleteSceneCommand.js +21 -28
- package/dist-es/commands/DeleteWorkspaceCommand.js +21 -28
- package/dist-es/commands/GetComponentTypeCommand.js +21 -28
- package/dist-es/commands/GetEntityCommand.js +21 -28
- package/dist-es/commands/GetPropertyValueCommand.js +21 -28
- package/dist-es/commands/GetPropertyValueHistoryCommand.js +21 -28
- package/dist-es/commands/GetSceneCommand.js +21 -28
- package/dist-es/commands/GetWorkspaceCommand.js +21 -28
- package/dist-es/commands/ListComponentTypesCommand.js +21 -28
- package/dist-es/commands/ListEntitiesCommand.js +21 -28
- package/dist-es/commands/ListScenesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListWorkspacesCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateComponentTypeCommand.js +21 -28
- package/dist-es/commands/UpdateEntityCommand.js +21 -28
- package/dist-es/commands/UpdateSceneCommand.js +21 -28
- package/dist-es/commands/UpdateWorkspaceCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/IoTTwinMakerServiceException.js +5 -10
- package/dist-es/models/models_0.js +367 -202
- package/dist-es/pagination/GetPropertyValueHistoryPaginator.js +25 -68
- package/dist-es/pagination/ListComponentTypesPaginator.js +25 -68
- package/dist-es/pagination/ListEntitiesPaginator.js +25 -68
- package/dist-es/pagination/ListScenesPaginator.js +25 -68
- package/dist-es/pagination/ListWorkspacesPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +2541 -3283
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,77 +1,76 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
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
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
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
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
-
|
|
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
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
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
|
-
|
|
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
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
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
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
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
|
-
|
|
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 =
|
|
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 =
|
|
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
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
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
|
-
|
|
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
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
export
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
export
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
export
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
export
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
export
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
export
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
export
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
export
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
export
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
export
|
|
233
|
-
|
|
234
|
-
|
|
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
|
|
302
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
243
303
|
};
|
|
244
|
-
export
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
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
|
|
322
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
257
323
|
};
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
export
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
export
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
export
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
export
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
export
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
export
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
export
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
export
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
export
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
export
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
export
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
export
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
export
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
export
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
export
|
|
305
|
-
|
|
306
|
-
|
|
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
|
+
});
|