Skip to content

Leaseweb/leaseweb-go-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Leaseweb Go SDK

Leaseweb Go SDK provides a golang client for Leaseweb's REST API.

Installation

go get github.com/LeaseWeb/leaseweb-go-sdk

Generate your API Key

You can generate your API key at the Customer Portal

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/leaseweb/leaseweb-go-sdk/publicCloud"
)

func main() {
	
    ctx := context.WithValue(
		context.Background(),
		publicCloud.ContextAPIKeys,
		map[string]publicCloud.APIKey{
			"X-LSW-Auth": {Key: "API_KEY_STRING"},
		},
	)

    configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.PublicCloudAPI.GetInstanceList(ctx).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `PublicCloudAPI.GetInstanceList``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetInstanceList`: GetInstanceListResult
	fmt.Fprintf(os.Stdout, "Response from `PublicCloudAPI.GetInstanceList`: %v\n", resp)
}

Documentation

The Leaseweb Go SDK documentation based on product:

Issues

If you encounter an issue with the project, you are welcome to submit an issue.

Pull requests

We ask that an issue is always opened prior to a PR to give us the opportunity to discuss the best place for the change before investing your effort on a patch that we may not be able to accept.

The code in the repository is generated from the OpenAPI specification. This means PRs to code, tests and sometimes even markdown are often inappropriate and we may need to make changes to the specification instead.