├── .bazelrc ├── .github └── workflows │ └── testing.yml ├── .gitignore ├── BUILD.bazel ├── LICENSE ├── MODULE.bazel ├── README.md ├── WORKSPACE ├── WORKSPACE.bzlmod └── grpc ├── binlog ├── v1 │ └── binarylog.proto └── v1alpha │ └── binarylog.proto ├── channelz └── v1 │ └── channelz.proto ├── core └── stats.proto ├── examples └── helloworld.proto ├── gcp ├── altscontext.proto ├── handshaker.proto └── transport_security_common.proto ├── health └── v1 │ └── health.proto ├── lb └── v1 │ ├── load_balancer.proto │ └── load_reporter.proto ├── lookup └── v1 │ ├── rls.proto │ └── rls_config.proto ├── reflection ├── v1 │ └── reflection.proto └── v1alpha │ └── reflection.proto ├── service_config └── service_config.proto └── testing ├── benchmark_service.proto ├── control.proto ├── empty.proto ├── messages.proto ├── payloads.proto ├── report_qps_scenario_service.proto ├── stats.proto ├── test.proto ├── worker_service.proto └── xdsconfig └── xdsconfig.proto /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/.bazelrc -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/WORKSPACE -------------------------------------------------------------------------------- /WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grpc/binlog/v1/binarylog.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/binlog/v1/binarylog.proto -------------------------------------------------------------------------------- /grpc/binlog/v1alpha/binarylog.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/binlog/v1alpha/binarylog.proto -------------------------------------------------------------------------------- /grpc/channelz/v1/channelz.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/channelz/v1/channelz.proto -------------------------------------------------------------------------------- /grpc/core/stats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/core/stats.proto -------------------------------------------------------------------------------- /grpc/examples/helloworld.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/examples/helloworld.proto -------------------------------------------------------------------------------- /grpc/gcp/altscontext.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/gcp/altscontext.proto -------------------------------------------------------------------------------- /grpc/gcp/handshaker.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/gcp/handshaker.proto -------------------------------------------------------------------------------- /grpc/gcp/transport_security_common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/gcp/transport_security_common.proto -------------------------------------------------------------------------------- /grpc/health/v1/health.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/health/v1/health.proto -------------------------------------------------------------------------------- /grpc/lb/v1/load_balancer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/lb/v1/load_balancer.proto -------------------------------------------------------------------------------- /grpc/lb/v1/load_reporter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/lb/v1/load_reporter.proto -------------------------------------------------------------------------------- /grpc/lookup/v1/rls.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/lookup/v1/rls.proto -------------------------------------------------------------------------------- /grpc/lookup/v1/rls_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/lookup/v1/rls_config.proto -------------------------------------------------------------------------------- /grpc/reflection/v1/reflection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/reflection/v1/reflection.proto -------------------------------------------------------------------------------- /grpc/reflection/v1alpha/reflection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/reflection/v1alpha/reflection.proto -------------------------------------------------------------------------------- /grpc/service_config/service_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/service_config/service_config.proto -------------------------------------------------------------------------------- /grpc/testing/benchmark_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/benchmark_service.proto -------------------------------------------------------------------------------- /grpc/testing/control.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/control.proto -------------------------------------------------------------------------------- /grpc/testing/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/empty.proto -------------------------------------------------------------------------------- /grpc/testing/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/messages.proto -------------------------------------------------------------------------------- /grpc/testing/payloads.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/payloads.proto -------------------------------------------------------------------------------- /grpc/testing/report_qps_scenario_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/report_qps_scenario_service.proto -------------------------------------------------------------------------------- /grpc/testing/stats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/stats.proto -------------------------------------------------------------------------------- /grpc/testing/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/test.proto -------------------------------------------------------------------------------- /grpc/testing/worker_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/worker_service.proto -------------------------------------------------------------------------------- /grpc/testing/xdsconfig/xdsconfig.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grpc/grpc-proto/HEAD/grpc/testing/xdsconfig/xdsconfig.proto --------------------------------------------------------------------------------