from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.block_storage.delete_storage_volumes(id="<id>") # Use the SDK ...
Block Storage
Delete volume
Allows you to remove persistent storage from a project.
DELETE
/
storage
/
volumes
/
{id}
Python (SDK)
from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.block_storage.delete_storage_volumes(id="<id>") # Use the SDK ...