Share via


JobOperationsExtensions.GetHistoryWithFilterAsync Method (IJobOperations, String, JobGetHistoryWithFilterParameters)

 

Get the execution history of a Job with a filter on the job Status.

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

Syntax

public static Task<JobGetHistoryResponse> GetHistoryWithFilterAsync(
    this IJobOperations operations,
    string jobId,
    JobGetHistoryWithFilterParameters parameters
)
public:
[ExtensionAttribute]
static Task<JobGetHistoryResponse^>^ GetHistoryWithFilterAsync(
    IJobOperations^ operations,
    String^ jobId,
    JobGetHistoryWithFilterParameters^ parameters
)
static member GetHistoryWithFilterAsync : 
        operations:IJobOperations *
        jobId:string *
        parameters:JobGetHistoryWithFilterParameters -> Task<JobGetHistoryResponse>
<ExtensionAttribute>
Public Shared Function GetHistoryWithFilterAsync (
    operations As IJobOperations,
    jobId As String,
    parameters As JobGetHistoryWithFilterParameters
) As Task(Of JobGetHistoryResponse)

Parameters

  • jobId
    Type: System.String

    Required. Id of the job to get the history of.

Return Value

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

The Get Job History operation response.

See Also

JobOperationsExtensions Class
Microsoft.WindowsAzure.Scheduler Namespace

Return to top