policy_pb2.pyi 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. FIELD_POLICY_FIELD_NUMBER: _ClassVar[int]
  25. field_policy: _descriptor.FieldDescriptor
  26. METHOD_POLICY_FIELD_NUMBER: _ClassVar[int]
  27. method_policy: _descriptor.FieldDescriptor
  28. class FieldPolicy(_message.Message):
  29. __slots__ = ("selector", "resource_permission", "resource_type")
  30. SELECTOR_FIELD_NUMBER: _ClassVar[int]
  31. RESOURCE_PERMISSION_FIELD_NUMBER: _ClassVar[int]
  32. RESOURCE_TYPE_FIELD_NUMBER: _ClassVar[int]
  33. selector: str
  34. resource_permission: str
  35. resource_type: str
  36. def __init__(
  37. self,
  38. selector: _Optional[str] = ...,
  39. resource_permission: _Optional[str] = ...,
  40. resource_type: _Optional[str] = ...,
  41. ) -> None: ...
  42. class MethodPolicy(_message.Message):
  43. __slots__ = ("selector", "request_policies")
  44. SELECTOR_FIELD_NUMBER: _ClassVar[int]
  45. REQUEST_POLICIES_FIELD_NUMBER: _ClassVar[int]
  46. selector: str
  47. request_policies: _containers.RepeatedCompositeFieldContainer[FieldPolicy]
  48. def __init__(
  49. self,
  50. selector: _Optional[str] = ...,
  51. request_policies: _Optional[_Iterable[_Union[FieldPolicy, _Mapping]]] = ...,
  52. ) -> None: ...