Delete a Volume Snapshot
gpu_droplets.volumes.snapshots.delete(strsnapshot_id)
/v2/volumes/snapshots/{snapshot_id}
To delete a volume snapshot, send a DELETE request to
/v2/volumes/snapshots/$VOLUME_SNAPSHOT_ID.
A status of 204 will be given. This indicates that the request was processed successfully, but that no response body is needed.
Parameters
snapshot_id: str
Delete a Volume Snapshot
from gradient import Gradient
client = Gradient(
access_token="My Access Token",
)
client.gpu_droplets.volumes.snapshots.delete(
"fbe805e8-866b-11e6-96bf-000f53315a41",
)