Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions encord/user_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,14 +264,10 @@ def create_dataset(
) -> CreateDatasetResponse:
"""
Args:
dataset_title:
Title of dataset.
dataset_type:
StorageLocation type where data will be stored.
dataset_description:
Optional description of the dataset.
create_backing_folder:
Specifies whether the Folder is mirrored to the Dataset. Mirrored Datasets have data synced between the Folder and Dataset. Mirrored Datasets are great for simple Projects, but we recommend non-Mirrored Datasets for more complex Projects or for data at scale. The default is False.
dataset_title: Title of dataset.
dataset_type: StorageLocation type where data will be stored.
dataset_description: Optional description of the dataset.
create_backing_folder: Specifies whether the Folder is mirrored to the Dataset. Mirrored Datasets have data synced between the Folder and Dataset. Mirrored Datasets are great for simple Projects, but we recommend non-Mirrored Datasets for more complex Projects or for data at scale. The default is True.
Returns:
CreateDatasetResponse
"""
Expand Down Expand Up @@ -1204,8 +1200,7 @@ def create_storage_folder(
client_metadata: Optional arbitrary metadata to be associated with the folder. Should be a dictionary
that is JSON-serializable.
parent_folder: The parent folder of the folder; or `None` if the folder is to be created at the root level.
cloud_synced_folder_params: Passing this will create cloud synced folder, leaving this a `None` will create
a normal folder for further data uploads.
cloud_synced_folder_params: Passing this parameter creates a cloud-synced folder. Specifying `None` creates a normal folder for data uploads.

Returns:
The created storage folder. See :class:`encord.storage.StorageFolder` for details.
Expand Down
Loading