A python library for vADC
Project description
A library for interacting with the REST API of Brocade vADC.
To install, either clone from github or “pip install pyvadc”
To use (standalone vTM):
from pyvadc import Vtm, VtmConfig
config = VtmConfig("https://vtm1:9070/", "admin", "password")
vtm = Vtm(config)
vtm.get_pools()
...
To Use with BSD:
from pyvadc import Bsd, Vtm, BsdConfig
config = BsdConfig("https://sd1:8100/", "admin", "password")
bsd = Bsd(config)
bsd.add_vtm("vtm1", "password", "172.17.0.2", 100, "STM-400_full")
bsd.get_status("vtm1")
# We can now manage vTMs by proxying.
vtm1 = Vtm(config, vtm="vtm1")
vtm1.get_pools()
...
Enjoy!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyvadc-0.0.7.tar.gz
(9.2 kB
view details)
File details
Details for the file pyvadc-0.0.7.tar.gz.
File metadata
- Download URL: pyvadc-0.0.7.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a763671d9ff5114ae1c046d55f303396ea385f501d7c30560af333da9339417
|
|
| MD5 |
d4ac749c34f2beb88d40b46c065976b5
|
|
| BLAKE2b-256 |
8d224258c14d2800b77055a5d9ea2407c98965a72b187ec5a4762966b0e7069d
|