from together import Together
client = Together()
volume = client.beta.clusters.storage.retrieve("volume_id")
print(volume){
"volume_id": "<string>",
"volume_name": "<string>",
"size_tib": 123,
"status": "available"
}Retrieve information about a specific shared volume.
from together import Together
client = Together()
volume = client.beta.clusters.storage.retrieve("volume_id")
print(volume){
"volume_id": "<string>",
"volume_name": "<string>",
"size_tib": 123,
"status": "available"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?