/// <summary>
 /// Edit the runbook identified by runbookId.  (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='runbookId'>
 /// Required. The runbook id.
 /// </param>
 /// <returns>
 /// The response model for the edit runbook operation.
 /// </returns>
 public static Task <RunbookEditResponse> EditAsync(this IRunbookOperations operations, string automationAccount, string runbookId)
 {
     return(operations.EditAsync(automationAccount, runbookId, CancellationToken.None));
 }