File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 1616from .ml import DSSMLTask
1717from .analysis import DSSAnalysis
1818from .flow import DSSProjectFlow
19+ from .app import DSSAppManifest
1920from dataikuapi .utils import DataikuException
2021
2122
@@ -930,6 +931,15 @@ def to_schema_table_pair(x):
930931 return {"schema" :x .get ("databaseName" , None ), "table" :x ["table" ]}
931932 return [to_schema_table_pair (x ) for x in DSSFuture .get_result_wait_if_needed (self .client , ret )['tables' ]]
932933
934+ ########################################################
935+ # App designer
936+ ########################################################
937+
938+ def get_app_manifest (self ):
939+ raw_data = self .client ._perform_json ("GET" , "/projects/%s/app-manifest" % self .project_key )
940+ return DSSAppManifest (self .client , raw_data )
941+
942+
933943class TablesImportDefinition (object ):
934944 """
935945 Temporary structure holding the list of tables to import
You can’t perform that action at this time.
0 commit comments