from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.storage.delete_storage_objects(id="<id>")
# Use the SDK ...Allows you to remove an object storage from a project.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.storage.delete_storage_objects(id="<id>")
# Use the SDK ...Was this page helpful?