terraform/vendor/github.com/hmrc/vmware-govcd
Paul Hinze 8209b40526 vendor: Recapture deps w/ latest godep
The original contents of `vendor` were inadvertently captured with an
older version of `godep`. Here, we recapture dependencies by running the
following:

```
godep restore -v
cat Godeps/Godeps.json | jq -r '.Deps[].ImportPath' | xargs godep update -v
```

The newer godep makes the following changes as it captures dependencies:

 * Skips test files
 * Copies `LICENSE` / `PATENTS` files

There is also an additional diff in `golang.org/x/sys/unix` that looks
very similar to the diff between `master..c65f27f` in that repo, so I'm
guessing that dependency was accidentally captured from master instead
of the commit saved to `Godeps.json`.

All in all, these changes should all be "more correct" and result in
smaller diffs for any future updates made to dependencies.
2016-02-10 10:45:16 -06:00
..
script Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
testutil Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
types/v56 Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
.editorconfig Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
.gitignore Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
.travis.yml Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
LICENSE Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
README.md Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
api.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
api_vca.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
api_vcd.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
catalog.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
catalogitem.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
edgegateway.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
org.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
orgvdcnetwork.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
task.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
vapp.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
vapptemplate.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00
vdc.go Vendor all dependencies w/ Godep 2016-01-29 15:08:48 -06:00

README.md

vmware-govcd

This package was originally forked from github.com/vmware/govcloudair before pulling in rickard-von-essen's great changes to allow using a vCloud Director API. On top of this I have added features as needed for a terraform provider for vCloud Director

Example

package main

import (
	"fmt"
	"net/url"
    "os"

	"github.com/hmrc/vmware-govcd"
)

type Config struct {
	User     string
	Password string
	Org      string
	Href     string
	VDC      string
}

func (c *Config) Client() (*govcd.VCDClient, error) {
	u, err := url.ParseRequestURI(c.Href)
	if err != nil {
		return nil, fmt.Errorf("Unable to pass url: %s", err)
	}

	vcdclient := govcd.NewVCDClient(*u)
	org, vcd, err := vcdclient.Authenticate(c.User, c.Password, c.Org, c.VDC)
	if err != nil {
		return nil, fmt.Errorf("Unable to authenticate: %s", err)
	}
	vcdclient.Org = org
	vcdclient.OrgVdc = vcd
	return vcdclient, nil
}

func main() {
  config := Config{
		User:     "Username",
		Password: "password",
		Org:      "vcd org",
		Href:     "vcd api url",
		VDC:      "vcd virtual datacenter name",
	}

  client, err := config.Client() // We now have a client
  if err != nil {
      fmt.Println(err)
      os.Exit(1)
  }
  fmt.Printf("Org URL: %s\n", client.OrgHREF.String())
}