getClientCertificate method
Gets information about the current ClientCertificate resource.
May throw BadRequestException.
May throw NotFoundException.
May throw TooManyRequestsException.
May throw UnauthorizedException.
Parameter clientCertificateId :
The identifier of the ClientCertificate resource to be described.
Implementation
Future<ClientCertificate> getClientCertificate({
required String clientCertificateId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/clientcertificates/${Uri.encodeComponent(clientCertificateId)}',
exceptionFnMap: _exceptionFns,
);
return ClientCertificate.fromJson(response);
}