patch method

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

Updates the specified SSL certificate.

To renew a certificate and maintain its existing domain mappings, update certificate_data with a new certificate. The new certificate must be applicable to the same domains as the original certificate. The certificate display_name may also be updated.

request - The metadata request object.

Request parameters:

appsId - Part of name. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345.

authorizedCertificatesId - Part of name. See documentation of appsId.

updateMask - Standard field mask for the set of fields to be updated. Updates are only supported on the certificate_raw_data and display_name fields.

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

Completes with a AuthorizedCertificate.

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<AuthorizedCertificate> patch(
  AuthorizedCertificate request,
  core.String appsId,
  core.String authorizedCertificatesId, {
  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') +
      '/authorizedCertificates/' +
      commons.escapeVariable('$authorizedCertificatesId');

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