christingruber / hcloud-go

A Go library for the Hetzner Cloud API

Home Page:https://godoc.org/github.com/hetznercloud/hcloud-go/hcloud

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hcloud: A Go library for the Hetzner Cloud API

GitHub Actions status GoDoc

Package hcloud is a library for the Hetzner Cloud API.

The library’s documentation is available at GoDoc, the public API documentation is available at docs.hetzner.cloud.

Example

package main

import (
    "context"
    "fmt"
    "log"

    "github.com/hetznercloud/hcloud-go/hcloud"
)

func main() {
    client := hcloud.NewClient(hcloud.WithToken("token"))

    server, _, err := client.Server.GetByID(context.Background(), 1)
    if err != nil {
        log.Fatalf("error retrieving server: %s\n", err)
    }
    if server != nil {
        fmt.Printf("server 1 is called %q\n", server.Name)
    } else {
        fmt.Println("server 1 not found")
    }
}

License

MIT license

About

A Go library for the Hetzner Cloud API

https://godoc.org/github.com/hetznercloud/hcloud-go/hcloud

License:MIT License


Languages

Language:Go 100.0%Language:Shell 0.0%