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

com.pulumi.azure.logicapps.kotlin.inputs.GetStandardSiteConfigIpRestrictionHeaders.kt Maven / Gradle / Ivy

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

package com.pulumi.azure.logicapps.kotlin.inputs

import com.pulumi.azure.logicapps.inputs.GetStandardSiteConfigIpRestrictionHeaders.builder
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
 * @property xFdHealthProbe
 * @property xForwardedFors
 * @property xForwardedHosts
 */
public data class GetStandardSiteConfigIpRestrictionHeaders(
    public val xAzureFdids: List? = null,
    public val xFdHealthProbe: String? = null,
    public val xForwardedFors: List? = null,
    public val xForwardedHosts: List? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.logicapps.inputs.GetStandardSiteConfigIpRestrictionHeaders = com.pulumi.azure.logicapps.inputs.GetStandardSiteConfigIpRestrictionHeaders.builder()
        .xAzureFdids(xAzureFdids?.let({ args0 -> args0.map({ args0 -> args0 }) }))
        .xFdHealthProbe(xFdHealthProbe?.let({ args0 -> args0 }))
        .xForwardedFors(xForwardedFors?.let({ args0 -> args0.map({ args0 -> args0 }) }))
        .xForwardedHosts(xForwardedHosts?.let({ args0 -> args0.map({ args0 -> args0 }) })).build()
}

/**
 * Builder for [GetStandardSiteConfigIpRestrictionHeaders].
 */
@PulumiTagMarker
public class GetStandardSiteConfigIpRestrictionHeadersBuilder internal constructor() {
    private var xAzureFdids: List? = null

    private var xFdHealthProbe: String? = null

    private var xForwardedFors: List? = null

    private var xForwardedHosts: List? = null

    /**
     * @param value
     */
    @JvmName("lvtwoyjygtstwaqp")
    public suspend fun xAzureFdids(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.xAzureFdids = mapped
    }

    /**
     * @param values
     */
    @JvmName("wjfessrswuhapnfw")
    public suspend fun xAzureFdids(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.xAzureFdids = mapped
    }

    /**
     * @param value
     */
    @JvmName("xhenamulsbifdtdr")
    public suspend fun xFdHealthProbe(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.xFdHealthProbe = mapped
    }

    /**
     * @param value
     */
    @JvmName("iockltcgobtypdrp")
    public suspend fun xForwardedFors(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.xForwardedFors = mapped
    }

    /**
     * @param values
     */
    @JvmName("xpqcrmuotowulnmc")
    public suspend fun xForwardedFors(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.xForwardedFors = mapped
    }

    /**
     * @param value
     */
    @JvmName("tgxbakapreaufnar")
    public suspend fun xForwardedHosts(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.xForwardedHosts = mapped
    }

    /**
     * @param values
     */
    @JvmName("jllltynjbubsbxus")
    public suspend fun xForwardedHosts(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.xForwardedHosts = mapped
    }

    internal fun build(): GetStandardSiteConfigIpRestrictionHeaders =
        GetStandardSiteConfigIpRestrictionHeaders(
            xAzureFdids = xAzureFdids,
            xFdHealthProbe = xFdHealthProbe,
            xForwardedFors = xForwardedFors,
            xForwardedHosts = xForwardedHosts,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy