SoftLayer API : How to get NetScaler list in Softlayer -


i developing cloud portal using softlayer java client lib. regarding n/w part, i'm looking api can retrieve list of load balance.

i succeeded through,

softlayer_network_application_delivery_controller_loadbalancer_service /[service_id]/getobject?objectmask=status -425437/getobject?objectmask=object 

with service id from

softlayer_account/getadcloadbalancers?  objectmask=adcloadbalancers.virtualservers.servicegroups.services.id 

however couldn't retrieve list of lb regarding global lb or lb appliance, netscaler vpx.

the question is, how can list local/global/netscaler per each?

these api requests can you:

to global balancing list:

https://[username]:[apikey]@api.softlayer.com/rest/v3/softlayer_account/getgloballoadbalanceraccounts method: 

to local balancing list, execute:

https://[username]:[apikey]@api.softlayer.com/rest/v3/softlayer_account/getadcloadbalancers?objectmask=mask[loadbalancerhardware[datacenter],ipaddress]  method: 

to netscaler list:

https://[username]:[apikey]@api.softlayer.com/rest/v3/softlayer_account/getapplicationdeliverycontrollers method: 

to network gateway appliance (vyatta):

https://[username]:[apikey]@api.softlayer.com/rest/v3/softlayer_account/softlayer_account/getnetworkgateways  method: 

references: http://sldn.softlayer.com/reference/services/softlayer_account/getgloballoadbalanceraccounts http://sldn.softlayer.com/reference/services/softlayer_account/getadcloadbalancers http://sldn.softlayer.com/reference/services/softlayer_account/getapplicationdeliverycontrollers http://sldn.softlayer.com/reference/services/softlayer_account/getnetworkgateways

regards.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -