action linode_get_firewall_device { label: "Firewall Device View" description: "Returns information for a Firewall Device, which assigns a Firewall\nto a Linode service (referred to as the Device's `entity`). Currently,\nonly Devices with an entity of type `linode` are accepted.\n" provider: linode method: GET path: "/networking/firewalls/{firewallId}/devices/{deviceId}" encoding: json output: { type: "object" description: "Associates a Firewall with a Linode service. A Firewall can be assigned to a single Linode service at a time. Additional disabled Firewalls can be assigned to a service, but they cannot be enabled if another active Firewall is already assigned to the same service.\n" properties: { created: { type: "string" format: "date-time" description: "When this Device was created.\n" } entity: { type: "object" description: "The Linode service that this Firewall has been applied to.\n" properties: { id: { type: "integer" description: "The entity's ID" } label: { type: "string" description: "The entity's label." } type: { type: "string" description: "The entity's type." enum: ["linode"] } url: { type: "string" format: "url" description: "The URL you can use to access this entity.\n" } } } id: { type: "integer" description: "The Device's unique ID\n" } updated: { type: "string" format: "date-time" description: "When this Device was last updated.\n" } } } }