TaskSpecContainerSpecConfigsInner

@Serializable
data class TaskSpecContainerSpecConfigsInner(val file: TaskSpecContainerSpecConfigsInnerFile? = null, val runtime: JsonObject? = null, val configID: String? = null, val configName: String? = null)

Parameters

file
runtime

Runtime represents a target that is not mounted into the container but is used by the task


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

configID

ConfigID represents the ID of the specific config that we're referencing.

configName

ConfigName is the name of the config that this references, but this is just provided for lookup/display purposes. The config in the reference will be identified by its ID.

Constructors

Link copied to clipboard
constructor(file: TaskSpecContainerSpecConfigsInnerFile? = null, runtime: JsonObject? = null, configID: String? = null, configName: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "ConfigID")
val configID: String?
Link copied to clipboard
@SerialName(value = "ConfigName")
val configName: String?
Link copied to clipboard
@SerialName(value = "File")
val file: TaskSpecContainerSpecConfigsInnerFile?
Link copied to clipboard
@SerialName(value = "Runtime")
val runtime: JsonObject?