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

com.pulumi.azure.network.kotlin.outputs.GetApplicationGatewayRewriteRuleSetRewriteRuleUrl.kt Maven / Gradle / Ivy

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

package com.pulumi.azure.network.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property components The components used to rewrite the URL.
 * @property path The URL path to rewrite.
 * @property queryString The query string to rewrite.
 * @property reroute Whether the URL path map is reevaluated after this rewrite has been applied.
 */
public data class GetApplicationGatewayRewriteRuleSetRewriteRuleUrl(
    public val components: String,
    public val path: String,
    public val queryString: String,
    public val reroute: Boolean,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetApplicationGatewayRewriteRuleSetRewriteRuleUrl): GetApplicationGatewayRewriteRuleSetRewriteRuleUrl =
            GetApplicationGatewayRewriteRuleSetRewriteRuleUrl(
                components = javaType.components(),
                path = javaType.path(),
                queryString = javaType.queryString(),
                reroute = javaType.reroute(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy