RunbookOperationsExtensions.GetAsync Method (IRunbookOperations, String, String)
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
public static Task<RunbookGetResponse> GetAsync(
this IRunbookOperations operations,
string automationAccount,
string runbookName
)
public:
[ExtensionAttribute]
static Task<RunbookGetResponse^>^ GetAsync(
IRunbookOperations^ operations,
String^ automationAccount,
String^ runbookName
)
static member GetAsync :
operations:IRunbookOperations *
automationAccount:string *
runbookName:string -> Task<RunbookGetResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
operations As IRunbookOperations,
automationAccount As String,
runbookName As String
) As Task(Of RunbookGetResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Automation.IRunbookOperationsReference to the Microsoft.WindowsAzure.Management.Automation.IRunbookOperations.
automationAccount
Type: System.StringRequired. The automation account name.
runbookName
Type: System.StringRequired. The runbook name.
Return Value
Type: System.Threading.Tasks.Task<RunbookGetResponse>
The response model for the get runbook operation.
See Also
RunbookOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top