AzureFileVolumeResponse

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

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val enableSubPath: 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: List<String>? = null

These are the mount options for a persistent disk.

Link copied to clipboard

The mount path of the persistent disk.

Link copied to clipboard
val readOnly: Boolean? = null

Indicates whether the persistent disk is a readOnly one.

Link copied to clipboard
val shareName: String? = null

The share name of the Azure File share.

Link copied to clipboard

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