class Google::Apis::MonitoringV3::ListGroupMembersResponse

The ListGroupMembers response.

Attributes

members[RW]

A set of monitored resources in the group. Corresponds to the JSON property `members` @return [Array<Google::Apis::MonitoringV3::MonitoredResource>]

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]

total_size[RW]

The total number of elements matching this request. Corresponds to the JSON property `totalSize` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 2106
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_v3/classes.rb, line 2111
def update!(**args)
  @members = args[:members] if args.key?(:members)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @total_size = args[:total_size] if args.key?(:total_size)
end