@@ -2583,7 +2583,21 @@ dataset_object = client.find_dataset_object(
25832583 object_name = " brushwood_dog.jpg"
25842584)
25852585```
2586-
2586+ You can find a object of specified revision by version or revision_id.
2587+ ``` python
2588+ dataset_object = client.find_dataset_object(
2589+ dataset_id = " YOUR_DATASET_ID" ,
2590+ object_name = " brushwood_dog.jpg" ,
2591+ version = " YOUR_VERSION_NAME" # default is "latest"
2592+ )
2593+ ```
2594+ ``` python
2595+ dataset_object = client.find_dataset_object(
2596+ dataset_id = " YOUR_DATASET_ID" ,
2597+ object_name = " brushwood_dog.jpg" ,
2598+ revision_id = " YOUR_REVISION_ID" # 8 characters or more
2599+ )
2600+ ```
25872601Success response is the same as when created.
25882602
25892603### Get Dataset Object
@@ -2596,7 +2610,7 @@ dataset_objects = client.get_dataset_objects(dataset="YOUR_DATASET_NAME")
25962610
25972611The success response is the same as when created, but it is an array.
25982612
2599- You can filter by version and tags.
2613+ You can filter by version or revision_id and tags.
26002614
26012615``` python
26022616dataset_objects = client.get_dataset_objects(
@@ -2605,7 +2619,12 @@ dataset_objects = client.get_dataset_objects(
26052619 tags = [" cat" ],
26062620)
26072621```
2608-
2622+ ``` python
2623+ dataset_objects = client.get_dataset_objects(
2624+ dataset = " YOUR_DATASET_NAME" ,
2625+ revision_id = " YOUR_REVISION_ID" # 8 characters or more
2626+ )
2627+ ```
26092628### Download Dataset Objects
26102629
26112630Download dataset objects in the dataset to specific directories.
0 commit comments