patch method

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

Updates the attributes of the specified FirebaseProject.

All [query parameters](#query-parameters) are required.

request - The metadata request object.

Request parameters:

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

updateMask - Specifies which fields of the FirebaseProject to update. Note that the following fields are immutable: name, project_id, and project_number. To update state, use any of the following Google Cloud endpoints: [projects.delete](https://cloud.google.com/resource-manager/reference/rest/v1/projects/delete) or [projects.undelete](https://cloud.google.com/resource-manager/reference/rest/v1/projects/undelete)

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

Completes with a FirebaseProject.

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<FirebaseProject> patch(
  FirebaseProject 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 FirebaseProject.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}