patch method

Future<FirewallRule> patch(
  1. FirewallRule request,
  2. String appsId,
  3. String ingressRulesId, {
  4. String? updateMask,
  5. String? $fields,
})

Updates the specified firewall rule.

request - The metadata request object.

Request parameters:

appsId - Part of name. Name of the Firewall resource to update. Example: apps/myapp/firewall/ingressRules/100.

ingressRulesId - Part of name. See documentation of appsId.

updateMask - Standard field mask for the set of fields to be updated.

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

Completes with a FirewallRule.

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<FirewallRule> patch(
  FirewallRule request,
  core.String appsId,
  core.String ingressRulesId, {
  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_ = 'v1/apps/' +
      commons.escapeVariable('$appsId') +
      '/firewall/ingressRules/' +
      commons.escapeVariable('$ingressRulesId');

  final response_ = await _requester.request(
    url_,
    'PATCH',
    body: body_,
    queryParams: queryParams_,
  );
  return FirewallRule.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}