from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.object_storage.delete_storage_buckets(id="<id>") # Use the SDK ...
Object Storage
Delete object storage
Allows you to remove an object storage from a project.
DELETE
/
storage
/
buckets
/
{id}
Python (SDK)
from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.object_storage.delete_storage_buckets(id="<id>") # Use the SDK ...