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 of the AndroidApp to update. Note
that the following fields are immutable: name
, app_id
, project_id
,
and package_name
. To update state
, use any of the following endpoints:
RemoveAndroidApp or UndeleteAndroidApp.
$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>);
}