diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-03-18 06:32:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 06:32:29 -0700 |
commit | 629183bd7f0073dfcbfa4d611abc62a9c5711dab (patch) | |
tree | 812ebb2c5a6685f1f333ec960365e97b4e91457f /pkg/domain/entities | |
parent | 77b3a2df645f2548f7bd2da85bbdb17e4de98310 (diff) | |
parent | 8ea02d0b6033b6ffdc68d38f3276410f4e2e8eb9 (diff) | |
download | podman-629183bd7f0073dfcbfa4d611abc62a9c5711dab.tar.gz podman-629183bd7f0073dfcbfa4d611abc62a9c5711dab.tar.bz2 podman-629183bd7f0073dfcbfa4d611abc62a9c5711dab.zip |
Merge pull request #9710 from jmguzik/network-prune-filters-http-api
Network prune filters for http api (compat and libpod)
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/network.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/domain/entities/network.go b/pkg/domain/entities/network.go index f66a7f575..a89501664 100644 --- a/pkg/domain/entities/network.go +++ b/pkg/domain/entities/network.go @@ -92,4 +92,6 @@ type NetworkPruneReport struct { // NetworkPruneOptions describes options for pruning // unused cni networks -type NetworkPruneOptions struct{} +type NetworkPruneOptions struct { + Filters map[string][]string +} |