Metadata-Version: 2.1
Name: akamaiproperty
Version: 2.2
Summary: A Pip Package for Akamai Property
Home-page: https://github.com/Achuthananda/AkamaiPropertyManager
Author: Achuthananda M P
Author-email: achuthadivine@gmail.com
License: UNKNOWN
Description: # Python SDK for Akamai Property Manager
        A Python SDK of Akamai Property Manager.
        The advantage of SDK is application developers need not know about the PAPI calls and their usage. Application developers can just focus on getting their work done on Property Manager configs programmatically using the objects of AkamaiProperty.
        
        
        ### Credentials
        In order to use this configuration, you need to:
        * Set up your credential files as described in the [authorization](https://developer.akamai.com/introduction/Prov_Creds.html) and [credentials](https://developer.akamai.com/introduction/Conf_Client.html) sections of the getting started guide on developer.akamai.com.  
        * When working through this process you need to give grants for the property manager API and the User Admin API (if you will want to move properties).  The section in your configuration file should be called 'papi'.
        
        ## Overview
        The advantage of Akamai Property class is application developers need not know about the PAPI calls and their usage. Application developers can just focus on getting their work done on Property Manager configs programmatically using the objects of AkamaiProperty.
        
        
        ### Install pip package available
        ```
        $ pip install akamaiproperty
        ```
        
        ## Instantiate the object.
        ```
        >>> from akamaiproperty import AkamaiProperty
        >>> myProperty = AkamaiProperty("/Users/apadmana/.edgerc","test_bulkseach_update_1","<accountSwitchKey>")
        >>> myProperty = AkamaiProperty("/Users/apadmana/.edgerc","test_bulkseach_update_1")
        ```
        
        ## Print Basic Information
        ```
        >>> myProperty.printPropertyInfo()
        Property Name: test_bulkseach_update_1
        Contract Id: ctr_C-1IE2OHM
        Group Id: grp_163363
        Active Staging Version: 18
        Active Production Version: 18
        ```
        ## Create a new version
        ```
        >>> myProperty.createVersion(18)
        '78'
        ```
        
        ## Get rule Tree
        ```
        >>>myProperty.getRuleTree(18)
        {'accountId': 'act_B-C-1IE2OH8', 'contractId': 'ctr_C-1IE2OHM', 'groupId': 'grp_163363', 'propertyId': 'prp_605086', 'propertyName': 'test_bulkseach_update_1', 'propertyVersion': 18, 'etag': 'd0d28a6b71e665144955f7f7e1ff214933d119d7', 'rules':.....}
        ```
        
        ## Activate the config
        ```
        >>>myProperty.activateStaging(18,"testing activation",["apadmana@akamai.com"])
        True
        ```
        
Keywords: Akamai Property CDN AkamaiConfigs Edge
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
