本文整理汇总了Python中networkapi.requisicaovips.models.RequisicaoVips.get_by_healthcheck_expect方法的典型用法代码示例。如果您正苦于以下问题:Python RequisicaoVips.get_by_healthcheck_expect方法的具体用法?Python RequisicaoVips.get_by_healthcheck_expect怎么用?Python RequisicaoVips.get_by_healthcheck_expect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类networkapi.requisicaovips.models.RequisicaoVips
的用法示例。
在下文中一共展示了RequisicaoVips.get_by_healthcheck_expect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: dissociate_environment_and_delete
# 需要导入模块: from networkapi.requisicaovips.models import RequisicaoVips [as 别名]
# 或者: from networkapi.requisicaovips.models.RequisicaoVips import get_by_healthcheck_expect [as 别名]
def dissociate_environment_and_delete(self, authenticated_user, environment_id=None):
from networkapi.requisicaovips.models import RequisicaoVips
try:
healthcheckexpects = HealthcheckExpect.objects.all()
if (environment_id is not None):
hces = healthcheckexpects.filter(ambiente__id=environment_id)
for hce in hces:
vip_criado = False
for req_vip in RequisicaoVips.get_by_healthcheck_expect(hce.id):
if req_vip.vip_criado:
vip_criado = True
# If any RequsicaoVips associated, dissociate healthcheck
# expect from Ambiente
if vip_criado:
hce.ambiente = None
hce.save(authenticated_user)
# Else, delete HealthcheckExpect object
else:
hce.delete()
except Exception, e:
self.log.error(u'Falha ao desassociar os healthcheck_expects.')
raise HealthcheckExpectError(
e, u'Falha ao desassociar os healthcheck_expects.')