Volumes
/volumes/types
Volumes
/volumes/types
Get list of supported storage volumes.
GET
/
volumes
/
types
curl --request GET \
--url https://api.shadeform.ai/v1/volumes/types \
--header 'X-API-KEY: <api-key>'
{
"volume_types": [
{
"cloud": "hyperstack",
"region": "canada-1",
"supports_multi_mount": true,
"fixed_size": true,
"price_per_gb_per_hour": "0.0001"
}
]
}
Authorizations
Response
200 - application/json
Returns an VolumesTypesResponse object.
Specifies the underlying cloud provider. See this explanation for more details.
Available options:
aws
, azure
, lambdalabs
, tensordock
, runpod
, latitude
, jarvislabs
, oblivus
, paperspace
, datacrunch
, massedcompute
, vultr
Example:
"hyperstack"
Specifies the region.
Example:
"canada-1"
Denotes whether the volume supports multiple instances mounting to it at the same time.
Example:
true
Denotes whether the volume is fixed in size or elastically scaling.
Example:
true
Price of the specified volume type per GB per hour
Example:
"0.0001"
curl --request GET \
--url https://api.shadeform.ai/v1/volumes/types \
--header 'X-API-KEY: <api-key>'
{
"volume_types": [
{
"cloud": "hyperstack",
"region": "canada-1",
"supports_multi_mount": true,
"fixed_size": true,
"price_per_gb_per_hour": "0.0001"
}
]
}