list method
Lists each [Google Cloud Platform (GCP)
Project
](https://cloud.google.com/resource-manager/reference/rest/v1/projects)
that can have Firebase resources added to it.
A Project will only be listed if: - The caller has sufficient Google IAM permissions to call AddFirebase. - The Project is not already a FirebaseProject. - The Project is not in an Organization which has policies that prevent Firebase resources from being added.
Request parameters:
pageSize
- The maximum number of Projects to return in the response. The
server may return fewer than this value at its discretion. If no value is
specified (or too large a value is specified), the server will impose its
own limit. This value cannot be negative.
pageToken
- Token returned from a previous call to
ListAvailableProjects
indicating where in the set of Projects to resume
listing.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a ListAvailableProjectsResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<ListAvailableProjectsResponse> list({
core.int? pageSize,
core.String? pageToken,
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if ($fields != null) 'fields': [$fields],
};
const _url = 'v1beta1/availableProjects';
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return ListAvailableProjectsResponse.fromJson(
_response as core.Map<core.String, core.dynamic>);
}