
    BfI                     ,    d Z  G d de          Zd ZdS )a  Client options class.

Client options provide a consistent interface for user options to be defined
across clients.

You can pass a client options object to a client.

.. code-block:: python

    from google.api_core.client_options import ClientOptions
    from google.cloud.vision_v1 import ImageAnnotatorClient

    def get_client_cert():
        # code to load client certificate and private key.
        return client_cert_bytes, client_private_key_bytes

    options = ClientOptions(api_endpoint="foo.googleapis.com",
        client_cert_source=get_client_cert)

    client = ImageAnnotatorClient(client_options=options)

You can also pass a mapping object.

.. code-block:: python

    from google.cloud.vision_v1 import ImageAnnotatorClient

    client = ImageAnnotatorClient(
        client_options={
            "api_endpoint": "foo.googleapis.com",
            "client_cert_source" : get_client_cert
        })


c                   2    e Zd ZdZ	 	 	 	 	 	 	 	 	 ddZd ZdS )ClientOptionsa  Client Options used to set options on clients.

    Args:
        api_endpoint (Optional[str]): The desired API endpoint, e.g.,
            compute.googleapis.com
        client_cert_source (Optional[Callable[[], (bytes, bytes)]]): A callback
            which returns client certificate bytes and private key bytes both in
            PEM format. ``client_cert_source`` and ``client_encrypted_cert_source``
            are mutually exclusive.
        client_encrypted_cert_source (Optional[Callable[[], (str, str, bytes)]]):
            A callback which returns client certificate file path, encrypted
            private key file path, and the passphrase bytes.``client_cert_source``
            and ``client_encrypted_cert_source`` are mutually exclusive.
        quota_project_id (Optional[str]): A project name that a client's
            quota belongs to.
        credentials_file (Optional[str]): A path to a file storing credentials.
            ``credentials_file` and ``api_key`` are mutually exclusive.
        scopes (Optional[Sequence[str]]): OAuth access token override scopes.
        api_key (Optional[str]): Google API key. ``credentials_file`` and
            ``api_key`` are mutually exclusive.
        api_audience (Optional[str]): The intended audience for the API calls
            to the service that will be set when using certain 3rd party
            authentication flows. Audience is typically a resource identifier.
            If not set, the service endpoint value will be used as a default.
            An example of a valid ``api_audience`` is: "https://language.googleapis.com".
        universe_domain (Optional[str]): The desired universe domain. This must match
            the one in credentials. If not set, the default universe domain is
            `googleapis.com`. If both `api_endpoint` and `universe_domain` are set,
            then `api_endpoint` is used as the service endpoint. If `api_endpoint` is
            not specified, the format will be `{service}.{universe_domain}`.

    Raises:
        ValueError: If both ``client_cert_source`` and ``client_encrypted_cert_source``
            are provided, or both ``credentials_file`` and ``api_key`` are provided.
    Nc
                     |r|rt          d          |r|rt          d          || _        || _        || _        || _        || _        || _        || _        || _        |	| _	        d S )NzJclient_cert_source and client_encrypted_cert_source are mutually exclusivez3api_key and credentials_file are mutually exclusive)

ValueErrorapi_endpointclient_cert_sourceclient_encrypted_cert_sourcequota_project_idcredentials_filescopesapi_keyapi_audienceuniverse_domain)
selfr   r   r   r	   r
   r   r   r   r   s
             m/home/panchajanya/Development/work/volatility3/lib/python3.11/site-packages/google/api_core/client_options.py__init__zClientOptions.__init__Y   s      	"> 	\    	T' 	TRSSS("4,H) 0 0(.    c                 0    dt          | j                  z   S )NzClientOptions: )repr__dict__)r   s    r   __repr__zClientOptions.__repr__u   s     4#6#666r   )	NNNNNNNNN)__name__
__module____qualname____doc__r   r    r   r   r   r   4   s_        " "L %)/ / / /87 7 7 7 7r   r   c                     t                      }|                                 D ];\  }}t          ||          rt          |||           't	          d|z   dz             |S )zConstruct a client options object from a mapping object.

    Args:
        options (collections.abc.Mapping): A mapping object with client options.
            See the docstring for ClientOptions for details on valid arguments.
    z)ClientOptions does not accept an option '')r   itemshasattrsetattrr   )optionsclient_optionskeyvalues       r   	from_dictr%   y   sr     #__Nmmoo V V
U>3'' 	VNC////H3NQTTUUUr   N)r   objectr   r%   r   r   r   <module>r'      s\   " "JB7 B7 B7 B7 B7F B7 B7 B7J    r   