from together import Together
client = Together()
volume = client.beta.clusters.storage.create(
volume_name="my-shared-volume",
size_tib=2,
region="us-west-2"
){
"volume_id": "<string>",
"volume_name": "<string>",
"size_tib": 123,
"status": "available"
}Instant Clusters supports long-lived, resizable in-DC shared storage with user data persistence. You can dynamically create and attach volumes to your cluster at cluster creation time, and resize as your data grows. All shared storage is backed by multi-NIC bare metal paths, ensuring high-throughput and low-latency performance for shared storage.
from together import Together
client = Together()
volume = client.beta.clusters.storage.create(
volume_name="my-shared-volume",
size_tib=2,
region="us-west-2"
){
"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?