provisionApp method
Provision app distribution for an existing Firebase app, enabling it to subsequently be used by appdistro.
Request parameters:
mobilesdkAppId
- Unique id for a Firebase app of the format:
{version}:{project_number}:{platform}:{hash(bundle_id)} Example:
1:581234567376:android:aa0a3c7b135e90289
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleFirebaseAppdistroV1alphaProvisionAppResponse.
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<GoogleFirebaseAppdistroV1alphaProvisionAppResponse> provisionApp(
core.String mobilesdkAppId, {
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1alpha/apps/' + commons.escapeVariable('$mobilesdkAppId');
final _response = await _requester.request(
_url,
'POST',
queryParams: _queryParams,
);
return GoogleFirebaseAppdistroV1alphaProvisionAppResponse.fromJson(
_response as core.Map<core.String, core.dynamic>);
}