All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSimPolicySlice.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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