-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver_associateIpAddresses.py
More file actions
executable file
·43 lines (37 loc) · 1019 Bytes
/
Copy pathserver_associateIpAddresses.py
File metadata and controls
executable file
·43 lines (37 loc) · 1019 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
43
#!/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 urlparse
import linecache
import url_config
import user_config
baseurl = url_config.server_url
apikey = user_config.apikey
secretkey = user_config.secretkey
# 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']='associateIpAddress'
request['zoneid']=zoneid
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"