Authorizations
Path Parameters
The Firewall ID
Response
204
No Content
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 ...
Delete a firewall
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 ...
The Firewall ID
No Content
Was this page helpful?