Method: tuningJobs.list

Full name: projects.locations.tuningJobs.list

Lists tuning jobs in a location.

Endpoint

get https://aiplatform.googleapis.com/v1/{parent}/tuningJobs

Path parameters

parent string

Required. The resource name of the location to list the tuning jobs from. Format: projects/{project}/locations/{location}

Query parameters

filter string

Optional. The standard list filter.

pageSize integer

Optional. The standard list page size.

pageToken string

Optional. The standard list page token.

Typically obtained from ListTuningJobsResponse.next_page_token of the previous GenAiTuningService.ListTuningJobs call.

Request body

The request body must be empty.

Response body

Response message for GenAiTuningService.ListTuningJobs

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

Fields
tuningJobs[] object (TuningJob)

The tuning jobs that match the request.

nextPageToken string

A token to retrieve the next page of results.

Pass this token in a subsequent [GenAiTuningService.ListTuningJobs] call to retrieve the next page of results.

JSON representation
{
  "tuningJobs": [
    {
      object (TuningJob)
    }
  ],
  "nextPageToken": string
}