o
    e/                     @   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 )KeyListc                    s2   t t| | d|i| _djdi | j| _dS )a=  
        Initialize the KeyList

        :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.key.KeyList
        :rtype: twilio.rest.api.v2010.account.key.KeyList
        account_sidz!/Accounts/{account_sid}/Keys.jsonN )superr   __init__	_solutionformat_uri)selfversionr	   	__class__r
   T/var/www/html/venv/lib/python3.10/site-packages/twilio/rest/api/v2010/account/key.pyr      s   

zKeyList.__init__Nc                 C   s0   | j ||}| j|d d}| j ||d S )a  
        Streams KeyInstance 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.key.KeyInstance]
        	page_size)r   limit)_versionread_limitspagestream)r   r   r   limitsr   r
   r
   r   r   #   s   zKeyList.streamc                 C   s   t | j||dS )aU  
        Lists KeyInstance 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.key.KeyInstance]
        )r   r   )listr   )r   r   r   r
   r
   r   r   :   s   zKeyList.listc                 C   s6   t |||d}| jjd| j|d}t| j|| jS )a  
        Retrieve a single page of KeyInstance 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 KeyInstance
        :rtype: twilio.rest.api.v2010.account.key.KeyPage
        )	PageTokenr   PageSizeGET)methoduriparams)r   ofr   r   r   KeyPager   )r   
page_tokenpage_numberr   dataresponser
   r
   r   r   L   s   zKeyList.pagec                 C   s"   | j jjd|}t| j || jS )a)  
        Retrieve a specific page of KeyInstance records from the API.
        Request is executed immediately

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

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

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

        :param sid: The unique string that identifies the resource

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

        :returns: Machine friendly representation
        :rtype: str
        z<Twilio.Api.V2010.KeyList>r
   r   r
   r
   r   __repr__      zKeyList.__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 )au  
        Initialize the KeyPage

        :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.key.KeyPage
        :rtype: twilio.rest.api.v2010.account.key.KeyPage
        N)r   r$   r   r   )r   r   r(   solutionr   r
   r   r      s   
zKeyPage.__init__c                 C   s   t | j|| jd dS )z
        Build an instance of KeyInstance

        :param dict payload: Payload response from the API

        :returns: twilio.rest.api.v2010.account.key.KeyInstance
        :rtype: twilio.rest.api.v2010.account.key.KeyInstance
        r	   )r	   )KeyInstancer   r   r   payloadr
   r
   r   get_instance   r6   zKeyPage.get_instancec                 C   r8   )r9   z<Twilio.Api.V2010.KeyPage>r
   r:   r
   r
   r   r;      r<   zKeyPage.__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 )a  
        Initialize the KeyContext

        :param Version version: Version that contains the resource
        :param account_sid: The SID of the Account that created the resource to fetch
        :param sid: The unique string that identifies the resource

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

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

        :param unicode friendly_name: A string to describe the resource

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

        :returns: True if delete succeeds, False otherwise
        :rtype: bool
        DELETErH   )r   deleter   r:   r
   r
   r   rQ      s   zKeyContext.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&KeyContext.__repr__.<locals>.<genexpr>z <Twilio.Api.V2010.KeyContext {}>joinr   itemsr   r   contextr
   r
   r   r;         
zKeyContext.__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 KeyInstance

        :returns: twilio.rest.api.v2010.account.key.KeyInstance
        :rtype: twilio.rest.api.v2010.account.key.KeyInstance
        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KeyInstance.__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: KeyContext for this KeyInstance
        :rtype: twilio.rest.api.v2010.account.key.KeyContext
        Nr	   r1   r0   )rg   r3   r   r   r:   r
   r
   r   _proxy  s   
	zKeyInstance._proxyc                 C   
   | j d S )zb
        :returns: The unique string that identifies the resource
        :rtype: unicode
        r1   rf   r:   r
   r
   r   r1   *     
zKeyInstance.sidc                 C   ri   )zi
        :returns: The string that you assigned to describe the resource
        :rtype: unicode
        rN   rj   r:   r
   r
   r   rN   2  rk   zKeyInstance.friendly_namec                 C   ri   )zt
        :returns: The RFC 2822 date and time in GMT that the resource was created
        :rtype: datetime
        rc   rj   r:   r
   r
   r   rc   :  rk   zKeyInstance.date_createdc                 C   ri   )zy
        :returns: The RFC 2822 date and time in GMT that the resource was last updated
        :rtype: datetime
        rd   rj   r:   r
   r
   r   rd   B  rk   zKeyInstance.date_updatedc                 C   
   | j  S )rG   )rh   rI   r:   r
   r
   r   rI   J     
zKeyInstance.fetchc                 C   s   | j j|dS )rJ   )rN   )rh   rM   )r   rN   r
   r
   r   rM   S  s   	zKeyInstance.updatec                 C   rl   )rO   )rh   rQ   r:   r
   r
   r   rQ   ^  rm   zKeyInstance.deletec                 C   rR   )r9   rS   c                 s   rT   rU   rV   rW   r
   r
   r   r[   n  r\   z'KeyInstance.__repr__.<locals>.<genexpr>z!<Twilio.Api.V2010.KeyInstance {}>r]   r`   r
   r
   r   r;   g  rb   zKeyInstance.__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