Request payload list for OpenStack SDK
Is there any place where I can get the parameters required in the request body while creating any entity using OpenStack SDK?
For example,
pool_body = {'pool': {'name':"pool3", 'lb_method':"ROUND_ROBIN", 'protocol':"HTTP", 'subnet_id':"d8f55c36-71a4-4e7b-806b-8751ebca0131"}}
created_pool = neutron.create_pool(body=pool_body)
Where do I get the complete list of possible parameters in the request body to create a pool / create a vip / create a member / or create anything at all?
I've looked http://developer.openstack.org/api-ref-networking-v2.html (here), where some parameters are mentioned, but not all.