Skip to main content

CA Spectrum Web Services API wrapper

Project description

spectrum-client

image image image


CA Spectrum Web Services API wrapper

Instalation

spectrum-client is distributed on PyPI and is available on Linux/macOS and Windows and supports Python 3.6+.

$ pip install -U spectrum-client

Usage

from spectrum_client import Spectrum

oc = Spectrum('http://oneclick.mydomain:8080', 'myuser', 'secret')

# Update a model attribute
oc.update_attribute(0x210afa, 0x10024, 'MySNMPSecret')

# Update multiple attributes
updates = [(0x11564, notes), (0x12db9, 'JKL002'), (0x1295d, False)]
oc.update_attributes(mh, updates)

# Get a list of devices by name (only from landscape 0xa00000)
oc.devices_by_name('^SW00', 0xa00000)

# Get a lis tof devices by specific attribute from all landscapes
return oc.devices_by_attr(0x12db9, 'XYZ001')

# Get a list of devices by multipe matchng filters
oc.devices_by_filters([(attr1, 'equals', value1), (attr2, 'has-pcre', '^foo.*bar')], landscape)

# Put a model in maintenance mode
oc.set_maintenance(model_handle, True)

# Remove a model from maintenance mode
oc.set_maintenance(model_handle, False)

If not provided, server and credentials will be read from the environment variables SPECTRUM_URL, SPECTRUM_USERNAME, SPECTRUM_PASSWORD.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spectrum-client-0.1.2.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

spectrum_client-0.1.2-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page