com.pulumi.azure.logicapps.kotlin.inputs.WorkflowAccessControlTriggerArgs.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.logicapps.kotlin.inputs
import com.pulumi.azure.logicapps.inputs.WorkflowAccessControlTriggerArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property allowedCallerIpAddressRanges A list of the allowed caller IP address ranges.
* @property openAuthenticationPolicies A `open_authentication_policy` block as defined below.
*/
public data class WorkflowAccessControlTriggerArgs(
public val allowedCallerIpAddressRanges: Output>,
public val openAuthenticationPolicies:
Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.logicapps.inputs.WorkflowAccessControlTriggerArgs =
com.pulumi.azure.logicapps.inputs.WorkflowAccessControlTriggerArgs.builder()
.allowedCallerIpAddressRanges(
allowedCallerIpAddressRanges.applyValue({ args0 ->
args0.map({ args0 -> args0 })
}),
)
.openAuthenticationPolicies(
openAuthenticationPolicies?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [WorkflowAccessControlTriggerArgs].
*/
@PulumiTagMarker
public class WorkflowAccessControlTriggerArgsBuilder internal constructor() {
private var allowedCallerIpAddressRanges: Output>? = null
private var openAuthenticationPolicies:
Output>? = null
/**
* @param value A list of the allowed caller IP address ranges.
*/
@JvmName("ihxlaikjdbpsiflp")
public suspend fun allowedCallerIpAddressRanges(`value`: Output>) {
this.allowedCallerIpAddressRanges = value
}
@JvmName("wtqqrlnuofkpwvda")
public suspend fun allowedCallerIpAddressRanges(vararg values: Output) {
this.allowedCallerIpAddressRanges = Output.all(values.asList())
}
/**
* @param values A list of the allowed caller IP address ranges.
*/
@JvmName("fhsdxaostctnkmyc")
public suspend fun allowedCallerIpAddressRanges(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy