AppSpecIngressRuleRedirect

data class AppSpecIngressRuleRedirect(val authority: String? = null, val port: Int? = null, val redirectCode: Int? = null, val scheme: String? = null, val uri: String? = null)

Constructors

Link copied to clipboard
constructor(authority: String? = null, port: Int? = null, redirectCode: Int? = null, scheme: String? = null, uri: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val authority: String? = null

The authority/host to redirect to. This can be a hostname or IP address.

Link copied to clipboard
val port: Int? = null

The port to redirect to.

Link copied to clipboard
val redirectCode: Int? = null

The redirect code to use. Supported values are 300, 301, 302, 303, 304, 307, 308.

Link copied to clipboard
val scheme: String? = null

The scheme to redirect to. Supported values are http or https

Link copied to clipboard
val uri: String? = null

An optional URI path to redirect to.