class Google::Apis::DataflowV1b3::IntegerGauge

A metric value representing temporal values of a variable.

Attributes

timestamp[RW]

The time at which this value was measured. Measured as msecs from epoch. Corresponds to the JSON property `timestamp` @return [String]

value[RW]

A representation of an int64, n, that is immune to precision loss when encoded in JSON. Corresponds to the JSON property `value` @return [Google::Apis::DataflowV1b3::SplitInt64]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 1934
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 1939
def update!(**args)
  @timestamp = args[:timestamp] if args.key?(:timestamp)
  @value = args[:value] if args.key?(:value)
end