Skip to main content
PUT
/
compute
/
clusters
/
storage
/
volumes
Together AI SDK (v2)
from together import Together
client = Together()

volume = client.beta.clusters.storage.update(
  volume_id="12345-67890-12345-67890",
  size_tib=3
)
print(volume)
{
  "volume_id": "<string>",
  "volume_name": "<string>",
  "size_tib": 123,
  "status": "available"
}

Authorizations

Authorization
string
header
default:default
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
volume_id
string

ID of the volume to update.

size_tib
integer

Size of the volume in whole tebibytes (TiB).

Response

200 - application/json

OK

volume_id
string
required

ID of the volume.

volume_name
string
required

Provided name of the volume.

size_tib
integer
required

Size of the volume in whole tebibytes (TiB).

status
enum<string>
required

Deployment status of the volume.

Available options:
available,
bound,
provisioning