VolumeArgs

data class VolumeArgs(val name: Output<String>? = 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(name: Output<String>? = null, storageName: Output<String>? = null, storageType: Output<Either<String, StorageType>>? = null)

Properties

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

Volume name.

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

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

Link copied to clipboard
val storageType: Output<Either<String, StorageType>>? = null

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

Functions

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