jaisejose1123

Results 6 comments of jaisejose1123

Implemented VM infrastructures inside the VM controller.

Implemented VM infrastructures inside the VM controller. **Api screen short for multiple id's** ![image](https://github.com/ManageIQ/manageiq-api/assets/160720663/35cf596b-c5fb-43d0-a5cb-8a8e3d78bda7) **Backend result while calling this above api** ![image](https://github.com/ManageIQ/manageiq-api/assets/160720663/bf919644-8bdb-472d-9273-d70323661943) **Api screen short for multiple id's** ![image](https://github.com/ManageIQ/manageiq-api/assets/160720663/b0cab21c-ee89-47a5-a59c-86822da0ddda) **Backend...

When calling a single ID instead of multiple IDs, it should provide additional data. Consequently, we implemented APIs with different actions. The below image will show the result while calling...

By utilizing the following GET API, we can gather the VM resources for the reconfigure field form for single id Api http://localhost:3000/api/vms/4671?attributes=name,num_cpu,cpu_cores_per_socket,mem_cpu,vendor,type,host.name,hardware.guest_devices,lans,hardware.disks,hardware.cdroms Response ![image](https://github.com/ManageIQ/manageiq-api/assets/160720663/7d9b3b98-989e-45d7-a808-8cf3e497fd9a) by this we can collect all...

For multiple IDs, we can retrieve the data using bulk querying post Apihttp://localhost:3000/api/vms?attributes=name,num_cpu,cpu_cores_per_socket,mem_cpu,vendor,type,host.name,hardware.guest_devices,lans,hardware.disks,hardware.cdroms by passing json { "action" : "query", "resources" : [ { "id" : 2983 }, { "id"...

http://localhost:3000/api/vms?expand=resources&attributes=name,num_cpu,cpu_cores_per_socket,mem_cpu,vendor,type,host.name,hardware.guest_devices,lans,hardware.disks,hardware.cdroms&filter[]=id=[2983,4671] Updated the multiple id's api to Get request Resopnse ![image](https://github.com/ManageIQ/manageiq-api/assets/160720663/4459e8c3-f73b-4877-bf4c-92f867c51baa)