本文整理汇总了Golang中github.com/juju/juju/instance.Instance.Addresses方法的典型用法代码示例。如果您正苦于以下问题:Golang Instance.Addresses方法的具体用法?Golang Instance.Addresses怎么用?Golang Instance.Addresses使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/juju/juju/instance.Instance
的用法示例。
在下文中一共展示了Instance.Addresses方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: getInstanceConfigurator
func (c *rackspaceFirewaller) getInstanceConfigurator(inst instance.Instance) ([]network.Address, common.InstanceConfigurator, error) {
addresses, err := inst.Addresses()
if err != nil {
return nil, nil, errors.Trace(err)
}
if len(addresses) == 0 {
return addresses, nil, errors.New("No addresses found")
}
client := common.NewSshInstanceConfigurator(addresses[0].Value)
return addresses, client, err
}
示例2: instInfo
// instInfo returns the instance info for the given id
// and instance. If inst is nil, it returns a not-found error.
func (*aggregator) instInfo(id instance.Id, inst instance.Instance) (instanceInfo, error) {
if inst == nil {
return instanceInfo{}, errors.NotFoundf("instance %v", id)
}
addr, err := inst.Addresses()
if err != nil {
return instanceInfo{}, err
}
return instanceInfo{
addr,
inst.Status(),
}, nil
}