GO SDK of the GreenHost API. forked from github.com/digitalocean/godo
Go to file
Wioletta Holownia 4fa9e9d999 Add support for Firewalls. (#145)
* Add support for Firewalls.

* Fix chagelog PR id.

* Add link to public api docs.
2017-06-06 09:50:45 -04:00
context Portable Go Context Usage 2017-04-07 15:32:33 -05:00
util Use context.Background over oauth2.NoContext 2017-05-04 00:46:34 -04:00
.gitignore Add support for LoadBalancers 2017-02-14 15:36:18 -05:00
.travis.yml Portable Go Context Usage 2017-04-07 15:32:33 -05:00
CHANGELOG.md Add support for Firewalls. (#145) 2017-06-06 09:50:45 -04:00
CONTRIBUTING.md Add docs for contributing, versioning and docs. 2015-03-12 12:18:48 -04:00
LICENSE.txt Update copyright notice to 2016 [ci skip] 2016-01-03 19:46:24 +05:30
README.md Use context.Background over oauth2.NoContext 2017-05-04 00:46:34 -04:00
account.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
account_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
action.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
action_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
certificates.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
certificates_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
doc.go initial commit 2014-09-03 10:20:10 -04:00
domains.go Add TTL property to Domains 2017-04-25 22:28:07 +02:00
domains_test.go Add TTL property to Domains 2017-04-25 22:28:07 +02:00
droplet_actions.go droplet_actions: return array of actions instead of action tagged resources 2017-04-29 23:08:00 +02:00
droplet_actions_test.go droplet_actions: return array of actions instead of action tagged resources 2017-04-29 23:08:00 +02:00
droplets.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
droplets_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
errors.go Add checks for arguments 2015-09-25 14:44:20 -05:00
errors_test.go Add checks for arguments 2015-09-25 14:44:20 -05:00
firewalls.go Add support for Firewalls. (#145) 2017-06-06 09:50:45 -04:00
firewalls_test.go Add support for Firewalls. (#145) 2017-06-06 09:50:45 -04:00
floating_ips.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
floating_ips_actions.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
floating_ips_actions_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
floating_ips_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
godo.go Add support for Firewalls. (#145) 2017-06-06 09:50:45 -04:00
godo_test.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
image_actions.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
image_actions_test.go Implementing Image Convert action 2017-03-04 20:25:10 +01:00
images.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
images_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
keys.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
keys_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
links.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
links_test.go Fix a few issues identified by go vet 2014-12-16 14:24:50 -08:00
load_balancers.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
load_balancers_test.go Removing executable permissions from Load Balancer files 2017-02-24 23:09:29 +01:00
regions.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
regions_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
sizes.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
sizes_test.go add context.Context to all calls 2017-02-23 14:25:29 -05:00
snapshots.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
snapshots_test.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
storage.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
storage_actions.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
storage_actions_test.go Remove non-working Detach function 2017-03-30 03:09:19 +02:00
storage_test.go Support creating Volumes from snapshots. 2017-03-17 16:10:40 -04:00
strings.go make linters happy 2016-12-20 16:00:17 -08:00
tags.go Portable Go Context Usage 2017-04-07 15:32:33 -05:00
tags_test.go Deprecate tag rename (PUT /v2/tags/:name) 2017-04-07 10:53:34 -04:00
timestamp.go removed named return 2015-07-16 09:16:00 +05:30
timestamp_test.go make linters happy 2016-12-20 16:00:17 -08:00

README.md

Build Status

Godo

Godo is a Go client library for accessing the DigitalOcean V2 API.

You can view the client API docs here: http://godoc.org/github.com/digitalocean/godo

You can view DigitalOcean API docs here: https://developers.digitalocean.com/documentation/v2/

Usage

import "github.com/digitalocean/godo"

Create a new DigitalOcean client, then use the exposed services to access different parts of the DigitalOcean API.

Authentication

Currently, Personal Access Token (PAT) is the only method of authenticating with the API. You can manage your tokens at the DigitalOcean Control Panel Applications Page.

You can then use your token to create a new client:

import "golang.org/x/oauth2"

pat := "mytoken"
type TokenSource struct {
    AccessToken string
}

func (t *TokenSource) Token() (*oauth2.Token, error) {
    token := &oauth2.Token{
        AccessToken: t.AccessToken,
    }
    return token, nil
}

tokenSource := &TokenSource{
    AccessToken: pat,
}
oauthClient := oauth2.NewClient(context.Background(), tokenSource)
client := godo.NewClient(oauthClient)

Examples

To create a new Droplet:

dropletName := "super-cool-droplet"

createRequest := &godo.DropletCreateRequest{
    Name:   dropletName,
    Region: "nyc3",
    Size:   "512mb",
    Image: godo.DropletCreateImage{
        Slug: "ubuntu-14-04-x64",
    },
}

ctx := context.TODO()

newDroplet, _, err := client.Droplets.Create(ctx, createRequest)

if err != nil {
    fmt.Printf("Something bad happened: %s\n\n", err)
    return err
}

Pagination

If a list of items is paginated by the API, you must request pages individually. For example, to fetch all Droplets:

func DropletList(ctx context.Context, client *godo.Client) ([]godo.Droplet, error) {
    // create a list to hold our droplets
    list := []godo.Droplet{}

    // create options. initially, these will be blank
    opt := &godo.ListOptions{}
    for {
        droplets, resp, err := client.Droplets.List(ctx, opt)
        if err != nil {
            return nil, err
        }

        // append the current page's droplets to our list
        for _, d := range droplets {
            list = append(list, d)
        }

        // if we are at the last page, break out the for loop
        if resp.Links == nil || resp.Links.IsLastPage() {
            break
        }

        page, err := resp.Links.CurrentPage()
        if err != nil {
            return nil, err
        }

        // set the page we want for the next request
        opt.Page = page + 1
    }

    return list, nil
}

Versioning

Each version of the client is tagged and the version is updated accordingly.

Since Go does not have a built-in versioning, a package management tool is recommended - a good one that works with git tags is gopkg.in.

To see the list of past versions, run git tag.

Documentation

For a comprehensive list of examples, check out the API documentation.

For details on all the functionality in this library, see the GoDoc documentation.

Contributing

We love pull requests! Please see the contribution guidelines.