Lists instances under a given project.
Arguments
project
string
Required. Project ID of the project for which to list Cloud SQL instances.
filter
string
A filter expression that filters resources listed in the response. The expression is in the form of field:value. For example, 'instanceType:CLOUD_SQL_INSTANCE'. Fields can be nested as needed as per their JSON representation, such as 'settings.userLabels.auto_start:true'. Multiple filter queries are space-separated. For example. 'state:RUNNABLE instanceType:CLOUD_SQL_INSTANCE'. By default, each expression is an AND expression. However, you can include AND and OR expressions explicitly.
maxResults
integer ( uint32
format)
The maximum number of results to return per response.
pageToken
string
A previously-returned page token representing part of the larger set of results to view.
Raised exceptions
ConnectionError
HttpError
TimeoutError
TypeError
ValueError
Response
If successful, the response contains an instance of InstancesListResponse
.
Subworkflow snippet
Some fields might be optional or required. To identify required fields, refer to the API documentation .
YAML
- list : call : googleapis.sqladmin.v1beta4.instances.list args : project : ... filter : ... maxResults : ... pageToken : ... result : listResult
JSON
[ { "list" : { "call" : "googleapis.sqladmin.v1beta4.instances.list" , "args" : { "project" : "..." , "filter" : "..." , "maxResults" : "..." , "pageToken" : "..." }, "result" : "listResult" } } ]

