forked from fromcloud/python_api_sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlb_createLoadBalancer.py
More file actions
executable file
·42 lines (37 loc) · 912 Bytes
/
Copy pathlb_createLoadBalancer.py
File metadata and controls
executable file
·42 lines (37 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/python
import sys
sys.path.insert(0, "../config/")
sys.path.insert(0, "../ucloudbiz/")
import ucloudbiz
import urllib2
import urllib
import hashlib
import hmac
import base64
#import os
import urlparse
import linecache
import url_config
import user_config
baseurl = url_config.lb_url
apikey = user_config.apikey
secretkey = user_config.secretkey
lbname='' # lb name
if apikey:
request={}
request['command']='createLoadBalancer'
request['zoneid']='eceb5d65-6571-4696-875f-5a17949f3317'
request['name']=lbname
request['loadbalanceroption']='roundrobin'
request['serviceport']='80'
request['servicetype']='http'
request['healthchecktype']='tcp'
request['response']='xml'
request['apikey']=apikey
req_url=ucloudbiz.get_sig_request(request, secretkey, baseurl)
print "Request URL = %s\n" % req_url
#res=urllib2.urlopen(req_url)
#print res.read()
#res.close()
else:
print "apikey none"