log_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 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. from google.api import label_pb2 as _label_pb2
  23. DESCRIPTOR: _descriptor.FileDescriptor
  24. class LogDescriptor(_message.Message):
  25. __slots__ = ("name", "labels", "description", "display_name")
  26. NAME_FIELD_NUMBER: _ClassVar[int]
  27. LABELS_FIELD_NUMBER: _ClassVar[int]
  28. DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
  29. DISPLAY_NAME_FIELD_NUMBER: _ClassVar[int]
  30. name: str
  31. labels: _containers.RepeatedCompositeFieldContainer[_label_pb2.LabelDescriptor]
  32. description: str
  33. display_name: str
  34. def __init__(
  35. self,
  36. name: _Optional[str] = ...,
  37. labels: _Optional[
  38. _Iterable[_Union[_label_pb2.LabelDescriptor, _Mapping]]
  39. ] = ...,
  40. description: _Optional[str] = ...,
  41. display_name: _Optional[str] = ...,
  42. ) -> None: ...