usage_pb2.pyi 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 Usage(_message.Message):
  24. __slots__ = ("requirements", "rules", "producer_notification_channel")
  25. REQUIREMENTS_FIELD_NUMBER: _ClassVar[int]
  26. RULES_FIELD_NUMBER: _ClassVar[int]
  27. PRODUCER_NOTIFICATION_CHANNEL_FIELD_NUMBER: _ClassVar[int]
  28. requirements: _containers.RepeatedScalarFieldContainer[str]
  29. rules: _containers.RepeatedCompositeFieldContainer[UsageRule]
  30. producer_notification_channel: str
  31. def __init__(
  32. self,
  33. requirements: _Optional[_Iterable[str]] = ...,
  34. rules: _Optional[_Iterable[_Union[UsageRule, _Mapping]]] = ...,
  35. producer_notification_channel: _Optional[str] = ...,
  36. ) -> None: ...
  37. class UsageRule(_message.Message):
  38. __slots__ = ("selector", "allow_unregistered_calls", "skip_service_control")
  39. SELECTOR_FIELD_NUMBER: _ClassVar[int]
  40. ALLOW_UNREGISTERED_CALLS_FIELD_NUMBER: _ClassVar[int]
  41. SKIP_SERVICE_CONTROL_FIELD_NUMBER: _ClassVar[int]
  42. selector: str
  43. allow_unregistered_calls: bool
  44. skip_service_control: bool
  45. def __init__(
  46. self,
  47. selector: _Optional[str] = ...,
  48. allow_unregistered_calls: bool = ...,
  49. skip_service_control: bool = ...,
  50. ) -> None: ...