Class: Google::Apis::MonitoringV3::ListGroupMembersResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::ListGroupMembersResponse
 
 
- 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
- 
  
    
      #members  ⇒ Array<Google::Apis::MonitoringV3::MonitoredResource> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A set of monitored resources in the group.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If there are more results than have been returned, then this field is set to a non-empty value.
 - 
  
    
      #total_size  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of elements matching this request.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListGroupMembersResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListGroupMembersResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListGroupMembersResponse
Returns a new instance of ListGroupMembersResponse.
      2313 2314 2315  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2313 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#members ⇒ Array<Google::Apis::MonitoringV3::MonitoredResource>
A set of monitored resources in the group.
Corresponds to the JSON property members
      2299 2300 2301  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2299 def members @members end  | 
  
#next_page_token ⇒ String
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
      2306 2307 2308  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2306 def next_page_token @next_page_token end  | 
  
#total_size ⇒ Fixnum
The total number of elements matching this request.
Corresponds to the JSON property totalSize
      2311 2312 2313  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2311 def total_size @total_size end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2318 2319 2320 2321 2322  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2318 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  |