![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.hsm.kotlin.inputs.ModuleNetworkProfileArgs.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.hsm.kotlin.inputs
import com.pulumi.azure.hsm.inputs.ModuleNetworkProfileArgs.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 networkInterfacePrivateIpAddresses The private IPv4 address of the network interface. Changing this forces a new Dedicated Hardware Security Module to be created.
* @property subnetId The ID of the subnet. Changing this forces a new Dedicated Hardware Security Module to be created.
*/
public data class ModuleNetworkProfileArgs(
public val networkInterfacePrivateIpAddresses: Output>,
public val subnetId: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.hsm.inputs.ModuleNetworkProfileArgs =
com.pulumi.azure.hsm.inputs.ModuleNetworkProfileArgs.builder()
.networkInterfacePrivateIpAddresses(
networkInterfacePrivateIpAddresses.applyValue({ args0 ->
args0.map({ args0 -> args0 })
}),
)
.subnetId(subnetId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ModuleNetworkProfileArgs].
*/
@PulumiTagMarker
public class ModuleNetworkProfileArgsBuilder internal constructor() {
private var networkInterfacePrivateIpAddresses: Output>? = null
private var subnetId: Output? = null
/**
* @param value The private IPv4 address of the network interface. Changing this forces a new Dedicated Hardware Security Module to be created.
*/
@JvmName("fxjcbwprroipipme")
public suspend fun networkInterfacePrivateIpAddresses(`value`: Output>) {
this.networkInterfacePrivateIpAddresses = value
}
@JvmName("kqsmqdysfcywflay")
public suspend fun networkInterfacePrivateIpAddresses(vararg values: Output) {
this.networkInterfacePrivateIpAddresses = Output.all(values.asList())
}
/**
* @param values The private IPv4 address of the network interface. Changing this forces a new Dedicated Hardware Security Module to be created.
*/
@JvmName("iqrqdghknepgcbyj")
public suspend fun networkInterfacePrivateIpAddresses(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy