custom_models
Creates, updates, deletes, gets or lists a custom_models
resource.
Overview
Name | custom_models |
Type | Resource |
Id | google.discoveryengine.custom_models |
Fields
The following fields are returned by SELECT
queries:
- projects_locations_collections_data_stores_custom_models_list
Successful response
Name | Datatype | Description |
---|---|---|
models | array | List of custom tuning models. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_collections_data_stores_custom_models_list | select | projectsId , locationsId , collectionsId , dataStoresId | Gets a list of all the custom models. |
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 |
---|---|---|
collectionsId | string | |
dataStoresId | string | |
locationsId | string | |
projectsId | string |
SELECT
examples
- projects_locations_collections_data_stores_custom_models_list
Gets a list of all the custom models.
SELECT
models
FROM google.discoveryengine.custom_models
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND collectionsId = '{{ collectionsId }}' -- required
AND dataStoresId = '{{ dataStoresId }}' -- required;