patch method
- AndroidApp request,
- String name, {
- String? updateMask,
- String? $fields,
Updates the attributes of the specified AndroidApp.
request
- The metadata request object.
Request parameters:
name
- The resource name of the AndroidApp, in the format: projects/
PROJECT_IDENTIFIER/androidApps/APP_ID * PROJECT_IDENTIFIER: the parent
Project's
[ProjectNumber
](../projects#FirebaseProject.FIELDS.project_number)
(recommended) or its
[ProjectId
](../projects#FirebaseProject.FIELDS.project_id). Learn more
about using project identifiers in Google's
AIP 2510 standard. Note that the
value for PROJECT_IDENTIFIER in any response body will be the ProjectId
.
- APP_ID: the globally unique, Firebase-assigned identifier for the App
(see [
appId
](../projects.androidApps#AndroidApp.FIELDS.app_id)). Value must have pattern^projects/\[^/\]+/androidApps/\[^/\]+$
.
updateMask
- Specifies which fields to update. Note that the fields
name
, app_id
, project_id
, and package_name
are all immutable.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a AndroidApp.
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<AndroidApp> patch(
AndroidApp request,
core.String name, {
core.String? updateMask,
core.String? $fields,
}) async {
final _body = convert.json.encode(request);
final _queryParams = <core.String, core.List<core.String>>{
if (updateMask != null) 'updateMask': [updateMask],
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1beta1/' + core.Uri.encodeFull('$name');
final _response = await _requester.request(
_url,
'PATCH',
body: _body,
queryParams: _queryParams,
);
return AndroidApp.fromJson(
_response as core.Map<core.String, core.dynamic>);
}