You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have generated a server from the Podman Swagger config file. In my configuration file for the API I have all the different endpoints disabled by default as per the standard Swagger practice:
if api.SystemSystemInfoLibpodHandler == nil {
api.SystemSystemInfoLibpodHandler = system.SystemInfoLibpodHandlerFunc(func(params system.SystemInfoLibpodParams) middleware.Responder {
return middleware.NotImplemented("operation system.SystemInfoLibpod has not yet been implemented")
})
}
I'm struggling to correlate these disabled functions with the Podman functions that should be called. In short, is there a clear way to identify which function should be called by the above API endpoint to trigger that Podman function?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have generated a server from the Podman Swagger config file. In my configuration file for the API I have all the different endpoints disabled by default as per the standard Swagger practice:
I'm struggling to correlate these disabled functions with the Podman functions that should be called. In short, is there a clear way to identify which function should be called by the above API endpoint to trigger that Podman function?
Beta Was this translation helpful? Give feedback.
All reactions