mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-07 02:07:58 +00:00
Add vendor folder to git
This commit is contained in:
parent
66cf5eaafb
commit
183585f56f
6916 changed files with 2629581 additions and 1 deletions
29
vendor/github.com/grpc-ecosystem/grpc-gateway/examples/examplepb/stream.proto
generated
vendored
Normal file
29
vendor/github.com/grpc-ecosystem/grpc-gateway/examples/examplepb/stream.proto
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
syntax = "proto3";
|
||||
option go_package = "examplepb";
|
||||
package grpc.gateway.examples.examplepb;
|
||||
|
||||
import "google/api/annotations.proto";
|
||||
import "google/protobuf/empty.proto";
|
||||
import "examples/examplepb/a_bit_of_everything.proto";
|
||||
import "examples/sub/message.proto";
|
||||
|
||||
// Defines some more operations to be added to ABitOfEverythingService
|
||||
service StreamService {
|
||||
rpc BulkCreate(stream ABitOfEverything) returns (google.protobuf.Empty) {
|
||||
option (google.api.http) = {
|
||||
post: "/v1/example/a_bit_of_everything/bulk"
|
||||
body: "*"
|
||||
};
|
||||
}
|
||||
rpc List(google.protobuf.Empty) returns (stream ABitOfEverything) {
|
||||
option (google.api.http) = {
|
||||
get: "/v1/example/a_bit_of_everything"
|
||||
};
|
||||
}
|
||||
rpc BulkEcho(stream grpc.gateway.examples.sub.StringMessage) returns (stream grpc.gateway.examples.sub.StringMessage) {
|
||||
option (google.api.http) = {
|
||||
post: "/v1/example/a_bit_of_everything/echo"
|
||||
body: "*"
|
||||
};
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue