                Mark all *path operations* in this router as deprecated.

                It will be added to the generated OpenAPI (e.g. visible at `/docs`).

                Read more about it in the
                [FastAPI docs for Path Operation Configuration](https://fastapi.tiangolo.com/tutorial/path-operation-configuration/).
                """
            ),
        ] = None,
                Mark all *path operations* in this router as deprecated.

                It will be added to the generated OpenAPI (e.g. visible at `/docs`).
=== routing.py decorator insert ===
2195-            ),
2196-        ] = None,
2197-        sunset: Annotated[
2198-            datetime | None,
2199-            Doc(
2200-                """
2201-                Declare a date and time when this *path operation* is planned
2202-                to stop being available (its "sunset" moment).
2203-
2204-                Responses will include a `Sunset` header (RFC 8594) and the
2205-                generated OpenAPI will include `x-sunset`.
2206-                """
2207-            ),
2208-        ] = None,
2209-        deprecation_date: Annotated[
2210-            datetime | None,
2211-            Doc(
2212-                """
2213-                Declare the date and time when this *path operation* became
2214-                (or will become) deprecated.
2215-
2216-                Responses will include a `Deprecation` header with this date
2217-                (instead of `Deprecation: true`) and the generated OpenAPI will
2218-                include `x-deprecation-date`.
2219-                """
2220-            ),
2221-        ] = None,
2222-        successor_url: Annotated[
2223-            str | None,
2224-            Doc(
2225-                """
2226-                URL (relative or absolute) of the successor version of this
2227-                *path operation*.
2228-
2229-                Responses will include a `Link` header with
2230-                `rel="successor-version"` (RFC 8288) and the generated OpenAPI
2231-                will include `x-successor-url`.
2232-                """
2233-            ),
2234-        ] = None,
2235-        operation_id: Annotated[
