com.pulumi.azure.appservice.kotlin.inputs.AppServiceSiteConfigScmIpRestrictionHeadersArgs.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.AppServiceSiteConfigScmIpRestrictionHeadersArgs.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 A list of allowed Azure FrontDoor IDs in UUID notation with a maximum of 8.
* @property xFdHealthProbe A list to allow the Azure FrontDoor health probe header. Only allowed value is "1".
* @property xForwardedFors A list of allowed 'X-Forwarded-For' IPs in CIDR notation with a maximum of 8
* @property xForwardedHosts A list of allowed 'X-Forwarded-Host' domains with a maximum of 8.
*/
public data class AppServiceSiteConfigScmIpRestrictionHeadersArgs(
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.AppServiceSiteConfigScmIpRestrictionHeadersArgs =
com.pulumi.azure.appservice.inputs.AppServiceSiteConfigScmIpRestrictionHeadersArgs.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 [AppServiceSiteConfigScmIpRestrictionHeadersArgs].
*/
@PulumiTagMarker
public class AppServiceSiteConfigScmIpRestrictionHeadersArgsBuilder internal constructor() {
private var xAzureFdids: Output>? = null
private var xFdHealthProbe: Output? = null
private var xForwardedFors: Output>? = null
private var xForwardedHosts: Output>? = null
/**
* @param value A list of allowed Azure FrontDoor IDs in UUID notation with a maximum of 8.
*/
@JvmName("bbcvtkusdffagmll")
public suspend fun xAzureFdids(`value`: Output>) {
this.xAzureFdids = value
}
@JvmName("ryjhyphbmonpxots")
public suspend fun xAzureFdids(vararg values: Output) {
this.xAzureFdids = Output.all(values.asList())
}
/**
* @param values A list of allowed Azure FrontDoor IDs in UUID notation with a maximum of 8.
*/
@JvmName("vhkdhpjxlnpetbhn")
public suspend fun xAzureFdids(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy