@@ -784,8 +784,8 @@ async def get_data(
784
784
785
785
Args:
786
786
dataset_id: The ID of the `Dataset`.
787
- dataset_name: The name of the `Dataset` (global scope).
788
- dataset_alias: The alias of the `Dataset` (run scope, unnamed).
787
+ dataset_name: The name of the `Dataset` (global scope, named storage ).
788
+ dataset_alias: The alias of the `Dataset` (run scope, unnamed storage ).
789
789
kwargs: Keyword arguments to be passed to the `Dataset.get_data()` method.
790
790
791
791
Returns:
@@ -809,9 +809,9 @@ async def export_data(
809
809
810
810
Args:
811
811
path: The destination file path. Must end with '.json' or '.csv'.
812
- dataset_id: The ID of the Dataset to export from. If None, uses `name` parameter instead.
813
- dataset_name: The name of the Dataset to export from (global scope). If None, uses `id` parameter instead .
814
- dataset_alias: The alias of the Dataset to export from (run scope, unnamed).
812
+ dataset_id: The ID of the Dataset to export from.
813
+ dataset_name: The name of the Dataset to export from (global scope, named storage) .
814
+ dataset_alias: The alias of the Dataset to export from (run scope, unnamed storage ).
815
815
"""
816
816
dataset = await self .get_dataset (id = dataset_id , name = dataset_name , alias = dataset_alias )
817
817
@@ -841,8 +841,8 @@ async def _push_data(
841
841
Args:
842
842
data: The data to push to the `Dataset`.
843
843
dataset_id: The ID of the `Dataset`.
844
- dataset_name: The name of the `Dataset` (global scope).
845
- dataset_alias: The alias of the `Dataset` (run scope, unnamed).
844
+ dataset_name: The name of the `Dataset` (global scope, named storage ).
845
+ dataset_alias: The alias of the `Dataset` (run scope, unnamed storage ).
846
846
kwargs: Keyword arguments to be passed to the `Dataset.push_data()` method.
847
847
"""
848
848
dataset = await self .get_dataset (id = dataset_id , name = dataset_name , alias = dataset_alias )
0 commit comments