/// <summary>
 /// Gets the recurrence information for the specified recurrence 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='recurrenceIdentity'>
 /// Recurrence ID.
 /// </param>
 /// <param name='startDateTime'>
 /// The start date for when to get the recurrence and aggregate its data. The
 /// startDateTime and endDateTime can be no more than 30 days apart.
 /// </param>
 /// <param name='endDateTime'>
 /// The end date for when to get recurrence and aggregate its data. The
 /// startDateTime and endDateTime can be no more than 30 days apart.
 /// </param>
 public static JobRecurrenceInformation Get(this IRecurrenceOperations operations, string accountName, System.Guid recurrenceIdentity, System.DateTimeOffset?startDateTime = default(System.DateTimeOffset?), System.DateTimeOffset?endDateTime = default(System.DateTimeOffset?))
 {
     return(operations.GetAsync(accountName, recurrenceIdentity, startDateTime, endDateTime).GetAwaiter().GetResult());
 }