I am trying to get a list of Tosca nodes within my blueprint but it returns all the nodes in the whole cloudify (includes nodes from other blueprints)
nodes = client.nodes.list(_include=['id','type','properties'])
I expect to get a list of nodes in a specific blueprint.
To obtain node templates for a blueprint:
nodeswill be a list of dictionaries, each one represents a node template.