NodeAddress

case
class NodeAddress(address: String, `type`: String)

NodeAddress contains information for the node's address.

Value Params
address

The node address.

type

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

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def getAddress: IO[K8sFailure, String]

The node address.

The node address.

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

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.

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product