ServiceTemplateSpecVolumeArgs

data class ServiceTemplateSpecVolumeArgs(val csi: Output<ServiceTemplateSpecVolumeCsiArgs>? = null, val emptyDir: Output<ServiceTemplateSpecVolumeEmptyDirArgs>? = null, val name: Output<String>, val nfs: Output<ServiceTemplateSpecVolumeNfsArgs>? = null, val secret: Output<ServiceTemplateSpecVolumeSecretArgs>? = null) : ConvertibleToJava<ServiceTemplateSpecVolumeArgs>

Constructors

Link copied to clipboard
constructor(csi: Output<ServiceTemplateSpecVolumeCsiArgs>? = null, emptyDir: Output<ServiceTemplateSpecVolumeEmptyDirArgs>? = null, name: Output<String>, nfs: Output<ServiceTemplateSpecVolumeNfsArgs>? = null, secret: Output<ServiceTemplateSpecVolumeSecretArgs>? = null)

Properties

Link copied to clipboard

A filesystem specified by the Container Storage Interface (CSI). Structure is documented below.

Link copied to clipboard

Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs). Structure is documented below.

Link copied to clipboard
val name: Output<String>

Volume's name.

Link copied to clipboard

A filesystem backed by a Network File System share. This filesystem requires the run.googleapis.com/execution-environment annotation to be set to "gen2" and run.googleapis.com/launch-stage set to "BETA" or "ALPHA". Structure is documented below.

Link copied to clipboard

The secret's value will be presented as the content of a file whose name is defined in the item path. If no items are defined, the name of the file is the secret_name. Structure is documented below.

Functions

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