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