![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.eventhub.kotlin.inputs.EventHubNamespaceNetworkRulesetsArgs.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.eventhub.kotlin.inputs
import com.pulumi.azure.eventhub.inputs.EventHubNamespaceNetworkRulesetsArgs.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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property defaultAction The default action to take when a rule is not matched. Possible values are `Allow` and `Deny`.
* @property ipRules One or more `ip_rule` blocks as defined below.
* @property publicNetworkAccessEnabled Is public network access enabled for the EventHub Namespace? Defaults to `true`.
* > **Note:** The public network access setting at the network rule sets level should be the same as it's at the namespace level.
* @property trustedServiceAccessEnabled Whether Trusted Microsoft Services are allowed to bypass firewall.
* @property virtualNetworkRules One or more `virtual_network_rule` blocks as defined below.
*/
public data class EventHubNamespaceNetworkRulesetsArgs(
public val defaultAction: Output,
public val ipRules: Output>? = null,
public val publicNetworkAccessEnabled: Output? = null,
public val trustedServiceAccessEnabled: Output? = null,
public val virtualNetworkRules: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.eventhub.inputs.EventHubNamespaceNetworkRulesetsArgs =
com.pulumi.azure.eventhub.inputs.EventHubNamespaceNetworkRulesetsArgs.builder()
.defaultAction(defaultAction.applyValue({ args0 -> args0 }))
.ipRules(
ipRules?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.publicNetworkAccessEnabled(publicNetworkAccessEnabled?.applyValue({ args0 -> args0 }))
.trustedServiceAccessEnabled(trustedServiceAccessEnabled?.applyValue({ args0 -> args0 }))
.virtualNetworkRules(
virtualNetworkRules?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [EventHubNamespaceNetworkRulesetsArgs].
*/
@PulumiTagMarker
public class EventHubNamespaceNetworkRulesetsArgsBuilder internal constructor() {
private var defaultAction: Output? = null
private var ipRules: Output>? = null
private var publicNetworkAccessEnabled: Output? = null
private var trustedServiceAccessEnabled: Output? = null
private var virtualNetworkRules:
Output>? = null
/**
* @param value The default action to take when a rule is not matched. Possible values are `Allow` and `Deny`.
*/
@JvmName("nfevgvkqgoyuxvln")
public suspend fun defaultAction(`value`: Output) {
this.defaultAction = value
}
/**
* @param value One or more `ip_rule` blocks as defined below.
*/
@JvmName("oopedggyoxkrrewc")
public suspend fun ipRules(`value`: Output>) {
this.ipRules = value
}
@JvmName("yrgrrvprlswlquiy")
public suspend fun ipRules(vararg values: Output) {
this.ipRules = Output.all(values.asList())
}
/**
* @param values One or more `ip_rule` blocks as defined below.
*/
@JvmName("tpiirfoxgkufqbss")
public suspend fun ipRules(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy