forked from fromcloud/python_api_sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver_createLoadBalancer.py
More file actions
executable file
·57 lines (48 loc) · 1.34 KB
/
Copy pathserver_createLoadBalancer.py
File metadata and controls
executable file
·57 lines (48 loc) · 1.34 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/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
import string
import random
def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
return ''.join(random.choice(chars) for _ in range(size))
lbname=id_generator()
# Zone List ( listZones API )
# KOR-Central A : eceb5d65-6571-4696-875f-5a17949f3317
# KOR-Central B : 9845bd17-d438-4bde-816d-1b12f37d5080
# KOR-Seoul M : 95e2f517-d64a-4866-8585-5177c256f7c7
# KOR-HA : dfd6f03d-dae5-458e-a2ea-cb6a55d0d994
# JPN : 3e8ce14a-09f1-416c-83b3-df95af9d6308
zoneid=''
if apikey:
request={}
request['command']='createLoadBalancer'
request['zoneid']=zoneid
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"