Skip to main content

This SDK provides operations for interfacing with the Cohesity Cluster.

Project description

Cohesity Management SDK

License: Apache2 GitHub release (latest by date including pre-releases) PyPI - Downloads Maintenance

Overview

The Cohesity Management SDK provides an easy-to-use language binding to harness the power of Cohesity REST APIs in your python applications.

Table of contents :scroll:

Let's get started :hammer_and_pick:

Installation

Install via pip:

pip install cohesity-management-sdk

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/management-sdk-python.git
cd management-sdk-python
pip install -r requirements.txt
python setup.py install

Upgrade

To upgrade the package:

 pip install cohesity-management-sdk --upgrade

To upgade the package to specific release:

pip install cohesity-management-sdk==1.5.1

Compatibility Matrix

Cluster Version SDK Version
7.0 1.10.1
6.8.1_u1 1.9.2
6.8.1_u1 1.9.1
6.8.1_u1 1.9.0
6.6.0x 1.8.1
6.6x 1.6.0
6.5.1x 1.5.0
6.5.0x 1.4.0
6.4.1x 1.2.0
6.3.1x 1.1.3
6.4x 1.1.1
6.3x 1.1.0

Documentation :books:

Refer Python docs for your cluster version.

How to Use: :mag_right:

This SDK exposes all the functionality provided by Cohesity REST API.

Initializing the Client using username and password:

username = 'Username'
password = 'Password'
domain = 'Domain' #optional
cluster_vip = 'prod-cluster.eng.cohesity.com'
client = CohesityClient(cluster_vip, username, password, domain)
cluster_controller = client.cluster
result = cluster_controller.get_basic_cluster_info()
result_dict =  result.__dict__
print(result_dict['cluster_software_version'])

#OUTPUT
6.4.1_release-20191219_aafe3274

Initializing the Client Using Session Id:

cluster_vip = 'prod-cluster.eng.cohesity.com'
session_id = '<session_id>'
client = CohesityClient(cluster_vip=cluster_vip, session_id = session_id)
cluster_controller = client.cluster
result = cluster_controller.get_basic_cluster_info()
print(result_dict['cluster_software_version'])


#OUTPUT
6.4.1_release-20191219_aafe3274

Initializing the Client Using Api Key:

cluster_vip = 'prod-cluster.eng.cohesity.com'
api_key = '<api_key>'
client = CohesityClient(cluster_vip=cluster_vip, api_key = api_key)
cluster_controller = client.cluster
result = cluster_controller.get_basic_cluster_info()
print(result_dict['cluster_software_version'])


#OUTPUT
6.4.1_release-20191219_aafe3274

Initializing the Client Using Open-Id token:

cluster_vip = 'prod-cluster.eng.cohesity.com'
open_id_token = '<token>'
client = CohesityClient(cluster_vip=cluster_vip, open_id_token = open_id_token)
cluster_controller = client.cluster
result = cluster_controller.get_basic_cluster_info()
print(result_dict['cluster_software_version'])


#OUTPUT
6.4.1_release-20191219_aafe3274

Initializing the Client Using MFA:

username = 'Username'
password = 'Password'
otp_type = 'Email'
otp_code = '123456'
domain = 'Domain' #optional
cluster_vip = 'prod-cluster.eng.cohesity.com'
client = CohesityClient(cluster_vip=cluster_vip, username=username, password=password, domain=domain, otp_type=otp_type, otp_code=otp_code)
cluster_controller = client.cluster
result = cluster_controller.get_basic_cluster_info()
print(result_dict['cluster_software_version'])


#OUTPUT
6.4.1_release-20191219_aafe3274

More sample code to get going: :bulb:

Check out the scripts included under samples for reference.

Contribute :handshake:

Questions or Feedback :raised_hand:

We would love to hear from you. Please send your questions and feedback via Cohesity support portal: https://www.cohesity.com/support/

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

cohesity_management_sdk-1.11.2.tar.gz (1.8 MB view details)

Uploaded Source

File details

Details for the file cohesity_management_sdk-1.11.2.tar.gz.

File metadata

  • Download URL: cohesity_management_sdk-1.11.2.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.1 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.32.3 rfc3986/1.5.0 tqdm/4.28.1 urllib3/1.26.18 CPython/3.10.12

File hashes

Hashes for cohesity_management_sdk-1.11.2.tar.gz
Algorithm Hash digest
SHA256 a8d999936315f72b2200ba6946d422d5ced158905ca19e59c757c2971114a770
MD5 3ead71afc1d209029da6c18e5c09f5fc
BLAKE2b-256 c0a16f5ea1b6ffe5c0826d85d000e0e885fe0ac30937a28b0bf847fa2f7556b5

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