com.pulumi.azure.network.kotlin.outputs.ApplicationGatewayBackendAddressPool.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 FQDN's which should be part of the Backend Address Pool.
* @property id The ID of the Rewrite Rule Set
* @property ipAddresses A list of IP Addresses which should be part of the Backend Address Pool.
* @property name The name of the Backend Address Pool.
*/
public data class ApplicationGatewayBackendAddressPool(
public val fqdns: List? = null,
public val id: String? = null,
public val ipAddresses: List? = null,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.ApplicationGatewayBackendAddressPool): ApplicationGatewayBackendAddressPool = ApplicationGatewayBackendAddressPool(
fqdns = javaType.fqdns().map({ args0 -> args0 }),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
ipAddresses = javaType.ipAddresses().map({ args0 -> args0 }),
name = javaType.name(),
)
}
}