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

com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSimResult.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.14.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

/**
 * A collection of values returned by getNetworkSim.
 * @property deviceType The device type this SIM is associated with.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property integratedCircuitCardIdentifier The integrated circuit card ID (ICCID) for the SIM.
 * @property internationalMobileSubscriberIdentity The international mobile subscriber identity (IMSI) for the SIM.
 * @property mobileNetworkSimGroupId
 * @property name
 * @property simPolicyId The ID of SIM policy used by this SIM.
 * @property simState The state of the SIM resource.
 * @property staticIpConfigurations A `static_ip_configuration` block as defined below.
 * @property vendorKeyFingerprint The public key fingerprint of the SIM vendor who provided this SIM.
 * @property vendorName The name of the SIM vendor who provided this SIM, if any.
 */
public data class GetNetworkSimResult(
    public val deviceType: String,
    public val id: String,
    public val integratedCircuitCardIdentifier: String,
    public val internationalMobileSubscriberIdentity: String,
    public val mobileNetworkSimGroupId: String,
    public val name: String,
    public val simPolicyId: String,
    public val simState: String,
    public val staticIpConfigurations: List,
    public val vendorKeyFingerprint: String,
    public val vendorName: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.mobile.outputs.GetNetworkSimResult):
            GetNetworkSimResult = GetNetworkSimResult(
            deviceType = javaType.deviceType(),
            id = javaType.id(),
            integratedCircuitCardIdentifier = javaType.integratedCircuitCardIdentifier(),
            internationalMobileSubscriberIdentity = javaType.internationalMobileSubscriberIdentity(),
            mobileNetworkSimGroupId = javaType.mobileNetworkSimGroupId(),
            name = javaType.name(),
            simPolicyId = javaType.simPolicyId(),
            simState = javaType.simState(),
            staticIpConfigurations = javaType.staticIpConfigurations().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.mobile.kotlin.outputs.GetNetworkSimStaticIpConfiguration.Companion.toKotlin(args0)
                })
            }),
            vendorKeyFingerprint = javaType.vendorKeyFingerprint(),
            vendorName = javaType.vendorName(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy