Skip to content

cgascoig/intersight-simple-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages