Example #1
0
 /// <summary>
 /// Deletes a pipeline topology.
 /// </summary>
 /// <remarks>
 /// Deletes a pipeline topology with the given name. This method should be
 /// called after all instances of the topology have been stopped and deleted.
 /// </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 void Delete(this IPipelineTopologiesOperations operations, string resourceGroupName, string accountName, string pipelineTopologyName)
 {
     operations.DeleteAsync(resourceGroupName, accountName, pipelineTopologyName).GetAwaiter().GetResult();
 }