UrlDispatchRuleArgs

data class UrlDispatchRuleArgs(val domain: Output<String>? = null, val path: Output<String>? = null, val service: Output<String>? = null) : ConvertibleToJava<UrlDispatchRuleArgs>

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

Constructors

Link copied to clipboard
fun UrlDispatchRuleArgs(domain: Output<String>? = null, path: Output<String>? = null, service: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): UrlDispatchRuleArgs

Properties

Link copied to clipboard
val domain: Output<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
val path: Output<String>? = null

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
val service: Output<String>? = null

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