com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterStorageProfile.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.containerservice.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property blobDriverEnabled Is the Blob CSI driver enabled?
* @property diskDriverEnabled Is the Disk CSI driver enabled?
* @property diskDriverVersion The configured Disk CSI Driver version.
* @property fileDriverEnabled Is the File CSI driver enabled?
* @property snapshotControllerEnabled Is the Snapshot Controller enabled?
*/
public data class GetKubernetesClusterStorageProfile(
public val blobDriverEnabled: Boolean,
public val diskDriverEnabled: Boolean,
public val diskDriverVersion: String,
public val fileDriverEnabled: Boolean,
public val snapshotControllerEnabled: Boolean,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GetKubernetesClusterStorageProfile):
GetKubernetesClusterStorageProfile = GetKubernetesClusterStorageProfile(
blobDriverEnabled = javaType.blobDriverEnabled(),
diskDriverEnabled = javaType.diskDriverEnabled(),
diskDriverVersion = javaType.diskDriverVersion(),
fileDriverEnabled = javaType.fileDriverEnabled(),
snapshotControllerEnabled = javaType.snapshotControllerEnabled(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy