patch method

Future<WebApp> patch(
  1. WebApp request,
  2. String name, {
  3. String? updateMask,
  4. String? $fields,
})

Updates the attributes of the specified WebApp.

request - The metadata request object.

Request parameters:

name - The resource name of the WebApp, in the format: projects/PROJECT_IDENTIFIER /webApps/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.webApps#WebApp.FIELDS.app_id)). Value must have pattern ^projects/\[^/\]+/webApps/\[^/\]+$.

updateMask - Specifies which fields to update. Note that the fields name, appId, and projectId are all immutable.

$fields - Selector specifying which fields to include in a partial response.

Completes with a WebApp.

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<WebApp> patch(
  WebApp request,
  core.String name, {
  core.String? updateMask,
  core.String? $fields,
}) async {
  final _body = convert.json.encode(request.toJson());
  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 WebApp.fromJson(_response as core.Map<core.String, core.dynamic>);
}