ServiceBackendPort

data class ServiceBackendPort(val name: String? = null, val number: Int? = null)

ServiceBackendPort is the service port being referenced.

Constructors

Link copied to clipboard
constructor(name: String? = null, number: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val name: String? = null

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

Link copied to clipboard
val number: Int? = null

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