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

com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSliceResult.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
import kotlin.collections.Map

/**
 * A collection of values returned by getNetworkSlice.
 * @property description A description of this Mobile Network Slice.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property location The Azure Region where the Mobile Network Slice exists.
 * @property mobileNetworkId
 * @property name
 * @property singleNetworkSliceSelectionAssistanceInformations A `single_network_slice_selection_assistance_information` block as defined below. Single-network slice selection assistance information (S-NSSAI).
 * @property tags A mapping of tags which are assigned to the Mobile Network Slice.
 */
public data class GetNetworkSliceResult(
    public val description: String,
    public val id: String,
    public val location: String,
    public val mobileNetworkId: String,
    public val name: String,
    public val singleNetworkSliceSelectionAssistanceInformations:
    List,
    public val tags: Map,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.mobile.outputs.GetNetworkSliceResult):
            GetNetworkSliceResult = GetNetworkSliceResult(
            description = javaType.description(),
            id = javaType.id(),
            location = javaType.location(),
            mobileNetworkId = javaType.mobileNetworkId(),
            name = javaType.name(),
            singleNetworkSliceSelectionAssistanceInformations = javaType.singleNetworkSliceSelectionAssistanceInformations().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSliceSingleNetworkSliceSelectionAssistanceInformation.Companion.toKotlin(args0)
                })
            }),
            tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy