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

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

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

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

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

/**
 *
 * @property fqdns A list of FQDNs which are part of the Backend Address Pool.
 * @property id The ID of the Rewrite Rule Set
 * @property ipAddresses A list of IP Addresses which are part of the Backend Address Pool.
 * @property name The name of this Application Gateway.
 */
public data class GetApplicationGatewayBackendAddressPool(
    public val fqdns: List,
    public val id: String,
    public val ipAddresses: List,
    public val name: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetApplicationGatewayBackendAddressPool): GetApplicationGatewayBackendAddressPool = GetApplicationGatewayBackendAddressPool(
            fqdns = javaType.fqdns().map({ args0 -> args0 }),
            id = javaType.id(),
            ipAddresses = javaType.ipAddresses().map({ args0 -> args0 }),
            name = javaType.name(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy