action digitalocean_floating_ips_get { label: "Retrieve an Existing Floating IP" description: "To show information about a floating IP, send a GET request to `/v2/floating_ips/$FLOATING_IP_ADDR`." provider: digitalocean method: GET path: "/v2/floating_ips/{floating_ip}" encoding: json input: { type: "object" properties: { floating_ip: { type: "string" format: "ipv4" } } required: ["floating_ip"] additionalProperties: false } output: { type: "object" properties: { floating_ip: { type: "object" properties: { droplet: { description: "The Droplet that the floating IP has been assigned to. When you query a floating IP, if it is assigned to a Droplet, the entire Droplet object will be returned. If it is not assigned, the value will be null." type: "object" } ip: { type: "string" format: "ipv4" description: "The public IP address of the floating IP. It also serves as its identifier." } locked: { type: "boolean" description: "A boolean value indicating whether or not the floating IP has pending actions preventing new ones from being submitted." } project_id: { type: "string" format: "uuid" description: "The UUID of the project to which the reserved IP currently belongs." } region: { type: "object" } } } } } }