Enum podman_api::opts::NetworkPruneFilter
source · pub enum NetworkPruneFilter {
LabelKey(String),
LabelKeyVal(String, String),
NoLabelKey(String),
NoLabelKeyVal(String, String),
Until(String),
}Expand description
Used to filter unused networks to remove.
Variants§
LabelKey(String)
Matches networks with key label.
LabelKeyVal(String, String)
Matches networks with key=value label.
NoLabelKey(String)
Matches networks without key label.
NoLabelKeyVal(String, String)
Matches networks without key=value label.
Until(String)
Matches all networks that were create before the given timestamp.