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