@aws-sdk/client-iottwinmaker 3.170.0 → 3.171.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-types/ts3.4/IoTTwinMaker.d.ts +0 -26
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/BatchPutPropertyValuesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateComponentTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateEntityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateSceneCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteComponentTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteEntityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteSceneCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetComponentTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetEntityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPropertyValueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPropertyValueHistoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetSceneCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetWorkspaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListComponentTypesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListScenesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateComponentTypeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateEntityCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSceneCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/IoTTwinMakerServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -359
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,99 +1,73 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
constructor(
|
|
9
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
8
|
);
|
|
11
9
|
}
|
|
12
|
-
|
|
13
10
|
export interface EntityPropertyReference {
|
|
14
11
|
componentName?: string;
|
|
15
|
-
|
|
16
12
|
externalIdProperty?: Record<string, string>;
|
|
17
|
-
|
|
18
13
|
entityId?: string;
|
|
19
|
-
|
|
20
14
|
propertyName: string | undefined;
|
|
21
15
|
}
|
|
22
|
-
|
|
23
16
|
export interface RelationshipValue {
|
|
24
17
|
targetEntityId?: string;
|
|
25
|
-
|
|
26
18
|
targetComponentName?: string;
|
|
27
19
|
}
|
|
28
|
-
|
|
29
20
|
export declare class InternalServerException extends __BaseException {
|
|
30
21
|
readonly name: "InternalServerException";
|
|
31
22
|
readonly $fault: "server";
|
|
32
|
-
|
|
33
23
|
constructor(
|
|
34
24
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
35
25
|
);
|
|
36
26
|
}
|
|
37
|
-
|
|
38
27
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
39
28
|
readonly name: "ResourceNotFoundException";
|
|
40
29
|
readonly $fault: "client";
|
|
41
|
-
|
|
42
30
|
constructor(
|
|
43
31
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
44
32
|
);
|
|
45
33
|
}
|
|
46
|
-
|
|
47
34
|
export declare class ThrottlingException extends __BaseException {
|
|
48
35
|
readonly name: "ThrottlingException";
|
|
49
36
|
readonly $fault: "client";
|
|
50
|
-
|
|
51
37
|
constructor(
|
|
52
38
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
53
39
|
);
|
|
54
40
|
}
|
|
55
|
-
|
|
56
41
|
export declare class ValidationException extends __BaseException {
|
|
57
42
|
readonly name: "ValidationException";
|
|
58
43
|
readonly $fault: "client";
|
|
59
|
-
|
|
60
44
|
constructor(
|
|
61
45
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
62
46
|
);
|
|
63
47
|
}
|
|
64
|
-
|
|
65
48
|
export declare class ConflictException extends __BaseException {
|
|
66
49
|
readonly name: "ConflictException";
|
|
67
50
|
readonly $fault: "client";
|
|
68
|
-
|
|
69
51
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
70
52
|
}
|
|
71
|
-
|
|
72
53
|
export interface LambdaFunction {
|
|
73
54
|
arn: string | undefined;
|
|
74
55
|
}
|
|
75
|
-
|
|
76
56
|
export interface DataConnector {
|
|
77
57
|
lambda?: LambdaFunction;
|
|
78
|
-
|
|
79
58
|
isNative?: boolean;
|
|
80
59
|
}
|
|
81
60
|
export declare enum Scope {
|
|
82
61
|
ENTITY = "ENTITY",
|
|
83
62
|
WORKSPACE = "WORKSPACE",
|
|
84
63
|
}
|
|
85
|
-
|
|
86
64
|
export interface FunctionRequest {
|
|
87
65
|
requiredProperties?: string[];
|
|
88
|
-
|
|
89
66
|
scope?: Scope | string;
|
|
90
|
-
|
|
91
67
|
implementedBy?: DataConnector;
|
|
92
68
|
}
|
|
93
|
-
|
|
94
69
|
export interface Relationship {
|
|
95
70
|
targetComponentTypeId?: string;
|
|
96
|
-
|
|
97
71
|
relationshipType?: string;
|
|
98
72
|
}
|
|
99
73
|
export declare enum Type {
|
|
@@ -115,16 +89,12 @@ export declare enum State {
|
|
|
115
89
|
}
|
|
116
90
|
export interface CreateComponentTypeResponse {
|
|
117
91
|
arn: string | undefined;
|
|
118
|
-
|
|
119
92
|
creationDateTime: Date | undefined;
|
|
120
|
-
|
|
121
93
|
state: State | string | undefined;
|
|
122
94
|
}
|
|
123
|
-
|
|
124
95
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
125
96
|
readonly name: "ServiceQuotaExceededException";
|
|
126
97
|
readonly $fault: "client";
|
|
127
|
-
|
|
128
98
|
constructor(
|
|
129
99
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
130
100
|
);
|
|
@@ -136,50 +106,35 @@ export declare enum PropertyUpdateType {
|
|
|
136
106
|
}
|
|
137
107
|
export interface CreateEntityResponse {
|
|
138
108
|
entityId: string | undefined;
|
|
139
|
-
|
|
140
109
|
arn: string | undefined;
|
|
141
|
-
|
|
142
110
|
creationDateTime: Date | undefined;
|
|
143
|
-
|
|
144
111
|
state: State | string | undefined;
|
|
145
112
|
}
|
|
146
113
|
export interface CreateSceneRequest {
|
|
147
114
|
workspaceId: string | undefined;
|
|
148
|
-
|
|
149
115
|
sceneId: string | undefined;
|
|
150
|
-
|
|
151
116
|
contentLocation: string | undefined;
|
|
152
|
-
|
|
153
117
|
description?: string;
|
|
154
|
-
|
|
155
118
|
capabilities?: string[];
|
|
156
|
-
|
|
157
119
|
tags?: Record<string, string>;
|
|
158
120
|
}
|
|
159
121
|
export interface CreateSceneResponse {
|
|
160
122
|
arn: string | undefined;
|
|
161
|
-
|
|
162
123
|
creationDateTime: Date | undefined;
|
|
163
124
|
}
|
|
164
125
|
export interface CreateWorkspaceRequest {
|
|
165
126
|
workspaceId: string | undefined;
|
|
166
|
-
|
|
167
127
|
description?: string;
|
|
168
|
-
|
|
169
128
|
s3Location: string | undefined;
|
|
170
|
-
|
|
171
129
|
role: string | undefined;
|
|
172
|
-
|
|
173
130
|
tags?: Record<string, string>;
|
|
174
131
|
}
|
|
175
132
|
export interface CreateWorkspaceResponse {
|
|
176
133
|
arn: string | undefined;
|
|
177
|
-
|
|
178
134
|
creationDateTime: Date | undefined;
|
|
179
135
|
}
|
|
180
136
|
export interface DeleteComponentTypeRequest {
|
|
181
137
|
workspaceId: string | undefined;
|
|
182
|
-
|
|
183
138
|
componentTypeId: string | undefined;
|
|
184
139
|
}
|
|
185
140
|
export interface DeleteComponentTypeResponse {
|
|
@@ -187,9 +142,7 @@ export interface DeleteComponentTypeResponse {
|
|
|
187
142
|
}
|
|
188
143
|
export interface DeleteEntityRequest {
|
|
189
144
|
workspaceId: string | undefined;
|
|
190
|
-
|
|
191
145
|
entityId: string | undefined;
|
|
192
|
-
|
|
193
146
|
isRecursive?: boolean;
|
|
194
147
|
}
|
|
195
148
|
export interface DeleteEntityResponse {
|
|
@@ -197,7 +150,6 @@ export interface DeleteEntityResponse {
|
|
|
197
150
|
}
|
|
198
151
|
export interface DeleteSceneRequest {
|
|
199
152
|
workspaceId: string | undefined;
|
|
200
|
-
|
|
201
153
|
sceneId: string | undefined;
|
|
202
154
|
}
|
|
203
155
|
export interface DeleteSceneResponse {}
|
|
@@ -207,76 +159,56 @@ export interface DeleteWorkspaceRequest {
|
|
|
207
159
|
export interface DeleteWorkspaceResponse {}
|
|
208
160
|
export interface GetComponentTypeRequest {
|
|
209
161
|
workspaceId: string | undefined;
|
|
210
|
-
|
|
211
162
|
componentTypeId: string | undefined;
|
|
212
163
|
}
|
|
213
|
-
|
|
214
164
|
export interface FunctionResponse {
|
|
215
165
|
requiredProperties?: string[];
|
|
216
|
-
|
|
217
166
|
scope?: Scope | string;
|
|
218
|
-
|
|
219
167
|
implementedBy?: DataConnector;
|
|
220
|
-
|
|
221
168
|
isInherited?: boolean;
|
|
222
169
|
}
|
|
223
170
|
export declare enum ErrorCode {
|
|
224
171
|
INTERNAL_FAILURE = "INTERNAL_FAILURE",
|
|
225
172
|
VALIDATION_ERROR = "VALIDATION_ERROR",
|
|
226
173
|
}
|
|
227
|
-
|
|
228
174
|
export interface ErrorDetails {
|
|
229
175
|
code?: ErrorCode | string;
|
|
230
|
-
|
|
231
176
|
message?: string;
|
|
232
177
|
}
|
|
233
|
-
|
|
234
178
|
export interface Status {
|
|
235
179
|
state?: State | string;
|
|
236
|
-
|
|
237
180
|
error?: ErrorDetails;
|
|
238
181
|
}
|
|
239
182
|
export interface GetEntityRequest {
|
|
240
183
|
workspaceId: string | undefined;
|
|
241
|
-
|
|
242
184
|
entityId: string | undefined;
|
|
243
185
|
}
|
|
244
|
-
|
|
245
186
|
export declare class ConnectorFailureException extends __BaseException {
|
|
246
187
|
readonly name: "ConnectorFailureException";
|
|
247
188
|
readonly $fault: "client";
|
|
248
|
-
|
|
249
189
|
constructor(
|
|
250
190
|
opts: __ExceptionOptionType<ConnectorFailureException, __BaseException>
|
|
251
191
|
);
|
|
252
192
|
}
|
|
253
|
-
|
|
254
193
|
export declare class ConnectorTimeoutException extends __BaseException {
|
|
255
194
|
readonly name: "ConnectorTimeoutException";
|
|
256
195
|
readonly $fault: "client";
|
|
257
|
-
|
|
258
196
|
constructor(
|
|
259
197
|
opts: __ExceptionOptionType<ConnectorTimeoutException, __BaseException>
|
|
260
198
|
);
|
|
261
199
|
}
|
|
262
200
|
export interface GetPropertyValueRequest {
|
|
263
201
|
componentName?: string;
|
|
264
|
-
|
|
265
202
|
componentTypeId?: string;
|
|
266
|
-
|
|
267
203
|
entityId?: string;
|
|
268
|
-
|
|
269
204
|
selectedProperties: string[] | undefined;
|
|
270
|
-
|
|
271
205
|
workspaceId: string | undefined;
|
|
272
206
|
}
|
|
273
207
|
export declare enum InterpolationType {
|
|
274
208
|
LINEAR = "LINEAR",
|
|
275
209
|
}
|
|
276
|
-
|
|
277
210
|
export interface InterpolationParameters {
|
|
278
211
|
interpolationType?: InterpolationType | string;
|
|
279
|
-
|
|
280
212
|
intervalInSeconds?: number;
|
|
281
213
|
}
|
|
282
214
|
export declare enum OrderByTime {
|
|
@@ -285,24 +217,16 @@ export declare enum OrderByTime {
|
|
|
285
217
|
}
|
|
286
218
|
export interface GetSceneRequest {
|
|
287
219
|
workspaceId: string | undefined;
|
|
288
|
-
|
|
289
220
|
sceneId: string | undefined;
|
|
290
221
|
}
|
|
291
222
|
export interface GetSceneResponse {
|
|
292
223
|
workspaceId: string | undefined;
|
|
293
|
-
|
|
294
224
|
sceneId: string | undefined;
|
|
295
|
-
|
|
296
225
|
contentLocation: string | undefined;
|
|
297
|
-
|
|
298
226
|
arn: string | undefined;
|
|
299
|
-
|
|
300
227
|
creationDateTime: Date | undefined;
|
|
301
|
-
|
|
302
228
|
updateDateTime: Date | undefined;
|
|
303
|
-
|
|
304
229
|
description?: string;
|
|
305
|
-
|
|
306
230
|
capabilities?: string[];
|
|
307
231
|
}
|
|
308
232
|
export interface GetWorkspaceRequest {
|
|
@@ -310,20 +234,13 @@ export interface GetWorkspaceRequest {
|
|
|
310
234
|
}
|
|
311
235
|
export interface GetWorkspaceResponse {
|
|
312
236
|
workspaceId: string | undefined;
|
|
313
|
-
|
|
314
237
|
arn: string | undefined;
|
|
315
|
-
|
|
316
238
|
description?: string;
|
|
317
|
-
|
|
318
239
|
s3Location: string | undefined;
|
|
319
|
-
|
|
320
240
|
role: string | undefined;
|
|
321
|
-
|
|
322
241
|
creationDateTime: Date | undefined;
|
|
323
|
-
|
|
324
242
|
updateDateTime: Date | undefined;
|
|
325
243
|
}
|
|
326
|
-
|
|
327
244
|
export declare type ListComponentTypesFilter =
|
|
328
245
|
| ListComponentTypesFilter.ExtendsFromMember
|
|
329
246
|
| ListComponentTypesFilter.IsAbstractMember
|
|
@@ -336,14 +253,12 @@ export declare namespace ListComponentTypesFilter {
|
|
|
336
253
|
isAbstract?: never;
|
|
337
254
|
$unknown?: never;
|
|
338
255
|
}
|
|
339
|
-
|
|
340
256
|
interface NamespaceMember {
|
|
341
257
|
extendsFrom?: never;
|
|
342
258
|
namespace: string;
|
|
343
259
|
isAbstract?: never;
|
|
344
260
|
$unknown?: never;
|
|
345
261
|
}
|
|
346
|
-
|
|
347
262
|
interface IsAbstractMember {
|
|
348
263
|
extendsFrom?: never;
|
|
349
264
|
namespace?: never;
|
|
@@ -366,37 +281,24 @@ export declare namespace ListComponentTypesFilter {
|
|
|
366
281
|
}
|
|
367
282
|
export interface ListComponentTypesRequest {
|
|
368
283
|
workspaceId: string | undefined;
|
|
369
|
-
|
|
370
284
|
filters?: ListComponentTypesFilter[];
|
|
371
|
-
|
|
372
285
|
nextToken?: string;
|
|
373
|
-
|
|
374
286
|
maxResults?: number;
|
|
375
287
|
}
|
|
376
|
-
|
|
377
288
|
export interface ComponentTypeSummary {
|
|
378
289
|
arn: string | undefined;
|
|
379
|
-
|
|
380
290
|
componentTypeId: string | undefined;
|
|
381
|
-
|
|
382
291
|
creationDateTime: Date | undefined;
|
|
383
|
-
|
|
384
292
|
updateDateTime: Date | undefined;
|
|
385
|
-
|
|
386
293
|
description?: string;
|
|
387
|
-
|
|
388
294
|
status?: Status;
|
|
389
295
|
}
|
|
390
296
|
export interface ListComponentTypesResponse {
|
|
391
297
|
workspaceId: string | undefined;
|
|
392
|
-
|
|
393
298
|
componentTypeSummaries: ComponentTypeSummary[] | undefined;
|
|
394
|
-
|
|
395
299
|
nextToken?: string;
|
|
396
|
-
|
|
397
300
|
maxResults?: number;
|
|
398
301
|
}
|
|
399
|
-
|
|
400
302
|
export declare type ListEntitiesFilter =
|
|
401
303
|
| ListEntitiesFilter.ComponentTypeIdMember
|
|
402
304
|
| ListEntitiesFilter.ExternalIdMember
|
|
@@ -409,14 +311,12 @@ export declare namespace ListEntitiesFilter {
|
|
|
409
311
|
externalId?: never;
|
|
410
312
|
$unknown?: never;
|
|
411
313
|
}
|
|
412
|
-
|
|
413
314
|
interface ComponentTypeIdMember {
|
|
414
315
|
parentEntityId?: never;
|
|
415
316
|
componentTypeId: string;
|
|
416
317
|
externalId?: never;
|
|
417
318
|
$unknown?: never;
|
|
418
319
|
}
|
|
419
|
-
|
|
420
320
|
interface ExternalIdMember {
|
|
421
321
|
parentEntityId?: never;
|
|
422
322
|
componentTypeId?: never;
|
|
@@ -439,126 +339,87 @@ export declare namespace ListEntitiesFilter {
|
|
|
439
339
|
}
|
|
440
340
|
export interface ListEntitiesRequest {
|
|
441
341
|
workspaceId: string | undefined;
|
|
442
|
-
|
|
443
342
|
filters?: ListEntitiesFilter[];
|
|
444
|
-
|
|
445
343
|
maxResults?: number;
|
|
446
|
-
|
|
447
344
|
nextToken?: string;
|
|
448
345
|
}
|
|
449
|
-
|
|
450
346
|
export interface EntitySummary {
|
|
451
347
|
entityId: string | undefined;
|
|
452
|
-
|
|
453
348
|
entityName: string | undefined;
|
|
454
|
-
|
|
455
349
|
arn: string | undefined;
|
|
456
|
-
|
|
457
350
|
parentEntityId?: string;
|
|
458
|
-
|
|
459
351
|
status: Status | undefined;
|
|
460
|
-
|
|
461
352
|
description?: string;
|
|
462
|
-
|
|
463
353
|
hasChildEntities?: boolean;
|
|
464
|
-
|
|
465
354
|
creationDateTime: Date | undefined;
|
|
466
|
-
|
|
467
355
|
updateDateTime: Date | undefined;
|
|
468
356
|
}
|
|
469
357
|
export interface ListEntitiesResponse {
|
|
470
358
|
entitySummaries?: EntitySummary[];
|
|
471
|
-
|
|
472
359
|
nextToken?: string;
|
|
473
360
|
}
|
|
474
361
|
export interface ListScenesRequest {
|
|
475
362
|
workspaceId: string | undefined;
|
|
476
|
-
|
|
477
363
|
maxResults?: number;
|
|
478
|
-
|
|
479
364
|
nextToken?: string;
|
|
480
365
|
}
|
|
481
|
-
|
|
482
366
|
export interface SceneSummary {
|
|
483
367
|
sceneId: string | undefined;
|
|
484
|
-
|
|
485
368
|
contentLocation: string | undefined;
|
|
486
|
-
|
|
487
369
|
arn: string | undefined;
|
|
488
|
-
|
|
489
370
|
creationDateTime: Date | undefined;
|
|
490
|
-
|
|
491
371
|
updateDateTime: Date | undefined;
|
|
492
|
-
|
|
493
372
|
description?: string;
|
|
494
373
|
}
|
|
495
374
|
export interface ListScenesResponse {
|
|
496
375
|
sceneSummaries?: SceneSummary[];
|
|
497
|
-
|
|
498
376
|
nextToken?: string;
|
|
499
377
|
}
|
|
500
378
|
export interface ListTagsForResourceRequest {
|
|
501
379
|
resourceARN: string | undefined;
|
|
502
|
-
|
|
503
380
|
maxResults?: number;
|
|
504
|
-
|
|
505
381
|
nextToken?: string;
|
|
506
382
|
}
|
|
507
383
|
export interface ListTagsForResourceResponse {
|
|
508
384
|
tags?: Record<string, string>;
|
|
509
|
-
|
|
510
385
|
nextToken?: string;
|
|
511
386
|
}
|
|
512
387
|
export interface ListWorkspacesRequest {
|
|
513
388
|
maxResults?: number;
|
|
514
|
-
|
|
515
389
|
nextToken?: string;
|
|
516
390
|
}
|
|
517
|
-
|
|
518
391
|
export interface WorkspaceSummary {
|
|
519
392
|
workspaceId: string | undefined;
|
|
520
|
-
|
|
521
393
|
arn: string | undefined;
|
|
522
|
-
|
|
523
394
|
description?: string;
|
|
524
|
-
|
|
525
395
|
creationDateTime: Date | undefined;
|
|
526
|
-
|
|
527
396
|
updateDateTime: Date | undefined;
|
|
528
397
|
}
|
|
529
398
|
export interface ListWorkspacesResponse {
|
|
530
399
|
workspaceSummaries?: WorkspaceSummary[];
|
|
531
|
-
|
|
532
400
|
nextToken?: string;
|
|
533
401
|
}
|
|
534
402
|
export interface TagResourceRequest {
|
|
535
403
|
resourceARN: string | undefined;
|
|
536
|
-
|
|
537
404
|
tags: Record<string, string> | undefined;
|
|
538
405
|
}
|
|
539
406
|
export interface TagResourceResponse {}
|
|
540
|
-
|
|
541
407
|
export declare class TooManyTagsException extends __BaseException {
|
|
542
408
|
readonly name: "TooManyTagsException";
|
|
543
409
|
readonly $fault: "client";
|
|
544
|
-
|
|
545
410
|
constructor(
|
|
546
411
|
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
547
412
|
);
|
|
548
413
|
}
|
|
549
414
|
export interface UntagResourceRequest {
|
|
550
415
|
resourceARN: string | undefined;
|
|
551
|
-
|
|
552
416
|
tagKeys: string[] | undefined;
|
|
553
417
|
}
|
|
554
418
|
export interface UntagResourceResponse {}
|
|
555
419
|
export interface UpdateComponentTypeResponse {
|
|
556
420
|
workspaceId: string | undefined;
|
|
557
|
-
|
|
558
421
|
arn: string | undefined;
|
|
559
|
-
|
|
560
422
|
componentTypeId: string | undefined;
|
|
561
|
-
|
|
562
423
|
state: State | string | undefined;
|
|
563
424
|
}
|
|
564
425
|
export declare enum ComponentUpdateType {
|
|
@@ -570,26 +431,19 @@ export declare enum ParentEntityUpdateType {
|
|
|
570
431
|
DELETE = "DELETE",
|
|
571
432
|
UPDATE = "UPDATE",
|
|
572
433
|
}
|
|
573
|
-
|
|
574
434
|
export interface ParentEntityUpdateRequest {
|
|
575
435
|
updateType: ParentEntityUpdateType | string | undefined;
|
|
576
|
-
|
|
577
436
|
parentEntityId?: string;
|
|
578
437
|
}
|
|
579
438
|
export interface UpdateEntityResponse {
|
|
580
439
|
updateDateTime: Date | undefined;
|
|
581
|
-
|
|
582
440
|
state: State | string | undefined;
|
|
583
441
|
}
|
|
584
442
|
export interface UpdateSceneRequest {
|
|
585
443
|
workspaceId: string | undefined;
|
|
586
|
-
|
|
587
444
|
sceneId: string | undefined;
|
|
588
|
-
|
|
589
445
|
contentLocation?: string;
|
|
590
|
-
|
|
591
446
|
description?: string;
|
|
592
|
-
|
|
593
447
|
capabilities?: string[];
|
|
594
448
|
}
|
|
595
449
|
export interface UpdateSceneResponse {
|
|
@@ -597,170 +451,106 @@ export interface UpdateSceneResponse {
|
|
|
597
451
|
}
|
|
598
452
|
export interface UpdateWorkspaceRequest {
|
|
599
453
|
workspaceId: string | undefined;
|
|
600
|
-
|
|
601
454
|
description?: string;
|
|
602
|
-
|
|
603
455
|
role?: string;
|
|
604
456
|
}
|
|
605
457
|
export interface UpdateWorkspaceResponse {
|
|
606
458
|
updateDateTime: Date | undefined;
|
|
607
459
|
}
|
|
608
|
-
|
|
609
460
|
export interface DataValue {
|
|
610
461
|
booleanValue?: boolean;
|
|
611
|
-
|
|
612
462
|
doubleValue?: number;
|
|
613
|
-
|
|
614
463
|
integerValue?: number;
|
|
615
|
-
|
|
616
464
|
longValue?: number;
|
|
617
|
-
|
|
618
465
|
stringValue?: string;
|
|
619
|
-
|
|
620
466
|
listValue?: DataValue[];
|
|
621
|
-
|
|
622
467
|
mapValue?: Record<string, DataValue>;
|
|
623
|
-
|
|
624
468
|
relationshipValue?: RelationshipValue;
|
|
625
|
-
|
|
626
469
|
expression?: string;
|
|
627
470
|
}
|
|
628
|
-
|
|
629
471
|
export interface PropertyFilter {
|
|
630
472
|
propertyName?: string;
|
|
631
|
-
|
|
632
473
|
operator?: string;
|
|
633
|
-
|
|
634
474
|
value?: DataValue;
|
|
635
475
|
}
|
|
636
|
-
|
|
637
476
|
export interface PropertyLatestValue {
|
|
638
477
|
propertyReference: EntityPropertyReference | undefined;
|
|
639
|
-
|
|
640
478
|
propertyValue?: DataValue;
|
|
641
479
|
}
|
|
642
|
-
|
|
643
480
|
export interface PropertyValue {
|
|
644
481
|
timestamp?: Date;
|
|
645
|
-
|
|
646
482
|
value: DataValue | undefined;
|
|
647
|
-
|
|
648
483
|
time?: string;
|
|
649
484
|
}
|
|
650
|
-
|
|
651
485
|
export interface DataType {
|
|
652
486
|
type: Type | string | undefined;
|
|
653
|
-
|
|
654
487
|
nestedType?: DataType;
|
|
655
|
-
|
|
656
488
|
allowedValues?: DataValue[];
|
|
657
|
-
|
|
658
489
|
unitOfMeasure?: string;
|
|
659
|
-
|
|
660
490
|
relationship?: Relationship;
|
|
661
491
|
}
|
|
662
492
|
export interface GetPropertyValueHistoryRequest {
|
|
663
493
|
workspaceId: string | undefined;
|
|
664
|
-
|
|
665
494
|
entityId?: string;
|
|
666
|
-
|
|
667
495
|
componentName?: string;
|
|
668
|
-
|
|
669
496
|
componentTypeId?: string;
|
|
670
|
-
|
|
671
497
|
selectedProperties: string[] | undefined;
|
|
672
|
-
|
|
673
498
|
propertyFilters?: PropertyFilter[];
|
|
674
|
-
|
|
675
499
|
startDateTime?: Date;
|
|
676
|
-
|
|
677
500
|
endDateTime?: Date;
|
|
678
|
-
|
|
679
501
|
interpolation?: InterpolationParameters;
|
|
680
|
-
|
|
681
502
|
nextToken?: string;
|
|
682
|
-
|
|
683
503
|
maxResults?: number;
|
|
684
|
-
|
|
685
504
|
orderByTime?: OrderByTime | string;
|
|
686
|
-
|
|
687
505
|
startTime?: string;
|
|
688
|
-
|
|
689
506
|
endTime?: string;
|
|
690
507
|
}
|
|
691
508
|
export interface GetPropertyValueResponse {
|
|
692
509
|
propertyValues: Record<string, PropertyLatestValue> | undefined;
|
|
693
510
|
}
|
|
694
|
-
|
|
695
511
|
export interface PropertyValueEntry {
|
|
696
512
|
entityPropertyReference: EntityPropertyReference | undefined;
|
|
697
|
-
|
|
698
513
|
propertyValues?: PropertyValue[];
|
|
699
514
|
}
|
|
700
|
-
|
|
701
515
|
export interface PropertyValueHistory {
|
|
702
516
|
entityPropertyReference: EntityPropertyReference | undefined;
|
|
703
|
-
|
|
704
517
|
values?: PropertyValue[];
|
|
705
518
|
}
|
|
706
|
-
|
|
707
519
|
export interface BatchPutPropertyError {
|
|
708
520
|
errorCode: string | undefined;
|
|
709
|
-
|
|
710
521
|
errorMessage: string | undefined;
|
|
711
|
-
|
|
712
522
|
entry: PropertyValueEntry | undefined;
|
|
713
523
|
}
|
|
714
524
|
export interface BatchPutPropertyValuesRequest {
|
|
715
525
|
workspaceId: string | undefined;
|
|
716
|
-
|
|
717
526
|
entries: PropertyValueEntry[] | undefined;
|
|
718
527
|
}
|
|
719
528
|
export interface GetPropertyValueHistoryResponse {
|
|
720
529
|
propertyValues: PropertyValueHistory[] | undefined;
|
|
721
|
-
|
|
722
530
|
nextToken?: string;
|
|
723
531
|
}
|
|
724
|
-
|
|
725
532
|
export interface BatchPutPropertyErrorEntry {
|
|
726
533
|
errors: BatchPutPropertyError[] | undefined;
|
|
727
534
|
}
|
|
728
|
-
|
|
729
535
|
export interface PropertyDefinitionRequest {
|
|
730
536
|
dataType?: DataType;
|
|
731
|
-
|
|
732
537
|
isRequiredInEntity?: boolean;
|
|
733
|
-
|
|
734
538
|
isExternalId?: boolean;
|
|
735
|
-
|
|
736
539
|
isStoredExternally?: boolean;
|
|
737
|
-
|
|
738
540
|
isTimeSeries?: boolean;
|
|
739
|
-
|
|
740
541
|
defaultValue?: DataValue;
|
|
741
|
-
|
|
742
542
|
configuration?: Record<string, string>;
|
|
743
543
|
}
|
|
744
|
-
|
|
745
544
|
export interface PropertyDefinitionResponse {
|
|
746
545
|
dataType: DataType | undefined;
|
|
747
|
-
|
|
748
546
|
isTimeSeries: boolean | undefined;
|
|
749
|
-
|
|
750
547
|
isRequiredInEntity: boolean | undefined;
|
|
751
|
-
|
|
752
548
|
isExternalId: boolean | undefined;
|
|
753
|
-
|
|
754
549
|
isStoredExternally: boolean | undefined;
|
|
755
|
-
|
|
756
550
|
isImported: boolean | undefined;
|
|
757
|
-
|
|
758
551
|
isFinal: boolean | undefined;
|
|
759
|
-
|
|
760
552
|
isInherited: boolean | undefined;
|
|
761
|
-
|
|
762
553
|
defaultValue?: DataValue;
|
|
763
|
-
|
|
764
554
|
configuration?: Record<string, string>;
|
|
765
555
|
}
|
|
766
556
|
export interface BatchPutPropertyValuesResponse {
|
|
@@ -768,485 +558,336 @@ export interface BatchPutPropertyValuesResponse {
|
|
|
768
558
|
}
|
|
769
559
|
export interface CreateComponentTypeRequest {
|
|
770
560
|
workspaceId: string | undefined;
|
|
771
|
-
|
|
772
561
|
isSingleton?: boolean;
|
|
773
|
-
|
|
774
562
|
componentTypeId: string | undefined;
|
|
775
|
-
|
|
776
563
|
description?: string;
|
|
777
|
-
|
|
778
564
|
propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
|
|
779
|
-
|
|
780
565
|
extendsFrom?: string[];
|
|
781
|
-
|
|
782
566
|
functions?: Record<string, FunctionRequest>;
|
|
783
|
-
|
|
784
567
|
tags?: Record<string, string>;
|
|
785
568
|
}
|
|
786
569
|
export interface GetComponentTypeResponse {
|
|
787
570
|
workspaceId: string | undefined;
|
|
788
|
-
|
|
789
571
|
isSingleton?: boolean;
|
|
790
|
-
|
|
791
572
|
componentTypeId: string | undefined;
|
|
792
|
-
|
|
793
573
|
description?: string;
|
|
794
|
-
|
|
795
574
|
propertyDefinitions?: Record<string, PropertyDefinitionResponse>;
|
|
796
|
-
|
|
797
575
|
extendsFrom?: string[];
|
|
798
|
-
|
|
799
576
|
functions?: Record<string, FunctionResponse>;
|
|
800
|
-
|
|
801
577
|
creationDateTime: Date | undefined;
|
|
802
|
-
|
|
803
578
|
updateDateTime: Date | undefined;
|
|
804
|
-
|
|
805
579
|
arn: string | undefined;
|
|
806
|
-
|
|
807
580
|
isAbstract?: boolean;
|
|
808
|
-
|
|
809
581
|
isSchemaInitialized?: boolean;
|
|
810
|
-
|
|
811
582
|
status?: Status;
|
|
812
583
|
}
|
|
813
584
|
export interface UpdateComponentTypeRequest {
|
|
814
585
|
workspaceId: string | undefined;
|
|
815
|
-
|
|
816
586
|
isSingleton?: boolean;
|
|
817
|
-
|
|
818
587
|
componentTypeId: string | undefined;
|
|
819
|
-
|
|
820
588
|
description?: string;
|
|
821
|
-
|
|
822
589
|
propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
|
|
823
|
-
|
|
824
590
|
extendsFrom?: string[];
|
|
825
|
-
|
|
826
591
|
functions?: Record<string, FunctionRequest>;
|
|
827
592
|
}
|
|
828
|
-
|
|
829
593
|
export interface PropertyRequest {
|
|
830
594
|
definition?: PropertyDefinitionRequest;
|
|
831
|
-
|
|
832
595
|
value?: DataValue;
|
|
833
|
-
|
|
834
596
|
updateType?: PropertyUpdateType | string;
|
|
835
597
|
}
|
|
836
|
-
|
|
837
598
|
export interface PropertyResponse {
|
|
838
599
|
definition?: PropertyDefinitionResponse;
|
|
839
|
-
|
|
840
600
|
value?: DataValue;
|
|
841
601
|
}
|
|
842
|
-
|
|
843
602
|
export interface ComponentRequest {
|
|
844
603
|
description?: string;
|
|
845
|
-
|
|
846
604
|
componentTypeId?: string;
|
|
847
|
-
|
|
848
605
|
properties?: Record<string, PropertyRequest>;
|
|
849
606
|
}
|
|
850
|
-
|
|
851
607
|
export interface ComponentResponse {
|
|
852
608
|
componentName?: string;
|
|
853
|
-
|
|
854
609
|
description?: string;
|
|
855
|
-
|
|
856
610
|
componentTypeId?: string;
|
|
857
|
-
|
|
858
611
|
status?: Status;
|
|
859
|
-
|
|
860
612
|
definedIn?: string;
|
|
861
|
-
|
|
862
613
|
properties?: Record<string, PropertyResponse>;
|
|
863
614
|
}
|
|
864
|
-
|
|
865
615
|
export interface ComponentUpdateRequest {
|
|
866
616
|
updateType?: ComponentUpdateType | string;
|
|
867
|
-
|
|
868
617
|
description?: string;
|
|
869
|
-
|
|
870
618
|
componentTypeId?: string;
|
|
871
|
-
|
|
872
619
|
propertyUpdates?: Record<string, PropertyRequest>;
|
|
873
620
|
}
|
|
874
621
|
export interface CreateEntityRequest {
|
|
875
622
|
workspaceId: string | undefined;
|
|
876
|
-
|
|
877
623
|
entityId?: string;
|
|
878
|
-
|
|
879
624
|
entityName: string | undefined;
|
|
880
|
-
|
|
881
625
|
description?: string;
|
|
882
|
-
|
|
883
626
|
components?: Record<string, ComponentRequest>;
|
|
884
|
-
|
|
885
627
|
parentEntityId?: string;
|
|
886
|
-
|
|
887
628
|
tags?: Record<string, string>;
|
|
888
629
|
}
|
|
889
630
|
export interface GetEntityResponse {
|
|
890
631
|
entityId: string | undefined;
|
|
891
|
-
|
|
892
632
|
entityName: string | undefined;
|
|
893
|
-
|
|
894
633
|
arn: string | undefined;
|
|
895
|
-
|
|
896
634
|
status: Status | undefined;
|
|
897
|
-
|
|
898
635
|
workspaceId: string | undefined;
|
|
899
|
-
|
|
900
636
|
description?: string;
|
|
901
|
-
|
|
902
637
|
components?: Record<string, ComponentResponse>;
|
|
903
|
-
|
|
904
638
|
parentEntityId: string | undefined;
|
|
905
|
-
|
|
906
639
|
hasChildEntities: boolean | undefined;
|
|
907
|
-
|
|
908
640
|
creationDateTime: Date | undefined;
|
|
909
|
-
|
|
910
641
|
updateDateTime: Date | undefined;
|
|
911
642
|
}
|
|
912
643
|
export interface UpdateEntityRequest {
|
|
913
644
|
workspaceId: string | undefined;
|
|
914
|
-
|
|
915
645
|
entityId: string | undefined;
|
|
916
|
-
|
|
917
646
|
entityName?: string;
|
|
918
|
-
|
|
919
647
|
description?: string;
|
|
920
|
-
|
|
921
648
|
componentUpdates?: Record<string, ComponentUpdateRequest>;
|
|
922
|
-
|
|
923
649
|
parentEntityUpdate?: ParentEntityUpdateRequest;
|
|
924
650
|
}
|
|
925
|
-
|
|
926
651
|
export declare const EntityPropertyReferenceFilterSensitiveLog: (
|
|
927
652
|
obj: EntityPropertyReference
|
|
928
653
|
) => any;
|
|
929
|
-
|
|
930
654
|
export declare const RelationshipValueFilterSensitiveLog: (
|
|
931
655
|
obj: RelationshipValue
|
|
932
656
|
) => any;
|
|
933
|
-
|
|
934
657
|
export declare const LambdaFunctionFilterSensitiveLog: (
|
|
935
658
|
obj: LambdaFunction
|
|
936
659
|
) => any;
|
|
937
|
-
|
|
938
660
|
export declare const DataConnectorFilterSensitiveLog: (
|
|
939
661
|
obj: DataConnector
|
|
940
662
|
) => any;
|
|
941
|
-
|
|
942
663
|
export declare const FunctionRequestFilterSensitiveLog: (
|
|
943
664
|
obj: FunctionRequest
|
|
944
665
|
) => any;
|
|
945
|
-
|
|
946
666
|
export declare const RelationshipFilterSensitiveLog: (obj: Relationship) => any;
|
|
947
|
-
|
|
948
667
|
export declare const CreateComponentTypeResponseFilterSensitiveLog: (
|
|
949
668
|
obj: CreateComponentTypeResponse
|
|
950
669
|
) => any;
|
|
951
|
-
|
|
952
670
|
export declare const CreateEntityResponseFilterSensitiveLog: (
|
|
953
671
|
obj: CreateEntityResponse
|
|
954
672
|
) => any;
|
|
955
|
-
|
|
956
673
|
export declare const CreateSceneRequestFilterSensitiveLog: (
|
|
957
674
|
obj: CreateSceneRequest
|
|
958
675
|
) => any;
|
|
959
|
-
|
|
960
676
|
export declare const CreateSceneResponseFilterSensitiveLog: (
|
|
961
677
|
obj: CreateSceneResponse
|
|
962
678
|
) => any;
|
|
963
|
-
|
|
964
679
|
export declare const CreateWorkspaceRequestFilterSensitiveLog: (
|
|
965
680
|
obj: CreateWorkspaceRequest
|
|
966
681
|
) => any;
|
|
967
|
-
|
|
968
682
|
export declare const CreateWorkspaceResponseFilterSensitiveLog: (
|
|
969
683
|
obj: CreateWorkspaceResponse
|
|
970
684
|
) => any;
|
|
971
|
-
|
|
972
685
|
export declare const DeleteComponentTypeRequestFilterSensitiveLog: (
|
|
973
686
|
obj: DeleteComponentTypeRequest
|
|
974
687
|
) => any;
|
|
975
|
-
|
|
976
688
|
export declare const DeleteComponentTypeResponseFilterSensitiveLog: (
|
|
977
689
|
obj: DeleteComponentTypeResponse
|
|
978
690
|
) => any;
|
|
979
|
-
|
|
980
691
|
export declare const DeleteEntityRequestFilterSensitiveLog: (
|
|
981
692
|
obj: DeleteEntityRequest
|
|
982
693
|
) => any;
|
|
983
|
-
|
|
984
694
|
export declare const DeleteEntityResponseFilterSensitiveLog: (
|
|
985
695
|
obj: DeleteEntityResponse
|
|
986
696
|
) => any;
|
|
987
|
-
|
|
988
697
|
export declare const DeleteSceneRequestFilterSensitiveLog: (
|
|
989
698
|
obj: DeleteSceneRequest
|
|
990
699
|
) => any;
|
|
991
|
-
|
|
992
700
|
export declare const DeleteSceneResponseFilterSensitiveLog: (
|
|
993
701
|
obj: DeleteSceneResponse
|
|
994
702
|
) => any;
|
|
995
|
-
|
|
996
703
|
export declare const DeleteWorkspaceRequestFilterSensitiveLog: (
|
|
997
704
|
obj: DeleteWorkspaceRequest
|
|
998
705
|
) => any;
|
|
999
|
-
|
|
1000
706
|
export declare const DeleteWorkspaceResponseFilterSensitiveLog: (
|
|
1001
707
|
obj: DeleteWorkspaceResponse
|
|
1002
708
|
) => any;
|
|
1003
|
-
|
|
1004
709
|
export declare const GetComponentTypeRequestFilterSensitiveLog: (
|
|
1005
710
|
obj: GetComponentTypeRequest
|
|
1006
711
|
) => any;
|
|
1007
|
-
|
|
1008
712
|
export declare const FunctionResponseFilterSensitiveLog: (
|
|
1009
713
|
obj: FunctionResponse
|
|
1010
714
|
) => any;
|
|
1011
|
-
|
|
1012
715
|
export declare const ErrorDetailsFilterSensitiveLog: (obj: ErrorDetails) => any;
|
|
1013
|
-
|
|
1014
716
|
export declare const StatusFilterSensitiveLog: (obj: Status) => any;
|
|
1015
|
-
|
|
1016
717
|
export declare const GetEntityRequestFilterSensitiveLog: (
|
|
1017
718
|
obj: GetEntityRequest
|
|
1018
719
|
) => any;
|
|
1019
|
-
|
|
1020
720
|
export declare const GetPropertyValueRequestFilterSensitiveLog: (
|
|
1021
721
|
obj: GetPropertyValueRequest
|
|
1022
722
|
) => any;
|
|
1023
|
-
|
|
1024
723
|
export declare const InterpolationParametersFilterSensitiveLog: (
|
|
1025
724
|
obj: InterpolationParameters
|
|
1026
725
|
) => any;
|
|
1027
|
-
|
|
1028
726
|
export declare const GetSceneRequestFilterSensitiveLog: (
|
|
1029
727
|
obj: GetSceneRequest
|
|
1030
728
|
) => any;
|
|
1031
|
-
|
|
1032
729
|
export declare const GetSceneResponseFilterSensitiveLog: (
|
|
1033
730
|
obj: GetSceneResponse
|
|
1034
731
|
) => any;
|
|
1035
|
-
|
|
1036
732
|
export declare const GetWorkspaceRequestFilterSensitiveLog: (
|
|
1037
733
|
obj: GetWorkspaceRequest
|
|
1038
734
|
) => any;
|
|
1039
|
-
|
|
1040
735
|
export declare const GetWorkspaceResponseFilterSensitiveLog: (
|
|
1041
736
|
obj: GetWorkspaceResponse
|
|
1042
737
|
) => any;
|
|
1043
|
-
|
|
1044
738
|
export declare const ListComponentTypesFilterFilterSensitiveLog: (
|
|
1045
739
|
obj: ListComponentTypesFilter
|
|
1046
740
|
) => any;
|
|
1047
|
-
|
|
1048
741
|
export declare const ListComponentTypesRequestFilterSensitiveLog: (
|
|
1049
742
|
obj: ListComponentTypesRequest
|
|
1050
743
|
) => any;
|
|
1051
|
-
|
|
1052
744
|
export declare const ComponentTypeSummaryFilterSensitiveLog: (
|
|
1053
745
|
obj: ComponentTypeSummary
|
|
1054
746
|
) => any;
|
|
1055
|
-
|
|
1056
747
|
export declare const ListComponentTypesResponseFilterSensitiveLog: (
|
|
1057
748
|
obj: ListComponentTypesResponse
|
|
1058
749
|
) => any;
|
|
1059
|
-
|
|
1060
750
|
export declare const ListEntitiesFilterFilterSensitiveLog: (
|
|
1061
751
|
obj: ListEntitiesFilter
|
|
1062
752
|
) => any;
|
|
1063
|
-
|
|
1064
753
|
export declare const ListEntitiesRequestFilterSensitiveLog: (
|
|
1065
754
|
obj: ListEntitiesRequest
|
|
1066
755
|
) => any;
|
|
1067
|
-
|
|
1068
756
|
export declare const EntitySummaryFilterSensitiveLog: (
|
|
1069
757
|
obj: EntitySummary
|
|
1070
758
|
) => any;
|
|
1071
|
-
|
|
1072
759
|
export declare const ListEntitiesResponseFilterSensitiveLog: (
|
|
1073
760
|
obj: ListEntitiesResponse
|
|
1074
761
|
) => any;
|
|
1075
|
-
|
|
1076
762
|
export declare const ListScenesRequestFilterSensitiveLog: (
|
|
1077
763
|
obj: ListScenesRequest
|
|
1078
764
|
) => any;
|
|
1079
|
-
|
|
1080
765
|
export declare const SceneSummaryFilterSensitiveLog: (obj: SceneSummary) => any;
|
|
1081
|
-
|
|
1082
766
|
export declare const ListScenesResponseFilterSensitiveLog: (
|
|
1083
767
|
obj: ListScenesResponse
|
|
1084
768
|
) => any;
|
|
1085
|
-
|
|
1086
769
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1087
770
|
obj: ListTagsForResourceRequest
|
|
1088
771
|
) => any;
|
|
1089
|
-
|
|
1090
772
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1091
773
|
obj: ListTagsForResourceResponse
|
|
1092
774
|
) => any;
|
|
1093
|
-
|
|
1094
775
|
export declare const ListWorkspacesRequestFilterSensitiveLog: (
|
|
1095
776
|
obj: ListWorkspacesRequest
|
|
1096
777
|
) => any;
|
|
1097
|
-
|
|
1098
778
|
export declare const WorkspaceSummaryFilterSensitiveLog: (
|
|
1099
779
|
obj: WorkspaceSummary
|
|
1100
780
|
) => any;
|
|
1101
|
-
|
|
1102
781
|
export declare const ListWorkspacesResponseFilterSensitiveLog: (
|
|
1103
782
|
obj: ListWorkspacesResponse
|
|
1104
783
|
) => any;
|
|
1105
|
-
|
|
1106
784
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1107
785
|
obj: TagResourceRequest
|
|
1108
786
|
) => any;
|
|
1109
|
-
|
|
1110
787
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1111
788
|
obj: TagResourceResponse
|
|
1112
789
|
) => any;
|
|
1113
|
-
|
|
1114
790
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1115
791
|
obj: UntagResourceRequest
|
|
1116
792
|
) => any;
|
|
1117
|
-
|
|
1118
793
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1119
794
|
obj: UntagResourceResponse
|
|
1120
795
|
) => any;
|
|
1121
|
-
|
|
1122
796
|
export declare const UpdateComponentTypeResponseFilterSensitiveLog: (
|
|
1123
797
|
obj: UpdateComponentTypeResponse
|
|
1124
798
|
) => any;
|
|
1125
|
-
|
|
1126
799
|
export declare const ParentEntityUpdateRequestFilterSensitiveLog: (
|
|
1127
800
|
obj: ParentEntityUpdateRequest
|
|
1128
801
|
) => any;
|
|
1129
|
-
|
|
1130
802
|
export declare const UpdateEntityResponseFilterSensitiveLog: (
|
|
1131
803
|
obj: UpdateEntityResponse
|
|
1132
804
|
) => any;
|
|
1133
|
-
|
|
1134
805
|
export declare const UpdateSceneRequestFilterSensitiveLog: (
|
|
1135
806
|
obj: UpdateSceneRequest
|
|
1136
807
|
) => any;
|
|
1137
|
-
|
|
1138
808
|
export declare const UpdateSceneResponseFilterSensitiveLog: (
|
|
1139
809
|
obj: UpdateSceneResponse
|
|
1140
810
|
) => any;
|
|
1141
|
-
|
|
1142
811
|
export declare const UpdateWorkspaceRequestFilterSensitiveLog: (
|
|
1143
812
|
obj: UpdateWorkspaceRequest
|
|
1144
813
|
) => any;
|
|
1145
|
-
|
|
1146
814
|
export declare const UpdateWorkspaceResponseFilterSensitiveLog: (
|
|
1147
815
|
obj: UpdateWorkspaceResponse
|
|
1148
816
|
) => any;
|
|
1149
|
-
|
|
1150
817
|
export declare const DataValueFilterSensitiveLog: (obj: DataValue) => any;
|
|
1151
|
-
|
|
1152
818
|
export declare const PropertyFilterFilterSensitiveLog: (
|
|
1153
819
|
obj: PropertyFilter
|
|
1154
820
|
) => any;
|
|
1155
|
-
|
|
1156
821
|
export declare const PropertyLatestValueFilterSensitiveLog: (
|
|
1157
822
|
obj: PropertyLatestValue
|
|
1158
823
|
) => any;
|
|
1159
|
-
|
|
1160
824
|
export declare const PropertyValueFilterSensitiveLog: (
|
|
1161
825
|
obj: PropertyValue
|
|
1162
826
|
) => any;
|
|
1163
|
-
|
|
1164
827
|
export declare const DataTypeFilterSensitiveLog: (obj: DataType) => any;
|
|
1165
|
-
|
|
1166
828
|
export declare const GetPropertyValueHistoryRequestFilterSensitiveLog: (
|
|
1167
829
|
obj: GetPropertyValueHistoryRequest
|
|
1168
830
|
) => any;
|
|
1169
|
-
|
|
1170
831
|
export declare const GetPropertyValueResponseFilterSensitiveLog: (
|
|
1171
832
|
obj: GetPropertyValueResponse
|
|
1172
833
|
) => any;
|
|
1173
|
-
|
|
1174
834
|
export declare const PropertyValueEntryFilterSensitiveLog: (
|
|
1175
835
|
obj: PropertyValueEntry
|
|
1176
836
|
) => any;
|
|
1177
|
-
|
|
1178
837
|
export declare const PropertyValueHistoryFilterSensitiveLog: (
|
|
1179
838
|
obj: PropertyValueHistory
|
|
1180
839
|
) => any;
|
|
1181
|
-
|
|
1182
840
|
export declare const BatchPutPropertyErrorFilterSensitiveLog: (
|
|
1183
841
|
obj: BatchPutPropertyError
|
|
1184
842
|
) => any;
|
|
1185
|
-
|
|
1186
843
|
export declare const BatchPutPropertyValuesRequestFilterSensitiveLog: (
|
|
1187
844
|
obj: BatchPutPropertyValuesRequest
|
|
1188
845
|
) => any;
|
|
1189
|
-
|
|
1190
846
|
export declare const GetPropertyValueHistoryResponseFilterSensitiveLog: (
|
|
1191
847
|
obj: GetPropertyValueHistoryResponse
|
|
1192
848
|
) => any;
|
|
1193
|
-
|
|
1194
849
|
export declare const BatchPutPropertyErrorEntryFilterSensitiveLog: (
|
|
1195
850
|
obj: BatchPutPropertyErrorEntry
|
|
1196
851
|
) => any;
|
|
1197
|
-
|
|
1198
852
|
export declare const PropertyDefinitionRequestFilterSensitiveLog: (
|
|
1199
853
|
obj: PropertyDefinitionRequest
|
|
1200
854
|
) => any;
|
|
1201
|
-
|
|
1202
855
|
export declare const PropertyDefinitionResponseFilterSensitiveLog: (
|
|
1203
856
|
obj: PropertyDefinitionResponse
|
|
1204
857
|
) => any;
|
|
1205
|
-
|
|
1206
858
|
export declare const BatchPutPropertyValuesResponseFilterSensitiveLog: (
|
|
1207
859
|
obj: BatchPutPropertyValuesResponse
|
|
1208
860
|
) => any;
|
|
1209
|
-
|
|
1210
861
|
export declare const CreateComponentTypeRequestFilterSensitiveLog: (
|
|
1211
862
|
obj: CreateComponentTypeRequest
|
|
1212
863
|
) => any;
|
|
1213
|
-
|
|
1214
864
|
export declare const GetComponentTypeResponseFilterSensitiveLog: (
|
|
1215
865
|
obj: GetComponentTypeResponse
|
|
1216
866
|
) => any;
|
|
1217
|
-
|
|
1218
867
|
export declare const UpdateComponentTypeRequestFilterSensitiveLog: (
|
|
1219
868
|
obj: UpdateComponentTypeRequest
|
|
1220
869
|
) => any;
|
|
1221
|
-
|
|
1222
870
|
export declare const PropertyRequestFilterSensitiveLog: (
|
|
1223
871
|
obj: PropertyRequest
|
|
1224
872
|
) => any;
|
|
1225
|
-
|
|
1226
873
|
export declare const PropertyResponseFilterSensitiveLog: (
|
|
1227
874
|
obj: PropertyResponse
|
|
1228
875
|
) => any;
|
|
1229
|
-
|
|
1230
876
|
export declare const ComponentRequestFilterSensitiveLog: (
|
|
1231
877
|
obj: ComponentRequest
|
|
1232
878
|
) => any;
|
|
1233
|
-
|
|
1234
879
|
export declare const ComponentResponseFilterSensitiveLog: (
|
|
1235
880
|
obj: ComponentResponse
|
|
1236
881
|
) => any;
|
|
1237
|
-
|
|
1238
882
|
export declare const ComponentUpdateRequestFilterSensitiveLog: (
|
|
1239
883
|
obj: ComponentUpdateRequest
|
|
1240
884
|
) => any;
|
|
1241
|
-
|
|
1242
885
|
export declare const CreateEntityRequestFilterSensitiveLog: (
|
|
1243
886
|
obj: CreateEntityRequest
|
|
1244
887
|
) => any;
|
|
1245
|
-
|
|
1246
888
|
export declare const GetEntityResponseFilterSensitiveLog: (
|
|
1247
889
|
obj: GetEntityResponse
|
|
1248
890
|
) => any;
|
|
1249
|
-
|
|
1250
891
|
export declare const UpdateEntityRequestFilterSensitiveLog: (
|
|
1251
892
|
obj: UpdateEntityRequest
|
|
1252
893
|
) => any;
|