@@ -184,6 +184,11 @@ import {
184
184
DeleteSubscriptionTargetCommandInput ,
185
185
DeleteSubscriptionTargetCommandOutput ,
186
186
} from "./commands/DeleteSubscriptionTargetCommand" ;
187
+ import {
188
+ DeleteTimeSeriesDataPointsCommand ,
189
+ DeleteTimeSeriesDataPointsCommandInput ,
190
+ DeleteTimeSeriesDataPointsCommandOutput ,
191
+ } from "./commands/DeleteTimeSeriesDataPointsCommand" ;
187
192
import { GetAssetCommand , GetAssetCommandInput , GetAssetCommandOutput } from "./commands/GetAssetCommand" ;
188
193
import {
189
194
GetAssetTypeCommand ,
@@ -265,6 +270,11 @@ import {
265
270
GetSubscriptionTargetCommandInput ,
266
271
GetSubscriptionTargetCommandOutput ,
267
272
} from "./commands/GetSubscriptionTargetCommand" ;
273
+ import {
274
+ GetTimeSeriesDataPointCommand ,
275
+ GetTimeSeriesDataPointCommandInput ,
276
+ GetTimeSeriesDataPointCommandOutput ,
277
+ } from "./commands/GetTimeSeriesDataPointCommand" ;
268
278
import {
269
279
GetUserProfileCommand ,
270
280
GetUserProfileCommandInput ,
@@ -356,6 +366,16 @@ import {
356
366
ListTagsForResourceCommandInput ,
357
367
ListTagsForResourceCommandOutput ,
358
368
} from "./commands/ListTagsForResourceCommand" ;
369
+ import {
370
+ ListTimeSeriesDataPointsCommand ,
371
+ ListTimeSeriesDataPointsCommandInput ,
372
+ ListTimeSeriesDataPointsCommandOutput ,
373
+ } from "./commands/ListTimeSeriesDataPointsCommand" ;
374
+ import {
375
+ PostTimeSeriesDataPointsCommand ,
376
+ PostTimeSeriesDataPointsCommandInput ,
377
+ PostTimeSeriesDataPointsCommandOutput ,
378
+ } from "./commands/PostTimeSeriesDataPointsCommand" ;
359
379
import {
360
380
PutEnvironmentBlueprintConfigurationCommand ,
361
381
PutEnvironmentBlueprintConfigurationCommandInput ,
@@ -510,6 +530,7 @@ const commands = {
510
530
DeleteSubscriptionGrantCommand,
511
531
DeleteSubscriptionRequestCommand,
512
532
DeleteSubscriptionTargetCommand,
533
+ DeleteTimeSeriesDataPointsCommand,
513
534
GetAssetCommand,
514
535
GetAssetTypeCommand,
515
536
GetDataSourceCommand,
@@ -531,6 +552,7 @@ const commands = {
531
552
GetSubscriptionGrantCommand,
532
553
GetSubscriptionRequestDetailsCommand,
533
554
GetSubscriptionTargetCommand,
555
+ GetTimeSeriesDataPointCommand,
534
556
GetUserProfileCommand,
535
557
ListAssetRevisionsCommand,
536
558
ListDataSourceRunActivitiesCommand,
@@ -550,6 +572,8 @@ const commands = {
550
572
ListSubscriptionsCommand,
551
573
ListSubscriptionTargetsCommand,
552
574
ListTagsForResourceCommand,
575
+ ListTimeSeriesDataPointsCommand,
576
+ PostTimeSeriesDataPointsCommand,
553
577
PutEnvironmentBlueprintConfigurationCommand,
554
578
RejectPredictionsCommand,
555
579
RejectSubscriptionRequestCommand,
@@ -1164,6 +1188,23 @@ export interface DataZone {
1164
1188
cb : ( err : any , data ?: DeleteSubscriptionTargetCommandOutput ) => void
1165
1189
) : void ;
1166
1190
1191
+ /**
1192
+ * @see {@link DeleteTimeSeriesDataPointsCommand }
1193
+ */
1194
+ deleteTimeSeriesDataPoints (
1195
+ args : DeleteTimeSeriesDataPointsCommandInput ,
1196
+ options ?: __HttpHandlerOptions
1197
+ ) : Promise < DeleteTimeSeriesDataPointsCommandOutput > ;
1198
+ deleteTimeSeriesDataPoints (
1199
+ args : DeleteTimeSeriesDataPointsCommandInput ,
1200
+ cb : ( err : any , data ?: DeleteTimeSeriesDataPointsCommandOutput ) => void
1201
+ ) : void ;
1202
+ deleteTimeSeriesDataPoints (
1203
+ args : DeleteTimeSeriesDataPointsCommandInput ,
1204
+ options : __HttpHandlerOptions ,
1205
+ cb : ( err : any , data ?: DeleteTimeSeriesDataPointsCommandOutput ) => void
1206
+ ) : void ;
1207
+
1167
1208
/**
1168
1209
* @see {@link GetAssetCommand }
1169
1210
*/
@@ -1461,6 +1502,23 @@ export interface DataZone {
1461
1502
cb : ( err : any , data ?: GetSubscriptionTargetCommandOutput ) => void
1462
1503
) : void ;
1463
1504
1505
+ /**
1506
+ * @see {@link GetTimeSeriesDataPointCommand }
1507
+ */
1508
+ getTimeSeriesDataPoint (
1509
+ args : GetTimeSeriesDataPointCommandInput ,
1510
+ options ?: __HttpHandlerOptions
1511
+ ) : Promise < GetTimeSeriesDataPointCommandOutput > ;
1512
+ getTimeSeriesDataPoint (
1513
+ args : GetTimeSeriesDataPointCommandInput ,
1514
+ cb : ( err : any , data ?: GetTimeSeriesDataPointCommandOutput ) => void
1515
+ ) : void ;
1516
+ getTimeSeriesDataPoint (
1517
+ args : GetTimeSeriesDataPointCommandInput ,
1518
+ options : __HttpHandlerOptions ,
1519
+ cb : ( err : any , data ?: GetTimeSeriesDataPointCommandOutput ) => void
1520
+ ) : void ;
1521
+
1464
1522
/**
1465
1523
* @see {@link GetUserProfileCommand }
1466
1524
*/
@@ -1767,6 +1825,40 @@ export interface DataZone {
1767
1825
cb : ( err : any , data ?: ListTagsForResourceCommandOutput ) => void
1768
1826
) : void ;
1769
1827
1828
+ /**
1829
+ * @see {@link ListTimeSeriesDataPointsCommand }
1830
+ */
1831
+ listTimeSeriesDataPoints (
1832
+ args : ListTimeSeriesDataPointsCommandInput ,
1833
+ options ?: __HttpHandlerOptions
1834
+ ) : Promise < ListTimeSeriesDataPointsCommandOutput > ;
1835
+ listTimeSeriesDataPoints (
1836
+ args : ListTimeSeriesDataPointsCommandInput ,
1837
+ cb : ( err : any , data ?: ListTimeSeriesDataPointsCommandOutput ) => void
1838
+ ) : void ;
1839
+ listTimeSeriesDataPoints (
1840
+ args : ListTimeSeriesDataPointsCommandInput ,
1841
+ options : __HttpHandlerOptions ,
1842
+ cb : ( err : any , data ?: ListTimeSeriesDataPointsCommandOutput ) => void
1843
+ ) : void ;
1844
+
1845
+ /**
1846
+ * @see {@link PostTimeSeriesDataPointsCommand }
1847
+ */
1848
+ postTimeSeriesDataPoints (
1849
+ args : PostTimeSeriesDataPointsCommandInput ,
1850
+ options ?: __HttpHandlerOptions
1851
+ ) : Promise < PostTimeSeriesDataPointsCommandOutput > ;
1852
+ postTimeSeriesDataPoints (
1853
+ args : PostTimeSeriesDataPointsCommandInput ,
1854
+ cb : ( err : any , data ?: PostTimeSeriesDataPointsCommandOutput ) => void
1855
+ ) : void ;
1856
+ postTimeSeriesDataPoints (
1857
+ args : PostTimeSeriesDataPointsCommandInput ,
1858
+ options : __HttpHandlerOptions ,
1859
+ cb : ( err : any , data ?: PostTimeSeriesDataPointsCommandOutput ) => void
1860
+ ) : void ;
1861
+
1770
1862
/**
1771
1863
* @see {@link PutEnvironmentBlueprintConfigurationCommand }
1772
1864
*/
0 commit comments