pydo.droplets.get_destroy_associated_resources_status()

Description

To check on the status of a request to destroy a Droplet with its associated resources, send a GET request to the /v2/droplets/$DROPLET_ID/destroy_with_associated_resources/status endpoint.

Parameters

Name Type Required Description Default Value
droplet_id integer True A unique identifier for a Droplet instance.

Request Sample

import os
from pydo import Client

client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))

resp = client.droplets.get_destroy_associated_resources_status(droplet_id=5624512)

Responses

See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.

A JSON object containing containing the status of a request to destroy a Droplet and its associated resources.

Click to expand an example response.
{
  "droplet": {
    "id": "187000742",
    "name": "ubuntu-s-1vcpu-1gb-nyc1-01",
    "destroyed_at": "2020-04-01T18:11:49Z"
  },
  "resources": {
    "reserved_ips": [
      {
        "id": "6186916",
        "name": "45.55.96.47",
        "destroyed_at": "2020-04-01T18:11:44Z"
      }
    ],
    "floating_ips": [
      {
        "id": "6186916",
        "name": "45.55.96.47",
        "destroyed_at": "2020-04-01T18:11:44Z"
      }
    ],
    "snapshots": [
      {
        "id": "61486916",
        "name": "ubuntu-s-1vcpu-1gb-nyc1-01-1585758823330",
        "destroyed_at": "2020-04-01T18:11:44Z"
      }
    ],
    "volumes": [],
    "volume_snapshots": [
      {
        "id": "edb0478d-7436-11ea-86e6-0a58ac144b91",
        "name": "volume-nyc1-01-1585758983629",
        "destroyed_at": "2020-04-01T18:11:44Z"
      }
    ]
  },
  "completed_at": "2020-04-01T18:11:49Z",
  "failures": 0
}

Unauthorized

Click to expand an example response.
{
  "id": "unauthorized",
  "message": "Unable to authenticate you."
}

The resource was not found.

Click to expand an example response.
{
  "id": "not_found",
  "message": "The resource you requested could not be found."
}

API Rate limit exceeded

Click to expand an example response.
{
  "id": "too_many_requests",
  "message": "API Rate limit exceeded."
}

Server error.

Click to expand an example response.
{
  "id": "server_error",
  "message": "Unexpected server-side error"
}

Unexpected error

Click to expand an example response.
{
  "id": "example_error",
  "message": "some error message"
}