All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.googlenative.appengine.v1beta.kotlin.outputs.UrlDispatchRuleResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.appengine.v1beta.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Rules to match an HTTP request and dispatch that request to a service.
 * @property domain Domain name to match against. The wildcard "*" is supported if specified before a period: "*.".Defaults to matching all domains: "*".
 * @property path 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.
 * @property service Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
 */
public data class UrlDispatchRuleResponse(
    public val domain: String,
    public val path: String,
    public val service: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.appengine.v1beta.outputs.UrlDispatchRuleResponse): UrlDispatchRuleResponse = UrlDispatchRuleResponse(
            domain = javaType.domain(),
            path = javaType.path(),
            service = javaType.service(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy