linode · Schema

FirewallUpdateRequest

Properties

Name Type Description
label string The label for the firewall.
status string The status of the firewall.
tags array Tags for the firewall.
View JSON Schema on GitHub

JSON Schema

linode-firewallupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FirewallUpdateRequest",
  "title": "FirewallUpdateRequest",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "minLength": 3,
      "maxLength": 32,
      "description": "The label for the firewall."
    },
    "status": {
      "type": "string",
      "enum": [
        "enabled",
        "disabled"
      ],
      "description": "The status of the firewall."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags for the firewall."
    }
  }
}