deleteClientCertificate method

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

Deletes the ClientCertificate resource.

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

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

Implementation

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