volume_update
Modify volume properties such as name using a structured input schema for managing Railway infrastructure efficiently.
Instructions
Update a volume's properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | New name for the volume | |
volumeId | Yes | ID of the volume to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "New name for the volume",
"type": "string"
},
"volumeId": {
"description": "ID of the volume to update",
"type": "string"
}
},
"required": [
"volumeId",
"name"
],
"type": "object"
}