com.pulumi.azure.maps.kotlin.outputs.AccountDataStore.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.maps.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property storageAccountId The ID of the Storage Account that should be linked to this Azure Maps Account.
* @property uniqueName The name given to the linked Storage Account.
*/
public data class AccountDataStore(
public val storageAccountId: String? = null,
public val uniqueName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.maps.outputs.AccountDataStore): AccountDataStore = AccountDataStore(
storageAccountId = javaType.storageAccountId().map({ args0 -> args0 }).orElse(null),
uniqueName = javaType.uniqueName(),
)
}
}