/// <summary>
 /// Pauses the specified job and places it back in the job queue, behind other
 /// jobs of equal or higher importance, based on priority. (Only for use
 /// internally with Scope job type.)
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='accountName'>
 /// The Azure Data Lake Analytics account to execute job operations on.
 /// </param>
 /// <param name='jobIdentity'>
 /// Job identifier. Uniquely identifies the job across all jobs submitted to
 /// the service.
 /// </param>
 public static void BeginYieldOperation(this IJobOperations operations, string accountName, System.Guid jobIdentity)
 {
     operations.BeginYieldOperationAsync(accountName, jobIdentity).GetAwaiter().GetResult();
 }