subnetId: This is the subnet id of which the load balancer instance will 
connect to, and which the back-end compute servers can reach. Description from 
load balancer doc "This subnet must have network connectivity with backend 
servers hosting your application. This means that the backend servers can be 
either on the same subnet as the one you select for the load balancer here, 
and/or the backend servers are on subnet(s) that have Layer-3 connectivity with 
the selected subnet (you may have to enable “VLAN Spanning” in this case). Note 
that the corresponding public subnet is automatically selected by the 
implementation.The load balancer uses two IP addresses from the private subnet, 
and three IP addresses from the public subnet. If sufficient IP addresses are 
not available, then the order or subsequent provisioning will fail."

servicePrices: These are just the priced items that are required by spinning up 
a load balancer instance. Users can retrieve relevant information through the 
following APIs:
- Determine required product items of product package with id=805:
`
curl -k -H 'Content-Type: application/json' 
'https://'$SL_USER':'$SL_API'@api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/805/getConfiguration?objectMask=isRequired;itemCategory.name;itemCategory.id'
 | jq .
`
-Determine price identifiers of product items:
`
curl -k -H 'Content-Type: application/json' 
'https://'$SL_USER':'$SL_API'@api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/805/getItemPrices?objectMask=id;item.description;categories.id;locations'
 | jq .
`
-Determine datacenters, in which Bluemix LBaaS is available:
`
curl -k -H 'Content-Type: application/json' 
'https://'$SL_USER':'$SL_API'@api.softlayer.com/rest/v3.1/SoftLayer_Product_Package/805/getItemPrices?objectMask=id;item.description;categories.id;locations'
 | jq .
`

testInstancePrivateIp: This is the privateIp of a test instance from user 
that's going to be sitting behind the load balancer. Since we are not testing 
the performance of the load balancer, I just need one instance for testing the 
`SoftLayer_Network_LBaaS_Member` related APIs.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1176#issuecomment-361652638

Reply via email to