Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
To switch between Dedicated NFS storage and standard file storage for a specified data center.
POST /api/v1/dev/exclusive_nfs/mount
1
-1
Success
{ "code": "Success", "msg": "" }
import requests headers = { "Authorization": "YOUR_TOKEN" } body = { "data_center": "westDC2", "mountable": 1 } url = "https://api.gpuhub.com/api/v1/dev/exclusive_nfs/mount" response = requests.post(url, json=body, headers=headers) print(response.content.decode())