list_by_status
Filter and retrieve Vultr storage gateways based on their operational status, such as active or pending, to monitor and manage cloud infrastructure resources.
Instructions
List storage gateways by status.
Args: status: Status to filter by (e.g., "active", "pending")
Returns: List of gateways with the specified status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
status | Yes |
Input Schema (JSON Schema)
{
"properties": {
"status": {
"title": "Status",
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
}