## Check Status `gpu_droplets.destroy_with_associated_resources.check_status(intdroplet_id) -> DestroyWithAssociatedResourceCheckStatusResponse` **get** `/v2/droplets/{droplet_id}/destroy_with_associated_resources/status` 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 - **droplet\_id:** `int` ### Returns - `class DestroyWithAssociatedResourceCheckStatusResponse` An objects containing information about a resources scheduled for deletion. - **completed\_at:** `Optional[datetime]` A time value given in ISO8601 combined date and time format indicating when the requested action was completed. - **droplet:** `Optional[DestroyedAssociatedResource]` An object containing information about a resource scheduled for deletion. - **failures:** `Optional[int]` A count of the associated resources that failed to be destroyed, if any. - **resources:** `Optional[Resources]` An object containing additional information about resource related to a Droplet requested to be destroyed. - **floating\_ips:** `Optional[List[DestroyedAssociatedResource]]` - **id:** `Optional[str]` The unique identifier for the resource scheduled for deletion. - **destroyed\_at:** `Optional[datetime]` A time value given in ISO8601 combined date and time format indicating when the resource was destroyed if the request was successful. - **error\_message:** `Optional[str]` A string indicating that the resource was not successfully destroyed and providing additional information. - **name:** `Optional[str]` The name of the resource scheduled for deletion. - **reserved\_ips:** `Optional[List[DestroyedAssociatedResource]]` - **id:** `Optional[str]` The unique identifier for the resource scheduled for deletion. - **destroyed\_at:** `Optional[datetime]` A time value given in ISO8601 combined date and time format indicating when the resource was destroyed if the request was successful. - **error\_message:** `Optional[str]` A string indicating that the resource was not successfully destroyed and providing additional information. - **name:** `Optional[str]` The name of the resource scheduled for deletion. - **snapshots:** `Optional[List[DestroyedAssociatedResource]]` - **id:** `Optional[str]` The unique identifier for the resource scheduled for deletion. - **destroyed\_at:** `Optional[datetime]` A time value given in ISO8601 combined date and time format indicating when the resource was destroyed if the request was successful. - **error\_message:** `Optional[str]` A string indicating that the resource was not successfully destroyed and providing additional information. - **name:** `Optional[str]` The name of the resource scheduled for deletion. - **volume\_snapshots:** `Optional[List[DestroyedAssociatedResource]]` - **id:** `Optional[str]` The unique identifier for the resource scheduled for deletion. - **destroyed\_at:** `Optional[datetime]` A time value given in ISO8601 combined date and time format indicating when the resource was destroyed if the request was successful. - **error\_message:** `Optional[str]` A string indicating that the resource was not successfully destroyed and providing additional information. - **name:** `Optional[str]` The name of the resource scheduled for deletion. - **volumes:** `Optional[List[DestroyedAssociatedResource]]` - **id:** `Optional[str]` The unique identifier for the resource scheduled for deletion. - **destroyed\_at:** `Optional[datetime]` A time value given in ISO8601 combined date and time format indicating when the resource was destroyed if the request was successful. - **error\_message:** `Optional[str]` A string indicating that the resource was not successfully destroyed and providing additional information. - **name:** `Optional[str]` The name of the resource scheduled for deletion. ### Example ```python from do_gradientai import GradientAI client = GradientAI() response = client.gpu_droplets.destroy_with_associated_resources.check_status( 1, ) print(response.completed_at) ```