Skip to content
This repository has been archived by the owner on Sep 21, 2023. It is now read-only.

minitriga/silverpeak_python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

THIS LIBRARY HAS NOW BEEN ARCHIVED AS I NO LONGER WORK WITH THE SILVERPEAK/ARUBA SDWAN TECHNOLOGY PLEASE SEE THE EDGECONNECT-PYTHON REPO FOR A MORE UP TO DATE CLIENT.

silverpeak_python

Python library for use with Silver Peak SD-WAN Orchestrator API.
Requires requests

About

Silver Peak is an SD-WAN vendor with a solid rest API. The API is documented on the orchestrator host and can be found by going to https://hostname/orch_version/webclient/php/swagger/index.html.

Installation

pip install silverpeak

Instantiate a connection to a vManage device

from silverpeak import *
sp = Silverpeak(user='admin', user_pass='admin', sp_server='192.168.1.2')

Call methods

devices = sp.get_appliances()

Returned Result

All methods return a Result named tuple with the requests.json() data in the data element.
The complete requests.response object is stored in the response element

Result(ok=True, status_code=200, error='', reason='Success', data={}, response=<Response [200]>)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages