UrlDispatchRuleResponse

data class UrlDispatchRuleResponse(val domain: String, val path: String, val service: String)

Rules to match an HTTP request and dispatch that request to a service.

Constructors

Link copied to clipboard
fun UrlDispatchRuleResponse(domain: String, path: String, service: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.