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