/// <summary>
 /// Retrieve a list of runbooks for the given automation account.  (see
 /// http://msdn.microsoft.com/en-us/library/windowsazure/XXXXXXX.aspx
 /// for more information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.Azure.Management.Automation.IRunbookOperations.
 /// </param>
 /// <param name='automationAccount'>
 /// Required. The automation account name.
 /// </param>
 /// <param name='skipToken'>
 /// Optional. The skip token.
 /// </param>
 /// <returns>
 /// The response model for the list runbook operation.
 /// </returns>
 public static Task <RunbookListResponse> ListWithSchedulesAsync(this IRunbookOperations operations, string automationAccount, string skipToken)
 {
     return(operations.ListWithSchedulesAsync(automationAccount, skipToken, CancellationToken.None));
 }