Must contain equality operators on the parent, e.g. parent ==
'customers/{customer_id}'. The customer_id must begin with "C" (for example, 'C046psxkn'). Find your customer ID.
Can contain optional inclusion operators on labels such as 'cloudidentity.googleapis.com/groups.discussion_forum' in labels).
Can contain an optional equality operator on domain_name. e.g. domain_name == 'examplepetstore.com'
Can contain optional startsWith/contains/equality operators on group_key, e.g. group_key.startsWith('dev'), group_key.contains('dev'), group_key == 'dev@examplepetstore.com'
Can contain optional startsWith/contains/equality operators on display_name, such as display_name.startsWith('dev') , display_name.contains('dev'), display_name == 'dev'
Note that the number of results returned may be less than this value even if there are more available results. To fetch all results, clients must continue calling this method repeatedly until the response no longer contains a next_page_token.
If unspecified, defaults to 200 for GroupView.BASIC and to 50 for GroupView.FULL.
Must not be greater than 1000 for GroupView.BASIC or 500 for GroupView.FULL.
pageToken
string
The next_page_token value returned from a previous search request, if any.
orderBy
string
The ordering of groups for the display name or email in the search groups response. The syntax for this field can be found at https://cloud.google.com/apis/design/design_patterns#sorting_order. Example: Sort by the ascending name: order_by="display_name" Sort by the descending group key email: order_by="group_key desc"
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-11-19 UTC."],[[["This endpoint searches for `Group` resources based on a specified query using the `GET` method: `https://cloudidentity.googleapis.com/v1beta1/groups:search`."],["The search query must be written in Common Expression Language and include an equality operator on the `parent`, it can also include inclusion operators on `labels`, equality on `domain_name` and start/contains/equality operators on `group_key` and `display_name`."],["The search results can be paginated using the `pageSize` and `pageToken` parameters, with a maximum page size of 1000 for `GroupView.BASIC` and 500 for `GroupView.FULL`, defaulting to 200 and 50 respectively."],["The `view` parameter allows to specify the level of detail returned in the response, allowing to select between `BASIC` and `FULL`."],["The `orderBy` parameter allows to specify how the groups are ordered for display name or email."]]],[]]