ObjectReference

io.k8s.api.core.v1.ObjectReference
See theObjectReference companion object
final case class ObjectReference(fieldPath: Option[String], name: Option[String], resourceVersion: Option[String], uid: Option[String], kind: Option[String], apiVersion: Option[String], namespace: Option[String])

ObjectReference contains enough information to let you inspect or modify the referred object.

Attributes

Companion
object
Source
ObjectReference.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def mapApiVersion(f: String => String): ObjectReference

if apiVersion has a value, transforms to the result of function

if apiVersion has a value, transforms to the result of function

Attributes

Source
ObjectReference.scala
def mapFieldPath(f: String => String): ObjectReference

if fieldPath has a value, transforms to the result of function

if fieldPath has a value, transforms to the result of function

Attributes

Source
ObjectReference.scala
def mapKind(f: String => String): ObjectReference

if kind has a value, transforms to the result of function

if kind has a value, transforms to the result of function

Attributes

Source
ObjectReference.scala
def mapName(f: String => String): ObjectReference

if name has a value, transforms to the result of function

if name has a value, transforms to the result of function

Attributes

Source
ObjectReference.scala
def mapNamespace(f: String => String): ObjectReference

if namespace has a value, transforms to the result of function

if namespace has a value, transforms to the result of function

Attributes

Source
ObjectReference.scala
def mapResourceVersion(f: String => String): ObjectReference

if resourceVersion has a value, transforms to the result of function

if resourceVersion has a value, transforms to the result of function

Attributes

Source
ObjectReference.scala
def mapUid(f: String => String): ObjectReference

if uid has a value, transforms to the result of function

if uid has a value, transforms to the result of function

Attributes

Source
ObjectReference.scala
def withApiVersion(value: String): ObjectReference

Returns a new data with apiVersion set to new value

Returns a new data with apiVersion set to new value

Attributes

Source
ObjectReference.scala
def withFieldPath(value: String): ObjectReference

Returns a new data with fieldPath set to new value

Returns a new data with fieldPath set to new value

Attributes

Source
ObjectReference.scala
def withKind(value: String): ObjectReference

Returns a new data with kind set to new value

Returns a new data with kind set to new value

Attributes

Source
ObjectReference.scala
def withName(value: String): ObjectReference

Returns a new data with name set to new value

Returns a new data with name set to new value

Attributes

Source
ObjectReference.scala
def withNamespace(value: String): ObjectReference

Returns a new data with namespace set to new value

Returns a new data with namespace set to new value

Attributes

Source
ObjectReference.scala
def withResourceVersion(value: String): ObjectReference

Returns a new data with resourceVersion set to new value

Returns a new data with resourceVersion set to new value

Attributes

Source
ObjectReference.scala
def withUid(value: String): ObjectReference

Returns a new data with uid set to new value

Returns a new data with uid set to new value

Attributes

Source
ObjectReference.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product