Skip to main content

Isilon SDK

Project description

About

This package is part of the Isilon SDK. It includes language bindings for easier programmatic access to the OneFS API for cluster configuration (on your cluster this is the REST API made up of all the URIs underneath https://[cluster]:8080/platform/*, also called the “Platform API” or PAPI”).

Installation

pip install isi_sdk_7_2

Example program

Here’s an example of using the Python PAPI bindings to retrieve a list of NFS exports from your cluster:

import isi_sdk_7_2
from isi_sdk_7_2.rest import ApiException
from pprint import pprint
import urllib3
urllib3.disable_warnings()

# configure username and password
isi_sdk_7_2.configuration.username = "YOUR_USERNAME"
isi_sdk_7_2.configuration.password = "YOUR_PASSWORD"
isi_sdk_7_2.configuration.verify_ssl = False

# configure host
host = "https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP_ADDRESS:8080"
api_client = isi_sdk_7_2.ApiClient(host)
protocols_api = isi_sdk_7_2.ProtocolsApi(api_client)

# get all exports
sort = "description"
limit = 50
dir = "ASC"
try:
    api_response = protocols_api.list_nfs_exports(sort=sort, limit=limit, dir=dir)
    pprint(api_response)
except ApiException as e:
    print "Exception when calling ProtocolsApi->list_nfs_exports: %s" % e

There are more examples of coding to the Python PAPI bindings in the `tests/ <https://github.com/Isilon/isilon_sdk/tree/master/tests>`__ subdirectory of the repo. The tests currently run against a generic isi_sdk import which is how the bindings library is named by default if you build your own bindings. If you want to run the tests against one of the libraries you’ve downloaded from the prebuilt releases page, you should change the import isi_sdk lines to import isi_sdk_7_2 or import isi_sdk_8_0 depending on which one you downloaded.

More info

See the Github repo for more information: https://github.com/isilon/isilon_sdk

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

isi_sdk_7_2-0.1.2-py2.py3-none-any.whl (1.4 MB view details)

Uploaded Python 2Python 3

File details

Details for the file isi_sdk_7_2-0.1.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for isi_sdk_7_2-0.1.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1f8bdf2ff5808d86d34c7ac51af6ed3aba60bb35bd76b6990bfe74992891d020
MD5 25ff1d395aeb97c8609ab86fd1544aef
BLAKE2b-256 d6c6c5bd5038ff37397eaf8be4920b49b1d124f8ef7bfe8aa1c97a0e8ff940e0

See more details on using hashes here.

Supported by

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