@aws-sdk/client-iottwinmaker 3.301.0 → 3.306.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/models/models_0.js +102 -121
- package/dist-es/models/models_0.js +102 -121
- package/dist-types/models/models_0.d.ts +197 -102
- package/dist-types/ts3.4/models/models_0.d.ts +128 -102
- package/package.json +34 -34
|
@@ -137,11 +137,16 @@ export interface DataConnector {
|
|
|
137
137
|
}
|
|
138
138
|
/**
|
|
139
139
|
* @public
|
|
140
|
+
* @enum
|
|
140
141
|
*/
|
|
141
|
-
export declare
|
|
142
|
-
ENTITY
|
|
143
|
-
WORKSPACE
|
|
144
|
-
}
|
|
142
|
+
export declare const Scope: {
|
|
143
|
+
readonly ENTITY: "ENTITY";
|
|
144
|
+
readonly WORKSPACE: "WORKSPACE";
|
|
145
|
+
};
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
export type Scope = (typeof Scope)[keyof typeof Scope];
|
|
145
150
|
/**
|
|
146
151
|
* @public
|
|
147
152
|
* <p>The function request body.</p>
|
|
@@ -176,23 +181,33 @@ export interface Relationship {
|
|
|
176
181
|
}
|
|
177
182
|
/**
|
|
178
183
|
* @public
|
|
184
|
+
* @enum
|
|
179
185
|
*/
|
|
180
|
-
export declare
|
|
181
|
-
BOOLEAN
|
|
182
|
-
DOUBLE
|
|
183
|
-
INTEGER
|
|
184
|
-
LIST
|
|
185
|
-
LONG
|
|
186
|
-
MAP
|
|
187
|
-
RELATIONSHIP
|
|
188
|
-
STRING
|
|
189
|
-
}
|
|
186
|
+
export declare const Type: {
|
|
187
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
188
|
+
readonly DOUBLE: "DOUBLE";
|
|
189
|
+
readonly INTEGER: "INTEGER";
|
|
190
|
+
readonly LIST: "LIST";
|
|
191
|
+
readonly LONG: "LONG";
|
|
192
|
+
readonly MAP: "MAP";
|
|
193
|
+
readonly RELATIONSHIP: "RELATIONSHIP";
|
|
194
|
+
readonly STRING: "STRING";
|
|
195
|
+
};
|
|
190
196
|
/**
|
|
191
197
|
* @public
|
|
192
198
|
*/
|
|
193
|
-
export
|
|
194
|
-
|
|
195
|
-
|
|
199
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
* @enum
|
|
203
|
+
*/
|
|
204
|
+
export declare const GroupType: {
|
|
205
|
+
readonly TABULAR: "TABULAR";
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export type GroupType = (typeof GroupType)[keyof typeof GroupType];
|
|
196
211
|
/**
|
|
197
212
|
* @public
|
|
198
213
|
* <p/>
|
|
@@ -209,14 +224,19 @@ export interface PropertyGroupRequest {
|
|
|
209
224
|
}
|
|
210
225
|
/**
|
|
211
226
|
* @public
|
|
227
|
+
* @enum
|
|
212
228
|
*/
|
|
213
|
-
export declare
|
|
214
|
-
ACTIVE
|
|
215
|
-
CREATING
|
|
216
|
-
DELETING
|
|
217
|
-
ERROR
|
|
218
|
-
UPDATING
|
|
219
|
-
}
|
|
229
|
+
export declare const State: {
|
|
230
|
+
readonly ACTIVE: "ACTIVE";
|
|
231
|
+
readonly CREATING: "CREATING";
|
|
232
|
+
readonly DELETING: "DELETING";
|
|
233
|
+
readonly ERROR: "ERROR";
|
|
234
|
+
readonly UPDATING: "UPDATING";
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
export type State = (typeof State)[keyof typeof State];
|
|
220
240
|
/**
|
|
221
241
|
* @public
|
|
222
242
|
*/
|
|
@@ -248,20 +268,30 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
248
268
|
}
|
|
249
269
|
/**
|
|
250
270
|
* @public
|
|
271
|
+
* @enum
|
|
251
272
|
*/
|
|
252
|
-
export declare
|
|
253
|
-
CREATE
|
|
254
|
-
DELETE
|
|
255
|
-
UPDATE
|
|
256
|
-
}
|
|
273
|
+
export declare const PropertyUpdateType: {
|
|
274
|
+
readonly CREATE: "CREATE";
|
|
275
|
+
readonly DELETE: "DELETE";
|
|
276
|
+
readonly UPDATE: "UPDATE";
|
|
277
|
+
};
|
|
257
278
|
/**
|
|
258
279
|
* @public
|
|
259
280
|
*/
|
|
260
|
-
export
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
281
|
+
export type PropertyUpdateType = (typeof PropertyUpdateType)[keyof typeof PropertyUpdateType];
|
|
282
|
+
/**
|
|
283
|
+
* @public
|
|
284
|
+
* @enum
|
|
285
|
+
*/
|
|
286
|
+
export declare const PropertyGroupUpdateType: {
|
|
287
|
+
readonly CREATE: "CREATE";
|
|
288
|
+
readonly DELETE: "DELETE";
|
|
289
|
+
readonly UPDATE: "UPDATE";
|
|
290
|
+
};
|
|
291
|
+
/**
|
|
292
|
+
* @public
|
|
293
|
+
*/
|
|
294
|
+
export type PropertyGroupUpdateType = (typeof PropertyGroupUpdateType)[keyof typeof PropertyGroupUpdateType];
|
|
265
295
|
/**
|
|
266
296
|
* @public
|
|
267
297
|
* <p>The component property group request.</p>
|
|
@@ -374,14 +404,19 @@ export interface CreateSyncJobRequest {
|
|
|
374
404
|
}
|
|
375
405
|
/**
|
|
376
406
|
* @public
|
|
407
|
+
* @enum
|
|
377
408
|
*/
|
|
378
|
-
export declare
|
|
379
|
-
ACTIVE
|
|
380
|
-
CREATING
|
|
381
|
-
DELETING
|
|
382
|
-
ERROR
|
|
383
|
-
INITIALIZING
|
|
384
|
-
}
|
|
409
|
+
export declare const SyncJobState: {
|
|
410
|
+
readonly ACTIVE: "ACTIVE";
|
|
411
|
+
readonly CREATING: "CREATING";
|
|
412
|
+
readonly DELETING: "DELETING";
|
|
413
|
+
readonly ERROR: "ERROR";
|
|
414
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
415
|
+
};
|
|
416
|
+
/**
|
|
417
|
+
* @public
|
|
418
|
+
*/
|
|
419
|
+
export type SyncJobState = (typeof SyncJobState)[keyof typeof SyncJobState];
|
|
385
420
|
/**
|
|
386
421
|
* @public
|
|
387
422
|
*/
|
|
@@ -567,12 +602,17 @@ export interface ExecuteQueryRequest {
|
|
|
567
602
|
}
|
|
568
603
|
/**
|
|
569
604
|
* @public
|
|
605
|
+
* @enum
|
|
570
606
|
*/
|
|
571
|
-
export declare
|
|
572
|
-
EDGE
|
|
573
|
-
NODE
|
|
574
|
-
VALUE
|
|
575
|
-
}
|
|
607
|
+
export declare const ColumnType: {
|
|
608
|
+
readonly EDGE: "EDGE";
|
|
609
|
+
readonly NODE: "NODE";
|
|
610
|
+
readonly VALUE: "VALUE";
|
|
611
|
+
};
|
|
612
|
+
/**
|
|
613
|
+
* @public
|
|
614
|
+
*/
|
|
615
|
+
export type ColumnType = (typeof ColumnType)[keyof typeof ColumnType];
|
|
576
616
|
/**
|
|
577
617
|
* @public
|
|
578
618
|
* <p>A description of the column in the query results.</p>
|
|
@@ -683,14 +723,19 @@ export interface PropertyGroupResponse {
|
|
|
683
723
|
}
|
|
684
724
|
/**
|
|
685
725
|
* @public
|
|
726
|
+
* @enum
|
|
686
727
|
*/
|
|
687
|
-
export declare
|
|
688
|
-
INTERNAL_FAILURE
|
|
689
|
-
SYNC_CREATING_ERROR
|
|
690
|
-
SYNC_INITIALIZING_ERROR
|
|
691
|
-
SYNC_PROCESSING_ERROR
|
|
692
|
-
VALIDATION_ERROR
|
|
693
|
-
}
|
|
728
|
+
export declare const ErrorCode: {
|
|
729
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
730
|
+
readonly SYNC_CREATING_ERROR: "SYNC_CREATING_ERROR";
|
|
731
|
+
readonly SYNC_INITIALIZING_ERROR: "SYNC_INITIALIZING_ERROR";
|
|
732
|
+
readonly SYNC_PROCESSING_ERROR: "SYNC_PROCESSING_ERROR";
|
|
733
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
734
|
+
};
|
|
735
|
+
/**
|
|
736
|
+
* @public
|
|
737
|
+
*/
|
|
738
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
694
739
|
/**
|
|
695
740
|
* @public
|
|
696
741
|
* <p>The error details.</p>
|
|
@@ -759,13 +804,18 @@ export interface GetPricingPlanRequest {
|
|
|
759
804
|
}
|
|
760
805
|
/**
|
|
761
806
|
* @public
|
|
807
|
+
* @enum
|
|
762
808
|
*/
|
|
763
|
-
export declare
|
|
764
|
-
TIER_1
|
|
765
|
-
TIER_2
|
|
766
|
-
TIER_3
|
|
767
|
-
TIER_4
|
|
768
|
-
}
|
|
809
|
+
export declare const PricingTier: {
|
|
810
|
+
readonly TIER_1: "TIER_1";
|
|
811
|
+
readonly TIER_2: "TIER_2";
|
|
812
|
+
readonly TIER_3: "TIER_3";
|
|
813
|
+
readonly TIER_4: "TIER_4";
|
|
814
|
+
};
|
|
815
|
+
/**
|
|
816
|
+
* @public
|
|
817
|
+
*/
|
|
818
|
+
export type PricingTier = (typeof PricingTier)[keyof typeof PricingTier];
|
|
769
819
|
/**
|
|
770
820
|
* @public
|
|
771
821
|
* <p>Information about the pricing bundle.</p>
|
|
@@ -782,22 +832,32 @@ export interface BundleInformation {
|
|
|
782
832
|
}
|
|
783
833
|
/**
|
|
784
834
|
* @public
|
|
835
|
+
* @enum
|
|
785
836
|
*/
|
|
786
|
-
export declare
|
|
787
|
-
BASIC
|
|
788
|
-
STANDARD
|
|
789
|
-
TIERED_BUNDLE
|
|
790
|
-
}
|
|
837
|
+
export declare const PricingMode: {
|
|
838
|
+
readonly BASIC: "BASIC";
|
|
839
|
+
readonly STANDARD: "STANDARD";
|
|
840
|
+
readonly TIERED_BUNDLE: "TIERED_BUNDLE";
|
|
841
|
+
};
|
|
791
842
|
/**
|
|
792
843
|
* @public
|
|
793
844
|
*/
|
|
794
|
-
export
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
845
|
+
export type PricingMode = (typeof PricingMode)[keyof typeof PricingMode];
|
|
846
|
+
/**
|
|
847
|
+
* @public
|
|
848
|
+
* @enum
|
|
849
|
+
*/
|
|
850
|
+
export declare const UpdateReason: {
|
|
851
|
+
readonly DEFAULT: "DEFAULT";
|
|
852
|
+
readonly ENTITY_COUNT_UPDATE: "ENTITY_COUNT_UPDATE";
|
|
853
|
+
readonly OVERWRITTEN: "OVERWRITTEN";
|
|
854
|
+
readonly PRICING_MODE_UPDATE: "PRICING_MODE_UPDATE";
|
|
855
|
+
readonly PRICING_TIER_UPDATE: "PRICING_TIER_UPDATE";
|
|
856
|
+
};
|
|
857
|
+
/**
|
|
858
|
+
* @public
|
|
859
|
+
*/
|
|
860
|
+
export type UpdateReason = (typeof UpdateReason)[keyof typeof UpdateReason];
|
|
801
861
|
/**
|
|
802
862
|
* @public
|
|
803
863
|
* <p>The pricing plan.</p>
|
|
@@ -867,11 +927,16 @@ export declare class ConnectorTimeoutException extends __BaseException {
|
|
|
867
927
|
}
|
|
868
928
|
/**
|
|
869
929
|
* @public
|
|
930
|
+
* @enum
|
|
870
931
|
*/
|
|
871
|
-
export declare
|
|
872
|
-
ASCENDING
|
|
873
|
-
DESCENDING
|
|
874
|
-
}
|
|
932
|
+
export declare const Order: {
|
|
933
|
+
readonly ASCENDING: "ASCENDING";
|
|
934
|
+
readonly DESCENDING: "DESCENDING";
|
|
935
|
+
};
|
|
936
|
+
/**
|
|
937
|
+
* @public
|
|
938
|
+
*/
|
|
939
|
+
export type Order = (typeof Order)[keyof typeof Order];
|
|
875
940
|
/**
|
|
876
941
|
* @public
|
|
877
942
|
* <p>Filter criteria that orders the return output. It can be sorted in ascending or
|
|
@@ -889,10 +954,15 @@ export interface OrderBy {
|
|
|
889
954
|
}
|
|
890
955
|
/**
|
|
891
956
|
* @public
|
|
957
|
+
* @enum
|
|
892
958
|
*/
|
|
893
|
-
export declare
|
|
894
|
-
LINEAR
|
|
895
|
-
}
|
|
959
|
+
export declare const InterpolationType: {
|
|
960
|
+
readonly LINEAR: "LINEAR";
|
|
961
|
+
};
|
|
962
|
+
/**
|
|
963
|
+
* @public
|
|
964
|
+
*/
|
|
965
|
+
export type InterpolationType = (typeof InterpolationType)[keyof typeof InterpolationType];
|
|
896
966
|
/**
|
|
897
967
|
* @public
|
|
898
968
|
* <p>An object that specifies how to interpolate data in a list.</p>
|
|
@@ -909,11 +979,16 @@ export interface InterpolationParameters {
|
|
|
909
979
|
}
|
|
910
980
|
/**
|
|
911
981
|
* @public
|
|
982
|
+
* @enum
|
|
912
983
|
*/
|
|
913
|
-
export declare
|
|
914
|
-
ASCENDING
|
|
915
|
-
DESCENDING
|
|
916
|
-
}
|
|
984
|
+
export declare const OrderByTime: {
|
|
985
|
+
readonly ASCENDING: "ASCENDING";
|
|
986
|
+
readonly DESCENDING: "DESCENDING";
|
|
987
|
+
};
|
|
988
|
+
/**
|
|
989
|
+
* @public
|
|
990
|
+
*/
|
|
991
|
+
export type OrderByTime = (typeof OrderByTime)[keyof typeof OrderByTime];
|
|
917
992
|
/**
|
|
918
993
|
* @public
|
|
919
994
|
*/
|
|
@@ -1466,21 +1541,31 @@ export interface ListSyncJobsResponse {
|
|
|
1466
1541
|
}
|
|
1467
1542
|
/**
|
|
1468
1543
|
* @public
|
|
1544
|
+
* @enum
|
|
1469
1545
|
*/
|
|
1470
|
-
export declare
|
|
1471
|
-
COMPONENT_TYPE
|
|
1472
|
-
ENTITY
|
|
1473
|
-
}
|
|
1546
|
+
export declare const SyncResourceType: {
|
|
1547
|
+
readonly COMPONENT_TYPE: "COMPONENT_TYPE";
|
|
1548
|
+
readonly ENTITY: "ENTITY";
|
|
1549
|
+
};
|
|
1474
1550
|
/**
|
|
1475
1551
|
* @public
|
|
1476
1552
|
*/
|
|
1477
|
-
export
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1553
|
+
export type SyncResourceType = (typeof SyncResourceType)[keyof typeof SyncResourceType];
|
|
1554
|
+
/**
|
|
1555
|
+
* @public
|
|
1556
|
+
* @enum
|
|
1557
|
+
*/
|
|
1558
|
+
export declare const SyncResourceState: {
|
|
1559
|
+
readonly DELETED: "DELETED";
|
|
1560
|
+
readonly ERROR: "ERROR";
|
|
1561
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
1562
|
+
readonly IN_SYNC: "IN_SYNC";
|
|
1563
|
+
readonly PROCESSING: "PROCESSING";
|
|
1564
|
+
};
|
|
1565
|
+
/**
|
|
1566
|
+
* @public
|
|
1567
|
+
*/
|
|
1568
|
+
export type SyncResourceState = (typeof SyncResourceState)[keyof typeof SyncResourceState];
|
|
1484
1569
|
/**
|
|
1485
1570
|
* @public
|
|
1486
1571
|
* <p>The sync resource filter.</p>
|
|
@@ -1796,19 +1881,29 @@ export interface UpdateComponentTypeResponse {
|
|
|
1796
1881
|
}
|
|
1797
1882
|
/**
|
|
1798
1883
|
* @public
|
|
1884
|
+
* @enum
|
|
1799
1885
|
*/
|
|
1800
|
-
export declare
|
|
1801
|
-
CREATE
|
|
1802
|
-
DELETE
|
|
1803
|
-
UPDATE
|
|
1804
|
-
}
|
|
1886
|
+
export declare const ComponentUpdateType: {
|
|
1887
|
+
readonly CREATE: "CREATE";
|
|
1888
|
+
readonly DELETE: "DELETE";
|
|
1889
|
+
readonly UPDATE: "UPDATE";
|
|
1890
|
+
};
|
|
1805
1891
|
/**
|
|
1806
1892
|
* @public
|
|
1807
1893
|
*/
|
|
1808
|
-
export
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1894
|
+
export type ComponentUpdateType = (typeof ComponentUpdateType)[keyof typeof ComponentUpdateType];
|
|
1895
|
+
/**
|
|
1896
|
+
* @public
|
|
1897
|
+
* @enum
|
|
1898
|
+
*/
|
|
1899
|
+
export declare const ParentEntityUpdateType: {
|
|
1900
|
+
readonly DELETE: "DELETE";
|
|
1901
|
+
readonly UPDATE: "UPDATE";
|
|
1902
|
+
};
|
|
1903
|
+
/**
|
|
1904
|
+
* @public
|
|
1905
|
+
*/
|
|
1906
|
+
export type ParentEntityUpdateType = (typeof ParentEntityUpdateType)[keyof typeof ParentEntityUpdateType];
|
|
1812
1907
|
/**
|
|
1813
1908
|
* @public
|
|
1814
1909
|
* <p>The parent entity update request.</p>
|