@@ -413,8 +413,11 @@ async def open_dataset(
413413
414414 Args:
415415 id: The ID of the dataset to open. If provided, searches for existing dataset by ID.
416- name: The name of the dataset for named storages. Mutually exclusive with alias.
417- alias: The alias of the dataset for unnamed storages. Mutually exclusive with name.
416+ Mutually exclusive with name and alias.
417+ name: The name of the dataset to open (global scope, persists across runs).
418+ Mutually exclusive with id and alias.
419+ alias: The alias of the dataset to open (run scope, creates unnamed storage).
420+ Mutually exclusive with id and name.
418421 force_cloud: If set to `True` then the Apify cloud storage is always used. This way it is possible
419422 to combine local and cloud storage.
420423
@@ -449,8 +452,11 @@ async def open_key_value_store(
449452
450453 Args:
451454 id: The ID of the KVS to open. If provided, searches for existing KVS by ID.
452- name: The name of the KVS for named storages. Mutually exclusive with alias.
453- alias: The alias of the KVS for unnamed storages. Mutually exclusive with name.
455+ Mutually exclusive with name and alias.
456+ name: The name of the KVS to open (global scope, persists across runs).
457+ Mutually exclusive with id and alias.
458+ alias: The alias of the KVS to open (run scope, creates unnamed storage).
459+ Mutually exclusive with id and name.
454460 force_cloud: If set to `True` then the Apify cloud storage is always used. This way it is possible
455461 to combine local and cloud storage.
456462
@@ -485,9 +491,12 @@ async def open_request_queue(
485491 crawling orders.
486492
487493 Args:
488- id: The ID of the request queue to open. If provided, searches for existing request queue by ID.
489- name: The name of the request queue for named storages. Mutually exclusive with alias.
490- alias: The alias of the request queue for unnamed storages. Mutually exclusive with name.
494+ id: The ID of the RQ to open. If provided, searches for existing RQ by ID.
495+ Mutually exclusive with name and alias.
496+ name: The name of the RQ to open (global scope, persists across runs).
497+ Mutually exclusive with id and alias.
498+ alias: The alias of the RQ to open (run scope, creates unnamed storage).
499+ Mutually exclusive with id and name.
491500 force_cloud: If set to `True` then the Apify cloud storage is always used. This way it is possible
492501 to combine local and cloud storage.
493502
0 commit comments