create-network-volume
Create a network storage volume on RunPod to persist data across compute sessions, with configurable size and data center location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataCenterId | Yes | Data center ID | |
name | Yes | Name for the network volume | |
size | Yes | Size in GB (1-4000) |
Input Schema (JSON Schema)
{
"properties": {
"dataCenterId": {
"description": "Data center ID",
"type": "string"
},
"name": {
"description": "Name for the network volume",
"type": "string"
},
"size": {
"description": "Size in GB (1-4000)",
"type": "number"
}
},
"required": [
"name",
"size",
"dataCenterId"
],
"type": "object"
}