relatedaccountgroups
Creates, updates, deletes, gets or lists a relatedaccountgroups
resource.
Overview
Name | relatedaccountgroups |
Type | Resource |
Id | google.recaptchaenterprise.relatedaccountgroups |
Fields
The following fields are returned by SELECT
queries:
- list
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Required. Identifier. The resource name for the related account group in the format projects/{project}/relatedaccountgroups/{related_account_group} . |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | projectsId | pageSize , pageToken | List groups of related accounts. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list
List groups of related accounts.
SELECT
name
FROM google.recaptchaenterprise.relatedaccountgroups
WHERE projectsId = '{{ projectsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';