final case class CustomResourceDefinitionVersion(name: String, served: Boolean, storage: Boolean, deprecationWarning: Option[String] = None, deprecated: Option[Boolean] = None, subresources: Option[CustomResourceSubresources] = None, schema: Option[CustomResourceValidation] = None, additionalPrinterColumns: Option[Seq[CustomResourceColumnDefinition]] = None) extends Product with Serializable

CustomResourceDefinitionVersion describes a version for CRD.

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

Instance Constructors

  1. new CustomResourceDefinitionVersion(name: String, served: Boolean, storage: Boolean, deprecationWarning: Option[String] = None, deprecated: Option[Boolean] = None, subresources: Option[CustomResourceSubresources] = None, schema: Option[CustomResourceValidation] = None, additionalPrinterColumns: Option[Seq[CustomResourceColumnDefinition]] = 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. def addAdditionalPrinterColumns(newValues: CustomResourceColumnDefinition*): CustomResourceDefinitionVersion

    Appends new values to additionalPrinterColumns

  5. val additionalPrinterColumns: Option[Seq[CustomResourceColumnDefinition]]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. val deprecated: Option[Boolean]
  9. val deprecationWarning: Option[String]
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def mapAdditionalPrinterColumns(f: (Seq[CustomResourceColumnDefinition]) => Seq[CustomResourceColumnDefinition]): CustomResourceDefinitionVersion

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

  15. def mapDeprecated(f: (Boolean) => Boolean): CustomResourceDefinitionVersion

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

  16. def mapDeprecationWarning(f: (String) => String): CustomResourceDefinitionVersion

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

  17. def mapName(f: (String) => String): CustomResourceDefinitionVersion

    transforms name to result of function

  18. def mapSchema(f: (CustomResourceValidation) => CustomResourceValidation): CustomResourceDefinitionVersion

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

  19. def mapServed(f: (Boolean) => Boolean): CustomResourceDefinitionVersion

    transforms served to result of function

  20. def mapStorage(f: (Boolean) => Boolean): CustomResourceDefinitionVersion

    transforms storage to result of function

  21. def mapSubresources(f: (CustomResourceSubresources) => CustomResourceSubresources): CustomResourceDefinitionVersion

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

  22. val name: String
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def productElementNames: Iterator[String]
    Definition Classes
    Product
  27. val schema: Option[CustomResourceValidation]
  28. val served: Boolean
  29. val storage: Boolean
  30. val subresources: Option[CustomResourceSubresources]
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. def withAdditionalPrinterColumns(value: Seq[CustomResourceColumnDefinition]): CustomResourceDefinitionVersion

    Returns a new data with additionalPrinterColumns set to new value

  36. def withDeprecated(value: Boolean): CustomResourceDefinitionVersion

    Returns a new data with deprecated set to new value

  37. def withDeprecationWarning(value: String): CustomResourceDefinitionVersion

    Returns a new data with deprecationWarning set to new value

  38. def withName(value: String): CustomResourceDefinitionVersion

    Returns a new data with name set to new value

  39. def withSchema(value: CustomResourceValidation): CustomResourceDefinitionVersion

    Returns a new data with schema set to new value

  40. def withServed(value: Boolean): CustomResourceDefinitionVersion

    Returns a new data with served set to new value

  41. def withStorage(value: Boolean): CustomResourceDefinitionVersion

    Returns a new data with storage set to new value

  42. def withSubresources(value: CustomResourceSubresources): CustomResourceDefinitionVersion

    Returns a new data with subresources set to new value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped