All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterStorageProfile.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@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