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