ConfigMapKeySelector

case class ConfigMapKeySelector(key: String, name: Optional[String], optional: Optional[Boolean])

Selects a key from a ConfigMap.

Selects a key from a ConfigMap.

Value Params
key

The key to select.

name

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

optional

Specify whether the ConfigMap or its key must be defined

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

Value members

Concrete methods

def getKey: IO[K8sFailure, String]

The key to select.

The key to select.

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

def getName: IO[K8sFailure, String]

Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

def getOptional: IO[K8sFailure, Boolean]

Specify whether the ConfigMap or its key must be defined

Specify whether the ConfigMap or its key must be defined

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