o
    ÚtBhû  ã                   @   sB   d Z ddlZG dd„ dejƒZG dd„ deƒZG dd„ deƒZdS )	z(Wrappers for protocol buffer enum types.é    Nc                   @   s0   e Zd ZdZdZdZdZdZdZdZ	dZ
d	Zd
S )Ú
HttpMethodaM  
    The HTTP method used to deliver the task.

    Attributes:
      HTTP_METHOD_UNSPECIFIED (int): HTTP method unspecified
      POST (int): HTTP POST
      GET (int): HTTP GET
      HEAD (int): HTTP HEAD
      PUT (int): HTTP PUT
      DELETE (int): HTTP DELETE
      PATCH (int): HTTP PATCH
      OPTIONS (int): HTTP OPTIONS
    r   é   é   é   é   é   é   é   N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚHTTP_METHOD_UNSPECIFIEDÚPOSTÚGETÚHEADÚPUTÚDELETEÚPATCHÚOPTIONS© r   r   úx/var/www/html/riverr-enterprise-integrations-main/venv/lib/python3.10/site-packages/google/cloud/tasks_v2/gapic/enums.pyr      s    r   c                   @   ó   e Zd ZG dd„ dejƒZdS )ÚQueuec                   @   s    e Zd ZdZdZdZdZdZdS )zQueue.StateaJ  
        State of the queue.

        Attributes:
          STATE_UNSPECIFIED (int): Unspecified state.
          RUNNING (int): The queue is running. Tasks can be dispatched.

          If the queue was created using Cloud Tasks and the queue has had no
          activity (method calls or task dispatches) for 30 days, the queue may
          take a few minutes to re-activate. Some method calls may return
          ``NOT_FOUND`` and tasks may not be dispatched for a few minutes until
          the queue has been re-activated.
          PAUSED (int): Tasks are paused by the user. If the queue is paused then Cloud
          Tasks will stop delivering tasks from it, but more tasks can
          still be added to it by the user.
          DISABLED (int): The queue is disabled.

          A queue becomes ``DISABLED`` when
          `queue.yaml <https://cloud.google.com/appengine/docs/python/config/queueref>`__
          or
          `queue.xml <https://cloud.google.com/appengine/docs/standard/java/config/queueref>`__
          is uploaded which does not contain the queue. You cannot directly
          disable a queue.

          When a queue is disabled, tasks can still be added to a queue but the
          tasks are not dispatched.

          To permanently delete this queue and all of its tasks, call
          ``DeleteQueue``.
        r   r   r   r   N)r
   r   r   r   ÚSTATE_UNSPECIFIEDÚRUNNINGÚPAUSEDÚDISABLEDr   r   r   r   ÚState0   s    r   N)r
   r   r   ÚenumÚIntEnumr   r   r   r   r   r   /   ó    r   c                   @   r   )ÚTaskc                   @   s   e Zd ZdZdZdZdZdS )z	Task.Viewaý  
        The view specifies a subset of ``Task`` data.

        When a task is returned in a response, not all information is retrieved
        by default because some data, such as payloads, might be desirable to
        return only when needed because of its large size or because of the
        sensitivity of data that it contains.

        Attributes:
          VIEW_UNSPECIFIED (int): Unspecified. Defaults to BASIC.
          BASIC (int): The basic view omits fields which can be large or can contain sensitive
          data.

          This view does not include the ``body in AppEngineHttpRequest``. Bodies
          are desirable to return only when needed, because they can be large and
          because of the sensitivity of the data that you choose to store in it.
          FULL (int): All information is returned.

          Authorization for ``FULL`` requires ``cloudtasks.tasks.fullView``
          `Google IAM <https://cloud.google.com/iam/>`__ permission on the
          ``Queue`` resource.
        r   r   r   N)r
   r   r   r   ÚVIEW_UNSPECIFIEDÚBASICÚFULLr   r   r   r   ÚViewW   s
    r&   N)r
   r   r   r   r    r&   r   r   r   r   r"   V   r!   r"   )r   r   r    r   Úobjectr   r"   r   r   r   r   Ú<module>   s
   '