class Google::Apis::MonitoringV3::TimeSeriesDescriptor
A descriptor for the labels and points in a time series.
Attributes
label_descriptors[RW]
Descriptors for the labels. Corresponds to the JSON property `labelDescriptors` @return [Array<Google::Apis::MonitoringV3::LabelDescriptor>]
point_descriptors[RW]
Descriptors for the point data value columns. Corresponds to the JSON property `pointDescriptors` @return [Array<Google::Apis::MonitoringV3::ValueDescriptor>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 4201 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/monitoring_v3/classes.rb, line 4206 def update!(**args) @label_descriptors = args[:label_descriptors] if args.key?(:label_descriptors) @point_descriptors = args[:point_descriptors] if args.key?(:point_descriptors) end