![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.signalrservice.kotlin.inputs.PrivateEndpointACLArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.signalrservice.kotlin.inputs
import com.pulumi.azurenative.signalrservice.inputs.PrivateEndpointACLArgs.builder
import com.pulumi.azurenative.signalrservice.kotlin.enums.SignalRRequestType
import com.pulumi.core.Either
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
/**
* ACL for a private endpoint
* @property allow Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
* @property deny Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
* @property name Name of the private endpoint connection
*/
public data class PrivateEndpointACLArgs(
public val allow: Output>>? = null,
public val deny: Output>>? = null,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.signalrservice.inputs.PrivateEndpointACLArgs =
com.pulumi.azurenative.signalrservice.inputs.PrivateEndpointACLArgs.builder()
.allow(
allow?.applyValue({ args0 ->
args0.map({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 -> args0.toJava() })
})
})
}),
)
.deny(
deny?.applyValue({ args0 ->
args0.map({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 -> args0.toJava() })
})
})
}),
)
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PrivateEndpointACLArgs].
*/
@PulumiTagMarker
public class PrivateEndpointACLArgsBuilder internal constructor() {
private var allow: Output>>? = null
private var deny: Output>>? = null
private var name: Output? = null
/**
* @param value Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
*/
@JvmName("ymyxteggrvhkfrwf")
public suspend fun allow(`value`: Output>>) {
this.allow = value
}
@JvmName("rqfnqdvmrovpwchr")
public suspend fun allow(vararg values: Output>) {
this.allow = Output.all(values.asList())
}
/**
* @param values Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.
*/
@JvmName("fnkpbeivqwculosm")
public suspend fun allow(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy