com.pulumi.azurenative.mobilenetwork.kotlin.outputs.SimGroupResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.mobilenetwork.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* SIM group resource.
* @property encryptionKey A key to encrypt the SIM data that belongs to this SIM group.
* @property id Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
* @property identity The identity used to retrieve the encryption key from Azure key vault.
* @property location The geo-location where the resource lives
* @property mobileNetwork Mobile network that this SIM group belongs to. The mobile network must be in the same location as the SIM group.
* @property name The name of the resource
* @property provisioningState The provisioning state of the SIM group resource.
* @property systemData Azure Resource Manager metadata containing createdBy and modifiedBy information.
* @property tags Resource tags.
* @property type The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
public data class SimGroupResponse(
public val encryptionKey: KeyVaultKeyResponse? = null,
public val id: String,
public val identity: ManagedServiceIdentityResponse? = null,
public val location: String,
public val mobileNetwork: MobileNetworkResourceIdResponse? = null,
public val name: String,
public val provisioningState: String,
public val systemData: SystemDataResponse,
public val tags: Map? = null,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.mobilenetwork.outputs.SimGroupResponse): SimGroupResponse = SimGroupResponse(
encryptionKey = javaType.encryptionKey().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.mobilenetwork.kotlin.outputs.KeyVaultKeyResponse.Companion.toKotlin(args0)
})
}).orElse(null),
id = javaType.id(),
identity = javaType.identity().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.mobilenetwork.kotlin.outputs.ManagedServiceIdentityResponse.Companion.toKotlin(args0)
})
}).orElse(null),
location = javaType.location(),
mobileNetwork = javaType.mobileNetwork().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.mobilenetwork.kotlin.outputs.MobileNetworkResourceIdResponse.Companion.toKotlin(args0)
})
}).orElse(null),
name = javaType.name(),
provisioningState = javaType.provisioningState(),
systemData = javaType.systemData().let({ args0 ->
com.pulumi.azurenative.mobilenetwork.kotlin.outputs.SystemDataResponse.Companion.toKotlin(args0)
}),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
type = javaType.type(),
)
}
}