The Cohesity SDK provides an easy-to-use language binding to harness the power of Cohesity REST APIs in your python applications.
- Getting Started
- Version Matrix
- How to use
- More samples
- How can you contribute
- Suggestions and Feedback
Install from source:
The generated code uses Python packages named requests, jsonpickle and dateutil. You can resolve these dependencies using pip. This SDK uses the Requests library and will work for Python 2 >=2.7.9 and Python 3 >=3.4.
git clone https://github.com/cohesity/cohesity_sdk.git
cd cohesity_sdk
pip install -r requirements.txt
python setup.py install
Cluster-SDK support Matrix
Cluster Version | SDK version |
---|---|
6.6.0d_ent(V2) | 1.1.0 |
6.8.1(V2) | 1.2.0 |
This SDK exposes all the functionality provided by Cohesity REST API.
Initializing the Client:
# Cluster client Initialization
from cohesity_sdk.cluster.cluster_client import ClusterClient
cluster_vip = 'prod-cluster.eng.cohesity.com'
username = 'admin'
password = 'admin'
domain = "LOCAL"
client = ClusterClient(
cluster_vip=cluster_vip, username=username, password=password, domain=domain)
print(client.platform.get_cluster().sw_version)
#OUTPUT
6.6.0d_ent_release-20220621_a04bcd28
Check out the scripts included under samples
for reference.
We would love to hear from you. Please send your questions and feedback to: support@cohesity.com