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