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.



2256
2257
2258
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2256

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



2242
2243
2244
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2242

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)


2249
2250
2251
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2249

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)


2254
2255
2256
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2254

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2261
2262
2263
2264
2265
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2261

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