class Google::Apis::CloudmonitoringV2beta2::ListTimeseriesResponse

The response of cloudmonitoring.timeseries.list

Attributes

kind[RW]

Identifies what kind of resource this is. Value: the fixed string ā€œ cloudmonitoring#listTimeseriesResponseā€. Corresponds to the JSON property `kind` @return [String]

next_page_token[RW]

Pagination token. If present, indicates that additional results are available for retrieval. To access the results past the pagination limit, set the pageToken query parameter to this value. All of the points of a time series will be returned before returning any point of the subsequent time series. Corresponds to the JSON property `nextPageToken` @return [String]

oldest[RW]

The oldest timestamp of the interval of this query as an RFC 3339 string. Corresponds to the JSON property `oldest` @return [DateTime]

timeseries[RW]

The returned time series. Corresponds to the JSON property `timeseries` @return [Array<Google::Apis::CloudmonitoringV2beta2::Timeseries>]

youngest[RW]

The youngest timestamp of the interval of this query as an RFC 3339 string. Corresponds to the JSON property `youngest` @return [DateTime]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/cloudmonitoring_v2beta2/classes.rb, line 218
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/cloudmonitoring_v2beta2/classes.rb, line 223
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @oldest = args[:oldest] if args.key?(:oldest)
  @timeseries = args[:timeseries] if args.key?(:timeseries)
  @youngest = args[:youngest] if args.key?(:youngest)
end