本文整理汇总了Golang中github.com/vmware/vic/pkg/vsphere/session.Session.Retrieve方法的典型用法代码示例。如果您正苦于以下问题:Golang Session.Retrieve方法的具体用法?Golang Session.Retrieve怎么用?Golang Session.Retrieve使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/vmware/vic/pkg/vsphere/session.Session
的用法示例。
在下文中一共展示了Session.Retrieve方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: populateVMAttributes
// populate the vm attributes for the specified morefs
func populateVMAttributes(ctx context.Context, sess *session.Session, refs []types.ManagedObjectReference) ([]mo.VirtualMachine, error) {
var vms []mo.VirtualMachine
// current attributes we care about
attrib := []string{"config", "runtime.powerState", "summary"}
// populate the vm properties
err := sess.Retrieve(ctx, refs, attrib, &vms)
return vms, err
}
示例2: Update
func (c *Container) Update(ctx context.Context, sess *session.Session) (*executor.ExecutorConfig, error) {
defer trace.End(trace.Begin("Container.Update"))
c.Lock()
defer c.Unlock()
if c.vm == nil {
return nil, fmt.Errorf("container does not have a vm")
}
var vm []mo.VirtualMachine
if err := sess.Retrieve(ctx, []types.ManagedObjectReference{c.vm.Reference()}, []string{"config"}, &vm); err != nil {
return nil, err
}
extraconfig.Decode(vmomi.OptionValueSource(vm[0].Config.ExtraConfig), c.ExecConfig)
return c.ExecConfig, nil
}