Class: Google::Apis::MonitoringV3::QueryTimeSeriesRequest

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 QueryTimeSeries request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QueryTimeSeriesRequest

Returns a new instance of QueryTimeSeriesRequest.



3688
3689
3690
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3688

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

Instance Attribute Details

#page_sizeFixnum

A positive number that is the maximum number of time_series_data to return. Corresponds to the JSON property pageSize

Returns:

  • (Fixnum)


3673
3674
3675
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3673

def page_size
  @page_size
end

#page_tokenString

If this field is not empty then it must contain the nextPageToken value returned by a previous call to this method. Using this field causes the method to return additional results from the previous method call. Corresponds to the JSON property pageToken

Returns:

  • (String)


3680
3681
3682
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3680

def page_token
  @page_token
end

#queryString

Required. The query in the Monitoring Query Language (https://cloud.google.com/ monitoring/mql/reference) format. The default time zone is in UTC. Corresponds to the JSON property query

Returns:

  • (String)


3686
3687
3688
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3686

def query
  @query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3693
3694
3695
3696
3697
# File 'lib/google/apis/monitoring_v3/classes.rb', line 3693

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