Ejemplo n.º 1
0
 /// <summary>
 /// Get details of all child runs.
 /// </summary>
 /// <remarks>
 /// Get details of all child runs for the specified Run Id with the specified
 /// 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='runId'>
 /// The identifier of the Run.
 /// </param>
 /// <param name='filter'>
 /// Allows for filtering the collection of resources.
 /// The expression specified is evaluated for each resource in the collection,
 /// and only items where the expression evaluates to true are included in the
 /// response.
 /// </param>
 /// <param name='continuationtoken'>
 /// The continuation token to use for getting the next set of resources.
 /// </param>
 /// <param name='orderby'>
 /// The list of resource properties to use for sorting the requested resources.
 /// </param>
 /// <param name='sortorder'>
 /// The sort order of the returned resources. Not used, specify asc or desc
 /// after each property name in the OrderBy parameter. Possible values include:
 /// 'Asc', 'Desc'
 /// </param>
 /// <param name='top'>
 /// The maximum number of items in the resource collection to be included in
 /// the result.
 /// If not specified, all items are returned.
 /// </param>
 /// <param name='count'>
 /// Whether to include a count of the matching resources along with the
 /// resources returned in the response.
 /// </param>
 public static IPage <Run> GetChild(this IRunsOperations operations, System.Guid subscriptionId, string resourceGroupName, string workspaceName, string experimentName, string runId, string filter = default(string), string continuationtoken = default(string), IList <string> orderby = default(IList <string>), string sortorder = default(string), int?top = default(int?), bool?count = default(bool?))
 {
     return(operations.GetChildAsync(subscriptionId, resourceGroupName, workspaceName, experimentName, runId, filter, continuationtoken, orderby, sortorder, top, count).GetAwaiter().GetResult());
 }