Class: Google::Apis::CloudidentityV1beta1::SearchGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::SearchGroupsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
The response message for GroupsService.SearchGroups.
Instance Attribute Summary collapse
-
#groups ⇒ Array<Google::Apis::CloudidentityV1beta1::Group>
The
Group
resources that match the search query. -
#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) ⇒ SearchGroupsResponse
constructor
A new instance of SearchGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchGroupsResponse
Returns a new instance of SearchGroupsResponse.
3826 3827 3828 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3826 def initialize(**args) update!(**args) end |
Instance Attribute Details
#groups ⇒ Array<Google::Apis::CloudidentityV1beta1::Group>
The Group
resources that match the search query.
Corresponds to the JSON property groups
3818 3819 3820 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3818 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
3824 3825 3826 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3824 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3831 3832 3833 3834 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3831 def update!(**args) @groups = args[:groups] if args.key?(:groups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |