/// <summary>
 /// Gets the detailed information for a given run.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group to which the container registry belongs.
 /// </param>
 /// <param name='registryName'>
 /// The name of the container registry.
 /// </param>
 /// <param name='runId'>
 /// The run ID.
 /// </param>
 public static Run Get(this IRunsOperations operations, string resourceGroupName, string registryName, string runId)
 {
     return(operations.GetAsync(resourceGroupName, registryName, runId).GetAwaiter().GetResult());
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Get Run details.
 /// </summary>
 /// <remarks>
 /// Get Run details of a specific Run Id.
 /// </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>
 public static Run Get(this IRunsOperations operations, System.Guid subscriptionId, string resourceGroupName, string workspaceName, string experimentName, string runId)
 {
     return(operations.GetAsync(subscriptionId, resourceGroupName, workspaceName, experimentName, runId).GetAwaiter().GetResult());
 }