Search Projects
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.
External Documentation
To learn more, visit the GCP documentation.
Basic Parameters
Parameter | Description |
---|---|
Query | Optional. A query string for searching for projects that the caller has resourcemanager.projects.get permission to. If multiple fields are included in the query, then it will return results that match any of the fields. Some eligible fields are: Search expressions are case insensitive. Some examples queries: If no query is specified, the call will return projects for which the user has the resourcemanager.projects.get permission. |
Return All Pages | Automatically fetch all resources, page by page. |
Advanced Parameters
Parameter | Description |
---|---|
Page Size | 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. |
Example Output
{
"projects": [
{
"name": "projects/123456789101",
"parent": "organizations/123456789101",
"projectId": "project-123456",
"state": "ACTIVE",
"displayName": "My Project",
"createTime": "2021-11-11T11:06:07.890Z",
"etag": "flE+tNWoOaHzqVjXSjWSww=="
}
]
}
Workflow Library Example
Search Projects with Gcp and Send Results Via Email
Preview this Workflow on desktop