本文整理汇总了Python中aquilon.worker.processes.DSDBRunner.delete_dns_domain方法的典型用法代码示例。如果您正苦于以下问题:Python DSDBRunner.delete_dns_domain方法的具体用法?Python DSDBRunner.delete_dns_domain怎么用?Python DSDBRunner.delete_dns_domain使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类aquilon.worker.processes.DSDBRunner
的用法示例。
在下文中一共展示了DSDBRunner.delete_dns_domain方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: render
# 需要导入模块: from aquilon.worker.processes import DSDBRunner [as 别名]
# 或者: from aquilon.worker.processes.DSDBRunner import delete_dns_domain [as 别名]
def render(self, session, logger, dns_domain, **arguments):
dbdns_domain = DnsDomain.get_unique(session, dns_domain, compel=True)
q = session.query(Fqdn)
q = q.filter_by(dns_domain=dbdns_domain)
if q.first():
raise ArgumentError("DNS domain %s cannot be deleted while still "
"in use." % dns_domain)
if dbdns_domain.dns_maps:
raise ArgumentError("{0} is still mapped to locations and cannot "
"be deleted.".format(dbdns_domain))
comments = dbdns_domain.comments
session.delete(dbdns_domain)
session.flush()
dsdb_runner = DSDBRunner(logger=logger)
dsdb_runner.delete_dns_domain(dns_domain, comments)
dsdb_runner.commit_or_rollback()
return