![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.nginx.kotlin.inputs.DeploymentNetworkInterfaceArgs.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.nginx.kotlin.inputs
import com.pulumi.azure.nginx.inputs.DeploymentNetworkInterfaceArgs.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.jvm.JvmName
/**
*
* @property subnetId Specify The Subnet Resource ID for this NGINX Deployment. Changing this forces a new NGINX Deployment to be created.
*/
public data class DeploymentNetworkInterfaceArgs(
public val subnetId: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.nginx.inputs.DeploymentNetworkInterfaceArgs =
com.pulumi.azure.nginx.inputs.DeploymentNetworkInterfaceArgs.builder()
.subnetId(subnetId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DeploymentNetworkInterfaceArgs].
*/
@PulumiTagMarker
public class DeploymentNetworkInterfaceArgsBuilder internal constructor() {
private var subnetId: Output? = null
/**
* @param value Specify The Subnet Resource ID for this NGINX Deployment. Changing this forces a new NGINX Deployment to be created.
*/
@JvmName("wnhkkfystuhkewmr")
public suspend fun subnetId(`value`: Output) {
this.subnetId = value
}
/**
* @param value Specify The Subnet Resource ID for this NGINX Deployment. Changing this forces a new NGINX Deployment to be created.
*/
@JvmName("cqlhatmmtnopsrgu")
public suspend fun subnetId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.subnetId = mapped
}
internal fun build(): DeploymentNetworkInterfaceArgs = DeploymentNetworkInterfaceArgs(
subnetId = subnetId ?: throw PulumiNullFieldException("subnetId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy