case class Status(code: Optional[Int] = Optional.Absent, details: Optional[StatusDetails] = Optional.Absent, message: Optional[String] = Optional.Absent, metadata: Optional[ListMeta] = Optional.Absent, reason: Optional[String] = Optional.Absent, status: Optional[String] = Optional.Absent) extends Product with Serializable

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

code

Suggested HTTP return code for this status, 0 if not set.

message

A human-readable description of the status of this operation.

reason

A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.

status

Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Status
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Status(code: Optional[Int] = Optional.Absent, details: Optional[StatusDetails] = Optional.Absent, message: Optional[String] = Optional.Absent, metadata: Optional[ListMeta] = Optional.Absent, reason: Optional[String] = Optional.Absent, status: Optional[String] = Optional.Absent)

    code

    Suggested HTTP return code for this status, 0 if not set.

    message

    A human-readable description of the status of this operation.

    reason

    A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.

    status

    Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. val code: Optional[Int]
  7. val details: Optional[StatusDetails]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def getCode: IO[K8sFailure, Int]

    Suggested HTTP return code for this status, 0 if not set.

    Suggested HTTP return code for this status, 0 if not set.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  11. def getDetails: IO[K8sFailure, StatusDetails]

    Gets details.

    Gets details.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  12. def getMessage: IO[K8sFailure, String]

    A human-readable description of the status of this operation.

    A human-readable description of the status of this operation.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  13. def getMetadata: IO[K8sFailure, ListMeta]

    Gets metadata.

    Gets metadata.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  14. def getReason: IO[K8sFailure, String]

    A machine-readable description of why this operation is in the "Failure" status.

    A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  15. def getStatus: IO[K8sFailure, String]

    Status of the operation.

    Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. val message: Optional[String]
  18. val metadata: Optional[ListMeta]
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. val reason: Optional[String]
  23. val status: Optional[String]
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

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

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped