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.
2406 2407 2408 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2406 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
2392 2393 2394 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2392 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
2399 2400 2401 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2399 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
2404 2405 2406 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2404 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2411 2412 2413 2414 2415 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2411 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 |