Skip to content
Docs

Check Volume Update Availability

PATCH/v1/compute/volumes/{volume_id}/availability

Check Volume Update Availability

Path ParametersExpand Collapse
volume_id: string
Body ParametersJSONExpand Collapse
name: optional string

Name of the Volume.

size: optional number

Size of the Volume in GB.

tags: optional array of string

Tags to attach to the Volume.

Check Volume Update Availability

curl https://api.nirvanalabs.io/v1/compute/volumes/$VOLUME_ID/availability \
    -X PATCH \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $NIRVANA_LABS_API_KEY" \
    -d '{
          "name": "my-data-volume",
          "size": 100,
          "tags": [
            "production",
            "ethereum"
          ]
        }'
Returns Examples