IJobOperations.ListWithQueryStringAsync Method (String, String, String, CancellationToken)

 

Gets the first page of the Data Lake Analytics JobInformation objects within the specified resource group with a link to the next page, if any.

Namespace:   Microsoft.Azure.Management.DataLake.AnalyticsJob
Assembly:  Microsoft.Azure.Management.DataLake.AnalyticsJob (in Microsoft.Azure.Management.DataLake.AnalyticsJob.dll)

Syntax

Task<JobInfoListResponse> ListWithQueryStringAsync(
    string resourceGroupName,
    string accountName,
    string queryString,
    CancellationToken cancellationToken
)
Task<JobInfoListResponse^>^ ListWithQueryStringAsync(
    String^ resourceGroupName,
    String^ accountName,
    String^ queryString,
    CancellationToken cancellationToken
)
abstract ListWithQueryStringAsync : 
        resourceGroupName:string *
        accountName:string *
        queryString:string *
        cancellationToken:CancellationToken -> Task<JobInfoListResponse>
Function ListWithQueryStringAsync (
    resourceGroupName As String,
    accountName As String,
    queryString As String,
    cancellationToken As CancellationToken
) As Task(Of JobInfoListResponse)

Parameters

  • resourceGroupName
    Type: System.String

    The name of the resource group.

  • accountName
    Type: System.String

    The name of the Data Lake Analytics account to get the job from

  • queryString
    Type: System.String

    OData Query parameter string (e.g. '$orderBy=SubmitTime,$filter=State eq Succeeded'). If null is passed returns all JobInfo items.

Return Value

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

List of jobInfo items.

See Also

IJobOperations Interface
Microsoft.Azure.Management.DataLake.AnalyticsJob Namespace

Return to top