Packages

c

io.k8s.api.core.v1

NodeStatus

final case class NodeStatus(volumesInUse: Option[Seq[String]] = None, conditions: Option[Seq[NodeCondition]] = None, nodeInfo: Option[NodeSystemInfo] = None, volumesAttached: Option[Seq[AttachedVolume]] = None, phase: Option[String] = None, config: Option[NodeConfigStatus] = None, allocatable: Option[Map[String, Quantity]] = None, images: Option[Seq[ContainerImage]] = None, daemonEndpoints: Option[NodeDaemonEndpoints] = None, addresses: Option[Seq[NodeAddress]] = None, capacity: Option[Map[String, Quantity]] = None) extends Product with Serializable

NodeStatus is information about the current status of a node.

Source
NodeStatus.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeStatus
  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 NodeStatus(volumesInUse: Option[Seq[String]] = None, conditions: Option[Seq[NodeCondition]] = None, nodeInfo: Option[NodeSystemInfo] = None, volumesAttached: Option[Seq[AttachedVolume]] = None, phase: Option[String] = None, config: Option[NodeConfigStatus] = None, allocatable: Option[Map[String, Quantity]] = None, images: Option[Seq[ContainerImage]] = None, daemonEndpoints: Option[NodeDaemonEndpoints] = None, addresses: Option[Seq[NodeAddress]] = None, capacity: Option[Map[String, Quantity]] = 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 addAddresses(newValues: NodeAddress*): NodeStatus
  5. def addAllocatable(newValues: (String, Quantity)*): NodeStatus
  6. def addCapacity(newValues: (String, Quantity)*): NodeStatus
  7. def addConditions(newValues: NodeCondition*): NodeStatus
  8. def addImages(newValues: ContainerImage*): NodeStatus
  9. def addVolumesAttached(newValues: AttachedVolume*): NodeStatus
  10. def addVolumesInUse(newValues: String*): NodeStatus
  11. val addresses: Option[Seq[NodeAddress]]
  12. val allocatable: Option[Map[String, Quantity]]
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. val capacity: Option[Map[String, Quantity]]
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  16. val conditions: Option[Seq[NodeCondition]]
  17. val config: Option[NodeConfigStatus]
  18. val daemonEndpoints: Option[NodeDaemonEndpoints]
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. val images: Option[Seq[ContainerImage]]
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. val nodeInfo: Option[NodeSystemInfo]
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. val phase: Option[String]
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. val volumesAttached: Option[Seq[AttachedVolume]]
  31. val volumesInUse: Option[Seq[String]]
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  35. def withAddresses(value: Seq[NodeAddress]): NodeStatus
  36. def withAllocatable(value: Map[String, Quantity]): NodeStatus
  37. def withCapacity(value: Map[String, Quantity]): NodeStatus
  38. def withConditions(value: Seq[NodeCondition]): NodeStatus
  39. def withConfig(value: NodeConfigStatus): NodeStatus
  40. def withDaemonEndpoints(value: NodeDaemonEndpoints): NodeStatus
  41. def withImages(value: Seq[ContainerImage]): NodeStatus
  42. def withNodeInfo(value: NodeSystemInfo): NodeStatus
  43. def withPhase(value: String): NodeStatus
  44. def withVolumesAttached(value: Seq[AttachedVolume]): NodeStatus
  45. def withVolumesInUse(value: Seq[String]): NodeStatus

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped