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.



2056
2057
2058
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2056

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



2042
2043
2044
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2042

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)


2049
2050
2051
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2049

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)


2054
2055
2056
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2054

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2061
2062
2063
2064
2065
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2061

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