/// <summary>
 /// Gets a list of workflow run actions.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The resource group name.
 /// </param>
 /// <param name='workflowName'>
 /// The workflow name.
 /// </param>
 /// <param name='runName'>
 /// The workflow run name.
 /// </param>
 /// <param name='odataQuery'>
 /// OData parameters to apply to the operation.
 /// </param>
 public static IPage <WorkflowRunAction> List(this IWorkflowRunActionsOperations operations, string resourceGroupName, string workflowName, string runName, ODataQuery <WorkflowRunActionFilter> odataQuery = default(ODataQuery <WorkflowRunActionFilter>))
 {
     return(operations.ListAsync(resourceGroupName, workflowName, runName, odataQuery).GetAwaiter().GetResult());
 }