35b8c921e9
Updating some of the test to support api v1.1 Change-Id: I22c8650d8be02031204b23b7d39c6c6fc5294ca9
15 lines
439 B
Python
15 lines
439 B
Python
import kong.config
|
|
import kong.nova
|
|
|
|
|
|
class Manager(object):
|
|
"""Top-level object to access OpenStack resources."""
|
|
|
|
def __init__(self, nova):
|
|
self.nova = kong.nova.API(nova['host'],
|
|
nova['port'],
|
|
nova['ver'],
|
|
nova['user'],
|
|
nova['key'],
|
|
nova['project'])
|