patch method
- FirebaseProject request,
- String name, {
- String? updateMask,
- 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 to update. If this list is empty,
then no state will be updated. Note that the fields name
, projectId
,
and projectNumber
are all immutable.
$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>);
}