o
    e-1                     @   s   d Z ddlmZ ddlmZ ddlmZ ddlmZ ddlm	Z	 ddl
mZ G dd	 d	e	ZG d
d deZG dd deZG dd deZdS )za
This code was generated by
\ / _    _  _|   _  _
 | (_)\/(_)(_|\/| |(/_  v1.0.0
      /       /
    )deserialize)values)InstanceContext)InstanceResource)ListResource)Pagec                       sf   e Zd Z fddZdddZdddZejejejfdd	Zd
d Z	dd Z
dd Zdd Z  ZS )SigningKeyListc                    s2   t t| | d|i| _djdi | j| _dS )ab  
        Initialize the SigningKeyList

        :param Version version: Version that contains the resource
        :param account_sid: A 34 character string that uniquely identifies this resource.

        :returns: twilio.rest.api.v2010.account.signing_key.SigningKeyList
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyList
        account_sidz(/Accounts/{account_sid}/SigningKeys.jsonN )superr   __init__	_solutionformat_uri)selfversionr	   	__class__r
   \/var/www/html/venv/lib/python3.10/site-packages/twilio/rest/api/v2010/account/signing_key.pyr      s   

zSigningKeyList.__init__Nc                 C   s0   | j ||}| j|d d}| j ||d S )a  
        Streams SigningKeyInstance records from the API as a generator stream.
        This operation lazily loads records as efficiently as possible until the limit
        is reached.
        The results are returned as a generator, so this operation is memory efficient.

        :param int limit: Upper limit for the number of records to return. stream()
                          guarantees to never return more than limit.  Default is no limit
        :param int page_size: Number of records to fetch per request, when not set will use
                              the default value of 50 records.  If no page_size is defined
                              but a limit is defined, stream() will attempt to read the
                              limit with the most efficient page size, i.e. min(limit, 1000)

        :returns: Generator that will yield up to limit results
        :rtype: list[twilio.rest.api.v2010.account.signing_key.SigningKeyInstance]
        	page_size)r   limit)_versionread_limitspagestream)r   r   r   limitsr   r
   r
   r   r   #   s   zSigningKeyList.streamc                 C   s   t | j||dS )ak  
        Lists SigningKeyInstance records from the API as a list.
        Unlike stream(), this operation is eager and will load `limit` records into
        memory before returning.

        :param int limit: Upper limit for the number of records to return. list() guarantees
                          never to return more than limit.  Default is no limit
        :param int page_size: Number of records to fetch per request, when not set will use
                              the default value of 50 records.  If no page_size is defined
                              but a limit is defined, list() will attempt to read the limit
                              with the most efficient page size, i.e. min(limit, 1000)

        :returns: Generator that will yield up to limit results
        :rtype: list[twilio.rest.api.v2010.account.signing_key.SigningKeyInstance]
        )r   r   )listr   )r   r   r   r
   r
   r   r   :   s   zSigningKeyList.listc                 C   s6   t |||d}| jjd| j|d}t| j|| jS )a  
        Retrieve a single page of SigningKeyInstance records from the API.
        Request is executed immediately

        :param str page_token: PageToken provided by the API
        :param int page_number: Page Number, this value is simply for client state
        :param int page_size: Number of records to return, defaults to 50

        :returns: Page of SigningKeyInstance
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyPage
        )	PageTokenr   PageSizeGET)methoduriparams)r   ofr   r   r   SigningKeyPager   )r   
page_tokenpage_numberr   dataresponser
   r
   r   r   L   s   zSigningKeyList.pagec                 C   s"   | j jjd|}t| j || jS )aF  
        Retrieve a specific page of SigningKeyInstance records from the API.
        Request is executed immediately

        :param str target_url: API-generated URL for the requested results page

        :returns: Page of SigningKeyInstance
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyPage
        r   )r   domaintwiliorequestr$   r   )r   
target_urlr(   r
   r
   r   get_page_   s
   

zSigningKeyList.get_pagec                 C      t | j| jd |dS z
        Constructs a SigningKeyContext

        :param sid: The sid

        :returns: twilio.rest.api.v2010.account.signing_key.SigningKeyContext
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyContext
        r	   r	   sidSigningKeyContextr   r   r   r1   r
   r
   r   getp      	zSigningKeyList.getc                 C   r.   r/   r2   r4   r
   r
   r   __call__{   r6   zSigningKeyList.__call__c                 C      dS )z
        Provide a friendly representation

        :returns: Machine friendly representation
        :rtype: str
        z!<Twilio.Api.V2010.SigningKeyList>r
   r   r
   r
   r   __repr__      zSigningKeyList.__repr__)NN)__name__
__module____qualname__r   r   r   r   unsetr   r-   r5   r7   r;   __classcell__r
   r
   r   r   r      s    


r   c                       s,   e Zd Z fddZdd Zdd Z  ZS )r$   c                    s   t t| || || _dS )a  
        Initialize the SigningKeyPage

        :param Version version: Version that contains the resource
        :param Response response: Response from the API
        :param account_sid: A 34 character string that uniquely identifies this resource.

        :returns: twilio.rest.api.v2010.account.signing_key.SigningKeyPage
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyPage
        N)r   r$   r   r   )r   r   r(   solutionr   r
   r   r      s   
zSigningKeyPage.__init__c                 C   s   t | j|| jd dS )a  
        Build an instance of SigningKeyInstance

        :param dict payload: Payload response from the API

        :returns: twilio.rest.api.v2010.account.signing_key.SigningKeyInstance
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyInstance
        r	   )r	   )SigningKeyInstancer   r   r   payloadr
   r
   r   get_instance   r6   zSigningKeyPage.get_instancec                 C   r8   )r9   z!<Twilio.Api.V2010.SigningKeyPage>r
   r:   r
   r
   r   r;      r<   zSigningKeyPage.__repr__)r=   r>   r?   r   rF   r;   rA   r
   r
   r   r   r$      s    r$   c                       sB   e Zd Z fddZdd ZejfddZdd Zd	d
 Z	  Z
S )r3   c                    s4   t t| | ||d| _djdi | j| _dS )aY  
        Initialize the SigningKeyContext

        :param Version version: Version that contains the resource
        :param account_sid: The account_sid
        :param sid: The sid

        :returns: twilio.rest.api.v2010.account.signing_key.SigningKeyContext
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyContext
        r0   z./Accounts/{account_sid}/SigningKeys/{sid}.jsonNr
   )r   r3   r   r   r   r   )r   r   r	   r1   r   r
   r   r      s   zSigningKeyContext.__init__c                 C   s0   | j jd| jd}t| j || jd | jd dS )
        Fetch the SigningKeyInstance

        :returns: The fetched SigningKeyInstance
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyInstance
        r   r    r!   r	   r1   r0   )r   fetchr   rC   r   rD   r
   r
   r   rI      s   zSigningKeyContext.fetchc                 C   s@   t d|i}| jjd| j|d}t| j|| jd | jd dS )
        Update the SigningKeyInstance

        :param unicode friendly_name: The friendly_name

        :returns: The updated SigningKeyInstance
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyInstance
        FriendlyNamePOST)r    r!   r'   r	   r1   r0   )r   r#   r   updater   rC   r   )r   friendly_namer'   rE   r
   r
   r   rM      s   	zSigningKeyContext.updatec                 C   s   | j jd| jdS )
        Deletes the SigningKeyInstance

        :returns: True if delete succeeds, False otherwise
        :rtype: bool
        DELETErH   )r   deleter   r:   r
   r
   r   rQ      s   zSigningKeyContext.deletec                 C   $   d dd | j D }d|S )r9    c                 s        | ]\}}d  ||V  qdS z{}={}Nr   .0kvr
   r
   r   	<genexpr>       z-SigningKeyContext.__repr__.<locals>.<genexpr>z'<Twilio.Api.V2010.SigningKeyContext {}>joinr   itemsr   r   contextr
   r
   r   r;         
zSigningKeyContext.__repr__)r=   r>   r?   r   rI   r   r@   rM   rQ   r;   rA   r
   r
   r   r   r3      s    	r3   c                       s   e Zd Zd fdd	Zedd Zedd Zedd	 Zed
d Zedd Z	dd Z
ejfddZdd Zdd Z  ZS )rC   Nc                    sd   t t| | |d|dt|dt|dd| _d| _||p,| jd d| _dS )z
        Initialize the SigningKeyInstance

        :returns: twilio.rest.api.v2010.account.signing_key.SigningKeyInstance
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyInstance
        r1   rN   date_createddate_updated)r1   rN   rc   rd   Nr0   )	r   rC   r   r5   r   rfc2822_datetime_properties_contextr   )r   r   rE   r	   r1   r   r
   r   r     s   zSigningKeyInstance.__init__c                 C   s.   | j du rt| j| jd | jd d| _ | j S )a<  
        Generate an instance context for the instance, the context is capable of
        performing various actions.  All instance actions are proxied to the context

        :returns: SigningKeyContext for this SigningKeyInstance
        :rtype: twilio.rest.api.v2010.account.signing_key.SigningKeyContext
        Nr	   r1   r0   )rg   r3   r   r   r:   r
   r
   r   _proxy  s   
	zSigningKeyInstance._proxyc                 C   
   | j d S )z;
        :returns: The sid
        :rtype: unicode
        r1   rf   r:   r
   r
   r   r1   *     
zSigningKeyInstance.sidc                 C   ri   )zE
        :returns: The friendly_name
        :rtype: unicode
        rN   rj   r:   r
   r
   r   rN   2  rk   z SigningKeyInstance.friendly_namec                 C   ri   )zE
        :returns: The date_created
        :rtype: datetime
        rc   rj   r:   r
   r
   r   rc   :  rk   zSigningKeyInstance.date_createdc                 C   ri   )zE
        :returns: The date_updated
        :rtype: datetime
        rd   rj   r:   r
   r
   r   rd   B  rk   zSigningKeyInstance.date_updatedc                 C   
   | j  S )rG   )rh   rI   r:   r
   r
   r   rI   J     
zSigningKeyInstance.fetchc                 C   s   | j j|dS )rJ   )rN   )rh   rM   )r   rN   r
   r
   r   rM   S  s   	zSigningKeyInstance.updatec                 C   rl   )rO   )rh   rQ   r:   r
   r
   r   rQ   ^  rm   zSigningKeyInstance.deletec                 C   rR   )r9   rS   c                 s   rT   rU   rV   rW   r
   r
   r   r[   n  r\   z.SigningKeyInstance.__repr__.<locals>.<genexpr>z(<Twilio.Api.V2010.SigningKeyInstance {}>r]   r`   r
   r
   r   r;   g  rb   zSigningKeyInstance.__repr__)N)r=   r>   r?   r   propertyrh   r1   rN   rc   rd   rI   r   r@   rM   rQ   r;   rA   r
   r
   r   r   rC     s     




		rC   N)__doc__twilio.baser   r   twilio.base.instance_contextr   twilio.base.instance_resourcer   twilio.base.list_resourcer   twilio.base.pager   r   r$   r3   rC   r
   r
   r
   r   <module>   s   'K