detach
Detach block storage volumes from Vultr cloud instances using volume labels or IDs, with optional live detachment to avoid instance reboots.
Instructions
Detach block storage volume from its instance.
Smart identifier resolution: Use volume label or ID.
Args: volume_identifier: Volume label or ID to detach live: Whether to detach without rebooting the instance (default: True)
Returns: Success confirmation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
live | No | ||
volume_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"live": {
"default": true,
"title": "Live",
"type": "boolean"
},
"volume_identifier": {
"title": "Volume Identifier",
"type": "string"
}
},
"required": [
"volume_identifier"
],
"type": "object"
}