Latest generation

This commit is contained in:
ci core model
2025-03-20 10:05:56 +00:00
parent d14c71c05a
commit a484f7bf7c
187 changed files with 199 additions and 801 deletions

View File

@@ -1,4 +1,4 @@
// @generated by protobuf-ts 2.9.5
// @generated by protobuf-ts 2.9.6
// @generated from protobuf file "proj.proto" (package "api", syntax proto3)
// tslint:disable
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
@@ -6,8 +6,6 @@ import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ProjectService } from "./proj";
import type { CleanDeletedProjectsResult } from "./proj";
import type { CleanDeletedProjectsRequest } from "./proj";
import type { StartRecoverDataStreamingJobResult } from "./proj";
import type { StartRecoverDataStreamingJobRequest } from "./proj";
import type { OptimizeClickhouseResult } from "./proj";
import type { OptimizeClickhouseRequest } from "./proj";
import type { DeleteCassandraResult } from "./proj";
@@ -109,10 +107,6 @@ export interface IProjectServiceClient {
* @generated from protobuf rpc: OptimizeClickhouse(api.OptimizeClickhouseRequest) returns (api.OptimizeClickhouseResult);
*/
optimizeClickhouse(input: OptimizeClickhouseRequest, options?: RpcOptions): UnaryCall<OptimizeClickhouseRequest, OptimizeClickhouseResult>;
/**
* @generated from protobuf rpc: StartRecoverDataStreamingJob(api.StartRecoverDataStreamingJobRequest) returns (api.StartRecoverDataStreamingJobResult);
*/
startRecoverDataStreamingJob(input: StartRecoverDataStreamingJobRequest, options?: RpcOptions): UnaryCall<StartRecoverDataStreamingJobRequest, StartRecoverDataStreamingJobResult>;
/**
* @generated from protobuf rpc: CleanDeletedProjects(api.CleanDeletedProjectsRequest) returns (api.CleanDeletedProjectsResult);
*/
@@ -239,18 +233,11 @@ export class ProjectServiceClient implements IProjectServiceClient, ServiceInfo
const method = this.methods[15], opt = this._transport.mergeOptions(options);
return stackIntercept<OptimizeClickhouseRequest, OptimizeClickhouseResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: StartRecoverDataStreamingJob(api.StartRecoverDataStreamingJobRequest) returns (api.StartRecoverDataStreamingJobResult);
*/
startRecoverDataStreamingJob(input: StartRecoverDataStreamingJobRequest, options?: RpcOptions): UnaryCall<StartRecoverDataStreamingJobRequest, StartRecoverDataStreamingJobResult> {
const method = this.methods[16], opt = this._transport.mergeOptions(options);
return stackIntercept<StartRecoverDataStreamingJobRequest, StartRecoverDataStreamingJobResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CleanDeletedProjects(api.CleanDeletedProjectsRequest) returns (api.CleanDeletedProjectsResult);
*/
cleanDeletedProjects(input: CleanDeletedProjectsRequest, options?: RpcOptions): UnaryCall<CleanDeletedProjectsRequest, CleanDeletedProjectsResult> {
const method = this.methods[17], opt = this._transport.mergeOptions(options);
const method = this.methods[16], opt = this._transport.mergeOptions(options);
return stackIntercept<CleanDeletedProjectsRequest, CleanDeletedProjectsResult>("unary", this._transport, method, opt, input);
}
}