Class: Google::Apis::CloudidentityV1beta1::ListGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::ListGroupsResponse
- 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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListGroupsResponse
Returns a new instance of ListGroupsResponse.
722 723 724 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 722 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
714 715 716 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 714 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
720 721 722 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 720 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
727 728 729 730 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 727 def update!(**args) @groups = args[:groups] if args.key?(:groups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |