@@ -413,8 +413,11 @@ async def open_dataset(
413
413
414
414
Args:
415
415
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.
418
421
force_cloud: If set to `True` then the Apify cloud storage is always used. This way it is possible
419
422
to combine local and cloud storage.
420
423
@@ -449,8 +452,11 @@ async def open_key_value_store(
449
452
450
453
Args:
451
454
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.
454
460
force_cloud: If set to `True` then the Apify cloud storage is always used. This way it is possible
455
461
to combine local and cloud storage.
456
462
@@ -485,9 +491,12 @@ async def open_request_queue(
485
491
crawling orders.
486
492
487
493
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.
491
500
force_cloud: If set to `True` then the Apify cloud storage is always used. This way it is possible
492
501
to combine local and cloud storage.
493
502
0 commit comments