add podman remote system df

Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
Brent Baude
2020-05-11 15:13:32 -05:00
parent 07f775d161
commit 03c29c357f
6 changed files with 63 additions and 3 deletions

View File

@ -190,3 +190,21 @@ type swagVersion struct {
entities.SystemVersionReport
}
}
// Disk usage
// swagger:response SystemDiskUse
type swagDiskUseResponse struct {
// in:body
Body struct {
entities.SystemDfReport
}
}
// Prune report
// swagger:response SystemPruneReport
type swagSystemPruneReport struct {
// in:body
Body struct {
entities.SystemPruneReport
}
}