本文整理汇总了Python中pyvcloud.vcd.org.Org.list_rights_of_org方法的典型用法代码示例。如果您正苦于以下问题:Python Org.list_rights_of_org方法的具体用法?Python Org.list_rights_of_org怎么用?Python Org.list_rights_of_org使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyvcloud.vcd.org.Org
的用法示例。
在下文中一共展示了Org.list_rights_of_org方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: list_rights
# 需要导入模块: from pyvcloud.vcd.org import Org [as 别名]
# 或者: from pyvcloud.vcd.org.Org import list_rights_of_org [as 别名]
def list_rights(ctx, org_name, all):
try:
restore_session(ctx)
client = ctx.obj['client']
if org_name is not None:
org_href = client.get_org_by_name(org_name).get('href')
else:
org_href = ctx.obj['profiles'].get('org_href')
org = Org(client, href=org_href)
if all:
right_records = org.list_rights_available_in_vcd()
else:
right_records = org.list_rights_of_org()
for right in right_records:
del right['href']
stdout(right_records, ctx)
except Exception as e:
stderr(e, ctx)