deleteClientCertificate method

Future<void> deleteClientCertificate({
  1. required String clientCertificateId,
})

Deletes the ClientCertificate resource.

May throw UnauthorizedException. May throw TooManyRequestsException. May throw BadRequestException. May throw NotFoundException.

Parameter clientCertificateId : Required The identifier of the ClientCertificate resource to be deleted.

Implementation

Future<void> deleteClientCertificate({
  required String clientCertificateId,
}) async {
  ArgumentError.checkNotNull(clientCertificateId, 'clientCertificateId');
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/clientcertificates/${Uri.encodeComponent(clientCertificateId)}',
    exceptionFnMap: _exceptionFns,
  );
}