IRunbookOperations.GetAsync Method (String, String, CancellationToken)
Retrieve 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> GetAsync(
string automationAccount,
string runbookName,
CancellationToken cancellationToken
)
Task<RunbookGetResponse^>^ GetAsync(
String^ automationAccount,
String^ runbookName,
CancellationToken cancellationToken
)
abstract GetAsync :
automationAccount:string *
runbookName:string *
cancellationToken:CancellationToken -> Task<RunbookGetResponse>
Function GetAsync (
automationAccount As String,
runbookName As String,
cancellationToken As CancellationToken
) As Task(Of RunbookGetResponse)
Parameters
automationAccount
Type: System.StringThe automation account name.
runbookName
Type: System.StringThe runbook name.
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