![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.databricks.kotlin.outputs.WorkspaceManagedDiskIdentity.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.databricks.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property principalId The principal UUID for the internal databricks storage account needed to provide access to the workspace for enabling Customer Managed Keys.
* @property tenantId The UUID of the tenant where the internal databricks storage account was created.
* @property type The type of the internal databricks storage account.
*/
public data class WorkspaceManagedDiskIdentity(
public val principalId: String? = null,
public val tenantId: String? = null,
public val type: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.databricks.outputs.WorkspaceManagedDiskIdentity): WorkspaceManagedDiskIdentity = WorkspaceManagedDiskIdentity(
principalId = javaType.principalId().map({ args0 -> args0 }).orElse(null),
tenantId = javaType.tenantId().map({ args0 -> args0 }).orElse(null),
type = javaType.type().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy