cgascoig / intersight-simple-go

A simple to use Go client for the Cisco Intersight API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tests GoDoc Go Report

This module provides a simple to use client for the Intersight API.

Features

  • Handles signature authentication and supports both v2 and v3 keys.
  • Faster compile time
  • Simple to use
  • Automatic configuration using environment variables

Installation

go get github.com/cgascoig/intersight-simple-go

Usage

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)
}

About

A simple to use Go client for the Cisco Intersight API

License:MIT License


Languages

Language:Go 100.0%