patch method
Future<GoogleSearchIdeahubV1betaTopicState>
patch(
- GoogleSearchIdeahubV1betaTopicState request,
- String name, {
- String? updateMask,
- String? $fields,
Update a topic state resource.
request
- The metadata request object.
Request parameters:
name
- Unique identifier for the topic state. Format:
platforms/{platform}/properties/{property}/topicStates/{topic_state}
Value must have pattern
^platforms/\[^/\]+/properties/\[^/\]+/topicStates/\[^/\]+$
.
updateMask
- The list of fields to be updated.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleSearchIdeahubV1betaTopicState.
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<GoogleSearchIdeahubV1betaTopicState> patch(
GoogleSearchIdeahubV1betaTopicState 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 = 'v1beta/' + core.Uri.encodeFull('$name');
final _response = await _requester.request(
_url,
'PATCH',
body: _body,
queryParams: _queryParams,
);
return GoogleSearchIdeahubV1betaTopicState.fromJson(
_response as core.Map<core.String, core.dynamic>);
}