/// <summary> /// Removes the specified user from the specified datasource. /// </summary> /// <remarks> /// <br/>**Required scope**: Dataset.ReadWrite.All <br/>To set the /// permissions scope, see [Register an /// app](https://docs.microsoft.com/power-bi/developer/register-app). /// </remarks> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='gatewayId'> /// The gateway id /// </param> /// <param name='datasourceId'> /// The datasource id /// </param> /// <param name='emailAdress'> /// The user's email address or the service principal object id /// </param> public static void DeleteDatasourceUser(this IGatewaysOperations operations, System.Guid gatewayId, System.Guid datasourceId, string emailAdress) { operations.DeleteDatasourceUserAsync(gatewayId, datasourceId, emailAdress).GetAwaiter().GetResult(); }