action digitalocean_floating_ips_action_get { label: "Retrieve an Existing Floating IP Action" description: "To retrieve the status of a floating IP action, send a GET request to `/v2/floating_ips/$FLOATING_IP/actions/$ACTION_ID`." provider: digitalocean method: GET path: "/v2/floating_ips/{floating_ip}/actions/{action_id}" encoding: json input: { type: "object" properties: { action_id: { type: "integer" } floating_ip: { type: "string" format: "ipv4" } } required: ["action_id", "floating_ip"] additionalProperties: false } output: { properties: { action: { type: "object" } } } }