![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.web.kotlin.inputs.AseV3NetworkingConfigurationArgs.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.web.kotlin.inputs
import com.pulumi.azurenative.web.inputs.AseV3NetworkingConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Full view of networking configuration for an ASE.
* @property allowNewPrivateEndpointConnections Property to enable and disable new private endpoint connection creation on ASE
* @property ftpEnabled Property to enable and disable FTP on ASEV3
* @property inboundIpAddressOverride Customer provided Inbound IP Address. Only able to be set on Ase create.
* @property kind Kind of resource.
* @property remoteDebugEnabled Property to enable and disable Remote Debug on ASEV3
*/
public data class AseV3NetworkingConfigurationArgs(
public val allowNewPrivateEndpointConnections: Output? = null,
public val ftpEnabled: Output? = null,
public val inboundIpAddressOverride: Output? = null,
public val kind: Output? = null,
public val remoteDebugEnabled: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.web.inputs.AseV3NetworkingConfigurationArgs =
com.pulumi.azurenative.web.inputs.AseV3NetworkingConfigurationArgs.builder()
.allowNewPrivateEndpointConnections(
allowNewPrivateEndpointConnections?.applyValue({ args0 ->
args0
}),
)
.ftpEnabled(ftpEnabled?.applyValue({ args0 -> args0 }))
.inboundIpAddressOverride(inboundIpAddressOverride?.applyValue({ args0 -> args0 }))
.kind(kind?.applyValue({ args0 -> args0 }))
.remoteDebugEnabled(remoteDebugEnabled?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AseV3NetworkingConfigurationArgs].
*/
@PulumiTagMarker
public class AseV3NetworkingConfigurationArgsBuilder internal constructor() {
private var allowNewPrivateEndpointConnections: Output? = null
private var ftpEnabled: Output? = null
private var inboundIpAddressOverride: Output? = null
private var kind: Output? = null
private var remoteDebugEnabled: Output? = null
/**
* @param value Property to enable and disable new private endpoint connection creation on ASE
*/
@JvmName("fkudnfanvispajdv")
public suspend fun allowNewPrivateEndpointConnections(`value`: Output) {
this.allowNewPrivateEndpointConnections = value
}
/**
* @param value Property to enable and disable FTP on ASEV3
*/
@JvmName("xnxgtejmwwdwdunp")
public suspend fun ftpEnabled(`value`: Output) {
this.ftpEnabled = value
}
/**
* @param value Customer provided Inbound IP Address. Only able to be set on Ase create.
*/
@JvmName("bqiskkkabqoparqf")
public suspend fun inboundIpAddressOverride(`value`: Output) {
this.inboundIpAddressOverride = value
}
/**
* @param value Kind of resource.
*/
@JvmName("yowlbfcqwiijnbke")
public suspend fun kind(`value`: Output) {
this.kind = value
}
/**
* @param value Property to enable and disable Remote Debug on ASEV3
*/
@JvmName("qcshtlmkrrmnpcja")
public suspend fun remoteDebugEnabled(`value`: Output) {
this.remoteDebugEnabled = value
}
/**
* @param value Property to enable and disable new private endpoint connection creation on ASE
*/
@JvmName("dhajytjrfxgvhwqx")
public suspend fun allowNewPrivateEndpointConnections(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.allowNewPrivateEndpointConnections = mapped
}
/**
* @param value Property to enable and disable FTP on ASEV3
*/
@JvmName("eeqpnppiryohtmau")
public suspend fun ftpEnabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ftpEnabled = mapped
}
/**
* @param value Customer provided Inbound IP Address. Only able to be set on Ase create.
*/
@JvmName("dfwphwdsikpogxxq")
public suspend fun inboundIpAddressOverride(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.inboundIpAddressOverride = mapped
}
/**
* @param value Kind of resource.
*/
@JvmName("qxpldhaosvaueeos")
public suspend fun kind(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.kind = mapped
}
/**
* @param value Property to enable and disable Remote Debug on ASEV3
*/
@JvmName("iooyvkmxvwmgwwfx")
public suspend fun remoteDebugEnabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.remoteDebugEnabled = mapped
}
internal fun build(): AseV3NetworkingConfigurationArgs = AseV3NetworkingConfigurationArgs(
allowNewPrivateEndpointConnections = allowNewPrivateEndpointConnections,
ftpEnabled = ftpEnabled,
inboundIpAddressOverride = inboundIpAddressOverride,
kind = kind,
remoteDebugEnabled = remoteDebugEnabled,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy