class Google::Apis::LoggingV1beta3::ListLogMetricsResponse
Result returned from ListLogMetrics.
Attributes
metrics[RW]
The list of metrics that was requested. Corresponds to the JSON property `metrics` @return [Array<Google::Apis::LoggingV1beta3::LogMetric>]
next_page_token[RW]
If there are more results, then `nextPageToken` is returned in the response. To get the next batch of entries, use the value of `nextPageToken` as ` pageToken` in the next call of `ListLogMetrics`. If `nextPageToken` is empty, then there are no more results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/logging_v1beta3/classes.rb, line 712 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/logging_v1beta3/classes.rb, line 717 def update!(**args) @metrics = args[:metrics] unless args[:metrics].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? end