本文整理汇总了Python中cfme.automate.explorer.domain.DomainCollection.enabled方法的典型用法代码示例。如果您正苦于以下问题:Python DomainCollection.enabled方法的具体用法?Python DomainCollection.enabled怎么用?Python DomainCollection.enabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cfme.automate.explorer.domain.DomainCollection
的用法示例。
在下文中一共展示了DomainCollection.enabled方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: qe_ae_data
# 需要导入模块: from cfme.automate.explorer.domain import DomainCollection [as 别名]
# 或者: from cfme.automate.explorer.domain.DomainCollection import enabled [as 别名]
def qe_ae_data(request, ssh_client, rake):
ssh_client.put_file(cli_path.join("QECliTesting.yaml").strpath, "/root/QECliTesting.yaml")
rc, stdout = rake(
"evm:automate:import DOMAIN=QECliTesting YAML_FILE=/root/QECliTesting.yaml PREVIEW=false "
"ENABLED=true SYSTEM=false")
assert rc == 0, stdout
# Now we have to enable the domain to make it work.
qe_cli_testing = DomainCollection().instantiate(name='QECliTesting')
request.addfinalizer(qe_cli_testing.delete_if_exists)
if not qe_cli_testing.enabled:
with update(qe_cli_testing):
qe_cli_testing.enabled = True