class Google::Apis::MonitoringV3::QueryTimeSeriesRequest
The QueryTimeSeries request.
Attributes
page_size[RW]
A positive number that is the maximum number of time_series_data to return. Corresponds to the JSON property `pageSize` @return [Fixnum]
page_token[RW]
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` @return [String]
query[RW]
Required. The query in the Monitoring Query Language (cloud.google.com/ monitoring/mql/reference) format. The default time zone is in UTC. Corresponds to the JSON property `query` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 3560 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 3565 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