Volume Args
data class VolumeArgs(val mountOptions: Output<String>? = null, val name: Output<String>? = null, val secrets: Output<List<SecretVolumeItemArgs>>? = null, val storageName: Output<String>? = null, val storageType: Output<Either<String, StorageType>>? = null) : ConvertibleToJava<VolumeArgs>
Volume definitions for the Container App.
Constructors
Link copied to clipboard
constructor(mountOptions: Output<String>? = null, name: Output<String>? = null, secrets: Output<List<SecretVolumeItemArgs>>? = null, storageName: Output<String>? = null, storageType: Output<Either<String, StorageType>>? = null)
Properties
Link copied to clipboard
Mount options used while mounting the AzureFile. Must be a comma-separated string.
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
Name of storage resource. No need to provide for EmptyDir and Secret.
Link copied to clipboard
Storage type for the volume. If not provided, use EmptyDir.