Skip to content

Commit 7afa56c

Browse files
committed
DSSProject: Document available export options
1 parent 3143ee4 commit 7afa56c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

dataikuapi/dss/project.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,19 @@ def get_export_stream(self, options = {}):
5454
Return a stream of the exported project
5555
You need to close the stream after download. Failure to do so will result in the DSSClient becoming unusable.
5656
57+
:param dict options: Dictionary of export options. The following options are available:
58+
59+
* exportUploads (boolean): Exports the data of Uploaded datasets - default False
60+
* exportManagedFS (boolean): Exports the data of managed Filesystem datasets - default False
61+
* exportAnalysisModels (boolean): Exports the models trained in analysis - default False
62+
* exportSavedModels (boolean): Exports the models trained in saved models - default False
63+
* exportManagedFolders (boolean): Exports the data of managed folders - default False
64+
* exportAllInputDatasets (boolean): Exports the data of all input datasets - default False
65+
* exportAllDatasets (boolean): Exports the data of all datasets - default False
66+
* exportAllInputManagedFolders (boolean): Exports the data of all input managed folders - default False
67+
* exportGitRepositoy (boolean): Exports the Git repository history - default False
68+
* exportInsightsData (boolean): Exports the data of static insights - default False
69+
5770
:returns: a file-like obbject that is a stream of the export archive
5871
:rtype: file-like
5972
"""

0 commit comments

Comments
 (0)