Skip to main content

droplets_associated_resources_delete_status

Creates, updates, deletes, gets or lists a droplets_associated_resources_delete_status resource.

Overview

Namedroplets_associated_resources_delete_status
TypeResource
Iddigitalocean.droplets.droplets_associated_resources_delete_status

Fields

NameDatatypeDescription
completed_atstringA time value given in ISO8601 combined date and time format indicating when the requested action was completed.
dropletobjectAn object containing information about a resource scheduled for deletion.
failuresintegerA count of the associated resources that failed to be destroyed, if any.
resourcesobjectAn object containing additional information about resource related to a Droplet requested to be destroyed.

Methods

NameAccessible byRequired ParamsDescription
droplets_get_destroy_associated_resources_statusSELECTdroplet_idTo 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 }}';