getDataLakePrincipal method

Future<GetDataLakePrincipalResponse> getDataLakePrincipal()

Returns the identity of the invoking principal.

May throw AccessDeniedException. May throw InternalServiceException. May throw OperationTimeoutException.

Implementation

Future<GetDataLakePrincipalResponse> getDataLakePrincipal() async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri: '/GetDataLakePrincipal',
    exceptionFnMap: _exceptionFns,
  );
  return GetDataLakePrincipalResponse.fromJson(response);
}