user_stores
Creates, updates, deletes, gets or lists a user_stores
resource.
Overview
Name | user_stores |
Type | Resource |
Id | google.discoveryengine.user_stores |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_user_stores_batch_update_user_licenses | update | projectsId , locationsId , userStoresId | Updates the User License. This method is used for batch assign/unassign licenses to users. |
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 |
---|---|---|
locationsId | string | |
projectsId | string | |
userStoresId | string |
UPDATE
examples
- projects_locations_user_stores_batch_update_user_licenses
Updates the User License. This method is used for batch assign/unassign licenses to users.
UPDATE google.discoveryengine.user_stores
SET
data__inlineSource = '{{ inlineSource }}',
data__deleteUnassignedUserLicenses = {{ deleteUnassignedUserLicenses }}
WHERE
projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND userStoresId = '{{ userStoresId }}' --required
RETURNING
name,
done,
error,
metadata,
response;