TaskSpecContainerSpecConfigsInnerFile

@Serializable
data class TaskSpecContainerSpecConfigsInnerFile(val name: String? = null, val UID: String? = null, val GID: String? = null, val mode: Int? = null)

File represents a specific target that is backed by a file.


>Note: Configs.File and Configs.Runtime are mutually exclusive

Parameters

name

Name represents the final filename in the filesystem.

UID

UID represents the file UID.

GID

GID represents the file GID.

mode

Mode represents the FileMode of the file.

Constructors

Link copied to clipboard
constructor(name: String? = null, UID: String? = null, GID: String? = null, mode: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "GID")
val GID: String?
Link copied to clipboard
@SerialName(value = "Mode")
val mode: Int?
Link copied to clipboard
@SerialName(value = "Name")
val name: String?
Link copied to clipboard
@SerialName(value = "UID")
val UID: String?