SpringCloudAppIngressSettings

data class SpringCloudAppIngressSettings(val backendProtocol: String? = null, val readTimeoutInSeconds: Int? = null, val sendTimeoutInSeconds: Int? = null, val sessionAffinity: String? = null, val sessionCookieMaxAge: Int? = null)

Constructors

Link copied to clipboard
constructor(backendProtocol: String? = null, readTimeoutInSeconds: Int? = null, sendTimeoutInSeconds: Int? = null, sessionAffinity: String? = null, sessionCookieMaxAge: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val backendProtocol: String? = null

Specifies how ingress should communicate with this app backend service. Allowed values are GRPC and Default. Defaults to Default.

Link copied to clipboard

Specifies the ingress read time out in seconds. Defaults to 300.

Link copied to clipboard

Specifies the ingress send time out in seconds. Defaults to 60.

Link copied to clipboard
val sessionAffinity: String? = null

Specifies the type of the affinity, set this to Cookie to enable session affinity. Allowed values are Cookie and None. Defaults to None.

Link copied to clipboard

Specifies the time in seconds until the cookie expires.