![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.network.kotlin.inputs.ApplicationGatewayBackendAddressPoolArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.network.kotlin.inputs
import com.pulumi.azure.network.inputs.ApplicationGatewayBackendAddressPoolArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @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 ApplicationGatewayBackendAddressPoolArgs(
public val fqdns: Output>? = null,
public val id: Output? = null,
public val ipAddresses: Output>? = null,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.network.inputs.ApplicationGatewayBackendAddressPoolArgs =
com.pulumi.azure.network.inputs.ApplicationGatewayBackendAddressPoolArgs.builder()
.fqdns(fqdns?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.id(id?.applyValue({ args0 -> args0 }))
.ipAddresses(ipAddresses?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ApplicationGatewayBackendAddressPoolArgs].
*/
@PulumiTagMarker
public class ApplicationGatewayBackendAddressPoolArgsBuilder internal constructor() {
private var fqdns: Output>? = null
private var id: Output? = null
private var ipAddresses: Output>? = null
private var name: Output? = null
/**
* @param value A list of FQDN's which should be part of the Backend Address Pool.
*/
@JvmName("mbswerjohdydddae")
public suspend fun fqdns(`value`: Output>) {
this.fqdns = value
}
@JvmName("xapjvwlkmdffbvjn")
public suspend fun fqdns(vararg values: Output) {
this.fqdns = Output.all(values.asList())
}
/**
* @param values A list of FQDN's which should be part of the Backend Address Pool.
*/
@JvmName("mpihnrmrlrffpbtn")
public suspend fun fqdns(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy