volume_list
Manage and audit persistent storage configurations by listing all volumes in a project. Use this tool to view data volumes, track storage usage, and prepare for volume creation.
Instructions
[API] List all volumes in a project
⚡️ Best for: ✓ Viewing persistent storage configurations ✓ Managing data volumes ✓ Auditing storage usage
→ Prerequisites: project_list
→ Next steps: volume_create
→ Related: service_info, database_deploy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | ID of the project to list volumes for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "ID of the project to list volumes for",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}