droplets_associated_resources_delete_status
Creates, updates, deletes, gets or lists a droplets_associated_resources_delete_status
resource.
Overview
Name | droplets_associated_resources_delete_status |
Type | Resource |
Id | digitalocean.droplets.droplets_associated_resources_delete_status |
Fields
Name | Datatype | Description |
---|---|---|
completed_at | string | A time value given in ISO8601 combined date and time format indicating when the requested action was completed. |
droplet | object | An object containing information about a resource scheduled for deletion. |
failures | integer | A count of the associated resources that failed to be destroyed, if any. |
resources | object | An object containing additional information about resource related to a Droplet requested to be destroyed. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
droplets_get_destroy_associated_resources_status | SELECT | droplet_id | 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. |
SELECT
examples
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.
SELECT
completed_at,
droplet,
failures,
resources
FROM digitalocean.droplets.droplets_associated_resources_delete_status
WHERE droplet_id = '{{ droplet_id }}';