Class: Google::Apis::MonitoringV3::TimeSeriesDescriptor
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::TimeSeriesDescriptor
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb 
Overview
A descriptor for the labels and points in a time series.
Instance Attribute Summary collapse
- 
  
    
      #label_descriptors  ⇒ Array<Google::Apis::MonitoringV3::LabelDescriptor> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Descriptors for the labels.
 - 
  
    
      #point_descriptors  ⇒ Array<Google::Apis::MonitoringV3::ValueDescriptor> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Descriptors for the point data value columns.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TimeSeriesDescriptor 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TimeSeriesDescriptor.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ TimeSeriesDescriptor
Returns a new instance of TimeSeriesDescriptor.
      4806 4807 4808  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 4806 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#label_descriptors ⇒ Array<Google::Apis::MonitoringV3::LabelDescriptor>
Descriptors for the labels.
Corresponds to the JSON property labelDescriptors
      4799 4800 4801  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 4799 def label_descriptors @label_descriptors end  | 
  
#point_descriptors ⇒ Array<Google::Apis::MonitoringV3::ValueDescriptor>
Descriptors for the point data value columns.
Corresponds to the JSON property pointDescriptors
      4804 4805 4806  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 4804 def point_descriptors @point_descriptors end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4811 4812 4813 4814  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 4811 def update!(**args) @label_descriptors = args[:label_descriptors] if args.key?(:label_descriptors) @point_descriptors = args[:point_descriptors] if args.key?(:point_descriptors) end  |