EndpointResponse

data class EndpointResponse(val hostIp: String? = null, val name: String? = null, val protocol: String? = null, val published: Int? = null, val target: Int? = null)

Describes the endpoint configuration for the container

Constructors

Link copied to clipboard
constructor(hostIp: String? = null, name: String? = null, protocol: String? = null, published: Int? = null, target: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val hostIp: String? = null

Host IP over which the application is exposed from the container

Link copied to clipboard
val name: String? = null

Name of the Endpoint

Link copied to clipboard
val protocol: String? = null

Protocol over which communication will happen over this endpoint

Link copied to clipboard
val published: Int? = null

Port over which the application is exposed from container.

Link copied to clipboard
val target: Int? = null

Application port inside the container.