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

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

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property backendAddressPoolId The ID of the associated Backend Address Pool.
 * @property backendAddressPoolName The Name of the Backend Address Pool which is used for this Routing Rule.
 * @property backendHttpSettingsId The ID of the associated Backend HTTP Settings Configuration.
 * @property backendHttpSettingsName The Name of the Backend HTTP Settings Collection which is used for this Routing Rule.
 * @property firewallPolicyId The ID of the Web Application Firewall Policy which is used as an HTTP Listener for this Path Rule.
 * @property id The ID of the Rewrite Rule Set
 * @property name The name of this Application Gateway.
 * @property paths A list of Paths used in this Path Rule.
 * @property redirectConfigurationId The ID of the associated Redirect Configuration.
 * @property redirectConfigurationName The Name of the Redirect Configuration which is used for this Routing Rule.
 * @property rewriteRuleSetId The ID of the associated Rewrite Rule Set.
 * @property rewriteRuleSetName The Name of the Rewrite Rule Set which is used for this Routing Rule.
 */
public data class GetApplicationGatewayUrlPathMapPathRule(
    public val backendAddressPoolId: String,
    public val backendAddressPoolName: String,
    public val backendHttpSettingsId: String,
    public val backendHttpSettingsName: String,
    public val firewallPolicyId: String,
    public val id: String,
    public val name: String,
    public val paths: List,
    public val redirectConfigurationId: String,
    public val redirectConfigurationName: String,
    public val rewriteRuleSetId: String,
    public val rewriteRuleSetName: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetApplicationGatewayUrlPathMapPathRule):
            GetApplicationGatewayUrlPathMapPathRule = GetApplicationGatewayUrlPathMapPathRule(
            backendAddressPoolId = javaType.backendAddressPoolId(),
            backendAddressPoolName = javaType.backendAddressPoolName(),
            backendHttpSettingsId = javaType.backendHttpSettingsId(),
            backendHttpSettingsName = javaType.backendHttpSettingsName(),
            firewallPolicyId = javaType.firewallPolicyId(),
            id = javaType.id(),
            name = javaType.name(),
            paths = javaType.paths().map({ args0 -> args0 }),
            redirectConfigurationId = javaType.redirectConfigurationId(),
            redirectConfigurationName = javaType.redirectConfigurationName(),
            rewriteRuleSetId = javaType.rewriteRuleSetId(),
            rewriteRuleSetName = javaType.rewriteRuleSetName(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy