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
Ordering
- Alphabetic
- By Inheritance
Inherited
- NodeAddress
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
NodeAddress(address: String, type: String)
- address
The node address.
- type
Node address type, one of Hostname, ExternalIP or InternalIP.
Value Members
- val address: String
-
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.
- val type: String