Authorizations
Path Parameters
Response
204
No Content
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.storage.delete_filesystem(filesystem_id="fs_123")
# Use the SDK ...
Allows you to remove persistent storage from a project.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.storage.delete_filesystem(filesystem_id="fs_123")
# Use the SDK ...
No Content
Was this page helpful?