label_pb2.pyi 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 Optional as _Optional
  16. from typing import Union as _Union
  17. from google.protobuf import descriptor as _descriptor
  18. from google.protobuf import message as _message
  19. from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
  20. DESCRIPTOR: _descriptor.FileDescriptor
  21. class LabelDescriptor(_message.Message):
  22. __slots__ = ("key", "value_type", "description")
  23. class ValueType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
  24. __slots__ = ()
  25. STRING: _ClassVar[LabelDescriptor.ValueType]
  26. BOOL: _ClassVar[LabelDescriptor.ValueType]
  27. INT64: _ClassVar[LabelDescriptor.ValueType]
  28. STRING: LabelDescriptor.ValueType
  29. BOOL: LabelDescriptor.ValueType
  30. INT64: LabelDescriptor.ValueType
  31. KEY_FIELD_NUMBER: _ClassVar[int]
  32. VALUE_TYPE_FIELD_NUMBER: _ClassVar[int]
  33. DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
  34. key: str
  35. value_type: LabelDescriptor.ValueType
  36. description: str
  37. def __init__(
  38. self,
  39. key: _Optional[str] = ...,
  40. value_type: _Optional[_Union[LabelDescriptor.ValueType, str]] = ...,
  41. description: _Optional[str] = ...,
  42. ) -> None: ...