@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
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ErrorCode: {
|
|
6
|
+
readonly COMPOSITE_COMPONENT_FAILURE: "COMPOSITE_COMPONENT_FAILURE";
|
|
7
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
8
|
+
readonly PROCESSING_ERROR: "PROCESSING_ERROR";
|
|
9
|
+
readonly SYNC_CREATING_ERROR: "SYNC_CREATING_ERROR";
|
|
10
|
+
readonly SYNC_DELETING_ERROR: "SYNC_DELETING_ERROR";
|
|
11
|
+
readonly SYNC_INITIALIZING_ERROR: "SYNC_INITIALIZING_ERROR";
|
|
12
|
+
readonly SYNC_PROCESSING_ERROR: "SYNC_PROCESSING_ERROR";
|
|
13
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
* @enum
|
|
22
|
+
*/
|
|
23
|
+
export declare const MetadataTransferJobState: {
|
|
24
|
+
readonly CANCELLED: "CANCELLED";
|
|
25
|
+
readonly CANCELLING: "CANCELLING";
|
|
26
|
+
readonly COMPLETED: "COMPLETED";
|
|
27
|
+
readonly ERROR: "ERROR";
|
|
28
|
+
readonly PENDING: "PENDING";
|
|
29
|
+
readonly RUNNING: "RUNNING";
|
|
30
|
+
readonly VALIDATING: "VALIDATING";
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export type MetadataTransferJobState = (typeof MetadataTransferJobState)[keyof typeof MetadataTransferJobState];
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* @enum
|
|
39
|
+
*/
|
|
40
|
+
export declare const Scope: {
|
|
41
|
+
readonly ENTITY: "ENTITY";
|
|
42
|
+
readonly WORKSPACE: "WORKSPACE";
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export type Scope = (typeof Scope)[keyof typeof Scope];
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
* @enum
|
|
51
|
+
*/
|
|
52
|
+
export declare const Type: {
|
|
53
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
54
|
+
readonly DOUBLE: "DOUBLE";
|
|
55
|
+
readonly INTEGER: "INTEGER";
|
|
56
|
+
readonly LIST: "LIST";
|
|
57
|
+
readonly LONG: "LONG";
|
|
58
|
+
readonly MAP: "MAP";
|
|
59
|
+
readonly RELATIONSHIP: "RELATIONSHIP";
|
|
60
|
+
readonly STRING: "STRING";
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* @enum
|
|
69
|
+
*/
|
|
70
|
+
export declare const GroupType: {
|
|
71
|
+
readonly TABULAR: "TABULAR";
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export type GroupType = (typeof GroupType)[keyof typeof GroupType];
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
* @enum
|
|
80
|
+
*/
|
|
81
|
+
export declare const State: {
|
|
82
|
+
readonly ACTIVE: "ACTIVE";
|
|
83
|
+
readonly CREATING: "CREATING";
|
|
84
|
+
readonly DELETING: "DELETING";
|
|
85
|
+
readonly ERROR: "ERROR";
|
|
86
|
+
readonly UPDATING: "UPDATING";
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export type State = (typeof State)[keyof typeof State];
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
* @enum
|
|
95
|
+
*/
|
|
96
|
+
export declare const PropertyUpdateType: {
|
|
97
|
+
readonly CREATE: "CREATE";
|
|
98
|
+
readonly DELETE: "DELETE";
|
|
99
|
+
readonly RESET_VALUE: "RESET_VALUE";
|
|
100
|
+
readonly UPDATE: "UPDATE";
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export type PropertyUpdateType = (typeof PropertyUpdateType)[keyof typeof PropertyUpdateType];
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
* @enum
|
|
109
|
+
*/
|
|
110
|
+
export declare const PropertyGroupUpdateType: {
|
|
111
|
+
readonly CREATE: "CREATE";
|
|
112
|
+
readonly DELETE: "DELETE";
|
|
113
|
+
readonly UPDATE: "UPDATE";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export type PropertyGroupUpdateType = (typeof PropertyGroupUpdateType)[keyof typeof PropertyGroupUpdateType];
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
* @enum
|
|
122
|
+
*/
|
|
123
|
+
export declare const DestinationType: {
|
|
124
|
+
readonly IOTSITEWISE: "iotsitewise";
|
|
125
|
+
readonly IOTTWINMAKER: "iottwinmaker";
|
|
126
|
+
readonly S3: "s3";
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export type DestinationType = (typeof DestinationType)[keyof typeof DestinationType];
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
* @enum
|
|
135
|
+
*/
|
|
136
|
+
export declare const SourceType: {
|
|
137
|
+
readonly IOTSITEWISE: "iotsitewise";
|
|
138
|
+
readonly IOTTWINMAKER: "iottwinmaker";
|
|
139
|
+
readonly S3: "s3";
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
* @enum
|
|
148
|
+
*/
|
|
149
|
+
export declare const SyncJobState: {
|
|
150
|
+
readonly ACTIVE: "ACTIVE";
|
|
151
|
+
readonly CREATING: "CREATING";
|
|
152
|
+
readonly DELETING: "DELETING";
|
|
153
|
+
readonly ERROR: "ERROR";
|
|
154
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
export type SyncJobState = (typeof SyncJobState)[keyof typeof SyncJobState];
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
* @enum
|
|
163
|
+
*/
|
|
164
|
+
export declare const ColumnType: {
|
|
165
|
+
readonly EDGE: "EDGE";
|
|
166
|
+
readonly NODE: "NODE";
|
|
167
|
+
readonly VALUE: "VALUE";
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* @enum
|
|
176
|
+
*/
|
|
177
|
+
export declare const PricingTier: {
|
|
178
|
+
readonly TIER_1: "TIER_1";
|
|
179
|
+
readonly TIER_2: "TIER_2";
|
|
180
|
+
readonly TIER_3: "TIER_3";
|
|
181
|
+
readonly TIER_4: "TIER_4";
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
export type PricingTier = (typeof PricingTier)[keyof typeof PricingTier];
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* @enum
|
|
190
|
+
*/
|
|
191
|
+
export declare const PricingMode: {
|
|
192
|
+
readonly BASIC: "BASIC";
|
|
193
|
+
readonly STANDARD: "STANDARD";
|
|
194
|
+
readonly TIERED_BUNDLE: "TIERED_BUNDLE";
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
export type PricingMode = (typeof PricingMode)[keyof typeof PricingMode];
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
* @enum
|
|
203
|
+
*/
|
|
204
|
+
export declare const UpdateReason: {
|
|
205
|
+
readonly DEFAULT: "DEFAULT";
|
|
206
|
+
readonly ENTITY_COUNT_UPDATE: "ENTITY_COUNT_UPDATE";
|
|
207
|
+
readonly OVERWRITTEN: "OVERWRITTEN";
|
|
208
|
+
readonly PRICING_MODE_UPDATE: "PRICING_MODE_UPDATE";
|
|
209
|
+
readonly PRICING_TIER_UPDATE: "PRICING_TIER_UPDATE";
|
|
210
|
+
};
|
|
211
|
+
/**
|
|
212
|
+
* @public
|
|
213
|
+
*/
|
|
214
|
+
export type UpdateReason = (typeof UpdateReason)[keyof typeof UpdateReason];
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
* @enum
|
|
218
|
+
*/
|
|
219
|
+
export declare const Order: {
|
|
220
|
+
readonly ASCENDING: "ASCENDING";
|
|
221
|
+
readonly DESCENDING: "DESCENDING";
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
export type Order = (typeof Order)[keyof typeof Order];
|
|
227
|
+
/**
|
|
228
|
+
* @public
|
|
229
|
+
* @enum
|
|
230
|
+
*/
|
|
231
|
+
export declare const InterpolationType: {
|
|
232
|
+
readonly LINEAR: "LINEAR";
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export type InterpolationType = (typeof InterpolationType)[keyof typeof InterpolationType];
|
|
238
|
+
/**
|
|
239
|
+
* @public
|
|
240
|
+
* @enum
|
|
241
|
+
*/
|
|
242
|
+
export declare const OrderByTime: {
|
|
243
|
+
readonly ASCENDING: "ASCENDING";
|
|
244
|
+
readonly DESCENDING: "DESCENDING";
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* @public
|
|
248
|
+
*/
|
|
249
|
+
export type OrderByTime = (typeof OrderByTime)[keyof typeof OrderByTime];
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
* @enum
|
|
253
|
+
*/
|
|
254
|
+
export declare const SceneErrorCode: {
|
|
255
|
+
readonly MATTERPORT_ERROR: "MATTERPORT_ERROR";
|
|
256
|
+
};
|
|
257
|
+
/**
|
|
258
|
+
* @public
|
|
259
|
+
*/
|
|
260
|
+
export type SceneErrorCode = (typeof SceneErrorCode)[keyof typeof SceneErrorCode];
|
|
261
|
+
/**
|
|
262
|
+
* @public
|
|
263
|
+
* @enum
|
|
264
|
+
*/
|
|
265
|
+
export declare const SyncResourceType: {
|
|
266
|
+
readonly COMPONENT_TYPE: "COMPONENT_TYPE";
|
|
267
|
+
readonly ENTITY: "ENTITY";
|
|
268
|
+
};
|
|
269
|
+
/**
|
|
270
|
+
* @public
|
|
271
|
+
*/
|
|
272
|
+
export type SyncResourceType = (typeof SyncResourceType)[keyof typeof SyncResourceType];
|
|
273
|
+
/**
|
|
274
|
+
* @public
|
|
275
|
+
* @enum
|
|
276
|
+
*/
|
|
277
|
+
export declare const SyncResourceState: {
|
|
278
|
+
readonly DELETED: "DELETED";
|
|
279
|
+
readonly ERROR: "ERROR";
|
|
280
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
281
|
+
readonly IN_SYNC: "IN_SYNC";
|
|
282
|
+
readonly PROCESSING: "PROCESSING";
|
|
283
|
+
};
|
|
284
|
+
/**
|
|
285
|
+
* @public
|
|
286
|
+
*/
|
|
287
|
+
export type SyncResourceState = (typeof SyncResourceState)[keyof typeof SyncResourceState];
|
|
288
|
+
/**
|
|
289
|
+
* @public
|
|
290
|
+
* @enum
|
|
291
|
+
*/
|
|
292
|
+
export declare const ComponentUpdateType: {
|
|
293
|
+
readonly CREATE: "CREATE";
|
|
294
|
+
readonly DELETE: "DELETE";
|
|
295
|
+
readonly UPDATE: "UPDATE";
|
|
296
|
+
};
|
|
297
|
+
/**
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
300
|
+
export type ComponentUpdateType = (typeof ComponentUpdateType)[keyof typeof ComponentUpdateType];
|
|
301
|
+
/**
|
|
302
|
+
* @public
|
|
303
|
+
* @enum
|
|
304
|
+
*/
|
|
305
|
+
export declare const ParentEntityUpdateType: {
|
|
306
|
+
readonly DELETE: "DELETE";
|
|
307
|
+
readonly UPDATE: "UPDATE";
|
|
308
|
+
};
|
|
309
|
+
/**
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
export type ParentEntityUpdateType = (typeof ParentEntityUpdateType)[keyof typeof ParentEntityUpdateType];
|