SOLVED Api dataset - Share type

Flavien

Cadet
Joined
Apr 24, 2019
Messages
3
Hi,

We want to configure share type for our dataset (Windows by default), how can we do this?
It seems we need to create a NFS share, is it okay? Afterward how can we connect them?

1556098373424.png


Here is my current code :
Code:
import json
import requests
server_api = "http://our-server/api/v1.0"

r = requests.post(
    server_api + "/storage/dataset/features/Projects/",
    auth=("xxxxx", "xxxxx"),
    headers={"Content-Type": "application/json"},
    verify=False,
    data=json.dumps({
        "name": "test_dataset"
    })
)


Thank you.
 
Top