action digitalocean_droplets_list_neighbors { label: "List Neighbors for a Droplet" description: "To retrieve a list of any \"neighbors\" (i.e. Droplets that are co-located on\nthe same physical hardware) for a specific Droplet, send a GET request to\n`/v2/droplets/$DROPLET_ID/neighbors`.\n\nThe results will be returned as a JSON object with a key of `droplets`. This\nwill be set to an array containing objects representing any other Droplets\nthat share the same physical hardware. An empty array indicates that the\nDroplet is not co-located any other Droplets associated with your account.\n" provider: digitalocean method: GET path: "/v2/droplets/{droplet_id}/neighbors" encoding: json input: { type: "object" properties: { droplet_id: { type: "integer" } } required: ["droplet_id"] additionalProperties: false } output: { type: "object" } }