class Google::Apis::CloudmonitoringV2beta2::ListTimeseriesDescriptorsResponse

The response of cloudmonitoring.timeseriesDescriptors.list

Attributes

kind[RW]

Identifies what kind of resource this is. Value: the fixed string ā€œ cloudmonitoring#listTimeseriesDescriptorsResponseā€. 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 this value to the pageToken query parameter. 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 descriptors. Corresponds to the JSON property `timeseries` @return [Array<Google::Apis::CloudmonitoringV2beta2::TimeseriesDescriptor>]

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 151
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 156
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