ContainerVolumeArgs

data class ContainerVolumeArgs(val containerPath: Output<String>? = null, val fromContainer: Output<String>? = null, val hostPath: Output<String>? = null, val readOnly: Output<Boolean>? = null, val volumeName: Output<String>? = null) : ConvertibleToJava<ContainerVolumeArgs>

Constructors

Link copied to clipboard
constructor(containerPath: Output<String>? = null, fromContainer: Output<String>? = null, hostPath: Output<String>? = null, readOnly: Output<Boolean>? = null, volumeName: Output<String>? = null)

Properties

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

The path in the container where the volume will be mounted.

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

The container where the volume is coming from.

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

The path on the host where the volume is coming from.

Link copied to clipboard
val readOnly: Output<Boolean>? = null

If true, this volume will be readonly. Defaults to false.

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

The name of the docker volume which should be mounted.

Functions

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