本文整理匯總了Python中pyvcloud.vcloudair.VCA.get_service_groups方法的典型用法代碼示例。如果您正苦於以下問題:Python VCA.get_service_groups方法的具體用法?Python VCA.get_service_groups怎麽用?Python VCA.get_service_groups使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pyvcloud.vcloudair.VCA
的用法示例。
在下文中一共展示了VCA.get_service_groups方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from pyvcloud.vcloudair import VCA [as 別名]
# 或者: from pyvcloud.vcloudair.VCA import get_service_groups [as 別名]
class TestVCA:
def __init__(self):
self.vca = None
self.login_to_vcloud()
def login_to_vcloud(self):
"""Login to vCloud"""
username = config['vcloud']['username']
password = config['vcloud']['password']
service_type = config['vcloud']['service_type']
host = config['vcloud']['host']
version = config['vcloud']['version']
self.vca = VCA(host=host, username=username, service_type=service_type, version=version, verify=True, log=True)
assert self.vca
if vcloudair.VCA_SERVICE_TYPE_STANDALONE == service_type:
raise Exception('not-supported')
elif vcloudair.VCA_SERVICE_TYPE_SUBSCRIPTION == service_type:
raise Exception('not-supported')
elif vcloudair.VCA_SERVICE_TYPE_ONDEMAND == service_type:
result = self.vca.login(password=password)
assert result
def logout_from_vcloud(self):
"""Logout from vCloud"""
print 'logout'
selfl.vca.logout()
self.vca = None
assert self.vca is None
def test_0001(self):
"""Loggin in to vCloud"""
assert self.vca.token
def test_0002(self):
"""Get Service Groups"""
service_groups = self.vca.get_service_groups()
assert service_groups
assert len(service_groups)>=0
def test_0003(self):
"""Get Plans"""
plans = self.vca.get_plans()
assert plans
assert len(plans)>=0
def test_0004(self):
"""Get Instances"""
instances = self.vca.get_instances()
assert instances
assert len(instances)>=0
def test_0005(self):
"""Get Users"""
users = self.vca.get_users()
assert users
assert len(users)>=0