ScopedResourceSelectorRequirement

case class ScopedResourceSelectorRequirement(operator: String, scopeName: String, values: Optional[Vector[String]])

A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.

Value Params
operator

Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.

scopeName

The name of the scope that the selector applies to.

values

An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def getOperator: IO[K8sFailure, String]

Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.

Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.

This effect always succeeds, it is safe to use the field operator directly.

def getScopeName: IO[K8sFailure, String]

The name of the scope that the selector applies to.

The name of the scope that the selector applies to.

This effect always succeeds, it is safe to use the field scopeName directly.

def getValues: IO[K8sFailure, Vector[String]]

An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product