IRunbookOperations.UpdateAsync Method (String, RunbookUpdateParameters, CancellationToken)
Update the runbook identified by runbook name. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)
Namespace: Microsoft.WindowsAzure.Management.Automation
Assembly: Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)
Syntax
Task<RunbookGetResponse> UpdateAsync(
string automationAccount,
RunbookUpdateParameters parameters,
CancellationToken cancellationToken
)
Task<RunbookGetResponse^>^ UpdateAsync(
String^ automationAccount,
RunbookUpdateParameters^ parameters,
CancellationToken cancellationToken
)
abstract UpdateAsync :
automationAccount:string *
parameters:RunbookUpdateParameters *
cancellationToken:CancellationToken -> Task<RunbookGetResponse>
Function UpdateAsync (
automationAccount As String,
parameters As RunbookUpdateParameters,
cancellationToken As CancellationToken
) As Task(Of RunbookGetResponse)
Parameters
automationAccount
Type: System.StringThe automation account name.
parameters
Type: Microsoft.WindowsAzure.Management.Automation.Models.RunbookUpdateParametersThe update parameters for runbook.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<RunbookGetResponse>
The response model for the get runbook operation.
See Also
IRunbookOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top