Civogo - The Golang client library for Civo
Civogo is a Go client library for accessing the Civo cloud API.
You can view the client API docs at https://pkg.go.dev/github.com/civo/civogo and view the API documentation at https://api.civo.com
Install
go get github.com/civo/civogo
Usage
import "github.com/civo/civogo"
From there you create a Civo client specifying your API key and use public methods to interact with Civo's API.
Authentication
Your API key is listed within the Civo control panel's security page. You can also reset the token there, for example, if accidentally put it in source code and found it had been leaked.
You can then use your API key to create a new client:
package main
import (
"context"
"github.com/civo/civogo"
)
const (
apiKey = "mykeygoeshere"
)
func main() {
client, err := civogo.NewClient(apiKey)
// ...
}
Examples
To create a new Instance:
config, err := client.NewInstanceConfig()
if err != nil {
t.Errorf("Failed to create a new config: %s", err)
return err
}
config.Hostname = "foo.example.com"
instance, err := client.CreateInstance(config)
if err != nil {
t.Errorf("Failed to create instance: %s", err)
return err
}
To get all Instances:
instances, err := client.ListAllInstances()
if err != nil {
t.Errorf("Failed to create instance: %s", err)
return err
}
for _, i := range instances {
fmt.Println(i.Hostname)
}
Pagination
If a list of objects is paginated by the API, you must request pages individually. For example, to fetch all instances without using the ListAllInstances
method:
func MyListAllInstances(client *civogo.Client) ([]civogo.Instance, error) {
list := []civogo.Instance{}
pageOfItems, err := client.ListInstances(1, 50)
if err != nil {
return []civogo.Instance{}, err
}
if pageOfItems.Pages == 1 {
return pageOfItems.Items, nil
}
for page := 2; page<=pageOfItems.Pages; page++ {
pageOfItems, err := client.ListInstances(1, 50)
if err != nil {
return []civogo.Instance{}, err
}
list = append(list, pageOfItems.Items)
}
return list, nil
}
Error handler
In the latest version of the library we have added a new way to handle errors. Below are some examples of how to use the new error handler, and the complete list of errors is here. This is an example of how to make use of the new errors, suppose we want to create a new Kubernetes cluster, and do it this way but choose a name that already exists within the clusters that we have:
// kubernetes config
configK8s := &civogo.KubernetesClusterConfig{
NumTargetNodes: 5,
Name: "existent-name",
}
// Send to create the cluster
resp, err := client.NewKubernetesClusters(configK8s)
if err != nil {
if errors.Is(err, civogo.DatabaseKubernetesClusterDuplicateError) {
// add some actions
}
}
The following lines are new:
if err != nil {
if errors.Is(err, civogo.DatabaseKubernetesClusterDuplicateError) {
// add some actions
}
}
In this way. we can make decisions faster based on known errors, and we know what to expect. There is also the option of being able to say this to account for some errors but not others:
if err != nil {
if errors.Is(err, civogo.DatabaseKubernetesClusterDuplicateError) {
// add some actions
}
if errors.Is(err, civogo.UnknowError) {
// exit with error
}
}
We can use UnknownError
for errors that are not defined.
Contributing
If you want to get involved, we'd love to receive a pull request - or an offer to help over our KUBE100 Slack channel. Please see the contribution guidelines.