acigo

module
v0.0.0-...-34e76f1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 21, 2021 License: MIT

README

GoDoc Go Report Card license

About Acigo

Acigo is a Go package for interacting with Cisco ACI using API calls.

Install

Without Modules - Before Go 1.11

go get github.com/gorilla/websocket
go get github.com/udhos/acigo
go install github.com/udhos/acigo/aci

With Modules - Since Go 1.11

git clone https://github.com/udhos/acigo
cd acigo
go install ./aci

Usage

Import the package in your program:

import "github.com/udhos/acigo/aci"

See godoc: http://godoc.org/github.com/udhos/acigo/aci

Example

package main

import (
	"fmt"
	"github.com/udhos/acigo/aci"
)

func main() {

	a, errNew := aci.New(aci.ClientOptions{})
	if errNew != nil {
		fmt.Printf("login new client error: %v\n", errNew)
		return
	}

	// Since credentials have not been specified explicitly under ClientOptions,
	// Login() will use env vars: APIC_HOSTS=host, APIC_USER=username, APIC_PASS=pwd
	errLogin := a.Login()
	if errLogin != nil {
		fmt.Printf("login error: %v\n", errLogin)
		return
	}

	errAdd := a.TenantAdd("tenant-example", "")
	if errAdd != nil {
		fmt.Printf("tenant add error: %v\n", errAdd)
		return
	}

	errLogout := a.Logout()
	if errLogout != nil {
		fmt.Printf("logout error: %v\n", errLogout)
		return
	}
}

Documentation

Acigo documentation in GoDoc: https://godoc.org/github.com/udhos/acigo/aci

See Also

Cisco APIC REST API User Guide

APIC Management Information Model Reference

Directories

Path Synopsis
Package aci is a Go module for interacting with Cisco ACI using API calls.
Package aci is a Go module for interacting with Cisco ACI using API calls.
samples
aci-aaep command
aci-aaep-dom command
aci-ap command
aci-bd command
aci-contract command
aci-dom-l3ext command
aci-dom-phys command
aci-epg-app command
aci-example command
aci-filter command
aci-l3out command
aci-login command
aci-nodes command
aci-subject command
aci-tenant command
aci-tls command
aci-vlanpool command
aci-vlanrange command
aci-vmm-vmware command
aci-vrf command
aci-websocket command

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL