Metadata-Version: 2.1
Name: cohesity-management-sdk
Version: 1.5.0
Summary: This SDK provides operations for interfacing with the Cohesity Cluster.
Home-page: https://github.com/cohesity/management-sdk-python
Author: Cohesity Inc.
Author-email: cohesity-api-sdks@cohesity.com
License: UNKNOWN
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.
        
        Install
        -------
        
        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 <https://pip.pypa.io/en/stable/>`__. 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
        
        How to Use:
        -----------
        
        This SDK exposes all the functionality provided by *Cohesity REST API*.
        
        Initializing the Client:
        
        ::
        
            username = 'Username'
            password = 'Password'
            domain = 'Domain' #optional
            cluster_vip = 'prod-cluster.eng.cohesity.com'
            client = CohesityClient(cluster_vip, username, password, domain)
        
        You can perform a wide range of operations such as:
        
        -  Retrieve *Cohesity Cluster* details
        -  List protection sources
        -  List the protection jobs
        -  Resolve alerts
        -  vCenter workflows
        -  AWS boto3 object store workflows
        
        And much more, check out the scripts included under
        ``cohesity_management_sdk/samples`` for reference.
        
        Upgrade
        -------
        
        To upgrade the package:
        
        ::
        
             pip install cohesity-management-sdk --upgrade
        
        To upgade the package to specific release:
        
        ::
        
            pip install cohesity-management-sdk==1.4.0
        
        Questions or Feedback :
        -----------------------
        
        We would love to hear from you. Please send your questions and feedback
        to: *cohesity-api-sdks@cohesity.com*
        
        .. |License: Apache2| image:: https://img.shields.io/hexpm/l/plug.svg
           :target: https://github.com/cohesity/management-sdk-python/blob/master/LICENSE
        .. |GitHub release (latest by date including pre-releases)| image:: https://img.shields.io/github/v/release/cohesity/management-sdk-python?include_prereleases
        .. |PyPI - Downloads| image:: https://img.shields.io/pypi/dm/cohesity_management_sdk
        .. |Maintenance| image:: https://img.shields.io/maintenance/yes/2020
        
Platform: UNKNOWN
Description-Content-Type: text/x-rst
