EndpointArgs

data class EndpointArgs(val hostIp: Output<String>? = null, val name: Output<String>? = null, val protocol: Output<Either<String, Protocol>>? = null, val published: Output<Int>? = null, val target: Output<Int>? = null) : ConvertibleToJava<EndpointArgs>

Describes the endpoint configuration for the container

Constructors

Link copied to clipboard
constructor(hostIp: Output<String>? = null, name: Output<String>? = null, protocol: Output<Either<String, Protocol>>? = null, published: Output<Int>? = null, target: Output<Int>? = null)

Properties

Link copied to clipboard
val hostIp: Output<String>? = null

Host IP over which the application is exposed from the container

Link copied to clipboard
val name: Output<String>? = null

Name of the Endpoint

Link copied to clipboard
val protocol: Output<Either<String, Protocol>>? = null

Protocol over which communication will happen over this endpoint

Link copied to clipboard
val published: Output<Int>? = null

Port over which the application is exposed from container.

Link copied to clipboard
val target: Output<Int>? = null

Application port inside the container.

Functions

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