WorkflowTriggerHistoriesClient Interface

public interface WorkflowTriggerHistoriesClient

An instance of this class provides access to all the operations defined in WorkflowTriggerHistoriesClient.

Method Summary

Modifier and Type Method and Description
abstract WorkflowTriggerHistoryInner get(String resourceGroupName, String workflowName, String triggerName, String historyName)

Gets a workflow trigger history.

abstract Response<WorkflowTriggerHistoryInner> getWithResponse(String resourceGroupName, String workflowName, String triggerName, String historyName, Context context)

Gets a workflow trigger history.

abstract PagedIterable<WorkflowTriggerHistoryInner> list(String resourceGroupName, String workflowName, String triggerName)

Gets a list of workflow trigger histories.

abstract PagedIterable<WorkflowTriggerHistoryInner> list(String resourceGroupName, String workflowName, String triggerName, Integer top, String filter, Context context)

Gets a list of workflow trigger histories.

abstract void resubmit(String resourceGroupName, String workflowName, String triggerName, String historyName)

Resubmits a workflow run based on the trigger history.

abstract Response<Void> resubmitWithResponse(String resourceGroupName, String workflowName, String triggerName, String historyName, Context context)

Resubmits a workflow run based on the trigger history.

Method Details

get

public abstract WorkflowTriggerHistoryInner get(String resourceGroupName, String workflowName, String triggerName, String historyName)

Gets a workflow trigger history.

Parameters:

resourceGroupName - The resource group name.
workflowName - The workflow name.
triggerName - The workflow trigger name.
historyName - The workflow trigger history name. Corresponds to the run name for triggers that resulted in a run.

Returns:

a workflow trigger history.

getWithResponse

public abstract Response getWithResponse(String resourceGroupName, String workflowName, String triggerName, String historyName, Context context)

Gets a workflow trigger history.

Parameters:

resourceGroupName - The resource group name.
workflowName - The workflow name.
triggerName - The workflow trigger name.
historyName - The workflow trigger history name. Corresponds to the run name for triggers that resulted in a run.
context - The context to associate with this operation.

Returns:

a workflow trigger history along with Response<T>.

list

public abstract PagedIterable list(String resourceGroupName, String workflowName, String triggerName)

Gets a list of workflow trigger histories.

Parameters:

resourceGroupName - The resource group name.
workflowName - The workflow name.
triggerName - The workflow trigger name.

Returns:

a list of workflow trigger histories as paginated response with PagedIterable<T>.

list

public abstract PagedIterable list(String resourceGroupName, String workflowName, String triggerName, Integer top, String filter, Context context)

Gets a list of workflow trigger histories.

Parameters:

resourceGroupName - The resource group name.
workflowName - The workflow name.
triggerName - The workflow trigger name.
top - The number of items to be included in the result.
filter - The filter to apply on the operation. Options for filters include: Status, StartTime, and ClientTrackingId.
context - The context to associate with this operation.

Returns:

a list of workflow trigger histories as paginated response with PagedIterable<T>.

resubmit

public abstract void resubmit(String resourceGroupName, String workflowName, String triggerName, String historyName)

Resubmits a workflow run based on the trigger history.

Parameters:

resourceGroupName - The resource group name.
workflowName - The workflow name.
triggerName - The workflow trigger name.
historyName - The workflow trigger history name. Corresponds to the run name for triggers that resulted in a run.

resubmitWithResponse

public abstract Response resubmitWithResponse(String resourceGroupName, String workflowName, String triggerName, String historyName, Context context)

Resubmits a workflow run based on the trigger history.

Parameters:

resourceGroupName - The resource group name.
workflowName - The workflow name.
triggerName - The workflow trigger name.
historyName - The workflow trigger history name. Corresponds to the run name for triggers that resulted in a run.
context - The context to associate with this operation.

Returns:

Applies to