Class: Google::Apis::MonitoringV3::Point
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::MonitoringV3::Point
 
- 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
- 
  
    
      #interval  ⇒ Google::Apis::MonitoringV3::TimeInterval 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A time interval extending just after a start time through an end time. 
- 
  
    
      #value  ⇒ Google::Apis::MonitoringV3::TypedValue 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A single strongly-typed value. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Point 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Point. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Point
Returns a new instance of Point
| 2161 2162 2163 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 2161 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#interval ⇒ Google::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
| 2154 2155 2156 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 2154 def interval @interval end | 
#value ⇒ Google::Apis::MonitoringV3::TypedValue
A single strongly-typed value.
Corresponds to the JSON property value
| 2159 2160 2161 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 2159 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2166 2167 2168 2169 | # File 'generated/google/apis/monitoring_v3/classes.rb', line 2166 def update!(**args) @interval = args[:interval] if args.key?(:interval) @value = args[:value] if args.key?(:value) end |