本文整理汇总了Python中empower.main.RUNTIME.reject_tenant方法的典型用法代码示例。如果您正苦于以下问题:Python RUNTIME.reject_tenant方法的具体用法?Python RUNTIME.reject_tenant怎么用?Python RUNTIME.reject_tenant使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类empower.main.RUNTIME
的用法示例。
在下文中一共展示了RUNTIME.reject_tenant方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: delete
# 需要导入模块: from empower.main import RUNTIME [as 别名]
# 或者: from empower.main.RUNTIME import reject_tenant [as 别名]
def delete(self, *args, **kwargs):
""" Delete a tenant request.
Args:
tenant_id: network name of a tenant
Example URLs:
PUT /api/v1/pending/52313ecb-9d00-4b7d-b873-b55d3d9ada26
"""
try:
if len(args) == 0:
pendings = RUNTIME.load_pending_tenants()
for pending in pendings:
RUNTIME.reject_tenant(pending.tenant_id)
else:
tenant_id = UUID(args[0])
RUNTIME.reject_tenant(tenant_id)
except ValueError as ex:
self.send_error(400, message=ex)
except KeyError as ex:
self.send_error(404, message=ex)
self.set_status(204, None)