list method
List releases for the app
Request parameters:
parent
- Required. The parent, which owns the collection of releases
Format: devices/{devices}/testerApps/{tester_app}
Value must have pattern ^devices/\[^/\]+/testerApps/\[^/\]+$
.
filter
- Filter for the list of releases. Used in search.
pageSize
- Maximum number of releases to return
pageToken
- Page token received from previous ListReleases
call
testerClient
- The tester client which this download request is coming
from
Possible string values are:
- "TESTER_CLIENT_UNSPECIFIED" : Tester client unspecified
- "ANDROID_TESTER_APP" : App Tester native android app
- "WEB" : Web-based tester client (Android & iOS)
- "IOS_SDK" : iOS SDK (new build alerts)
- "ANDROID_SDK" : Android SDK (new build alerts)
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleFirebaseApptestersV1alphaListReleasesResponse.
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<GoogleFirebaseApptestersV1alphaListReleasesResponse> list(
core.String parent, {
core.String? filter,
core.int? pageSize,
core.String? pageToken,
core.String? testerClient,
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if (filter != null) 'filter': [filter],
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if (testerClient != null) 'testerClient': [testerClient],
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1alpha/' + core.Uri.encodeFull('$parent') + '/releases';
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return GoogleFirebaseApptestersV1alphaListReleasesResponse.fromJson(
_response as core.Map<core.String, core.dynamic>);
}