Latest generation

This commit is contained in:
ci core model
2026-04-13 08:34:31 +00:00
parent 1f8ae5f70d
commit 577d4001bf
10 changed files with 197 additions and 8 deletions

View File

@@ -14,6 +14,8 @@ import type { ClearKpiEntityResult } from "./kpi";
import type { ClearKpiEntityRequest } from "./kpi";
import type { GetKpiEntitiesResult } from "./kpi";
import type { GetKpiEntitiesRequest } from "./kpi";
import type { DropKpiTableStructureResult } from "./kpi";
import type { DropKpiTableStructureRequest } from "./kpi";
import type { UpdateKpiTableStructureResult } from "./kpi";
import type { UpdateKpiTableStructureRequest } from "./kpi";
import type { GetKpiTableStructureResult } from "./kpi";
@@ -39,6 +41,10 @@ export interface IKpiServiceClient {
* @generated from protobuf rpc: UpdateKpiTableStructure
*/
updateKpiTableStructure(input: UpdateKpiTableStructureRequest, options?: RpcOptions): UnaryCall<UpdateKpiTableStructureRequest, UpdateKpiTableStructureResult>;
/**
* @generated from protobuf rpc: DropKpiTableStructure
*/
dropKpiTableStructure(input: DropKpiTableStructureRequest, options?: RpcOptions): UnaryCall<DropKpiTableStructureRequest, DropKpiTableStructureResult>;
/**
* @generated from protobuf rpc: GetKpiEntities
*/
@@ -90,39 +96,46 @@ export class KpiServiceClient implements IKpiServiceClient, ServiceInfo {
const method = this.methods[2], opt = this._transport.mergeOptions(options);
return stackIntercept<UpdateKpiTableStructureRequest, UpdateKpiTableStructureResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: DropKpiTableStructure
*/
dropKpiTableStructure(input: DropKpiTableStructureRequest, options?: RpcOptions): UnaryCall<DropKpiTableStructureRequest, DropKpiTableStructureResult> {
const method = this.methods[3], opt = this._transport.mergeOptions(options);
return stackIntercept<DropKpiTableStructureRequest, DropKpiTableStructureResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: GetKpiEntities
*/
getKpiEntities(input: GetKpiEntitiesRequest, options?: RpcOptions): UnaryCall<GetKpiEntitiesRequest, GetKpiEntitiesResult> {
const method = this.methods[3], opt = this._transport.mergeOptions(options);
const method = this.methods[4], opt = this._transport.mergeOptions(options);
return stackIntercept<GetKpiEntitiesRequest, GetKpiEntitiesResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: ClearKpiEntity
*/
clearKpiEntity(input: ClearKpiEntityRequest, options?: RpcOptions): UnaryCall<ClearKpiEntityRequest, ClearKpiEntityResult> {
const method = this.methods[4], opt = this._transport.mergeOptions(options);
const method = this.methods[5], opt = this._transport.mergeOptions(options);
return stackIntercept<ClearKpiEntityRequest, ClearKpiEntityResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CreateMV
*/
createMV(input: CreateMVRequest, options?: RpcOptions): UnaryCall<CreateMVRequest, CreateMVResult> {
const method = this.methods[5], opt = this._transport.mergeOptions(options);
const method = this.methods[6], opt = this._transport.mergeOptions(options);
return stackIntercept<CreateMVRequest, CreateMVResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: DropMV
*/
dropMV(input: DropMVRequest, options?: RpcOptions): UnaryCall<DropMVRequest, DropMVResult> {
const method = this.methods[6], opt = this._transport.mergeOptions(options);
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<DropMVRequest, DropMVResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: PopulateMV
*/
populateMV(input: PopulateMVRequest, options?: RpcOptions): UnaryCall<PopulateMVRequest, PopulateMVResult> {
const method = this.methods[7], opt = this._transport.mergeOptions(options);
const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<PopulateMVRequest, PopulateMVResult>("unary", this._transport, method, opt, input);
}
}