Enum docker_api::api::task::opts::TaskFilter
source · pub enum TaskFilter {
DesiredState(TaskStateFilter),
Id(String),
LabelKey(String),
Label(String, String),
Name(String),
Node(String),
Service(String),
}
Available on crate feature
swarm
only.Variants§
DesiredState(TaskStateFilter)
The state that the task should be in.
Id(String)
The ID of the config.
LabelKey(String)
Label in the form of label=key
Label(String, String)
Label in the form of label=key=val
Name(String)
The name of the config.
Node(String)
Name of the node.
Service(String)
Name of the service.