class Google::Apis::MonitoringV1::ListDashboardsResponse

The ListDashboards request.

Attributes

dashboards[RW]

The list of requested dashboards. Corresponds to the JSON property `dashboards` @return [Array<Google::Apis::MonitoringV1::Dashboard>]

next_page_token[RW]

If there are more results than have been returned, then this field is set to a non-empty value. To see the additional results, use that value as page_token in the next call to this method. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/monitoring_v1/classes.rb, line 547
def update!(**args)
  @dashboards = args[:dashboards] if args.key?(:dashboards)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end