@aws-sdk/client-iottwinmaker 3.169.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/IoTTwinMaker.d.ts +446 -135
  3. package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +261 -99
  4. package/dist-types/ts3.4/commands/BatchPutPropertyValuesCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateComponentTypeCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateEntityCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateSceneCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteComponentTypeCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/DeleteEntityCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DeleteSceneCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetComponentTypeCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/GetEntityCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/GetPropertyValueCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/GetPropertyValueHistoryCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/GetSceneCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/GetWorkspaceCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/ListComponentTypesCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/ListScenesCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  26. package/dist-types/ts3.4/commands/UpdateComponentTypeCommand.d.ts +36 -17
  27. package/dist-types/ts3.4/commands/UpdateEntityCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UpdateSceneCommand.d.ts +32 -17
  29. package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +35 -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 +7 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +893 -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 +65 -38
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  48. package/package.json +34 -34
@@ -1,1159 +1,893 @@
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
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export interface EntityPropertyReference {
11
+ componentName?: string;
12
+ externalIdProperty?: Record<string, string>;
13
+ entityId?: string;
14
+ propertyName: string | undefined;
15
+ }
16
+ export interface RelationshipValue {
17
+ targetEntityId?: string;
18
+ targetComponentName?: string;
19
+ }
20
+ export declare class InternalServerException extends __BaseException {
21
+ readonly name: "InternalServerException";
22
+ readonly $fault: "server";
23
+ constructor(
24
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
25
+ );
26
+ }
27
+ export declare class ResourceNotFoundException extends __BaseException {
28
+ readonly name: "ResourceNotFoundException";
29
+ readonly $fault: "client";
30
+ constructor(
31
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
32
+ );
33
+ }
34
+ export declare class ThrottlingException extends __BaseException {
35
+ readonly name: "ThrottlingException";
36
+ readonly $fault: "client";
37
+ constructor(
38
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
39
+ );
40
+ }
41
+ export declare class ValidationException extends __BaseException {
42
+ readonly name: "ValidationException";
43
+ readonly $fault: "client";
44
+ constructor(
45
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
46
+ );
47
+ }
48
+ export declare class ConflictException extends __BaseException {
49
+ readonly name: "ConflictException";
50
+ readonly $fault: "client";
51
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
52
+ }
53
+ export interface LambdaFunction {
54
+ arn: string | undefined;
55
+ }
56
+ export interface DataConnector {
57
+ lambda?: LambdaFunction;
58
+ isNative?: boolean;
59
+ }
60
+ export declare enum Scope {
61
+ ENTITY = "ENTITY",
62
+ WORKSPACE = "WORKSPACE",
63
+ }
64
+ export interface FunctionRequest {
65
+ requiredProperties?: string[];
66
+ scope?: Scope | string;
67
+ implementedBy?: DataConnector;
68
+ }
69
+ export interface Relationship {
70
+ targetComponentTypeId?: string;
71
+ relationshipType?: string;
72
+ }
73
+ export declare enum Type {
74
+ BOOLEAN = "BOOLEAN",
75
+ DOUBLE = "DOUBLE",
76
+ INTEGER = "INTEGER",
77
+ LIST = "LIST",
78
+ LONG = "LONG",
79
+ MAP = "MAP",
80
+ RELATIONSHIP = "RELATIONSHIP",
81
+ STRING = "STRING",
82
+ }
83
+ export declare enum State {
84
+ ACTIVE = "ACTIVE",
85
+ CREATING = "CREATING",
86
+ DELETING = "DELETING",
87
+ ERROR = "ERROR",
88
+ UPDATING = "UPDATING",
89
+ }
90
+ export interface CreateComponentTypeResponse {
91
+ arn: string | undefined;
92
+ creationDateTime: Date | undefined;
93
+ state: State | string | undefined;
94
+ }
95
+ export declare class ServiceQuotaExceededException extends __BaseException {
96
+ readonly name: "ServiceQuotaExceededException";
97
+ readonly $fault: "client";
98
+ constructor(
99
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
100
+ );
101
+ }
102
+ export declare enum PropertyUpdateType {
103
+ CREATE = "CREATE",
104
+ DELETE = "DELETE",
105
+ UPDATE = "UPDATE",
106
+ }
107
+ export interface CreateEntityResponse {
108
+ entityId: string | undefined;
109
+ arn: string | undefined;
110
+ creationDateTime: Date | undefined;
111
+ state: State | string | undefined;
112
+ }
113
+ export interface CreateSceneRequest {
114
+ workspaceId: string | undefined;
115
+ sceneId: string | undefined;
116
+ contentLocation: string | undefined;
117
+ description?: string;
118
+ capabilities?: string[];
119
+ tags?: Record<string, string>;
120
+ }
121
+ export interface CreateSceneResponse {
122
+ arn: string | undefined;
123
+ creationDateTime: Date | undefined;
124
+ }
125
+ export interface CreateWorkspaceRequest {
126
+ workspaceId: string | undefined;
127
+ description?: string;
128
+ s3Location: string | undefined;
129
+ role: string | undefined;
130
+ tags?: Record<string, string>;
131
+ }
132
+ export interface CreateWorkspaceResponse {
133
+ arn: string | undefined;
134
+ creationDateTime: Date | undefined;
135
+ }
136
+ export interface DeleteComponentTypeRequest {
137
+ workspaceId: string | undefined;
138
+ componentTypeId: string | undefined;
139
+ }
140
+ export interface DeleteComponentTypeResponse {
141
+ state: State | string | undefined;
142
+ }
143
+ export interface DeleteEntityRequest {
144
+ workspaceId: string | undefined;
145
+ entityId: string | undefined;
146
+ isRecursive?: boolean;
147
+ }
148
+ export interface DeleteEntityResponse {
149
+ state: State | string | undefined;
150
+ }
151
+ export interface DeleteSceneRequest {
152
+ workspaceId: string | undefined;
153
+ sceneId: string | undefined;
154
+ }
155
+ export interface DeleteSceneResponse {}
156
+ export interface DeleteWorkspaceRequest {
157
+ workspaceId: string | undefined;
158
+ }
159
+ export interface DeleteWorkspaceResponse {}
160
+ export interface GetComponentTypeRequest {
161
+ workspaceId: string | undefined;
162
+ componentTypeId: string | undefined;
163
+ }
164
+ export interface FunctionResponse {
165
+ requiredProperties?: string[];
166
+ scope?: Scope | string;
167
+ implementedBy?: DataConnector;
168
+ isInherited?: boolean;
169
+ }
170
+ export declare enum ErrorCode {
171
+ INTERNAL_FAILURE = "INTERNAL_FAILURE",
172
+ VALIDATION_ERROR = "VALIDATION_ERROR",
173
+ }
174
+ export interface ErrorDetails {
175
+ code?: ErrorCode | string;
176
+ message?: string;
177
+ }
178
+ export interface Status {
179
+ state?: State | string;
180
+ error?: ErrorDetails;
181
+ }
182
+ export interface GetEntityRequest {
183
+ workspaceId: string | undefined;
184
+ entityId: string | undefined;
185
+ }
186
+ export declare class ConnectorFailureException extends __BaseException {
187
+ readonly name: "ConnectorFailureException";
188
+ readonly $fault: "client";
189
+ constructor(
190
+ opts: __ExceptionOptionType<ConnectorFailureException, __BaseException>
191
+ );
192
+ }
193
+ export declare class ConnectorTimeoutException extends __BaseException {
194
+ readonly name: "ConnectorTimeoutException";
195
+ readonly $fault: "client";
196
+ constructor(
197
+ opts: __ExceptionOptionType<ConnectorTimeoutException, __BaseException>
198
+ );
199
+ }
200
+ export interface GetPropertyValueRequest {
201
+ componentName?: string;
202
+ componentTypeId?: string;
203
+ entityId?: string;
204
+ selectedProperties: string[] | undefined;
205
+ workspaceId: string | undefined;
206
+ }
207
+ export declare enum InterpolationType {
208
+ LINEAR = "LINEAR",
209
+ }
210
+ export interface InterpolationParameters {
211
+ interpolationType?: InterpolationType | string;
212
+ intervalInSeconds?: number;
213
+ }
214
+ export declare enum OrderByTime {
215
+ ASCENDING = "ASCENDING",
216
+ DESCENDING = "DESCENDING",
217
+ }
218
+ export interface GetSceneRequest {
219
+ workspaceId: string | undefined;
220
+ sceneId: string | undefined;
221
+ }
222
+ export interface GetSceneResponse {
223
+ workspaceId: string | undefined;
224
+ sceneId: string | undefined;
225
+ contentLocation: string | undefined;
226
+ arn: string | undefined;
227
+ creationDateTime: Date | undefined;
228
+ updateDateTime: Date | undefined;
229
+ description?: string;
230
+ capabilities?: string[];
231
+ }
232
+ export interface GetWorkspaceRequest {
233
+ workspaceId: string | undefined;
234
+ }
235
+ export interface GetWorkspaceResponse {
236
+ workspaceId: string | undefined;
237
+ arn: string | undefined;
238
+ description?: string;
239
+ s3Location: string | undefined;
240
+ role: string | undefined;
241
+ creationDateTime: Date | undefined;
242
+ updateDateTime: Date | undefined;
243
+ }
244
+ export declare type ListComponentTypesFilter =
245
+ | ListComponentTypesFilter.ExtendsFromMember
246
+ | ListComponentTypesFilter.IsAbstractMember
247
+ | ListComponentTypesFilter.NamespaceMember
248
+ | ListComponentTypesFilter.$UnknownMember;
249
+ export declare namespace ListComponentTypesFilter {
250
+ interface ExtendsFromMember {
251
+ extendsFrom: string;
252
+ namespace?: never;
253
+ isAbstract?: never;
254
+ $unknown?: never;
255
+ }
256
+ interface NamespaceMember {
257
+ extendsFrom?: never;
258
+ namespace: string;
259
+ isAbstract?: never;
260
+ $unknown?: never;
261
+ }
262
+ interface IsAbstractMember {
263
+ extendsFrom?: never;
264
+ namespace?: never;
265
+ isAbstract: boolean;
266
+ $unknown?: never;
267
+ }
268
+ interface $UnknownMember {
269
+ extendsFrom?: never;
270
+ namespace?: never;
271
+ isAbstract?: never;
272
+ $unknown: [string, any];
273
+ }
274
+ interface Visitor<T> {
275
+ extendsFrom: (value: string) => T;
276
+ namespace: (value: string) => T;
277
+ isAbstract: (value: boolean) => T;
278
+ _: (name: string, value: any) => T;
279
+ }
280
+ const visit: <T>(value: ListComponentTypesFilter, visitor: Visitor<T>) => T;
281
+ }
282
+ export interface ListComponentTypesRequest {
283
+ workspaceId: string | undefined;
284
+ filters?: ListComponentTypesFilter[];
285
+ nextToken?: string;
286
+ maxResults?: number;
287
+ }
288
+ export interface ComponentTypeSummary {
289
+ arn: string | undefined;
290
+ componentTypeId: string | undefined;
291
+ creationDateTime: Date | undefined;
292
+ updateDateTime: Date | undefined;
293
+ description?: string;
294
+ status?: Status;
295
+ }
296
+ export interface ListComponentTypesResponse {
297
+ workspaceId: string | undefined;
298
+ componentTypeSummaries: ComponentTypeSummary[] | undefined;
299
+ nextToken?: string;
300
+ maxResults?: number;
301
+ }
302
+ export declare type ListEntitiesFilter =
303
+ | ListEntitiesFilter.ComponentTypeIdMember
304
+ | ListEntitiesFilter.ExternalIdMember
305
+ | ListEntitiesFilter.ParentEntityIdMember
306
+ | ListEntitiesFilter.$UnknownMember;
307
+ export declare namespace ListEntitiesFilter {
308
+ interface ParentEntityIdMember {
309
+ parentEntityId: string;
310
+ componentTypeId?: never;
311
+ externalId?: never;
312
+ $unknown?: never;
313
+ }
314
+ interface ComponentTypeIdMember {
315
+ parentEntityId?: never;
316
+ componentTypeId: string;
317
+ externalId?: never;
318
+ $unknown?: never;
319
+ }
320
+ interface ExternalIdMember {
321
+ parentEntityId?: never;
322
+ componentTypeId?: never;
323
+ externalId: string;
324
+ $unknown?: never;
325
+ }
326
+ interface $UnknownMember {
327
+ parentEntityId?: never;
328
+ componentTypeId?: never;
329
+ externalId?: never;
330
+ $unknown: [string, any];
331
+ }
332
+ interface Visitor<T> {
333
+ parentEntityId: (value: string) => T;
334
+ componentTypeId: (value: string) => T;
335
+ externalId: (value: string) => T;
336
+ _: (name: string, value: any) => T;
337
+ }
338
+ const visit: <T>(value: ListEntitiesFilter, visitor: Visitor<T>) => T;
339
+ }
340
+ export interface ListEntitiesRequest {
341
+ workspaceId: string | undefined;
342
+ filters?: ListEntitiesFilter[];
343
+ maxResults?: number;
344
+ nextToken?: string;
345
+ }
346
+ export interface EntitySummary {
347
+ entityId: string | undefined;
348
+ entityName: string | undefined;
349
+ arn: string | undefined;
350
+ parentEntityId?: string;
351
+ status: Status | undefined;
352
+ description?: string;
353
+ hasChildEntities?: boolean;
354
+ creationDateTime: Date | undefined;
355
+ updateDateTime: Date | undefined;
356
+ }
357
+ export interface ListEntitiesResponse {
358
+ entitySummaries?: EntitySummary[];
359
+ nextToken?: string;
360
+ }
361
+ export interface ListScenesRequest {
362
+ workspaceId: string | undefined;
363
+ maxResults?: number;
364
+ nextToken?: string;
365
+ }
366
+ export interface SceneSummary {
367
+ sceneId: string | undefined;
368
+ contentLocation: string | undefined;
369
+ arn: string | undefined;
370
+ creationDateTime: Date | undefined;
371
+ updateDateTime: Date | undefined;
372
+ description?: string;
373
+ }
374
+ export interface ListScenesResponse {
375
+ sceneSummaries?: SceneSummary[];
376
+ nextToken?: string;
377
+ }
378
+ export interface ListTagsForResourceRequest {
379
+ resourceARN: string | undefined;
380
+ maxResults?: number;
381
+ nextToken?: string;
382
+ }
383
+ export interface ListTagsForResourceResponse {
384
+ tags?: Record<string, string>;
385
+ nextToken?: string;
386
+ }
387
+ export interface ListWorkspacesRequest {
388
+ maxResults?: number;
389
+ nextToken?: string;
390
+ }
391
+ export interface WorkspaceSummary {
392
+ workspaceId: string | undefined;
393
+ arn: string | undefined;
394
+ description?: string;
395
+ creationDateTime: Date | undefined;
396
+ updateDateTime: Date | undefined;
397
+ }
398
+ export interface ListWorkspacesResponse {
399
+ workspaceSummaries?: WorkspaceSummary[];
400
+ nextToken?: string;
401
+ }
402
+ export interface TagResourceRequest {
403
+ resourceARN: string | undefined;
404
+ tags: Record<string, string> | undefined;
405
+ }
406
+ export interface TagResourceResponse {}
407
+ export declare class TooManyTagsException extends __BaseException {
408
+ readonly name: "TooManyTagsException";
409
+ readonly $fault: "client";
410
+ constructor(
411
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
412
+ );
413
+ }
414
+ export interface UntagResourceRequest {
415
+ resourceARN: string | undefined;
416
+ tagKeys: string[] | undefined;
417
+ }
418
+ export interface UntagResourceResponse {}
419
+ export interface UpdateComponentTypeResponse {
420
+ workspaceId: string | undefined;
421
+ arn: string | undefined;
422
+ componentTypeId: string | undefined;
423
+ state: State | string | undefined;
424
+ }
425
+ export declare enum ComponentUpdateType {
426
+ CREATE = "CREATE",
427
+ DELETE = "DELETE",
428
+ UPDATE = "UPDATE",
429
+ }
430
+ export declare enum ParentEntityUpdateType {
431
+ DELETE = "DELETE",
432
+ UPDATE = "UPDATE",
433
+ }
434
+ export interface ParentEntityUpdateRequest {
435
+ updateType: ParentEntityUpdateType | string | undefined;
436
+ parentEntityId?: string;
437
+ }
438
+ export interface UpdateEntityResponse {
439
+ updateDateTime: Date | undefined;
440
+ state: State | string | undefined;
441
+ }
442
+ export interface UpdateSceneRequest {
443
+ workspaceId: string | undefined;
444
+ sceneId: string | undefined;
445
+ contentLocation?: string;
446
+ description?: string;
447
+ capabilities?: string[];
448
+ }
449
+ export interface UpdateSceneResponse {
450
+ updateDateTime: Date | undefined;
451
+ }
452
+ export interface UpdateWorkspaceRequest {
453
+ workspaceId: string | undefined;
454
+ description?: string;
455
+ role?: string;
456
+ }
457
+ export interface UpdateWorkspaceResponse {
458
+ updateDateTime: Date | undefined;
459
+ }
460
+ export interface DataValue {
461
+ booleanValue?: boolean;
462
+ doubleValue?: number;
463
+ integerValue?: number;
464
+ longValue?: number;
465
+ stringValue?: string;
466
+ listValue?: DataValue[];
467
+ mapValue?: Record<string, DataValue>;
468
+ relationshipValue?: RelationshipValue;
469
+ expression?: string;
470
+ }
471
+ export interface PropertyFilter {
472
+ propertyName?: string;
473
+ operator?: string;
474
+ value?: DataValue;
475
+ }
476
+ export interface PropertyLatestValue {
477
+ propertyReference: EntityPropertyReference | undefined;
478
+ propertyValue?: DataValue;
479
+ }
480
+ export interface PropertyValue {
481
+ timestamp?: Date;
482
+ value: DataValue | undefined;
483
+ time?: string;
484
+ }
485
+ export interface DataType {
486
+ type: Type | string | undefined;
487
+ nestedType?: DataType;
488
+ allowedValues?: DataValue[];
489
+ unitOfMeasure?: string;
490
+ relationship?: Relationship;
491
+ }
492
+ export interface GetPropertyValueHistoryRequest {
493
+ workspaceId: string | undefined;
494
+ entityId?: string;
495
+ componentName?: string;
496
+ componentTypeId?: string;
497
+ selectedProperties: string[] | undefined;
498
+ propertyFilters?: PropertyFilter[];
499
+ startDateTime?: Date;
500
+ endDateTime?: Date;
501
+ interpolation?: InterpolationParameters;
502
+ nextToken?: string;
503
+ maxResults?: number;
504
+ orderByTime?: OrderByTime | string;
505
+ startTime?: string;
506
+ endTime?: string;
507
+ }
508
+ export interface GetPropertyValueResponse {
509
+ propertyValues: Record<string, PropertyLatestValue> | undefined;
510
+ }
511
+ export interface PropertyValueEntry {
512
+ entityPropertyReference: EntityPropertyReference | undefined;
513
+ propertyValues?: PropertyValue[];
514
+ }
515
+ export interface PropertyValueHistory {
516
+ entityPropertyReference: EntityPropertyReference | undefined;
517
+ values?: PropertyValue[];
518
+ }
519
+ export interface BatchPutPropertyError {
520
+ errorCode: string | undefined;
521
+ errorMessage: string | undefined;
522
+ entry: PropertyValueEntry | undefined;
523
+ }
524
+ export interface BatchPutPropertyValuesRequest {
525
+ workspaceId: string | undefined;
526
+ entries: PropertyValueEntry[] | undefined;
527
+ }
528
+ export interface GetPropertyValueHistoryResponse {
529
+ propertyValues: PropertyValueHistory[] | undefined;
530
+ nextToken?: string;
531
+ }
532
+ export interface BatchPutPropertyErrorEntry {
533
+ errors: BatchPutPropertyError[] | undefined;
534
+ }
535
+ export interface PropertyDefinitionRequest {
536
+ dataType?: DataType;
537
+ isRequiredInEntity?: boolean;
538
+ isExternalId?: boolean;
539
+ isStoredExternally?: boolean;
540
+ isTimeSeries?: boolean;
541
+ defaultValue?: DataValue;
542
+ configuration?: Record<string, string>;
543
+ }
544
+ export interface PropertyDefinitionResponse {
545
+ dataType: DataType | undefined;
546
+ isTimeSeries: boolean | undefined;
547
+ isRequiredInEntity: boolean | undefined;
548
+ isExternalId: boolean | undefined;
549
+ isStoredExternally: boolean | undefined;
550
+ isImported: boolean | undefined;
551
+ isFinal: boolean | undefined;
552
+ isInherited: boolean | undefined;
553
+ defaultValue?: DataValue;
554
+ configuration?: Record<string, string>;
555
+ }
556
+ export interface BatchPutPropertyValuesResponse {
557
+ errorEntries: BatchPutPropertyErrorEntry[] | undefined;
558
+ }
559
+ export interface CreateComponentTypeRequest {
560
+ workspaceId: string | undefined;
561
+ isSingleton?: boolean;
562
+ componentTypeId: string | undefined;
563
+ description?: string;
564
+ propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
565
+ extendsFrom?: string[];
566
+ functions?: Record<string, FunctionRequest>;
567
+ tags?: Record<string, string>;
568
+ }
569
+ export interface GetComponentTypeResponse {
570
+ workspaceId: string | undefined;
571
+ isSingleton?: boolean;
572
+ componentTypeId: string | undefined;
573
+ description?: string;
574
+ propertyDefinitions?: Record<string, PropertyDefinitionResponse>;
575
+ extendsFrom?: string[];
576
+ functions?: Record<string, FunctionResponse>;
577
+ creationDateTime: Date | undefined;
578
+ updateDateTime: Date | undefined;
579
+ arn: string | undefined;
580
+ isAbstract?: boolean;
581
+ isSchemaInitialized?: boolean;
582
+ status?: Status;
583
+ }
584
+ export interface UpdateComponentTypeRequest {
585
+ workspaceId: string | undefined;
586
+ isSingleton?: boolean;
587
+ componentTypeId: string | undefined;
588
+ description?: string;
589
+ propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
590
+ extendsFrom?: string[];
591
+ functions?: Record<string, FunctionRequest>;
592
+ }
593
+ export interface PropertyRequest {
594
+ definition?: PropertyDefinitionRequest;
595
+ value?: DataValue;
596
+ updateType?: PropertyUpdateType | string;
597
+ }
598
+ export interface PropertyResponse {
599
+ definition?: PropertyDefinitionResponse;
600
+ value?: DataValue;
601
+ }
602
+ export interface ComponentRequest {
603
+ description?: string;
604
+ componentTypeId?: string;
605
+ properties?: Record<string, PropertyRequest>;
606
+ }
607
+ export interface ComponentResponse {
608
+ componentName?: string;
609
+ description?: string;
610
+ componentTypeId?: string;
611
+ status?: Status;
612
+ definedIn?: string;
613
+ properties?: Record<string, PropertyResponse>;
614
+ }
615
+ export interface ComponentUpdateRequest {
616
+ updateType?: ComponentUpdateType | string;
617
+ description?: string;
618
+ componentTypeId?: string;
619
+ propertyUpdates?: Record<string, PropertyRequest>;
620
+ }
621
+ export interface CreateEntityRequest {
622
+ workspaceId: string | undefined;
623
+ entityId?: string;
624
+ entityName: string | undefined;
625
+ description?: string;
626
+ components?: Record<string, ComponentRequest>;
627
+ parentEntityId?: string;
628
+ tags?: Record<string, string>;
629
+ }
630
+ export interface GetEntityResponse {
631
+ entityId: string | undefined;
632
+ entityName: string | undefined;
633
+ arn: string | undefined;
634
+ status: Status | undefined;
635
+ workspaceId: string | undefined;
636
+ description?: string;
637
+ components?: Record<string, ComponentResponse>;
638
+ parentEntityId: string | undefined;
639
+ hasChildEntities: boolean | undefined;
640
+ creationDateTime: Date | undefined;
641
+ updateDateTime: Date | undefined;
642
+ }
643
+ export interface UpdateEntityRequest {
644
+ workspaceId: string | undefined;
645
+ entityId: string | undefined;
646
+ entityName?: string;
647
+ description?: string;
648
+ componentUpdates?: Record<string, ComponentUpdateRequest>;
649
+ parentEntityUpdate?: ParentEntityUpdateRequest;
650
+ }
651
+ export declare const EntityPropertyReferenceFilterSensitiveLog: (
652
+ obj: EntityPropertyReference
653
+ ) => any;
654
+ export declare const RelationshipValueFilterSensitiveLog: (
655
+ obj: RelationshipValue
656
+ ) => any;
657
+ export declare const LambdaFunctionFilterSensitiveLog: (
658
+ obj: LambdaFunction
659
+ ) => any;
660
+ export declare const DataConnectorFilterSensitiveLog: (
661
+ obj: DataConnector
662
+ ) => any;
663
+ export declare const FunctionRequestFilterSensitiveLog: (
664
+ obj: FunctionRequest
665
+ ) => any;
666
+ export declare const RelationshipFilterSensitiveLog: (obj: Relationship) => any;
667
+ export declare const CreateComponentTypeResponseFilterSensitiveLog: (
668
+ obj: CreateComponentTypeResponse
669
+ ) => any;
670
+ export declare const CreateEntityResponseFilterSensitiveLog: (
671
+ obj: CreateEntityResponse
672
+ ) => any;
673
+ export declare const CreateSceneRequestFilterSensitiveLog: (
674
+ obj: CreateSceneRequest
675
+ ) => any;
676
+ export declare const CreateSceneResponseFilterSensitiveLog: (
677
+ obj: CreateSceneResponse
678
+ ) => any;
679
+ export declare const CreateWorkspaceRequestFilterSensitiveLog: (
680
+ obj: CreateWorkspaceRequest
681
+ ) => any;
682
+ export declare const CreateWorkspaceResponseFilterSensitiveLog: (
683
+ obj: CreateWorkspaceResponse
684
+ ) => any;
685
+ export declare const DeleteComponentTypeRequestFilterSensitiveLog: (
686
+ obj: DeleteComponentTypeRequest
687
+ ) => any;
688
+ export declare const DeleteComponentTypeResponseFilterSensitiveLog: (
689
+ obj: DeleteComponentTypeResponse
690
+ ) => any;
691
+ export declare const DeleteEntityRequestFilterSensitiveLog: (
692
+ obj: DeleteEntityRequest
693
+ ) => any;
694
+ export declare const DeleteEntityResponseFilterSensitiveLog: (
695
+ obj: DeleteEntityResponse
696
+ ) => any;
697
+ export declare const DeleteSceneRequestFilterSensitiveLog: (
698
+ obj: DeleteSceneRequest
699
+ ) => any;
700
+ export declare const DeleteSceneResponseFilterSensitiveLog: (
701
+ obj: DeleteSceneResponse
702
+ ) => any;
703
+ export declare const DeleteWorkspaceRequestFilterSensitiveLog: (
704
+ obj: DeleteWorkspaceRequest
705
+ ) => any;
706
+ export declare const DeleteWorkspaceResponseFilterSensitiveLog: (
707
+ obj: DeleteWorkspaceResponse
708
+ ) => any;
709
+ export declare const GetComponentTypeRequestFilterSensitiveLog: (
710
+ obj: GetComponentTypeRequest
711
+ ) => any;
712
+ export declare const FunctionResponseFilterSensitiveLog: (
713
+ obj: FunctionResponse
714
+ ) => any;
715
+ export declare const ErrorDetailsFilterSensitiveLog: (obj: ErrorDetails) => any;
716
+ export declare const StatusFilterSensitiveLog: (obj: Status) => any;
717
+ export declare const GetEntityRequestFilterSensitiveLog: (
718
+ obj: GetEntityRequest
719
+ ) => any;
720
+ export declare const GetPropertyValueRequestFilterSensitiveLog: (
721
+ obj: GetPropertyValueRequest
722
+ ) => any;
723
+ export declare const InterpolationParametersFilterSensitiveLog: (
724
+ obj: InterpolationParameters
725
+ ) => any;
726
+ export declare const GetSceneRequestFilterSensitiveLog: (
727
+ obj: GetSceneRequest
728
+ ) => any;
729
+ export declare const GetSceneResponseFilterSensitiveLog: (
730
+ obj: GetSceneResponse
731
+ ) => any;
732
+ export declare const GetWorkspaceRequestFilterSensitiveLog: (
733
+ obj: GetWorkspaceRequest
734
+ ) => any;
735
+ export declare const GetWorkspaceResponseFilterSensitiveLog: (
736
+ obj: GetWorkspaceResponse
737
+ ) => any;
738
+ export declare const ListComponentTypesFilterFilterSensitiveLog: (
739
+ obj: ListComponentTypesFilter
740
+ ) => any;
741
+ export declare const ListComponentTypesRequestFilterSensitiveLog: (
742
+ obj: ListComponentTypesRequest
743
+ ) => any;
744
+ export declare const ComponentTypeSummaryFilterSensitiveLog: (
745
+ obj: ComponentTypeSummary
746
+ ) => any;
747
+ export declare const ListComponentTypesResponseFilterSensitiveLog: (
748
+ obj: ListComponentTypesResponse
749
+ ) => any;
750
+ export declare const ListEntitiesFilterFilterSensitiveLog: (
751
+ obj: ListEntitiesFilter
752
+ ) => any;
753
+ export declare const ListEntitiesRequestFilterSensitiveLog: (
754
+ obj: ListEntitiesRequest
755
+ ) => any;
756
+ export declare const EntitySummaryFilterSensitiveLog: (
757
+ obj: EntitySummary
758
+ ) => any;
759
+ export declare const ListEntitiesResponseFilterSensitiveLog: (
760
+ obj: ListEntitiesResponse
761
+ ) => any;
762
+ export declare const ListScenesRequestFilterSensitiveLog: (
763
+ obj: ListScenesRequest
764
+ ) => any;
765
+ export declare const SceneSummaryFilterSensitiveLog: (obj: SceneSummary) => any;
766
+ export declare const ListScenesResponseFilterSensitiveLog: (
767
+ obj: ListScenesResponse
768
+ ) => any;
769
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
770
+ obj: ListTagsForResourceRequest
771
+ ) => any;
772
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
773
+ obj: ListTagsForResourceResponse
774
+ ) => any;
775
+ export declare const ListWorkspacesRequestFilterSensitiveLog: (
776
+ obj: ListWorkspacesRequest
777
+ ) => any;
778
+ export declare const WorkspaceSummaryFilterSensitiveLog: (
779
+ obj: WorkspaceSummary
780
+ ) => any;
781
+ export declare const ListWorkspacesResponseFilterSensitiveLog: (
782
+ obj: ListWorkspacesResponse
783
+ ) => any;
784
+ export declare const TagResourceRequestFilterSensitiveLog: (
785
+ obj: TagResourceRequest
786
+ ) => any;
787
+ export declare const TagResourceResponseFilterSensitiveLog: (
788
+ obj: TagResourceResponse
789
+ ) => any;
790
+ export declare const UntagResourceRequestFilterSensitiveLog: (
791
+ obj: UntagResourceRequest
792
+ ) => any;
793
+ export declare const UntagResourceResponseFilterSensitiveLog: (
794
+ obj: UntagResourceResponse
795
+ ) => any;
796
+ export declare const UpdateComponentTypeResponseFilterSensitiveLog: (
797
+ obj: UpdateComponentTypeResponse
798
+ ) => any;
799
+ export declare const ParentEntityUpdateRequestFilterSensitiveLog: (
800
+ obj: ParentEntityUpdateRequest
801
+ ) => any;
802
+ export declare const UpdateEntityResponseFilterSensitiveLog: (
803
+ obj: UpdateEntityResponse
804
+ ) => any;
805
+ export declare const UpdateSceneRequestFilterSensitiveLog: (
806
+ obj: UpdateSceneRequest
807
+ ) => any;
808
+ export declare const UpdateSceneResponseFilterSensitiveLog: (
809
+ obj: UpdateSceneResponse
810
+ ) => any;
811
+ export declare const UpdateWorkspaceRequestFilterSensitiveLog: (
812
+ obj: UpdateWorkspaceRequest
813
+ ) => any;
814
+ export declare const UpdateWorkspaceResponseFilterSensitiveLog: (
815
+ obj: UpdateWorkspaceResponse
816
+ ) => any;
817
+ export declare const DataValueFilterSensitiveLog: (obj: DataValue) => any;
818
+ export declare const PropertyFilterFilterSensitiveLog: (
819
+ obj: PropertyFilter
820
+ ) => any;
821
+ export declare const PropertyLatestValueFilterSensitiveLog: (
822
+ obj: PropertyLatestValue
823
+ ) => any;
824
+ export declare const PropertyValueFilterSensitiveLog: (
825
+ obj: PropertyValue
826
+ ) => any;
827
+ export declare const DataTypeFilterSensitiveLog: (obj: DataType) => any;
828
+ export declare const GetPropertyValueHistoryRequestFilterSensitiveLog: (
829
+ obj: GetPropertyValueHistoryRequest
830
+ ) => any;
831
+ export declare const GetPropertyValueResponseFilterSensitiveLog: (
832
+ obj: GetPropertyValueResponse
833
+ ) => any;
834
+ export declare const PropertyValueEntryFilterSensitiveLog: (
835
+ obj: PropertyValueEntry
836
+ ) => any;
837
+ export declare const PropertyValueHistoryFilterSensitiveLog: (
838
+ obj: PropertyValueHistory
839
+ ) => any;
840
+ export declare const BatchPutPropertyErrorFilterSensitiveLog: (
841
+ obj: BatchPutPropertyError
842
+ ) => any;
843
+ export declare const BatchPutPropertyValuesRequestFilterSensitiveLog: (
844
+ obj: BatchPutPropertyValuesRequest
845
+ ) => any;
846
+ export declare const GetPropertyValueHistoryResponseFilterSensitiveLog: (
847
+ obj: GetPropertyValueHistoryResponse
848
+ ) => any;
849
+ export declare const BatchPutPropertyErrorEntryFilterSensitiveLog: (
850
+ obj: BatchPutPropertyErrorEntry
851
+ ) => any;
852
+ export declare const PropertyDefinitionRequestFilterSensitiveLog: (
853
+ obj: PropertyDefinitionRequest
854
+ ) => any;
855
+ export declare const PropertyDefinitionResponseFilterSensitiveLog: (
856
+ obj: PropertyDefinitionResponse
857
+ ) => any;
858
+ export declare const BatchPutPropertyValuesResponseFilterSensitiveLog: (
859
+ obj: BatchPutPropertyValuesResponse
860
+ ) => any;
861
+ export declare const CreateComponentTypeRequestFilterSensitiveLog: (
862
+ obj: CreateComponentTypeRequest
863
+ ) => any;
864
+ export declare const GetComponentTypeResponseFilterSensitiveLog: (
865
+ obj: GetComponentTypeResponse
866
+ ) => any;
867
+ export declare const UpdateComponentTypeRequestFilterSensitiveLog: (
868
+ obj: UpdateComponentTypeRequest
869
+ ) => any;
870
+ export declare const PropertyRequestFilterSensitiveLog: (
871
+ obj: PropertyRequest
872
+ ) => any;
873
+ export declare const PropertyResponseFilterSensitiveLog: (
874
+ obj: PropertyResponse
875
+ ) => any;
876
+ export declare const ComponentRequestFilterSensitiveLog: (
877
+ obj: ComponentRequest
878
+ ) => any;
879
+ export declare const ComponentResponseFilterSensitiveLog: (
880
+ obj: ComponentResponse
881
+ ) => any;
882
+ export declare const ComponentUpdateRequestFilterSensitiveLog: (
883
+ obj: ComponentUpdateRequest
884
+ ) => any;
885
+ export declare const CreateEntityRequestFilterSensitiveLog: (
886
+ obj: CreateEntityRequest
887
+ ) => any;
888
+ export declare const GetEntityResponseFilterSensitiveLog: (
889
+ obj: GetEntityResponse
890
+ ) => any;
891
+ export declare const UpdateEntityRequestFilterSensitiveLog: (
892
+ obj: UpdateEntityRequest
893
+ ) => any;