本文整理汇总了Python中qubell.api.provider.router.ROUTER.get_instances方法的典型用法代码示例。如果您正苦于以下问题:Python ROUTER.get_instances方法的具体用法?Python ROUTER.get_instances怎么用?Python ROUTER.get_instances使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类qubell.api.provider.router.ROUTER
的用法示例。
在下文中一共展示了ROUTER.get_instances方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: list_instances_json
# 需要导入模块: from qubell.api.provider.router import ROUTER [as 别名]
# 或者: from qubell.api.provider.router.ROUTER import get_instances [as 别名]
def list_instances_json(self, application=None):
""" Get list of instances in json format converted to list"""
if application: # todo: application should not be parameter here. Application should do its own list
warnings.warn("organization.list_instances_json(app) is deprecated, use app.list_instances_json", DeprecationWarning, stacklevel=2)
instances = application.list_instances_json()
else: # Return all instances in organization
instances = router.get_instances(org_id=self.organizationId).json()
return [ins for ins in instances if ins['status'] not in DEAD_STATUS]