// package: skywalking.v3 // file: management/Management.proto /* tslint:disable */ /* eslint-disable */ import * as grpc from "@grpc/grpc-js"; import * as management_Management_pb from "../management/Management_pb"; import * as common_Common_pb from "../common/Common_pb"; interface IManagementServiceService extends grpc.ServiceDefinition { reportInstanceProperties: IManagementServiceService_IreportInstanceProperties; keepAlive: IManagementServiceService_IkeepAlive; } interface IManagementServiceService_IreportInstanceProperties extends grpc.MethodDefinition { path: "/skywalking.v3.ManagementService/reportInstanceProperties"; requestStream: false; responseStream: false; requestSerialize: grpc.serialize; requestDeserialize: grpc.deserialize; responseSerialize: grpc.serialize; responseDeserialize: grpc.deserialize; } interface IManagementServiceService_IkeepAlive extends grpc.MethodDefinition { path: "/skywalking.v3.ManagementService/keepAlive"; requestStream: false; responseStream: false; requestSerialize: grpc.serialize; requestDeserialize: grpc.deserialize; responseSerialize: grpc.serialize; responseDeserialize: grpc.deserialize; } export const ManagementServiceService: IManagementServiceService; export interface IManagementServiceServer extends grpc.UntypedServiceImplementation { reportInstanceProperties: grpc.handleUnaryCall; keepAlive: grpc.handleUnaryCall; } export interface IManagementServiceClient { reportInstanceProperties(request: management_Management_pb.InstanceProperties, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; reportInstanceProperties(request: management_Management_pb.InstanceProperties, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; reportInstanceProperties(request: management_Management_pb.InstanceProperties, metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; keepAlive(request: management_Management_pb.InstancePingPkg, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; keepAlive(request: management_Management_pb.InstancePingPkg, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; keepAlive(request: management_Management_pb.InstancePingPkg, metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; } export class ManagementServiceClient extends grpc.Client implements IManagementServiceClient { constructor(address: string, credentials: grpc.ChannelCredentials, options?: Partial); public reportInstanceProperties(request: management_Management_pb.InstanceProperties, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; public reportInstanceProperties(request: management_Management_pb.InstanceProperties, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; public reportInstanceProperties(request: management_Management_pb.InstanceProperties, metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; public keepAlive(request: management_Management_pb.InstancePingPkg, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; public keepAlive(request: management_Management_pb.InstancePingPkg, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; public keepAlive(request: management_Management_pb.InstancePingPkg, metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: common_Common_pb.Commands) => void): grpc.ClientUnaryCall; }