/// <summary> /// Retrieve a list of one runbook identified by runbookName. (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='runbookName'> /// Required. The runbook name. /// </param> /// <returns> /// The response model for the list runbook operation. /// </returns> public static Task <RunbookListResponse> ListByNameAsync(this IRunbookOperations operations, string automationAccount, string runbookName) { return(operations.ListByNameAsync(automationAccount, runbookName, CancellationToken.None)); }