@@ -43,6 +43,16 @@ import {
43
43
CreateAssetTypeCommandInput ,
44
44
CreateAssetTypeCommandOutput ,
45
45
} from "./commands/CreateAssetTypeCommand" ;
46
+ import {
47
+ CreateDataProductCommand ,
48
+ CreateDataProductCommandInput ,
49
+ CreateDataProductCommandOutput ,
50
+ } from "./commands/CreateDataProductCommand" ;
51
+ import {
52
+ CreateDataProductRevisionCommand ,
53
+ CreateDataProductRevisionCommandInput ,
54
+ CreateDataProductRevisionCommandOutput ,
55
+ } from "./commands/CreateDataProductRevisionCommand" ;
46
56
import {
47
57
CreateDataSourceCommand ,
48
58
CreateDataSourceCommandInput ,
@@ -134,6 +144,11 @@ import {
134
144
DeleteAssetTypeCommandInput ,
135
145
DeleteAssetTypeCommandOutput ,
136
146
} from "./commands/DeleteAssetTypeCommand" ;
147
+ import {
148
+ DeleteDataProductCommand ,
149
+ DeleteDataProductCommandInput ,
150
+ DeleteDataProductCommandOutput ,
151
+ } from "./commands/DeleteDataProductCommand" ;
137
152
import {
138
153
DeleteDataSourceCommand ,
139
154
DeleteDataSourceCommandInput ,
@@ -230,6 +245,11 @@ import {
230
245
GetAssetTypeCommandInput ,
231
246
GetAssetTypeCommandOutput ,
232
247
} from "./commands/GetAssetTypeCommand" ;
248
+ import {
249
+ GetDataProductCommand ,
250
+ GetDataProductCommandInput ,
251
+ GetDataProductCommandOutput ,
252
+ } from "./commands/GetDataProductCommand" ;
233
253
import {
234
254
GetDataSourceCommand ,
235
255
GetDataSourceCommandInput ,
@@ -340,6 +360,11 @@ import {
340
360
ListAssetRevisionsCommandInput ,
341
361
ListAssetRevisionsCommandOutput ,
342
362
} from "./commands/ListAssetRevisionsCommand" ;
363
+ import {
364
+ ListDataProductRevisionsCommand ,
365
+ ListDataProductRevisionsCommandInput ,
366
+ ListDataProductRevisionsCommandOutput ,
367
+ } from "./commands/ListDataProductRevisionsCommand" ;
343
368
import {
344
369
ListDataSourceRunActivitiesCommand ,
345
370
ListDataSourceRunActivitiesCommandInput ,
@@ -581,6 +606,8 @@ const commands = {
581
606
CreateAssetFilterCommand,
582
607
CreateAssetRevisionCommand,
583
608
CreateAssetTypeCommand,
609
+ CreateDataProductCommand,
610
+ CreateDataProductRevisionCommand,
584
611
CreateDataSourceCommand,
585
612
CreateDomainCommand,
586
613
CreateEnvironmentCommand,
@@ -600,6 +627,7 @@ const commands = {
600
627
DeleteAssetCommand,
601
628
DeleteAssetFilterCommand,
602
629
DeleteAssetTypeCommand,
630
+ DeleteDataProductCommand,
603
631
DeleteDataSourceCommand,
604
632
DeleteDomainCommand,
605
633
DeleteEnvironmentCommand,
@@ -620,6 +648,7 @@ const commands = {
620
648
GetAssetCommand,
621
649
GetAssetFilterCommand,
622
650
GetAssetTypeCommand,
651
+ GetDataProductCommand,
623
652
GetDataSourceCommand,
624
653
GetDataSourceRunCommand,
625
654
GetDomainCommand,
@@ -646,6 +675,7 @@ const commands = {
646
675
GetUserProfileCommand,
647
676
ListAssetFiltersCommand,
648
677
ListAssetRevisionsCommand,
678
+ ListDataProductRevisionsCommand,
649
679
ListDataSourceRunActivitiesCommand,
650
680
ListDataSourceRunsCommand,
651
681
ListDataSourcesCommand,
@@ -842,6 +872,40 @@ export interface DataZone {
842
872
cb : ( err : any , data ?: CreateAssetTypeCommandOutput ) => void
843
873
) : void ;
844
874
875
+ /**
876
+ * @see {@link CreateDataProductCommand }
877
+ */
878
+ createDataProduct (
879
+ args : CreateDataProductCommandInput ,
880
+ options ?: __HttpHandlerOptions
881
+ ) : Promise < CreateDataProductCommandOutput > ;
882
+ createDataProduct (
883
+ args : CreateDataProductCommandInput ,
884
+ cb : ( err : any , data ?: CreateDataProductCommandOutput ) => void
885
+ ) : void ;
886
+ createDataProduct (
887
+ args : CreateDataProductCommandInput ,
888
+ options : __HttpHandlerOptions ,
889
+ cb : ( err : any , data ?: CreateDataProductCommandOutput ) => void
890
+ ) : void ;
891
+
892
+ /**
893
+ * @see {@link CreateDataProductRevisionCommand }
894
+ */
895
+ createDataProductRevision (
896
+ args : CreateDataProductRevisionCommandInput ,
897
+ options ?: __HttpHandlerOptions
898
+ ) : Promise < CreateDataProductRevisionCommandOutput > ;
899
+ createDataProductRevision (
900
+ args : CreateDataProductRevisionCommandInput ,
901
+ cb : ( err : any , data ?: CreateDataProductRevisionCommandOutput ) => void
902
+ ) : void ;
903
+ createDataProductRevision (
904
+ args : CreateDataProductRevisionCommandInput ,
905
+ options : __HttpHandlerOptions ,
906
+ cb : ( err : any , data ?: CreateDataProductRevisionCommandOutput ) => void
907
+ ) : void ;
908
+
845
909
/**
846
910
* @see {@link CreateDataSourceCommand }
847
911
*/
@@ -1138,6 +1202,23 @@ export interface DataZone {
1138
1202
cb : ( err : any , data ?: DeleteAssetTypeCommandOutput ) => void
1139
1203
) : void ;
1140
1204
1205
+ /**
1206
+ * @see {@link DeleteDataProductCommand }
1207
+ */
1208
+ deleteDataProduct (
1209
+ args : DeleteDataProductCommandInput ,
1210
+ options ?: __HttpHandlerOptions
1211
+ ) : Promise < DeleteDataProductCommandOutput > ;
1212
+ deleteDataProduct (
1213
+ args : DeleteDataProductCommandInput ,
1214
+ cb : ( err : any , data ?: DeleteDataProductCommandOutput ) => void
1215
+ ) : void ;
1216
+ deleteDataProduct (
1217
+ args : DeleteDataProductCommandInput ,
1218
+ options : __HttpHandlerOptions ,
1219
+ cb : ( err : any , data ?: DeleteDataProductCommandOutput ) => void
1220
+ ) : void ;
1221
+
1141
1222
/**
1142
1223
* @see {@link DeleteDataSourceCommand }
1143
1224
*/
@@ -1439,6 +1520,20 @@ export interface DataZone {
1439
1520
cb : ( err : any , data ?: GetAssetTypeCommandOutput ) => void
1440
1521
) : void ;
1441
1522
1523
+ /**
1524
+ * @see {@link GetDataProductCommand }
1525
+ */
1526
+ getDataProduct (
1527
+ args : GetDataProductCommandInput ,
1528
+ options ?: __HttpHandlerOptions
1529
+ ) : Promise < GetDataProductCommandOutput > ;
1530
+ getDataProduct ( args : GetDataProductCommandInput , cb : ( err : any , data ?: GetDataProductCommandOutput ) => void ) : void ;
1531
+ getDataProduct (
1532
+ args : GetDataProductCommandInput ,
1533
+ options : __HttpHandlerOptions ,
1534
+ cb : ( err : any , data ?: GetDataProductCommandOutput ) => void
1535
+ ) : void ;
1536
+
1442
1537
/**
1443
1538
* @see {@link GetDataSourceCommand }
1444
1539
*/
@@ -1827,6 +1922,23 @@ export interface DataZone {
1827
1922
cb : ( err : any , data ?: ListAssetRevisionsCommandOutput ) => void
1828
1923
) : void ;
1829
1924
1925
+ /**
1926
+ * @see {@link ListDataProductRevisionsCommand }
1927
+ */
1928
+ listDataProductRevisions (
1929
+ args : ListDataProductRevisionsCommandInput ,
1930
+ options ?: __HttpHandlerOptions
1931
+ ) : Promise < ListDataProductRevisionsCommandOutput > ;
1932
+ listDataProductRevisions (
1933
+ args : ListDataProductRevisionsCommandInput ,
1934
+ cb : ( err : any , data ?: ListDataProductRevisionsCommandOutput ) => void
1935
+ ) : void ;
1936
+ listDataProductRevisions (
1937
+ args : ListDataProductRevisionsCommandInput ,
1938
+ options : __HttpHandlerOptions ,
1939
+ cb : ( err : any , data ?: ListDataProductRevisionsCommandOutput ) => void
1940
+ ) : void ;
1941
+
1830
1942
/**
1831
1943
* @see {@link ListDataSourceRunActivitiesCommand }
1832
1944
*/
0 commit comments