// @generated by protoc-gen-connect-es v1.5.0 // @generated from file service/datamanager/v1/data_manager.proto (package viam.service.datamanager.v1, syntax proto3) /* eslint-disable */ // @ts-nocheck import { SyncRequest, SyncResponse, UploadBinaryDataToDatasetsRequest, UploadBinaryDataToDatasetsResponse } from "./data_manager_pb.js"; import { MethodKind } from "@bufbuild/protobuf"; import { DoCommandRequest, DoCommandResponse, GetStatusRequest, GetStatusResponse } from "../../../common/v1/common_pb.js"; /** * A DataManagerService service manages data between the robot and the cloud. * * @generated from service viam.service.datamanager.v1.DataManagerService */ export declare const DataManagerService: { readonly typeName: "viam.service.datamanager.v1.DataManagerService", readonly methods: { /** * Sync performs a sync of the non-synced files for the specified service name, * * @generated from rpc viam.service.datamanager.v1.DataManagerService.Sync */ readonly sync: { readonly name: "Sync", readonly I: typeof SyncRequest, readonly O: typeof SyncResponse, readonly kind: MethodKind.Unary, }, /** * DoCommand sends/receives arbitrary commands * * @generated from rpc viam.service.datamanager.v1.DataManagerService.DoCommand */ readonly doCommand: { readonly name: "DoCommand", readonly I: typeof DoCommandRequest, readonly O: typeof DoCommandResponse, readonly kind: MethodKind.Unary, }, /** * GetStatus returns the status of the resource * * @generated from rpc viam.service.datamanager.v1.DataManagerService.GetStatus */ readonly getStatus: { readonly name: "GetStatus", readonly I: typeof GetStatusRequest, readonly O: typeof GetStatusResponse, readonly kind: MethodKind.Unary, }, /** * UploadBinaryDataToDatasets uploads binary data to specified datasets. * * @generated from rpc viam.service.datamanager.v1.DataManagerService.UploadBinaryDataToDatasets */ readonly uploadBinaryDataToDatasets: { readonly name: "UploadBinaryDataToDatasets", readonly I: typeof UploadBinaryDataToDatasetsRequest, readonly O: typeof UploadBinaryDataToDatasetsResponse, readonly kind: MethodKind.Unary, }, } };