JobOperationsExtensions.ListWithQueryString Method (IJobOperations, String, String, String)

 

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

public static JobInfoListResponse ListWithQueryString(
    this IJobOperations operations,
    string resourceGroupName,
    string accountName,
    string queryString
)
public:
[ExtensionAttribute]
static JobInfoListResponse^ ListWithQueryString(
    IJobOperations^ operations,
    String^ resourceGroupName,
    String^ accountName,
    String^ queryString
)
static member ListWithQueryString : 
        operations:IJobOperations *
        resourceGroupName:string *
        accountName:string *
        queryString:string -> JobInfoListResponse
<ExtensionAttribute>
Public Shared Function ListWithQueryString (
    operations As IJobOperations,
    resourceGroupName As String,
    accountName As String,
    queryString As String
) As JobInfoListResponse

Parameters

  • resourceGroupName
    Type: System.String

    Required. The name of the resource group.

  • accountName
    Type: System.String

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

  • queryString
    Type: System.String

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

Return Value

Type: Microsoft.Azure.Management.DataLake.AnalyticsJob.Models.JobInfoListResponse

List of jobInfo items.

See Also

JobOperationsExtensions Class
Microsoft.Azure.Management.DataLake.AnalyticsJob Namespace

Return to top