com.pulumi.azure.appservice.kotlin.inputs.LinuxWebAppSlotSiteConfigScmIpRestrictionHeadersArgs.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.appservice.kotlin.inputs
import com.pulumi.azure.appservice.inputs.LinuxWebAppSlotSiteConfigScmIpRestrictionHeadersArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property xAzureFdids Specifies a list of Azure Front Door IDs.
* @property xFdHealthProbe Specifies if a Front Door Health Probe should be expected. The only possible value is `1`.
* @property xForwardedFors Specifies a list of addresses for which matching should be applied. Omitting this value means allow any.
* @property xForwardedHosts Specifies a list of Hosts for which matching should be applied.
*/
public data class LinuxWebAppSlotSiteConfigScmIpRestrictionHeadersArgs(
public val xAzureFdids: Output>? = null,
public val xFdHealthProbe: Output? = null,
public val xForwardedFors: Output>? = null,
public val xForwardedHosts: Output>? = null,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.appservice.inputs.LinuxWebAppSlotSiteConfigScmIpRestrictionHeadersArgs =
com.pulumi.azure.appservice.inputs.LinuxWebAppSlotSiteConfigScmIpRestrictionHeadersArgs.builder()
.xAzureFdids(xAzureFdids?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.xFdHealthProbe(xFdHealthProbe?.applyValue({ args0 -> args0 }))
.xForwardedFors(xForwardedFors?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.xForwardedHosts(xForwardedHosts?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [LinuxWebAppSlotSiteConfigScmIpRestrictionHeadersArgs].
*/
@PulumiTagMarker
public class LinuxWebAppSlotSiteConfigScmIpRestrictionHeadersArgsBuilder internal constructor() {
private var xAzureFdids: Output>? = null
private var xFdHealthProbe: Output? = null
private var xForwardedFors: Output>? = null
private var xForwardedHosts: Output>? = null
/**
* @param value Specifies a list of Azure Front Door IDs.
*/
@JvmName("mslyukfxljxfedib")
public suspend fun xAzureFdids(`value`: Output>) {
this.xAzureFdids = value
}
@JvmName("gbrintcfnjwyriji")
public suspend fun xAzureFdids(vararg values: Output) {
this.xAzureFdids = Output.all(values.asList())
}
/**
* @param values Specifies a list of Azure Front Door IDs.
*/
@JvmName("yllkloqcemsfqdhu")
public suspend fun xAzureFdids(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy