Class: Google::Apis::CloudidentityV1::ListGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::ListGroupsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/representations.rb
Overview
Response message for ListGroups operation.
Instance Attribute Summary collapse
-
#groups ⇒ Array<Google::Apis::CloudidentityV1::Group>
Groups returned in response to list request.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results available for listing.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListGroupsResponse
constructor
A new instance of ListGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListGroupsResponse
Returns a new instance of ListGroupsResponse.
2117 2118 2119 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2117 def initialize(**args) update!(**args) end |
Instance Attribute Details
#groups ⇒ Array<Google::Apis::CloudidentityV1::Group>
Groups returned in response to list request. The results are not sorted.
Corresponds to the JSON property groups
2109 2110 2111 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2109 def groups @groups end |
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results available for listing.
Corresponds to the JSON property nextPageToken
2115 2116 2117 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2115 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2122 2123 2124 2125 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2122 def update!(**args) @groups = args[:groups] if args.key?(:groups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |