system_parameter_pb2.pyi 2.2 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 SystemParameters(_message.Message):
  24. __slots__ = ("rules",)
  25. RULES_FIELD_NUMBER: _ClassVar[int]
  26. rules: _containers.RepeatedCompositeFieldContainer[SystemParameterRule]
  27. def __init__(
  28. self, rules: _Optional[_Iterable[_Union[SystemParameterRule, _Mapping]]] = ...
  29. ) -> None: ...
  30. class SystemParameterRule(_message.Message):
  31. __slots__ = ("selector", "parameters")
  32. SELECTOR_FIELD_NUMBER: _ClassVar[int]
  33. PARAMETERS_FIELD_NUMBER: _ClassVar[int]
  34. selector: str
  35. parameters: _containers.RepeatedCompositeFieldContainer[SystemParameter]
  36. def __init__(
  37. self,
  38. selector: _Optional[str] = ...,
  39. parameters: _Optional[_Iterable[_Union[SystemParameter, _Mapping]]] = ...,
  40. ) -> None: ...
  41. class SystemParameter(_message.Message):
  42. __slots__ = ("name", "http_header", "url_query_parameter")
  43. NAME_FIELD_NUMBER: _ClassVar[int]
  44. HTTP_HEADER_FIELD_NUMBER: _ClassVar[int]
  45. URL_QUERY_PARAMETER_FIELD_NUMBER: _ClassVar[int]
  46. name: str
  47. http_header: str
  48. url_query_parameter: str
  49. def __init__(
  50. self,
  51. name: _Optional[str] = ...,
  52. http_header: _Optional[str] = ...,
  53. url_query_parameter: _Optional[str] = ...,
  54. ) -> None: ...