com.pulumi.azure.mobile.kotlin.outputs.NetworkSimStaticIpConfiguration.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.mobile.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property attachedDataNetworkId The ID of attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.
* @property sliceId The ID of network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.
* @property staticIpv4Address The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.
*/
public data class NetworkSimStaticIpConfiguration(
public val attachedDataNetworkId: String,
public val sliceId: String,
public val staticIpv4Address: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.mobile.outputs.NetworkSimStaticIpConfiguration):
NetworkSimStaticIpConfiguration = NetworkSimStaticIpConfiguration(
attachedDataNetworkId = javaType.attachedDataNetworkId(),
sliceId = javaType.sliceId(),
staticIpv4Address = javaType.staticIpv4Address().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy