ServiceBackendPortArgs

data class ServiceBackendPortArgs(val name: Output<String>? = null, val number: Output<Int>? = null) : ConvertibleToJava<ServiceBackendPortArgs>

ServiceBackendPort is the service port being referenced.

Constructors

Link copied to clipboard
fun ServiceBackendPortArgs(name: Output<String>? = null, number: Output<Int>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ServiceBackendPortArgs

Properties

Link copied to clipboard
val name: Output<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: Output<Int>? = null

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