opentofu/vendor/github.com/hmrc/vmware-govcd/vm.go
James Bardin cfa299d2ee Update deps in unknown state and rever nomad
Nomad was manually updated, so revert that to the version in master,
remove it from vendor.json and add it to the ignore list.

Update all packages that were in an unknown state to their latest master
commits.
2017-01-19 20:10:17 -05:00

56 lines
951 B
Go

/*
* Copyright 2014 VMware, Inc. All rights reserved. Licensed under the Apache v2 License.
*/
package govcd
import (
// "bytes"
// "encoding/xml"
"fmt"
// "log"
"net/url"
// "os"
// "strconv"
types "github.com/hmrc/vmware-govcd/types/v56"
)
type VM struct {
VM *types.VM
c *Client
}
func NewVM(c *Client) *VM {
return &VM{
VM: new(types.VM),
c: c,
}
}
func (c *VCDClient) FindVMByHREF(vmhref string) (VM, error) {
u, err := url.ParseRequestURI(vmhref)
if err != nil {
return VM{}, fmt.Errorf("error decoding vm HREF: %s", err)
}
// Querying the VApp
req := c.Client.NewRequest(map[string]string{}, "GET", *u, nil)
resp, err := checkResp(c.Client.Http.Do(req))
if err != nil {
return VM{}, fmt.Errorf("error retrieving VM: %s", err)
}
newvm := NewVM(&c.Client)
if err = decodeBody(resp, newvm.VM); err != nil {
return VM{}, fmt.Errorf("error decoding VM response: %s", err)
}
return *newvm, nil
}