All Projects → NetApp → ontap-rest-python

NetApp / ontap-rest-python

Licence: BSD-3-Clause License
This repository contains sample code illustrating how to access the ONTAP REST API using Python. This Repository also contains ONTAPI Usage reporting code that helps to identify ONTAPI usage in your environment using ONTAP REST APIs.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to ontap-rest-python

netapp-cdot-nagios
Nagios-Checks for monitoring NetApp cDOT-Systems via NetApp Perl API
Stars: ✭ 40 (-2.44%)
Mutual labels:  netapp, netapp-ontap-cluster
ont-api
ONT-API (OWL-API over Apache Jena)
Stars: ✭ 20 (-51.22%)
Mutual labels:  ontapi
ont-api
ONT-API (OWL-API over Apache Jena)
Stars: ✭ 31 (-24.39%)
Mutual labels:  ontapi
nextjs-lesson-hp
Nextjs + Tailwind CSS + Django REST Framework で学ぶモダンReact開発 / Project 1 🚀
Stars: ✭ 30 (-26.83%)
Mutual labels:  restapi
netapp-dataops-toolkit
The NetApp DataOps Toolkit is a Python library that makes it simple for developers, data scientists, DevOps engineers, and data engineers to perform various data management tasks, such as near-instantaneously provisioning, cloning, or snapshotting a data volume or JupyterLab workspace.
Stars: ✭ 38 (-7.32%)
Mutual labels:  netapp-public
sandstone-edition
Build a Real-time RestApi.
Stars: ✭ 17 (-58.54%)
Mutual labels:  restapi
godzilla
a powerful go web framework
Stars: ✭ 22 (-46.34%)
Mutual labels:  restapi
express-typeorm-rest-boilerplate
Boilerplate code to get started with building RESTful API Services (Express, TypeORM MongoDB stack)
Stars: ✭ 53 (+29.27%)
Mutual labels:  restapi
eseries-perf-analyzer
This project provides an automated installation and deployment of Grafana, NetApp E-Series Web Services, and supporting software for performance monitoring of NetApp E-Series Storage Systems.
Stars: ✭ 19 (-53.66%)
Mutual labels:  netapp-public
go-iris-mv
No description or website provided.
Stars: ✭ 21 (-48.78%)
Mutual labels:  restapi
nextjs-woocommerce-restapi
A React WooCommerce Project Example With REST API
Stars: ✭ 168 (+309.76%)
Mutual labels:  restapi
AI-Image-classifiers-on-Django-with-RESTAPI
A Keras deep learning image classifiers on Django server with REST API | Django 图片识别平台
Stars: ✭ 28 (-31.71%)
Mutual labels:  restapi
solidfire-sdk-python
SolidFire SDK for Python
Stars: ✭ 15 (-63.41%)
Mutual labels:  netapp-public
NasdaqCloudDataService-SDK-Java
Nasdaq Data Link provides a modern and efficient method of delivery for real-time exchange data and other financial information. This repository provides a Java SDK for developing applications using Nasdaq Data Link's real-time data.
Stars: ✭ 70 (+70.73%)
Mutual labels:  restapi
beegfs-csi-driver
The BeeGFS Container Storage Interface (CSI) driver provides high performing and scalable storage for workloads running in Kubernetes.
Stars: ✭ 32 (-21.95%)
Mutual labels:  netapp-public
grapevine
Fast, unopinionated, embeddable, minimalist web framework for .NET
Stars: ✭ 72 (+75.61%)
Mutual labels:  restapi
typescript-express-rest-api
This template will help you to build your own Node.js Express Mongodb API in TypeScript.
Stars: ✭ 42 (+2.44%)
Mutual labels:  restapi
REST-Api-with-Slim-PHP
REST API with PHP Slim Framework 3 and MySQL
Stars: ✭ 69 (+68.29%)
Mutual labels:  restapi
mssql-restapi
A simple REST API for SQL Server, Azure SQL DB and Azure SQL DW using SMO on .NET Core 2.0
Stars: ✭ 33 (-19.51%)
Mutual labels:  restapi
rest-api-node-typescript
This is a simple REST API with node and express with typescript
Stars: ✭ 154 (+275.61%)
Mutual labels:  restapi

ONTAP-REST-Python Examples

NetApp® ONTAP® 9.6 and later versions include support for an expansive RESTful web services API. In comparison to an ONTAPI® application, the REST API offers a vastly simplified and workflow-driven user experience, allowing you to perform multiple operations on the storage objects with a single API. REST is the industry standard for API development and the ONTAP REST API provides a great opportunity to automate your storage deployments.

This repository contains sample scripts illustrating how to use the ONTAP REST API. You can access the API through the Python client library, which is preferable in most situations. If needed, you can also connect directly to the API using the native capabilities provided with Python. See the repository folder examples with two subfolders containing sample code by usage type. Also see the folder lod for instructions on using the NetApp Lab on Demand (LOD) to run the sample scripts.

Using the Python client library

The Python client library is a package you can use when writing scripts to access the ONTAP REST API. It provides support for several underlying services, including connection management, asynchronous request processing, and exception handling. By using the Python client library, you can quickly develop robust code to support the automation of your ONTAP deployments.

Before beginning, you need to install the package containing the library. For example:

pip install netapp-ontap

You should also review the PyPI netapp-ontap package web page for detailed system requirements and further instructions, as well as reference documentation for the library.

The repository folder examples/python_client_library contains sample scripts to access the ONTAP REST API through the Python client library. You need to run each of the scripts with the appropriate parameters. Use the help provided with each script to get started. For example:

python3 list_volume.py -h

Directly accessing the ONTAP REST API

The repository folder examples/rest_api contains sample scripts to directly access the ONTAP REST API using the requests library. You need to run each of the scripts with the appropriate parameters. Use the help provided with each script to get started. For example:

python3 create_volume.py -h

Running the sample scripts in the Lab on Demand

You can run the sample scripts in the NetApp Lab on Demand (LOD). The repository folder lod contains instructions as well as the initialization script needed to configure the LOD environment.

Support

Report any issues to: https://github.com/NetApp/ontap-rest-api/issues. For any questions or concerns, send an email to: [email protected], post on the community forums or connect with us through Slack.

To learn more about ONTAP REST APIs, visit https://devnet.netapp.com/restapi.php

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].