VolumeMountResponse

data class VolumeMountResponse(val mountPath: String? = null, val subPath: String? = null, val volumeName: String? = null)

Volume mount for the Container App.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val mountPath: String? = null

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

Link copied to clipboard
val subPath: 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: String? = null

This must match the Name of a Volume.