/// <summary> /// Get all Runs for a specific Experiment. /// </summary> /// <remarks> /// Get all Runs for a specific Experiment with the specified query filters. /// </remarks> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='subscriptionId'> /// The Azure Subscription ID. /// </param> /// <param name='resourceGroupName'> /// The Name of the resource group in which the workspace is located. /// </param> /// <param name='workspaceName'> /// The name of the workspace. /// </param> /// <param name='experimentName'> /// The experiment name. /// </param> /// <param name='queryParams'> /// Query parameters for data sorting and filtering. /// </param> public static IPage <Run> GetByQuery(this IRunsOperations operations, System.Guid subscriptionId, string resourceGroupName, string workspaceName, string experimentName, QueryParams queryParams = default(QueryParams)) { return(operations.GetByQueryAsync(subscriptionId, resourceGroupName, workspaceName, experimentName, queryParams).GetAwaiter().GetResult()); }