Class: Google::Apis::CloudidentityV1beta1::ListGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::ListGroupsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudidentity_v1beta1/classes.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb
Overview
The response message for GroupsService.ListGroups.
Instance Attribute Summary collapse
-
#groups ⇒ Array<Google::Apis::CloudidentityV1beta1::Group>
The
Group
s under the specifiedparent
. -
#next_page_token ⇒ String
A continuation token to retrieve the next page of results, or empty if there are no more results available.
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.
1662 1663 1664 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1662 def initialize(**args) update!(**args) end |
Instance Attribute Details
#groups ⇒ Array<Google::Apis::CloudidentityV1beta1::Group>
The Group
s under the specified parent
.
Corresponds to the JSON property groups
1654 1655 1656 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1654 def groups @groups end |
#next_page_token ⇒ String
A continuation token to retrieve the next page of results, or empty if there
are no more results available.
Corresponds to the JSON property nextPageToken
1660 1661 1662 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1660 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1667 1668 1669 1670 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 1667 def update!(**args) @groups = args[:groups] if args.key?(:groups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |