本文整理汇总了Python中nixops.backends.MachineState.address_to方法的典型用法代码示例。如果您正苦于以下问题:Python MachineState.address_to方法的具体用法?Python MachineState.address_to怎么用?Python MachineState.address_to使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nixops.backends.MachineState
的用法示例。
在下文中一共展示了MachineState.address_to方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: address_to
# 需要导入模块: from nixops.backends import MachineState [as 别名]
# 或者: from nixops.backends.MachineState import address_to [as 别名]
def address_to(self, m):
if isinstance(m, VirtualBoxState):
return m.private_ipv4
return MachineState.address_to(self, m)
示例2: address_to
# 需要导入模块: from nixops.backends import MachineState [as 别名]
# 或者: from nixops.backends.MachineState import address_to [as 别名]
def address_to(self, m):
if isinstance(m, EC2State): # FIXME: only if we're in the same region
return m.private_ipv4
return MachineState.address_to(self, m)
示例3: address_to
# 需要导入模块: from nixops.backends import MachineState [as 别名]
# 或者: from nixops.backends.MachineState import address_to [as 别名]
def address_to(self, resource):
"""Return the IP address to be used to access "resource" from this machine."""
if isinstance(resource, GCEState) and resource.network == self.network:
return resource.private_ipv4
else:
return MachineState.address_to(self, resource)
示例4: address_to
# 需要导入模块: from nixops.backends import MachineState [as 别名]
# 或者: from nixops.backends.MachineState import address_to [as 别名]
def address_to(self, m):
if isinstance(m, ContainerState) and self.host == m.host:
return m.private_ipv4
return MachineState.address_to(self, m)
示例5: address_to
# 需要导入模块: from nixops.backends import MachineState [as 别名]
# 或者: from nixops.backends.MachineState import address_to [as 别名]
def address_to(self, m):
if isinstance(m, LibvirtdState):
return m.private_ipv4
return MachineState.address_to(self, m)