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

com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSimPolicyResult.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map

/**
 * A collection of values returned by getNetworkSimPolicy.
 * @property defaultSliceId The ID of default slice to use if the UE does not explicitly specify it.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property location The Azure Region where the Mobile Network Sim Policy should exist.
 * @property mobileNetworkId
 * @property name
 * @property ratFrequencySelectionPriorityIndex RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413.
 * @property registrationTimerInSeconds Interval for the UE periodic registration update procedure.
 * @property slices An array of `slice` block as defined below. The allowed slices and the settings to use for them.
 * @property tags A mapping of tags which should be assigned to the Mobile Network Sim Policies.
 * @property userEquipmentAggregateMaximumBitRates A `user_equipment_aggregate_maximum_bit_rate` block as defined below.
 */
public data class GetNetworkSimPolicyResult(
    public val defaultSliceId: String,
    public val id: String,
    public val location: String,
    public val mobileNetworkId: String,
    public val name: String,
    public val ratFrequencySelectionPriorityIndex: Int,
    public val registrationTimerInSeconds: Int,
    public val slices: List,
    public val tags: Map,
    public val userEquipmentAggregateMaximumBitRates: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.mobile.outputs.GetNetworkSimPolicyResult): GetNetworkSimPolicyResult = GetNetworkSimPolicyResult(
            defaultSliceId = javaType.defaultSliceId(),
            id = javaType.id(),
            location = javaType.location(),
            mobileNetworkId = javaType.mobileNetworkId(),
            name = javaType.name(),
            ratFrequencySelectionPriorityIndex = javaType.ratFrequencySelectionPriorityIndex(),
            registrationTimerInSeconds = javaType.registrationTimerInSeconds(),
            slices = javaType.slices().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSimPolicySlice.Companion.toKotlin(args0)
                })
            }),
            tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            userEquipmentAggregateMaximumBitRates = javaType.userEquipmentAggregateMaximumBitRates().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSimPolicyUserEquipmentAggregateMaximumBitRate.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy