from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.private_networks.remove_assignment(assignment_id="vnasg_LA73qk8WDaJ2o") # Use the SDK ...
Private Networks
Delete VLAN assignment
Allow you to remove a Virtual Network assignment.
DELETE
/
virtual_networks
/
assignments
/
{assignment_id}
Python (SDK)
from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: latitudesh.private_networks.remove_assignment(assignment_id="vnasg_LA73qk8WDaJ2o") # Use the SDK ...