monitoring_pb2.pyi 2.2 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 message as _message
  21. from google.protobuf.internal import containers as _containers
  22. DESCRIPTOR: _descriptor.FileDescriptor
  23. class Monitoring(_message.Message):
  24. __slots__ = ("producer_destinations", "consumer_destinations")
  25. class MonitoringDestination(_message.Message):
  26. __slots__ = ("monitored_resource", "metrics")
  27. MONITORED_RESOURCE_FIELD_NUMBER: _ClassVar[int]
  28. METRICS_FIELD_NUMBER: _ClassVar[int]
  29. monitored_resource: str
  30. metrics: _containers.RepeatedScalarFieldContainer[str]
  31. def __init__(
  32. self,
  33. monitored_resource: _Optional[str] = ...,
  34. metrics: _Optional[_Iterable[str]] = ...,
  35. ) -> None: ...
  36. PRODUCER_DESTINATIONS_FIELD_NUMBER: _ClassVar[int]
  37. CONSUMER_DESTINATIONS_FIELD_NUMBER: _ClassVar[int]
  38. producer_destinations: _containers.RepeatedCompositeFieldContainer[
  39. Monitoring.MonitoringDestination
  40. ]
  41. consumer_destinations: _containers.RepeatedCompositeFieldContainer[
  42. Monitoring.MonitoringDestination
  43. ]
  44. def __init__(
  45. self,
  46. producer_destinations: _Optional[
  47. _Iterable[_Union[Monitoring.MonitoringDestination, _Mapping]]
  48. ] = ...,
  49. consumer_destinations: _Optional[
  50. _Iterable[_Union[Monitoring.MonitoringDestination, _Mapping]]
  51. ] = ...,
  52. ) -> None: ...