health.pb.go 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: grpc/health/v1/health.proto
  3. package grpc_health_v1
  4. import (
  5. fmt "fmt"
  6. proto "github.com/golang/protobuf/proto"
  7. math "math"
  8. )
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  18. type HealthCheckResponse_ServingStatus int32
  19. const (
  20. HealthCheckResponse_UNKNOWN HealthCheckResponse_ServingStatus = 0
  21. HealthCheckResponse_SERVING HealthCheckResponse_ServingStatus = 1
  22. HealthCheckResponse_NOT_SERVING HealthCheckResponse_ServingStatus = 2
  23. HealthCheckResponse_SERVICE_UNKNOWN HealthCheckResponse_ServingStatus = 3
  24. )
  25. var HealthCheckResponse_ServingStatus_name = map[int32]string{
  26. 0: "UNKNOWN",
  27. 1: "SERVING",
  28. 2: "NOT_SERVING",
  29. 3: "SERVICE_UNKNOWN",
  30. }
  31. var HealthCheckResponse_ServingStatus_value = map[string]int32{
  32. "UNKNOWN": 0,
  33. "SERVING": 1,
  34. "NOT_SERVING": 2,
  35. "SERVICE_UNKNOWN": 3,
  36. }
  37. func (x HealthCheckResponse_ServingStatus) String() string {
  38. return proto.EnumName(HealthCheckResponse_ServingStatus_name, int32(x))
  39. }
  40. func (HealthCheckResponse_ServingStatus) EnumDescriptor() ([]byte, []int) {
  41. return fileDescriptor_e265fd9d4e077217, []int{1, 0}
  42. }
  43. type HealthCheckRequest struct {
  44. Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
  45. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  46. XXX_unrecognized []byte `json:"-"`
  47. XXX_sizecache int32 `json:"-"`
  48. }
  49. func (m *HealthCheckRequest) Reset() { *m = HealthCheckRequest{} }
  50. func (m *HealthCheckRequest) String() string { return proto.CompactTextString(m) }
  51. func (*HealthCheckRequest) ProtoMessage() {}
  52. func (*HealthCheckRequest) Descriptor() ([]byte, []int) {
  53. return fileDescriptor_e265fd9d4e077217, []int{0}
  54. }
  55. func (m *HealthCheckRequest) XXX_Unmarshal(b []byte) error {
  56. return xxx_messageInfo_HealthCheckRequest.Unmarshal(m, b)
  57. }
  58. func (m *HealthCheckRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  59. return xxx_messageInfo_HealthCheckRequest.Marshal(b, m, deterministic)
  60. }
  61. func (m *HealthCheckRequest) XXX_Merge(src proto.Message) {
  62. xxx_messageInfo_HealthCheckRequest.Merge(m, src)
  63. }
  64. func (m *HealthCheckRequest) XXX_Size() int {
  65. return xxx_messageInfo_HealthCheckRequest.Size(m)
  66. }
  67. func (m *HealthCheckRequest) XXX_DiscardUnknown() {
  68. xxx_messageInfo_HealthCheckRequest.DiscardUnknown(m)
  69. }
  70. var xxx_messageInfo_HealthCheckRequest proto.InternalMessageInfo
  71. func (m *HealthCheckRequest) GetService() string {
  72. if m != nil {
  73. return m.Service
  74. }
  75. return ""
  76. }
  77. type HealthCheckResponse struct {
  78. Status HealthCheckResponse_ServingStatus `protobuf:"varint,1,opt,name=status,proto3,enum=grpc.health.v1.HealthCheckResponse_ServingStatus" json:"status,omitempty"`
  79. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  80. XXX_unrecognized []byte `json:"-"`
  81. XXX_sizecache int32 `json:"-"`
  82. }
  83. func (m *HealthCheckResponse) Reset() { *m = HealthCheckResponse{} }
  84. func (m *HealthCheckResponse) String() string { return proto.CompactTextString(m) }
  85. func (*HealthCheckResponse) ProtoMessage() {}
  86. func (*HealthCheckResponse) Descriptor() ([]byte, []int) {
  87. return fileDescriptor_e265fd9d4e077217, []int{1}
  88. }
  89. func (m *HealthCheckResponse) XXX_Unmarshal(b []byte) error {
  90. return xxx_messageInfo_HealthCheckResponse.Unmarshal(m, b)
  91. }
  92. func (m *HealthCheckResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  93. return xxx_messageInfo_HealthCheckResponse.Marshal(b, m, deterministic)
  94. }
  95. func (m *HealthCheckResponse) XXX_Merge(src proto.Message) {
  96. xxx_messageInfo_HealthCheckResponse.Merge(m, src)
  97. }
  98. func (m *HealthCheckResponse) XXX_Size() int {
  99. return xxx_messageInfo_HealthCheckResponse.Size(m)
  100. }
  101. func (m *HealthCheckResponse) XXX_DiscardUnknown() {
  102. xxx_messageInfo_HealthCheckResponse.DiscardUnknown(m)
  103. }
  104. var xxx_messageInfo_HealthCheckResponse proto.InternalMessageInfo
  105. func (m *HealthCheckResponse) GetStatus() HealthCheckResponse_ServingStatus {
  106. if m != nil {
  107. return m.Status
  108. }
  109. return HealthCheckResponse_UNKNOWN
  110. }
  111. func init() {
  112. proto.RegisterEnum("grpc.health.v1.HealthCheckResponse_ServingStatus", HealthCheckResponse_ServingStatus_name, HealthCheckResponse_ServingStatus_value)
  113. proto.RegisterType((*HealthCheckRequest)(nil), "grpc.health.v1.HealthCheckRequest")
  114. proto.RegisterType((*HealthCheckResponse)(nil), "grpc.health.v1.HealthCheckResponse")
  115. }
  116. func init() { proto.RegisterFile("grpc/health/v1/health.proto", fileDescriptor_e265fd9d4e077217) }
  117. var fileDescriptor_e265fd9d4e077217 = []byte{
  118. // 297 bytes of a gzipped FileDescriptorProto
  119. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0x2f, 0x2a, 0x48,
  120. 0xd6, 0xcf, 0x48, 0x4d, 0xcc, 0x29, 0xc9, 0xd0, 0x2f, 0x33, 0x84, 0xb2, 0xf4, 0x0a, 0x8a, 0xf2,
  121. 0x4b, 0xf2, 0x85, 0xf8, 0x40, 0x92, 0x7a, 0x50, 0xa1, 0x32, 0x43, 0x25, 0x3d, 0x2e, 0x21, 0x0f,
  122. 0x30, 0xc7, 0x39, 0x23, 0x35, 0x39, 0x3b, 0x28, 0xb5, 0xb0, 0x34, 0xb5, 0xb8, 0x44, 0x48, 0x82,
  123. 0x8b, 0xbd, 0x38, 0xb5, 0xa8, 0x2c, 0x33, 0x39, 0x55, 0x82, 0x51, 0x81, 0x51, 0x83, 0x33, 0x08,
  124. 0xc6, 0x55, 0xda, 0xc8, 0xc8, 0x25, 0x8c, 0xa2, 0xa1, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0x55, 0xc8,
  125. 0x93, 0x8b, 0xad, 0xb8, 0x24, 0xb1, 0xa4, 0xb4, 0x18, 0xac, 0x81, 0xcf, 0xc8, 0x50, 0x0f, 0xd5,
  126. 0x22, 0x3d, 0x2c, 0x9a, 0xf4, 0x82, 0x41, 0x86, 0xe6, 0xa5, 0x07, 0x83, 0x35, 0x06, 0x41, 0x0d,
  127. 0x50, 0xf2, 0xe7, 0xe2, 0x45, 0x91, 0x10, 0xe2, 0xe6, 0x62, 0x0f, 0xf5, 0xf3, 0xf6, 0xf3, 0x0f,
  128. 0xf7, 0x13, 0x60, 0x00, 0x71, 0x82, 0x5d, 0x83, 0xc2, 0x3c, 0xfd, 0xdc, 0x05, 0x18, 0x85, 0xf8,
  129. 0xb9, 0xb8, 0xfd, 0xfc, 0x43, 0xe2, 0x61, 0x02, 0x4c, 0x42, 0xc2, 0x5c, 0xfc, 0x60, 0x8e, 0xb3,
  130. 0x6b, 0x3c, 0x4c, 0x0b, 0xb3, 0xd1, 0x3a, 0x46, 0x2e, 0x36, 0x88, 0xf5, 0x42, 0x01, 0x5c, 0xac,
  131. 0x60, 0x27, 0x08, 0x29, 0xe1, 0x75, 0x1f, 0x38, 0x14, 0xa4, 0x94, 0x89, 0xf0, 0x83, 0x50, 0x10,
  132. 0x17, 0x6b, 0x78, 0x62, 0x49, 0x72, 0x06, 0xd5, 0x4c, 0x34, 0x60, 0x74, 0x4a, 0xe4, 0x12, 0xcc,
  133. 0xcc, 0x47, 0x53, 0xea, 0xc4, 0x0d, 0x51, 0x1b, 0x00, 0x8a, 0xc6, 0x00, 0xc6, 0x28, 0x9d, 0xf4,
  134. 0xfc, 0xfc, 0xf4, 0x9c, 0x54, 0xbd, 0xf4, 0xfc, 0x9c, 0xc4, 0xbc, 0x74, 0xbd, 0xfc, 0xa2, 0x74,
  135. 0x7d, 0xe4, 0x78, 0x07, 0xb1, 0xe3, 0x21, 0xec, 0xf8, 0x32, 0xc3, 0x55, 0x4c, 0x7c, 0xee, 0x20,
  136. 0xd3, 0x20, 0x46, 0xe8, 0x85, 0x19, 0x26, 0xb1, 0x81, 0x93, 0x83, 0x31, 0x20, 0x00, 0x00, 0xff,
  137. 0xff, 0x12, 0x7d, 0x96, 0xcb, 0x2d, 0x02, 0x00, 0x00,
  138. }