patch method
Updates attributes of the specified Hosting Site.
request
- The metadata request object.
Request parameters:
name
- Output only. The fully-qualified resource name of the Hosting
site, in the format: projects/PROJECT_IDENTIFIER/sites/SITE_ID
PROJECT_IDENTIFIER: the Firebase project's
[ProjectNumber
](https://firebase.google.com/docs/projects/api/reference/rest/v1beta1/projects#FirebaseProject.FIELDS.project_number)
(recommended) or its
[ProjectId
](https://firebase.google.com/docs/projects/api/reference/rest/v1beta1/projects#FirebaseProject.FIELDS.project_id).
Learn more about using project identifiers in Google's
AIP 2510 standard.
Value must have pattern ^projects/\[^/\]+/sites/\[^/\]+$
.
updateMask
- A set of field names from your Site that you want to
update.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Site.
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<Site> patch(
Site 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 Site.fromJson(_response as core.Map<core.String, core.dynamic>);
}