Example #1
0
 /// <summary>
 /// Retrieves a specific pipeline topology by name.
 /// </summary>
 /// <remarks>
 /// Retrieves a specific pipeline topology by name. If a topology with that
 /// name has been previously created, the call will return the JSON
 /// representation of that topology.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='accountName'>
 /// The Azure Video Analyzer account name.
 /// </param>
 /// <param name='pipelineTopologyName'>
 /// Pipeline topology unique identifier.
 /// </param>
 public static PipelineTopology Get(this IPipelineTopologiesOperations operations, string resourceGroupName, string accountName, string pipelineTopologyName)
 {
     return(operations.GetAsync(resourceGroupName, accountName, pipelineTopologyName).GetAwaiter().GetResult());
 }