AzureFileVolumeArgs

data class AzureFileVolumeArgs(val enableSubPath: Output<Boolean>? = null, val mountOptions: Output<List<String>>? = null, val mountPath: Output<String>, val readOnly: Output<Boolean>? = null, val shareName: Output<String>? = null, val type: Output<String>) : ConvertibleToJava<AzureFileVolumeArgs>

The properties of the Azure File volume. Azure File shares are mounted as volumes.

Constructors

Link copied to clipboard
constructor(enableSubPath: Output<Boolean>? = null, mountOptions: Output<List<String>>? = null, mountPath: Output<String>, readOnly: Output<Boolean>? = null, shareName: Output<String>? = null, type: Output<String>)

Properties

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

If set to true, it will create and mount a dedicated directory for every individual app instance.

Link copied to clipboard
val mountOptions: Output<List<String>>? = null

These are the mount options for a persistent disk.

Link copied to clipboard
val mountPath: Output<String>

The mount path of the persistent disk.

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

Indicates whether the persistent disk is a readOnly one.

Link copied to clipboard
val shareName: Output<String>? = null

The share name of the Azure File share.

Link copied to clipboard
val type: Output<String>

The type of the underlying resource to mount as a persistent disk. Expected value is 'AzureFileVolume'.

Functions

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