@aws-sdk/client-iottwinmaker 3.936.0 → 3.940.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +152 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +128 -0
- package/dist-es/models/models_0.js +1 -128
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +312 -0
- package/dist-types/models/models_0.d.ts +1 -312
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +161 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -161
- package/package.json +5 -5
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
+
import { ColumnType, ComponentUpdateType, DestinationType, ErrorCode, GroupType, InterpolationType, MetadataTransferJobState, Order, OrderByTime, ParentEntityUpdateType, PricingMode, PricingTier, PropertyGroupUpdateType, PropertyUpdateType, SceneErrorCode, Scope, SourceType, State, SyncJobState, SyncResourceState, SyncResourceType, Type, UpdateReason } from "./enums";
|
|
2
3
|
/**
|
|
3
4
|
* <p>An object that uniquely identifies an entity property.</p>
|
|
4
5
|
* @public
|
|
@@ -83,24 +84,6 @@ export interface MetadataTransferJobProgress {
|
|
|
83
84
|
*/
|
|
84
85
|
failedCount?: number | undefined;
|
|
85
86
|
}
|
|
86
|
-
/**
|
|
87
|
-
* @public
|
|
88
|
-
* @enum
|
|
89
|
-
*/
|
|
90
|
-
export declare const ErrorCode: {
|
|
91
|
-
readonly COMPOSITE_COMPONENT_FAILURE: "COMPOSITE_COMPONENT_FAILURE";
|
|
92
|
-
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
93
|
-
readonly PROCESSING_ERROR: "PROCESSING_ERROR";
|
|
94
|
-
readonly SYNC_CREATING_ERROR: "SYNC_CREATING_ERROR";
|
|
95
|
-
readonly SYNC_DELETING_ERROR: "SYNC_DELETING_ERROR";
|
|
96
|
-
readonly SYNC_INITIALIZING_ERROR: "SYNC_INITIALIZING_ERROR";
|
|
97
|
-
readonly SYNC_PROCESSING_ERROR: "SYNC_PROCESSING_ERROR";
|
|
98
|
-
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
99
|
-
};
|
|
100
|
-
/**
|
|
101
|
-
* @public
|
|
102
|
-
*/
|
|
103
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
104
87
|
/**
|
|
105
88
|
* <p>The error details.</p>
|
|
106
89
|
* @public
|
|
@@ -117,23 +100,6 @@ export interface ErrorDetails {
|
|
|
117
100
|
*/
|
|
118
101
|
message?: string | undefined;
|
|
119
102
|
}
|
|
120
|
-
/**
|
|
121
|
-
* @public
|
|
122
|
-
* @enum
|
|
123
|
-
*/
|
|
124
|
-
export declare const MetadataTransferJobState: {
|
|
125
|
-
readonly CANCELLED: "CANCELLED";
|
|
126
|
-
readonly CANCELLING: "CANCELLING";
|
|
127
|
-
readonly COMPLETED: "COMPLETED";
|
|
128
|
-
readonly ERROR: "ERROR";
|
|
129
|
-
readonly PENDING: "PENDING";
|
|
130
|
-
readonly RUNNING: "RUNNING";
|
|
131
|
-
readonly VALIDATING: "VALIDATING";
|
|
132
|
-
};
|
|
133
|
-
/**
|
|
134
|
-
* @public
|
|
135
|
-
*/
|
|
136
|
-
export type MetadataTransferJobState = (typeof MetadataTransferJobState)[keyof typeof MetadataTransferJobState];
|
|
137
103
|
/**
|
|
138
104
|
* <p>The metadata transfer job status.</p>
|
|
139
105
|
* @public
|
|
@@ -224,18 +190,6 @@ export interface DataConnector {
|
|
|
224
190
|
*/
|
|
225
191
|
isNative?: boolean | undefined;
|
|
226
192
|
}
|
|
227
|
-
/**
|
|
228
|
-
* @public
|
|
229
|
-
* @enum
|
|
230
|
-
*/
|
|
231
|
-
export declare const Scope: {
|
|
232
|
-
readonly ENTITY: "ENTITY";
|
|
233
|
-
readonly WORKSPACE: "WORKSPACE";
|
|
234
|
-
};
|
|
235
|
-
/**
|
|
236
|
-
* @public
|
|
237
|
-
*/
|
|
238
|
-
export type Scope = (typeof Scope)[keyof typeof Scope];
|
|
239
193
|
/**
|
|
240
194
|
* <p>The function request body.</p>
|
|
241
195
|
* @public
|
|
@@ -273,35 +227,6 @@ export interface Relationship {
|
|
|
273
227
|
*/
|
|
274
228
|
relationshipType?: string | undefined;
|
|
275
229
|
}
|
|
276
|
-
/**
|
|
277
|
-
* @public
|
|
278
|
-
* @enum
|
|
279
|
-
*/
|
|
280
|
-
export declare const Type: {
|
|
281
|
-
readonly BOOLEAN: "BOOLEAN";
|
|
282
|
-
readonly DOUBLE: "DOUBLE";
|
|
283
|
-
readonly INTEGER: "INTEGER";
|
|
284
|
-
readonly LIST: "LIST";
|
|
285
|
-
readonly LONG: "LONG";
|
|
286
|
-
readonly MAP: "MAP";
|
|
287
|
-
readonly RELATIONSHIP: "RELATIONSHIP";
|
|
288
|
-
readonly STRING: "STRING";
|
|
289
|
-
};
|
|
290
|
-
/**
|
|
291
|
-
* @public
|
|
292
|
-
*/
|
|
293
|
-
export type Type = (typeof Type)[keyof typeof Type];
|
|
294
|
-
/**
|
|
295
|
-
* @public
|
|
296
|
-
* @enum
|
|
297
|
-
*/
|
|
298
|
-
export declare const GroupType: {
|
|
299
|
-
readonly TABULAR: "TABULAR";
|
|
300
|
-
};
|
|
301
|
-
/**
|
|
302
|
-
* @public
|
|
303
|
-
*/
|
|
304
|
-
export type GroupType = (typeof GroupType)[keyof typeof GroupType];
|
|
305
230
|
/**
|
|
306
231
|
* <p/>
|
|
307
232
|
* @public
|
|
@@ -318,21 +243,6 @@ export interface PropertyGroupRequest {
|
|
|
318
243
|
*/
|
|
319
244
|
propertyNames?: string[] | undefined;
|
|
320
245
|
}
|
|
321
|
-
/**
|
|
322
|
-
* @public
|
|
323
|
-
* @enum
|
|
324
|
-
*/
|
|
325
|
-
export declare const State: {
|
|
326
|
-
readonly ACTIVE: "ACTIVE";
|
|
327
|
-
readonly CREATING: "CREATING";
|
|
328
|
-
readonly DELETING: "DELETING";
|
|
329
|
-
readonly ERROR: "ERROR";
|
|
330
|
-
readonly UPDATING: "UPDATING";
|
|
331
|
-
};
|
|
332
|
-
/**
|
|
333
|
-
* @public
|
|
334
|
-
*/
|
|
335
|
-
export type State = (typeof State)[keyof typeof State];
|
|
336
246
|
/**
|
|
337
247
|
* @public
|
|
338
248
|
*/
|
|
@@ -353,33 +263,6 @@ export interface CreateComponentTypeResponse {
|
|
|
353
263
|
*/
|
|
354
264
|
state: State | undefined;
|
|
355
265
|
}
|
|
356
|
-
/**
|
|
357
|
-
* @public
|
|
358
|
-
* @enum
|
|
359
|
-
*/
|
|
360
|
-
export declare const PropertyUpdateType: {
|
|
361
|
-
readonly CREATE: "CREATE";
|
|
362
|
-
readonly DELETE: "DELETE";
|
|
363
|
-
readonly RESET_VALUE: "RESET_VALUE";
|
|
364
|
-
readonly UPDATE: "UPDATE";
|
|
365
|
-
};
|
|
366
|
-
/**
|
|
367
|
-
* @public
|
|
368
|
-
*/
|
|
369
|
-
export type PropertyUpdateType = (typeof PropertyUpdateType)[keyof typeof PropertyUpdateType];
|
|
370
|
-
/**
|
|
371
|
-
* @public
|
|
372
|
-
* @enum
|
|
373
|
-
*/
|
|
374
|
-
export declare const PropertyGroupUpdateType: {
|
|
375
|
-
readonly CREATE: "CREATE";
|
|
376
|
-
readonly DELETE: "DELETE";
|
|
377
|
-
readonly UPDATE: "UPDATE";
|
|
378
|
-
};
|
|
379
|
-
/**
|
|
380
|
-
* @public
|
|
381
|
-
*/
|
|
382
|
-
export type PropertyGroupUpdateType = (typeof PropertyGroupUpdateType)[keyof typeof PropertyGroupUpdateType];
|
|
383
266
|
/**
|
|
384
267
|
* <p>The component property group request.</p>
|
|
385
268
|
* @public
|
|
@@ -448,19 +331,6 @@ export interface S3DestinationConfiguration {
|
|
|
448
331
|
*/
|
|
449
332
|
location: string | undefined;
|
|
450
333
|
}
|
|
451
|
-
/**
|
|
452
|
-
* @public
|
|
453
|
-
* @enum
|
|
454
|
-
*/
|
|
455
|
-
export declare const DestinationType: {
|
|
456
|
-
readonly IOTSITEWISE: "iotsitewise";
|
|
457
|
-
readonly IOTTWINMAKER: "iottwinmaker";
|
|
458
|
-
readonly S3: "s3";
|
|
459
|
-
};
|
|
460
|
-
/**
|
|
461
|
-
* @public
|
|
462
|
-
*/
|
|
463
|
-
export type DestinationType = (typeof DestinationType)[keyof typeof DestinationType];
|
|
464
334
|
/**
|
|
465
335
|
* <p>The [link to action] metadata transfer job destination configuration.</p>
|
|
466
336
|
* @public
|
|
@@ -684,19 +554,6 @@ export interface S3SourceConfiguration {
|
|
|
684
554
|
*/
|
|
685
555
|
location: string | undefined;
|
|
686
556
|
}
|
|
687
|
-
/**
|
|
688
|
-
* @public
|
|
689
|
-
* @enum
|
|
690
|
-
*/
|
|
691
|
-
export declare const SourceType: {
|
|
692
|
-
readonly IOTSITEWISE: "iotsitewise";
|
|
693
|
-
readonly IOTTWINMAKER: "iottwinmaker";
|
|
694
|
-
readonly S3: "s3";
|
|
695
|
-
};
|
|
696
|
-
/**
|
|
697
|
-
* @public
|
|
698
|
-
*/
|
|
699
|
-
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
700
557
|
/**
|
|
701
558
|
* <p>The source configuration.</p>
|
|
702
559
|
* @public
|
|
@@ -857,21 +714,6 @@ export interface CreateSyncJobRequest {
|
|
|
857
714
|
*/
|
|
858
715
|
tags?: Record<string, string> | undefined;
|
|
859
716
|
}
|
|
860
|
-
/**
|
|
861
|
-
* @public
|
|
862
|
-
* @enum
|
|
863
|
-
*/
|
|
864
|
-
export declare const SyncJobState: {
|
|
865
|
-
readonly ACTIVE: "ACTIVE";
|
|
866
|
-
readonly CREATING: "CREATING";
|
|
867
|
-
readonly DELETING: "DELETING";
|
|
868
|
-
readonly ERROR: "ERROR";
|
|
869
|
-
readonly INITIALIZING: "INITIALIZING";
|
|
870
|
-
};
|
|
871
|
-
/**
|
|
872
|
-
* @public
|
|
873
|
-
*/
|
|
874
|
-
export type SyncJobState = (typeof SyncJobState)[keyof typeof SyncJobState];
|
|
875
717
|
/**
|
|
876
718
|
* @public
|
|
877
719
|
*/
|
|
@@ -1086,19 +928,6 @@ export interface ExecuteQueryRequest {
|
|
|
1086
928
|
*/
|
|
1087
929
|
nextToken?: string | undefined;
|
|
1088
930
|
}
|
|
1089
|
-
/**
|
|
1090
|
-
* @public
|
|
1091
|
-
* @enum
|
|
1092
|
-
*/
|
|
1093
|
-
export declare const ColumnType: {
|
|
1094
|
-
readonly EDGE: "EDGE";
|
|
1095
|
-
readonly NODE: "NODE";
|
|
1096
|
-
readonly VALUE: "VALUE";
|
|
1097
|
-
};
|
|
1098
|
-
/**
|
|
1099
|
-
* @public
|
|
1100
|
-
*/
|
|
1101
|
-
export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
|
|
1102
931
|
/**
|
|
1103
932
|
* <p>A description of the column in the query results.</p>
|
|
1104
933
|
* @public
|
|
@@ -1400,20 +1229,6 @@ export interface GetMetadataTransferJobResponse {
|
|
|
1400
1229
|
*/
|
|
1401
1230
|
export interface GetPricingPlanRequest {
|
|
1402
1231
|
}
|
|
1403
|
-
/**
|
|
1404
|
-
* @public
|
|
1405
|
-
* @enum
|
|
1406
|
-
*/
|
|
1407
|
-
export declare const PricingTier: {
|
|
1408
|
-
readonly TIER_1: "TIER_1";
|
|
1409
|
-
readonly TIER_2: "TIER_2";
|
|
1410
|
-
readonly TIER_3: "TIER_3";
|
|
1411
|
-
readonly TIER_4: "TIER_4";
|
|
1412
|
-
};
|
|
1413
|
-
/**
|
|
1414
|
-
* @public
|
|
1415
|
-
*/
|
|
1416
|
-
export type PricingTier = (typeof PricingTier)[keyof typeof PricingTier];
|
|
1417
1232
|
/**
|
|
1418
1233
|
* <p>Information about the pricing bundle.</p>
|
|
1419
1234
|
* @public
|
|
@@ -1430,34 +1245,6 @@ export interface BundleInformation {
|
|
|
1430
1245
|
*/
|
|
1431
1246
|
pricingTier?: PricingTier | undefined;
|
|
1432
1247
|
}
|
|
1433
|
-
/**
|
|
1434
|
-
* @public
|
|
1435
|
-
* @enum
|
|
1436
|
-
*/
|
|
1437
|
-
export declare const PricingMode: {
|
|
1438
|
-
readonly BASIC: "BASIC";
|
|
1439
|
-
readonly STANDARD: "STANDARD";
|
|
1440
|
-
readonly TIERED_BUNDLE: "TIERED_BUNDLE";
|
|
1441
|
-
};
|
|
1442
|
-
/**
|
|
1443
|
-
* @public
|
|
1444
|
-
*/
|
|
1445
|
-
export type PricingMode = (typeof PricingMode)[keyof typeof PricingMode];
|
|
1446
|
-
/**
|
|
1447
|
-
* @public
|
|
1448
|
-
* @enum
|
|
1449
|
-
*/
|
|
1450
|
-
export declare const UpdateReason: {
|
|
1451
|
-
readonly DEFAULT: "DEFAULT";
|
|
1452
|
-
readonly ENTITY_COUNT_UPDATE: "ENTITY_COUNT_UPDATE";
|
|
1453
|
-
readonly OVERWRITTEN: "OVERWRITTEN";
|
|
1454
|
-
readonly PRICING_MODE_UPDATE: "PRICING_MODE_UPDATE";
|
|
1455
|
-
readonly PRICING_TIER_UPDATE: "PRICING_TIER_UPDATE";
|
|
1456
|
-
};
|
|
1457
|
-
/**
|
|
1458
|
-
* @public
|
|
1459
|
-
*/
|
|
1460
|
-
export type UpdateReason = (typeof UpdateReason)[keyof typeof UpdateReason];
|
|
1461
1248
|
/**
|
|
1462
1249
|
* <p>The pricing plan.</p>
|
|
1463
1250
|
* @public
|
|
@@ -1509,18 +1296,6 @@ export interface GetPricingPlanResponse {
|
|
|
1509
1296
|
*/
|
|
1510
1297
|
pendingPricingPlan?: PricingPlan | undefined;
|
|
1511
1298
|
}
|
|
1512
|
-
/**
|
|
1513
|
-
* @public
|
|
1514
|
-
* @enum
|
|
1515
|
-
*/
|
|
1516
|
-
export declare const Order: {
|
|
1517
|
-
readonly ASCENDING: "ASCENDING";
|
|
1518
|
-
readonly DESCENDING: "DESCENDING";
|
|
1519
|
-
};
|
|
1520
|
-
/**
|
|
1521
|
-
* @public
|
|
1522
|
-
*/
|
|
1523
|
-
export type Order = (typeof Order)[keyof typeof Order];
|
|
1524
1299
|
/**
|
|
1525
1300
|
* <p>Filter criteria that orders the return output. It can be sorted in ascending or
|
|
1526
1301
|
* descending order.</p>
|
|
@@ -1538,17 +1313,6 @@ export interface OrderBy {
|
|
|
1538
1313
|
*/
|
|
1539
1314
|
propertyName: string | undefined;
|
|
1540
1315
|
}
|
|
1541
|
-
/**
|
|
1542
|
-
* @public
|
|
1543
|
-
* @enum
|
|
1544
|
-
*/
|
|
1545
|
-
export declare const InterpolationType: {
|
|
1546
|
-
readonly LINEAR: "LINEAR";
|
|
1547
|
-
};
|
|
1548
|
-
/**
|
|
1549
|
-
* @public
|
|
1550
|
-
*/
|
|
1551
|
-
export type InterpolationType = (typeof InterpolationType)[keyof typeof InterpolationType];
|
|
1552
1316
|
/**
|
|
1553
1317
|
* <p>An object that specifies how to interpolate data in a list.</p>
|
|
1554
1318
|
* @public
|
|
@@ -1565,18 +1329,6 @@ export interface InterpolationParameters {
|
|
|
1565
1329
|
*/
|
|
1566
1330
|
intervalInSeconds?: number | undefined;
|
|
1567
1331
|
}
|
|
1568
|
-
/**
|
|
1569
|
-
* @public
|
|
1570
|
-
* @enum
|
|
1571
|
-
*/
|
|
1572
|
-
export declare const OrderByTime: {
|
|
1573
|
-
readonly ASCENDING: "ASCENDING";
|
|
1574
|
-
readonly DESCENDING: "DESCENDING";
|
|
1575
|
-
};
|
|
1576
|
-
/**
|
|
1577
|
-
* @public
|
|
1578
|
-
*/
|
|
1579
|
-
export type OrderByTime = (typeof OrderByTime)[keyof typeof OrderByTime];
|
|
1580
1332
|
/**
|
|
1581
1333
|
* @public
|
|
1582
1334
|
*/
|
|
@@ -1592,17 +1344,6 @@ export interface GetSceneRequest {
|
|
|
1592
1344
|
*/
|
|
1593
1345
|
sceneId: string | undefined;
|
|
1594
1346
|
}
|
|
1595
|
-
/**
|
|
1596
|
-
* @public
|
|
1597
|
-
* @enum
|
|
1598
|
-
*/
|
|
1599
|
-
export declare const SceneErrorCode: {
|
|
1600
|
-
readonly MATTERPORT_ERROR: "MATTERPORT_ERROR";
|
|
1601
|
-
};
|
|
1602
|
-
/**
|
|
1603
|
-
* @public
|
|
1604
|
-
*/
|
|
1605
|
-
export type SceneErrorCode = (typeof SceneErrorCode)[keyof typeof SceneErrorCode];
|
|
1606
1347
|
/**
|
|
1607
1348
|
* <p>The scene error.</p>
|
|
1608
1349
|
* @public
|
|
@@ -2471,33 +2212,6 @@ export interface ListSyncJobsResponse {
|
|
|
2471
2212
|
*/
|
|
2472
2213
|
nextToken?: string | undefined;
|
|
2473
2214
|
}
|
|
2474
|
-
/**
|
|
2475
|
-
* @public
|
|
2476
|
-
* @enum
|
|
2477
|
-
*/
|
|
2478
|
-
export declare const SyncResourceType: {
|
|
2479
|
-
readonly COMPONENT_TYPE: "COMPONENT_TYPE";
|
|
2480
|
-
readonly ENTITY: "ENTITY";
|
|
2481
|
-
};
|
|
2482
|
-
/**
|
|
2483
|
-
* @public
|
|
2484
|
-
*/
|
|
2485
|
-
export type SyncResourceType = (typeof SyncResourceType)[keyof typeof SyncResourceType];
|
|
2486
|
-
/**
|
|
2487
|
-
* @public
|
|
2488
|
-
* @enum
|
|
2489
|
-
*/
|
|
2490
|
-
export declare const SyncResourceState: {
|
|
2491
|
-
readonly DELETED: "DELETED";
|
|
2492
|
-
readonly ERROR: "ERROR";
|
|
2493
|
-
readonly INITIALIZING: "INITIALIZING";
|
|
2494
|
-
readonly IN_SYNC: "IN_SYNC";
|
|
2495
|
-
readonly PROCESSING: "PROCESSING";
|
|
2496
|
-
};
|
|
2497
|
-
/**
|
|
2498
|
-
* @public
|
|
2499
|
-
*/
|
|
2500
|
-
export type SyncResourceState = (typeof SyncResourceState)[keyof typeof SyncResourceState];
|
|
2501
2215
|
/**
|
|
2502
2216
|
* <p>The sync resource filter.</p>
|
|
2503
2217
|
* @public
|
|
@@ -2850,31 +2564,6 @@ export interface UpdateComponentTypeResponse {
|
|
|
2850
2564
|
*/
|
|
2851
2565
|
state: State | undefined;
|
|
2852
2566
|
}
|
|
2853
|
-
/**
|
|
2854
|
-
* @public
|
|
2855
|
-
* @enum
|
|
2856
|
-
*/
|
|
2857
|
-
export declare const ComponentUpdateType: {
|
|
2858
|
-
readonly CREATE: "CREATE";
|
|
2859
|
-
readonly DELETE: "DELETE";
|
|
2860
|
-
readonly UPDATE: "UPDATE";
|
|
2861
|
-
};
|
|
2862
|
-
/**
|
|
2863
|
-
* @public
|
|
2864
|
-
*/
|
|
2865
|
-
export type ComponentUpdateType = (typeof ComponentUpdateType)[keyof typeof ComponentUpdateType];
|
|
2866
|
-
/**
|
|
2867
|
-
* @public
|
|
2868
|
-
* @enum
|
|
2869
|
-
*/
|
|
2870
|
-
export declare const ParentEntityUpdateType: {
|
|
2871
|
-
readonly DELETE: "DELETE";
|
|
2872
|
-
readonly UPDATE: "UPDATE";
|
|
2873
|
-
};
|
|
2874
|
-
/**
|
|
2875
|
-
* @public
|
|
2876
|
-
*/
|
|
2877
|
-
export type ParentEntityUpdateType = (typeof ParentEntityUpdateType)[keyof typeof ParentEntityUpdateType];
|
|
2878
2567
|
/**
|
|
2879
2568
|
* <p>The parent entity update request.</p>
|
|
2880
2569
|
* @public
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { IoTTwinMakerExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
10
11
|
export { IoTTwinMakerServiceException } from "./models/IoTTwinMakerServiceException";
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
export declare const ErrorCode: {
|
|
2
|
+
readonly COMPOSITE_COMPONENT_FAILURE: "COMPOSITE_COMPONENT_FAILURE";
|
|
3
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
4
|
+
readonly PROCESSING_ERROR: "PROCESSING_ERROR";
|
|
5
|
+
readonly SYNC_CREATING_ERROR: "SYNC_CREATING_ERROR";
|
|
6
|
+
readonly SYNC_DELETING_ERROR: "SYNC_DELETING_ERROR";
|
|
7
|
+
readonly SYNC_INITIALIZING_ERROR: "SYNC_INITIALIZING_ERROR";
|
|
8
|
+
readonly SYNC_PROCESSING_ERROR: "SYNC_PROCESSING_ERROR";
|
|
9
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
10
|
+
};
|
|
11
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
12
|
+
export declare const MetadataTransferJobState: {
|
|
13
|
+
readonly CANCELLED: "CANCELLED";
|
|
14
|
+
readonly CANCELLING: "CANCELLING";
|
|
15
|
+
readonly COMPLETED: "COMPLETED";
|
|
16
|
+
readonly ERROR: "ERROR";
|
|
17
|
+
readonly PENDING: "PENDING";
|
|
18
|
+
readonly RUNNING: "RUNNING";
|
|
19
|
+
readonly VALIDATING: "VALIDATING";
|
|
20
|
+
};
|
|
21
|
+
export type MetadataTransferJobState =
|
|
22
|
+
(typeof MetadataTransferJobState)[keyof typeof MetadataTransferJobState];
|
|
23
|
+
export declare const Scope: {
|
|
24
|
+
readonly ENTITY: "ENTITY";
|
|
25
|
+
readonly WORKSPACE: "WORKSPACE";
|
|
26
|
+
};
|
|
27
|
+
export type Scope = (typeof Scope)[keyof typeof Scope];
|
|
28
|
+
export declare const Type: {
|
|
29
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
30
|
+
readonly DOUBLE: "DOUBLE";
|
|
31
|
+
readonly INTEGER: "INTEGER";
|
|
32
|
+
readonly LIST: "LIST";
|
|
33
|
+
readonly LONG: "LONG";
|
|
34
|
+
readonly MAP: "MAP";
|
|
35
|
+
readonly RELATIONSHIP: "RELATIONSHIP";
|
|
36
|
+
readonly STRING: "STRING";
|
|
37
|
+
};
|
|
38
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
39
|
+
export declare const GroupType: {
|
|
40
|
+
readonly TABULAR: "TABULAR";
|
|
41
|
+
};
|
|
42
|
+
export type GroupType = (typeof GroupType)[keyof typeof GroupType];
|
|
43
|
+
export declare const State: {
|
|
44
|
+
readonly ACTIVE: "ACTIVE";
|
|
45
|
+
readonly CREATING: "CREATING";
|
|
46
|
+
readonly DELETING: "DELETING";
|
|
47
|
+
readonly ERROR: "ERROR";
|
|
48
|
+
readonly UPDATING: "UPDATING";
|
|
49
|
+
};
|
|
50
|
+
export type State = (typeof State)[keyof typeof State];
|
|
51
|
+
export declare const PropertyUpdateType: {
|
|
52
|
+
readonly CREATE: "CREATE";
|
|
53
|
+
readonly DELETE: "DELETE";
|
|
54
|
+
readonly RESET_VALUE: "RESET_VALUE";
|
|
55
|
+
readonly UPDATE: "UPDATE";
|
|
56
|
+
};
|
|
57
|
+
export type PropertyUpdateType =
|
|
58
|
+
(typeof PropertyUpdateType)[keyof typeof PropertyUpdateType];
|
|
59
|
+
export declare const PropertyGroupUpdateType: {
|
|
60
|
+
readonly CREATE: "CREATE";
|
|
61
|
+
readonly DELETE: "DELETE";
|
|
62
|
+
readonly UPDATE: "UPDATE";
|
|
63
|
+
};
|
|
64
|
+
export type PropertyGroupUpdateType =
|
|
65
|
+
(typeof PropertyGroupUpdateType)[keyof typeof PropertyGroupUpdateType];
|
|
66
|
+
export declare const DestinationType: {
|
|
67
|
+
readonly IOTSITEWISE: "iotsitewise";
|
|
68
|
+
readonly IOTTWINMAKER: "iottwinmaker";
|
|
69
|
+
readonly S3: "s3";
|
|
70
|
+
};
|
|
71
|
+
export type DestinationType =
|
|
72
|
+
(typeof DestinationType)[keyof typeof DestinationType];
|
|
73
|
+
export declare const SourceType: {
|
|
74
|
+
readonly IOTSITEWISE: "iotsitewise";
|
|
75
|
+
readonly IOTTWINMAKER: "iottwinmaker";
|
|
76
|
+
readonly S3: "s3";
|
|
77
|
+
};
|
|
78
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
79
|
+
export declare const SyncJobState: {
|
|
80
|
+
readonly ACTIVE: "ACTIVE";
|
|
81
|
+
readonly CREATING: "CREATING";
|
|
82
|
+
readonly DELETING: "DELETING";
|
|
83
|
+
readonly ERROR: "ERROR";
|
|
84
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
85
|
+
};
|
|
86
|
+
export type SyncJobState = (typeof SyncJobState)[keyof typeof SyncJobState];
|
|
87
|
+
export declare const ColumnType: {
|
|
88
|
+
readonly EDGE: "EDGE";
|
|
89
|
+
readonly NODE: "NODE";
|
|
90
|
+
readonly VALUE: "VALUE";
|
|
91
|
+
};
|
|
92
|
+
export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
|
|
93
|
+
export declare const PricingTier: {
|
|
94
|
+
readonly TIER_1: "TIER_1";
|
|
95
|
+
readonly TIER_2: "TIER_2";
|
|
96
|
+
readonly TIER_3: "TIER_3";
|
|
97
|
+
readonly TIER_4: "TIER_4";
|
|
98
|
+
};
|
|
99
|
+
export type PricingTier = (typeof PricingTier)[keyof typeof PricingTier];
|
|
100
|
+
export declare const PricingMode: {
|
|
101
|
+
readonly BASIC: "BASIC";
|
|
102
|
+
readonly STANDARD: "STANDARD";
|
|
103
|
+
readonly TIERED_BUNDLE: "TIERED_BUNDLE";
|
|
104
|
+
};
|
|
105
|
+
export type PricingMode = (typeof PricingMode)[keyof typeof PricingMode];
|
|
106
|
+
export declare const UpdateReason: {
|
|
107
|
+
readonly DEFAULT: "DEFAULT";
|
|
108
|
+
readonly ENTITY_COUNT_UPDATE: "ENTITY_COUNT_UPDATE";
|
|
109
|
+
readonly OVERWRITTEN: "OVERWRITTEN";
|
|
110
|
+
readonly PRICING_MODE_UPDATE: "PRICING_MODE_UPDATE";
|
|
111
|
+
readonly PRICING_TIER_UPDATE: "PRICING_TIER_UPDATE";
|
|
112
|
+
};
|
|
113
|
+
export type UpdateReason = (typeof UpdateReason)[keyof typeof UpdateReason];
|
|
114
|
+
export declare const Order: {
|
|
115
|
+
readonly ASCENDING: "ASCENDING";
|
|
116
|
+
readonly DESCENDING: "DESCENDING";
|
|
117
|
+
};
|
|
118
|
+
export type Order = (typeof Order)[keyof typeof Order];
|
|
119
|
+
export declare const InterpolationType: {
|
|
120
|
+
readonly LINEAR: "LINEAR";
|
|
121
|
+
};
|
|
122
|
+
export type InterpolationType =
|
|
123
|
+
(typeof InterpolationType)[keyof typeof InterpolationType];
|
|
124
|
+
export declare const OrderByTime: {
|
|
125
|
+
readonly ASCENDING: "ASCENDING";
|
|
126
|
+
readonly DESCENDING: "DESCENDING";
|
|
127
|
+
};
|
|
128
|
+
export type OrderByTime = (typeof OrderByTime)[keyof typeof OrderByTime];
|
|
129
|
+
export declare const SceneErrorCode: {
|
|
130
|
+
readonly MATTERPORT_ERROR: "MATTERPORT_ERROR";
|
|
131
|
+
};
|
|
132
|
+
export type SceneErrorCode =
|
|
133
|
+
(typeof SceneErrorCode)[keyof typeof SceneErrorCode];
|
|
134
|
+
export declare const SyncResourceType: {
|
|
135
|
+
readonly COMPONENT_TYPE: "COMPONENT_TYPE";
|
|
136
|
+
readonly ENTITY: "ENTITY";
|
|
137
|
+
};
|
|
138
|
+
export type SyncResourceType =
|
|
139
|
+
(typeof SyncResourceType)[keyof typeof SyncResourceType];
|
|
140
|
+
export declare const SyncResourceState: {
|
|
141
|
+
readonly DELETED: "DELETED";
|
|
142
|
+
readonly ERROR: "ERROR";
|
|
143
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
144
|
+
readonly IN_SYNC: "IN_SYNC";
|
|
145
|
+
readonly PROCESSING: "PROCESSING";
|
|
146
|
+
};
|
|
147
|
+
export type SyncResourceState =
|
|
148
|
+
(typeof SyncResourceState)[keyof typeof SyncResourceState];
|
|
149
|
+
export declare const ComponentUpdateType: {
|
|
150
|
+
readonly CREATE: "CREATE";
|
|
151
|
+
readonly DELETE: "DELETE";
|
|
152
|
+
readonly UPDATE: "UPDATE";
|
|
153
|
+
};
|
|
154
|
+
export type ComponentUpdateType =
|
|
155
|
+
(typeof ComponentUpdateType)[keyof typeof ComponentUpdateType];
|
|
156
|
+
export declare const ParentEntityUpdateType: {
|
|
157
|
+
readonly DELETE: "DELETE";
|
|
158
|
+
readonly UPDATE: "UPDATE";
|
|
159
|
+
};
|
|
160
|
+
export type ParentEntityUpdateType =
|
|
161
|
+
(typeof ParentEntityUpdateType)[keyof typeof ParentEntityUpdateType];
|