identity_mapping_stores_identity_mappings
Creates, updates, deletes, gets or lists an identity_mapping_stores_identity_mappings
resource.
Overview
Name | identity_mapping_stores_identity_mappings |
Type | Resource |
Id | google.discoveryengine.identity_mapping_stores_identity_mappings |
Fields
The following fields are returned by SELECT
queries:
- projects_locations_identity_mapping_stores_list_identity_mappings
Successful response
Name | Datatype | Description |
---|---|---|
externalIdentity | string | Required. Identity outside the customer identity provider. The length limit of external identity will be of 100 characters. |
groupId | string | Group identifier. For Google Workspace user account, group_id should be the google workspace group email. For non-google identity provider, group_id is the mapped group identifier configured during the workforcepool config. |
userId | string | User identifier. For Google Workspace user account, user_id should be the google workspace user email. For non-google identity provider, user_id is the mapped user identifier configured during the workforcepool config. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_identity_mapping_stores_list_identity_mappings | select | projectsId , locationsId , identityMappingStoresId | pageSize , pageToken | Lists Identity Mappings in an Identity Mapping Store. |
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 |
---|---|---|
identityMappingStoresId | string | |
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- projects_locations_identity_mapping_stores_list_identity_mappings
Lists Identity Mappings in an Identity Mapping Store.
SELECT
externalIdentity,
groupId,
userId
FROM google.discoveryengine.identity_mapping_stores_identity_mappings
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND identityMappingStoresId = '{{ identityMappingStoresId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';