UNPKG

weaviate-client

Version:
208 lines (207 loc) 8.28 kB
"use strict"; // Code generated by protoc-gen-ts_proto. DO NOT EDIT. // versions: // protoc-gen-ts_proto v1.176.0 // protoc v3.19.1 // source: health.proto var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.HealthDefinition = exports.HealthCheckResponse = exports.HealthCheckRequest = exports.healthCheckResponse_ServingStatusToJSON = exports.healthCheckResponse_ServingStatusFromJSON = exports.HealthCheckResponse_ServingStatus = exports.protobufPackage = void 0; const minimal_js_1 = __importDefault(require("protobufjs/minimal.js")); exports.protobufPackage = "grpc.health.v1"; var HealthCheckResponse_ServingStatus; (function (HealthCheckResponse_ServingStatus) { HealthCheckResponse_ServingStatus[HealthCheckResponse_ServingStatus["UNKNOWN"] = 0] = "UNKNOWN"; HealthCheckResponse_ServingStatus[HealthCheckResponse_ServingStatus["SERVING"] = 1] = "SERVING"; HealthCheckResponse_ServingStatus[HealthCheckResponse_ServingStatus["NOT_SERVING"] = 2] = "NOT_SERVING"; /** SERVICE_UNKNOWN - Used only by the Watch method. */ HealthCheckResponse_ServingStatus[HealthCheckResponse_ServingStatus["SERVICE_UNKNOWN"] = 3] = "SERVICE_UNKNOWN"; HealthCheckResponse_ServingStatus[HealthCheckResponse_ServingStatus["UNRECOGNIZED"] = -1] = "UNRECOGNIZED"; })(HealthCheckResponse_ServingStatus || (exports.HealthCheckResponse_ServingStatus = HealthCheckResponse_ServingStatus = {})); function healthCheckResponse_ServingStatusFromJSON(object) { switch (object) { case 0: case "UNKNOWN": return HealthCheckResponse_ServingStatus.UNKNOWN; case 1: case "SERVING": return HealthCheckResponse_ServingStatus.SERVING; case 2: case "NOT_SERVING": return HealthCheckResponse_ServingStatus.NOT_SERVING; case 3: case "SERVICE_UNKNOWN": return HealthCheckResponse_ServingStatus.SERVICE_UNKNOWN; case -1: case "UNRECOGNIZED": default: return HealthCheckResponse_ServingStatus.UNRECOGNIZED; } } exports.healthCheckResponse_ServingStatusFromJSON = healthCheckResponse_ServingStatusFromJSON; function healthCheckResponse_ServingStatusToJSON(object) { switch (object) { case HealthCheckResponse_ServingStatus.UNKNOWN: return "UNKNOWN"; case HealthCheckResponse_ServingStatus.SERVING: return "SERVING"; case HealthCheckResponse_ServingStatus.NOT_SERVING: return "NOT_SERVING"; case HealthCheckResponse_ServingStatus.SERVICE_UNKNOWN: return "SERVICE_UNKNOWN"; case HealthCheckResponse_ServingStatus.UNRECOGNIZED: default: return "UNRECOGNIZED"; } } exports.healthCheckResponse_ServingStatusToJSON = healthCheckResponse_ServingStatusToJSON; function createBaseHealthCheckRequest() { return { service: "" }; } exports.HealthCheckRequest = { encode(message, writer = minimal_js_1.default.Writer.create()) { if (message.service !== "") { writer.uint32(10).string(message.service); } return writer; }, decode(input, length) { const reader = input instanceof minimal_js_1.default.Reader ? input : minimal_js_1.default.Reader.create(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseHealthCheckRequest(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: if (tag !== 10) { break; } message.service = reader.string(); continue; } if ((tag & 7) === 4 || tag === 0) { break; } reader.skipType(tag & 7); } return message; }, fromJSON(object) { return { service: isSet(object.service) ? globalThis.String(object.service) : "" }; }, toJSON(message) { const obj = {}; if (message.service !== "") { obj.service = message.service; } return obj; }, create(base) { return exports.HealthCheckRequest.fromPartial(base !== null && base !== void 0 ? base : {}); }, fromPartial(object) { var _a; const message = createBaseHealthCheckRequest(); message.service = (_a = object.service) !== null && _a !== void 0 ? _a : ""; return message; }, }; function createBaseHealthCheckResponse() { return { status: 0 }; } exports.HealthCheckResponse = { encode(message, writer = minimal_js_1.default.Writer.create()) { if (message.status !== 0) { writer.uint32(8).int32(message.status); } return writer; }, decode(input, length) { const reader = input instanceof minimal_js_1.default.Reader ? input : minimal_js_1.default.Reader.create(input); let end = length === undefined ? reader.len : reader.pos + length; const message = createBaseHealthCheckResponse(); while (reader.pos < end) { const tag = reader.uint32(); switch (tag >>> 3) { case 1: if (tag !== 8) { break; } message.status = reader.int32(); continue; } if ((tag & 7) === 4 || tag === 0) { break; } reader.skipType(tag & 7); } return message; }, fromJSON(object) { return { status: isSet(object.status) ? healthCheckResponse_ServingStatusFromJSON(object.status) : 0 }; }, toJSON(message) { const obj = {}; if (message.status !== 0) { obj.status = healthCheckResponse_ServingStatusToJSON(message.status); } return obj; }, create(base) { return exports.HealthCheckResponse.fromPartial(base !== null && base !== void 0 ? base : {}); }, fromPartial(object) { var _a; const message = createBaseHealthCheckResponse(); message.status = (_a = object.status) !== null && _a !== void 0 ? _a : 0; return message; }, }; exports.HealthDefinition = { name: "Health", fullName: "grpc.health.v1.Health", methods: { /** * If the requested service is unknown, the call will fail with status * NOT_FOUND. */ check: { name: "Check", requestType: exports.HealthCheckRequest, requestStream: false, responseType: exports.HealthCheckResponse, responseStream: false, options: {}, }, /** * Performs a watch for the serving status of the requested service. * The server will immediately send back a message indicating the current * serving status. It will then subsequently send a new message whenever * the service's serving status changes. * * If the requested service is unknown when the call is received, the * server will send a message setting the serving status to * SERVICE_UNKNOWN but will *not* terminate the call. If at some * future point, the serving status of the service becomes known, the * server will send a new message with the service's serving status. * * If the call terminates with status UNIMPLEMENTED, then clients * should assume this method is not supported and should not retry the * call. If the call terminates with any other status (including OK), * clients should retry the call with appropriate exponential backoff. */ watch: { name: "Watch", requestType: exports.HealthCheckRequest, requestStream: false, responseType: exports.HealthCheckResponse, responseStream: true, options: {}, }, }, }; function isSet(value) { return value !== null && value !== undefined; }