get_availability
Check available instance plans in a specific Vultr region to verify resource options before deployment.
Instructions
Get availability information for a specific region.
Args: region_id: The region ID to check availability for (e.g., "ewr", "lax")
Returns: Availability information including: - available_plans: List of available plan IDs in this region
This is useful for checking which instance plans are available in a specific region before creating instances.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
region_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"region_id": {
"title": "Region Id",
"type": "string"
}
},
"required": [
"region_id"
],
"type": "object"
}