Class: Google::Apis::MonitoringV3::ListGroupMembersResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb

Overview

The ListGroupMembers response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListGroupMembersResponse

Returns a new instance of ListGroupMembersResponse.



1844
1845
1846
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1844

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#membersArray<Google::Apis::MonitoringV3::MonitoredResource>

A set of monitored resources in the group. Corresponds to the JSON property members



1830
1831
1832
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1830

def members
  @members
end

#next_page_tokenString

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

Returns:

  • (String)


1837
1838
1839
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1837

def next_page_token
  @next_page_token
end

#total_sizeFixnum

The total number of elements matching this request. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


1842
1843
1844
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1842

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1849
1850
1851
1852
1853
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1849

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