Method: projects.locations.models.list
Stay organized with collections
Save and categorize content based on your preferences.
HTTP request
GET https://automl.googleapis.com/v1beta1/{parent}/models
Path parameters
Parameters |
parent |
string
Resource name of the project, from which to list the models.
Authorization requires the following Google IAM permission on the specified resource parent :
|
Query parameters
Parameters |
filter |
string
An expression for filtering the results of the request.
|
pageSize |
integer
Requested page size.
|
pageToken |
string
A token identifying a page of results for the server to return Typically obtained via ListModelsResponse.next_page_token of the previous AutoMl.ListModels call.
|
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
Response message for AutoMl.ListModels
.
JSON representation |
{
"model": [
{
object (Model )
}
],
"nextPageToken": string
} |
Fields |
model[] |
object (Model )
List of models in the requested page.
|
nextPageToken |
string
A token to retrieve next page of results. Pass to ListModelsRequest.page_token to obtain that page.
|
Authorization Scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2019-12-17 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2019-12-17 UTC."],[[["This API endpoint retrieves a list of models from a specified project using a `GET` request to the provided URL, which includes the project resource name as a path parameter."],["Filtering the list of models is supported by utilizing the `filter` query parameter, allowing for searching based on model metadata or dataset ID, and pagination through the use of `pageSize` and `pageToken` query parameters."],["The request body for this operation must be empty, while the response will contain a list of models and a `nextPageToken` if additional pages are available for retrieval."],["Accessing this endpoint requires authorization with the `automl.models.list` permission and the OAuth scope `https://www.googleapis.com/auth/cloud-platform`."]]],[]]