示例#1
0
    def create_key(self, **params):
        """ Method for `Create Key <https://m2x.att.com/developer/documentation/v2/keys#Create-Key>`_ endpoint.

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

        :return: The newly created Key
        :rtype: Key

        :raises: :class:`~requests.exceptions.HTTPError` if an error occurs when sending the HTTP request
        """
        return Key.create(self, **params)
示例#2
0
 def create_key(self, **params):
     return Key.create(self, **params)
示例#3
0
 def create_key(self, **params):
     return Key.create(self.api, device=self.id, **params)
示例#4
0
 def create_key(self, **params):
     return Key.create(self, **params)