patch method

Future<Membership> patch(
  1. Membership request,
  2. String name, {
  3. String? updateMask,
  4. String? $fields,
})

Updates a membership.

For an example, see Update a user's membership in a space. Requires user authentication.

request - The metadata request object.

Request parameters:

name - Resource name of the membership, assigned by the server. Format: spaces/{space}/members/{member} Value must have pattern ^spaces/\[^/\]+/members/\[^/\]+$.

updateMask - Required. The field paths to update. Separate multiple values with commas or use * to update all field paths. Currently supported field paths: - role

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

Completes with a Membership.

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<Membership> patch(
  Membership 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_ = 'v1/' + core.Uri.encodeFull('$name');

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