Feilong is a open source z/VM cloud connector project under the Open Mainframe Project umbrella that will accelerate the z/VM adoption, extending its ecosystem and its user experience. It provides a set of APIs to operate z/VM including guest, image, network, volume etc.
Here are the CRUD methods related to minidisks handling:
POST /guests/{userid}/disks
PUT /guests/{userid}/disks
DELETE /guests/{userid}/disks
We are missing a Read function for
GET /guests/{userid}/disks
.Here is how it appears in the source code of the python client library:
To fix this, I wrote a PR to add the missing API call.