@@ -784,8 +784,8 @@ async def get_data(
784784
785785        Args: 
786786            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 ). 
789789            kwargs: Keyword arguments to be passed to the `Dataset.get_data()` method. 
790790
791791        Returns: 
@@ -809,9 +809,9 @@ async def export_data(
809809
810810        Args: 
811811            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 ). 
815815        """ 
816816        dataset  =  await  self .get_dataset (id = dataset_id , name = dataset_name , alias = dataset_alias )
817817
@@ -841,8 +841,8 @@ async def _push_data(
841841        Args: 
842842            data: The data to push to the `Dataset`. 
843843            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 ). 
846846            kwargs: Keyword arguments to be passed to the `Dataset.push_data()` method. 
847847        """ 
848848        dataset  =  await  self .get_dataset (id = dataset_id , name = dataset_name , alias = dataset_alias )
0 commit comments