routing_pb2.pyi 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 descriptor_pb2 as _descriptor_pb2
  21. from google.protobuf import message as _message
  22. from google.protobuf.internal import containers as _containers
  23. DESCRIPTOR: _descriptor.FileDescriptor
  24. ROUTING_FIELD_NUMBER: _ClassVar[int]
  25. routing: _descriptor.FieldDescriptor
  26. class RoutingRule(_message.Message):
  27. __slots__ = ("routing_parameters",)
  28. ROUTING_PARAMETERS_FIELD_NUMBER: _ClassVar[int]
  29. routing_parameters: _containers.RepeatedCompositeFieldContainer[RoutingParameter]
  30. def __init__(
  31. self,
  32. routing_parameters: _Optional[
  33. _Iterable[_Union[RoutingParameter, _Mapping]]
  34. ] = ...,
  35. ) -> None: ...
  36. class RoutingParameter(_message.Message):
  37. __slots__ = ("field", "path_template")
  38. FIELD_FIELD_NUMBER: _ClassVar[int]
  39. PATH_TEMPLATE_FIELD_NUMBER: _ClassVar[int]
  40. field: str
  41. path_template: str
  42. def __init__(
  43. self, field: _Optional[str] = ..., path_template: _Optional[str] = ...
  44. ) -> None: ...