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