com.pulumi.azure.cognitive.kotlin.inputs.AccountNetworkAclsArgs.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.cognitive.kotlin.inputs
import com.pulumi.azure.cognitive.inputs.AccountNetworkAclsArgs.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 defaultAction The Default Action to use when no rules match from `ip_rules` / `virtual_network_rules`. Possible values are `Allow` and `Deny`.
* @property ipRules One or more IP Addresses, or CIDR Blocks which should be able to access the Cognitive Account.
* @property virtualNetworkRules A `virtual_network_rules` block as defined below.
*/
public data class AccountNetworkAclsArgs(
public val defaultAction: Output,
public val ipRules: Output>? = null,
public val virtualNetworkRules: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.cognitive.inputs.AccountNetworkAclsArgs =
com.pulumi.azure.cognitive.inputs.AccountNetworkAclsArgs.builder()
.defaultAction(defaultAction.applyValue({ args0 -> args0 }))
.ipRules(ipRules?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.virtualNetworkRules(
virtualNetworkRules?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [AccountNetworkAclsArgs].
*/
@PulumiTagMarker
public class AccountNetworkAclsArgsBuilder internal constructor() {
private var defaultAction: Output? = null
private var ipRules: Output>? = null
private var virtualNetworkRules: Output>? = null
/**
* @param value The Default Action to use when no rules match from `ip_rules` / `virtual_network_rules`. Possible values are `Allow` and `Deny`.
*/
@JvmName("hantrptcjkegejao")
public suspend fun defaultAction(`value`: Output) {
this.defaultAction = value
}
/**
* @param value One or more IP Addresses, or CIDR Blocks which should be able to access the Cognitive Account.
*/
@JvmName("uxtayqceantkqhnj")
public suspend fun ipRules(`value`: Output>) {
this.ipRules = value
}
@JvmName("xibbqbftyqpqjquw")
public suspend fun ipRules(vararg values: Output) {
this.ipRules = Output.all(values.asList())
}
/**
* @param values One or more IP Addresses, or CIDR Blocks which should be able to access the Cognitive Account.
*/
@JvmName("qfjgnulttbnkktxi")
public suspend fun ipRules(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy