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)
def create_key(self, **params): return Key.create(self, **params)
def create_key(self, **params): return Key.create(self.api, device=self.id, **params)