VolumeArgs

data class VolumeArgs(val azureFile: Output<AzureFileVolumeArgs>? = null, val emptyDir: Output<Any>? = null, val gitRepo: Output<GitRepoVolumeArgs>? = null, val name: Output<String>, val secret: Output<Map<String, String>>? = null, val secretReference: Output<Map<String, String>>? = null) : ConvertibleToJava<VolumeArgs>

The properties of the volume.

Constructors

Link copied to clipboard
constructor(azureFile: Output<AzureFileVolumeArgs>? = null, emptyDir: Output<Any>? = null, gitRepo: Output<GitRepoVolumeArgs>? = null, name: Output<String>, secret: Output<Map<String, String>>? = null, secretReference: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val azureFile: Output<AzureFileVolumeArgs>? = null

The Azure File volume.

Link copied to clipboard
val emptyDir: Output<Any>? = null

The empty directory volume.

Link copied to clipboard
val gitRepo: Output<GitRepoVolumeArgs>? = null

The git repo volume.

Link copied to clipboard
val name: Output<String>

The name of the volume.

Link copied to clipboard
val secret: Output<Map<String, String>>? = null

The secret volume.

Link copied to clipboard
val secretReference: Output<Map<String, String>>? = null

The secret reference volume.

Functions

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