@@ -2426,7 +2426,7 @@ There are type-specific methods. but they can be used in the same way.
24262426
24272427``` python
24282428dataset_object = client.create_image_dataset_object(
2429- dataset_id = " YOUR_DATASET_ID " ,
2429+ dataset_version_id = " YOUR_DATASET_VERSION_ID " ,
24302430 name = " brushwood_dog.jpg" ,
24312431 file_path = " ./brushwood_dog.jpg" ,
24322432)
@@ -2466,7 +2466,7 @@ Success response is the same as when created.
24662466Get all dataset object in the dataset. (Up to 1000 tasks)
24672467
24682468``` python
2469- dataset_objects = client.get_dataset_objects(dataset_id = " YOUR_DATASET_ID " )
2469+ dataset_objects = client.get_dataset_objects(dataset_version_id = " YOUR_DATASET_VERSION_ID " )
24702470```
24712471
24722472The success response is the same as when created, but it is an array.
@@ -2475,7 +2475,7 @@ You can filter by keywords.
24752475
24762476``` python
24772477dataset_objects = client.get_dataset_objects(
2478- dataset_id = " YOUR_DATASET_ID " , keyword = " dog"
2478+ dataset_version_id = " YOUR_DATASET_VERSION_ID " , keyword = " dog"
24792479)
24802480```
24812481
@@ -2503,7 +2503,7 @@ Get all import histories in the dataset. (Up to 1000 tasks)
25032503
25042504``` python
25052505datasets = client.get_dataset_object_import_histories(
2506- dataset_id = " YOUR_DATASET_ID "
2506+ dataset_version_id = " YOUR_DATASET_VERSION_ID "
25072507)
25082508```
25092509
0 commit comments