This module provides a simple to use client for the Intersight API.
- Handles signature authentication and supports both v2 and v3 keys.
- Faster compile time
- Simple to use
- Automatic configuration using environment variables
go get github.com/cgascoig/intersight-simple-go
Below is a simple example Go program that shows how to use this module
package main
import (
"fmt"
"log"
"github.com/cgascoig/intersight-simple-go/intersight"
)
func main() {
client, err := intersight.NewClient()
if err != nil {
log.Fatalf("Error creating client: %v", err)
}
result, err := client.Get("/api/v1/ntp/Policies")
if err != nil {
log.Fatalf("Error in API call: %v", err)
}
fmt.Printf("Result: \n%v", result)
}