VolumeResponse

data class VolumeResponse(val mountOptions: String? = null, val name: String? = null, val secrets: List<SecretVolumeItemResponse>? = null, val storageName: String? = null, val storageType: String? = null)

Volume definitions for the Container App.

Constructors

Link copied to clipboard
constructor(mountOptions: String? = null, name: String? = null, secrets: List<SecretVolumeItemResponse>? = null, storageName: String? = null, storageType: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val mountOptions: String? = null

Mount options used while mounting the AzureFile. Must be a comma-separated string.

Link copied to clipboard
val name: String? = null

Volume name.

Link copied to clipboard

List of secrets to be added in volume. If no secrets are provided, all secrets in collection will be added to volume.

Link copied to clipboard
val storageName: String? = null

Name of storage resource. No need to provide for EmptyDir and Secret.

Link copied to clipboard
val storageType: String? = null

Storage type for the volume. If not provided, use EmptyDir.