action digitalocean_droplets_list_associated_resources { label: "List Associated Resources for a Droplet" description: "To list the associated billable resources that can be destroyed along with a\nDroplet, send a GET request to the\n`/v2/droplets/$DROPLET_ID/destroy_with_associated_resources` endpoint.\n\nThe response will be a JSON object containing `snapshots`, `volumes`, and\n`volume_snapshots` keys. Each will be set to an array of objects containing\ninformation about the associated resources.\n" provider: digitalocean method: GET path: "/v2/droplets/{droplet_id}/destroy_with_associated_resources" encoding: json input: { type: "object" properties: { droplet_id: { type: "integer" } } required: ["droplet_id"] additionalProperties: false } output: { type: "object" } }