DatasetVersion

data class DatasetVersion(val id: DatasetId? = null, val type: DatasetVersion.Type? = null, val name: DatasetName? = null, val physicalName: DatasetName? = null, val createdAt: Long? = null, val version: Version? = null, val namespace: NamespaceName? = null, val sourceName: SourceName? = null, val fields: Array<Field>? = null, val tags: Array<TagName>? = null, val lifecycleState: String? = null, val description: String? = null, val createdByRun: Run? = null, val facets: Map<String, Any>? = null)

Represents a dataset version.

Constructors

Link copied to clipboard
constructor(id: DatasetId? = null, type: DatasetVersion.Type? = null, name: DatasetName? = null, physicalName: DatasetName? = null, createdAt: Long? = null, version: Version? = null, namespace: NamespaceName? = null, sourceName: SourceName? = null, fields: Array<Field>? = null, tags: Array<TagName>? = null, lifecycleState: String? = null, description: String? = null, createdByRun: Run? = null, facets: Map<String, Any>? = null)

Types

Link copied to clipboard

Enum class representing the types of a dataset version.

Properties

Link copied to clipboard
val createdAt: Long? = null

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

Link copied to clipboard
val createdByRun: Run? = null

The run that created the dataset version (optional).

Link copied to clipboard
val description: String? = null

The description of the dataset version (optional).

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

The facets associated with the dataset version (optional).

Link copied to clipboard
val fields: Array<Field>? = null

The array of fields in the dataset version (optional).

Link copied to clipboard
val id: DatasetId? = null

The ID of the dataset version (optional).

Link copied to clipboard
val lifecycleState: String? = null

The lifecycle state of the dataset version (optional).

Link copied to clipboard
val name: DatasetName? = null

The name of the dataset version (optional).

Link copied to clipboard

The namespace name of the dataset version (optional).

Link copied to clipboard

The physical name of the dataset version (optional).

Link copied to clipboard
val sourceName: SourceName? = null

The source name of the dataset version (optional).

Link copied to clipboard
val tags: Array<TagName>? = null

The array of tags associated with the dataset version (optional).

Link copied to clipboard

The type of the dataset version (optional).

Link copied to clipboard
val version: Version? = null

The version of the dataset (optional).