Class: Google::Apis::DataflowV1b3::DisplayData

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DisplayData

Returns a new instance of DisplayData



2251
2252
2253
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2251

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bool_valueBoolean Also known as: bool_value?

Contains value if the data is of a boolean type. Corresponds to the JSON property boolValue

Returns:

  • (Boolean)


2183
2184
2185
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2183

def bool_value
  @bool_value
end

#duration_valueString

Contains value if the data is of duration type. Corresponds to the JSON property durationValue

Returns:

  • (String)


2204
2205
2206
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2204

def duration_value
  @duration_value
end

#float_valueFloat

Contains value if the data is of float type. Corresponds to the JSON property floatValue

Returns:

  • (Float)


2217
2218
2219
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2217

def float_value
  @float_value
end

#int64_valueFixnum

Contains value if the data is of int64 type. Corresponds to the JSON property int64Value

Returns:

  • (Fixnum)


2199
2200
2201
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2199

def int64_value
  @int64_value
end

#java_class_valueString

Contains value if the data is of java class type. Corresponds to the JSON property javaClassValue

Returns:

  • (String)


2189
2190
2191
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2189

def java_class_value
  @java_class_value
end

#keyString

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. Corresponds to the JSON property key

Returns:

  • (String)


2224
2225
2226
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2224

def key
  @key
end

#labelString

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

Returns:

  • (String)


2244
2245
2246
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2244

def label
  @label
end

#namespaceString

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. Corresponds to the JSON property namespace

Returns:

  • (String)


2212
2213
2214
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2212

def namespace
  @namespace
end

#short_str_valueString

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. Corresponds to the JSON property shortStrValue

Returns:

  • (String)


2234
2235
2236
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2234

def short_str_value
  @short_str_value
end

#str_valueString

Contains value if the data is of string type. Corresponds to the JSON property strValue

Returns:

  • (String)


2194
2195
2196
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2194

def str_value
  @str_value
end

#timestamp_valueString

Contains value if the data is of timestamp type. Corresponds to the JSON property timestampValue

Returns:

  • (String)


2249
2250
2251
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2249

def timestamp_value
  @timestamp_value
end

#urlString

An optional full URL. Corresponds to the JSON property url

Returns:

  • (String)


2239
2240
2241
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2239

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2256

def update!(**args)
  @bool_value = args[:bool_value] if args.key?(:bool_value)
  @java_class_value = args[:java_class_value] if args.key?(:java_class_value)
  @str_value = args[:str_value] if args.key?(:str_value)
  @int64_value = args[:int64_value] if args.key?(:int64_value)
  @duration_value = args[:duration_value] if args.key?(:duration_value)
  @namespace = args[:namespace] if args.key?(:namespace)
  @float_value = args[:float_value] if args.key?(:float_value)
  @key = args[:key] if args.key?(:key)
  @short_str_value = args[:short_str_value] if args.key?(:short_str_value)
  @url = args[:url] if args.key?(:url)
  @label = args[:label] if args.key?(:label)
  @timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value)
end