from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: res = latitudesh.operating_systems.list(page_size=20, page_number=1) while res is not None: # Handle items res = res.next()
Lists all operating systems available to deploy and reinstall.
GET
/
plans
/
operating_systems
Python (SDK)
Copy
from latitudesh_python_sdk import Latitudeshimport oswith Latitudesh( bearer=os.getenv("LATITUDESH_BEARER", ""),) as latitudesh: res = latitudesh.operating_systems.list(page_size=20, page_number=1) while res is not None: # Handle items res = res.next()