Example #1
0
 /// <summary>
 /// Creates or updates a pipeline topology.
 /// </summary>
 /// <remarks>
 /// Creates a new pipeline topology or updates an existing one, with the given
 /// name. A pipeline topology describes the processing steps to be applied when
 /// processing content for a particular outcome. The topology should be defined
 /// according to the scenario to be achieved and can be reused across many
 /// pipeline instances which share the same processing characteristics.
 /// </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>
 /// <param name='parameters'>
 /// The request parameters
 /// </param>
 public static PipelineTopology CreateOrUpdate(this IPipelineTopologiesOperations operations, string resourceGroupName, string accountName, string pipelineTopologyName, PipelineTopology parameters)
 {
     return(operations.CreateOrUpdateAsync(resourceGroupName, accountName, pipelineTopologyName, parameters).GetAwaiter().GetResult());
 }