class Google::Apis::CloudmonitoringV2beta2::ListTimeseriesResponse
The response of cloudmonitoring.timeseries.list
Attributes
Identifies what kind of resource this is. Value: the fixed string ā cloudmonitoring#listTimeseriesResponseā. Corresponds to the JSON property `kind` @return [String]
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]
The oldest timestamp of the interval of this query as an RFC 3339 string. Corresponds to the JSON property `oldest` @return [DateTime]
The returned time series. Corresponds to the JSON property `timeseries` @return [Array<Google::Apis::CloudmonitoringV2beta2::Timeseries>]
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
# File generated/google/apis/cloudmonitoring_v2beta2/classes.rb, line 218 def initialize(**args) update!(**args) end
Public Instance Methods
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