mirror of https://github.com/grpc/grpc-java.git
services: move health.proto to correct directory
This commit is contained in:
parent
02c4fa01c6
commit
d35e77869e
|
|
@ -19,7 +19,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;
|
|||
*/
|
||||
@javax.annotation.Generated(
|
||||
value = "by gRPC proto compiler",
|
||||
comments = "Source: health.proto")
|
||||
comments = "Source: grpc/health/v1/health.proto")
|
||||
public final class HealthGrpc {
|
||||
|
||||
private HealthGrpc() {}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: health.proto
|
||||
// source: grpc/health/v1/health.proto
|
||||
|
||||
package io.grpc.health.v1;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: health.proto
|
||||
// source: grpc/health/v1/health.proto
|
||||
|
||||
package io.grpc.health.v1;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: health.proto
|
||||
// source: grpc/health/v1/health.proto
|
||||
|
||||
package io.grpc.health.v1;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: health.proto
|
||||
// source: grpc/health/v1/health.proto
|
||||
|
||||
package io.grpc.health.v1;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: health.proto
|
||||
// source: grpc/health/v1/health.proto
|
||||
|
||||
package io.grpc.health.v1;
|
||||
|
||||
|
|
@ -33,16 +33,16 @@ public final class HealthProto {
|
|||
descriptor;
|
||||
static {
|
||||
java.lang.String[] descriptorData = {
|
||||
"\n\014health.proto\022\016grpc.health.v1\"%\n\022Health" +
|
||||
"CheckRequest\022\017\n\007service\030\001 \001(\t\"\224\001\n\023Health" +
|
||||
"CheckResponse\022A\n\006status\030\001 \001(\01621.grpc.hea" +
|
||||
"lth.v1.HealthCheckResponse.ServingStatus" +
|
||||
"\":\n\rServingStatus\022\013\n\007UNKNOWN\020\000\022\013\n\007SERVIN" +
|
||||
"G\020\001\022\017\n\013NOT_SERVING\020\0022Z\n\006Health\022P\n\005Check\022" +
|
||||
"\".grpc.health.v1.HealthCheckRequest\032#.gr" +
|
||||
"pc.health.v1.HealthCheckResponseB3\n\021io.g" +
|
||||
"rpc.health.v1B\013HealthProtoP\001\252\002\016Grpc.Heal" +
|
||||
"th.V1b\006proto3"
|
||||
"\n\033grpc/health/v1/health.proto\022\016grpc.heal" +
|
||||
"th.v1\"%\n\022HealthCheckRequest\022\017\n\007service\030\001" +
|
||||
" \001(\t\"\224\001\n\023HealthCheckResponse\022A\n\006status\030\001" +
|
||||
" \001(\01621.grpc.health.v1.HealthCheckRespons" +
|
||||
"e.ServingStatus\":\n\rServingStatus\022\013\n\007UNKN" +
|
||||
"OWN\020\000\022\013\n\007SERVING\020\001\022\017\n\013NOT_SERVING\020\0022Z\n\006H" +
|
||||
"ealth\022P\n\005Check\022\".grpc.health.v1.HealthCh" +
|
||||
"eckRequest\032#.grpc.health.v1.HealthCheckR" +
|
||||
"esponseB3\n\021io.grpc.health.v1B\013HealthProt" +
|
||||
"oP\001\252\002\016Grpc.Health.V1b\006proto3"
|
||||
};
|
||||
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
|
||||
new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() {
|
||||
|
|
|
|||
|
|
@ -12,14 +12,15 @@
|
|||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
syntax = "proto3";
|
||||
|
||||
package grpc.health.v1;
|
||||
option csharp_namespace = "Grpc.Health.V1";
|
||||
|
||||
option csharp_namespace = "Grpc.Health.V1";
|
||||
option java_multiple_files = true;
|
||||
option java_package = "io.grpc.health.v1";
|
||||
option java_outer_classname = "HealthProto";
|
||||
option java_package = "io.grpc.health.v1";
|
||||
|
||||
message HealthCheckRequest {
|
||||
string service = 1;
|
||||
Loading…
Reference in New Issue