from together import Together
client = Together()
volumes = client.beta.clusters.storage.list()
print(volumes){
"volumes": [
{
"volume_id": "<string>",
"volume_name": "<string>",
"size_tib": 123,
"status": "available"
}
]
}List all shared volumes.
from together import Together
client = Together()
volumes = client.beta.clusters.storage.list()
print(volumes){
"volumes": [
{
"volume_id": "<string>",
"volume_name": "<string>",
"size_tib": 123,
"status": "available"
}
]
}Was this page helpful?