DataContainerArgs

data class DataContainerArgs(val dataType: Output<Either<String, DataType>>, val description: Output<String>? = null, val isArchived: Output<Boolean>? = null, val properties: Output<Map<String, String>>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<DataContainerArgs>

Container for data asset versions.

Constructors

Link copied to clipboard
constructor(dataType: Output<Either<String, DataType>>, description: Output<String>? = null, isArchived: Output<Boolean>? = null, properties: Output<Map<String, String>>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val dataType: Output<Either<String, DataType>>

Required Specifies the type of data.

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

The asset description text.

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

Is the asset archived?

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

The asset property dictionary.

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

Tag dictionary. Tags can be added, removed, and updated.

Functions

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