+
    8i                    ^    R t ^ RIHt ^ RIHtHtHt  ! R R4      t ! R R4      tR R lt	R	# )
a
  Support for MongoDB Stable API.

.. _versioned-api-ref:

MongoDB Stable API
=====================

Starting in MongoDB 5.0, applications can specify the server API version
to use when creating a :class:`~pymongo.mongo_client.MongoClient`. Doing so
ensures that the driver behaves in a manner compatible with that server API
version, regardless of the server's actual release version.

Declaring an API Version
````````````````````````

.. attention:: Stable API requires MongoDB >=5.0.

To configure MongoDB Stable API, pass the ``server_api`` keyword option to
:class:`~pymongo.mongo_client.MongoClient`::

    >>> from pymongo.mongo_client import MongoClient
    >>> from pymongo.server_api import ServerApi
    >>>
    >>> # Declare API version "1" for MongoClient "client"
    >>> server_api = ServerApi('1')
    >>> client = MongoClient(server_api=server_api)

The declared API version is applied to all commands run through ``client``,
including those sent through the generic
:meth:`~pymongo.database.Database.command` helper.

.. note:: Declaring an API version on the
   :class:`~pymongo.mongo_client.MongoClient` **and** specifying stable
   API options in :meth:`~pymongo.database.Database.command` command document
   is not supported and will lead to undefined behaviour.

To run any command without declaring a server API version or using a different
API version, create a separate :class:`~pymongo.mongo_client.MongoClient`
instance.

Strict Mode
```````````

Configuring ``strict`` mode will cause the MongoDB server to reject all
commands that are not part of the declared :attr:`ServerApi.version`. This
includes command options and aggregation pipeline stages.

For example::

    >>> server_api = ServerApi('1', strict=True)
    >>> client = MongoClient(server_api=server_api)
    >>> client.test.command('count', 'test')
    Traceback (most recent call last):
    ...
    pymongo.errors.OperationFailure: Provided apiStrict:true, but the command count is not in API Version 1, full error: {'ok': 0.0, 'errmsg': 'Provided apiStrict:true, but the command count is not in API Version 1', 'code': 323, 'codeName': 'APIStrictError'

Detecting API Deprecations
``````````````````````````

The ``deprecationErrors`` option can be used to enable command failures
when using functionality that is deprecated from the configured
:attr:`ServerApi.version`. For example::

    >>> server_api = ServerApi('1', deprecation_errors=True)
    >>> client = MongoClient(server_api=server_api)

Note that at the time of this writing, no deprecated APIs exist.

Classes
=======
)annotations)AnyMutableMappingOptionalc                      ] tR t^[tRtRtRtR# )ServerApiVersionzSAn enum that defines values for :attr:`ServerApi.version`.

.. versionadded:: 3.12
1 N)__name__
__module____qualname____firstlineno____doc__V1__static_attributes__r	       P/var/www/html/photoedit/myenv/lib/python3.14/site-packages/pymongo/server_api.pyr   r   [   s    
 
B!r   r   c                  l    ] tR t^etRtRR R llt]R R l4       t]R R l4       t]R	 R
 l4       t	Rt
R# )	ServerApizMongoDB Stable API.Nc               $    V ^8  d   QhRRRRRR/# )   versionstrstrictOptional[bool]deprecation_errorsr	   )formats   "r   __annotate__ServerApi.__annotate__h   s$     6 66$26O]6r   c                4   V\         P                  8w  d   \        RV 24      hVe.   \        V\        4      '       g   \        R\        V4       24      hVe.   \        V\        4      '       g   \        R\        V4       24      hWn        W n        W0n	        R# )a  Options to configure MongoDB Stable API.

:param version: The API version string. Must be one of the values in
    :class:`ServerApiVersion`.
:param strict: Set to ``True`` to enable API strict mode.
    Defaults to ``None`` which means "use the server's default".
:param deprecation_errors: Set to ``True`` to enable
    deprecation errors. Defaults to ``None`` which means "use the
    server's default".

.. versionadded:: 3.12
zUnknown ServerApi version: NzHWrong type for ServerApi strict, value must be an instance of bool, not zTWrong type for ServerApi deprecation_errors, value must be an instance of bool, not )
r   r   
ValueError
isinstancebool	TypeErrortype_version_strict_deprecation_errors)selfr   r   r   s   &&&&r   __init__ServerApi.__init__h   s     &))):7)DEEj&>&>  $V~/  )*=OQU2V2V,,01C,D+EG   #5 r   c                   V ^8  d   QhRR/# )r   returnr   r	   )r   s   "r   r   r      s       r   c                    V P                   # )zVThe API version setting.

This value is sent to the server in the "apiVersion" field.
)r%   r(   s   &r   r   ServerApi.version   s     }}r   c                   V ^8  d   QhRR/# r   r,   r   r	   )r   s   "r   r   r      s       r   c                    V P                   # )zcThe API strict mode setting.

When set, this value is sent to the server in the "apiStrict" field.
)r&   r.   s   &r   r   ServerApi.strict   s     ||r   c                   V ^8  d   QhRR/# r1   r	   )r   s   "r   r   r      s     ( (N (r   c                    V P                   # )zuThe API deprecation errors setting.

When set, this value is sent to the server in the
"apiDeprecationErrors" field.
)r'   r.   s   &r   r   ServerApi.deprecation_errors   s     '''r   )r'   r&   r%   )NN)r
   r   r   r   r   r)   propertyr   r   r   r   r	   r   r   r   r   e   sF    6>     ( (r   r   c               $    V ^8  d   QhRRRRRR/# )r   cmdzMutableMapping[str, Any]
server_apizOptional[ServerApi]r,   Noner	   )r   s   "r   r   r      s)     D D1 D?R DW[ Dr   c                    V'       g   R# VP                   V R&   VP                  e   VP                  V R&   VP                  e   VP                  V R&   R# R# )zInternal helper which adds API versioning options to a command.

:param cmd: The command.
:param server_api: A :class:`ServerApi` or ``None``.
N
apiVersion	apiStrictapiDeprecationErrors)r   r   r   )r9   r:   s   &&r   _add_to_commandr@      sX     "**C$%,,K$$0&0&C&C"# 1r   N)
r   
__future__r   typingr   r   r   r   r   r@   r	   r   r   <module>rC      s2   FN # 0 0" "9( 9(xDr   