Class: Google::Apis::MonitoringV3::Point

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

Overview

A single data point in a time series.

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) ⇒ Point

Returns a new instance of Point



1431
1432
1433
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1431

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

Instance Attribute Details

#intervalGoogle::Apis::MonitoringV3::TimeInterval

A time interval extending just after a start time through an end time. If the start time is the same as the end time, then the interval represents a single point in time. Corresponds to the JSON property interval



1424
1425
1426
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1424

def interval
  @interval
end

#valueGoogle::Apis::MonitoringV3::TypedValue

A single strongly-typed value. Corresponds to the JSON property value



1429
1430
1431
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1429

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1436
1437
1438
1439
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1436

def update!(**args)
  @interval = args[:interval] if args.key?(:interval)
  @value = args[:value] if args.key?(:value)
end