Searches for projects with advanced filtering capabilities. Permissions required: bb.projects.get (or project-level bb.projects.get for specific projects)
Show deleted projects if specified.
Filter the project. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec
Supported filters:
For example: name == "project name" name.matches("project name") resource_id == "project id" resource_id.matches("project id") exclude_default == true state == "DELETED" labels.environment == "production" labels.tier == "critical" labels.environment in ["staging", "prod"] You can combine filter conditions like: name == "project name" && resource_id.matches("project id") name.matches("project name") || resource_id == "project id" labels.environment == "production" && labels.tier == "critical"
The maximum number of projects to return. The service may return fewer than this value. If unspecified, at most 10 projects will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
A page token, received from a previous SearchProjects call.
Provide this to retrieve the subsequent page.
When paginating, all other parameters provided to SearchProjects must match
the call that provided the page token.