Skip to main content

NetApp OCUM API wrapper

Project description

Build Status Coverage Status

About

This is a human-made Python implementation of relevant parts of NetApp's ZAPI.

Supported Systems

Currently, only DFM 6.3/6.4 and ONTAP is supported.

Implemented Features

DFM:

  • Events (just reading)

ONTAP:

  • Volumes (reading)
  • Snapshots (reading)
  • Locks (reading)

Examples

Connect to a server:

s = Server(hostname="netapp-1234", username="admin",
           password="admin123")

Get a secific event:

event = s.events.single_by_id(13)

Filter events:

for event in s.events.filter(greater_than_id=13):
    print(event)

Pagination is automatically handled via Python generators:

for event in s.events.filter(max_records=4):
        print(event)
        # Will perform multiple queries under the hood

Setup

  1. mkvirtualenv netapp-api-python
  2. workon netapp-api-python
  3. pip install -r requirements.txt
  4. python setup.py develop

Testing

Set the environment variables to a host running NetApp OCUM NETAPP_HOST, NETAPP_USERNAME, and NETAPP_PASSWORD and run pytest. To test ONTAP set ONTAP_HOST, etc.

Offline tests are enabled using Betamax, which records test data from interaction with the servers and stores it in the cassettes directory. One "cassette" is generated per test.

Generating documentation

Documentation via Sphinx is available (more or less). You can generate HTML documentation by going to /doc/ and entering make html.

The generated documentation is available on GitHub pages.

License

Licence version 3 (GPL Version 3), copied verbatim in the file "LICENSE". In applying this license, CERN does not waive the privileges and immunities granted to it by virtue of its status as Intergovernmental Organization or submit itself to any jurisdiction.

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

netapp-api-1.0.5.tar.gz (17.5 kB view details)

Uploaded Source

File details

Details for the file netapp-api-1.0.5.tar.gz.

File metadata

  • Download URL: netapp-api-1.0.5.tar.gz
  • Upload date:
  • Size: 17.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.21.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.6.8

File hashes

Hashes for netapp-api-1.0.5.tar.gz
Algorithm Hash digest
SHA256 703210f290dc856910fad4554c0d804321e7ab8f4d1ecc7078621725ee9d9478
MD5 f47ea5108a05fcf9c2e17272b4b9d7eb
BLAKE2b-256 5fc8aa0a334b49069f79ea44b9ff385d21cf3f21d8925d40120b006fe3a4cf0a

See more details on using hashes here.

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