ApplicationUrlDispatchRulesDispatchRule

data class ApplicationUrlDispatchRulesDispatchRule(val domain: String? = null, val path: String, val service: String)

Constructors

Link copied to clipboard
constructor(domain: String? = null, path: String, service: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val domain: String? = null

Domain name to match against. The wildcard "" is supported if specified before a period: ".". Defaults to matching all domains: "*".

Link copied to clipboard

Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters.

Link copied to clipboard

Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters.