Merge "Add provider information to Create LoadBalancer"

This commit is contained in:
Jenkins 2015-11-18 21:02:27 +00:00 committed by Gerrit Code Review
commit 81a34debb7
3 changed files with 15 additions and 7 deletions

View File

@ -5,6 +5,7 @@
"tenant_id": "b7c1a69e88bf4b21a8148f787aef2081",
"vip_subnet_id": "013d3059-87a4-45a5-91e9-d721068ae0b2",
"vip_address": "10.0.0.4",
"admin_state_up": true
"admin_state_up": true,
"provider": "sample_provider"
}
}

View File

@ -9,6 +9,7 @@
"provisioning_status": "ACTIVE",
"tenant_id": "b7c1a69e88bf4b21a8148f787aef2081",
"vip_address": "10.0.0.4",
"vip_subnet_id": "013d3059-87a4-45a5-91e9-d721068ae0b2"
"vip_subnet_id": "013d3059-87a4-45a5-91e9-d721068ae0b2",
"provider": "sample_provider"
}
}

View File

@ -268,11 +268,17 @@
attribute that is different than their own.
</para>
<para>
A user can supply a <code>vip_address</code> field if she owns
the subnet on which the load balancer's VIP will be created.
If a <code>vip_address</code> is omitted from the payload,
the LBaaS service allocates a VIP address from the
subnet of the load balancer VIP.
If you own the subnet where the load balancer VIP is to be
created, you can specify a <code>vip_address</code>
attribute. If you omit the <code>vip_address</code> attribute
from the payload, the LBaaS service allocates a VIP address
from the subnet of the load balancer VIP.
</para>
<para>
You can also specify the <code>provider</code> attribute when
you create a load balancer. You can set this attribute to any
service provider with a <code>LOADBALANCER</code> service
type.
</para>
<para>Example: Create a load balancer</para>
</wadl:doc>