Description of problem: In the oVirt Open Virtualization Manager, the operating system for a VM is displayed with a full textual value, but the OS type is a short value in the SDK. For example, an operating system type of "rhel_6x64" is displayed as "Red Hat Enterprise Linux 6.x x64" in the manager. This mapping is not available in the REST API/SDK. <Juan Hernandez> The long name of the operating system isn't available in the RESTAPI, and thus it isn't available in any of the SDKs either. The GUI can obtain it because it has direct access to the backend, bypassing the RESTAPI. In the future the GUI won't be allowed to bypass the the RESTAPI, so eventually we will have to make it available in the RESTAPI. </Juan Hernandez> Ideally, I would like to have this feature for RHEV/SAP LVM adapter due by mid-March. If not, I will need a workaround. Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
Since the mapping and also the value is configurable in osinfo on the engine we would probably need a specific new query to get the complete mapping id, short name and full name.
From the API modeling point of view I think that we should add a read only top level collection /operatingsystems with the following content: <operating_systems> <operating_system href="/operatingsystems/rhel_6" id="rhel_6"> <name>Red Hat Enterprise Linux 6.x</name> </operating_system> <operating_system href="/operatingsystems/windows_7" id="windows_7"> <name>Windows 7</name> </operating_system> ... </operating_systems> This is enough for the requirement in the description, and gives us room for future enhancements. We should also deprecate (but preserve, for backwards compatibility) the existing <os_type> elements inside the /capabilities resource.
this should be reviewed for 3.6 as part of moving the GUI to be on top of the REST API einav - i think there is some tracker bug?
(In reply to Itamar Heim from comment #4) > einav - i think there is some tracker bug? added.
Verified on oVirt 3.6.0-1 The added content is following: <operating_systems> ... <operating_system href= "/api/operatingsystems/19" id="19"> <name>rhel_6x64</name> <description>Red Hat Enterprise Linux 6.x x64</description> </operating_system> <operating_system href= "/api/operatingsystems/1003" id="1003"> <name>rhel_6_ppc64</name> <description>Red Hat Enterprise Linux 6.x</description> </operating_system> ... </operating_systems>
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://rhn.redhat.com/errata/RHEA-2016-0376.html