Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
bazel/cc_proto_descriptor_library/testdata/ | H | 25-Apr-2025 | - | 78 | 42 | |
contrib/envoy/extensions/ | H | 25-Apr-2025 | - | 1,338 | 930 | |
envoy/ | H | 25-Apr-2025 | - | 29,091 | 21,241 | |
google/ | H | 25-Apr-2025 | - | 3,729 | 2,714 | |
opencensus/ | H | 25-Apr-2025 | - | 374 | 261 | |
opentelemetry/ | H | 25-Apr-2025 | - | 429 | 289 | |
udpa/ | H | 25-Apr-2025 | - | 256 | 150 | |
validate/ | H | 25-Apr-2025 | - | 77 | 64 | |
xds/ | H | 25-Apr-2025 | - | 948 | 621 | |
BUILD.bazel | H A D | 25-Apr-2025 | 1.1 KiB | 38 | 34 | |
MANIFEST.in | H A D | 25-Apr-2025 | 24 | 2 | 1 | |
README.rst | H A D | 25-Apr-2025 | 774 | 11 | 7 | |
__init__.py | H A D | 25-Apr-2025 | 0 | 1 | 0 | |
build.py | H A D | 25-Apr-2025 | 6.9 KiB | 200 | 141 | |
generated_file_import_test.py | H A D | 25-Apr-2025 | 43.2 KiB | 737 | 736 | |
grpc_version.py | H A D | 25-Apr-2025 | 733 | 19 | 2 | |
setup.py | H A D | 25-Apr-2025 | 2 KiB | 63 | 37 |
README.rst
1Package "xds-protos" is a collection of ProtoBuf generated Python files for xDS protos (or the `data-plane-api <https://github.com/envoyproxy/data-plane-api>`_). You can find the source code of this project in `grpc/grpc <https://github.com/grpc/grpc>`_. For any question or suggestion, please post to https://github.com/grpc/grpc/issues. 2 3Each generated Python file can be imported according to their proto package. For example, if we are trying to import a proto located at "envoy/service/status/v3/csds.proto", whose proto package is "package envoy.service.status.v3", then we can import it as: 4 5:: 6 7 # Import the message definitions 8 from envoy.service.status.v3 import csds_pb2 9 # Import the gRPC service and stub 10 from envoy.service.status.v3 import csds_pb2_grpc 11