// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name,keep_enum_prefix // @generated from protobuf file "resource.proto" (package "api", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import { ResourceService } from "./resource"; import type { ListResourcesResponse } from "./resource"; import type { ListResourcesRequest } from "./resource"; import type { CleanResourceResult } from "./resource"; import type { CleanResourceRequest } from "./resource"; import type { DeleteResourceResponse } from "./resource"; import type { DeleteResourceRequest } from "./resource"; import { stackIntercept } from "@protobuf-ts/runtime-rpc"; import type { CreateResourceResponse } from "./resource"; import type { CreateResourceRequest } from "./resource"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * @generated from protobuf service api.ResourceService */ export interface IResourceServiceClient { /** * @generated from protobuf rpc: CreateResource */ createResource(input: CreateResourceRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: DeleteResource */ deleteResource(input: DeleteResourceRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: CleanResource */ cleanResource(input: CleanResourceRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: ListResources */ listResources(input: ListResourcesRequest, options?: RpcOptions): UnaryCall; } /** * @generated from protobuf service api.ResourceService */ export class ResourceServiceClient implements IResourceServiceClient, ServiceInfo { typeName = ResourceService.typeName; methods = ResourceService.methods; options = ResourceService.options; constructor(private readonly _transport: RpcTransport) { } /** * @generated from protobuf rpc: CreateResource */ createResource(input: CreateResourceRequest, options?: RpcOptions): UnaryCall { const method = this.methods[0], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: DeleteResource */ deleteResource(input: DeleteResourceRequest, options?: RpcOptions): UnaryCall { const method = this.methods[1], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: CleanResource */ cleanResource(input: CleanResourceRequest, options?: RpcOptions): UnaryCall { const method = this.methods[2], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: ListResources */ listResources(input: ListResourcesRequest, options?: RpcOptions): UnaryCall { const method = this.methods[3], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } }