class Google::Apis::CloudmonitoringV2beta2::ListTimeseriesDescriptorsResponse
The response of cloudmonitoring.timeseriesDescriptors.list
Attributes
Identifies what kind of resource this is. Value: the fixed string ā cloudmonitoring#listTimeseriesDescriptorsResponseā. 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 this value to the pageToken query parameter. 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 descriptors. Corresponds to the JSON property `timeseries` @return [Array<Google::Apis::CloudmonitoringV2beta2::TimeseriesDescriptor>]
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 151 def initialize(**args) update!(**args) end
Public Instance Methods
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