VolumeMountArgs

data class VolumeMountArgs(val mountPath: Output<String>? = null, val subPath: Output<String>? = null, val volumeName: Output<String>? = null) : ConvertibleToJava<VolumeMountArgs>

Volume mount for the Container App.

Constructors

Link copied to clipboard
constructor(mountPath: Output<String>? = null, subPath: Output<String>? = null, volumeName: Output<String>? = null)

Properties

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

Path within the container at which the volume should be mounted.Must not contain ':'.

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

Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).

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

This must match the Name of a Volume.

Functions

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