@aws-sdk/client-iottwinmaker 3.226.0 → 3.229.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 (65) hide show
  1. package/dist-cjs/IoTTwinMaker.js +75 -0
  2. package/dist-cjs/commands/CreateSyncJobCommand.js +46 -0
  3. package/dist-cjs/commands/DeleteSyncJobCommand.js +46 -0
  4. package/dist-cjs/commands/GetSyncJobCommand.js +46 -0
  5. package/dist-cjs/commands/ListSyncJobsCommand.js +46 -0
  6. package/dist-cjs/commands/ListSyncResourcesCommand.js +46 -0
  7. package/dist-cjs/commands/index.js +5 -0
  8. package/dist-cjs/endpoint/ruleset.js +1 -10
  9. package/dist-cjs/models/models_0.js +111 -3
  10. package/dist-cjs/pagination/ListSyncJobsPaginator.js +36 -0
  11. package/dist-cjs/pagination/ListSyncResourcesPaginator.js +36 -0
  12. package/dist-cjs/pagination/index.js +2 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +510 -2
  14. package/dist-cjs/runtimeConfig.browser.js +3 -3
  15. package/dist-cjs/runtimeConfig.js +2 -1
  16. package/dist-es/IoTTwinMaker.js +75 -0
  17. package/dist-es/commands/CreateSyncJobCommand.js +42 -0
  18. package/dist-es/commands/DeleteSyncJobCommand.js +42 -0
  19. package/dist-es/commands/GetSyncJobCommand.js +42 -0
  20. package/dist-es/commands/ListSyncJobsCommand.js +42 -0
  21. package/dist-es/commands/ListSyncResourcesCommand.js +42 -0
  22. package/dist-es/commands/index.js +5 -0
  23. package/dist-es/endpoint/ruleset.js +1 -10
  24. package/dist-es/models/models_0.js +93 -0
  25. package/dist-es/pagination/ListSyncJobsPaginator.js +32 -0
  26. package/dist-es/pagination/ListSyncResourcesPaginator.js +32 -0
  27. package/dist-es/pagination/index.js +2 -0
  28. package/dist-es/protocols/Aws_restJson1.js +499 -1
  29. package/dist-es/runtimeConfig.browser.js +1 -1
  30. package/dist-es/runtimeConfig.js +2 -1
  31. package/dist-types/IoTTwinMaker.d.ts +35 -0
  32. package/dist-types/IoTTwinMakerClient.d.ts +7 -2
  33. package/dist-types/commands/CreateSyncJobCommand.d.ts +37 -0
  34. package/dist-types/commands/DeleteSyncJobCommand.d.ts +37 -0
  35. package/dist-types/commands/GetSyncJobCommand.d.ts +37 -0
  36. package/dist-types/commands/ListSyncJobsCommand.d.ts +37 -0
  37. package/dist-types/commands/ListSyncResourcesCommand.d.ts +37 -0
  38. package/dist-types/commands/index.d.ts +5 -0
  39. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  40. package/dist-types/models/models_0.d.ts +421 -1
  41. package/dist-types/pagination/ListSyncJobsPaginator.d.ts +4 -0
  42. package/dist-types/pagination/ListSyncResourcesPaginator.d.ts +4 -0
  43. package/dist-types/pagination/index.d.ts +2 -0
  44. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  45. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  46. package/dist-types/runtimeConfig.d.ts +1 -1
  47. package/dist-types/runtimeConfig.native.d.ts +1 -1
  48. package/dist-types/ts3.4/IoTTwinMaker.d.ts +85 -0
  49. package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +30 -0
  50. package/dist-types/ts3.4/commands/CreateSyncJobCommand.d.ts +37 -0
  51. package/dist-types/ts3.4/commands/DeleteSyncJobCommand.d.ts +37 -0
  52. package/dist-types/ts3.4/commands/GetSyncJobCommand.d.ts +34 -0
  53. package/dist-types/ts3.4/commands/ListSyncJobsCommand.d.ts +34 -0
  54. package/dist-types/ts3.4/commands/ListSyncResourcesCommand.d.ts +38 -0
  55. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  56. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  57. package/dist-types/ts3.4/models/models_0.d.ts +200 -0
  58. package/dist-types/ts3.4/pagination/ListSyncJobsPaginator.d.ts +11 -0
  59. package/dist-types/ts3.4/pagination/ListSyncResourcesPaginator.d.ts +11 -0
  60. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  61. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  62. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -1
  63. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -1
  64. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -1
  65. package/package.json +5 -4
@@ -296,6 +296,49 @@ export interface CreateSceneResponse {
296
296
  */
297
297
  creationDateTime: Date | undefined;
298
298
  }
299
+ export interface CreateSyncJobRequest {
300
+ /**
301
+ * <p>The workspace Id.</p>
302
+ */
303
+ workspaceId: string | undefined;
304
+ /**
305
+ * <p>The sync source.</p>
306
+ * <note>
307
+ * <p>Currently the only supported syncSoucre is <code>SITEWISE </code>.</p>
308
+ * </note>
309
+ */
310
+ syncSource: string | undefined;
311
+ /**
312
+ * <p>The SyncJob IAM role. This IAM role is used by the sync job to read from the syncSource, and create,
313
+ * update or delete the corresponding resources.</p>
314
+ */
315
+ syncRole: string | undefined;
316
+ /**
317
+ * <p>The SyncJob tags.</p>
318
+ */
319
+ tags?: Record<string, string>;
320
+ }
321
+ export declare enum SyncJobState {
322
+ ACTIVE = "ACTIVE",
323
+ CREATING = "CREATING",
324
+ DELETING = "DELETING",
325
+ ERROR = "ERROR",
326
+ INITIALIZING = "INITIALIZING"
327
+ }
328
+ export interface CreateSyncJobResponse {
329
+ /**
330
+ * <p>The SyncJob ARN.</p>
331
+ */
332
+ arn: string | undefined;
333
+ /**
334
+ * <p>The date and time for the SyncJob creation.</p>
335
+ */
336
+ creationDateTime: Date | undefined;
337
+ /**
338
+ * <p>The SyncJob response state.</p>
339
+ */
340
+ state: SyncJobState | string | undefined;
341
+ }
299
342
  export interface CreateWorkspaceRequest {
300
343
  /**
301
344
  * <p>The ID of the workspace.</p>
@@ -376,6 +419,25 @@ export interface DeleteSceneRequest {
376
419
  }
377
420
  export interface DeleteSceneResponse {
378
421
  }
422
+ export interface DeleteSyncJobRequest {
423
+ /**
424
+ * <p>The workspace Id.</p>
425
+ */
426
+ workspaceId: string | undefined;
427
+ /**
428
+ * <p>The sync source.</p>
429
+ * <note>
430
+ * <p>Currently the only supported syncSoucre is <code>SITEWISE </code>.</p>
431
+ * </note>
432
+ */
433
+ syncSource: string | undefined;
434
+ }
435
+ export interface DeleteSyncJobResponse {
436
+ /**
437
+ * <p>The SyncJob response state.</p>
438
+ */
439
+ state: SyncJobState | string | undefined;
440
+ }
379
441
  export interface DeleteWorkspaceRequest {
380
442
  /**
381
443
  * <p>The ID of the workspace to delete.</p>
@@ -506,6 +568,9 @@ export interface PropertyGroupResponse {
506
568
  }
507
569
  export declare enum ErrorCode {
508
570
  INTERNAL_FAILURE = "INTERNAL_FAILURE",
571
+ SYNC_CREATING_ERROR = "SYNC_CREATING_ERROR",
572
+ SYNC_INITIALIZING_ERROR = "SYNC_INITIALIZING_ERROR",
573
+ SYNC_PROCESSING_ERROR = "SYNC_PROCESSING_ERROR",
509
574
  VALIDATION_ERROR = "VALIDATION_ERROR"
510
575
  }
511
576
  /**
@@ -736,6 +801,65 @@ export interface GetSceneResponse {
736
801
  */
737
802
  capabilities?: string[];
738
803
  }
804
+ export interface GetSyncJobRequest {
805
+ /**
806
+ * <p>The sync soucre.</p>
807
+ * <note>
808
+ * <p>Currently the only supported syncSoucre is <code>SITEWISE </code>.</p>
809
+ * </note>
810
+ */
811
+ syncSource: string | undefined;
812
+ /**
813
+ * <p>The workspace Id.</p>
814
+ */
815
+ workspaceId?: string;
816
+ }
817
+ /**
818
+ * <p>The SyncJob status.</p>
819
+ */
820
+ export interface SyncJobStatus {
821
+ /**
822
+ * <p>The SyncJob status state.</p>
823
+ */
824
+ state?: SyncJobState | string;
825
+ /**
826
+ * <p>The SyncJob error.</p>
827
+ */
828
+ error?: ErrorDetails;
829
+ }
830
+ export interface GetSyncJobResponse {
831
+ /**
832
+ * <p>The sync job ARN.</p>
833
+ */
834
+ arn: string | undefined;
835
+ /**
836
+ * <p>The ID of the workspace that contains the sync job.</p>
837
+ */
838
+ workspaceId: string | undefined;
839
+ /**
840
+ * <p>The sync soucre.</p>
841
+ * <note>
842
+ * <p>Currently the only supported syncSoucre is <code>SITEWISE </code>.</p>
843
+ * </note>
844
+ */
845
+ syncSource: string | undefined;
846
+ /**
847
+ * <p>The sync IAM role.</p>
848
+ */
849
+ syncRole: string | undefined;
850
+ /**
851
+ * <p>The SyncJob response status.</p>
852
+ */
853
+ status: SyncJobStatus | undefined;
854
+ /**
855
+ * <p>The creation date and time.</p>
856
+ */
857
+ creationDateTime: Date | undefined;
858
+ /**
859
+ * <p>The update date and time.</p>
860
+ */
861
+ updateDateTime: Date | undefined;
862
+ }
739
863
  export interface GetWorkspaceRequest {
740
864
  /**
741
865
  * <p>The ID of the workspace.</p>
@@ -868,6 +992,10 @@ export interface ComponentTypeSummary {
868
992
  * <p>The current status of the component type.</p>
869
993
  */
870
994
  status?: Status;
995
+ /**
996
+ * <p>The component type name.</p>
997
+ */
998
+ componentTypeName?: string;
871
999
  }
872
1000
  export interface ListComponentTypesResponse {
873
1001
  /**
@@ -1059,6 +1187,206 @@ export interface ListScenesResponse {
1059
1187
  */
1060
1188
  nextToken?: string;
1061
1189
  }
1190
+ export interface ListSyncJobsRequest {
1191
+ /**
1192
+ * <p>The ID of the workspace that contains the sync job.</p>
1193
+ */
1194
+ workspaceId: string | undefined;
1195
+ /**
1196
+ * <p>The maximum number of results to return at one time. The default is 50.</p>
1197
+ * <p>Valid Range: Minimum value of 0. Maximum value of 200.</p>
1198
+ */
1199
+ maxResults?: number;
1200
+ /**
1201
+ * <p>The string that specifies the next page of results.</p>
1202
+ */
1203
+ nextToken?: string;
1204
+ }
1205
+ /**
1206
+ * <p>The SyncJob summary.</p>
1207
+ */
1208
+ export interface SyncJobSummary {
1209
+ /**
1210
+ * <p>The SyncJob summary ARN.</p>
1211
+ */
1212
+ arn?: string;
1213
+ /**
1214
+ * <p>The ID of the workspace that contains the sync job.</p>
1215
+ */
1216
+ workspaceId?: string;
1217
+ /**
1218
+ * <p>The sync source.</p>
1219
+ */
1220
+ syncSource?: string;
1221
+ /**
1222
+ * <p>The SyncJob summaries status.</p>
1223
+ */
1224
+ status?: SyncJobStatus;
1225
+ /**
1226
+ * <p>The creation date and time.</p>
1227
+ */
1228
+ creationDateTime?: Date;
1229
+ /**
1230
+ * <p>The update date and time.</p>
1231
+ */
1232
+ updateDateTime?: Date;
1233
+ }
1234
+ export interface ListSyncJobsResponse {
1235
+ /**
1236
+ * <p>The listed SyncJob summaries.</p>
1237
+ */
1238
+ syncJobSummaries?: SyncJobSummary[];
1239
+ /**
1240
+ * <p>The string that specifies the next page of results.</p>
1241
+ */
1242
+ nextToken?: string;
1243
+ }
1244
+ export declare enum SyncResourceType {
1245
+ COMPONENT_TYPE = "COMPONENT_TYPE",
1246
+ ENTITY = "ENTITY"
1247
+ }
1248
+ export declare enum SyncResourceState {
1249
+ DELETED = "DELETED",
1250
+ ERROR = "ERROR",
1251
+ INITIALIZING = "INITIALIZING",
1252
+ IN_SYNC = "IN_SYNC",
1253
+ PROCESSING = "PROCESSING"
1254
+ }
1255
+ /**
1256
+ * <p>The sync resource filter.</p>
1257
+ */
1258
+ export declare type SyncResourceFilter = SyncResourceFilter.ExternalIdMember | SyncResourceFilter.ResourceIdMember | SyncResourceFilter.ResourceTypeMember | SyncResourceFilter.StateMember | SyncResourceFilter.$UnknownMember;
1259
+ export declare namespace SyncResourceFilter {
1260
+ /**
1261
+ * <p>The sync resource filter's state.</p>
1262
+ */
1263
+ interface StateMember {
1264
+ state: SyncResourceState | string;
1265
+ resourceType?: never;
1266
+ resourceId?: never;
1267
+ externalId?: never;
1268
+ $unknown?: never;
1269
+ }
1270
+ /**
1271
+ * <p>The sync resource filter resoucre type</p>
1272
+ */
1273
+ interface ResourceTypeMember {
1274
+ state?: never;
1275
+ resourceType: SyncResourceType | string;
1276
+ resourceId?: never;
1277
+ externalId?: never;
1278
+ $unknown?: never;
1279
+ }
1280
+ /**
1281
+ * <p>The sync resource filter resource Id.</p>
1282
+ */
1283
+ interface ResourceIdMember {
1284
+ state?: never;
1285
+ resourceType?: never;
1286
+ resourceId: string;
1287
+ externalId?: never;
1288
+ $unknown?: never;
1289
+ }
1290
+ /**
1291
+ * <p>The external Id.</p>
1292
+ */
1293
+ interface ExternalIdMember {
1294
+ state?: never;
1295
+ resourceType?: never;
1296
+ resourceId?: never;
1297
+ externalId: string;
1298
+ $unknown?: never;
1299
+ }
1300
+ interface $UnknownMember {
1301
+ state?: never;
1302
+ resourceType?: never;
1303
+ resourceId?: never;
1304
+ externalId?: never;
1305
+ $unknown: [string, any];
1306
+ }
1307
+ interface Visitor<T> {
1308
+ state: (value: SyncResourceState | string) => T;
1309
+ resourceType: (value: SyncResourceType | string) => T;
1310
+ resourceId: (value: string) => T;
1311
+ externalId: (value: string) => T;
1312
+ _: (name: string, value: any) => T;
1313
+ }
1314
+ const visit: <T>(value: SyncResourceFilter, visitor: Visitor<T>) => T;
1315
+ }
1316
+ export interface ListSyncResourcesRequest {
1317
+ /**
1318
+ * <p>The ID of the workspace that contains the sync job.</p>
1319
+ */
1320
+ workspaceId: string | undefined;
1321
+ /**
1322
+ * <p>The sync soucre.</p>
1323
+ * <note>
1324
+ * <p>Currently the only supported syncSoucre is <code>SITEWISE </code>.</p>
1325
+ * </note>
1326
+ */
1327
+ syncSource: string | undefined;
1328
+ /**
1329
+ * <p>A list of objects that filter the request.</p>
1330
+ */
1331
+ filters?: SyncResourceFilter[];
1332
+ /**
1333
+ * <p>The maximum number of results to return at one time. The default is 50.</p>
1334
+ * <p>Valid Range: Minimum value of 0. Maximum value of 200.</p>
1335
+ */
1336
+ maxResults?: number;
1337
+ /**
1338
+ * <p>The string that specifies the next page of results.</p>
1339
+ */
1340
+ nextToken?: string;
1341
+ }
1342
+ /**
1343
+ * <p>The sync resource status.</p>
1344
+ */
1345
+ export interface SyncResourceStatus {
1346
+ /**
1347
+ * <p>The sync resource status state.</p>
1348
+ */
1349
+ state?: SyncResourceState | string;
1350
+ /**
1351
+ * <p>The status error.</p>
1352
+ */
1353
+ error?: ErrorDetails;
1354
+ }
1355
+ /**
1356
+ * <p>The sync resource summary.</p>
1357
+ */
1358
+ export interface SyncResourceSummary {
1359
+ /**
1360
+ * <p>The resource type.</p>
1361
+ */
1362
+ resourceType?: SyncResourceType | string;
1363
+ /**
1364
+ * <p>The external Id.</p>
1365
+ */
1366
+ externalId?: string;
1367
+ /**
1368
+ * <p>The resource Id.</p>
1369
+ */
1370
+ resourceId?: string;
1371
+ /**
1372
+ * <p>The sync resource summary status.</p>
1373
+ */
1374
+ status?: SyncResourceStatus;
1375
+ /**
1376
+ * <p>The update date and time.</p>
1377
+ */
1378
+ updateDateTime?: Date;
1379
+ }
1380
+ export interface ListSyncResourcesResponse {
1381
+ /**
1382
+ * <p>The sync resources.</p>
1383
+ */
1384
+ syncResources?: SyncResourceSummary[];
1385
+ /**
1386
+ * <p>The string that specifies the next page of results.</p>
1387
+ */
1388
+ nextToken?: string;
1389
+ }
1062
1390
  export interface ListTagsForResourceRequest {
1063
1391
  /**
1064
1392
  * <p>The ARN of the resource.</p>
@@ -1668,6 +1996,10 @@ export interface PropertyDefinitionRequest {
1668
1996
  * specify information that you read from and write to an external source.</p>
1669
1997
  */
1670
1998
  configuration?: Record<string, string>;
1999
+ /**
2000
+ * <p>A friendly name for the property.</p>
2001
+ */
2002
+ displayName?: string;
1671
2003
  }
1672
2004
  /**
1673
2005
  * <p>An object that contains response data from a property definition request.</p>
@@ -1713,6 +2045,10 @@ export interface PropertyDefinitionResponse {
1713
2045
  * <p>A mapping that specifies configuration information about the property.</p>
1714
2046
  */
1715
2047
  configuration?: Record<string, string>;
2048
+ /**
2049
+ * <p>A friendly name for the property.</p>
2050
+ */
2051
+ displayName?: string;
1716
2052
  }
1717
2053
  export interface BatchPutPropertyValuesResponse {
1718
2054
  /**
@@ -1775,6 +2111,10 @@ export interface CreateComponentTypeRequest {
1775
2111
  * <p/>
1776
2112
  */
1777
2113
  propertyGroups?: Record<string, PropertyGroupRequest>;
2114
+ /**
2115
+ * <p>A friendly name for the component type.</p>
2116
+ */
2117
+ componentTypeName?: string;
1778
2118
  }
1779
2119
  export interface GetComponentTypeResponse {
1780
2120
  /**
@@ -1838,10 +2178,18 @@ export interface GetComponentTypeResponse {
1838
2178
  * <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
1839
2179
  */
1840
2180
  propertyGroups?: Record<string, PropertyGroupResponse>;
2181
+ /**
2182
+ * <p>The syncSource of the sync job, if this entity was created by a sync job.</p>
2183
+ */
2184
+ syncSource?: string;
2185
+ /**
2186
+ * <p>The component type name.</p>
2187
+ */
2188
+ componentTypeName?: string;
1841
2189
  }
1842
2190
  export interface UpdateComponentTypeRequest {
1843
2191
  /**
1844
- * <p>The ID of the workspace that contains the component type.</p>
2192
+ * <p>The ID of the workspace.</p>
1845
2193
  */
1846
2194
  workspaceId: string | undefined;
1847
2195
  /**
@@ -1875,6 +2223,10 @@ export interface UpdateComponentTypeRequest {
1875
2223
  * <p>The property groups</p>
1876
2224
  */
1877
2225
  propertyGroups?: Record<string, PropertyGroupRequest>;
2226
+ /**
2227
+ * <p>The component type name.</p>
2228
+ */
2229
+ componentTypeName?: string;
1878
2230
  }
1879
2231
  /**
1880
2232
  * <p>An object that sets information about a property.</p>
@@ -1961,6 +2313,10 @@ export interface ComponentResponse {
1961
2313
  * <p>The property groups.</p>
1962
2314
  */
1963
2315
  propertyGroups?: Record<string, ComponentPropertyGroupResponse>;
2316
+ /**
2317
+ * <p>The syncSource of the sync job, if this entity was created by a sync job.</p>
2318
+ */
2319
+ syncSource?: string;
1964
2320
  }
1965
2321
  /**
1966
2322
  * <p>The component update request.</p>
@@ -2065,6 +2421,10 @@ export interface GetEntityResponse {
2065
2421
  * <p>The date and time when the entity was last updated.</p>
2066
2422
  */
2067
2423
  updateDateTime: Date | undefined;
2424
+ /**
2425
+ * <p>The syncSource of the sync job, if this entity was created by a sync job.</p>
2426
+ */
2427
+ syncSource?: string;
2068
2428
  }
2069
2429
  export interface UpdateEntityRequest {
2070
2430
  /**
@@ -2141,6 +2501,14 @@ export declare const CreateSceneRequestFilterSensitiveLog: (obj: CreateSceneRequ
2141
2501
  * @internal
2142
2502
  */
2143
2503
  export declare const CreateSceneResponseFilterSensitiveLog: (obj: CreateSceneResponse) => any;
2504
+ /**
2505
+ * @internal
2506
+ */
2507
+ export declare const CreateSyncJobRequestFilterSensitiveLog: (obj: CreateSyncJobRequest) => any;
2508
+ /**
2509
+ * @internal
2510
+ */
2511
+ export declare const CreateSyncJobResponseFilterSensitiveLog: (obj: CreateSyncJobResponse) => any;
2144
2512
  /**
2145
2513
  * @internal
2146
2514
  */
@@ -2173,6 +2541,14 @@ export declare const DeleteSceneRequestFilterSensitiveLog: (obj: DeleteSceneRequ
2173
2541
  * @internal
2174
2542
  */
2175
2543
  export declare const DeleteSceneResponseFilterSensitiveLog: (obj: DeleteSceneResponse) => any;
2544
+ /**
2545
+ * @internal
2546
+ */
2547
+ export declare const DeleteSyncJobRequestFilterSensitiveLog: (obj: DeleteSyncJobRequest) => any;
2548
+ /**
2549
+ * @internal
2550
+ */
2551
+ export declare const DeleteSyncJobResponseFilterSensitiveLog: (obj: DeleteSyncJobResponse) => any;
2176
2552
  /**
2177
2553
  * @internal
2178
2554
  */
@@ -2257,6 +2633,18 @@ export declare const GetSceneRequestFilterSensitiveLog: (obj: GetSceneRequest) =
2257
2633
  * @internal
2258
2634
  */
2259
2635
  export declare const GetSceneResponseFilterSensitiveLog: (obj: GetSceneResponse) => any;
2636
+ /**
2637
+ * @internal
2638
+ */
2639
+ export declare const GetSyncJobRequestFilterSensitiveLog: (obj: GetSyncJobRequest) => any;
2640
+ /**
2641
+ * @internal
2642
+ */
2643
+ export declare const SyncJobStatusFilterSensitiveLog: (obj: SyncJobStatus) => any;
2644
+ /**
2645
+ * @internal
2646
+ */
2647
+ export declare const GetSyncJobResponseFilterSensitiveLog: (obj: GetSyncJobResponse) => any;
2260
2648
  /**
2261
2649
  * @internal
2262
2650
  */
@@ -2309,6 +2697,38 @@ export declare const SceneSummaryFilterSensitiveLog: (obj: SceneSummary) => any;
2309
2697
  * @internal
2310
2698
  */
2311
2699
  export declare const ListScenesResponseFilterSensitiveLog: (obj: ListScenesResponse) => any;
2700
+ /**
2701
+ * @internal
2702
+ */
2703
+ export declare const ListSyncJobsRequestFilterSensitiveLog: (obj: ListSyncJobsRequest) => any;
2704
+ /**
2705
+ * @internal
2706
+ */
2707
+ export declare const SyncJobSummaryFilterSensitiveLog: (obj: SyncJobSummary) => any;
2708
+ /**
2709
+ * @internal
2710
+ */
2711
+ export declare const ListSyncJobsResponseFilterSensitiveLog: (obj: ListSyncJobsResponse) => any;
2712
+ /**
2713
+ * @internal
2714
+ */
2715
+ export declare const SyncResourceFilterFilterSensitiveLog: (obj: SyncResourceFilter) => any;
2716
+ /**
2717
+ * @internal
2718
+ */
2719
+ export declare const ListSyncResourcesRequestFilterSensitiveLog: (obj: ListSyncResourcesRequest) => any;
2720
+ /**
2721
+ * @internal
2722
+ */
2723
+ export declare const SyncResourceStatusFilterSensitiveLog: (obj: SyncResourceStatus) => any;
2724
+ /**
2725
+ * @internal
2726
+ */
2727
+ export declare const SyncResourceSummaryFilterSensitiveLog: (obj: SyncResourceSummary) => any;
2728
+ /**
2729
+ * @internal
2730
+ */
2731
+ export declare const ListSyncResourcesResponseFilterSensitiveLog: (obj: ListSyncResourcesResponse) => any;
2312
2732
  /**
2313
2733
  * @internal
2314
2734
  */
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListSyncJobsCommandInput, ListSyncJobsCommandOutput } from "../commands/ListSyncJobsCommand";
3
+ import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListSyncJobs(config: IoTTwinMakerPaginationConfiguration, input: ListSyncJobsCommandInput, ...additionalArguments: any): Paginator<ListSyncJobsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput } from "../commands/ListSyncResourcesCommand";
3
+ import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListSyncResources(config: IoTTwinMakerPaginationConfiguration, input: ListSyncResourcesCommandInput, ...additionalArguments: any): Paginator<ListSyncResourcesCommandOutput>;
@@ -5,4 +5,6 @@ export * from "./Interfaces";
5
5
  export * from "./ListComponentTypesPaginator";
6
6
  export * from "./ListEntitiesPaginator";
7
7
  export * from "./ListScenesPaginator";
8
+ export * from "./ListSyncJobsPaginator";
9
+ export * from "./ListSyncResourcesPaginator";
8
10
  export * from "./ListWorkspacesPaginator";
@@ -4,10 +4,12 @@ import { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput
4
4
  import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "../commands/CreateComponentTypeCommand";
5
5
  import { CreateEntityCommandInput, CreateEntityCommandOutput } from "../commands/CreateEntityCommand";
6
6
  import { CreateSceneCommandInput, CreateSceneCommandOutput } from "../commands/CreateSceneCommand";
7
+ import { CreateSyncJobCommandInput, CreateSyncJobCommandOutput } from "../commands/CreateSyncJobCommand";
7
8
  import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "../commands/CreateWorkspaceCommand";
8
9
  import { DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput } from "../commands/DeleteComponentTypeCommand";
9
10
  import { DeleteEntityCommandInput, DeleteEntityCommandOutput } from "../commands/DeleteEntityCommand";
10
11
  import { DeleteSceneCommandInput, DeleteSceneCommandOutput } from "../commands/DeleteSceneCommand";
12
+ import { DeleteSyncJobCommandInput, DeleteSyncJobCommandOutput } from "../commands/DeleteSyncJobCommand";
11
13
  import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "../commands/DeleteWorkspaceCommand";
12
14
  import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "../commands/ExecuteQueryCommand";
13
15
  import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "../commands/GetComponentTypeCommand";
@@ -16,10 +18,13 @@ import { GetPricingPlanCommandInput, GetPricingPlanCommandOutput } from "../comm
16
18
  import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "../commands/GetPropertyValueCommand";
17
19
  import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "../commands/GetPropertyValueHistoryCommand";
18
20
  import { GetSceneCommandInput, GetSceneCommandOutput } from "../commands/GetSceneCommand";
21
+ import { GetSyncJobCommandInput, GetSyncJobCommandOutput } from "../commands/GetSyncJobCommand";
19
22
  import { GetWorkspaceCommandInput, GetWorkspaceCommandOutput } from "../commands/GetWorkspaceCommand";
20
23
  import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "../commands/ListComponentTypesCommand";
21
24
  import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "../commands/ListEntitiesCommand";
22
25
  import { ListScenesCommandInput, ListScenesCommandOutput } from "../commands/ListScenesCommand";
26
+ import { ListSyncJobsCommandInput, ListSyncJobsCommandOutput } from "../commands/ListSyncJobsCommand";
27
+ import { ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput } from "../commands/ListSyncResourcesCommand";
23
28
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
24
29
  import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "../commands/ListWorkspacesCommand";
25
30
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
@@ -33,10 +38,12 @@ export declare const serializeAws_restJson1BatchPutPropertyValuesCommand: (input
33
38
  export declare const serializeAws_restJson1CreateComponentTypeCommand: (input: CreateComponentTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
39
  export declare const serializeAws_restJson1CreateEntityCommand: (input: CreateEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
40
  export declare const serializeAws_restJson1CreateSceneCommand: (input: CreateSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ export declare const serializeAws_restJson1CreateSyncJobCommand: (input: CreateSyncJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
42
  export declare const serializeAws_restJson1CreateWorkspaceCommand: (input: CreateWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
43
  export declare const serializeAws_restJson1DeleteComponentTypeCommand: (input: DeleteComponentTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
44
  export declare const serializeAws_restJson1DeleteEntityCommand: (input: DeleteEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
45
  export declare const serializeAws_restJson1DeleteSceneCommand: (input: DeleteSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ export declare const serializeAws_restJson1DeleteSyncJobCommand: (input: DeleteSyncJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
47
  export declare const serializeAws_restJson1DeleteWorkspaceCommand: (input: DeleteWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
48
  export declare const serializeAws_restJson1ExecuteQueryCommand: (input: ExecuteQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
49
  export declare const serializeAws_restJson1GetComponentTypeCommand: (input: GetComponentTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -45,10 +52,13 @@ export declare const serializeAws_restJson1GetPricingPlanCommand: (input: GetPri
45
52
  export declare const serializeAws_restJson1GetPropertyValueCommand: (input: GetPropertyValueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
53
  export declare const serializeAws_restJson1GetPropertyValueHistoryCommand: (input: GetPropertyValueHistoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
54
  export declare const serializeAws_restJson1GetSceneCommand: (input: GetSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ export declare const serializeAws_restJson1GetSyncJobCommand: (input: GetSyncJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
56
  export declare const serializeAws_restJson1GetWorkspaceCommand: (input: GetWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
57
  export declare const serializeAws_restJson1ListComponentTypesCommand: (input: ListComponentTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
58
  export declare const serializeAws_restJson1ListEntitiesCommand: (input: ListEntitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
59
  export declare const serializeAws_restJson1ListScenesCommand: (input: ListScenesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
+ export declare const serializeAws_restJson1ListSyncJobsCommand: (input: ListSyncJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
+ export declare const serializeAws_restJson1ListSyncResourcesCommand: (input: ListSyncResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
62
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
63
  export declare const serializeAws_restJson1ListWorkspacesCommand: (input: ListWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
64
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -62,10 +72,12 @@ export declare const deserializeAws_restJson1BatchPutPropertyValuesCommand: (out
62
72
  export declare const deserializeAws_restJson1CreateComponentTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateComponentTypeCommandOutput>;
63
73
  export declare const deserializeAws_restJson1CreateEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEntityCommandOutput>;
64
74
  export declare const deserializeAws_restJson1CreateSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSceneCommandOutput>;
75
+ export declare const deserializeAws_restJson1CreateSyncJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSyncJobCommandOutput>;
65
76
  export declare const deserializeAws_restJson1CreateWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspaceCommandOutput>;
66
77
  export declare const deserializeAws_restJson1DeleteComponentTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComponentTypeCommandOutput>;
67
78
  export declare const deserializeAws_restJson1DeleteEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEntityCommandOutput>;
68
79
  export declare const deserializeAws_restJson1DeleteSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSceneCommandOutput>;
80
+ export declare const deserializeAws_restJson1DeleteSyncJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSyncJobCommandOutput>;
69
81
  export declare const deserializeAws_restJson1DeleteWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkspaceCommandOutput>;
70
82
  export declare const deserializeAws_restJson1ExecuteQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteQueryCommandOutput>;
71
83
  export declare const deserializeAws_restJson1GetComponentTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentTypeCommandOutput>;
@@ -74,10 +86,13 @@ export declare const deserializeAws_restJson1GetPricingPlanCommand: (output: __H
74
86
  export declare const deserializeAws_restJson1GetPropertyValueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPropertyValueCommandOutput>;
75
87
  export declare const deserializeAws_restJson1GetPropertyValueHistoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPropertyValueHistoryCommandOutput>;
76
88
  export declare const deserializeAws_restJson1GetSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSceneCommandOutput>;
89
+ export declare const deserializeAws_restJson1GetSyncJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSyncJobCommandOutput>;
77
90
  export declare const deserializeAws_restJson1GetWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkspaceCommandOutput>;
78
91
  export declare const deserializeAws_restJson1ListComponentTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentTypesCommandOutput>;
79
92
  export declare const deserializeAws_restJson1ListEntitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEntitiesCommandOutput>;
80
93
  export declare const deserializeAws_restJson1ListScenesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListScenesCommandOutput>;
94
+ export declare const deserializeAws_restJson1ListSyncJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSyncJobsCommandOutput>;
95
+ export declare const deserializeAws_restJson1ListSyncResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSyncResourcesCommandOutput>;
81
96
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
82
97
  export declare const deserializeAws_restJson1ListWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkspacesCommandOutput>;
83
98
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: IoTTwinMakerClientConfig) => {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
35
35
  credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: IoTTwinMakerClientConfig) => {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
35
35
  credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: IoTTwinMakerClientConfig) => {
30
30
  logger?: import("@aws-sdk/types").Logger | undefined;
31
31
  }) => import("@aws-sdk/types").EndpointV2;
32
32
  tls?: boolean | undefined;
33
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2 | undefined;
34
34
  credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
35
35
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
36
36
  signingEscapePath?: boolean | undefined;