/// <summary>
 /// Gets the job debug data information specified by the job ID.
 /// </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 JobDataPath GetDebugDataPath(this IJobOperations operations, string accountName, System.Guid jobIdentity)
 {
     return(operations.GetDebugDataPathAsync(accountName, jobIdentity).GetAwaiter().GetResult());
 }
Example #2
0
 /// <summary>
 /// Gets the U-SQL job debug data information specified by the job ID.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.Azure.Management.DataLake.AnalyticsJob.IJobOperations.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Required. The name of the resource group.
 /// </param>
 /// <param name='accountName'>
 /// Required. The name of the Data Lake Analytics account to get the
 /// job from
 /// </param>
 /// <param name='jobIdentity'>
 /// Required. JobInfo ID.
 /// </param>
 /// <returns>
 /// Data Lake Analytics job data path information.
 /// </returns>
 public static Task <JobDataPathGetResponse> GetDebugDataPathAsync(this IJobOperations operations, string resourceGroupName, string accountName, Guid jobIdentity)
 {
     return(operations.GetDebugDataPathAsync(resourceGroupName, accountName, jobIdentity, CancellationToken.None));
 }