DisplayDataArgs

data class DisplayDataArgs(val boolValue: Output<Boolean>? = null, val durationValue: Output<String>? = null, val floatValue: Output<Double>? = null, val int64Value: Output<String>? = null, val javaClassValue: Output<String>? = null, val key: Output<String>? = null, val label: Output<String>? = null, val namespace: Output<String>? = null, val shortStrValue: Output<String>? = null, val strValue: Output<String>? = null, val timestampValue: Output<String>? = null, val url: Output<String>? = null) : ConvertibleToJava<DisplayDataArgs>

Data provided with a pipeline or transform to provide descriptive info.

Constructors

Link copied to clipboard
fun DisplayDataArgs(boolValue: Output<Boolean>? = null, durationValue: Output<String>? = null, floatValue: Output<Double>? = null, int64Value: Output<String>? = null, javaClassValue: Output<String>? = null, key: Output<String>? = null, label: Output<String>? = null, namespace: Output<String>? = null, shortStrValue: Output<String>? = null, strValue: Output<String>? = null, timestampValue: Output<String>? = null, url: Output<String>? = null)

Functions

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

Properties

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

Contains value if the data is of a boolean type.

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

Contains value if the data is of duration type.

Link copied to clipboard
val floatValue: Output<Double>? = null

Contains value if the data is of float type.

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

Contains value if the data is of int64 type.

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

Contains value if the data is of java class type.

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

The key identifying the display data. This is intended to be used as a label for the display data when viewed in a dax monitoring system.

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

An optional label to display in a dax UI for the element.

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

The namespace for the key. This is usually a class name or programming language namespace (i.e. python module) which defines the display data. This allows a dax monitoring system to specially handle the data and perform custom rendering.

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

A possible additional shorter value to display. For example a java_class_name_value of com.mypackage.MyDoFn will be stored with MyDoFn as the short_str_value and com.mypackage.MyDoFn as the java_class_name value. short_str_value can be displayed and java_class_name_value will be displayed as a tooltip.

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

Contains value if the data is of string type.

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

Contains value if the data is of timestamp type.

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

An optional full URL.