Class: Google::Apis::MonitoringV3::CreateTimeSeriesRequest

Inherits:
Object
  • Object
show all
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

The CreateTimeSeries request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreateTimeSeriesRequest

Returns a new instance of CreateTimeSeriesRequest.



1014
1015
1016
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1014

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

Instance Attribute Details

#time_seriesArray<Google::Apis::MonitoringV3::TimeSeries>

Required. The new data to be added to a list of time series. Adds at most one data point to each of several time series. The new data point must be more recent than any other point in its time series. Each TimeSeries value must fully specify a unique time series by supplying all label values for the metric and the monitored resource.The maximum number of TimeSeries objects per Create request is 200. Corresponds to the JSON property timeSeries



1012
1013
1014
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1012

def time_series
  @time_series
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1019
1020
1021
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1019

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