![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.hdinsight.kotlin.outputs.HadoopClusterStorageAccountGen2.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.hdinsight.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property filesystemId The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
* @property isDefault Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
* > **NOTE:** One of the `storage_account` or `storage_account_gen2` blocks must be marked as the default.
* @property managedIdentityResourceId The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
* > **NOTE:** This can be obtained from the `id` of the `azure.storage.Container` resource.
* @property storageResourceId The ID of the Storage Account. Changing this forces a new resource to be created.
*/
public data class HadoopClusterStorageAccountGen2(
public val filesystemId: String,
public val isDefault: Boolean,
public val managedIdentityResourceId: String,
public val storageResourceId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.hdinsight.outputs.HadoopClusterStorageAccountGen2): HadoopClusterStorageAccountGen2 = HadoopClusterStorageAccountGen2(
filesystemId = javaType.filesystemId(),
isDefault = javaType.isDefault(),
managedIdentityResourceId = javaType.managedIdentityResourceId(),
storageResourceId = javaType.storageResourceId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy