Metadata-Version: 1.0
Name: gyun-cli
Version: 1.2
Summary: Command Line Interface for GYUN.
Home-page: http://docs.qc.gyun.com
Author: GYUN Team
Author-email: service@gomeholdings.com
License: UNKNOWN
Description: ===============
        GYUN CLI 
        ===============
        
        gyun-cli is the command line interface for managing GYUN resources,
        with it you can check, create, delete and operate all your resources,
        it supports Linux, Mac and Windows for now.
        
        This CLI is licensed under
        `Apache Licence, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0.html>`_.
          
        .. note::
          Requires Python 2.6 or higher, for more information please see
          `GYUN CLI Documentation <http://docs.qc.gyun.com/cli/>`_
          
        
        -------------
        Installation
        -------------
        
        Install via `pip <http://www.pip-installer.org>`_ ::
        
            $ pip install gyun-cli
        
        If not installed in ``virtualenv``, maybe ``sudo`` is needed ::
        
            $ sudo pip install gyun-cli
        
        Upgrade to the latest version ::
        
            $ pip install --upgrade gyun-cli
        
        
        --------------------
        Command Completion
        --------------------
        
        gyun-cli has auto-completion (only support Linux and Mac).
        
        If auto-completion doesn't take effect, please activate it manually.::
        
          $ source ~/.bash_profile
        
        If still doesn't work, please input::
        
          $ complete -C gyun_completer gyun
        
        and add this command into your login shell (such as ``~/.bash_profile``).
        
        -----------------
        Getting Started
        -----------------
        
        To use gyun-cli, there must be a configuration file to configure your own
        ``qy_access_key_id`` , ``qy_secret_access_key`` and ``zone`` , such as::
        
          qy_access_key_id: 'GYUNACCESSKEYID'
          qy_secret_access_key: 'GYUNSECRETACCESSKEYEXAMPLE'
          zone: 'pek1'
        
        access key can be applied for in `GYUN Console <http://console.qc.gyun.com/access_keys/>`_.
        zone is the Node ID where your resources are,
        and it can be checked in the switching node on the console,
        such as ``pek1``, ``pek2``, ``gd1``, ``ap1`` .
        
        The configuration file is saved in ``~/.gyun/config.yaml`` by default,
        it also can be assigned by the parameter ``-f /path/to/config``
        when executing the command.
        
        
        ----------------
        Input Parameters
        ----------------
        
        For iaas service, the parameters of gyun-cli only include ``int`` and ``string`` type.
        If the parameters support the list passing,
        the values shall be separated by *English comma* . For example::
        
          gyun iaas describe-keypairs -k 'kp-bn2n77ow, kp-b2ivaf15' -L 2
        
        Sometimes, the parameter needs to be string in JSON format, such as::
        
          gyun iaas add-router-statics -r rtr-ba2nbge6 -s '[{"static_type":1,"val1":"80","val2":"192.168.99.2","val3":"8000"}]'
        
        For qs service, the parameters include ``int``, ``string`` and ``list`` type.
        If the parameters support the list passing,
        the values shall be separated by *spaces*. For example::
        
          gyun qs set-bucket-acl -b mybucket -A QS_ACL_EVERYONE,READ usr-wmTc0avW,FULL_CONTROL
        
        
        --------------
        Command Output
        --------------
        
        The returned result of Command is in JSON format.
        For example, the returned result of describe-keypair of 'iaas' service.::
        
          {
            "action":"DescribeKeyPairsResponse",
            "total_count":2,
            "keypair_set":[
              {
                "description":null,
                "encrypt_method":"ssh-rsa",
                "keypair_name":"kp 1",
                "instance_ids":[
                  "i-ogbndull"
                ],
                "create_time":"2013-08-30T05:13:50Z",
                "keypair_id":"kp-bn2n77ow",
                "pub_key":"AAAAB3..."
              },
              {
                "description":null,
                "encrypt_method":"ssh-rsa",
                "keypair_name":"kp 2",
                "create_time":"2013-08-31T05:13:50Z",
                "keypair_id":"kp-b2ivaf15",
                "pub_key":"AAAAB3..."
              }
            ],
            "ret_code":0
          }
        
        The returned result of list-objects of 'qs' service.::
        
          {
            "name": "mybucket",
            "keys": [
              {
                "key": "myphoto.jpg",
                "size": 67540,
                "modified": 1456226022,
                "mime_type": "image/jpeg",
                "created": "2016-02-23T11:13:42.000Z"
              },
              {
                "key": "mynote.txt",
                "size": 11,
                "modified": 1456298679,
                "mime_type": "text/plain",
                "created": "2016-02-24T06:49:23.000Z"
              }
            ],
            "prefix": "",
            "owner": "gyun",
            "delimiter": "",
            "limit": 20,
            "marker": "mynote.txt",
            "common_prefixes": []
          }
        
Keywords: gyun iaas gomestor cli
Platform: UNKNOWN
