AzureFileVolumeSourceArgs

data class AzureFileVolumeSourceArgs(val readOnly: Output<Boolean>? = null, val secretName: Output<String>, val shareName: Output<String>) : ConvertibleToJava<AzureFileVolumeSourceArgs>

AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

Constructors

Link copied to clipboard
constructor(readOnly: Output<Boolean>? = null, secretName: Output<String>, shareName: Output<String>)

Properties

Link copied to clipboard
val readOnly: Output<Boolean>? = null

readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Link copied to clipboard
val secretName: Output<String>

secretName is the name of secret that contains Azure Storage Account Name and Key

Link copied to clipboard
val shareName: Output<String>

shareName is the azure share Name

Functions

Link copied to clipboard
open override fun toJava(): AzureFileVolumeSourceArgs