action digitalocean_droplets_list_neighbors_ids { label: "List All Droplet Neighbors" description: "To retrieve a list of all Droplets that are co-located on the same physical\nhardware, send a GET request to `/v2/reports/droplet_neighbors_ids`.\n\nThe results will be returned as a JSON object with a key of `neighbor_ids`.\nThis will be set to an array of arrays. Each array will contain a set of\nDroplet IDs for Droplets that share a physical server. An empty array\nindicates that all Droplets associated with your account are located on\nseparate physical hardware.\n" provider: digitalocean method: GET path: "/v2/reports/droplet_neighbors_ids" encoding: json output: { type: "object" properties: { neighbor_ids: { type: "array" description: "An array of arrays. Each array will contain a set of Droplet IDs for Droplets that share a physical server." items: { type: "array" items: { type: "integer" } } } } } }