update_group
Modify firewall group descriptions to maintain accurate network security documentation and organization within Vultr cloud infrastructure.
Instructions
Update a firewall group description.
Args: firewall_group_id: The firewall group ID or description (e.g., "web-servers" or UUID) description: New description for the firewall group
Returns: Status message confirming update
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | ||
firewall_group_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"title": "Description",
"type": "string"
},
"firewall_group_id": {
"title": "Firewall Group Id",
"type": "string"
}
},
"required": [
"firewall_group_id",
"description"
],
"type": "object"
}