Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
knock-twilio / twilio / rest / resources / ip_messaging / credentials.py
Size: Mime:
from twilio.rest.resources import NextGenInstanceResource, NextGenListResource


class Credential(NextGenInstanceResource):

    def update(self, credential_type, **kwargs):
        """
        Updates this Credential instance
        :param sid: Credential instance identifier
        :param credential_type: Credential type
        :param friendly_name: Credential's friendly name
        :param certificate: Credential's certificate
        :param private_key: Credential's Private key
        :param sandbox: Credential's Sandbox
        :param api_key: Credential's Api Key
        :return: Updated instance
        """
        kwargs['type'] = credential_type
        return self.update_instance(**kwargs)

    def delete(self):
        """
        Delete this credential
        """
        return self.delete_instance()


class Credentials(NextGenListResource):

    name = "Credentials"
    instance = Credential

    def list(self, **kwargs):
        """
        Returns a page of :class:`Credential` resources as a list.
        For paging information see :class:`ListResource`.

        **NOTE**: Due to the potentially voluminous amount of data in an
        alert, the full HTTP request and response data is only returned
        in the Credential instance resource representation.

        :param date after: Only list alerts logged after this datetime
        :param date before: Only list alerts logger before this datetime
        :param log_level: If 'error', only shows errors. If 'warning',
         only show warnings
        """
        return self.get_instances(kwargs)

    def create(self, credential_type, **kwargs):
        """
        Make a phone call to a number.

        :param str credential_type: The type of credential
        :param str friendly_name: The friendly name of the credential.

        :return: A :class:`Credential` object
        """
        kwargs["type"] = credential_type
        return self.create_instance(kwargs)

    def delete(self, sid):
        """
        Delete a given Credential
        """
        return self.delete_instance(sid)

    def update(self, sid, credential_type, **kwargs):
        """
        Updates the Credential instance identified by sid
        :param sid: Credential instance identifier
        :param credential_type: Credential type
        :param friendly_name: Credential's friendly name
        :param certificate: Credential's certificate
        :param private_key: Credential's Private key
        :param sandbox: Credential's Sandbox
        :param api_key: Credential's Api Key
        :return: Updated instance
        """
        kwargs['type'] = credential_type
        return self.update_instance(sid, kwargs)