context_pb2.pyi 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # Copyright 2025 Google LLC
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. from typing import ClassVar as _ClassVar
  15. from typing import Iterable as _Iterable
  16. from typing import Mapping as _Mapping
  17. from typing import Optional as _Optional
  18. from typing import Union as _Union
  19. from google.protobuf import descriptor as _descriptor
  20. from google.protobuf import message as _message
  21. from google.protobuf.internal import containers as _containers
  22. DESCRIPTOR: _descriptor.FileDescriptor
  23. class Context(_message.Message):
  24. __slots__ = ("rules",)
  25. RULES_FIELD_NUMBER: _ClassVar[int]
  26. rules: _containers.RepeatedCompositeFieldContainer[ContextRule]
  27. def __init__(
  28. self, rules: _Optional[_Iterable[_Union[ContextRule, _Mapping]]] = ...
  29. ) -> None: ...
  30. class ContextRule(_message.Message):
  31. __slots__ = (
  32. "selector",
  33. "requested",
  34. "provided",
  35. "allowed_request_extensions",
  36. "allowed_response_extensions",
  37. )
  38. SELECTOR_FIELD_NUMBER: _ClassVar[int]
  39. REQUESTED_FIELD_NUMBER: _ClassVar[int]
  40. PROVIDED_FIELD_NUMBER: _ClassVar[int]
  41. ALLOWED_REQUEST_EXTENSIONS_FIELD_NUMBER: _ClassVar[int]
  42. ALLOWED_RESPONSE_EXTENSIONS_FIELD_NUMBER: _ClassVar[int]
  43. selector: str
  44. requested: _containers.RepeatedScalarFieldContainer[str]
  45. provided: _containers.RepeatedScalarFieldContainer[str]
  46. allowed_request_extensions: _containers.RepeatedScalarFieldContainer[str]
  47. allowed_response_extensions: _containers.RepeatedScalarFieldContainer[str]
  48. def __init__(
  49. self,
  50. selector: _Optional[str] = ...,
  51. requested: _Optional[_Iterable[str]] = ...,
  52. provided: _Optional[_Iterable[str]] = ...,
  53. allowed_request_extensions: _Optional[_Iterable[str]] = ...,
  54. allowed_response_extensions: _Optional[_Iterable[str]] = ...,
  55. ) -> None: ...