コード例 #1
0
ファイル: devices.py プロジェクト: attm2x/m2x-python
    def keys(self):
        """ Lists Keys associated with this device via the
            `List Keys <https://m2x.att.com/developer/documentation/v2/keys#List-Keys>`_ endpoint.

        :return: List of API keys associated with this device as :class:`.Key` objects
        :rtype: `list <https://docs.python.org/2/library/functions.html#list>`_

        :raises: :class:`~requests.exceptions.HTTPError` if an error occurs when sending the HTTP request
        """
        return Key.list(self.api, device=self.id)
コード例 #2
0
ファイル: devices.py プロジェクト: mfreed420/m2x-python
    def keys(self):
        """ Lists Keys associated with this device via the
            `List Keys <https://m2x.att.com/developer/documentation/v2/keys#List-Keys>`_ endpoint.

        :return: List of API keys associated with this device as :class:`.Key` objects
        :rtype: `list <https://docs.python.org/2/library/functions.html#list>`_

        :raises: :class:`~requests.exceptions.HTTPError` if an error occurs when sending the HTTP request
        """
        return Key.list(self.api, device=self.id)
コード例 #3
0
ファイル: api.py プロジェクト: mfreed420/m2x-python
    def keys(self, **params):
        """ Method for `List Keys <https://m2x.att.com/developer/documentation/v2/keys#List-Keys>`_ endpoint.

        :param params: Query parameters passed as keyword arguments. View M2X API Docs for listing of available parameters.

        :return: List of :class:`.Key` objects
        :rtype: `list <https://docs.python.org/2/library/functions.html#list>`_

        :raises: :class:`~requests.exceptions.HTTPError` if an error occurs when sending the HTTP request
        """
        return Key.list(self, **params)
コード例 #4
0
 def keys(self):
     return Key.list(self.api, device=self.id)
コード例 #5
0
ファイル: api.py プロジェクト: solversa/m2x-python
 def keys(self, **params):
     return Key.list(self, **params)
コード例 #6
0
ファイル: api.py プロジェクト: arundhaj/m2x-python
 def keys(self, **params):
     return Key.list(self, **params)