patch method

Future<Operation> patch(
  1. DomainMapping request,
  2. String projectsId,
  3. String locationsId,
  4. String applicationsId,
  5. String domainMappingsId, {
  6. String? updateMask,
  7. String? $fields,
})

Updates the specified domain mapping.

To map an SSL certificate to a domain mapping, update certificate_id to point to an AuthorizedCertificate resource. A user must be authorized to administer the associated domain in order to update a DomainMapping resource.

request - The metadata request object.

Request parameters:

projectsId - Part of name. Required. Name of the resource to update. Example: apps/myapp/domainMappings/example.com.

locationsId - Part of name. See documentation of projectsId.

applicationsId - Part of name. See documentation of projectsId.

domainMappingsId - Part of name. See documentation of projectsId.

updateMask - Required. 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 Operation.

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<Operation> patch(
  DomainMapping request,
  core.String projectsId,
  core.String locationsId,
  core.String applicationsId,
  core.String domainMappingsId, {
  core.String? updateMask,
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    'updateMask': ?updateMask == null ? null : [updateMask],
    'fields': ?$fields == null ? null : [$fields],
  };

  final url_ =
      'v1/projects/' +
      commons.escapeVariable('$projectsId') +
      '/locations/' +
      commons.escapeVariable('$locationsId') +
      '/applications/' +
      commons.escapeVariable('$applicationsId') +
      '/domainMappings/' +
      commons.escapeVariable('$domainMappingsId');

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