mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 07:26:26 -06:00
cfa299d2ee
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.
56 lines
951 B
Go
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
|
|
|
|
}
|