action digitalocean_image_actions_list { label: "List All Actions for an Image" description: "To retrieve all actions that have been executed on an image, send a GET request to `/v2/images/$IMAGE_ID/actions`." provider: digitalocean method: GET path: "/v2/images/{image_id}/actions" encoding: json input: { type: "object" properties: { image_id: { type: "integer" } } required: ["image_id"] additionalProperties: false } output: { type: "object" } }