Method: projects.locations.collections.dataStores.customModels.list

Gets a list of all the custom models.

HTTP request

GET https://discoveryengine.googleapis.com/v1beta/{dataStore=projects/*/locations/*/collections/*/dataStores/*}/customModels

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
dataStore

string

Required. The resource name of the parent Data Store, such as projects/*/locations/global/collections/default_collection/dataStores/default_data_store. This field is used to identify the data store where to fetch the models from.

Request body

The request body must be empty.

Response body

Response message for SearchTuningService.ListCustomModels method.

If successful, the response body contains data with the following structure:

JSON representation
{
  "models": [
    {
      object (CustomTuningModel)
    }
  ]
}
Fields
models[]

object (CustomTuningModel)

List of custom tuning models.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

CustomTuningModel

Metadata that describes a custom tuned model.

JSON representation
{
  "name": string,
  "displayName": string,
  "modelVersion": string,
  "modelState": enum (ModelState),
  "createTime": string,
  "trainingStartTime": string
}
Fields
name

string

Required. The fully qualified resource name of the model.

Format: projects/{projectNumber}/locations/{location}/collections/{collection}/dataStores/{dataStore}/customTuningModels/{custom_tuning_model} model must be an alpha-numerical string with limit of 40 characters.

displayName

string

The display name of the model.

modelVersion

string (int64 format)

The version of the model.

modelState

enum (ModelState)

The state that the model is in (e.g.TRAINING or TRAINING_FAILED).

createTime

string (Timestamp format)

Timestamp the Model was created at.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

trainingStartTime

string (Timestamp format)

Timestamp the model training was initiated.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

ModelState

The state of the model.

Enums
MODEL_STATE_UNSPECIFIED Default value.
TRAINING_PAUSED The model is in a paused training state.
TRAINING The model is currently training.
TRAINING_COMPLETE The model has successfully completed training.
READY_FOR_SERVING The model is ready for serving.
TRAINING_FAILED The model training failed.