/// <summary>
 /// Deletes a policy set definition.
 /// </summary>
 /// <remarks>
 /// This operation deletes the policy set definition in the given subscription
 /// with the given name.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='policySetDefinitionName'>
 /// The name of the policy set definition to delete.
 /// </param>
 public static void Delete(this IPolicySetDefinitionsOperations operations, string policySetDefinitionName)
 {
     operations.DeleteAsync(policySetDefinitionName).GetAwaiter().GetResult();
 }