ServiceBackendPort

case class ServiceBackendPort(name: Optional[String], number: Optional[Int])

ServiceBackendPort is the service port being referenced.

ServiceBackendPort is the service port being referenced.

Value Params
name

Name is the name of the port on the Service. This is a mutually exclusive setting with "Number".

number

Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with "Name".

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

Value members

Concrete methods

def getName: IO[K8sFailure, String]

Name is the name of the port on the Service. This is a mutually exclusive setting with "Number".

Name is the name of the port on the Service. This is a mutually exclusive setting with "Number".

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

def getNumber: IO[K8sFailure, Int]

Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with "Name".

Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with "Name".

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

Inherited methods

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