from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: res = latitudesh.firewalls.get_all_firewall_assignments(filter_server="sv_Qk0Ryqv1dW36X", page_size=20, page_number=1) while res is not None: # Handle items res = res.next()
Returns a list of all servers assigned to one or more firewalls.
GET
/
firewalls
/
assignments
Python (SDK)
Copy
from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: res = latitudesh.firewalls.get_all_firewall_assignments(filter_server="sv_Qk0Ryqv1dW36X", page_size=20, page_number=1) while res is not None: # Handle items res = res.next()