Skip to main content

Simplify access to the Riverbed SteelConnect REST API.

Project description

SteelConnection

version 0.8.8

SteelConnection provides a wrapper object to simplify access to the Riverbed SteelConnect REST API.

  • Create an object once and it remembers the URL and authentication.
  • All subsequent API requests are made via a single TCP connection.
  • Call the appropriate method and supply the resrouce path and any upload data.
  • Accepts and returns native Python data - no need to convert to or from JSON.
BETA software:

actively working to simplify - some behavior may change before 1.0.0 release.

Supports:

Python 2.7, 3.4, 3.5, 3.6

Requires:

Requests

HOWTO:

To install the latest version:

# Python 3
python3 -m pip install --upgrade steelconnection

# Python 2
python2 -m pip install --upgrade steelconnection

Quickstart:

See the examples folder for sample scripts.
https://github.com/grelleum/SteelConnection/tree/master/examples

Getting Started:

  • Make sure the REST API is enabled on your SteelConnect realm before trying to access the REST API.
  • Use pip to install steelconnection as shown above.
  • Import steelconnection and create a new object by providing the Fully qualified DNS name of your realm. This would typically be REALM_NAME.riverbed.cc, where REALM_NAME is specific to your realm.
import steelconnection
sconnect = steelconnection.SConAPI('REALM.riverbed.cc')

Realms and Organizations:

There is a one to one relationship between a Realm and a SteelConnect Manager. The SteelConnect Manager acts as the controller for a the realm. A newly created realm would not have any organizations, otherwise a realm will have one or more organizations. Each oganization within a realm acts an autonomous network system. In practice, most REST API operations are performed within a specific organization.

You normally access the SteelConnect Manager (SCM) using a web browser.
The URL you use includes the realm and organization that you are managing and takes the form: https://realm.riverbed.cc/admin/Organization.
The Organization is case-sensistive and is also known as the organization short name, as opposed to the longname, which is more descriptive and can include spaces, and other characters.

Authentication:

Note on password security:

The password entered gets stored in the wrapper object in plain text. So if you were to query the object attributes you could easily see the password. This is done for the convienience of not requiring the password to be input or passed everytime an API call is made.

Interactive login:

SteelConnect REST API uses username and password authentication. If a SteelConnection object gets created without a specified username and password, the object will interactively prompt you for your username and password.

>>> import steelconnection
>>> sconnect = steelconnection.SConAPI('REALM.riverbed.cc')
Enter username: admin
Enter password: 
Retype password: 
>>> 
Specifying username and password:

If you prefer to use some other method to obtain the username and password, you can supply those as the time of object creation using the username and password keywaord argumets.
For example, if you want to store your credentials in your system environment variables you could do something similar to the following:

import os
import steelconnection

username = os.environ.get('SCONUSER')
password = os.environ.get('SCONPASSWD')

sconnect = steelconnection.SConAPI('REALM.riverbed.cc', username=username, password=password)

Understanding the API:

The Riverbed SteelConnect REST API allows HTTPS access to the SteelConnect Manager (SCM) via the use of GET, POST, PUT, and DELETE commands. SteelConneciton (this module) acts to simplify coding by providing an object that remembers your realm, version, and authentication and builds the HTTPS requests based on that information. A requests.session object is used to allow a single TCP connection to be re-used for all subsequent API requests.

With SteelConnection, a request to get a list of all organizations in the realm would look like this:

orgs = sconnect.get('orgs')

Without SteelConnection, the same request would look like this:

response = requests.get(
    'https://REALM.riverbed.cc/api/scm.config/1.0/orgs', 
    auth=(username, password)
)
orgs = response.json()['items']
Available Methods:

SteelConneciton provides the .get, .getstatus, .post, .put, and .delete methods to simplify access to the API.
These methods will build the request to include api version, auth, etc, so you onlu need to specify the resource you are interrested in.

  • get: Used for retrieving information about a resource. Expect data to be returned.
  • getstatus: Used for retrieving current status about a resource. Expect data to be returned.
  • post: Create or deploy a new resource. Usually requires additional data in the payload.
  • put: Use to edit or update some existing resource. Requires additional data in the payload.
  • delete: Delete an existing resource.
Two APIs:

Riverbed divides the REST API into two APIs:

By nature, the Reporting API only requires the HTTP GET method, where-as the more commonly used Confg API requires GET, POST, PUT and DELETE. SteelConnections combines the two APIs by implementing .get, .post, .put, and .delete methods to access to Config API and the .getstatus method to access the Reporting API.

For example: Calling .get('/port/' + port) would retireve configuration settings on a port, where-as .getstatus('/port/' + port) would retreive the actual link state, speed, duplex, etc. for that port.

Crafting your API calls:

The Riverbed documentation describes the various REST API calls that can be made.
These take the form: "HTTP Method" "resource path".

Take the network section for example:
https://support.riverbed.com/apis/scm_beta/scm-2.10.0/scm.config/index.html#!/network:

  • GET /networks List networks.
  • GET /org/:orgid/networks Get network for an org.
  • POST /org/:orgid/networks Create network for an org.
  • DELETE /networks/:netid Delete network.
  • GET /networks/:netid Get network.
  • PUT /networks/:netid Update a network.

Within the resource path, you may see a name preceded by a colon :. These are considered variables and must be replaced with an actual value. The /networks/:netid would require the :netid be replaced with the actual network ID for the network you are requesting.

SteelConnection methods mimic the HTTP Methods and accept the short form resource paths.
To update a network, the documentation lists PUT /networks/:netid. With the SteelConnection object, you would call the put method as sconnect.put('/network/' + net_id). Note that the leading / in the resource is optional as the SteelConnection object will insert it if it is missing.

Model Schema (Data Payload):

Post (create) and Put (update) requests require additional data in the form of a payload. This gets sent to the server in the form of JSON data, however the SteelConnection object will accept either JSON data or a native Python dictionary (isinstance(data, dict)). The Riverbed documentation will specify the format of the data as a "Model Schema". Not everything listed in the model schema is required. Generally, you can determine the minimum required data by checking the equivalent function in SteelConnect Manager web GUI.

Retrieving Data:

The SteelConnection methods leverage the popular requests package. Methods calls always return a native Python dictionary, or a list of dictionaries, depending on the API call. The requests.response object will be stored as an attribute of the object (sconnect.response) so the latest response is always easily accessible. By providing the full requests.response object you are free to check status and see all headers.

For example, the 'get orgs' request should always provide a list of orgs within the realm, so we can directly assign the result as a native Python list.
list_of_all_orgs = sconnect.get('orgs')

Here are the rules to determine what gets returned by an API request:

  • If response.json() is True and the 'items' key exists, then return a python list of response.json()['items'].
  • If response.json() is True and the 'items' key does not exist, then return a python dictionary.
  • If response.json() is False, return an empty python dictionary.
Binary Data:

In the event an API call returns binary data, as is the case with "GET /node/:nodeid/get_image", the return value of the call will include a message on how to access the binary data. You can access it directly through the object's '.response.content' attribute, or by calling the '.savefile(filename)' method, which will save the binary data to a file.

Errors and Exceptions:

The Zen of Python states:

Errors should never pass silently.
Unless explicitly silenced.

With this in mind, all API calls should complete without error. Any call to the REST API that fails will result something other than a 200-level response. By default, SteelConnection will flag these as failures and raise a steelconnection.SConError. Exception handling should therefore attempt to catch the steelconnection.SConError exception:

try:
    sconnect.put(f'node/{node_id}', data={'location': 'LAB'})
except steelconnection.SConError as e:
    handle_exception(e)

Alternatively, to avoid the need for writing try/except blocks in your code, if you simply want to print the exception and exit everytime, you can set the sconnect.exit_on_error = True anytime after creating your object, or set the value at the time of object creation:
sconnect = steelconnection.SConAPI('REALM.riverbed.cc', exit_on_error=True)

Convienience functions:

Object-level Convienience functions:

The SteelConnect Manager stores resources in a database with a uniquie identifier (id). Many API calls require that you know the id number of the resource you are interested in.
SteelConnection provides a collection of lookup functions to look up the resources based on known values. These functions return a tuple of the id and the actual resouce.
Currently these are the available lookup functions:

  • lookup.org(org_short_name)
  • lookup.node(serial)
  • lookup.site(site_name, org_id=org_id)

These functions are accessed directly from the object you created and are specific to the SteelConnect API.

Lookup Organization:

Many REST API calls require that you know the org id of your organization. You can provide the organization short name to the function and it will return the org id and the org object.

>>> org_id, org = sconnect.lookup.org('Spacely')
>>> org_id
'org-Spacely-0a0b1cbadb33f34'
>>> 
Lookup Node:

Similarly, the lookup.node method exists to privide the node id and node when you supply the commonly known appliance serial number.

>>> node_id, node = sconnect.lookup.node('XN00012345ABCDEF')
>>> node_id
'node-56f1968e222ab789'
>>> 
Lookup Site:

The site id can be found in a similar way, but since the same site name, like HQ, could exist in multiple organizations, the org_id is required.

>>> site_id, site = sconnect.lookup.site('Skypad', orgid='org-Spacely-0a501e7f27b2c03e')
>>> site_id
'site-Skypad-884b9071141e4bc0'
>>> 
Module-level Convienience functions:

These functions are accessed directly from the imported module and can be used independently of the SteelConnect API.

Get Input:

get_input(prompt) function works with both Python 2 and Python 3 to get user input.

Get Username:

get_username(prompt) function works with both Python 2 and Python 3 to get username.

Get Password:

get_password(prompt) function works with both Python 2 and Python 3 to get user input. Uses getpass to provide discretion. Requires user to input password to be typed twice for verification.

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

steelconnection-0.8.9.tar.gz (14.8 kB view hashes)

Uploaded Source

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