FieldSelector

com.coralogix.zio.k8s.client.model.FieldSelector
See theFieldSelector companion object
sealed trait FieldSelector

A composable field selector

Every Kubernetes model's companion object contain a set of Field definitions. To construct FieldSelector values for queries, use these Field values and the operators defined on them.

Note that a very small subset of the fields is actually usable as field seletors, but there is no compile-time information about which one of them are. For this reason we provide a Field for each available field and it is the developer's responsibility to only use supported fields in field selectors, or handle the errors returned by the Kubernetes server.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class And
class FieldEquals
Self type

Members list

Value members

Abstract methods

Serializes the field selector into a query parameter

Serializes the field selector into a query parameter

Attributes

Concrete methods

def &&(other: FieldSelector): And

Use this AND another field selector together

Use this AND another field selector together

Attributes