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. Serializable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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( ... ) @native() @HotSpotIntrinsicCandidate()
  11. val data: Option[Map[String, String]]
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def foldTo[T](implicit arg0: Builder[T]): T
    Definition Classes
    ConfigMapKObject
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def group: String
    Definition Classes
    KObject
  16. val immutable: Option[Boolean]
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final lazy val kind: String
    Definition Classes
    KObject
  19. def mapBinaryData(f: (Map[String, String]) ⇒ Map[String, String]): ConfigMap

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

  20. def mapData(f: (Map[String, String]) ⇒ Map[String, String]): ConfigMap

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

  21. def mapImmutable(f: (Boolean) ⇒ Boolean): ConfigMap

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

  22. def mapMetadata(f: (ObjectMeta) ⇒ ObjectMeta): ConfigMap

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

  23. val metadata: Option[ObjectMeta]
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. final lazy val version: String
    Definition Classes
    KObject
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def withBinaryData(value: Map[String, String]): ConfigMap

    Returns a new data with binaryData set to new value

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

    Returns a new data with data set to new value

  34. def withImmutable(value: Boolean): ConfigMap

    Returns a new data with immutable set to new value

  35. def withMetadata(value: ObjectMeta): ConfigMap

    Returns a new data with metadata set to new value

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from KObject

Inherited from Product

Inherited from Equals

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped