RunbookDraftOperationsExtensions.UndoEditAsync Method (IRunbookDraftOperations, String, String)
Retrieve the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookdraftoperations for more information)
Namespace: Microsoft.WindowsAzure.Management.Automation
Assembly: Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)
Syntax
public static Task<RunbookDraftUndoEditResponse> UndoEditAsync(
this IRunbookDraftOperations operations,
string automationAccount,
string runbookName
)
public:
[ExtensionAttribute]
static Task<RunbookDraftUndoEditResponse^>^ UndoEditAsync(
IRunbookDraftOperations^ operations,
String^ automationAccount,
String^ runbookName
)
static member UndoEditAsync :
operations:IRunbookDraftOperations *
automationAccount:string *
runbookName:string -> Task<RunbookDraftUndoEditResponse>
<ExtensionAttribute>
Public Shared Function UndoEditAsync (
operations As IRunbookDraftOperations,
automationAccount As String,
runbookName As String
) As Task(Of RunbookDraftUndoEditResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Automation.IRunbookDraftOperationsReference to the Microsoft.WindowsAzure.Management.Automation.IRunbookDraftOperations.
automationAccount
Type: System.StringRequired. The automation account name.
runbookName
Type: System.StringRequired. The runbook name.
Return Value
Type: System.Threading.Tasks.Task<RunbookDraftUndoEditResponse>
The response model for the undoedit runbook operation.
See Also
RunbookDraftOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top