action digitalocean_firewalls_get { label: "Retrieve an Existing Firewall" description: "To show information about an existing firewall, send a GET request to `/v2/firewalls/$FIREWALL_ID`." provider: digitalocean method: GET path: "/v2/firewalls/{firewall_id}" encoding: json input: { type: "object" properties: { firewall_id: { type: "string" format: "uuid" } } required: ["firewall_id"] additionalProperties: false } output: { properties: { firewall: { type: "object" } } } }