update-network-volume
Modify network volume properties such as name and storage capacity within the RunPod MCP Server environment. Change volume size or rename existing volumes to meet evolving storage requirements.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | New name for the network volume | |
networkVolumeId | Yes | ID of the network volume to update | |
size | No | New size in GB (must be larger than current) |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "New name for the network volume",
"type": "string"
},
"networkVolumeId": {
"description": "ID of the network volume to update",
"type": "string"
},
"size": {
"description": "New size in GB (must be larger than current)",
"type": "number"
}
},
"required": [
"networkVolumeId"
],
"type": "object"
}