@@ -68,6 +68,11 @@ import {
68
68
CreateDashboardCommandInput ,
69
69
CreateDashboardCommandOutput ,
70
70
} from "./commands/CreateDashboardCommand" ;
71
+ import {
72
+ CreateDatasetCommand ,
73
+ CreateDatasetCommandInput ,
74
+ CreateDatasetCommandOutput ,
75
+ } from "./commands/CreateDatasetCommand" ;
71
76
import {
72
77
CreateGatewayCommand ,
73
78
CreateGatewayCommandInput ,
@@ -104,6 +109,11 @@ import {
104
109
DeleteDashboardCommandInput ,
105
110
DeleteDashboardCommandOutput ,
106
111
} from "./commands/DeleteDashboardCommand" ;
112
+ import {
113
+ DeleteDatasetCommand ,
114
+ DeleteDatasetCommandInput ,
115
+ DeleteDatasetCommandOutput ,
116
+ } from "./commands/DeleteDatasetCommand" ;
107
117
import {
108
118
DeleteGatewayCommand ,
109
119
DeleteGatewayCommandInput ,
@@ -169,6 +179,11 @@ import {
169
179
DescribeDashboardCommandInput ,
170
180
DescribeDashboardCommandOutput ,
171
181
} from "./commands/DescribeDashboardCommand" ;
182
+ import {
183
+ DescribeDatasetCommand ,
184
+ DescribeDatasetCommandInput ,
185
+ DescribeDatasetCommandOutput ,
186
+ } from "./commands/DescribeDatasetCommand" ;
172
187
import {
173
188
DescribeDefaultEncryptionConfigurationCommand ,
174
189
DescribeDefaultEncryptionConfigurationCommandInput ,
@@ -249,6 +264,11 @@ import {
249
264
GetInterpolatedAssetPropertyValuesCommandInput ,
250
265
GetInterpolatedAssetPropertyValuesCommandOutput ,
251
266
} from "./commands/GetInterpolatedAssetPropertyValuesCommand" ;
267
+ import {
268
+ InvokeAssistantCommand ,
269
+ InvokeAssistantCommandInput ,
270
+ InvokeAssistantCommandOutput ,
271
+ } from "./commands/InvokeAssistantCommand" ;
252
272
import {
253
273
ListAccessPoliciesCommand ,
254
274
ListAccessPoliciesCommandInput ,
@@ -301,6 +321,11 @@ import {
301
321
ListDashboardsCommandInput ,
302
322
ListDashboardsCommandOutput ,
303
323
} from "./commands/ListDashboardsCommand" ;
324
+ import {
325
+ ListDatasetsCommand ,
326
+ ListDatasetsCommandInput ,
327
+ ListDatasetsCommandOutput ,
328
+ } from "./commands/ListDatasetsCommand" ;
304
329
import {
305
330
ListGatewaysCommand ,
306
331
ListGatewaysCommandInput ,
@@ -374,6 +399,11 @@ import {
374
399
UpdateDashboardCommandInput ,
375
400
UpdateDashboardCommandOutput ,
376
401
} from "./commands/UpdateDashboardCommand" ;
402
+ import {
403
+ UpdateDatasetCommand ,
404
+ UpdateDatasetCommandInput ,
405
+ UpdateDatasetCommandOutput ,
406
+ } from "./commands/UpdateDatasetCommand" ;
377
407
import {
378
408
UpdateGatewayCapabilityConfigurationCommand ,
379
409
UpdateGatewayCapabilityConfigurationCommandInput ,
@@ -411,6 +441,7 @@ const commands = {
411
441
CreateAssetModelCompositeModelCommand,
412
442
CreateBulkImportJobCommand,
413
443
CreateDashboardCommand,
444
+ CreateDatasetCommand,
414
445
CreateGatewayCommand,
415
446
CreatePortalCommand,
416
447
CreateProjectCommand,
@@ -419,6 +450,7 @@ const commands = {
419
450
DeleteAssetModelCommand,
420
451
DeleteAssetModelCompositeModelCommand,
421
452
DeleteDashboardCommand,
453
+ DeleteDatasetCommand,
422
454
DeleteGatewayCommand,
423
455
DeletePortalCommand,
424
456
DeleteProjectCommand,
@@ -432,6 +464,7 @@ const commands = {
432
464
DescribeAssetPropertyCommand,
433
465
DescribeBulkImportJobCommand,
434
466
DescribeDashboardCommand,
467
+ DescribeDatasetCommand,
435
468
DescribeDefaultEncryptionConfigurationCommand,
436
469
DescribeGatewayCommand,
437
470
DescribeGatewayCapabilityConfigurationCommand,
@@ -448,6 +481,7 @@ const commands = {
448
481
GetAssetPropertyValueCommand,
449
482
GetAssetPropertyValueHistoryCommand,
450
483
GetInterpolatedAssetPropertyValuesCommand,
484
+ InvokeAssistantCommand,
451
485
ListAccessPoliciesCommand,
452
486
ListActionsCommand,
453
487
ListAssetModelCompositeModelsCommand,
@@ -460,6 +494,7 @@ const commands = {
460
494
ListBulkImportJobsCommand,
461
495
ListCompositionRelationshipsCommand,
462
496
ListDashboardsCommand,
497
+ ListDatasetsCommand,
463
498
ListGatewaysCommand,
464
499
ListPortalsCommand,
465
500
ListProjectAssetsCommand,
@@ -477,6 +512,7 @@ const commands = {
477
512
UpdateAssetModelCompositeModelCommand,
478
513
UpdateAssetPropertyCommand,
479
514
UpdateDashboardCommand,
515
+ UpdateDatasetCommand,
480
516
UpdateGatewayCommand,
481
517
UpdateGatewayCapabilityConfigurationCommand,
482
518
UpdatePortalCommand,
@@ -710,6 +746,17 @@ export interface IoTSiteWise {
710
746
cb : ( err : any , data ?: CreateDashboardCommandOutput ) => void
711
747
) : void ;
712
748
749
+ /**
750
+ * @see {@link CreateDatasetCommand }
751
+ */
752
+ createDataset ( args : CreateDatasetCommandInput , options ?: __HttpHandlerOptions ) : Promise < CreateDatasetCommandOutput > ;
753
+ createDataset ( args : CreateDatasetCommandInput , cb : ( err : any , data ?: CreateDatasetCommandOutput ) => void ) : void ;
754
+ createDataset (
755
+ args : CreateDatasetCommandInput ,
756
+ options : __HttpHandlerOptions ,
757
+ cb : ( err : any , data ?: CreateDatasetCommandOutput ) => void
758
+ ) : void ;
759
+
713
760
/**
714
761
* @see {@link CreateGatewayCommand }
715
762
*/
@@ -819,6 +866,17 @@ export interface IoTSiteWise {
819
866
cb : ( err : any , data ?: DeleteDashboardCommandOutput ) => void
820
867
) : void ;
821
868
869
+ /**
870
+ * @see {@link DeleteDatasetCommand }
871
+ */
872
+ deleteDataset ( args : DeleteDatasetCommandInput , options ?: __HttpHandlerOptions ) : Promise < DeleteDatasetCommandOutput > ;
873
+ deleteDataset ( args : DeleteDatasetCommandInput , cb : ( err : any , data ?: DeleteDatasetCommandOutput ) => void ) : void ;
874
+ deleteDataset (
875
+ args : DeleteDatasetCommandInput ,
876
+ options : __HttpHandlerOptions ,
877
+ cb : ( err : any , data ?: DeleteDatasetCommandOutput ) => void
878
+ ) : void ;
879
+
822
880
/**
823
881
* @see {@link DeleteGatewayCommand }
824
882
*/
@@ -1014,6 +1072,20 @@ export interface IoTSiteWise {
1014
1072
cb : ( err : any , data ?: DescribeDashboardCommandOutput ) => void
1015
1073
) : void ;
1016
1074
1075
+ /**
1076
+ * @see {@link DescribeDatasetCommand }
1077
+ */
1078
+ describeDataset (
1079
+ args : DescribeDatasetCommandInput ,
1080
+ options ?: __HttpHandlerOptions
1081
+ ) : Promise < DescribeDatasetCommandOutput > ;
1082
+ describeDataset ( args : DescribeDatasetCommandInput , cb : ( err : any , data ?: DescribeDatasetCommandOutput ) => void ) : void ;
1083
+ describeDataset (
1084
+ args : DescribeDatasetCommandInput ,
1085
+ options : __HttpHandlerOptions ,
1086
+ cb : ( err : any , data ?: DescribeDatasetCommandOutput ) => void
1087
+ ) : void ;
1088
+
1017
1089
/**
1018
1090
* @see {@link DescribeDefaultEncryptionConfigurationCommand }
1019
1091
*/
@@ -1271,6 +1343,20 @@ export interface IoTSiteWise {
1271
1343
cb : ( err : any , data ?: GetInterpolatedAssetPropertyValuesCommandOutput ) => void
1272
1344
) : void ;
1273
1345
1346
+ /**
1347
+ * @see {@link InvokeAssistantCommand }
1348
+ */
1349
+ invokeAssistant (
1350
+ args : InvokeAssistantCommandInput ,
1351
+ options ?: __HttpHandlerOptions
1352
+ ) : Promise < InvokeAssistantCommandOutput > ;
1353
+ invokeAssistant ( args : InvokeAssistantCommandInput , cb : ( err : any , data ?: InvokeAssistantCommandOutput ) => void ) : void ;
1354
+ invokeAssistant (
1355
+ args : InvokeAssistantCommandInput ,
1356
+ options : __HttpHandlerOptions ,
1357
+ cb : ( err : any , data ?: InvokeAssistantCommandOutput ) => void
1358
+ ) : void ;
1359
+
1274
1360
/**
1275
1361
* @see {@link ListAccessPoliciesCommand }
1276
1362
*/
@@ -1461,6 +1547,17 @@ export interface IoTSiteWise {
1461
1547
cb : ( err : any , data ?: ListDashboardsCommandOutput ) => void
1462
1548
) : void ;
1463
1549
1550
+ /**
1551
+ * @see {@link ListDatasetsCommand }
1552
+ */
1553
+ listDatasets ( args : ListDatasetsCommandInput , options ?: __HttpHandlerOptions ) : Promise < ListDatasetsCommandOutput > ;
1554
+ listDatasets ( args : ListDatasetsCommandInput , cb : ( err : any , data ?: ListDatasetsCommandOutput ) => void ) : void ;
1555
+ listDatasets (
1556
+ args : ListDatasetsCommandInput ,
1557
+ options : __HttpHandlerOptions ,
1558
+ cb : ( err : any , data ?: ListDatasetsCommandOutput ) => void
1559
+ ) : void ;
1560
+
1464
1561
/**
1465
1562
* @see {@link ListGatewaysCommand }
1466
1563
*/
@@ -1711,6 +1808,17 @@ export interface IoTSiteWise {
1711
1808
cb : ( err : any , data ?: UpdateDashboardCommandOutput ) => void
1712
1809
) : void ;
1713
1810
1811
+ /**
1812
+ * @see {@link UpdateDatasetCommand }
1813
+ */
1814
+ updateDataset ( args : UpdateDatasetCommandInput , options ?: __HttpHandlerOptions ) : Promise < UpdateDatasetCommandOutput > ;
1815
+ updateDataset ( args : UpdateDatasetCommandInput , cb : ( err : any , data ?: UpdateDatasetCommandOutput ) => void ) : void ;
1816
+ updateDataset (
1817
+ args : UpdateDatasetCommandInput ,
1818
+ options : __HttpHandlerOptions ,
1819
+ cb : ( err : any , data ?: UpdateDatasetCommandOutput ) => void
1820
+ ) : void ;
1821
+
1714
1822
/**
1715
1823
* @see {@link UpdateGatewayCommand }
1716
1824
*/
0 commit comments