Unable to Validate a template using Heat-API client,when used below method
from heatclient.client import Client
heat = Client('1', endpoint=heat_url, token=auth_token)
heat.stacks.validate(template_file)
Error mesage:
TypeError: validate() takes exactly 1 argument (2 given)
Here is the source code for heat client api:
So, you should not put any argument in the validate() function and I would try run: heat.stacks.validate() and see what it gives you
source code