final case class Status(reason: Option[String] = None, code: Option[Int] = None, status: Option[String] = None, details: Option[StatusDetails] = None, metadata: Option[ListMeta] = None, message: Option[String] = None) extends KObject with Product with Serializable

Status is a return value for calls that don't return other objects.

Source
Status.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Status
  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 Status(reason: Option[String] = None, code: Option[Int] = None, status: Option[String] = None, details: Option[StatusDetails] = None, metadata: Option[ListMeta] = None, message: Option[String] = 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
    StatusKObject
  5. final lazy val apiVersion: String
    Definition Classes
    KObject
  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 code: Option[Int]
  9. val details: Option[StatusDetails]
  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. def foldTo[T](implicit arg0: Builder[T]): T
    Definition Classes
    StatusKObject
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def group: String
    Definition Classes
    KObject
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final lazy val kind: String
    Definition Classes
    KObject
  17. def mapCode(f: (Int) => Int): Status

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

  18. def mapDetails(f: (StatusDetails) => StatusDetails): Status

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

  19. def mapMessage(f: (String) => String): Status

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

  20. def mapMetadata(f: (ListMeta) => ListMeta): Status

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

  21. def mapReason(f: (String) => String): Status

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

  22. def mapStatus(f: (String) => String): Status

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

  23. val message: Option[String]
  24. val metadata: Option[ListMeta]
  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. val reason: Option[String]
  30. val status: Option[String]
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. final lazy val version: String
    Definition Classes
    KObject
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. def withCode(value: Int): Status

    Returns a new data with code set to new value

  37. def withDetails(value: StatusDetails): Status

    Returns a new data with details set to new value

  38. def withMessage(value: String): Status

    Returns a new data with message set to new value

  39. def withMetadata(value: ListMeta): Status

    Returns a new data with metadata set to new value

  40. def withReason(value: String): Status

    Returns a new data with reason set to new value

  41. def withStatus(value: String): Status

    Returns a new data with status set to new value

Inherited from KObject

Inherited from Product

Inherited from Equals

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped