Search for projects that the caller has both
resourcemanager.projects.get
permission on, and also satisfy the
specified query. This method returns projects in an unspecified order.
This method is eventually consistent with project mutations; this means
that a newly created project may not appear in the results or recent
updates to an existing project may not be reflected in the results. To
retrieve the latest state of a project, use the GetProject method.
Arguments
Parameters | |
---|---|
pageSize |
Optional. The maximum number of projects to return in the response. The server can return fewer projects than requested. If unspecified, server picks an appropriate default. |
pageToken |
Optional. A pagination token returned from a previous call to ListProjects that indicates from where listing should continue. |
query |
Optional. A query string for searching for projects that the caller has |
Raised exceptions
Exceptions | |
---|---|
ConnectionError |
In case of a network problem (such as DNS failure or refused connection). |
HttpError |
If the response status is >= 400 (excluding 429 and 503). |
TimeoutError |
If a long-running operation takes longer to finish than the specified timeout limit. |
TypeError |
If an operation or function receives an argument of the wrong type. |
ValueError |
If an operation or function receives an argument of the right type but an inappropriate value. For example, a negative timeout. |
Response
If successful, the response contains an instance of SearchProjectsResponse
.
Subworkflow snippet
Some fields might be optional or required. To identify required fields, refer to the API documentation.
YAML
- search: call: googleapis.cloudresourcemanager.v3.projects.search args: pageSize: ... pageToken: ... query: ... result: searchResult
JSON
[ { "search": { "call": "googleapis.cloudresourcemanager.v3.projects.search", "args": { "pageSize": "...", "pageToken": "...", "query": "..." }, "result": "searchResult" } } ]