com.pulumi.azure.keyvault.kotlin.inputs.KeyVaultNetworkAclsArgs.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.keyvault.kotlin.inputs
import com.pulumi.azure.keyvault.inputs.KeyVaultNetworkAclsArgs.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 kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property bypass Specifies which traffic can bypass the network rules. Possible values are `AzureServices` and `None`.
* @property defaultAction The Default Action to use when no rules match from `ip_rules` / `virtual_network_subnet_ids`. Possible values are `Allow` and `Deny`.
* @property ipRules One or more IP Addresses, or CIDR Blocks which should be able to access the Key Vault.
* @property virtualNetworkSubnetIds One or more Subnet IDs which should be able to access this Key Vault.
*/
public data class KeyVaultNetworkAclsArgs(
public val bypass: Output,
public val defaultAction: Output,
public val ipRules: Output>? = null,
public val virtualNetworkSubnetIds: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.keyvault.inputs.KeyVaultNetworkAclsArgs =
com.pulumi.azure.keyvault.inputs.KeyVaultNetworkAclsArgs.builder()
.bypass(bypass.applyValue({ args0 -> args0 }))
.defaultAction(defaultAction.applyValue({ args0 -> args0 }))
.ipRules(ipRules?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.virtualNetworkSubnetIds(
virtualNetworkSubnetIds?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
).build()
}
/**
* Builder for [KeyVaultNetworkAclsArgs].
*/
@PulumiTagMarker
public class KeyVaultNetworkAclsArgsBuilder internal constructor() {
private var bypass: Output? = null
private var defaultAction: Output? = null
private var ipRules: Output>? = null
private var virtualNetworkSubnetIds: Output>? = null
/**
* @param value Specifies which traffic can bypass the network rules. Possible values are `AzureServices` and `None`.
*/
@JvmName("whypanycvkueksxr")
public suspend fun bypass(`value`: Output) {
this.bypass = value
}
/**
* @param value The Default Action to use when no rules match from `ip_rules` / `virtual_network_subnet_ids`. Possible values are `Allow` and `Deny`.
*/
@JvmName("ukeqmsbnoetsvkwa")
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 Key Vault.
*/
@JvmName("nuwbbshncvrbydbp")
public suspend fun ipRules(`value`: Output>) {
this.ipRules = value
}
@JvmName("ijanhqyxcgynwnlg")
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 Key Vault.
*/
@JvmName("gqrmfihxchykftxm")
public suspend fun ipRules(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy