Share via


JobOperationsExtensions.ListAsync Method (IJobOperations, String, JobListParameters)

 

Retrieve a list of jobs. (see https://aka.ms/azureautomationsdk/joboperations for more information)

Namespace:   Microsoft.WindowsAzure.Management.Automation
Assembly:  Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)

Syntax

public static Task<JobListResponse> ListAsync(
    this IJobOperations operations,
    string automationAccount,
    JobListParameters parameters
)
public:
[ExtensionAttribute]
static Task<JobListResponse^>^ ListAsync(
    IJobOperations^ operations,
    String^ automationAccount,
    JobListParameters^ parameters
)
static member ListAsync : 
        operations:IJobOperations *
        automationAccount:string *
        parameters:JobListParameters -> Task<JobListResponse>
<ExtensionAttribute>
Public Shared Function ListAsync (
    operations As IJobOperations,
    automationAccount As String,
    parameters As JobListParameters
) As Task(Of JobListResponse)

Parameters

  • automationAccount
    Type: System.String

    Required. The automation account name.

Return Value

Type: System.Threading.Tasks.Task<JobListResponse>

The response model for the list job operation.

See Also

JobOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top