ActionVersion

data class ActionVersion(    val id: ActionVersionId? = null,     val name: ActionName? = null,     val createdAt: Long? = null,     val version: Version? = null,     val namespace: NamespaceName? = null,     val location: String? = null,     val context: Map<String, String>? = null,     val inputs: Array<DatasetId>? = null,     val outputs: Array<DatasetId>? = null,     val latestRun: Run? = null)

Represents an action version.

Constructors

Link copied to clipboard
constructor(    id: ActionVersionId? = null,     name: ActionName? = null,     createdAt: Long? = null,     version: Version? = null,     namespace: NamespaceName? = null,     location: String? = null,     context: Map<String, String>? = null,     inputs: Array<DatasetId>? = null,     outputs: Array<DatasetId>? = null,     latestRun: Run? = null)

Properties

Link copied to clipboard
val context: Map<String, String>? = null

The context associated with the action version (optional).

Link copied to clipboard
val createdAt: Long? = null

The timestamp of when the action version was created (optional).

Link copied to clipboard
val id: ActionVersionId? = null

The ID of the action version (optional).

Link copied to clipboard
val inputs: Array<DatasetId>? = null

The array of input dataset IDs associated with the action version (optional).

Link copied to clipboard
val latestRun: Run? = null

The latest run of the action version (optional).

Link copied to clipboard
val location: String? = null

The location of the action version (optional).

Link copied to clipboard
val name: ActionName? = null

The name of the action version (optional).

Link copied to clipboard

The namespace name of the action version (optional).

Link copied to clipboard
val outputs: Array<DatasetId>? = null

The array of output dataset IDs associated with the action version (optional).

Link copied to clipboard
val version: Version? = null

The version of the action (optional).