本文整理匯總了Python中cloudmesh_client.cloud.default.Default.get_refresh方法的典型用法代碼示例。如果您正苦於以下問題:Python Default.get_refresh方法的具體用法?Python Default.get_refresh怎麽用?Python Default.get_refresh使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cloudmesh_client.cloud.default.Default
的用法示例。
在下文中一共展示了Default.get_refresh方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from cloudmesh_client.cloud.default import Default [as 別名]
# 或者: from cloudmesh_client.cloud.default.Default import get_refresh [as 別名]
def __init__(self, context):
self.context = context
if self.context.debug:
print("init command refresh")
try:
value = Default.get_refresh()
except:
Default.set_refresh("off")
示例2: do_refresh
# 需要導入模塊: from cloudmesh_client.cloud.default import Default [as 別名]
# 或者: from cloudmesh_client.cloud.default.Default import get_refresh [as 別名]
def do_refresh(self, args, arguments):
"""
::
Usage:
refresh on
refresh off
refresh list
switches on and off the refresh for clouds
"""
if arguments["on"]:
Default.set_refresh("on")
Console.ok("Switch debug on")
elif arguments["off"]:
Default.set_refresh("off")
Console.ok("Switch debug off")
elif arguments["list"]:
refresh = Default.get_refresh()
Console.ok("Automatic cloud refresh is switched {}".format(refresh))
return ""