massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / oauthlib / oauthlib / oauth2 / rfc6749 / endpoints / metadata.pyi
1 from typing import Any
2
3 from .base import BaseEndpoint as BaseEndpoint
4
5 log: Any
6
7 class MetadataEndpoint(BaseEndpoint):
8     raise_errors: Any
9     endpoints: Any
10     initial_claims: Any
11     claims: Any
12     def __init__(self, endpoints, claims=..., raise_errors: bool = ...) -> None: ...
13     def create_metadata_response(self, uri, http_method: str = ..., body: Any | None = ..., headers: Any | None = ...): ...
14     def validate_metadata(
15         self, array, key, is_required: bool = ..., is_list: bool = ..., is_url: bool = ..., is_issuer: bool = ...
16     ) -> None: ...
17     def validate_metadata_token(self, claims, endpoint) -> None: ...
18     def validate_metadata_authorization(self, claims, endpoint): ...
19     def validate_metadata_revocation(self, claims, endpoint) -> None: ...
20     def validate_metadata_introspection(self, claims, endpoint) -> None: ...
21     def validate_metadata_server(self): ...