Authorizations
Path Parameters
The virtual network ID
Response
204
No Content
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.private_networks.delete_virtual_network(vlan_id=793185)
# Use the SDK ...
Delete virtual network
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
latitudesh.private_networks.delete_virtual_network(vlan_id=793185)
# Use the SDK ...
The virtual network ID
No Content
Was this page helpful?