list method
Lists the releases that have been created for the specified site or channel.
When used to list releases for a site, this list includes releases for
both the default live
channel and any active preview channels for the
specified site.
Request parameters:
parent
- Required. The site or channel for which to list releases, in
either of the following formats: - sites/SITE_ID -
sites/SITE_ID/channels/CHANNEL_ID
Value must have pattern ^sites/\[^/\]+$
.
pageSize
- The maximum number of releases to return. The service may
return a lower number if fewer releases exist than this maximum number. If
unspecified, defaults to 100.
pageToken
- A token from a previous call to releases.list
or
channels.releases.list
that tells the server where to resume listing.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a ListReleasesResponse.
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<ListReleasesResponse> 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') + '/releases';
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return ListReleasesResponse.fromJson(
_response as core.Map<core.String, core.dynamic>);
}