/// <summary>
 /// Returns a list of datasources for the specified dataflow.
 /// </summary>
 /// <remarks>
 /// &lt;br/&gt;**Required scope**: Dataflow.ReadWrite.All or Dataflow.Read.All
 /// &lt;br/&gt;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='groupId'>
 /// The workspace id
 /// </param>
 /// <param name='dataflowId'>
 /// The dataflow id
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <Datasources> GetDataflowDataSourcesAsync(this IDataflowsOperations operations, System.Guid groupId, System.Guid dataflowId, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetDataflowDataSourcesWithHttpMessagesAsync(groupId, dataflowId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }