BoundObjectReference

case class BoundObjectReference(apiVersion: Optional[String], kind: Optional[String], name: Optional[String], uid: Optional[String])

BoundObjectReference is a reference to an object that a token is bound to.

BoundObjectReference is a reference to an object that a token is bound to.

Value Params
apiVersion

API version of the referent.

kind

Kind of the referent. Valid kinds are 'Pod' and 'Secret'.

name

Name of the referent.

uid

UID of the referent.

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

Value members

Concrete methods

def getApiVersion: IO[K8sFailure, String]

API version of the referent.

API version of the referent.

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

def getKind: IO[K8sFailure, String]

Kind of the referent. Valid kinds are 'Pod' and 'Secret'.

Kind of the referent. Valid kinds are 'Pod' and 'Secret'.

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

def getName: IO[K8sFailure, String]

Name of the referent.

Name of the referent.

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

def getUid: IO[K8sFailure, String]

UID of the referent.

UID of the referent.

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