Packages

final case class ConfigMap(data: Option[Map[String, String]] = None, immutable: Option[Boolean] = None, binaryData: Option[Map[String, String]] = None, metadata: Option[ObjectMeta] = None) extends KObject with Product with Serializable

ConfigMap holds configuration data for pods to consume.

Source
ConfigMap.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConfigMap
  2. KObject
  3. Product
  4. Equals
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ConfigMap(data: Option[Map[String, String]] = None, immutable: Option[Boolean] = None, binaryData: Option[Map[String, String]] = None, metadata: Option[ObjectMeta] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _resourceKind: ResourceKind
    Attributes
    protected
    Definition Classes
    ConfigMapKObject
  5. def addBinaryData(newValues: (String, String)*): ConfigMap

    Adds new values to binaryData

  6. def addData(newValues: (String, String)*): ConfigMap

    Adds new values to data

  7. final lazy val apiVersion: String
    Definition Classes
    KObject
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. val binaryData: Option[Map[String, String]]
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. val data: Option[Map[String, String]]
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. def foldTo[T](implicit arg0: Builder[T]): T
    Definition Classes
    ConfigMapKObject
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def group: String
    Definition Classes
    KObject
  17. val immutable: Option[Boolean]
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final lazy val kind: String
    Definition Classes
    KObject
  20. def mapBinaryData(f: (Map[String, String]) => Map[String, String]): ConfigMap

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

  21. def mapData(f: (Map[String, String]) => Map[String, String]): ConfigMap

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

  22. def mapImmutable(f: (Boolean) => Boolean): ConfigMap

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

  23. def mapMetadata(f: (ObjectMeta) => ObjectMeta): ConfigMap

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

  24. val metadata: Option[ObjectMeta]
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def productElementNames: Iterator[String]
    Definition Classes
    Product
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. final lazy val version: String
    Definition Classes
    KObject
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. def withBinaryData(value: Map[String, String]): ConfigMap

    Returns a new data with binaryData set to new value

  35. def withData(value: Map[String, String]): ConfigMap

    Returns a new data with data set to new value

  36. def withImmutable(value: Boolean): ConfigMap

    Returns a new data with immutable set to new value

  37. def withMetadata(value: ObjectMeta): ConfigMap

    Returns a new data with metadata set to new value

Inherited from KObject

Inherited from Product

Inherited from Equals

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped