SecretReference

io.k8s.api.core.v1.SecretReference
See theSecretReference companion object
final case class SecretReference(name: Option[String], namespace: Option[String])

SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace

Attributes

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

Members list

Value members

Concrete methods

def mapName(f: String => String): SecretReference

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

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

Attributes

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

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

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

Attributes

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

Returns a new data with name set to new value

Returns a new data with name set to new value

Attributes

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

Returns a new data with namespace set to new value

Returns a new data with namespace set to new value

Attributes

Source
SecretReference.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product