Enum podman_api::opts::PodListFilter
source · pub enum PodListFilter {
}Expand description
Used to filter listed pods by one of the variants.
Variants§
Id(Id)
A pods’s ID
LabelKey(String)
Pods with key label.
LabelKeyVal(String, String)
Pods with key=value label.
NoLabelKey(String)
Pods without key label.
NoLabelKeyVal(String, String)
Pods without key=value label.
Name(String)
A pods’s name
Until(String)
List pods created before this timestamp. The
Network(String)
Name or full ID of network.
Status(PodStatus)
ContainerName(String)
Container name within the pod.
ContainerId(Id)
Container name within the pod.
ContainerStatus(ContainerStatus)
Container status within the pod.
ContainerNumber(usize)
Number of containers within the pod.