from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.firewalls.delete(firewall_id="fw_123")
# Use the SDK ...from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.firewalls.delete(firewall_id="fw_123")
# Use the SDK ...Was this page helpful?