Packages

case class NodeAddress(address: String, type: String) extends Product with Serializable

NodeAddress contains information for the node's address.

address

The node address.

type

Node address type, one of Hostname, ExternalIP or InternalIP.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeAddress
  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 NodeAddress(address: String, type: String)

    address

    The node address.

    type

    Node address type, one of Hostname, ExternalIP or InternalIP.

Value Members

  1. val address: String
  2. def getAddress: IO[K8sFailure, String]

    The node address.

    The node address.

    This effect always succeeds, it is safe to use the field address directly.

  3. def getType: IO[K8sFailure, String]

    Node address type, one of Hostname, ExternalIP or InternalIP.

    Node address type, one of Hostname, ExternalIP or InternalIP.

    This effect always succeeds, it is safe to use the field type directly.

  4. val type: String