Show / Hide Table of Contents

Class DisplayData

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

Inheritance
object
DisplayData
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class DisplayData : IDirectResponseSchema

Properties

BoolValue

Contains value if the data is of a boolean type.

Declaration
[JsonProperty("boolValue")]
public virtual bool? BoolValue { get; set; }
Property Value
Type Description
bool?

DurationValue

Contains value if the data is of duration type.

Declaration
[JsonProperty("durationValue")]
public virtual object DurationValue { get; set; }
Property Value
Type Description
object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

FloatValue

Contains value if the data is of float type.

Declaration
[JsonProperty("floatValue")]
public virtual float? FloatValue { get; set; }
Property Value
Type Description
float?

Int64Value

Contains value if the data is of int64 type.

Declaration
[JsonProperty("int64Value")]
public virtual long? Int64Value { get; set; }
Property Value
Type Description
long?

JavaClassValue

Contains value if the data is of java class type.

Declaration
[JsonProperty("javaClassValue")]
public virtual string JavaClassValue { get; set; }
Property Value
Type Description
string

Key

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.

Declaration
[JsonProperty("key")]
public virtual string Key { get; set; }
Property Value
Type Description
string

Label

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

Declaration
[JsonProperty("label")]
public virtual string Label { get; set; }
Property Value
Type Description
string

Namespace__

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.

Declaration
[JsonProperty("namespace")]
public virtual string Namespace__ { get; set; }
Property Value
Type Description
string

ShortStrValue

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.

Declaration
[JsonProperty("shortStrValue")]
public virtual string ShortStrValue { get; set; }
Property Value
Type Description
string

StrValue

Contains value if the data is of string type.

Declaration
[JsonProperty("strValue")]
public virtual string StrValue { get; set; }
Property Value
Type Description
string

TimestampValue

object representation of TimestampValueRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use TimestampValueDateTimeOffset instead.")]
public virtual object TimestampValue { get; set; }
Property Value
Type Description
object

TimestampValueDateTimeOffset

DateTimeOffset representation of TimestampValueRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? TimestampValueDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

TimestampValueRaw

Contains value if the data is of timestamp type.

Declaration
[JsonProperty("timestampValue")]
public virtual string TimestampValueRaw { get; set; }
Property Value
Type Description
string

Url

An optional full URL.

Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX