Class: Google::Apis::CloudidentityV1::SearchGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::SearchGroupsResponse
- Defined in:
- generated/google/apis/cloudidentity_v1/classes.rb,
generated/google/apis/cloudidentity_v1/representations.rb,
generated/google/apis/cloudidentity_v1/representations.rb
Instance Attribute Summary collapse
-
#groups ⇒ Array<Google::Apis::CloudidentityV1::Group>
List of Groups satisfying the search query.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results available for specified query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchGroupsResponse
constructor
A new instance of SearchGroupsResponse.
-
#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) ⇒ SearchGroupsResponse
Returns a new instance of SearchGroupsResponse
378 379 380 |
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 378 def initialize(**args) update!(**args) end |
Instance Attribute Details
#groups ⇒ Array<Google::Apis::CloudidentityV1::Group>
List of Groups satisfying the search query.
Corresponds to the JSON property groups
370 371 372 |
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 370 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 specified query.
Corresponds to the JSON property nextPageToken
376 377 378 |
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 376 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
383 384 385 386 |
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 383 def update!(**args) @groups = args[:groups] if args.key?(:groups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |