![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSimPolicySlice.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
import kotlin.collections.List
/**
*
* @property dataNetworks An array of `data_network` block as defined below.
* @property defaultDataNetworkId The ID of default data network to use if the UE does not explicitly specify it.
* @property sliceId The ID of the slice that these settings apply to.
*/
public data class GetNetworkSimPolicySlice(
public val dataNetworks: List,
public val defaultDataNetworkId: String,
public val sliceId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.mobile.outputs.GetNetworkSimPolicySlice): GetNetworkSimPolicySlice = GetNetworkSimPolicySlice(
dataNetworks = javaType.dataNetworks().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSimPolicySliceDataNetwork.Companion.toKotlin(args0)
})
}),
defaultDataNetworkId = javaType.defaultDataNetworkId(),
sliceId = javaType.sliceId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy