list method
Lists each Hosting Site associated with the specified parent Firebase project.
Request parameters:
parent
- Required. The Firebase project for which to list sites, in the
format: projects/PROJECT_IDENTIFIER Refer to the Site
[name
](../projects#Site.FIELDS.name) field for details about
PROJECT_IDENTIFIER values.
Value must have pattern ^projects/\[^/\]+$
.
pageSize
- Optional. The maximum number of sites to return. The service
may return a lower number if fewer sites exist than this maximum number.
If unspecified, defaults to 40.
pageToken
- Optional. A token from a previous call to ListSites
that
tells the server where to resume listing.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a ListSitesResponse.
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<ListSitesResponse> list(
core.String parent, {
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],
};
final _url = 'v1beta1/' + core.Uri.encodeFull('$parent') + '/sites';
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return ListSitesResponse.fromJson(
_response as core.Map<core.String, core.dynamic>);
}