volume_server.pb.go 297 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.25.0-devel
  4. // protoc v3.12.3
  5. // source: volume_server.proto
  6. package volume_server_pb
  7. import (
  8. context "context"
  9. proto "github.com/golang/protobuf/proto"
  10. grpc "google.golang.org/grpc"
  11. codes "google.golang.org/grpc/codes"
  12. status "google.golang.org/grpc/status"
  13. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  14. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  15. reflect "reflect"
  16. sync "sync"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. // This is a compile-time assertion that a sufficiently up-to-date version
  25. // of the legacy proto package is being used.
  26. const _ = proto.ProtoPackageIsVersion4
  27. type BatchDeleteRequest struct {
  28. state protoimpl.MessageState
  29. sizeCache protoimpl.SizeCache
  30. unknownFields protoimpl.UnknownFields
  31. FileIds []string `protobuf:"bytes,1,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
  32. SkipCookieCheck bool `protobuf:"varint,2,opt,name=skip_cookie_check,json=skipCookieCheck,proto3" json:"skip_cookie_check,omitempty"`
  33. }
  34. func (x *BatchDeleteRequest) Reset() {
  35. *x = BatchDeleteRequest{}
  36. if protoimpl.UnsafeEnabled {
  37. mi := &file_volume_server_proto_msgTypes[0]
  38. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  39. ms.StoreMessageInfo(mi)
  40. }
  41. }
  42. func (x *BatchDeleteRequest) String() string {
  43. return protoimpl.X.MessageStringOf(x)
  44. }
  45. func (*BatchDeleteRequest) ProtoMessage() {}
  46. func (x *BatchDeleteRequest) ProtoReflect() protoreflect.Message {
  47. mi := &file_volume_server_proto_msgTypes[0]
  48. if protoimpl.UnsafeEnabled && x != nil {
  49. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  50. if ms.LoadMessageInfo() == nil {
  51. ms.StoreMessageInfo(mi)
  52. }
  53. return ms
  54. }
  55. return mi.MessageOf(x)
  56. }
  57. // Deprecated: Use BatchDeleteRequest.ProtoReflect.Descriptor instead.
  58. func (*BatchDeleteRequest) Descriptor() ([]byte, []int) {
  59. return file_volume_server_proto_rawDescGZIP(), []int{0}
  60. }
  61. func (x *BatchDeleteRequest) GetFileIds() []string {
  62. if x != nil {
  63. return x.FileIds
  64. }
  65. return nil
  66. }
  67. func (x *BatchDeleteRequest) GetSkipCookieCheck() bool {
  68. if x != nil {
  69. return x.SkipCookieCheck
  70. }
  71. return false
  72. }
  73. type BatchDeleteResponse struct {
  74. state protoimpl.MessageState
  75. sizeCache protoimpl.SizeCache
  76. unknownFields protoimpl.UnknownFields
  77. Results []*DeleteResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
  78. }
  79. func (x *BatchDeleteResponse) Reset() {
  80. *x = BatchDeleteResponse{}
  81. if protoimpl.UnsafeEnabled {
  82. mi := &file_volume_server_proto_msgTypes[1]
  83. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  84. ms.StoreMessageInfo(mi)
  85. }
  86. }
  87. func (x *BatchDeleteResponse) String() string {
  88. return protoimpl.X.MessageStringOf(x)
  89. }
  90. func (*BatchDeleteResponse) ProtoMessage() {}
  91. func (x *BatchDeleteResponse) ProtoReflect() protoreflect.Message {
  92. mi := &file_volume_server_proto_msgTypes[1]
  93. if protoimpl.UnsafeEnabled && x != nil {
  94. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  95. if ms.LoadMessageInfo() == nil {
  96. ms.StoreMessageInfo(mi)
  97. }
  98. return ms
  99. }
  100. return mi.MessageOf(x)
  101. }
  102. // Deprecated: Use BatchDeleteResponse.ProtoReflect.Descriptor instead.
  103. func (*BatchDeleteResponse) Descriptor() ([]byte, []int) {
  104. return file_volume_server_proto_rawDescGZIP(), []int{1}
  105. }
  106. func (x *BatchDeleteResponse) GetResults() []*DeleteResult {
  107. if x != nil {
  108. return x.Results
  109. }
  110. return nil
  111. }
  112. type DeleteResult struct {
  113. state protoimpl.MessageState
  114. sizeCache protoimpl.SizeCache
  115. unknownFields protoimpl.UnknownFields
  116. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
  117. Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
  118. Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
  119. Size uint32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  120. Version uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"`
  121. }
  122. func (x *DeleteResult) Reset() {
  123. *x = DeleteResult{}
  124. if protoimpl.UnsafeEnabled {
  125. mi := &file_volume_server_proto_msgTypes[2]
  126. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  127. ms.StoreMessageInfo(mi)
  128. }
  129. }
  130. func (x *DeleteResult) String() string {
  131. return protoimpl.X.MessageStringOf(x)
  132. }
  133. func (*DeleteResult) ProtoMessage() {}
  134. func (x *DeleteResult) ProtoReflect() protoreflect.Message {
  135. mi := &file_volume_server_proto_msgTypes[2]
  136. if protoimpl.UnsafeEnabled && x != nil {
  137. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  138. if ms.LoadMessageInfo() == nil {
  139. ms.StoreMessageInfo(mi)
  140. }
  141. return ms
  142. }
  143. return mi.MessageOf(x)
  144. }
  145. // Deprecated: Use DeleteResult.ProtoReflect.Descriptor instead.
  146. func (*DeleteResult) Descriptor() ([]byte, []int) {
  147. return file_volume_server_proto_rawDescGZIP(), []int{2}
  148. }
  149. func (x *DeleteResult) GetFileId() string {
  150. if x != nil {
  151. return x.FileId
  152. }
  153. return ""
  154. }
  155. func (x *DeleteResult) GetStatus() int32 {
  156. if x != nil {
  157. return x.Status
  158. }
  159. return 0
  160. }
  161. func (x *DeleteResult) GetError() string {
  162. if x != nil {
  163. return x.Error
  164. }
  165. return ""
  166. }
  167. func (x *DeleteResult) GetSize() uint32 {
  168. if x != nil {
  169. return x.Size
  170. }
  171. return 0
  172. }
  173. func (x *DeleteResult) GetVersion() uint32 {
  174. if x != nil {
  175. return x.Version
  176. }
  177. return 0
  178. }
  179. type Empty struct {
  180. state protoimpl.MessageState
  181. sizeCache protoimpl.SizeCache
  182. unknownFields protoimpl.UnknownFields
  183. }
  184. func (x *Empty) Reset() {
  185. *x = Empty{}
  186. if protoimpl.UnsafeEnabled {
  187. mi := &file_volume_server_proto_msgTypes[3]
  188. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  189. ms.StoreMessageInfo(mi)
  190. }
  191. }
  192. func (x *Empty) String() string {
  193. return protoimpl.X.MessageStringOf(x)
  194. }
  195. func (*Empty) ProtoMessage() {}
  196. func (x *Empty) ProtoReflect() protoreflect.Message {
  197. mi := &file_volume_server_proto_msgTypes[3]
  198. if protoimpl.UnsafeEnabled && x != nil {
  199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  200. if ms.LoadMessageInfo() == nil {
  201. ms.StoreMessageInfo(mi)
  202. }
  203. return ms
  204. }
  205. return mi.MessageOf(x)
  206. }
  207. // Deprecated: Use Empty.ProtoReflect.Descriptor instead.
  208. func (*Empty) Descriptor() ([]byte, []int) {
  209. return file_volume_server_proto_rawDescGZIP(), []int{3}
  210. }
  211. type VacuumVolumeCheckRequest struct {
  212. state protoimpl.MessageState
  213. sizeCache protoimpl.SizeCache
  214. unknownFields protoimpl.UnknownFields
  215. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  216. }
  217. func (x *VacuumVolumeCheckRequest) Reset() {
  218. *x = VacuumVolumeCheckRequest{}
  219. if protoimpl.UnsafeEnabled {
  220. mi := &file_volume_server_proto_msgTypes[4]
  221. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  222. ms.StoreMessageInfo(mi)
  223. }
  224. }
  225. func (x *VacuumVolumeCheckRequest) String() string {
  226. return protoimpl.X.MessageStringOf(x)
  227. }
  228. func (*VacuumVolumeCheckRequest) ProtoMessage() {}
  229. func (x *VacuumVolumeCheckRequest) ProtoReflect() protoreflect.Message {
  230. mi := &file_volume_server_proto_msgTypes[4]
  231. if protoimpl.UnsafeEnabled && x != nil {
  232. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  233. if ms.LoadMessageInfo() == nil {
  234. ms.StoreMessageInfo(mi)
  235. }
  236. return ms
  237. }
  238. return mi.MessageOf(x)
  239. }
  240. // Deprecated: Use VacuumVolumeCheckRequest.ProtoReflect.Descriptor instead.
  241. func (*VacuumVolumeCheckRequest) Descriptor() ([]byte, []int) {
  242. return file_volume_server_proto_rawDescGZIP(), []int{4}
  243. }
  244. func (x *VacuumVolumeCheckRequest) GetVolumeId() uint32 {
  245. if x != nil {
  246. return x.VolumeId
  247. }
  248. return 0
  249. }
  250. type VacuumVolumeCheckResponse struct {
  251. state protoimpl.MessageState
  252. sizeCache protoimpl.SizeCache
  253. unknownFields protoimpl.UnknownFields
  254. GarbageRatio float64 `protobuf:"fixed64,1,opt,name=garbage_ratio,json=garbageRatio,proto3" json:"garbage_ratio,omitempty"`
  255. }
  256. func (x *VacuumVolumeCheckResponse) Reset() {
  257. *x = VacuumVolumeCheckResponse{}
  258. if protoimpl.UnsafeEnabled {
  259. mi := &file_volume_server_proto_msgTypes[5]
  260. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  261. ms.StoreMessageInfo(mi)
  262. }
  263. }
  264. func (x *VacuumVolumeCheckResponse) String() string {
  265. return protoimpl.X.MessageStringOf(x)
  266. }
  267. func (*VacuumVolumeCheckResponse) ProtoMessage() {}
  268. func (x *VacuumVolumeCheckResponse) ProtoReflect() protoreflect.Message {
  269. mi := &file_volume_server_proto_msgTypes[5]
  270. if protoimpl.UnsafeEnabled && x != nil {
  271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  272. if ms.LoadMessageInfo() == nil {
  273. ms.StoreMessageInfo(mi)
  274. }
  275. return ms
  276. }
  277. return mi.MessageOf(x)
  278. }
  279. // Deprecated: Use VacuumVolumeCheckResponse.ProtoReflect.Descriptor instead.
  280. func (*VacuumVolumeCheckResponse) Descriptor() ([]byte, []int) {
  281. return file_volume_server_proto_rawDescGZIP(), []int{5}
  282. }
  283. func (x *VacuumVolumeCheckResponse) GetGarbageRatio() float64 {
  284. if x != nil {
  285. return x.GarbageRatio
  286. }
  287. return 0
  288. }
  289. type VacuumVolumeCompactRequest struct {
  290. state protoimpl.MessageState
  291. sizeCache protoimpl.SizeCache
  292. unknownFields protoimpl.UnknownFields
  293. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  294. Preallocate int64 `protobuf:"varint,2,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  295. }
  296. func (x *VacuumVolumeCompactRequest) Reset() {
  297. *x = VacuumVolumeCompactRequest{}
  298. if protoimpl.UnsafeEnabled {
  299. mi := &file_volume_server_proto_msgTypes[6]
  300. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  301. ms.StoreMessageInfo(mi)
  302. }
  303. }
  304. func (x *VacuumVolumeCompactRequest) String() string {
  305. return protoimpl.X.MessageStringOf(x)
  306. }
  307. func (*VacuumVolumeCompactRequest) ProtoMessage() {}
  308. func (x *VacuumVolumeCompactRequest) ProtoReflect() protoreflect.Message {
  309. mi := &file_volume_server_proto_msgTypes[6]
  310. if protoimpl.UnsafeEnabled && x != nil {
  311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  312. if ms.LoadMessageInfo() == nil {
  313. ms.StoreMessageInfo(mi)
  314. }
  315. return ms
  316. }
  317. return mi.MessageOf(x)
  318. }
  319. // Deprecated: Use VacuumVolumeCompactRequest.ProtoReflect.Descriptor instead.
  320. func (*VacuumVolumeCompactRequest) Descriptor() ([]byte, []int) {
  321. return file_volume_server_proto_rawDescGZIP(), []int{6}
  322. }
  323. func (x *VacuumVolumeCompactRequest) GetVolumeId() uint32 {
  324. if x != nil {
  325. return x.VolumeId
  326. }
  327. return 0
  328. }
  329. func (x *VacuumVolumeCompactRequest) GetPreallocate() int64 {
  330. if x != nil {
  331. return x.Preallocate
  332. }
  333. return 0
  334. }
  335. type VacuumVolumeCompactResponse struct {
  336. state protoimpl.MessageState
  337. sizeCache protoimpl.SizeCache
  338. unknownFields protoimpl.UnknownFields
  339. }
  340. func (x *VacuumVolumeCompactResponse) Reset() {
  341. *x = VacuumVolumeCompactResponse{}
  342. if protoimpl.UnsafeEnabled {
  343. mi := &file_volume_server_proto_msgTypes[7]
  344. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  345. ms.StoreMessageInfo(mi)
  346. }
  347. }
  348. func (x *VacuumVolumeCompactResponse) String() string {
  349. return protoimpl.X.MessageStringOf(x)
  350. }
  351. func (*VacuumVolumeCompactResponse) ProtoMessage() {}
  352. func (x *VacuumVolumeCompactResponse) ProtoReflect() protoreflect.Message {
  353. mi := &file_volume_server_proto_msgTypes[7]
  354. if protoimpl.UnsafeEnabled && x != nil {
  355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  356. if ms.LoadMessageInfo() == nil {
  357. ms.StoreMessageInfo(mi)
  358. }
  359. return ms
  360. }
  361. return mi.MessageOf(x)
  362. }
  363. // Deprecated: Use VacuumVolumeCompactResponse.ProtoReflect.Descriptor instead.
  364. func (*VacuumVolumeCompactResponse) Descriptor() ([]byte, []int) {
  365. return file_volume_server_proto_rawDescGZIP(), []int{7}
  366. }
  367. type VacuumVolumeCommitRequest struct {
  368. state protoimpl.MessageState
  369. sizeCache protoimpl.SizeCache
  370. unknownFields protoimpl.UnknownFields
  371. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  372. }
  373. func (x *VacuumVolumeCommitRequest) Reset() {
  374. *x = VacuumVolumeCommitRequest{}
  375. if protoimpl.UnsafeEnabled {
  376. mi := &file_volume_server_proto_msgTypes[8]
  377. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  378. ms.StoreMessageInfo(mi)
  379. }
  380. }
  381. func (x *VacuumVolumeCommitRequest) String() string {
  382. return protoimpl.X.MessageStringOf(x)
  383. }
  384. func (*VacuumVolumeCommitRequest) ProtoMessage() {}
  385. func (x *VacuumVolumeCommitRequest) ProtoReflect() protoreflect.Message {
  386. mi := &file_volume_server_proto_msgTypes[8]
  387. if protoimpl.UnsafeEnabled && x != nil {
  388. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  389. if ms.LoadMessageInfo() == nil {
  390. ms.StoreMessageInfo(mi)
  391. }
  392. return ms
  393. }
  394. return mi.MessageOf(x)
  395. }
  396. // Deprecated: Use VacuumVolumeCommitRequest.ProtoReflect.Descriptor instead.
  397. func (*VacuumVolumeCommitRequest) Descriptor() ([]byte, []int) {
  398. return file_volume_server_proto_rawDescGZIP(), []int{8}
  399. }
  400. func (x *VacuumVolumeCommitRequest) GetVolumeId() uint32 {
  401. if x != nil {
  402. return x.VolumeId
  403. }
  404. return 0
  405. }
  406. type VacuumVolumeCommitResponse struct {
  407. state protoimpl.MessageState
  408. sizeCache protoimpl.SizeCache
  409. unknownFields protoimpl.UnknownFields
  410. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  411. }
  412. func (x *VacuumVolumeCommitResponse) Reset() {
  413. *x = VacuumVolumeCommitResponse{}
  414. if protoimpl.UnsafeEnabled {
  415. mi := &file_volume_server_proto_msgTypes[9]
  416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  417. ms.StoreMessageInfo(mi)
  418. }
  419. }
  420. func (x *VacuumVolumeCommitResponse) String() string {
  421. return protoimpl.X.MessageStringOf(x)
  422. }
  423. func (*VacuumVolumeCommitResponse) ProtoMessage() {}
  424. func (x *VacuumVolumeCommitResponse) ProtoReflect() protoreflect.Message {
  425. mi := &file_volume_server_proto_msgTypes[9]
  426. if protoimpl.UnsafeEnabled && x != nil {
  427. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  428. if ms.LoadMessageInfo() == nil {
  429. ms.StoreMessageInfo(mi)
  430. }
  431. return ms
  432. }
  433. return mi.MessageOf(x)
  434. }
  435. // Deprecated: Use VacuumVolumeCommitResponse.ProtoReflect.Descriptor instead.
  436. func (*VacuumVolumeCommitResponse) Descriptor() ([]byte, []int) {
  437. return file_volume_server_proto_rawDescGZIP(), []int{9}
  438. }
  439. func (x *VacuumVolumeCommitResponse) GetIsReadOnly() bool {
  440. if x != nil {
  441. return x.IsReadOnly
  442. }
  443. return false
  444. }
  445. type VacuumVolumeCleanupRequest struct {
  446. state protoimpl.MessageState
  447. sizeCache protoimpl.SizeCache
  448. unknownFields protoimpl.UnknownFields
  449. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  450. }
  451. func (x *VacuumVolumeCleanupRequest) Reset() {
  452. *x = VacuumVolumeCleanupRequest{}
  453. if protoimpl.UnsafeEnabled {
  454. mi := &file_volume_server_proto_msgTypes[10]
  455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  456. ms.StoreMessageInfo(mi)
  457. }
  458. }
  459. func (x *VacuumVolumeCleanupRequest) String() string {
  460. return protoimpl.X.MessageStringOf(x)
  461. }
  462. func (*VacuumVolumeCleanupRequest) ProtoMessage() {}
  463. func (x *VacuumVolumeCleanupRequest) ProtoReflect() protoreflect.Message {
  464. mi := &file_volume_server_proto_msgTypes[10]
  465. if protoimpl.UnsafeEnabled && x != nil {
  466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  467. if ms.LoadMessageInfo() == nil {
  468. ms.StoreMessageInfo(mi)
  469. }
  470. return ms
  471. }
  472. return mi.MessageOf(x)
  473. }
  474. // Deprecated: Use VacuumVolumeCleanupRequest.ProtoReflect.Descriptor instead.
  475. func (*VacuumVolumeCleanupRequest) Descriptor() ([]byte, []int) {
  476. return file_volume_server_proto_rawDescGZIP(), []int{10}
  477. }
  478. func (x *VacuumVolumeCleanupRequest) GetVolumeId() uint32 {
  479. if x != nil {
  480. return x.VolumeId
  481. }
  482. return 0
  483. }
  484. type VacuumVolumeCleanupResponse struct {
  485. state protoimpl.MessageState
  486. sizeCache protoimpl.SizeCache
  487. unknownFields protoimpl.UnknownFields
  488. }
  489. func (x *VacuumVolumeCleanupResponse) Reset() {
  490. *x = VacuumVolumeCleanupResponse{}
  491. if protoimpl.UnsafeEnabled {
  492. mi := &file_volume_server_proto_msgTypes[11]
  493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  494. ms.StoreMessageInfo(mi)
  495. }
  496. }
  497. func (x *VacuumVolumeCleanupResponse) String() string {
  498. return protoimpl.X.MessageStringOf(x)
  499. }
  500. func (*VacuumVolumeCleanupResponse) ProtoMessage() {}
  501. func (x *VacuumVolumeCleanupResponse) ProtoReflect() protoreflect.Message {
  502. mi := &file_volume_server_proto_msgTypes[11]
  503. if protoimpl.UnsafeEnabled && x != nil {
  504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  505. if ms.LoadMessageInfo() == nil {
  506. ms.StoreMessageInfo(mi)
  507. }
  508. return ms
  509. }
  510. return mi.MessageOf(x)
  511. }
  512. // Deprecated: Use VacuumVolumeCleanupResponse.ProtoReflect.Descriptor instead.
  513. func (*VacuumVolumeCleanupResponse) Descriptor() ([]byte, []int) {
  514. return file_volume_server_proto_rawDescGZIP(), []int{11}
  515. }
  516. type DeleteCollectionRequest struct {
  517. state protoimpl.MessageState
  518. sizeCache protoimpl.SizeCache
  519. unknownFields protoimpl.UnknownFields
  520. Collection string `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty"`
  521. }
  522. func (x *DeleteCollectionRequest) Reset() {
  523. *x = DeleteCollectionRequest{}
  524. if protoimpl.UnsafeEnabled {
  525. mi := &file_volume_server_proto_msgTypes[12]
  526. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  527. ms.StoreMessageInfo(mi)
  528. }
  529. }
  530. func (x *DeleteCollectionRequest) String() string {
  531. return protoimpl.X.MessageStringOf(x)
  532. }
  533. func (*DeleteCollectionRequest) ProtoMessage() {}
  534. func (x *DeleteCollectionRequest) ProtoReflect() protoreflect.Message {
  535. mi := &file_volume_server_proto_msgTypes[12]
  536. if protoimpl.UnsafeEnabled && x != nil {
  537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  538. if ms.LoadMessageInfo() == nil {
  539. ms.StoreMessageInfo(mi)
  540. }
  541. return ms
  542. }
  543. return mi.MessageOf(x)
  544. }
  545. // Deprecated: Use DeleteCollectionRequest.ProtoReflect.Descriptor instead.
  546. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) {
  547. return file_volume_server_proto_rawDescGZIP(), []int{12}
  548. }
  549. func (x *DeleteCollectionRequest) GetCollection() string {
  550. if x != nil {
  551. return x.Collection
  552. }
  553. return ""
  554. }
  555. type DeleteCollectionResponse struct {
  556. state protoimpl.MessageState
  557. sizeCache protoimpl.SizeCache
  558. unknownFields protoimpl.UnknownFields
  559. }
  560. func (x *DeleteCollectionResponse) Reset() {
  561. *x = DeleteCollectionResponse{}
  562. if protoimpl.UnsafeEnabled {
  563. mi := &file_volume_server_proto_msgTypes[13]
  564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  565. ms.StoreMessageInfo(mi)
  566. }
  567. }
  568. func (x *DeleteCollectionResponse) String() string {
  569. return protoimpl.X.MessageStringOf(x)
  570. }
  571. func (*DeleteCollectionResponse) ProtoMessage() {}
  572. func (x *DeleteCollectionResponse) ProtoReflect() protoreflect.Message {
  573. mi := &file_volume_server_proto_msgTypes[13]
  574. if protoimpl.UnsafeEnabled && x != nil {
  575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  576. if ms.LoadMessageInfo() == nil {
  577. ms.StoreMessageInfo(mi)
  578. }
  579. return ms
  580. }
  581. return mi.MessageOf(x)
  582. }
  583. // Deprecated: Use DeleteCollectionResponse.ProtoReflect.Descriptor instead.
  584. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) {
  585. return file_volume_server_proto_rawDescGZIP(), []int{13}
  586. }
  587. type AllocateVolumeRequest struct {
  588. state protoimpl.MessageState
  589. sizeCache protoimpl.SizeCache
  590. unknownFields protoimpl.UnknownFields
  591. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  592. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  593. Preallocate int64 `protobuf:"varint,3,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  594. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  595. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  596. MemoryMapMaxSizeMb uint32 `protobuf:"varint,6,opt,name=memory_map_max_size_mb,json=memoryMapMaxSizeMb,proto3" json:"memory_map_max_size_mb,omitempty"`
  597. }
  598. func (x *AllocateVolumeRequest) Reset() {
  599. *x = AllocateVolumeRequest{}
  600. if protoimpl.UnsafeEnabled {
  601. mi := &file_volume_server_proto_msgTypes[14]
  602. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  603. ms.StoreMessageInfo(mi)
  604. }
  605. }
  606. func (x *AllocateVolumeRequest) String() string {
  607. return protoimpl.X.MessageStringOf(x)
  608. }
  609. func (*AllocateVolumeRequest) ProtoMessage() {}
  610. func (x *AllocateVolumeRequest) ProtoReflect() protoreflect.Message {
  611. mi := &file_volume_server_proto_msgTypes[14]
  612. if protoimpl.UnsafeEnabled && x != nil {
  613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  614. if ms.LoadMessageInfo() == nil {
  615. ms.StoreMessageInfo(mi)
  616. }
  617. return ms
  618. }
  619. return mi.MessageOf(x)
  620. }
  621. // Deprecated: Use AllocateVolumeRequest.ProtoReflect.Descriptor instead.
  622. func (*AllocateVolumeRequest) Descriptor() ([]byte, []int) {
  623. return file_volume_server_proto_rawDescGZIP(), []int{14}
  624. }
  625. func (x *AllocateVolumeRequest) GetVolumeId() uint32 {
  626. if x != nil {
  627. return x.VolumeId
  628. }
  629. return 0
  630. }
  631. func (x *AllocateVolumeRequest) GetCollection() string {
  632. if x != nil {
  633. return x.Collection
  634. }
  635. return ""
  636. }
  637. func (x *AllocateVolumeRequest) GetPreallocate() int64 {
  638. if x != nil {
  639. return x.Preallocate
  640. }
  641. return 0
  642. }
  643. func (x *AllocateVolumeRequest) GetReplication() string {
  644. if x != nil {
  645. return x.Replication
  646. }
  647. return ""
  648. }
  649. func (x *AllocateVolumeRequest) GetTtl() string {
  650. if x != nil {
  651. return x.Ttl
  652. }
  653. return ""
  654. }
  655. func (x *AllocateVolumeRequest) GetMemoryMapMaxSizeMb() uint32 {
  656. if x != nil {
  657. return x.MemoryMapMaxSizeMb
  658. }
  659. return 0
  660. }
  661. type AllocateVolumeResponse struct {
  662. state protoimpl.MessageState
  663. sizeCache protoimpl.SizeCache
  664. unknownFields protoimpl.UnknownFields
  665. }
  666. func (x *AllocateVolumeResponse) Reset() {
  667. *x = AllocateVolumeResponse{}
  668. if protoimpl.UnsafeEnabled {
  669. mi := &file_volume_server_proto_msgTypes[15]
  670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  671. ms.StoreMessageInfo(mi)
  672. }
  673. }
  674. func (x *AllocateVolumeResponse) String() string {
  675. return protoimpl.X.MessageStringOf(x)
  676. }
  677. func (*AllocateVolumeResponse) ProtoMessage() {}
  678. func (x *AllocateVolumeResponse) ProtoReflect() protoreflect.Message {
  679. mi := &file_volume_server_proto_msgTypes[15]
  680. if protoimpl.UnsafeEnabled && x != nil {
  681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  682. if ms.LoadMessageInfo() == nil {
  683. ms.StoreMessageInfo(mi)
  684. }
  685. return ms
  686. }
  687. return mi.MessageOf(x)
  688. }
  689. // Deprecated: Use AllocateVolumeResponse.ProtoReflect.Descriptor instead.
  690. func (*AllocateVolumeResponse) Descriptor() ([]byte, []int) {
  691. return file_volume_server_proto_rawDescGZIP(), []int{15}
  692. }
  693. type VolumeSyncStatusRequest struct {
  694. state protoimpl.MessageState
  695. sizeCache protoimpl.SizeCache
  696. unknownFields protoimpl.UnknownFields
  697. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  698. }
  699. func (x *VolumeSyncStatusRequest) Reset() {
  700. *x = VolumeSyncStatusRequest{}
  701. if protoimpl.UnsafeEnabled {
  702. mi := &file_volume_server_proto_msgTypes[16]
  703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  704. ms.StoreMessageInfo(mi)
  705. }
  706. }
  707. func (x *VolumeSyncStatusRequest) String() string {
  708. return protoimpl.X.MessageStringOf(x)
  709. }
  710. func (*VolumeSyncStatusRequest) ProtoMessage() {}
  711. func (x *VolumeSyncStatusRequest) ProtoReflect() protoreflect.Message {
  712. mi := &file_volume_server_proto_msgTypes[16]
  713. if protoimpl.UnsafeEnabled && x != nil {
  714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  715. if ms.LoadMessageInfo() == nil {
  716. ms.StoreMessageInfo(mi)
  717. }
  718. return ms
  719. }
  720. return mi.MessageOf(x)
  721. }
  722. // Deprecated: Use VolumeSyncStatusRequest.ProtoReflect.Descriptor instead.
  723. func (*VolumeSyncStatusRequest) Descriptor() ([]byte, []int) {
  724. return file_volume_server_proto_rawDescGZIP(), []int{16}
  725. }
  726. func (x *VolumeSyncStatusRequest) GetVolumeId() uint32 {
  727. if x != nil {
  728. return x.VolumeId
  729. }
  730. return 0
  731. }
  732. type VolumeSyncStatusResponse struct {
  733. state protoimpl.MessageState
  734. sizeCache protoimpl.SizeCache
  735. unknownFields protoimpl.UnknownFields
  736. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  737. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  738. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  739. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  740. TailOffset uint64 `protobuf:"varint,6,opt,name=tail_offset,json=tailOffset,proto3" json:"tail_offset,omitempty"`
  741. CompactRevision uint32 `protobuf:"varint,7,opt,name=compact_revision,json=compactRevision,proto3" json:"compact_revision,omitempty"`
  742. IdxFileSize uint64 `protobuf:"varint,8,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  743. }
  744. func (x *VolumeSyncStatusResponse) Reset() {
  745. *x = VolumeSyncStatusResponse{}
  746. if protoimpl.UnsafeEnabled {
  747. mi := &file_volume_server_proto_msgTypes[17]
  748. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  749. ms.StoreMessageInfo(mi)
  750. }
  751. }
  752. func (x *VolumeSyncStatusResponse) String() string {
  753. return protoimpl.X.MessageStringOf(x)
  754. }
  755. func (*VolumeSyncStatusResponse) ProtoMessage() {}
  756. func (x *VolumeSyncStatusResponse) ProtoReflect() protoreflect.Message {
  757. mi := &file_volume_server_proto_msgTypes[17]
  758. if protoimpl.UnsafeEnabled && x != nil {
  759. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  760. if ms.LoadMessageInfo() == nil {
  761. ms.StoreMessageInfo(mi)
  762. }
  763. return ms
  764. }
  765. return mi.MessageOf(x)
  766. }
  767. // Deprecated: Use VolumeSyncStatusResponse.ProtoReflect.Descriptor instead.
  768. func (*VolumeSyncStatusResponse) Descriptor() ([]byte, []int) {
  769. return file_volume_server_proto_rawDescGZIP(), []int{17}
  770. }
  771. func (x *VolumeSyncStatusResponse) GetVolumeId() uint32 {
  772. if x != nil {
  773. return x.VolumeId
  774. }
  775. return 0
  776. }
  777. func (x *VolumeSyncStatusResponse) GetCollection() string {
  778. if x != nil {
  779. return x.Collection
  780. }
  781. return ""
  782. }
  783. func (x *VolumeSyncStatusResponse) GetReplication() string {
  784. if x != nil {
  785. return x.Replication
  786. }
  787. return ""
  788. }
  789. func (x *VolumeSyncStatusResponse) GetTtl() string {
  790. if x != nil {
  791. return x.Ttl
  792. }
  793. return ""
  794. }
  795. func (x *VolumeSyncStatusResponse) GetTailOffset() uint64 {
  796. if x != nil {
  797. return x.TailOffset
  798. }
  799. return 0
  800. }
  801. func (x *VolumeSyncStatusResponse) GetCompactRevision() uint32 {
  802. if x != nil {
  803. return x.CompactRevision
  804. }
  805. return 0
  806. }
  807. func (x *VolumeSyncStatusResponse) GetIdxFileSize() uint64 {
  808. if x != nil {
  809. return x.IdxFileSize
  810. }
  811. return 0
  812. }
  813. type VolumeIncrementalCopyRequest struct {
  814. state protoimpl.MessageState
  815. sizeCache protoimpl.SizeCache
  816. unknownFields protoimpl.UnknownFields
  817. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  818. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  819. }
  820. func (x *VolumeIncrementalCopyRequest) Reset() {
  821. *x = VolumeIncrementalCopyRequest{}
  822. if protoimpl.UnsafeEnabled {
  823. mi := &file_volume_server_proto_msgTypes[18]
  824. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  825. ms.StoreMessageInfo(mi)
  826. }
  827. }
  828. func (x *VolumeIncrementalCopyRequest) String() string {
  829. return protoimpl.X.MessageStringOf(x)
  830. }
  831. func (*VolumeIncrementalCopyRequest) ProtoMessage() {}
  832. func (x *VolumeIncrementalCopyRequest) ProtoReflect() protoreflect.Message {
  833. mi := &file_volume_server_proto_msgTypes[18]
  834. if protoimpl.UnsafeEnabled && x != nil {
  835. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  836. if ms.LoadMessageInfo() == nil {
  837. ms.StoreMessageInfo(mi)
  838. }
  839. return ms
  840. }
  841. return mi.MessageOf(x)
  842. }
  843. // Deprecated: Use VolumeIncrementalCopyRequest.ProtoReflect.Descriptor instead.
  844. func (*VolumeIncrementalCopyRequest) Descriptor() ([]byte, []int) {
  845. return file_volume_server_proto_rawDescGZIP(), []int{18}
  846. }
  847. func (x *VolumeIncrementalCopyRequest) GetVolumeId() uint32 {
  848. if x != nil {
  849. return x.VolumeId
  850. }
  851. return 0
  852. }
  853. func (x *VolumeIncrementalCopyRequest) GetSinceNs() uint64 {
  854. if x != nil {
  855. return x.SinceNs
  856. }
  857. return 0
  858. }
  859. type VolumeIncrementalCopyResponse struct {
  860. state protoimpl.MessageState
  861. sizeCache protoimpl.SizeCache
  862. unknownFields protoimpl.UnknownFields
  863. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  864. }
  865. func (x *VolumeIncrementalCopyResponse) Reset() {
  866. *x = VolumeIncrementalCopyResponse{}
  867. if protoimpl.UnsafeEnabled {
  868. mi := &file_volume_server_proto_msgTypes[19]
  869. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  870. ms.StoreMessageInfo(mi)
  871. }
  872. }
  873. func (x *VolumeIncrementalCopyResponse) String() string {
  874. return protoimpl.X.MessageStringOf(x)
  875. }
  876. func (*VolumeIncrementalCopyResponse) ProtoMessage() {}
  877. func (x *VolumeIncrementalCopyResponse) ProtoReflect() protoreflect.Message {
  878. mi := &file_volume_server_proto_msgTypes[19]
  879. if protoimpl.UnsafeEnabled && x != nil {
  880. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  881. if ms.LoadMessageInfo() == nil {
  882. ms.StoreMessageInfo(mi)
  883. }
  884. return ms
  885. }
  886. return mi.MessageOf(x)
  887. }
  888. // Deprecated: Use VolumeIncrementalCopyResponse.ProtoReflect.Descriptor instead.
  889. func (*VolumeIncrementalCopyResponse) Descriptor() ([]byte, []int) {
  890. return file_volume_server_proto_rawDescGZIP(), []int{19}
  891. }
  892. func (x *VolumeIncrementalCopyResponse) GetFileContent() []byte {
  893. if x != nil {
  894. return x.FileContent
  895. }
  896. return nil
  897. }
  898. type VolumeMountRequest struct {
  899. state protoimpl.MessageState
  900. sizeCache protoimpl.SizeCache
  901. unknownFields protoimpl.UnknownFields
  902. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  903. }
  904. func (x *VolumeMountRequest) Reset() {
  905. *x = VolumeMountRequest{}
  906. if protoimpl.UnsafeEnabled {
  907. mi := &file_volume_server_proto_msgTypes[20]
  908. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  909. ms.StoreMessageInfo(mi)
  910. }
  911. }
  912. func (x *VolumeMountRequest) String() string {
  913. return protoimpl.X.MessageStringOf(x)
  914. }
  915. func (*VolumeMountRequest) ProtoMessage() {}
  916. func (x *VolumeMountRequest) ProtoReflect() protoreflect.Message {
  917. mi := &file_volume_server_proto_msgTypes[20]
  918. if protoimpl.UnsafeEnabled && x != nil {
  919. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  920. if ms.LoadMessageInfo() == nil {
  921. ms.StoreMessageInfo(mi)
  922. }
  923. return ms
  924. }
  925. return mi.MessageOf(x)
  926. }
  927. // Deprecated: Use VolumeMountRequest.ProtoReflect.Descriptor instead.
  928. func (*VolumeMountRequest) Descriptor() ([]byte, []int) {
  929. return file_volume_server_proto_rawDescGZIP(), []int{20}
  930. }
  931. func (x *VolumeMountRequest) GetVolumeId() uint32 {
  932. if x != nil {
  933. return x.VolumeId
  934. }
  935. return 0
  936. }
  937. type VolumeMountResponse struct {
  938. state protoimpl.MessageState
  939. sizeCache protoimpl.SizeCache
  940. unknownFields protoimpl.UnknownFields
  941. }
  942. func (x *VolumeMountResponse) Reset() {
  943. *x = VolumeMountResponse{}
  944. if protoimpl.UnsafeEnabled {
  945. mi := &file_volume_server_proto_msgTypes[21]
  946. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  947. ms.StoreMessageInfo(mi)
  948. }
  949. }
  950. func (x *VolumeMountResponse) String() string {
  951. return protoimpl.X.MessageStringOf(x)
  952. }
  953. func (*VolumeMountResponse) ProtoMessage() {}
  954. func (x *VolumeMountResponse) ProtoReflect() protoreflect.Message {
  955. mi := &file_volume_server_proto_msgTypes[21]
  956. if protoimpl.UnsafeEnabled && x != nil {
  957. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  958. if ms.LoadMessageInfo() == nil {
  959. ms.StoreMessageInfo(mi)
  960. }
  961. return ms
  962. }
  963. return mi.MessageOf(x)
  964. }
  965. // Deprecated: Use VolumeMountResponse.ProtoReflect.Descriptor instead.
  966. func (*VolumeMountResponse) Descriptor() ([]byte, []int) {
  967. return file_volume_server_proto_rawDescGZIP(), []int{21}
  968. }
  969. type VolumeUnmountRequest struct {
  970. state protoimpl.MessageState
  971. sizeCache protoimpl.SizeCache
  972. unknownFields protoimpl.UnknownFields
  973. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  974. }
  975. func (x *VolumeUnmountRequest) Reset() {
  976. *x = VolumeUnmountRequest{}
  977. if protoimpl.UnsafeEnabled {
  978. mi := &file_volume_server_proto_msgTypes[22]
  979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  980. ms.StoreMessageInfo(mi)
  981. }
  982. }
  983. func (x *VolumeUnmountRequest) String() string {
  984. return protoimpl.X.MessageStringOf(x)
  985. }
  986. func (*VolumeUnmountRequest) ProtoMessage() {}
  987. func (x *VolumeUnmountRequest) ProtoReflect() protoreflect.Message {
  988. mi := &file_volume_server_proto_msgTypes[22]
  989. if protoimpl.UnsafeEnabled && x != nil {
  990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  991. if ms.LoadMessageInfo() == nil {
  992. ms.StoreMessageInfo(mi)
  993. }
  994. return ms
  995. }
  996. return mi.MessageOf(x)
  997. }
  998. // Deprecated: Use VolumeUnmountRequest.ProtoReflect.Descriptor instead.
  999. func (*VolumeUnmountRequest) Descriptor() ([]byte, []int) {
  1000. return file_volume_server_proto_rawDescGZIP(), []int{22}
  1001. }
  1002. func (x *VolumeUnmountRequest) GetVolumeId() uint32 {
  1003. if x != nil {
  1004. return x.VolumeId
  1005. }
  1006. return 0
  1007. }
  1008. type VolumeUnmountResponse struct {
  1009. state protoimpl.MessageState
  1010. sizeCache protoimpl.SizeCache
  1011. unknownFields protoimpl.UnknownFields
  1012. }
  1013. func (x *VolumeUnmountResponse) Reset() {
  1014. *x = VolumeUnmountResponse{}
  1015. if protoimpl.UnsafeEnabled {
  1016. mi := &file_volume_server_proto_msgTypes[23]
  1017. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1018. ms.StoreMessageInfo(mi)
  1019. }
  1020. }
  1021. func (x *VolumeUnmountResponse) String() string {
  1022. return protoimpl.X.MessageStringOf(x)
  1023. }
  1024. func (*VolumeUnmountResponse) ProtoMessage() {}
  1025. func (x *VolumeUnmountResponse) ProtoReflect() protoreflect.Message {
  1026. mi := &file_volume_server_proto_msgTypes[23]
  1027. if protoimpl.UnsafeEnabled && x != nil {
  1028. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1029. if ms.LoadMessageInfo() == nil {
  1030. ms.StoreMessageInfo(mi)
  1031. }
  1032. return ms
  1033. }
  1034. return mi.MessageOf(x)
  1035. }
  1036. // Deprecated: Use VolumeUnmountResponse.ProtoReflect.Descriptor instead.
  1037. func (*VolumeUnmountResponse) Descriptor() ([]byte, []int) {
  1038. return file_volume_server_proto_rawDescGZIP(), []int{23}
  1039. }
  1040. type VolumeDeleteRequest struct {
  1041. state protoimpl.MessageState
  1042. sizeCache protoimpl.SizeCache
  1043. unknownFields protoimpl.UnknownFields
  1044. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1045. }
  1046. func (x *VolumeDeleteRequest) Reset() {
  1047. *x = VolumeDeleteRequest{}
  1048. if protoimpl.UnsafeEnabled {
  1049. mi := &file_volume_server_proto_msgTypes[24]
  1050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1051. ms.StoreMessageInfo(mi)
  1052. }
  1053. }
  1054. func (x *VolumeDeleteRequest) String() string {
  1055. return protoimpl.X.MessageStringOf(x)
  1056. }
  1057. func (*VolumeDeleteRequest) ProtoMessage() {}
  1058. func (x *VolumeDeleteRequest) ProtoReflect() protoreflect.Message {
  1059. mi := &file_volume_server_proto_msgTypes[24]
  1060. if protoimpl.UnsafeEnabled && x != nil {
  1061. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1062. if ms.LoadMessageInfo() == nil {
  1063. ms.StoreMessageInfo(mi)
  1064. }
  1065. return ms
  1066. }
  1067. return mi.MessageOf(x)
  1068. }
  1069. // Deprecated: Use VolumeDeleteRequest.ProtoReflect.Descriptor instead.
  1070. func (*VolumeDeleteRequest) Descriptor() ([]byte, []int) {
  1071. return file_volume_server_proto_rawDescGZIP(), []int{24}
  1072. }
  1073. func (x *VolumeDeleteRequest) GetVolumeId() uint32 {
  1074. if x != nil {
  1075. return x.VolumeId
  1076. }
  1077. return 0
  1078. }
  1079. type VolumeDeleteResponse struct {
  1080. state protoimpl.MessageState
  1081. sizeCache protoimpl.SizeCache
  1082. unknownFields protoimpl.UnknownFields
  1083. }
  1084. func (x *VolumeDeleteResponse) Reset() {
  1085. *x = VolumeDeleteResponse{}
  1086. if protoimpl.UnsafeEnabled {
  1087. mi := &file_volume_server_proto_msgTypes[25]
  1088. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1089. ms.StoreMessageInfo(mi)
  1090. }
  1091. }
  1092. func (x *VolumeDeleteResponse) String() string {
  1093. return protoimpl.X.MessageStringOf(x)
  1094. }
  1095. func (*VolumeDeleteResponse) ProtoMessage() {}
  1096. func (x *VolumeDeleteResponse) ProtoReflect() protoreflect.Message {
  1097. mi := &file_volume_server_proto_msgTypes[25]
  1098. if protoimpl.UnsafeEnabled && x != nil {
  1099. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1100. if ms.LoadMessageInfo() == nil {
  1101. ms.StoreMessageInfo(mi)
  1102. }
  1103. return ms
  1104. }
  1105. return mi.MessageOf(x)
  1106. }
  1107. // Deprecated: Use VolumeDeleteResponse.ProtoReflect.Descriptor instead.
  1108. func (*VolumeDeleteResponse) Descriptor() ([]byte, []int) {
  1109. return file_volume_server_proto_rawDescGZIP(), []int{25}
  1110. }
  1111. type VolumeMarkReadonlyRequest struct {
  1112. state protoimpl.MessageState
  1113. sizeCache protoimpl.SizeCache
  1114. unknownFields protoimpl.UnknownFields
  1115. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1116. }
  1117. func (x *VolumeMarkReadonlyRequest) Reset() {
  1118. *x = VolumeMarkReadonlyRequest{}
  1119. if protoimpl.UnsafeEnabled {
  1120. mi := &file_volume_server_proto_msgTypes[26]
  1121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1122. ms.StoreMessageInfo(mi)
  1123. }
  1124. }
  1125. func (x *VolumeMarkReadonlyRequest) String() string {
  1126. return protoimpl.X.MessageStringOf(x)
  1127. }
  1128. func (*VolumeMarkReadonlyRequest) ProtoMessage() {}
  1129. func (x *VolumeMarkReadonlyRequest) ProtoReflect() protoreflect.Message {
  1130. mi := &file_volume_server_proto_msgTypes[26]
  1131. if protoimpl.UnsafeEnabled && x != nil {
  1132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1133. if ms.LoadMessageInfo() == nil {
  1134. ms.StoreMessageInfo(mi)
  1135. }
  1136. return ms
  1137. }
  1138. return mi.MessageOf(x)
  1139. }
  1140. // Deprecated: Use VolumeMarkReadonlyRequest.ProtoReflect.Descriptor instead.
  1141. func (*VolumeMarkReadonlyRequest) Descriptor() ([]byte, []int) {
  1142. return file_volume_server_proto_rawDescGZIP(), []int{26}
  1143. }
  1144. func (x *VolumeMarkReadonlyRequest) GetVolumeId() uint32 {
  1145. if x != nil {
  1146. return x.VolumeId
  1147. }
  1148. return 0
  1149. }
  1150. type VolumeMarkReadonlyResponse struct {
  1151. state protoimpl.MessageState
  1152. sizeCache protoimpl.SizeCache
  1153. unknownFields protoimpl.UnknownFields
  1154. }
  1155. func (x *VolumeMarkReadonlyResponse) Reset() {
  1156. *x = VolumeMarkReadonlyResponse{}
  1157. if protoimpl.UnsafeEnabled {
  1158. mi := &file_volume_server_proto_msgTypes[27]
  1159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1160. ms.StoreMessageInfo(mi)
  1161. }
  1162. }
  1163. func (x *VolumeMarkReadonlyResponse) String() string {
  1164. return protoimpl.X.MessageStringOf(x)
  1165. }
  1166. func (*VolumeMarkReadonlyResponse) ProtoMessage() {}
  1167. func (x *VolumeMarkReadonlyResponse) ProtoReflect() protoreflect.Message {
  1168. mi := &file_volume_server_proto_msgTypes[27]
  1169. if protoimpl.UnsafeEnabled && x != nil {
  1170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1171. if ms.LoadMessageInfo() == nil {
  1172. ms.StoreMessageInfo(mi)
  1173. }
  1174. return ms
  1175. }
  1176. return mi.MessageOf(x)
  1177. }
  1178. // Deprecated: Use VolumeMarkReadonlyResponse.ProtoReflect.Descriptor instead.
  1179. func (*VolumeMarkReadonlyResponse) Descriptor() ([]byte, []int) {
  1180. return file_volume_server_proto_rawDescGZIP(), []int{27}
  1181. }
  1182. type VolumeConfigureRequest struct {
  1183. state protoimpl.MessageState
  1184. sizeCache protoimpl.SizeCache
  1185. unknownFields protoimpl.UnknownFields
  1186. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1187. Replication string `protobuf:"bytes,2,opt,name=replication,proto3" json:"replication,omitempty"`
  1188. }
  1189. func (x *VolumeConfigureRequest) Reset() {
  1190. *x = VolumeConfigureRequest{}
  1191. if protoimpl.UnsafeEnabled {
  1192. mi := &file_volume_server_proto_msgTypes[28]
  1193. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1194. ms.StoreMessageInfo(mi)
  1195. }
  1196. }
  1197. func (x *VolumeConfigureRequest) String() string {
  1198. return protoimpl.X.MessageStringOf(x)
  1199. }
  1200. func (*VolumeConfigureRequest) ProtoMessage() {}
  1201. func (x *VolumeConfigureRequest) ProtoReflect() protoreflect.Message {
  1202. mi := &file_volume_server_proto_msgTypes[28]
  1203. if protoimpl.UnsafeEnabled && x != nil {
  1204. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1205. if ms.LoadMessageInfo() == nil {
  1206. ms.StoreMessageInfo(mi)
  1207. }
  1208. return ms
  1209. }
  1210. return mi.MessageOf(x)
  1211. }
  1212. // Deprecated: Use VolumeConfigureRequest.ProtoReflect.Descriptor instead.
  1213. func (*VolumeConfigureRequest) Descriptor() ([]byte, []int) {
  1214. return file_volume_server_proto_rawDescGZIP(), []int{28}
  1215. }
  1216. func (x *VolumeConfigureRequest) GetVolumeId() uint32 {
  1217. if x != nil {
  1218. return x.VolumeId
  1219. }
  1220. return 0
  1221. }
  1222. func (x *VolumeConfigureRequest) GetReplication() string {
  1223. if x != nil {
  1224. return x.Replication
  1225. }
  1226. return ""
  1227. }
  1228. type VolumeConfigureResponse struct {
  1229. state protoimpl.MessageState
  1230. sizeCache protoimpl.SizeCache
  1231. unknownFields protoimpl.UnknownFields
  1232. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  1233. }
  1234. func (x *VolumeConfigureResponse) Reset() {
  1235. *x = VolumeConfigureResponse{}
  1236. if protoimpl.UnsafeEnabled {
  1237. mi := &file_volume_server_proto_msgTypes[29]
  1238. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1239. ms.StoreMessageInfo(mi)
  1240. }
  1241. }
  1242. func (x *VolumeConfigureResponse) String() string {
  1243. return protoimpl.X.MessageStringOf(x)
  1244. }
  1245. func (*VolumeConfigureResponse) ProtoMessage() {}
  1246. func (x *VolumeConfigureResponse) ProtoReflect() protoreflect.Message {
  1247. mi := &file_volume_server_proto_msgTypes[29]
  1248. if protoimpl.UnsafeEnabled && x != nil {
  1249. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1250. if ms.LoadMessageInfo() == nil {
  1251. ms.StoreMessageInfo(mi)
  1252. }
  1253. return ms
  1254. }
  1255. return mi.MessageOf(x)
  1256. }
  1257. // Deprecated: Use VolumeConfigureResponse.ProtoReflect.Descriptor instead.
  1258. func (*VolumeConfigureResponse) Descriptor() ([]byte, []int) {
  1259. return file_volume_server_proto_rawDescGZIP(), []int{29}
  1260. }
  1261. func (x *VolumeConfigureResponse) GetError() string {
  1262. if x != nil {
  1263. return x.Error
  1264. }
  1265. return ""
  1266. }
  1267. type VolumeCopyRequest struct {
  1268. state protoimpl.MessageState
  1269. sizeCache protoimpl.SizeCache
  1270. unknownFields protoimpl.UnknownFields
  1271. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1272. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1273. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  1274. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1275. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  1276. }
  1277. func (x *VolumeCopyRequest) Reset() {
  1278. *x = VolumeCopyRequest{}
  1279. if protoimpl.UnsafeEnabled {
  1280. mi := &file_volume_server_proto_msgTypes[30]
  1281. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1282. ms.StoreMessageInfo(mi)
  1283. }
  1284. }
  1285. func (x *VolumeCopyRequest) String() string {
  1286. return protoimpl.X.MessageStringOf(x)
  1287. }
  1288. func (*VolumeCopyRequest) ProtoMessage() {}
  1289. func (x *VolumeCopyRequest) ProtoReflect() protoreflect.Message {
  1290. mi := &file_volume_server_proto_msgTypes[30]
  1291. if protoimpl.UnsafeEnabled && x != nil {
  1292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1293. if ms.LoadMessageInfo() == nil {
  1294. ms.StoreMessageInfo(mi)
  1295. }
  1296. return ms
  1297. }
  1298. return mi.MessageOf(x)
  1299. }
  1300. // Deprecated: Use VolumeCopyRequest.ProtoReflect.Descriptor instead.
  1301. func (*VolumeCopyRequest) Descriptor() ([]byte, []int) {
  1302. return file_volume_server_proto_rawDescGZIP(), []int{30}
  1303. }
  1304. func (x *VolumeCopyRequest) GetVolumeId() uint32 {
  1305. if x != nil {
  1306. return x.VolumeId
  1307. }
  1308. return 0
  1309. }
  1310. func (x *VolumeCopyRequest) GetCollection() string {
  1311. if x != nil {
  1312. return x.Collection
  1313. }
  1314. return ""
  1315. }
  1316. func (x *VolumeCopyRequest) GetReplication() string {
  1317. if x != nil {
  1318. return x.Replication
  1319. }
  1320. return ""
  1321. }
  1322. func (x *VolumeCopyRequest) GetTtl() string {
  1323. if x != nil {
  1324. return x.Ttl
  1325. }
  1326. return ""
  1327. }
  1328. func (x *VolumeCopyRequest) GetSourceDataNode() string {
  1329. if x != nil {
  1330. return x.SourceDataNode
  1331. }
  1332. return ""
  1333. }
  1334. type VolumeCopyResponse struct {
  1335. state protoimpl.MessageState
  1336. sizeCache protoimpl.SizeCache
  1337. unknownFields protoimpl.UnknownFields
  1338. LastAppendAtNs uint64 `protobuf:"varint,1,opt,name=last_append_at_ns,json=lastAppendAtNs,proto3" json:"last_append_at_ns,omitempty"`
  1339. }
  1340. func (x *VolumeCopyResponse) Reset() {
  1341. *x = VolumeCopyResponse{}
  1342. if protoimpl.UnsafeEnabled {
  1343. mi := &file_volume_server_proto_msgTypes[31]
  1344. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1345. ms.StoreMessageInfo(mi)
  1346. }
  1347. }
  1348. func (x *VolumeCopyResponse) String() string {
  1349. return protoimpl.X.MessageStringOf(x)
  1350. }
  1351. func (*VolumeCopyResponse) ProtoMessage() {}
  1352. func (x *VolumeCopyResponse) ProtoReflect() protoreflect.Message {
  1353. mi := &file_volume_server_proto_msgTypes[31]
  1354. if protoimpl.UnsafeEnabled && x != nil {
  1355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1356. if ms.LoadMessageInfo() == nil {
  1357. ms.StoreMessageInfo(mi)
  1358. }
  1359. return ms
  1360. }
  1361. return mi.MessageOf(x)
  1362. }
  1363. // Deprecated: Use VolumeCopyResponse.ProtoReflect.Descriptor instead.
  1364. func (*VolumeCopyResponse) Descriptor() ([]byte, []int) {
  1365. return file_volume_server_proto_rawDescGZIP(), []int{31}
  1366. }
  1367. func (x *VolumeCopyResponse) GetLastAppendAtNs() uint64 {
  1368. if x != nil {
  1369. return x.LastAppendAtNs
  1370. }
  1371. return 0
  1372. }
  1373. type CopyFileRequest struct {
  1374. state protoimpl.MessageState
  1375. sizeCache protoimpl.SizeCache
  1376. unknownFields protoimpl.UnknownFields
  1377. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1378. Ext string `protobuf:"bytes,2,opt,name=ext,proto3" json:"ext,omitempty"`
  1379. CompactionRevision uint32 `protobuf:"varint,3,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  1380. StopOffset uint64 `protobuf:"varint,4,opt,name=stop_offset,json=stopOffset,proto3" json:"stop_offset,omitempty"`
  1381. Collection string `protobuf:"bytes,5,opt,name=collection,proto3" json:"collection,omitempty"`
  1382. IsEcVolume bool `protobuf:"varint,6,opt,name=is_ec_volume,json=isEcVolume,proto3" json:"is_ec_volume,omitempty"`
  1383. IgnoreSourceFileNotFound bool `protobuf:"varint,7,opt,name=ignore_source_file_not_found,json=ignoreSourceFileNotFound,proto3" json:"ignore_source_file_not_found,omitempty"`
  1384. }
  1385. func (x *CopyFileRequest) Reset() {
  1386. *x = CopyFileRequest{}
  1387. if protoimpl.UnsafeEnabled {
  1388. mi := &file_volume_server_proto_msgTypes[32]
  1389. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1390. ms.StoreMessageInfo(mi)
  1391. }
  1392. }
  1393. func (x *CopyFileRequest) String() string {
  1394. return protoimpl.X.MessageStringOf(x)
  1395. }
  1396. func (*CopyFileRequest) ProtoMessage() {}
  1397. func (x *CopyFileRequest) ProtoReflect() protoreflect.Message {
  1398. mi := &file_volume_server_proto_msgTypes[32]
  1399. if protoimpl.UnsafeEnabled && x != nil {
  1400. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1401. if ms.LoadMessageInfo() == nil {
  1402. ms.StoreMessageInfo(mi)
  1403. }
  1404. return ms
  1405. }
  1406. return mi.MessageOf(x)
  1407. }
  1408. // Deprecated: Use CopyFileRequest.ProtoReflect.Descriptor instead.
  1409. func (*CopyFileRequest) Descriptor() ([]byte, []int) {
  1410. return file_volume_server_proto_rawDescGZIP(), []int{32}
  1411. }
  1412. func (x *CopyFileRequest) GetVolumeId() uint32 {
  1413. if x != nil {
  1414. return x.VolumeId
  1415. }
  1416. return 0
  1417. }
  1418. func (x *CopyFileRequest) GetExt() string {
  1419. if x != nil {
  1420. return x.Ext
  1421. }
  1422. return ""
  1423. }
  1424. func (x *CopyFileRequest) GetCompactionRevision() uint32 {
  1425. if x != nil {
  1426. return x.CompactionRevision
  1427. }
  1428. return 0
  1429. }
  1430. func (x *CopyFileRequest) GetStopOffset() uint64 {
  1431. if x != nil {
  1432. return x.StopOffset
  1433. }
  1434. return 0
  1435. }
  1436. func (x *CopyFileRequest) GetCollection() string {
  1437. if x != nil {
  1438. return x.Collection
  1439. }
  1440. return ""
  1441. }
  1442. func (x *CopyFileRequest) GetIsEcVolume() bool {
  1443. if x != nil {
  1444. return x.IsEcVolume
  1445. }
  1446. return false
  1447. }
  1448. func (x *CopyFileRequest) GetIgnoreSourceFileNotFound() bool {
  1449. if x != nil {
  1450. return x.IgnoreSourceFileNotFound
  1451. }
  1452. return false
  1453. }
  1454. type CopyFileResponse struct {
  1455. state protoimpl.MessageState
  1456. sizeCache protoimpl.SizeCache
  1457. unknownFields protoimpl.UnknownFields
  1458. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  1459. }
  1460. func (x *CopyFileResponse) Reset() {
  1461. *x = CopyFileResponse{}
  1462. if protoimpl.UnsafeEnabled {
  1463. mi := &file_volume_server_proto_msgTypes[33]
  1464. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1465. ms.StoreMessageInfo(mi)
  1466. }
  1467. }
  1468. func (x *CopyFileResponse) String() string {
  1469. return protoimpl.X.MessageStringOf(x)
  1470. }
  1471. func (*CopyFileResponse) ProtoMessage() {}
  1472. func (x *CopyFileResponse) ProtoReflect() protoreflect.Message {
  1473. mi := &file_volume_server_proto_msgTypes[33]
  1474. if protoimpl.UnsafeEnabled && x != nil {
  1475. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1476. if ms.LoadMessageInfo() == nil {
  1477. ms.StoreMessageInfo(mi)
  1478. }
  1479. return ms
  1480. }
  1481. return mi.MessageOf(x)
  1482. }
  1483. // Deprecated: Use CopyFileResponse.ProtoReflect.Descriptor instead.
  1484. func (*CopyFileResponse) Descriptor() ([]byte, []int) {
  1485. return file_volume_server_proto_rawDescGZIP(), []int{33}
  1486. }
  1487. func (x *CopyFileResponse) GetFileContent() []byte {
  1488. if x != nil {
  1489. return x.FileContent
  1490. }
  1491. return nil
  1492. }
  1493. type VolumeTailSenderRequest struct {
  1494. state protoimpl.MessageState
  1495. sizeCache protoimpl.SizeCache
  1496. unknownFields protoimpl.UnknownFields
  1497. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1498. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  1499. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  1500. }
  1501. func (x *VolumeTailSenderRequest) Reset() {
  1502. *x = VolumeTailSenderRequest{}
  1503. if protoimpl.UnsafeEnabled {
  1504. mi := &file_volume_server_proto_msgTypes[34]
  1505. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1506. ms.StoreMessageInfo(mi)
  1507. }
  1508. }
  1509. func (x *VolumeTailSenderRequest) String() string {
  1510. return protoimpl.X.MessageStringOf(x)
  1511. }
  1512. func (*VolumeTailSenderRequest) ProtoMessage() {}
  1513. func (x *VolumeTailSenderRequest) ProtoReflect() protoreflect.Message {
  1514. mi := &file_volume_server_proto_msgTypes[34]
  1515. if protoimpl.UnsafeEnabled && x != nil {
  1516. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1517. if ms.LoadMessageInfo() == nil {
  1518. ms.StoreMessageInfo(mi)
  1519. }
  1520. return ms
  1521. }
  1522. return mi.MessageOf(x)
  1523. }
  1524. // Deprecated: Use VolumeTailSenderRequest.ProtoReflect.Descriptor instead.
  1525. func (*VolumeTailSenderRequest) Descriptor() ([]byte, []int) {
  1526. return file_volume_server_proto_rawDescGZIP(), []int{34}
  1527. }
  1528. func (x *VolumeTailSenderRequest) GetVolumeId() uint32 {
  1529. if x != nil {
  1530. return x.VolumeId
  1531. }
  1532. return 0
  1533. }
  1534. func (x *VolumeTailSenderRequest) GetSinceNs() uint64 {
  1535. if x != nil {
  1536. return x.SinceNs
  1537. }
  1538. return 0
  1539. }
  1540. func (x *VolumeTailSenderRequest) GetIdleTimeoutSeconds() uint32 {
  1541. if x != nil {
  1542. return x.IdleTimeoutSeconds
  1543. }
  1544. return 0
  1545. }
  1546. type VolumeTailSenderResponse struct {
  1547. state protoimpl.MessageState
  1548. sizeCache protoimpl.SizeCache
  1549. unknownFields protoimpl.UnknownFields
  1550. NeedleHeader []byte `protobuf:"bytes,1,opt,name=needle_header,json=needleHeader,proto3" json:"needle_header,omitempty"`
  1551. NeedleBody []byte `protobuf:"bytes,2,opt,name=needle_body,json=needleBody,proto3" json:"needle_body,omitempty"`
  1552. IsLastChunk bool `protobuf:"varint,3,opt,name=is_last_chunk,json=isLastChunk,proto3" json:"is_last_chunk,omitempty"`
  1553. }
  1554. func (x *VolumeTailSenderResponse) Reset() {
  1555. *x = VolumeTailSenderResponse{}
  1556. if protoimpl.UnsafeEnabled {
  1557. mi := &file_volume_server_proto_msgTypes[35]
  1558. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1559. ms.StoreMessageInfo(mi)
  1560. }
  1561. }
  1562. func (x *VolumeTailSenderResponse) String() string {
  1563. return protoimpl.X.MessageStringOf(x)
  1564. }
  1565. func (*VolumeTailSenderResponse) ProtoMessage() {}
  1566. func (x *VolumeTailSenderResponse) ProtoReflect() protoreflect.Message {
  1567. mi := &file_volume_server_proto_msgTypes[35]
  1568. if protoimpl.UnsafeEnabled && x != nil {
  1569. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1570. if ms.LoadMessageInfo() == nil {
  1571. ms.StoreMessageInfo(mi)
  1572. }
  1573. return ms
  1574. }
  1575. return mi.MessageOf(x)
  1576. }
  1577. // Deprecated: Use VolumeTailSenderResponse.ProtoReflect.Descriptor instead.
  1578. func (*VolumeTailSenderResponse) Descriptor() ([]byte, []int) {
  1579. return file_volume_server_proto_rawDescGZIP(), []int{35}
  1580. }
  1581. func (x *VolumeTailSenderResponse) GetNeedleHeader() []byte {
  1582. if x != nil {
  1583. return x.NeedleHeader
  1584. }
  1585. return nil
  1586. }
  1587. func (x *VolumeTailSenderResponse) GetNeedleBody() []byte {
  1588. if x != nil {
  1589. return x.NeedleBody
  1590. }
  1591. return nil
  1592. }
  1593. func (x *VolumeTailSenderResponse) GetIsLastChunk() bool {
  1594. if x != nil {
  1595. return x.IsLastChunk
  1596. }
  1597. return false
  1598. }
  1599. type VolumeTailReceiverRequest struct {
  1600. state protoimpl.MessageState
  1601. sizeCache protoimpl.SizeCache
  1602. unknownFields protoimpl.UnknownFields
  1603. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1604. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  1605. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  1606. SourceVolumeServer string `protobuf:"bytes,4,opt,name=source_volume_server,json=sourceVolumeServer,proto3" json:"source_volume_server,omitempty"`
  1607. }
  1608. func (x *VolumeTailReceiverRequest) Reset() {
  1609. *x = VolumeTailReceiverRequest{}
  1610. if protoimpl.UnsafeEnabled {
  1611. mi := &file_volume_server_proto_msgTypes[36]
  1612. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1613. ms.StoreMessageInfo(mi)
  1614. }
  1615. }
  1616. func (x *VolumeTailReceiverRequest) String() string {
  1617. return protoimpl.X.MessageStringOf(x)
  1618. }
  1619. func (*VolumeTailReceiverRequest) ProtoMessage() {}
  1620. func (x *VolumeTailReceiverRequest) ProtoReflect() protoreflect.Message {
  1621. mi := &file_volume_server_proto_msgTypes[36]
  1622. if protoimpl.UnsafeEnabled && x != nil {
  1623. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1624. if ms.LoadMessageInfo() == nil {
  1625. ms.StoreMessageInfo(mi)
  1626. }
  1627. return ms
  1628. }
  1629. return mi.MessageOf(x)
  1630. }
  1631. // Deprecated: Use VolumeTailReceiverRequest.ProtoReflect.Descriptor instead.
  1632. func (*VolumeTailReceiverRequest) Descriptor() ([]byte, []int) {
  1633. return file_volume_server_proto_rawDescGZIP(), []int{36}
  1634. }
  1635. func (x *VolumeTailReceiverRequest) GetVolumeId() uint32 {
  1636. if x != nil {
  1637. return x.VolumeId
  1638. }
  1639. return 0
  1640. }
  1641. func (x *VolumeTailReceiverRequest) GetSinceNs() uint64 {
  1642. if x != nil {
  1643. return x.SinceNs
  1644. }
  1645. return 0
  1646. }
  1647. func (x *VolumeTailReceiverRequest) GetIdleTimeoutSeconds() uint32 {
  1648. if x != nil {
  1649. return x.IdleTimeoutSeconds
  1650. }
  1651. return 0
  1652. }
  1653. func (x *VolumeTailReceiverRequest) GetSourceVolumeServer() string {
  1654. if x != nil {
  1655. return x.SourceVolumeServer
  1656. }
  1657. return ""
  1658. }
  1659. type VolumeTailReceiverResponse struct {
  1660. state protoimpl.MessageState
  1661. sizeCache protoimpl.SizeCache
  1662. unknownFields protoimpl.UnknownFields
  1663. }
  1664. func (x *VolumeTailReceiverResponse) Reset() {
  1665. *x = VolumeTailReceiverResponse{}
  1666. if protoimpl.UnsafeEnabled {
  1667. mi := &file_volume_server_proto_msgTypes[37]
  1668. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1669. ms.StoreMessageInfo(mi)
  1670. }
  1671. }
  1672. func (x *VolumeTailReceiverResponse) String() string {
  1673. return protoimpl.X.MessageStringOf(x)
  1674. }
  1675. func (*VolumeTailReceiverResponse) ProtoMessage() {}
  1676. func (x *VolumeTailReceiverResponse) ProtoReflect() protoreflect.Message {
  1677. mi := &file_volume_server_proto_msgTypes[37]
  1678. if protoimpl.UnsafeEnabled && x != nil {
  1679. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1680. if ms.LoadMessageInfo() == nil {
  1681. ms.StoreMessageInfo(mi)
  1682. }
  1683. return ms
  1684. }
  1685. return mi.MessageOf(x)
  1686. }
  1687. // Deprecated: Use VolumeTailReceiverResponse.ProtoReflect.Descriptor instead.
  1688. func (*VolumeTailReceiverResponse) Descriptor() ([]byte, []int) {
  1689. return file_volume_server_proto_rawDescGZIP(), []int{37}
  1690. }
  1691. type VolumeEcShardsGenerateRequest struct {
  1692. state protoimpl.MessageState
  1693. sizeCache protoimpl.SizeCache
  1694. unknownFields protoimpl.UnknownFields
  1695. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1696. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1697. }
  1698. func (x *VolumeEcShardsGenerateRequest) Reset() {
  1699. *x = VolumeEcShardsGenerateRequest{}
  1700. if protoimpl.UnsafeEnabled {
  1701. mi := &file_volume_server_proto_msgTypes[38]
  1702. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1703. ms.StoreMessageInfo(mi)
  1704. }
  1705. }
  1706. func (x *VolumeEcShardsGenerateRequest) String() string {
  1707. return protoimpl.X.MessageStringOf(x)
  1708. }
  1709. func (*VolumeEcShardsGenerateRequest) ProtoMessage() {}
  1710. func (x *VolumeEcShardsGenerateRequest) ProtoReflect() protoreflect.Message {
  1711. mi := &file_volume_server_proto_msgTypes[38]
  1712. if protoimpl.UnsafeEnabled && x != nil {
  1713. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1714. if ms.LoadMessageInfo() == nil {
  1715. ms.StoreMessageInfo(mi)
  1716. }
  1717. return ms
  1718. }
  1719. return mi.MessageOf(x)
  1720. }
  1721. // Deprecated: Use VolumeEcShardsGenerateRequest.ProtoReflect.Descriptor instead.
  1722. func (*VolumeEcShardsGenerateRequest) Descriptor() ([]byte, []int) {
  1723. return file_volume_server_proto_rawDescGZIP(), []int{38}
  1724. }
  1725. func (x *VolumeEcShardsGenerateRequest) GetVolumeId() uint32 {
  1726. if x != nil {
  1727. return x.VolumeId
  1728. }
  1729. return 0
  1730. }
  1731. func (x *VolumeEcShardsGenerateRequest) GetCollection() string {
  1732. if x != nil {
  1733. return x.Collection
  1734. }
  1735. return ""
  1736. }
  1737. type VolumeEcShardsGenerateResponse struct {
  1738. state protoimpl.MessageState
  1739. sizeCache protoimpl.SizeCache
  1740. unknownFields protoimpl.UnknownFields
  1741. }
  1742. func (x *VolumeEcShardsGenerateResponse) Reset() {
  1743. *x = VolumeEcShardsGenerateResponse{}
  1744. if protoimpl.UnsafeEnabled {
  1745. mi := &file_volume_server_proto_msgTypes[39]
  1746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1747. ms.StoreMessageInfo(mi)
  1748. }
  1749. }
  1750. func (x *VolumeEcShardsGenerateResponse) String() string {
  1751. return protoimpl.X.MessageStringOf(x)
  1752. }
  1753. func (*VolumeEcShardsGenerateResponse) ProtoMessage() {}
  1754. func (x *VolumeEcShardsGenerateResponse) ProtoReflect() protoreflect.Message {
  1755. mi := &file_volume_server_proto_msgTypes[39]
  1756. if protoimpl.UnsafeEnabled && x != nil {
  1757. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1758. if ms.LoadMessageInfo() == nil {
  1759. ms.StoreMessageInfo(mi)
  1760. }
  1761. return ms
  1762. }
  1763. return mi.MessageOf(x)
  1764. }
  1765. // Deprecated: Use VolumeEcShardsGenerateResponse.ProtoReflect.Descriptor instead.
  1766. func (*VolumeEcShardsGenerateResponse) Descriptor() ([]byte, []int) {
  1767. return file_volume_server_proto_rawDescGZIP(), []int{39}
  1768. }
  1769. type VolumeEcShardsRebuildRequest struct {
  1770. state protoimpl.MessageState
  1771. sizeCache protoimpl.SizeCache
  1772. unknownFields protoimpl.UnknownFields
  1773. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1774. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1775. }
  1776. func (x *VolumeEcShardsRebuildRequest) Reset() {
  1777. *x = VolumeEcShardsRebuildRequest{}
  1778. if protoimpl.UnsafeEnabled {
  1779. mi := &file_volume_server_proto_msgTypes[40]
  1780. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1781. ms.StoreMessageInfo(mi)
  1782. }
  1783. }
  1784. func (x *VolumeEcShardsRebuildRequest) String() string {
  1785. return protoimpl.X.MessageStringOf(x)
  1786. }
  1787. func (*VolumeEcShardsRebuildRequest) ProtoMessage() {}
  1788. func (x *VolumeEcShardsRebuildRequest) ProtoReflect() protoreflect.Message {
  1789. mi := &file_volume_server_proto_msgTypes[40]
  1790. if protoimpl.UnsafeEnabled && x != nil {
  1791. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1792. if ms.LoadMessageInfo() == nil {
  1793. ms.StoreMessageInfo(mi)
  1794. }
  1795. return ms
  1796. }
  1797. return mi.MessageOf(x)
  1798. }
  1799. // Deprecated: Use VolumeEcShardsRebuildRequest.ProtoReflect.Descriptor instead.
  1800. func (*VolumeEcShardsRebuildRequest) Descriptor() ([]byte, []int) {
  1801. return file_volume_server_proto_rawDescGZIP(), []int{40}
  1802. }
  1803. func (x *VolumeEcShardsRebuildRequest) GetVolumeId() uint32 {
  1804. if x != nil {
  1805. return x.VolumeId
  1806. }
  1807. return 0
  1808. }
  1809. func (x *VolumeEcShardsRebuildRequest) GetCollection() string {
  1810. if x != nil {
  1811. return x.Collection
  1812. }
  1813. return ""
  1814. }
  1815. type VolumeEcShardsRebuildResponse struct {
  1816. state protoimpl.MessageState
  1817. sizeCache protoimpl.SizeCache
  1818. unknownFields protoimpl.UnknownFields
  1819. RebuiltShardIds []uint32 `protobuf:"varint,1,rep,packed,name=rebuilt_shard_ids,json=rebuiltShardIds,proto3" json:"rebuilt_shard_ids,omitempty"`
  1820. }
  1821. func (x *VolumeEcShardsRebuildResponse) Reset() {
  1822. *x = VolumeEcShardsRebuildResponse{}
  1823. if protoimpl.UnsafeEnabled {
  1824. mi := &file_volume_server_proto_msgTypes[41]
  1825. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1826. ms.StoreMessageInfo(mi)
  1827. }
  1828. }
  1829. func (x *VolumeEcShardsRebuildResponse) String() string {
  1830. return protoimpl.X.MessageStringOf(x)
  1831. }
  1832. func (*VolumeEcShardsRebuildResponse) ProtoMessage() {}
  1833. func (x *VolumeEcShardsRebuildResponse) ProtoReflect() protoreflect.Message {
  1834. mi := &file_volume_server_proto_msgTypes[41]
  1835. if protoimpl.UnsafeEnabled && x != nil {
  1836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1837. if ms.LoadMessageInfo() == nil {
  1838. ms.StoreMessageInfo(mi)
  1839. }
  1840. return ms
  1841. }
  1842. return mi.MessageOf(x)
  1843. }
  1844. // Deprecated: Use VolumeEcShardsRebuildResponse.ProtoReflect.Descriptor instead.
  1845. func (*VolumeEcShardsRebuildResponse) Descriptor() ([]byte, []int) {
  1846. return file_volume_server_proto_rawDescGZIP(), []int{41}
  1847. }
  1848. func (x *VolumeEcShardsRebuildResponse) GetRebuiltShardIds() []uint32 {
  1849. if x != nil {
  1850. return x.RebuiltShardIds
  1851. }
  1852. return nil
  1853. }
  1854. type VolumeEcShardsCopyRequest struct {
  1855. state protoimpl.MessageState
  1856. sizeCache protoimpl.SizeCache
  1857. unknownFields protoimpl.UnknownFields
  1858. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1859. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1860. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  1861. CopyEcxFile bool `protobuf:"varint,4,opt,name=copy_ecx_file,json=copyEcxFile,proto3" json:"copy_ecx_file,omitempty"`
  1862. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  1863. CopyEcjFile bool `protobuf:"varint,6,opt,name=copy_ecj_file,json=copyEcjFile,proto3" json:"copy_ecj_file,omitempty"`
  1864. CopyVifFile bool `protobuf:"varint,7,opt,name=copy_vif_file,json=copyVifFile,proto3" json:"copy_vif_file,omitempty"`
  1865. }
  1866. func (x *VolumeEcShardsCopyRequest) Reset() {
  1867. *x = VolumeEcShardsCopyRequest{}
  1868. if protoimpl.UnsafeEnabled {
  1869. mi := &file_volume_server_proto_msgTypes[42]
  1870. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1871. ms.StoreMessageInfo(mi)
  1872. }
  1873. }
  1874. func (x *VolumeEcShardsCopyRequest) String() string {
  1875. return protoimpl.X.MessageStringOf(x)
  1876. }
  1877. func (*VolumeEcShardsCopyRequest) ProtoMessage() {}
  1878. func (x *VolumeEcShardsCopyRequest) ProtoReflect() protoreflect.Message {
  1879. mi := &file_volume_server_proto_msgTypes[42]
  1880. if protoimpl.UnsafeEnabled && x != nil {
  1881. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1882. if ms.LoadMessageInfo() == nil {
  1883. ms.StoreMessageInfo(mi)
  1884. }
  1885. return ms
  1886. }
  1887. return mi.MessageOf(x)
  1888. }
  1889. // Deprecated: Use VolumeEcShardsCopyRequest.ProtoReflect.Descriptor instead.
  1890. func (*VolumeEcShardsCopyRequest) Descriptor() ([]byte, []int) {
  1891. return file_volume_server_proto_rawDescGZIP(), []int{42}
  1892. }
  1893. func (x *VolumeEcShardsCopyRequest) GetVolumeId() uint32 {
  1894. if x != nil {
  1895. return x.VolumeId
  1896. }
  1897. return 0
  1898. }
  1899. func (x *VolumeEcShardsCopyRequest) GetCollection() string {
  1900. if x != nil {
  1901. return x.Collection
  1902. }
  1903. return ""
  1904. }
  1905. func (x *VolumeEcShardsCopyRequest) GetShardIds() []uint32 {
  1906. if x != nil {
  1907. return x.ShardIds
  1908. }
  1909. return nil
  1910. }
  1911. func (x *VolumeEcShardsCopyRequest) GetCopyEcxFile() bool {
  1912. if x != nil {
  1913. return x.CopyEcxFile
  1914. }
  1915. return false
  1916. }
  1917. func (x *VolumeEcShardsCopyRequest) GetSourceDataNode() string {
  1918. if x != nil {
  1919. return x.SourceDataNode
  1920. }
  1921. return ""
  1922. }
  1923. func (x *VolumeEcShardsCopyRequest) GetCopyEcjFile() bool {
  1924. if x != nil {
  1925. return x.CopyEcjFile
  1926. }
  1927. return false
  1928. }
  1929. func (x *VolumeEcShardsCopyRequest) GetCopyVifFile() bool {
  1930. if x != nil {
  1931. return x.CopyVifFile
  1932. }
  1933. return false
  1934. }
  1935. type VolumeEcShardsCopyResponse struct {
  1936. state protoimpl.MessageState
  1937. sizeCache protoimpl.SizeCache
  1938. unknownFields protoimpl.UnknownFields
  1939. }
  1940. func (x *VolumeEcShardsCopyResponse) Reset() {
  1941. *x = VolumeEcShardsCopyResponse{}
  1942. if protoimpl.UnsafeEnabled {
  1943. mi := &file_volume_server_proto_msgTypes[43]
  1944. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1945. ms.StoreMessageInfo(mi)
  1946. }
  1947. }
  1948. func (x *VolumeEcShardsCopyResponse) String() string {
  1949. return protoimpl.X.MessageStringOf(x)
  1950. }
  1951. func (*VolumeEcShardsCopyResponse) ProtoMessage() {}
  1952. func (x *VolumeEcShardsCopyResponse) ProtoReflect() protoreflect.Message {
  1953. mi := &file_volume_server_proto_msgTypes[43]
  1954. if protoimpl.UnsafeEnabled && x != nil {
  1955. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1956. if ms.LoadMessageInfo() == nil {
  1957. ms.StoreMessageInfo(mi)
  1958. }
  1959. return ms
  1960. }
  1961. return mi.MessageOf(x)
  1962. }
  1963. // Deprecated: Use VolumeEcShardsCopyResponse.ProtoReflect.Descriptor instead.
  1964. func (*VolumeEcShardsCopyResponse) Descriptor() ([]byte, []int) {
  1965. return file_volume_server_proto_rawDescGZIP(), []int{43}
  1966. }
  1967. type VolumeEcShardsDeleteRequest struct {
  1968. state protoimpl.MessageState
  1969. sizeCache protoimpl.SizeCache
  1970. unknownFields protoimpl.UnknownFields
  1971. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1972. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1973. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  1974. }
  1975. func (x *VolumeEcShardsDeleteRequest) Reset() {
  1976. *x = VolumeEcShardsDeleteRequest{}
  1977. if protoimpl.UnsafeEnabled {
  1978. mi := &file_volume_server_proto_msgTypes[44]
  1979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1980. ms.StoreMessageInfo(mi)
  1981. }
  1982. }
  1983. func (x *VolumeEcShardsDeleteRequest) String() string {
  1984. return protoimpl.X.MessageStringOf(x)
  1985. }
  1986. func (*VolumeEcShardsDeleteRequest) ProtoMessage() {}
  1987. func (x *VolumeEcShardsDeleteRequest) ProtoReflect() protoreflect.Message {
  1988. mi := &file_volume_server_proto_msgTypes[44]
  1989. if protoimpl.UnsafeEnabled && x != nil {
  1990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1991. if ms.LoadMessageInfo() == nil {
  1992. ms.StoreMessageInfo(mi)
  1993. }
  1994. return ms
  1995. }
  1996. return mi.MessageOf(x)
  1997. }
  1998. // Deprecated: Use VolumeEcShardsDeleteRequest.ProtoReflect.Descriptor instead.
  1999. func (*VolumeEcShardsDeleteRequest) Descriptor() ([]byte, []int) {
  2000. return file_volume_server_proto_rawDescGZIP(), []int{44}
  2001. }
  2002. func (x *VolumeEcShardsDeleteRequest) GetVolumeId() uint32 {
  2003. if x != nil {
  2004. return x.VolumeId
  2005. }
  2006. return 0
  2007. }
  2008. func (x *VolumeEcShardsDeleteRequest) GetCollection() string {
  2009. if x != nil {
  2010. return x.Collection
  2011. }
  2012. return ""
  2013. }
  2014. func (x *VolumeEcShardsDeleteRequest) GetShardIds() []uint32 {
  2015. if x != nil {
  2016. return x.ShardIds
  2017. }
  2018. return nil
  2019. }
  2020. type VolumeEcShardsDeleteResponse struct {
  2021. state protoimpl.MessageState
  2022. sizeCache protoimpl.SizeCache
  2023. unknownFields protoimpl.UnknownFields
  2024. }
  2025. func (x *VolumeEcShardsDeleteResponse) Reset() {
  2026. *x = VolumeEcShardsDeleteResponse{}
  2027. if protoimpl.UnsafeEnabled {
  2028. mi := &file_volume_server_proto_msgTypes[45]
  2029. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2030. ms.StoreMessageInfo(mi)
  2031. }
  2032. }
  2033. func (x *VolumeEcShardsDeleteResponse) String() string {
  2034. return protoimpl.X.MessageStringOf(x)
  2035. }
  2036. func (*VolumeEcShardsDeleteResponse) ProtoMessage() {}
  2037. func (x *VolumeEcShardsDeleteResponse) ProtoReflect() protoreflect.Message {
  2038. mi := &file_volume_server_proto_msgTypes[45]
  2039. if protoimpl.UnsafeEnabled && x != nil {
  2040. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2041. if ms.LoadMessageInfo() == nil {
  2042. ms.StoreMessageInfo(mi)
  2043. }
  2044. return ms
  2045. }
  2046. return mi.MessageOf(x)
  2047. }
  2048. // Deprecated: Use VolumeEcShardsDeleteResponse.ProtoReflect.Descriptor instead.
  2049. func (*VolumeEcShardsDeleteResponse) Descriptor() ([]byte, []int) {
  2050. return file_volume_server_proto_rawDescGZIP(), []int{45}
  2051. }
  2052. type VolumeEcShardsMountRequest struct {
  2053. state protoimpl.MessageState
  2054. sizeCache protoimpl.SizeCache
  2055. unknownFields protoimpl.UnknownFields
  2056. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2057. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2058. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2059. }
  2060. func (x *VolumeEcShardsMountRequest) Reset() {
  2061. *x = VolumeEcShardsMountRequest{}
  2062. if protoimpl.UnsafeEnabled {
  2063. mi := &file_volume_server_proto_msgTypes[46]
  2064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2065. ms.StoreMessageInfo(mi)
  2066. }
  2067. }
  2068. func (x *VolumeEcShardsMountRequest) String() string {
  2069. return protoimpl.X.MessageStringOf(x)
  2070. }
  2071. func (*VolumeEcShardsMountRequest) ProtoMessage() {}
  2072. func (x *VolumeEcShardsMountRequest) ProtoReflect() protoreflect.Message {
  2073. mi := &file_volume_server_proto_msgTypes[46]
  2074. if protoimpl.UnsafeEnabled && x != nil {
  2075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2076. if ms.LoadMessageInfo() == nil {
  2077. ms.StoreMessageInfo(mi)
  2078. }
  2079. return ms
  2080. }
  2081. return mi.MessageOf(x)
  2082. }
  2083. // Deprecated: Use VolumeEcShardsMountRequest.ProtoReflect.Descriptor instead.
  2084. func (*VolumeEcShardsMountRequest) Descriptor() ([]byte, []int) {
  2085. return file_volume_server_proto_rawDescGZIP(), []int{46}
  2086. }
  2087. func (x *VolumeEcShardsMountRequest) GetVolumeId() uint32 {
  2088. if x != nil {
  2089. return x.VolumeId
  2090. }
  2091. return 0
  2092. }
  2093. func (x *VolumeEcShardsMountRequest) GetCollection() string {
  2094. if x != nil {
  2095. return x.Collection
  2096. }
  2097. return ""
  2098. }
  2099. func (x *VolumeEcShardsMountRequest) GetShardIds() []uint32 {
  2100. if x != nil {
  2101. return x.ShardIds
  2102. }
  2103. return nil
  2104. }
  2105. type VolumeEcShardsMountResponse struct {
  2106. state protoimpl.MessageState
  2107. sizeCache protoimpl.SizeCache
  2108. unknownFields protoimpl.UnknownFields
  2109. }
  2110. func (x *VolumeEcShardsMountResponse) Reset() {
  2111. *x = VolumeEcShardsMountResponse{}
  2112. if protoimpl.UnsafeEnabled {
  2113. mi := &file_volume_server_proto_msgTypes[47]
  2114. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2115. ms.StoreMessageInfo(mi)
  2116. }
  2117. }
  2118. func (x *VolumeEcShardsMountResponse) String() string {
  2119. return protoimpl.X.MessageStringOf(x)
  2120. }
  2121. func (*VolumeEcShardsMountResponse) ProtoMessage() {}
  2122. func (x *VolumeEcShardsMountResponse) ProtoReflect() protoreflect.Message {
  2123. mi := &file_volume_server_proto_msgTypes[47]
  2124. if protoimpl.UnsafeEnabled && x != nil {
  2125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2126. if ms.LoadMessageInfo() == nil {
  2127. ms.StoreMessageInfo(mi)
  2128. }
  2129. return ms
  2130. }
  2131. return mi.MessageOf(x)
  2132. }
  2133. // Deprecated: Use VolumeEcShardsMountResponse.ProtoReflect.Descriptor instead.
  2134. func (*VolumeEcShardsMountResponse) Descriptor() ([]byte, []int) {
  2135. return file_volume_server_proto_rawDescGZIP(), []int{47}
  2136. }
  2137. type VolumeEcShardsUnmountRequest struct {
  2138. state protoimpl.MessageState
  2139. sizeCache protoimpl.SizeCache
  2140. unknownFields protoimpl.UnknownFields
  2141. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2142. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2143. }
  2144. func (x *VolumeEcShardsUnmountRequest) Reset() {
  2145. *x = VolumeEcShardsUnmountRequest{}
  2146. if protoimpl.UnsafeEnabled {
  2147. mi := &file_volume_server_proto_msgTypes[48]
  2148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2149. ms.StoreMessageInfo(mi)
  2150. }
  2151. }
  2152. func (x *VolumeEcShardsUnmountRequest) String() string {
  2153. return protoimpl.X.MessageStringOf(x)
  2154. }
  2155. func (*VolumeEcShardsUnmountRequest) ProtoMessage() {}
  2156. func (x *VolumeEcShardsUnmountRequest) ProtoReflect() protoreflect.Message {
  2157. mi := &file_volume_server_proto_msgTypes[48]
  2158. if protoimpl.UnsafeEnabled && x != nil {
  2159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2160. if ms.LoadMessageInfo() == nil {
  2161. ms.StoreMessageInfo(mi)
  2162. }
  2163. return ms
  2164. }
  2165. return mi.MessageOf(x)
  2166. }
  2167. // Deprecated: Use VolumeEcShardsUnmountRequest.ProtoReflect.Descriptor instead.
  2168. func (*VolumeEcShardsUnmountRequest) Descriptor() ([]byte, []int) {
  2169. return file_volume_server_proto_rawDescGZIP(), []int{48}
  2170. }
  2171. func (x *VolumeEcShardsUnmountRequest) GetVolumeId() uint32 {
  2172. if x != nil {
  2173. return x.VolumeId
  2174. }
  2175. return 0
  2176. }
  2177. func (x *VolumeEcShardsUnmountRequest) GetShardIds() []uint32 {
  2178. if x != nil {
  2179. return x.ShardIds
  2180. }
  2181. return nil
  2182. }
  2183. type VolumeEcShardsUnmountResponse struct {
  2184. state protoimpl.MessageState
  2185. sizeCache protoimpl.SizeCache
  2186. unknownFields protoimpl.UnknownFields
  2187. }
  2188. func (x *VolumeEcShardsUnmountResponse) Reset() {
  2189. *x = VolumeEcShardsUnmountResponse{}
  2190. if protoimpl.UnsafeEnabled {
  2191. mi := &file_volume_server_proto_msgTypes[49]
  2192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2193. ms.StoreMessageInfo(mi)
  2194. }
  2195. }
  2196. func (x *VolumeEcShardsUnmountResponse) String() string {
  2197. return protoimpl.X.MessageStringOf(x)
  2198. }
  2199. func (*VolumeEcShardsUnmountResponse) ProtoMessage() {}
  2200. func (x *VolumeEcShardsUnmountResponse) ProtoReflect() protoreflect.Message {
  2201. mi := &file_volume_server_proto_msgTypes[49]
  2202. if protoimpl.UnsafeEnabled && x != nil {
  2203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2204. if ms.LoadMessageInfo() == nil {
  2205. ms.StoreMessageInfo(mi)
  2206. }
  2207. return ms
  2208. }
  2209. return mi.MessageOf(x)
  2210. }
  2211. // Deprecated: Use VolumeEcShardsUnmountResponse.ProtoReflect.Descriptor instead.
  2212. func (*VolumeEcShardsUnmountResponse) Descriptor() ([]byte, []int) {
  2213. return file_volume_server_proto_rawDescGZIP(), []int{49}
  2214. }
  2215. type VolumeEcShardReadRequest struct {
  2216. state protoimpl.MessageState
  2217. sizeCache protoimpl.SizeCache
  2218. unknownFields protoimpl.UnknownFields
  2219. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2220. ShardId uint32 `protobuf:"varint,2,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"`
  2221. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
  2222. Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  2223. FileKey uint64 `protobuf:"varint,5,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2224. }
  2225. func (x *VolumeEcShardReadRequest) Reset() {
  2226. *x = VolumeEcShardReadRequest{}
  2227. if protoimpl.UnsafeEnabled {
  2228. mi := &file_volume_server_proto_msgTypes[50]
  2229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2230. ms.StoreMessageInfo(mi)
  2231. }
  2232. }
  2233. func (x *VolumeEcShardReadRequest) String() string {
  2234. return protoimpl.X.MessageStringOf(x)
  2235. }
  2236. func (*VolumeEcShardReadRequest) ProtoMessage() {}
  2237. func (x *VolumeEcShardReadRequest) ProtoReflect() protoreflect.Message {
  2238. mi := &file_volume_server_proto_msgTypes[50]
  2239. if protoimpl.UnsafeEnabled && x != nil {
  2240. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2241. if ms.LoadMessageInfo() == nil {
  2242. ms.StoreMessageInfo(mi)
  2243. }
  2244. return ms
  2245. }
  2246. return mi.MessageOf(x)
  2247. }
  2248. // Deprecated: Use VolumeEcShardReadRequest.ProtoReflect.Descriptor instead.
  2249. func (*VolumeEcShardReadRequest) Descriptor() ([]byte, []int) {
  2250. return file_volume_server_proto_rawDescGZIP(), []int{50}
  2251. }
  2252. func (x *VolumeEcShardReadRequest) GetVolumeId() uint32 {
  2253. if x != nil {
  2254. return x.VolumeId
  2255. }
  2256. return 0
  2257. }
  2258. func (x *VolumeEcShardReadRequest) GetShardId() uint32 {
  2259. if x != nil {
  2260. return x.ShardId
  2261. }
  2262. return 0
  2263. }
  2264. func (x *VolumeEcShardReadRequest) GetOffset() int64 {
  2265. if x != nil {
  2266. return x.Offset
  2267. }
  2268. return 0
  2269. }
  2270. func (x *VolumeEcShardReadRequest) GetSize() int64 {
  2271. if x != nil {
  2272. return x.Size
  2273. }
  2274. return 0
  2275. }
  2276. func (x *VolumeEcShardReadRequest) GetFileKey() uint64 {
  2277. if x != nil {
  2278. return x.FileKey
  2279. }
  2280. return 0
  2281. }
  2282. type VolumeEcShardReadResponse struct {
  2283. state protoimpl.MessageState
  2284. sizeCache protoimpl.SizeCache
  2285. unknownFields protoimpl.UnknownFields
  2286. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  2287. IsDeleted bool `protobuf:"varint,2,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
  2288. }
  2289. func (x *VolumeEcShardReadResponse) Reset() {
  2290. *x = VolumeEcShardReadResponse{}
  2291. if protoimpl.UnsafeEnabled {
  2292. mi := &file_volume_server_proto_msgTypes[51]
  2293. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2294. ms.StoreMessageInfo(mi)
  2295. }
  2296. }
  2297. func (x *VolumeEcShardReadResponse) String() string {
  2298. return protoimpl.X.MessageStringOf(x)
  2299. }
  2300. func (*VolumeEcShardReadResponse) ProtoMessage() {}
  2301. func (x *VolumeEcShardReadResponse) ProtoReflect() protoreflect.Message {
  2302. mi := &file_volume_server_proto_msgTypes[51]
  2303. if protoimpl.UnsafeEnabled && x != nil {
  2304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2305. if ms.LoadMessageInfo() == nil {
  2306. ms.StoreMessageInfo(mi)
  2307. }
  2308. return ms
  2309. }
  2310. return mi.MessageOf(x)
  2311. }
  2312. // Deprecated: Use VolumeEcShardReadResponse.ProtoReflect.Descriptor instead.
  2313. func (*VolumeEcShardReadResponse) Descriptor() ([]byte, []int) {
  2314. return file_volume_server_proto_rawDescGZIP(), []int{51}
  2315. }
  2316. func (x *VolumeEcShardReadResponse) GetData() []byte {
  2317. if x != nil {
  2318. return x.Data
  2319. }
  2320. return nil
  2321. }
  2322. func (x *VolumeEcShardReadResponse) GetIsDeleted() bool {
  2323. if x != nil {
  2324. return x.IsDeleted
  2325. }
  2326. return false
  2327. }
  2328. type VolumeEcBlobDeleteRequest struct {
  2329. state protoimpl.MessageState
  2330. sizeCache protoimpl.SizeCache
  2331. unknownFields protoimpl.UnknownFields
  2332. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2333. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2334. FileKey uint64 `protobuf:"varint,3,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2335. Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
  2336. }
  2337. func (x *VolumeEcBlobDeleteRequest) Reset() {
  2338. *x = VolumeEcBlobDeleteRequest{}
  2339. if protoimpl.UnsafeEnabled {
  2340. mi := &file_volume_server_proto_msgTypes[52]
  2341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2342. ms.StoreMessageInfo(mi)
  2343. }
  2344. }
  2345. func (x *VolumeEcBlobDeleteRequest) String() string {
  2346. return protoimpl.X.MessageStringOf(x)
  2347. }
  2348. func (*VolumeEcBlobDeleteRequest) ProtoMessage() {}
  2349. func (x *VolumeEcBlobDeleteRequest) ProtoReflect() protoreflect.Message {
  2350. mi := &file_volume_server_proto_msgTypes[52]
  2351. if protoimpl.UnsafeEnabled && x != nil {
  2352. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2353. if ms.LoadMessageInfo() == nil {
  2354. ms.StoreMessageInfo(mi)
  2355. }
  2356. return ms
  2357. }
  2358. return mi.MessageOf(x)
  2359. }
  2360. // Deprecated: Use VolumeEcBlobDeleteRequest.ProtoReflect.Descriptor instead.
  2361. func (*VolumeEcBlobDeleteRequest) Descriptor() ([]byte, []int) {
  2362. return file_volume_server_proto_rawDescGZIP(), []int{52}
  2363. }
  2364. func (x *VolumeEcBlobDeleteRequest) GetVolumeId() uint32 {
  2365. if x != nil {
  2366. return x.VolumeId
  2367. }
  2368. return 0
  2369. }
  2370. func (x *VolumeEcBlobDeleteRequest) GetCollection() string {
  2371. if x != nil {
  2372. return x.Collection
  2373. }
  2374. return ""
  2375. }
  2376. func (x *VolumeEcBlobDeleteRequest) GetFileKey() uint64 {
  2377. if x != nil {
  2378. return x.FileKey
  2379. }
  2380. return 0
  2381. }
  2382. func (x *VolumeEcBlobDeleteRequest) GetVersion() uint32 {
  2383. if x != nil {
  2384. return x.Version
  2385. }
  2386. return 0
  2387. }
  2388. type VolumeEcBlobDeleteResponse struct {
  2389. state protoimpl.MessageState
  2390. sizeCache protoimpl.SizeCache
  2391. unknownFields protoimpl.UnknownFields
  2392. }
  2393. func (x *VolumeEcBlobDeleteResponse) Reset() {
  2394. *x = VolumeEcBlobDeleteResponse{}
  2395. if protoimpl.UnsafeEnabled {
  2396. mi := &file_volume_server_proto_msgTypes[53]
  2397. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2398. ms.StoreMessageInfo(mi)
  2399. }
  2400. }
  2401. func (x *VolumeEcBlobDeleteResponse) String() string {
  2402. return protoimpl.X.MessageStringOf(x)
  2403. }
  2404. func (*VolumeEcBlobDeleteResponse) ProtoMessage() {}
  2405. func (x *VolumeEcBlobDeleteResponse) ProtoReflect() protoreflect.Message {
  2406. mi := &file_volume_server_proto_msgTypes[53]
  2407. if protoimpl.UnsafeEnabled && x != nil {
  2408. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2409. if ms.LoadMessageInfo() == nil {
  2410. ms.StoreMessageInfo(mi)
  2411. }
  2412. return ms
  2413. }
  2414. return mi.MessageOf(x)
  2415. }
  2416. // Deprecated: Use VolumeEcBlobDeleteResponse.ProtoReflect.Descriptor instead.
  2417. func (*VolumeEcBlobDeleteResponse) Descriptor() ([]byte, []int) {
  2418. return file_volume_server_proto_rawDescGZIP(), []int{53}
  2419. }
  2420. type VolumeEcShardsToVolumeRequest struct {
  2421. state protoimpl.MessageState
  2422. sizeCache protoimpl.SizeCache
  2423. unknownFields protoimpl.UnknownFields
  2424. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2425. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2426. }
  2427. func (x *VolumeEcShardsToVolumeRequest) Reset() {
  2428. *x = VolumeEcShardsToVolumeRequest{}
  2429. if protoimpl.UnsafeEnabled {
  2430. mi := &file_volume_server_proto_msgTypes[54]
  2431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2432. ms.StoreMessageInfo(mi)
  2433. }
  2434. }
  2435. func (x *VolumeEcShardsToVolumeRequest) String() string {
  2436. return protoimpl.X.MessageStringOf(x)
  2437. }
  2438. func (*VolumeEcShardsToVolumeRequest) ProtoMessage() {}
  2439. func (x *VolumeEcShardsToVolumeRequest) ProtoReflect() protoreflect.Message {
  2440. mi := &file_volume_server_proto_msgTypes[54]
  2441. if protoimpl.UnsafeEnabled && x != nil {
  2442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2443. if ms.LoadMessageInfo() == nil {
  2444. ms.StoreMessageInfo(mi)
  2445. }
  2446. return ms
  2447. }
  2448. return mi.MessageOf(x)
  2449. }
  2450. // Deprecated: Use VolumeEcShardsToVolumeRequest.ProtoReflect.Descriptor instead.
  2451. func (*VolumeEcShardsToVolumeRequest) Descriptor() ([]byte, []int) {
  2452. return file_volume_server_proto_rawDescGZIP(), []int{54}
  2453. }
  2454. func (x *VolumeEcShardsToVolumeRequest) GetVolumeId() uint32 {
  2455. if x != nil {
  2456. return x.VolumeId
  2457. }
  2458. return 0
  2459. }
  2460. func (x *VolumeEcShardsToVolumeRequest) GetCollection() string {
  2461. if x != nil {
  2462. return x.Collection
  2463. }
  2464. return ""
  2465. }
  2466. type VolumeEcShardsToVolumeResponse struct {
  2467. state protoimpl.MessageState
  2468. sizeCache protoimpl.SizeCache
  2469. unknownFields protoimpl.UnknownFields
  2470. }
  2471. func (x *VolumeEcShardsToVolumeResponse) Reset() {
  2472. *x = VolumeEcShardsToVolumeResponse{}
  2473. if protoimpl.UnsafeEnabled {
  2474. mi := &file_volume_server_proto_msgTypes[55]
  2475. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2476. ms.StoreMessageInfo(mi)
  2477. }
  2478. }
  2479. func (x *VolumeEcShardsToVolumeResponse) String() string {
  2480. return protoimpl.X.MessageStringOf(x)
  2481. }
  2482. func (*VolumeEcShardsToVolumeResponse) ProtoMessage() {}
  2483. func (x *VolumeEcShardsToVolumeResponse) ProtoReflect() protoreflect.Message {
  2484. mi := &file_volume_server_proto_msgTypes[55]
  2485. if protoimpl.UnsafeEnabled && x != nil {
  2486. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2487. if ms.LoadMessageInfo() == nil {
  2488. ms.StoreMessageInfo(mi)
  2489. }
  2490. return ms
  2491. }
  2492. return mi.MessageOf(x)
  2493. }
  2494. // Deprecated: Use VolumeEcShardsToVolumeResponse.ProtoReflect.Descriptor instead.
  2495. func (*VolumeEcShardsToVolumeResponse) Descriptor() ([]byte, []int) {
  2496. return file_volume_server_proto_rawDescGZIP(), []int{55}
  2497. }
  2498. type ReadVolumeFileStatusRequest struct {
  2499. state protoimpl.MessageState
  2500. sizeCache protoimpl.SizeCache
  2501. unknownFields protoimpl.UnknownFields
  2502. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2503. }
  2504. func (x *ReadVolumeFileStatusRequest) Reset() {
  2505. *x = ReadVolumeFileStatusRequest{}
  2506. if protoimpl.UnsafeEnabled {
  2507. mi := &file_volume_server_proto_msgTypes[56]
  2508. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2509. ms.StoreMessageInfo(mi)
  2510. }
  2511. }
  2512. func (x *ReadVolumeFileStatusRequest) String() string {
  2513. return protoimpl.X.MessageStringOf(x)
  2514. }
  2515. func (*ReadVolumeFileStatusRequest) ProtoMessage() {}
  2516. func (x *ReadVolumeFileStatusRequest) ProtoReflect() protoreflect.Message {
  2517. mi := &file_volume_server_proto_msgTypes[56]
  2518. if protoimpl.UnsafeEnabled && x != nil {
  2519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2520. if ms.LoadMessageInfo() == nil {
  2521. ms.StoreMessageInfo(mi)
  2522. }
  2523. return ms
  2524. }
  2525. return mi.MessageOf(x)
  2526. }
  2527. // Deprecated: Use ReadVolumeFileStatusRequest.ProtoReflect.Descriptor instead.
  2528. func (*ReadVolumeFileStatusRequest) Descriptor() ([]byte, []int) {
  2529. return file_volume_server_proto_rawDescGZIP(), []int{56}
  2530. }
  2531. func (x *ReadVolumeFileStatusRequest) GetVolumeId() uint32 {
  2532. if x != nil {
  2533. return x.VolumeId
  2534. }
  2535. return 0
  2536. }
  2537. type ReadVolumeFileStatusResponse struct {
  2538. state protoimpl.MessageState
  2539. sizeCache protoimpl.SizeCache
  2540. unknownFields protoimpl.UnknownFields
  2541. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2542. IdxFileTimestampSeconds uint64 `protobuf:"varint,2,opt,name=idx_file_timestamp_seconds,json=idxFileTimestampSeconds,proto3" json:"idx_file_timestamp_seconds,omitempty"`
  2543. IdxFileSize uint64 `protobuf:"varint,3,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  2544. DatFileTimestampSeconds uint64 `protobuf:"varint,4,opt,name=dat_file_timestamp_seconds,json=datFileTimestampSeconds,proto3" json:"dat_file_timestamp_seconds,omitempty"`
  2545. DatFileSize uint64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"`
  2546. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  2547. CompactionRevision uint32 `protobuf:"varint,7,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  2548. Collection string `protobuf:"bytes,8,opt,name=collection,proto3" json:"collection,omitempty"`
  2549. }
  2550. func (x *ReadVolumeFileStatusResponse) Reset() {
  2551. *x = ReadVolumeFileStatusResponse{}
  2552. if protoimpl.UnsafeEnabled {
  2553. mi := &file_volume_server_proto_msgTypes[57]
  2554. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2555. ms.StoreMessageInfo(mi)
  2556. }
  2557. }
  2558. func (x *ReadVolumeFileStatusResponse) String() string {
  2559. return protoimpl.X.MessageStringOf(x)
  2560. }
  2561. func (*ReadVolumeFileStatusResponse) ProtoMessage() {}
  2562. func (x *ReadVolumeFileStatusResponse) ProtoReflect() protoreflect.Message {
  2563. mi := &file_volume_server_proto_msgTypes[57]
  2564. if protoimpl.UnsafeEnabled && x != nil {
  2565. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2566. if ms.LoadMessageInfo() == nil {
  2567. ms.StoreMessageInfo(mi)
  2568. }
  2569. return ms
  2570. }
  2571. return mi.MessageOf(x)
  2572. }
  2573. // Deprecated: Use ReadVolumeFileStatusResponse.ProtoReflect.Descriptor instead.
  2574. func (*ReadVolumeFileStatusResponse) Descriptor() ([]byte, []int) {
  2575. return file_volume_server_proto_rawDescGZIP(), []int{57}
  2576. }
  2577. func (x *ReadVolumeFileStatusResponse) GetVolumeId() uint32 {
  2578. if x != nil {
  2579. return x.VolumeId
  2580. }
  2581. return 0
  2582. }
  2583. func (x *ReadVolumeFileStatusResponse) GetIdxFileTimestampSeconds() uint64 {
  2584. if x != nil {
  2585. return x.IdxFileTimestampSeconds
  2586. }
  2587. return 0
  2588. }
  2589. func (x *ReadVolumeFileStatusResponse) GetIdxFileSize() uint64 {
  2590. if x != nil {
  2591. return x.IdxFileSize
  2592. }
  2593. return 0
  2594. }
  2595. func (x *ReadVolumeFileStatusResponse) GetDatFileTimestampSeconds() uint64 {
  2596. if x != nil {
  2597. return x.DatFileTimestampSeconds
  2598. }
  2599. return 0
  2600. }
  2601. func (x *ReadVolumeFileStatusResponse) GetDatFileSize() uint64 {
  2602. if x != nil {
  2603. return x.DatFileSize
  2604. }
  2605. return 0
  2606. }
  2607. func (x *ReadVolumeFileStatusResponse) GetFileCount() uint64 {
  2608. if x != nil {
  2609. return x.FileCount
  2610. }
  2611. return 0
  2612. }
  2613. func (x *ReadVolumeFileStatusResponse) GetCompactionRevision() uint32 {
  2614. if x != nil {
  2615. return x.CompactionRevision
  2616. }
  2617. return 0
  2618. }
  2619. func (x *ReadVolumeFileStatusResponse) GetCollection() string {
  2620. if x != nil {
  2621. return x.Collection
  2622. }
  2623. return ""
  2624. }
  2625. type DiskStatus struct {
  2626. state protoimpl.MessageState
  2627. sizeCache protoimpl.SizeCache
  2628. unknownFields protoimpl.UnknownFields
  2629. Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
  2630. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  2631. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  2632. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  2633. PercentFree float32 `protobuf:"fixed32,5,opt,name=percent_free,json=percentFree,proto3" json:"percent_free,omitempty"`
  2634. PercentUsed float32 `protobuf:"fixed32,6,opt,name=percent_used,json=percentUsed,proto3" json:"percent_used,omitempty"`
  2635. }
  2636. func (x *DiskStatus) Reset() {
  2637. *x = DiskStatus{}
  2638. if protoimpl.UnsafeEnabled {
  2639. mi := &file_volume_server_proto_msgTypes[58]
  2640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2641. ms.StoreMessageInfo(mi)
  2642. }
  2643. }
  2644. func (x *DiskStatus) String() string {
  2645. return protoimpl.X.MessageStringOf(x)
  2646. }
  2647. func (*DiskStatus) ProtoMessage() {}
  2648. func (x *DiskStatus) ProtoReflect() protoreflect.Message {
  2649. mi := &file_volume_server_proto_msgTypes[58]
  2650. if protoimpl.UnsafeEnabled && x != nil {
  2651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2652. if ms.LoadMessageInfo() == nil {
  2653. ms.StoreMessageInfo(mi)
  2654. }
  2655. return ms
  2656. }
  2657. return mi.MessageOf(x)
  2658. }
  2659. // Deprecated: Use DiskStatus.ProtoReflect.Descriptor instead.
  2660. func (*DiskStatus) Descriptor() ([]byte, []int) {
  2661. return file_volume_server_proto_rawDescGZIP(), []int{58}
  2662. }
  2663. func (x *DiskStatus) GetDir() string {
  2664. if x != nil {
  2665. return x.Dir
  2666. }
  2667. return ""
  2668. }
  2669. func (x *DiskStatus) GetAll() uint64 {
  2670. if x != nil {
  2671. return x.All
  2672. }
  2673. return 0
  2674. }
  2675. func (x *DiskStatus) GetUsed() uint64 {
  2676. if x != nil {
  2677. return x.Used
  2678. }
  2679. return 0
  2680. }
  2681. func (x *DiskStatus) GetFree() uint64 {
  2682. if x != nil {
  2683. return x.Free
  2684. }
  2685. return 0
  2686. }
  2687. func (x *DiskStatus) GetPercentFree() float32 {
  2688. if x != nil {
  2689. return x.PercentFree
  2690. }
  2691. return 0
  2692. }
  2693. func (x *DiskStatus) GetPercentUsed() float32 {
  2694. if x != nil {
  2695. return x.PercentUsed
  2696. }
  2697. return 0
  2698. }
  2699. type MemStatus struct {
  2700. state protoimpl.MessageState
  2701. sizeCache protoimpl.SizeCache
  2702. unknownFields protoimpl.UnknownFields
  2703. Goroutines int32 `protobuf:"varint,1,opt,name=goroutines,proto3" json:"goroutines,omitempty"`
  2704. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  2705. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  2706. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  2707. Self uint64 `protobuf:"varint,5,opt,name=self,proto3" json:"self,omitempty"`
  2708. Heap uint64 `protobuf:"varint,6,opt,name=heap,proto3" json:"heap,omitempty"`
  2709. Stack uint64 `protobuf:"varint,7,opt,name=stack,proto3" json:"stack,omitempty"`
  2710. }
  2711. func (x *MemStatus) Reset() {
  2712. *x = MemStatus{}
  2713. if protoimpl.UnsafeEnabled {
  2714. mi := &file_volume_server_proto_msgTypes[59]
  2715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2716. ms.StoreMessageInfo(mi)
  2717. }
  2718. }
  2719. func (x *MemStatus) String() string {
  2720. return protoimpl.X.MessageStringOf(x)
  2721. }
  2722. func (*MemStatus) ProtoMessage() {}
  2723. func (x *MemStatus) ProtoReflect() protoreflect.Message {
  2724. mi := &file_volume_server_proto_msgTypes[59]
  2725. if protoimpl.UnsafeEnabled && x != nil {
  2726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2727. if ms.LoadMessageInfo() == nil {
  2728. ms.StoreMessageInfo(mi)
  2729. }
  2730. return ms
  2731. }
  2732. return mi.MessageOf(x)
  2733. }
  2734. // Deprecated: Use MemStatus.ProtoReflect.Descriptor instead.
  2735. func (*MemStatus) Descriptor() ([]byte, []int) {
  2736. return file_volume_server_proto_rawDescGZIP(), []int{59}
  2737. }
  2738. func (x *MemStatus) GetGoroutines() int32 {
  2739. if x != nil {
  2740. return x.Goroutines
  2741. }
  2742. return 0
  2743. }
  2744. func (x *MemStatus) GetAll() uint64 {
  2745. if x != nil {
  2746. return x.All
  2747. }
  2748. return 0
  2749. }
  2750. func (x *MemStatus) GetUsed() uint64 {
  2751. if x != nil {
  2752. return x.Used
  2753. }
  2754. return 0
  2755. }
  2756. func (x *MemStatus) GetFree() uint64 {
  2757. if x != nil {
  2758. return x.Free
  2759. }
  2760. return 0
  2761. }
  2762. func (x *MemStatus) GetSelf() uint64 {
  2763. if x != nil {
  2764. return x.Self
  2765. }
  2766. return 0
  2767. }
  2768. func (x *MemStatus) GetHeap() uint64 {
  2769. if x != nil {
  2770. return x.Heap
  2771. }
  2772. return 0
  2773. }
  2774. func (x *MemStatus) GetStack() uint64 {
  2775. if x != nil {
  2776. return x.Stack
  2777. }
  2778. return 0
  2779. }
  2780. // tired storage on volume servers
  2781. type RemoteFile struct {
  2782. state protoimpl.MessageState
  2783. sizeCache protoimpl.SizeCache
  2784. unknownFields protoimpl.UnknownFields
  2785. BackendType string `protobuf:"bytes,1,opt,name=backend_type,json=backendType,proto3" json:"backend_type,omitempty"`
  2786. BackendId string `protobuf:"bytes,2,opt,name=backend_id,json=backendId,proto3" json:"backend_id,omitempty"`
  2787. Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
  2788. Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  2789. FileSize uint64 `protobuf:"varint,5,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
  2790. ModifiedTime uint64 `protobuf:"varint,6,opt,name=modified_time,json=modifiedTime,proto3" json:"modified_time,omitempty"`
  2791. Extension string `protobuf:"bytes,7,opt,name=extension,proto3" json:"extension,omitempty"`
  2792. }
  2793. func (x *RemoteFile) Reset() {
  2794. *x = RemoteFile{}
  2795. if protoimpl.UnsafeEnabled {
  2796. mi := &file_volume_server_proto_msgTypes[60]
  2797. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2798. ms.StoreMessageInfo(mi)
  2799. }
  2800. }
  2801. func (x *RemoteFile) String() string {
  2802. return protoimpl.X.MessageStringOf(x)
  2803. }
  2804. func (*RemoteFile) ProtoMessage() {}
  2805. func (x *RemoteFile) ProtoReflect() protoreflect.Message {
  2806. mi := &file_volume_server_proto_msgTypes[60]
  2807. if protoimpl.UnsafeEnabled && x != nil {
  2808. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2809. if ms.LoadMessageInfo() == nil {
  2810. ms.StoreMessageInfo(mi)
  2811. }
  2812. return ms
  2813. }
  2814. return mi.MessageOf(x)
  2815. }
  2816. // Deprecated: Use RemoteFile.ProtoReflect.Descriptor instead.
  2817. func (*RemoteFile) Descriptor() ([]byte, []int) {
  2818. return file_volume_server_proto_rawDescGZIP(), []int{60}
  2819. }
  2820. func (x *RemoteFile) GetBackendType() string {
  2821. if x != nil {
  2822. return x.BackendType
  2823. }
  2824. return ""
  2825. }
  2826. func (x *RemoteFile) GetBackendId() string {
  2827. if x != nil {
  2828. return x.BackendId
  2829. }
  2830. return ""
  2831. }
  2832. func (x *RemoteFile) GetKey() string {
  2833. if x != nil {
  2834. return x.Key
  2835. }
  2836. return ""
  2837. }
  2838. func (x *RemoteFile) GetOffset() uint64 {
  2839. if x != nil {
  2840. return x.Offset
  2841. }
  2842. return 0
  2843. }
  2844. func (x *RemoteFile) GetFileSize() uint64 {
  2845. if x != nil {
  2846. return x.FileSize
  2847. }
  2848. return 0
  2849. }
  2850. func (x *RemoteFile) GetModifiedTime() uint64 {
  2851. if x != nil {
  2852. return x.ModifiedTime
  2853. }
  2854. return 0
  2855. }
  2856. func (x *RemoteFile) GetExtension() string {
  2857. if x != nil {
  2858. return x.Extension
  2859. }
  2860. return ""
  2861. }
  2862. type VolumeInfo struct {
  2863. state protoimpl.MessageState
  2864. sizeCache protoimpl.SizeCache
  2865. unknownFields protoimpl.UnknownFields
  2866. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
  2867. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
  2868. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  2869. }
  2870. func (x *VolumeInfo) Reset() {
  2871. *x = VolumeInfo{}
  2872. if protoimpl.UnsafeEnabled {
  2873. mi := &file_volume_server_proto_msgTypes[61]
  2874. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2875. ms.StoreMessageInfo(mi)
  2876. }
  2877. }
  2878. func (x *VolumeInfo) String() string {
  2879. return protoimpl.X.MessageStringOf(x)
  2880. }
  2881. func (*VolumeInfo) ProtoMessage() {}
  2882. func (x *VolumeInfo) ProtoReflect() protoreflect.Message {
  2883. mi := &file_volume_server_proto_msgTypes[61]
  2884. if protoimpl.UnsafeEnabled && x != nil {
  2885. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2886. if ms.LoadMessageInfo() == nil {
  2887. ms.StoreMessageInfo(mi)
  2888. }
  2889. return ms
  2890. }
  2891. return mi.MessageOf(x)
  2892. }
  2893. // Deprecated: Use VolumeInfo.ProtoReflect.Descriptor instead.
  2894. func (*VolumeInfo) Descriptor() ([]byte, []int) {
  2895. return file_volume_server_proto_rawDescGZIP(), []int{61}
  2896. }
  2897. func (x *VolumeInfo) GetFiles() []*RemoteFile {
  2898. if x != nil {
  2899. return x.Files
  2900. }
  2901. return nil
  2902. }
  2903. func (x *VolumeInfo) GetVersion() uint32 {
  2904. if x != nil {
  2905. return x.Version
  2906. }
  2907. return 0
  2908. }
  2909. func (x *VolumeInfo) GetReplication() string {
  2910. if x != nil {
  2911. return x.Replication
  2912. }
  2913. return ""
  2914. }
  2915. type VolumeTierMoveDatToRemoteRequest struct {
  2916. state protoimpl.MessageState
  2917. sizeCache protoimpl.SizeCache
  2918. unknownFields protoimpl.UnknownFields
  2919. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2920. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2921. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName,proto3" json:"destination_backend_name,omitempty"`
  2922. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile,proto3" json:"keep_local_dat_file,omitempty"`
  2923. }
  2924. func (x *VolumeTierMoveDatToRemoteRequest) Reset() {
  2925. *x = VolumeTierMoveDatToRemoteRequest{}
  2926. if protoimpl.UnsafeEnabled {
  2927. mi := &file_volume_server_proto_msgTypes[62]
  2928. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2929. ms.StoreMessageInfo(mi)
  2930. }
  2931. }
  2932. func (x *VolumeTierMoveDatToRemoteRequest) String() string {
  2933. return protoimpl.X.MessageStringOf(x)
  2934. }
  2935. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  2936. func (x *VolumeTierMoveDatToRemoteRequest) ProtoReflect() protoreflect.Message {
  2937. mi := &file_volume_server_proto_msgTypes[62]
  2938. if protoimpl.UnsafeEnabled && x != nil {
  2939. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2940. if ms.LoadMessageInfo() == nil {
  2941. ms.StoreMessageInfo(mi)
  2942. }
  2943. return ms
  2944. }
  2945. return mi.MessageOf(x)
  2946. }
  2947. // Deprecated: Use VolumeTierMoveDatToRemoteRequest.ProtoReflect.Descriptor instead.
  2948. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  2949. return file_volume_server_proto_rawDescGZIP(), []int{62}
  2950. }
  2951. func (x *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  2952. if x != nil {
  2953. return x.VolumeId
  2954. }
  2955. return 0
  2956. }
  2957. func (x *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  2958. if x != nil {
  2959. return x.Collection
  2960. }
  2961. return ""
  2962. }
  2963. func (x *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  2964. if x != nil {
  2965. return x.DestinationBackendName
  2966. }
  2967. return ""
  2968. }
  2969. func (x *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  2970. if x != nil {
  2971. return x.KeepLocalDatFile
  2972. }
  2973. return false
  2974. }
  2975. type VolumeTierMoveDatToRemoteResponse struct {
  2976. state protoimpl.MessageState
  2977. sizeCache protoimpl.SizeCache
  2978. unknownFields protoimpl.UnknownFields
  2979. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  2980. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  2981. }
  2982. func (x *VolumeTierMoveDatToRemoteResponse) Reset() {
  2983. *x = VolumeTierMoveDatToRemoteResponse{}
  2984. if protoimpl.UnsafeEnabled {
  2985. mi := &file_volume_server_proto_msgTypes[63]
  2986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2987. ms.StoreMessageInfo(mi)
  2988. }
  2989. }
  2990. func (x *VolumeTierMoveDatToRemoteResponse) String() string {
  2991. return protoimpl.X.MessageStringOf(x)
  2992. }
  2993. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  2994. func (x *VolumeTierMoveDatToRemoteResponse) ProtoReflect() protoreflect.Message {
  2995. mi := &file_volume_server_proto_msgTypes[63]
  2996. if protoimpl.UnsafeEnabled && x != nil {
  2997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2998. if ms.LoadMessageInfo() == nil {
  2999. ms.StoreMessageInfo(mi)
  3000. }
  3001. return ms
  3002. }
  3003. return mi.MessageOf(x)
  3004. }
  3005. // Deprecated: Use VolumeTierMoveDatToRemoteResponse.ProtoReflect.Descriptor instead.
  3006. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  3007. return file_volume_server_proto_rawDescGZIP(), []int{63}
  3008. }
  3009. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  3010. if x != nil {
  3011. return x.Processed
  3012. }
  3013. return 0
  3014. }
  3015. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  3016. if x != nil {
  3017. return x.ProcessedPercentage
  3018. }
  3019. return 0
  3020. }
  3021. type VolumeTierMoveDatFromRemoteRequest struct {
  3022. state protoimpl.MessageState
  3023. sizeCache protoimpl.SizeCache
  3024. unknownFields protoimpl.UnknownFields
  3025. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3026. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3027. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile,proto3" json:"keep_remote_dat_file,omitempty"`
  3028. }
  3029. func (x *VolumeTierMoveDatFromRemoteRequest) Reset() {
  3030. *x = VolumeTierMoveDatFromRemoteRequest{}
  3031. if protoimpl.UnsafeEnabled {
  3032. mi := &file_volume_server_proto_msgTypes[64]
  3033. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3034. ms.StoreMessageInfo(mi)
  3035. }
  3036. }
  3037. func (x *VolumeTierMoveDatFromRemoteRequest) String() string {
  3038. return protoimpl.X.MessageStringOf(x)
  3039. }
  3040. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  3041. func (x *VolumeTierMoveDatFromRemoteRequest) ProtoReflect() protoreflect.Message {
  3042. mi := &file_volume_server_proto_msgTypes[64]
  3043. if protoimpl.UnsafeEnabled && x != nil {
  3044. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3045. if ms.LoadMessageInfo() == nil {
  3046. ms.StoreMessageInfo(mi)
  3047. }
  3048. return ms
  3049. }
  3050. return mi.MessageOf(x)
  3051. }
  3052. // Deprecated: Use VolumeTierMoveDatFromRemoteRequest.ProtoReflect.Descriptor instead.
  3053. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  3054. return file_volume_server_proto_rawDescGZIP(), []int{64}
  3055. }
  3056. func (x *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  3057. if x != nil {
  3058. return x.VolumeId
  3059. }
  3060. return 0
  3061. }
  3062. func (x *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  3063. if x != nil {
  3064. return x.Collection
  3065. }
  3066. return ""
  3067. }
  3068. func (x *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  3069. if x != nil {
  3070. return x.KeepRemoteDatFile
  3071. }
  3072. return false
  3073. }
  3074. type VolumeTierMoveDatFromRemoteResponse struct {
  3075. state protoimpl.MessageState
  3076. sizeCache protoimpl.SizeCache
  3077. unknownFields protoimpl.UnknownFields
  3078. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3079. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3080. }
  3081. func (x *VolumeTierMoveDatFromRemoteResponse) Reset() {
  3082. *x = VolumeTierMoveDatFromRemoteResponse{}
  3083. if protoimpl.UnsafeEnabled {
  3084. mi := &file_volume_server_proto_msgTypes[65]
  3085. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3086. ms.StoreMessageInfo(mi)
  3087. }
  3088. }
  3089. func (x *VolumeTierMoveDatFromRemoteResponse) String() string {
  3090. return protoimpl.X.MessageStringOf(x)
  3091. }
  3092. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  3093. func (x *VolumeTierMoveDatFromRemoteResponse) ProtoReflect() protoreflect.Message {
  3094. mi := &file_volume_server_proto_msgTypes[65]
  3095. if protoimpl.UnsafeEnabled && x != nil {
  3096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3097. if ms.LoadMessageInfo() == nil {
  3098. ms.StoreMessageInfo(mi)
  3099. }
  3100. return ms
  3101. }
  3102. return mi.MessageOf(x)
  3103. }
  3104. // Deprecated: Use VolumeTierMoveDatFromRemoteResponse.ProtoReflect.Descriptor instead.
  3105. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  3106. return file_volume_server_proto_rawDescGZIP(), []int{65}
  3107. }
  3108. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  3109. if x != nil {
  3110. return x.Processed
  3111. }
  3112. return 0
  3113. }
  3114. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  3115. if x != nil {
  3116. return x.ProcessedPercentage
  3117. }
  3118. return 0
  3119. }
  3120. type VolumeServerStatusRequest struct {
  3121. state protoimpl.MessageState
  3122. sizeCache protoimpl.SizeCache
  3123. unknownFields protoimpl.UnknownFields
  3124. }
  3125. func (x *VolumeServerStatusRequest) Reset() {
  3126. *x = VolumeServerStatusRequest{}
  3127. if protoimpl.UnsafeEnabled {
  3128. mi := &file_volume_server_proto_msgTypes[66]
  3129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3130. ms.StoreMessageInfo(mi)
  3131. }
  3132. }
  3133. func (x *VolumeServerStatusRequest) String() string {
  3134. return protoimpl.X.MessageStringOf(x)
  3135. }
  3136. func (*VolumeServerStatusRequest) ProtoMessage() {}
  3137. func (x *VolumeServerStatusRequest) ProtoReflect() protoreflect.Message {
  3138. mi := &file_volume_server_proto_msgTypes[66]
  3139. if protoimpl.UnsafeEnabled && x != nil {
  3140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3141. if ms.LoadMessageInfo() == nil {
  3142. ms.StoreMessageInfo(mi)
  3143. }
  3144. return ms
  3145. }
  3146. return mi.MessageOf(x)
  3147. }
  3148. // Deprecated: Use VolumeServerStatusRequest.ProtoReflect.Descriptor instead.
  3149. func (*VolumeServerStatusRequest) Descriptor() ([]byte, []int) {
  3150. return file_volume_server_proto_rawDescGZIP(), []int{66}
  3151. }
  3152. type VolumeServerStatusResponse struct {
  3153. state protoimpl.MessageState
  3154. sizeCache protoimpl.SizeCache
  3155. unknownFields protoimpl.UnknownFields
  3156. DiskStatuses []*DiskStatus `protobuf:"bytes,1,rep,name=disk_statuses,json=diskStatuses,proto3" json:"disk_statuses,omitempty"`
  3157. MemoryStatus *MemStatus `protobuf:"bytes,2,opt,name=memory_status,json=memoryStatus,proto3" json:"memory_status,omitempty"`
  3158. }
  3159. func (x *VolumeServerStatusResponse) Reset() {
  3160. *x = VolumeServerStatusResponse{}
  3161. if protoimpl.UnsafeEnabled {
  3162. mi := &file_volume_server_proto_msgTypes[67]
  3163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3164. ms.StoreMessageInfo(mi)
  3165. }
  3166. }
  3167. func (x *VolumeServerStatusResponse) String() string {
  3168. return protoimpl.X.MessageStringOf(x)
  3169. }
  3170. func (*VolumeServerStatusResponse) ProtoMessage() {}
  3171. func (x *VolumeServerStatusResponse) ProtoReflect() protoreflect.Message {
  3172. mi := &file_volume_server_proto_msgTypes[67]
  3173. if protoimpl.UnsafeEnabled && x != nil {
  3174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3175. if ms.LoadMessageInfo() == nil {
  3176. ms.StoreMessageInfo(mi)
  3177. }
  3178. return ms
  3179. }
  3180. return mi.MessageOf(x)
  3181. }
  3182. // Deprecated: Use VolumeServerStatusResponse.ProtoReflect.Descriptor instead.
  3183. func (*VolumeServerStatusResponse) Descriptor() ([]byte, []int) {
  3184. return file_volume_server_proto_rawDescGZIP(), []int{67}
  3185. }
  3186. func (x *VolumeServerStatusResponse) GetDiskStatuses() []*DiskStatus {
  3187. if x != nil {
  3188. return x.DiskStatuses
  3189. }
  3190. return nil
  3191. }
  3192. func (x *VolumeServerStatusResponse) GetMemoryStatus() *MemStatus {
  3193. if x != nil {
  3194. return x.MemoryStatus
  3195. }
  3196. return nil
  3197. }
  3198. // select on volume servers
  3199. type QueryRequest struct {
  3200. state protoimpl.MessageState
  3201. sizeCache protoimpl.SizeCache
  3202. unknownFields protoimpl.UnknownFields
  3203. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  3204. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  3205. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  3206. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  3207. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  3208. }
  3209. func (x *QueryRequest) Reset() {
  3210. *x = QueryRequest{}
  3211. if protoimpl.UnsafeEnabled {
  3212. mi := &file_volume_server_proto_msgTypes[68]
  3213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3214. ms.StoreMessageInfo(mi)
  3215. }
  3216. }
  3217. func (x *QueryRequest) String() string {
  3218. return protoimpl.X.MessageStringOf(x)
  3219. }
  3220. func (*QueryRequest) ProtoMessage() {}
  3221. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  3222. mi := &file_volume_server_proto_msgTypes[68]
  3223. if protoimpl.UnsafeEnabled && x != nil {
  3224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3225. if ms.LoadMessageInfo() == nil {
  3226. ms.StoreMessageInfo(mi)
  3227. }
  3228. return ms
  3229. }
  3230. return mi.MessageOf(x)
  3231. }
  3232. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  3233. func (*QueryRequest) Descriptor() ([]byte, []int) {
  3234. return file_volume_server_proto_rawDescGZIP(), []int{68}
  3235. }
  3236. func (x *QueryRequest) GetSelections() []string {
  3237. if x != nil {
  3238. return x.Selections
  3239. }
  3240. return nil
  3241. }
  3242. func (x *QueryRequest) GetFromFileIds() []string {
  3243. if x != nil {
  3244. return x.FromFileIds
  3245. }
  3246. return nil
  3247. }
  3248. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  3249. if x != nil {
  3250. return x.Filter
  3251. }
  3252. return nil
  3253. }
  3254. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  3255. if x != nil {
  3256. return x.InputSerialization
  3257. }
  3258. return nil
  3259. }
  3260. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  3261. if x != nil {
  3262. return x.OutputSerialization
  3263. }
  3264. return nil
  3265. }
  3266. type QueriedStripe struct {
  3267. state protoimpl.MessageState
  3268. sizeCache protoimpl.SizeCache
  3269. unknownFields protoimpl.UnknownFields
  3270. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  3271. }
  3272. func (x *QueriedStripe) Reset() {
  3273. *x = QueriedStripe{}
  3274. if protoimpl.UnsafeEnabled {
  3275. mi := &file_volume_server_proto_msgTypes[69]
  3276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3277. ms.StoreMessageInfo(mi)
  3278. }
  3279. }
  3280. func (x *QueriedStripe) String() string {
  3281. return protoimpl.X.MessageStringOf(x)
  3282. }
  3283. func (*QueriedStripe) ProtoMessage() {}
  3284. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  3285. mi := &file_volume_server_proto_msgTypes[69]
  3286. if protoimpl.UnsafeEnabled && x != nil {
  3287. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3288. if ms.LoadMessageInfo() == nil {
  3289. ms.StoreMessageInfo(mi)
  3290. }
  3291. return ms
  3292. }
  3293. return mi.MessageOf(x)
  3294. }
  3295. // Deprecated: Use QueriedStripe.ProtoReflect.Descriptor instead.
  3296. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  3297. return file_volume_server_proto_rawDescGZIP(), []int{69}
  3298. }
  3299. func (x *QueriedStripe) GetRecords() []byte {
  3300. if x != nil {
  3301. return x.Records
  3302. }
  3303. return nil
  3304. }
  3305. type VolumeNeedleStatusRequest struct {
  3306. state protoimpl.MessageState
  3307. sizeCache protoimpl.SizeCache
  3308. unknownFields protoimpl.UnknownFields
  3309. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3310. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3311. }
  3312. func (x *VolumeNeedleStatusRequest) Reset() {
  3313. *x = VolumeNeedleStatusRequest{}
  3314. if protoimpl.UnsafeEnabled {
  3315. mi := &file_volume_server_proto_msgTypes[70]
  3316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3317. ms.StoreMessageInfo(mi)
  3318. }
  3319. }
  3320. func (x *VolumeNeedleStatusRequest) String() string {
  3321. return protoimpl.X.MessageStringOf(x)
  3322. }
  3323. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  3324. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  3325. mi := &file_volume_server_proto_msgTypes[70]
  3326. if protoimpl.UnsafeEnabled && x != nil {
  3327. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3328. if ms.LoadMessageInfo() == nil {
  3329. ms.StoreMessageInfo(mi)
  3330. }
  3331. return ms
  3332. }
  3333. return mi.MessageOf(x)
  3334. }
  3335. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  3336. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  3337. return file_volume_server_proto_rawDescGZIP(), []int{70}
  3338. }
  3339. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  3340. if x != nil {
  3341. return x.VolumeId
  3342. }
  3343. return 0
  3344. }
  3345. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  3346. if x != nil {
  3347. return x.NeedleId
  3348. }
  3349. return 0
  3350. }
  3351. type VolumeNeedleStatusResponse struct {
  3352. state protoimpl.MessageState
  3353. sizeCache protoimpl.SizeCache
  3354. unknownFields protoimpl.UnknownFields
  3355. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3356. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  3357. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  3358. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  3359. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  3360. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  3361. }
  3362. func (x *VolumeNeedleStatusResponse) Reset() {
  3363. *x = VolumeNeedleStatusResponse{}
  3364. if protoimpl.UnsafeEnabled {
  3365. mi := &file_volume_server_proto_msgTypes[71]
  3366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3367. ms.StoreMessageInfo(mi)
  3368. }
  3369. }
  3370. func (x *VolumeNeedleStatusResponse) String() string {
  3371. return protoimpl.X.MessageStringOf(x)
  3372. }
  3373. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  3374. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  3375. mi := &file_volume_server_proto_msgTypes[71]
  3376. if protoimpl.UnsafeEnabled && x != nil {
  3377. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3378. if ms.LoadMessageInfo() == nil {
  3379. ms.StoreMessageInfo(mi)
  3380. }
  3381. return ms
  3382. }
  3383. return mi.MessageOf(x)
  3384. }
  3385. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  3386. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  3387. return file_volume_server_proto_rawDescGZIP(), []int{71}
  3388. }
  3389. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  3390. if x != nil {
  3391. return x.NeedleId
  3392. }
  3393. return 0
  3394. }
  3395. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  3396. if x != nil {
  3397. return x.Cookie
  3398. }
  3399. return 0
  3400. }
  3401. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  3402. if x != nil {
  3403. return x.Size
  3404. }
  3405. return 0
  3406. }
  3407. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  3408. if x != nil {
  3409. return x.LastModified
  3410. }
  3411. return 0
  3412. }
  3413. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  3414. if x != nil {
  3415. return x.Crc
  3416. }
  3417. return 0
  3418. }
  3419. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  3420. if x != nil {
  3421. return x.Ttl
  3422. }
  3423. return ""
  3424. }
  3425. type QueryRequest_Filter struct {
  3426. state protoimpl.MessageState
  3427. sizeCache protoimpl.SizeCache
  3428. unknownFields protoimpl.UnknownFields
  3429. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  3430. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  3431. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  3432. }
  3433. func (x *QueryRequest_Filter) Reset() {
  3434. *x = QueryRequest_Filter{}
  3435. if protoimpl.UnsafeEnabled {
  3436. mi := &file_volume_server_proto_msgTypes[72]
  3437. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3438. ms.StoreMessageInfo(mi)
  3439. }
  3440. }
  3441. func (x *QueryRequest_Filter) String() string {
  3442. return protoimpl.X.MessageStringOf(x)
  3443. }
  3444. func (*QueryRequest_Filter) ProtoMessage() {}
  3445. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  3446. mi := &file_volume_server_proto_msgTypes[72]
  3447. if protoimpl.UnsafeEnabled && x != nil {
  3448. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3449. if ms.LoadMessageInfo() == nil {
  3450. ms.StoreMessageInfo(mi)
  3451. }
  3452. return ms
  3453. }
  3454. return mi.MessageOf(x)
  3455. }
  3456. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  3457. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  3458. return file_volume_server_proto_rawDescGZIP(), []int{68, 0}
  3459. }
  3460. func (x *QueryRequest_Filter) GetField() string {
  3461. if x != nil {
  3462. return x.Field
  3463. }
  3464. return ""
  3465. }
  3466. func (x *QueryRequest_Filter) GetOperand() string {
  3467. if x != nil {
  3468. return x.Operand
  3469. }
  3470. return ""
  3471. }
  3472. func (x *QueryRequest_Filter) GetValue() string {
  3473. if x != nil {
  3474. return x.Value
  3475. }
  3476. return ""
  3477. }
  3478. type QueryRequest_InputSerialization struct {
  3479. state protoimpl.MessageState
  3480. sizeCache protoimpl.SizeCache
  3481. unknownFields protoimpl.UnknownFields
  3482. // NONE | GZIP | BZIP2
  3483. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  3484. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  3485. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  3486. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  3487. }
  3488. func (x *QueryRequest_InputSerialization) Reset() {
  3489. *x = QueryRequest_InputSerialization{}
  3490. if protoimpl.UnsafeEnabled {
  3491. mi := &file_volume_server_proto_msgTypes[73]
  3492. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3493. ms.StoreMessageInfo(mi)
  3494. }
  3495. }
  3496. func (x *QueryRequest_InputSerialization) String() string {
  3497. return protoimpl.X.MessageStringOf(x)
  3498. }
  3499. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  3500. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  3501. mi := &file_volume_server_proto_msgTypes[73]
  3502. if protoimpl.UnsafeEnabled && x != nil {
  3503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3504. if ms.LoadMessageInfo() == nil {
  3505. ms.StoreMessageInfo(mi)
  3506. }
  3507. return ms
  3508. }
  3509. return mi.MessageOf(x)
  3510. }
  3511. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  3512. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  3513. return file_volume_server_proto_rawDescGZIP(), []int{68, 1}
  3514. }
  3515. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  3516. if x != nil {
  3517. return x.CompressionType
  3518. }
  3519. return ""
  3520. }
  3521. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  3522. if x != nil {
  3523. return x.CsvInput
  3524. }
  3525. return nil
  3526. }
  3527. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  3528. if x != nil {
  3529. return x.JsonInput
  3530. }
  3531. return nil
  3532. }
  3533. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  3534. if x != nil {
  3535. return x.ParquetInput
  3536. }
  3537. return nil
  3538. }
  3539. type QueryRequest_OutputSerialization struct {
  3540. state protoimpl.MessageState
  3541. sizeCache protoimpl.SizeCache
  3542. unknownFields protoimpl.UnknownFields
  3543. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  3544. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  3545. }
  3546. func (x *QueryRequest_OutputSerialization) Reset() {
  3547. *x = QueryRequest_OutputSerialization{}
  3548. if protoimpl.UnsafeEnabled {
  3549. mi := &file_volume_server_proto_msgTypes[74]
  3550. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3551. ms.StoreMessageInfo(mi)
  3552. }
  3553. }
  3554. func (x *QueryRequest_OutputSerialization) String() string {
  3555. return protoimpl.X.MessageStringOf(x)
  3556. }
  3557. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  3558. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  3559. mi := &file_volume_server_proto_msgTypes[74]
  3560. if protoimpl.UnsafeEnabled && x != nil {
  3561. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3562. if ms.LoadMessageInfo() == nil {
  3563. ms.StoreMessageInfo(mi)
  3564. }
  3565. return ms
  3566. }
  3567. return mi.MessageOf(x)
  3568. }
  3569. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  3570. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  3571. return file_volume_server_proto_rawDescGZIP(), []int{68, 2}
  3572. }
  3573. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  3574. if x != nil {
  3575. return x.CsvOutput
  3576. }
  3577. return nil
  3578. }
  3579. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  3580. if x != nil {
  3581. return x.JsonOutput
  3582. }
  3583. return nil
  3584. }
  3585. type QueryRequest_InputSerialization_CSVInput struct {
  3586. state protoimpl.MessageState
  3587. sizeCache protoimpl.SizeCache
  3588. unknownFields protoimpl.UnknownFields
  3589. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  3590. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  3591. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  3592. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer,proto3" json:"quote_charactoer,omitempty"` // Default: "
  3593. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  3594. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  3595. // If true, records might contain record delimiters within quote characters
  3596. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  3597. }
  3598. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  3599. *x = QueryRequest_InputSerialization_CSVInput{}
  3600. if protoimpl.UnsafeEnabled {
  3601. mi := &file_volume_server_proto_msgTypes[75]
  3602. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3603. ms.StoreMessageInfo(mi)
  3604. }
  3605. }
  3606. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  3607. return protoimpl.X.MessageStringOf(x)
  3608. }
  3609. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  3610. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  3611. mi := &file_volume_server_proto_msgTypes[75]
  3612. if protoimpl.UnsafeEnabled && x != nil {
  3613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3614. if ms.LoadMessageInfo() == nil {
  3615. ms.StoreMessageInfo(mi)
  3616. }
  3617. return ms
  3618. }
  3619. return mi.MessageOf(x)
  3620. }
  3621. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  3622. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  3623. return file_volume_server_proto_rawDescGZIP(), []int{68, 1, 0}
  3624. }
  3625. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  3626. if x != nil {
  3627. return x.FileHeaderInfo
  3628. }
  3629. return ""
  3630. }
  3631. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  3632. if x != nil {
  3633. return x.RecordDelimiter
  3634. }
  3635. return ""
  3636. }
  3637. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  3638. if x != nil {
  3639. return x.FieldDelimiter
  3640. }
  3641. return ""
  3642. }
  3643. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharactoer() string {
  3644. if x != nil {
  3645. return x.QuoteCharactoer
  3646. }
  3647. return ""
  3648. }
  3649. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  3650. if x != nil {
  3651. return x.QuoteEscapeCharacter
  3652. }
  3653. return ""
  3654. }
  3655. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  3656. if x != nil {
  3657. return x.Comments
  3658. }
  3659. return ""
  3660. }
  3661. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  3662. if x != nil {
  3663. return x.AllowQuotedRecordDelimiter
  3664. }
  3665. return false
  3666. }
  3667. type QueryRequest_InputSerialization_JSONInput struct {
  3668. state protoimpl.MessageState
  3669. sizeCache protoimpl.SizeCache
  3670. unknownFields protoimpl.UnknownFields
  3671. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  3672. }
  3673. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  3674. *x = QueryRequest_InputSerialization_JSONInput{}
  3675. if protoimpl.UnsafeEnabled {
  3676. mi := &file_volume_server_proto_msgTypes[76]
  3677. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3678. ms.StoreMessageInfo(mi)
  3679. }
  3680. }
  3681. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  3682. return protoimpl.X.MessageStringOf(x)
  3683. }
  3684. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  3685. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  3686. mi := &file_volume_server_proto_msgTypes[76]
  3687. if protoimpl.UnsafeEnabled && x != nil {
  3688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3689. if ms.LoadMessageInfo() == nil {
  3690. ms.StoreMessageInfo(mi)
  3691. }
  3692. return ms
  3693. }
  3694. return mi.MessageOf(x)
  3695. }
  3696. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  3697. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  3698. return file_volume_server_proto_rawDescGZIP(), []int{68, 1, 1}
  3699. }
  3700. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  3701. if x != nil {
  3702. return x.Type
  3703. }
  3704. return ""
  3705. }
  3706. type QueryRequest_InputSerialization_ParquetInput struct {
  3707. state protoimpl.MessageState
  3708. sizeCache protoimpl.SizeCache
  3709. unknownFields protoimpl.UnknownFields
  3710. }
  3711. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  3712. *x = QueryRequest_InputSerialization_ParquetInput{}
  3713. if protoimpl.UnsafeEnabled {
  3714. mi := &file_volume_server_proto_msgTypes[77]
  3715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3716. ms.StoreMessageInfo(mi)
  3717. }
  3718. }
  3719. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  3720. return protoimpl.X.MessageStringOf(x)
  3721. }
  3722. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  3723. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  3724. mi := &file_volume_server_proto_msgTypes[77]
  3725. if protoimpl.UnsafeEnabled && x != nil {
  3726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3727. if ms.LoadMessageInfo() == nil {
  3728. ms.StoreMessageInfo(mi)
  3729. }
  3730. return ms
  3731. }
  3732. return mi.MessageOf(x)
  3733. }
  3734. // Deprecated: Use QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  3735. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  3736. return file_volume_server_proto_rawDescGZIP(), []int{68, 1, 2}
  3737. }
  3738. type QueryRequest_OutputSerialization_CSVOutput struct {
  3739. state protoimpl.MessageState
  3740. sizeCache protoimpl.SizeCache
  3741. unknownFields protoimpl.UnknownFields
  3742. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  3743. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  3744. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  3745. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer,proto3" json:"quote_charactoer,omitempty"` // Default: "
  3746. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  3747. }
  3748. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  3749. *x = QueryRequest_OutputSerialization_CSVOutput{}
  3750. if protoimpl.UnsafeEnabled {
  3751. mi := &file_volume_server_proto_msgTypes[78]
  3752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3753. ms.StoreMessageInfo(mi)
  3754. }
  3755. }
  3756. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  3757. return protoimpl.X.MessageStringOf(x)
  3758. }
  3759. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  3760. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  3761. mi := &file_volume_server_proto_msgTypes[78]
  3762. if protoimpl.UnsafeEnabled && x != nil {
  3763. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3764. if ms.LoadMessageInfo() == nil {
  3765. ms.StoreMessageInfo(mi)
  3766. }
  3767. return ms
  3768. }
  3769. return mi.MessageOf(x)
  3770. }
  3771. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  3772. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  3773. return file_volume_server_proto_rawDescGZIP(), []int{68, 2, 0}
  3774. }
  3775. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  3776. if x != nil {
  3777. return x.QuoteFields
  3778. }
  3779. return ""
  3780. }
  3781. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  3782. if x != nil {
  3783. return x.RecordDelimiter
  3784. }
  3785. return ""
  3786. }
  3787. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  3788. if x != nil {
  3789. return x.FieldDelimiter
  3790. }
  3791. return ""
  3792. }
  3793. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharactoer() string {
  3794. if x != nil {
  3795. return x.QuoteCharactoer
  3796. }
  3797. return ""
  3798. }
  3799. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  3800. if x != nil {
  3801. return x.QuoteEscapeCharacter
  3802. }
  3803. return ""
  3804. }
  3805. type QueryRequest_OutputSerialization_JSONOutput struct {
  3806. state protoimpl.MessageState
  3807. sizeCache protoimpl.SizeCache
  3808. unknownFields protoimpl.UnknownFields
  3809. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  3810. }
  3811. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  3812. *x = QueryRequest_OutputSerialization_JSONOutput{}
  3813. if protoimpl.UnsafeEnabled {
  3814. mi := &file_volume_server_proto_msgTypes[79]
  3815. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3816. ms.StoreMessageInfo(mi)
  3817. }
  3818. }
  3819. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  3820. return protoimpl.X.MessageStringOf(x)
  3821. }
  3822. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  3823. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  3824. mi := &file_volume_server_proto_msgTypes[79]
  3825. if protoimpl.UnsafeEnabled && x != nil {
  3826. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3827. if ms.LoadMessageInfo() == nil {
  3828. ms.StoreMessageInfo(mi)
  3829. }
  3830. return ms
  3831. }
  3832. return mi.MessageOf(x)
  3833. }
  3834. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  3835. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  3836. return file_volume_server_proto_rawDescGZIP(), []int{68, 2, 1}
  3837. }
  3838. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  3839. if x != nil {
  3840. return x.RecordDelimiter
  3841. }
  3842. return ""
  3843. }
  3844. var File_volume_server_proto protoreflect.FileDescriptor
  3845. var file_volume_server_proto_rawDesc = []byte{
  3846. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  3847. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  3848. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68,
  3849. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a,
  3850. 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
  3851. 0x07, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70,
  3852. 0x5f, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20,
  3853. 0x01, 0x28, 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43,
  3854. 0x68, 0x65, 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c,
  3855. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72,
  3856. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76,
  3857. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3858. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65,
  3859. 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  3860. 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69,
  3861. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12,
  3862. 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  3863. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72,
  3864. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a,
  3865. 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a,
  3866. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
  3867. 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45,
  3868. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  3869. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3870. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  3871. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a,
  3872. 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65,
  3873. 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61,
  3874. 0x72, 0x62, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28,
  3875. 0x01, 0x52, 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22,
  3876. 0x5b, 0x0a, 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  3877. 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a,
  3878. 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  3879. 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72,
  3880. 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3881. 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x1d, 0x0a, 0x1b,
  3882. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70,
  3883. 0x61, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56,
  3884. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69,
  3885. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  3886. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  3887. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  3888. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3889. 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f,
  3890. 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61,
  3891. 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x39, 0x0a, 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  3892. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75,
  3893. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  3894. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  3895. 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  3896. 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  3897. 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  3898. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f,
  3899. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  3900. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65,
  3901. 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
  3902. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xde, 0x01, 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63,
  3903. 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3904. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  3905. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  3906. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  3907. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a,
  3908. 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01,
  3909. 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12,
  3910. 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04,
  3911. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  3912. 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3913. 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61,
  3914. 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20,
  3915. 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61,
  3916. 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x22, 0x18, 0x0a, 0x16, 0x41, 0x6c, 0x6c, 0x6f, 0x63,
  3917. 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  3918. 0x65, 0x22, 0x36, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53,
  3919. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  3920. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  3921. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb, 0x01, 0x0a, 0x18, 0x56, 0x6f,
  3922. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  3923. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  3924. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  3925. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  3926. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  3927. 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
  3928. 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  3929. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x05, 0x20, 0x01,
  3930. 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x69, 0x6c, 0x5f,
  3931. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x74, 0x61,
  3932. 0x69, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70,
  3933. 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01,
  3934. 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x76, 0x69, 0x73,
  3935. 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f,
  3936. 0x73, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46,
  3937. 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  3938. 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79,
  3939. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  3940. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  3941. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73,
  3942. 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x22,
  3943. 0x42, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65,
  3944. 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  3945. 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  3946. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74,
  3947. 0x65, 0x6e, 0x74, 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75,
  3948. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  3949. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  3950. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  3951. 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x33, 0x0a,
  3952. 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
  3953. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  3954. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  3955. 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f,
  3956. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x32, 0x0a, 0x13, 0x56,
  3957. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  3958. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  3959. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22,
  3960. 0x16, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  3961. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  3962. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x71,
  3963. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  3964. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  3965. 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52,
  3966. 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  3967. 0x57, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
  3968. 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  3969. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  3970. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  3971. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70,
  3972. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75,
  3973. 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3974. 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01,
  3975. 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0xae, 0x01, 0x0a, 0x11, 0x56, 0x6f,
  3976. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  3977. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  3978. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  3979. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3980. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b,
  3981. 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
  3982. 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10,
  3983. 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c,
  3984. 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f,
  3985. 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72,
  3986. 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x22, 0x3f, 0x0a, 0x12, 0x56, 0x6f,
  3987. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  3988. 0x12, 0x29, 0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f,
  3989. 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x6c, 0x61, 0x73,
  3990. 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f,
  3991. 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  3992. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  3993. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03,
  3994. 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f,
  3995. 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76,
  3996. 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d,
  3997. 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3998. 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04,
  3999. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74,
  4000. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05,
  4001. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4002. 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4003. 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75,
  4004. 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75,
  4005. 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75,
  4006. 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65,
  4007. 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75,
  4008. 0x6e, 0x64, 0x22, 0x35, 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65,
  4009. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63,
  4010. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69,
  4011. 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f,
  4012. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65,
  4013. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4014. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4015. 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02,
  4016. 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a,
  4017. 0x14, 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65,
  4018. 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c,
  4019. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22,
  4020. 0x84, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65,
  4021. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d,
  4022. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  4023. 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65,
  4024. 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79,
  4025. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f,
  4026. 0x64, 0x79, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68,
  4027. 0x75, 0x6e, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73,
  4028. 0x74, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x22, 0xb7, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4029. 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71,
  4030. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4031. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4032. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20,
  4033. 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14,
  4034. 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63,
  4035. 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65,
  4036. 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30,
  4037. 0x0a, 0x14, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4038. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f,
  4039. 0x75, 0x72, 0x63, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
  4040. 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65,
  4041. 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c,
  4042. 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  4043. 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4044. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4045. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  4046. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  4047. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e,
  4048. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65,
  4049. 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b,
  4050. 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  4051. 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4052. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4053. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  4054. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4055. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56,
  4056. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62,
  4057. 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11,
  4058. 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64,
  4059. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74,
  4060. 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x8b, 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c,
  4061. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52,
  4062. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4063. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4064. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4065. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4066. 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73,
  4067. 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73,
  4068. 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c,
  4069. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78,
  4070. 0x46, 0x69, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64,
  4071. 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  4072. 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22,
  4073. 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x6a, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18,
  4074. 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69,
  4075. 0x6c, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66,
  4076. 0x69, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56,
  4077. 0x69, 0x66, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4078. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70,
  4079. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x77, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4080. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
  4081. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  4082. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  4083. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  4084. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4085. 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20,
  4086. 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a,
  4087. 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44,
  4088. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a,
  4089. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d,
  4090. 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4091. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4092. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  4093. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f,
  4094. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72,
  4095. 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61,
  4096. 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  4097. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
  4098. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4099. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71,
  4100. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4101. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4102. 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03,
  4103. 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f,
  4104. 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  4105. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4106. 0x99, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  4107. 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  4108. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4109. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61,
  4110. 0x72, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61,
  4111. 0x72, 0x64, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03,
  4112. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04,
  4113. 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65,
  4114. 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x05, 0x20, 0x01,
  4115. 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56,
  4116. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64,
  4117. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  4118. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a,
  4119. 0x69, 0x73, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
  4120. 0x52, 0x09, 0x69, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19,
  4121. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65,
  4122. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4123. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4124. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4125. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  4126. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b,
  4127. 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65,
  4128. 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
  4129. 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56,
  4130. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4131. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c,
  4132. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c,
  4133. 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4134. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4135. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4136. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  4137. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4138. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4139. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61,
  4140. 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  4141. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4142. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4143. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xed, 0x02, 0x0a, 0x1c, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f,
  4144. 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  4145. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4146. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4147. 0x65, 0x49, 0x64, 0x12, 0x3b, 0x0a, 0x1a, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f,
  4148. 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  4149. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65,
  4150. 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73,
  4151. 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a,
  4152. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65,
  4153. 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3b, 0x0a, 0x1a, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65,
  4154. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e,
  4155. 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c,
  4156. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  4157. 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69,
  4158. 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c,
  4159. 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f,
  4160. 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43,
  4161. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69,
  4162. 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28,
  4163. 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76,
  4164. 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4165. 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4166. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x9e, 0x01, 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74,
  4167. 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  4168. 0x09, 0x52, 0x03, 0x64, 0x69, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20,
  4169. 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64,
  4170. 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04,
  4171. 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65,
  4172. 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x65,
  4173. 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x46,
  4174. 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x75,
  4175. 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65,
  4176. 0x6e, 0x74, 0x55, 0x73, 0x65, 0x64, 0x22, 0xa3, 0x01, 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x53, 0x74,
  4177. 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e,
  4178. 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74,
  4179. 0x69, 0x6e, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
  4180. 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03,
  4181. 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72,
  4182. 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x12,
  4183. 0x0a, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x65,
  4184. 0x6c, 0x66, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x65, 0x61, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  4185. 0x52, 0x04, 0x68, 0x65, 0x61, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x18,
  4186. 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x22, 0xd8, 0x01, 0x0a,
  4187. 0x0a, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62,
  4188. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  4189. 0x09, 0x52, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d,
  4190. 0x0a, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  4191. 0x28, 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x49, 0x64, 0x12, 0x10, 0x0a,
  4192. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  4193. 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
  4194. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f,
  4195. 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65,
  4196. 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64,
  4197. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6d, 0x6f, 0x64,
  4198. 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x74,
  4199. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x78,
  4200. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x7c, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4201. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01,
  4202. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4203. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69,
  4204. 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72,
  4205. 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73,
  4206. 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
  4207. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  4208. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xc8, 0x01, 0x0a, 0x20, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4209. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d,
  4210. 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4211. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4212. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4213. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  4214. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x0a, 0x18, 0x64, 0x65, 0x73, 0x74, 0x69,
  4215. 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x6e,
  4216. 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x16, 0x64, 0x65, 0x73, 0x74, 0x69,
  4217. 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d,
  4218. 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f,
  4219. 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10,
  4220. 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65,
  4221. 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  4222. 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73,
  4223. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
  4224. 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
  4225. 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64,
  4226. 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02,
  4227. 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65,
  4228. 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x92, 0x01, 0x0a, 0x22, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4229. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52,
  4230. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  4231. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4232. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c,
  4233. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  4234. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x14, 0x6b, 0x65, 0x65,
  4235. 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c,
  4236. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x65, 0x6d,
  4237. 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x75, 0x0a, 0x23, 0x56, 0x6f,
  4238. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46,
  4239. 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4240. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01,
  4241. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12,
  4242. 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63,
  4243. 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72,
  4244. 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67,
  4245. 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65,
  4246. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xa1,
  4247. 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53,
  4248. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a,
  4249. 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, 0x01,
  4250. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4251. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74,
  4252. 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73,
  4253. 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
  4254. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4255. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x6d, 0x53, 0x74,
  4256. 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74,
  4257. 0x75, 0x73, 0x22, 0xf8, 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  4258. 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4259. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4260. 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x66, 0x69, 0x6c, 0x65,
  4261. 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x66, 0x72, 0x6f, 0x6d,
  4262. 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65,
  4263. 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4264. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79,
  4265. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06,
  4266. 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f,
  4267. 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20,
  4268. 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4269. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  4270. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  4271. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72,
  4272. 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x14, 0x6f, 0x75,
  4273. 0x74, 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  4274. 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4275. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72,
  4276. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53,
  4277. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6f, 0x75,
  4278. 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  4279. 0x6e, 0x1a, 0x4e, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x66,
  4280. 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c,
  4281. 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01,
  4282. 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76,
  4283. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  4284. 0x65, 0x1a, 0xd5, 0x05, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  4285. 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70,
  4286. 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
  4287. 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54,
  4288. 0x79, 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74,
  4289. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4290. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  4291. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69,
  4292. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70,
  4293. 0x75, 0x74, 0x52, 0x08, 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x5a, 0x0a, 0x0a,
  4294. 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  4295. 0x32, 0x3b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4296. 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4297. 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74,
  4298. 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x09, 0x6a,
  4299. 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x71,
  4300. 0x75, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
  4301. 0x3e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4302. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  4303. 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  4304. 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52,
  4305. 0x0c, 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xc8, 0x02,
  4306. 0x0a, 0x08, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x69,
  4307. 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01,
  4308. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  4309. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64,
  4310. 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  4311. 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12,
  4312. 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  4313. 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44,
  4314. 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x71, 0x75, 0x6f, 0x74,
  4315. 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01,
  4316. 0x28, 0x09, 0x52, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74,
  4317. 0x6f, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63,
  4318. 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20,
  4319. 0x01, 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65,
  4320. 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d,
  4321. 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d,
  4322. 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x71,
  4323. 0x75, 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c,
  4324. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a, 0x61, 0x6c,
  4325. 0x6c, 0x6f, 0x77, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44,
  4326. 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a, 0x53, 0x4f, 0x4e,
  4327. 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,
  4328. 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c, 0x50, 0x61, 0x72,
  4329. 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xf1, 0x03, 0x0a, 0x13, 0x4f, 0x75,
  4330. 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  4331. 0x6e, 0x12, 0x5b, 0x0a, 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18,
  4332. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4333. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65,
  4334. 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69,
  4335. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74,
  4336. 0x70, 0x75, 0x74, 0x52, 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x5e,
  4337. 0x0a, 0x0b, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20,
  4338. 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4339. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  4340. 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  4341. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70,
  4342. 0x75, 0x74, 0x52, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x1a, 0xe3,
  4343. 0x01, 0x0a, 0x09, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21, 0x0a, 0x0c,
  4344. 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01,
  4345. 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12,
  4346. 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69,
  4347. 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72,
  4348. 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69,
  4349. 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20,
  4350. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69,
  4351. 0x74, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61,
  4352. 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x71,
  4353. 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x12, 0x34,
  4354. 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63,
  4355. 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14,
  4356. 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61,
  4357. 0x63, 0x74, 0x65, 0x72, 0x1a, 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70,
  4358. 0x75, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c,
  4359. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65,
  4360. 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x22, 0x29, 0x0a,
  4361. 0x0d, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x12, 0x18,
  4362. 0x0a, 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52,
  4363. 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75,
  4364. 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  4365. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4366. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4367. 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4368. 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x22,
  4369. 0xae, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  4370. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b,
  4371. 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4372. 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63,
  4373. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f,
  4374. 0x6b, 0x69, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  4375. 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f,
  4376. 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c,
  4377. 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03,
  4378. 0x63, 0x72, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10,
  4379. 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c,
  4380. 0x32, 0x94, 0x1d, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65,
  4381. 0x72, 0x12, 0x5c, 0x0a, 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  4382. 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4383. 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  4384. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4385. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44,
  4386. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  4387. 0x6e, 0x0a, 0x11, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  4388. 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4389. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  4390. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4391. 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4392. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4393. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  4394. 0x74, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  4395. 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4396. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d,
  4397. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71,
  4398. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4399. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  4400. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4401. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  4402. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x2b, 0x2e, 0x76, 0x6f,
  4403. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4404. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69,
  4405. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4406. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75,
  4407. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65,
  4408. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75,
  4409. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x12,
  4410. 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4411. 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  4412. 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e,
  4413. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4414. 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65,
  4415. 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b,
  4416. 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4417. 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4418. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c,
  4419. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e,
  4420. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4421. 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4422. 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x41,
  4423. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x27, 0x2e,
  4424. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4425. 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52,
  4426. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4427. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61,
  4428. 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  4429. 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63,
  4430. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4431. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4432. 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4433. 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  4434. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53,
  4435. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  4436. 0x7c, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65,
  4437. 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4438. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4439. 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70,
  4440. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4441. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4442. 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70,
  4443. 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x5c, 0x0a,
  4444. 0x0b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24, 0x2e, 0x76,
  4445. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4446. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  4447. 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4448. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e,
  4449. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x62, 0x0a, 0x0d, 0x56,
  4450. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x2e, 0x76,
  4451. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4452. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71,
  4453. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4454. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e,
  4455. 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  4456. 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12,
  4457. 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4458. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  4459. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4460. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4461. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  4462. 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65,
  4463. 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4464. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4465. 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x75,
  4466. 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4467. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72,
  4468. 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4469. 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e,
  4470. 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4471. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4472. 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4473. 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4474. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  4475. 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x59, 0x0a,
  4476. 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x23, 0x2e, 0x76, 0x6f,
  4477. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4478. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4479. 0x1a, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4480. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65,
  4481. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x64,
  4482. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  4483. 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4484. 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69,
  4485. 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  4486. 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4487. 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c,
  4488. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4489. 0x00, 0x12, 0x55, 0x0a, 0x08, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e,
  4490. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4491. 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4492. 0x1a, 0x22, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4493. 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70,
  4494. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75,
  4495. 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x76,
  4496. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4497. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72,
  4498. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4499. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4500. 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4501. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4502. 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x12, 0x2b, 0x2e,
  4503. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4504. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69,
  4505. 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c,
  4506. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  4507. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72,
  4508. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f,
  4509. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65,
  4510. 0x72, 0x61, 0x74, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4511. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4512. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65,
  4513. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4514. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  4515. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52,
  4516. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c,
  4517. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69,
  4518. 0x6c, 0x64, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4519. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  4520. 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  4521. 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4522. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  4523. 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4524. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  4525. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f,
  4526. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4527. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70,
  4528. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4529. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4530. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65,
  4531. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75,
  4532. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  4533. 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4534. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  4535. 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  4536. 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4537. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4538. 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4539. 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  4540. 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4541. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4542. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52,
  4543. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4544. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4545. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
  4546. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4547. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
  4548. 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4549. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  4550. 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4551. 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4552. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  4553. 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4554. 0x65, 0x22, 0x00, 0x12, 0x70, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  4555. 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4556. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4557. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71,
  4558. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4559. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4560. 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4561. 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  4562. 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f,
  4563. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4564. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4565. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4566. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4567. 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4568. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75,
  4569. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75,
  4570. 0x6d, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4571. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  4572. 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75,
  4573. 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4574. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  4575. 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73,
  4576. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x88, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75,
  4577. 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52,
  4578. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4579. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  4580. 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f,
  4581. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4582. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4583. 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f,
  4584. 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  4585. 0x30, 0x01, 0x12, 0x8e, 0x01, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65,
  4586. 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f,
  4587. 0x74, 0x65, 0x12, 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4588. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72,
  4589. 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74,
  4590. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4591. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4592. 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f,
  4593. 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4594. 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72,
  4595. 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4596. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4597. 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  4598. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4599. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4600. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70,
  4601. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  4602. 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4603. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  4604. 0x1f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4605. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65,
  4606. 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65,
  4607. 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c,
  4608. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  4609. 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  4610. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4611. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4612. 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
  4613. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x39, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75,
  4614. 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x68, 0x72, 0x69, 0x73, 0x6c, 0x75, 0x73, 0x66, 0x2f,
  4615. 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70,
  4616. 0x62, 0x2f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4617. 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  4618. }
  4619. var (
  4620. file_volume_server_proto_rawDescOnce sync.Once
  4621. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  4622. )
  4623. func file_volume_server_proto_rawDescGZIP() []byte {
  4624. file_volume_server_proto_rawDescOnce.Do(func() {
  4625. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  4626. })
  4627. return file_volume_server_proto_rawDescData
  4628. }
  4629. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 80)
  4630. var file_volume_server_proto_goTypes = []interface{}{
  4631. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  4632. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  4633. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  4634. (*Empty)(nil), // 3: volume_server_pb.Empty
  4635. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  4636. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  4637. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  4638. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  4639. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  4640. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  4641. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  4642. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  4643. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  4644. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  4645. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  4646. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  4647. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  4648. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  4649. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  4650. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  4651. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  4652. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  4653. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  4654. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  4655. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  4656. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  4657. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  4658. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  4659. (*VolumeConfigureRequest)(nil), // 28: volume_server_pb.VolumeConfigureRequest
  4660. (*VolumeConfigureResponse)(nil), // 29: volume_server_pb.VolumeConfigureResponse
  4661. (*VolumeCopyRequest)(nil), // 30: volume_server_pb.VolumeCopyRequest
  4662. (*VolumeCopyResponse)(nil), // 31: volume_server_pb.VolumeCopyResponse
  4663. (*CopyFileRequest)(nil), // 32: volume_server_pb.CopyFileRequest
  4664. (*CopyFileResponse)(nil), // 33: volume_server_pb.CopyFileResponse
  4665. (*VolumeTailSenderRequest)(nil), // 34: volume_server_pb.VolumeTailSenderRequest
  4666. (*VolumeTailSenderResponse)(nil), // 35: volume_server_pb.VolumeTailSenderResponse
  4667. (*VolumeTailReceiverRequest)(nil), // 36: volume_server_pb.VolumeTailReceiverRequest
  4668. (*VolumeTailReceiverResponse)(nil), // 37: volume_server_pb.VolumeTailReceiverResponse
  4669. (*VolumeEcShardsGenerateRequest)(nil), // 38: volume_server_pb.VolumeEcShardsGenerateRequest
  4670. (*VolumeEcShardsGenerateResponse)(nil), // 39: volume_server_pb.VolumeEcShardsGenerateResponse
  4671. (*VolumeEcShardsRebuildRequest)(nil), // 40: volume_server_pb.VolumeEcShardsRebuildRequest
  4672. (*VolumeEcShardsRebuildResponse)(nil), // 41: volume_server_pb.VolumeEcShardsRebuildResponse
  4673. (*VolumeEcShardsCopyRequest)(nil), // 42: volume_server_pb.VolumeEcShardsCopyRequest
  4674. (*VolumeEcShardsCopyResponse)(nil), // 43: volume_server_pb.VolumeEcShardsCopyResponse
  4675. (*VolumeEcShardsDeleteRequest)(nil), // 44: volume_server_pb.VolumeEcShardsDeleteRequest
  4676. (*VolumeEcShardsDeleteResponse)(nil), // 45: volume_server_pb.VolumeEcShardsDeleteResponse
  4677. (*VolumeEcShardsMountRequest)(nil), // 46: volume_server_pb.VolumeEcShardsMountRequest
  4678. (*VolumeEcShardsMountResponse)(nil), // 47: volume_server_pb.VolumeEcShardsMountResponse
  4679. (*VolumeEcShardsUnmountRequest)(nil), // 48: volume_server_pb.VolumeEcShardsUnmountRequest
  4680. (*VolumeEcShardsUnmountResponse)(nil), // 49: volume_server_pb.VolumeEcShardsUnmountResponse
  4681. (*VolumeEcShardReadRequest)(nil), // 50: volume_server_pb.VolumeEcShardReadRequest
  4682. (*VolumeEcShardReadResponse)(nil), // 51: volume_server_pb.VolumeEcShardReadResponse
  4683. (*VolumeEcBlobDeleteRequest)(nil), // 52: volume_server_pb.VolumeEcBlobDeleteRequest
  4684. (*VolumeEcBlobDeleteResponse)(nil), // 53: volume_server_pb.VolumeEcBlobDeleteResponse
  4685. (*VolumeEcShardsToVolumeRequest)(nil), // 54: volume_server_pb.VolumeEcShardsToVolumeRequest
  4686. (*VolumeEcShardsToVolumeResponse)(nil), // 55: volume_server_pb.VolumeEcShardsToVolumeResponse
  4687. (*ReadVolumeFileStatusRequest)(nil), // 56: volume_server_pb.ReadVolumeFileStatusRequest
  4688. (*ReadVolumeFileStatusResponse)(nil), // 57: volume_server_pb.ReadVolumeFileStatusResponse
  4689. (*DiskStatus)(nil), // 58: volume_server_pb.DiskStatus
  4690. (*MemStatus)(nil), // 59: volume_server_pb.MemStatus
  4691. (*RemoteFile)(nil), // 60: volume_server_pb.RemoteFile
  4692. (*VolumeInfo)(nil), // 61: volume_server_pb.VolumeInfo
  4693. (*VolumeTierMoveDatToRemoteRequest)(nil), // 62: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  4694. (*VolumeTierMoveDatToRemoteResponse)(nil), // 63: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  4695. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 64: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  4696. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 65: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  4697. (*VolumeServerStatusRequest)(nil), // 66: volume_server_pb.VolumeServerStatusRequest
  4698. (*VolumeServerStatusResponse)(nil), // 67: volume_server_pb.VolumeServerStatusResponse
  4699. (*QueryRequest)(nil), // 68: volume_server_pb.QueryRequest
  4700. (*QueriedStripe)(nil), // 69: volume_server_pb.QueriedStripe
  4701. (*VolumeNeedleStatusRequest)(nil), // 70: volume_server_pb.VolumeNeedleStatusRequest
  4702. (*VolumeNeedleStatusResponse)(nil), // 71: volume_server_pb.VolumeNeedleStatusResponse
  4703. (*QueryRequest_Filter)(nil), // 72: volume_server_pb.QueryRequest.Filter
  4704. (*QueryRequest_InputSerialization)(nil), // 73: volume_server_pb.QueryRequest.InputSerialization
  4705. (*QueryRequest_OutputSerialization)(nil), // 74: volume_server_pb.QueryRequest.OutputSerialization
  4706. (*QueryRequest_InputSerialization_CSVInput)(nil), // 75: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  4707. (*QueryRequest_InputSerialization_JSONInput)(nil), // 76: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  4708. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 77: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  4709. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 78: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  4710. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 79: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  4711. }
  4712. var file_volume_server_proto_depIdxs = []int32{
  4713. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  4714. 60, // 1: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  4715. 58, // 2: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  4716. 59, // 3: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  4717. 72, // 4: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  4718. 73, // 5: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  4719. 74, // 6: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  4720. 75, // 7: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  4721. 76, // 8: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  4722. 77, // 9: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  4723. 78, // 10: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  4724. 79, // 11: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  4725. 0, // 12: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  4726. 4, // 13: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  4727. 6, // 14: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  4728. 8, // 15: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  4729. 10, // 16: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  4730. 12, // 17: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  4731. 14, // 18: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  4732. 16, // 19: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  4733. 18, // 20: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  4734. 20, // 21: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  4735. 22, // 22: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  4736. 24, // 23: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  4737. 26, // 24: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  4738. 28, // 25: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  4739. 30, // 26: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  4740. 56, // 27: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  4741. 32, // 28: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  4742. 34, // 29: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  4743. 36, // 30: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  4744. 38, // 31: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  4745. 40, // 32: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  4746. 42, // 33: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  4747. 44, // 34: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  4748. 46, // 35: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  4749. 48, // 36: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  4750. 50, // 37: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  4751. 52, // 38: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  4752. 54, // 39: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  4753. 62, // 40: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  4754. 64, // 41: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  4755. 66, // 42: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  4756. 68, // 43: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  4757. 70, // 44: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  4758. 1, // 45: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  4759. 5, // 46: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  4760. 7, // 47: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  4761. 9, // 48: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  4762. 11, // 49: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  4763. 13, // 50: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  4764. 15, // 51: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  4765. 17, // 52: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  4766. 19, // 53: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  4767. 21, // 54: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  4768. 23, // 55: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  4769. 25, // 56: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  4770. 27, // 57: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  4771. 29, // 58: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  4772. 31, // 59: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  4773. 57, // 60: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  4774. 33, // 61: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  4775. 35, // 62: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  4776. 37, // 63: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  4777. 39, // 64: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  4778. 41, // 65: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  4779. 43, // 66: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  4780. 45, // 67: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  4781. 47, // 68: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  4782. 49, // 69: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  4783. 51, // 70: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  4784. 53, // 71: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  4785. 55, // 72: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  4786. 63, // 73: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  4787. 65, // 74: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  4788. 67, // 75: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  4789. 69, // 76: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  4790. 71, // 77: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  4791. 45, // [45:78] is the sub-list for method output_type
  4792. 12, // [12:45] is the sub-list for method input_type
  4793. 12, // [12:12] is the sub-list for extension type_name
  4794. 12, // [12:12] is the sub-list for extension extendee
  4795. 0, // [0:12] is the sub-list for field type_name
  4796. }
  4797. func init() { file_volume_server_proto_init() }
  4798. func file_volume_server_proto_init() {
  4799. if File_volume_server_proto != nil {
  4800. return
  4801. }
  4802. if !protoimpl.UnsafeEnabled {
  4803. file_volume_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4804. switch v := v.(*BatchDeleteRequest); i {
  4805. case 0:
  4806. return &v.state
  4807. case 1:
  4808. return &v.sizeCache
  4809. case 2:
  4810. return &v.unknownFields
  4811. default:
  4812. return nil
  4813. }
  4814. }
  4815. file_volume_server_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4816. switch v := v.(*BatchDeleteResponse); i {
  4817. case 0:
  4818. return &v.state
  4819. case 1:
  4820. return &v.sizeCache
  4821. case 2:
  4822. return &v.unknownFields
  4823. default:
  4824. return nil
  4825. }
  4826. }
  4827. file_volume_server_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4828. switch v := v.(*DeleteResult); i {
  4829. case 0:
  4830. return &v.state
  4831. case 1:
  4832. return &v.sizeCache
  4833. case 2:
  4834. return &v.unknownFields
  4835. default:
  4836. return nil
  4837. }
  4838. }
  4839. file_volume_server_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4840. switch v := v.(*Empty); i {
  4841. case 0:
  4842. return &v.state
  4843. case 1:
  4844. return &v.sizeCache
  4845. case 2:
  4846. return &v.unknownFields
  4847. default:
  4848. return nil
  4849. }
  4850. }
  4851. file_volume_server_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4852. switch v := v.(*VacuumVolumeCheckRequest); i {
  4853. case 0:
  4854. return &v.state
  4855. case 1:
  4856. return &v.sizeCache
  4857. case 2:
  4858. return &v.unknownFields
  4859. default:
  4860. return nil
  4861. }
  4862. }
  4863. file_volume_server_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4864. switch v := v.(*VacuumVolumeCheckResponse); i {
  4865. case 0:
  4866. return &v.state
  4867. case 1:
  4868. return &v.sizeCache
  4869. case 2:
  4870. return &v.unknownFields
  4871. default:
  4872. return nil
  4873. }
  4874. }
  4875. file_volume_server_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4876. switch v := v.(*VacuumVolumeCompactRequest); i {
  4877. case 0:
  4878. return &v.state
  4879. case 1:
  4880. return &v.sizeCache
  4881. case 2:
  4882. return &v.unknownFields
  4883. default:
  4884. return nil
  4885. }
  4886. }
  4887. file_volume_server_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4888. switch v := v.(*VacuumVolumeCompactResponse); i {
  4889. case 0:
  4890. return &v.state
  4891. case 1:
  4892. return &v.sizeCache
  4893. case 2:
  4894. return &v.unknownFields
  4895. default:
  4896. return nil
  4897. }
  4898. }
  4899. file_volume_server_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4900. switch v := v.(*VacuumVolumeCommitRequest); i {
  4901. case 0:
  4902. return &v.state
  4903. case 1:
  4904. return &v.sizeCache
  4905. case 2:
  4906. return &v.unknownFields
  4907. default:
  4908. return nil
  4909. }
  4910. }
  4911. file_volume_server_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4912. switch v := v.(*VacuumVolumeCommitResponse); i {
  4913. case 0:
  4914. return &v.state
  4915. case 1:
  4916. return &v.sizeCache
  4917. case 2:
  4918. return &v.unknownFields
  4919. default:
  4920. return nil
  4921. }
  4922. }
  4923. file_volume_server_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4924. switch v := v.(*VacuumVolumeCleanupRequest); i {
  4925. case 0:
  4926. return &v.state
  4927. case 1:
  4928. return &v.sizeCache
  4929. case 2:
  4930. return &v.unknownFields
  4931. default:
  4932. return nil
  4933. }
  4934. }
  4935. file_volume_server_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4936. switch v := v.(*VacuumVolumeCleanupResponse); i {
  4937. case 0:
  4938. return &v.state
  4939. case 1:
  4940. return &v.sizeCache
  4941. case 2:
  4942. return &v.unknownFields
  4943. default:
  4944. return nil
  4945. }
  4946. }
  4947. file_volume_server_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4948. switch v := v.(*DeleteCollectionRequest); i {
  4949. case 0:
  4950. return &v.state
  4951. case 1:
  4952. return &v.sizeCache
  4953. case 2:
  4954. return &v.unknownFields
  4955. default:
  4956. return nil
  4957. }
  4958. }
  4959. file_volume_server_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4960. switch v := v.(*DeleteCollectionResponse); i {
  4961. case 0:
  4962. return &v.state
  4963. case 1:
  4964. return &v.sizeCache
  4965. case 2:
  4966. return &v.unknownFields
  4967. default:
  4968. return nil
  4969. }
  4970. }
  4971. file_volume_server_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4972. switch v := v.(*AllocateVolumeRequest); i {
  4973. case 0:
  4974. return &v.state
  4975. case 1:
  4976. return &v.sizeCache
  4977. case 2:
  4978. return &v.unknownFields
  4979. default:
  4980. return nil
  4981. }
  4982. }
  4983. file_volume_server_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4984. switch v := v.(*AllocateVolumeResponse); i {
  4985. case 0:
  4986. return &v.state
  4987. case 1:
  4988. return &v.sizeCache
  4989. case 2:
  4990. return &v.unknownFields
  4991. default:
  4992. return nil
  4993. }
  4994. }
  4995. file_volume_server_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4996. switch v := v.(*VolumeSyncStatusRequest); i {
  4997. case 0:
  4998. return &v.state
  4999. case 1:
  5000. return &v.sizeCache
  5001. case 2:
  5002. return &v.unknownFields
  5003. default:
  5004. return nil
  5005. }
  5006. }
  5007. file_volume_server_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  5008. switch v := v.(*VolumeSyncStatusResponse); i {
  5009. case 0:
  5010. return &v.state
  5011. case 1:
  5012. return &v.sizeCache
  5013. case 2:
  5014. return &v.unknownFields
  5015. default:
  5016. return nil
  5017. }
  5018. }
  5019. file_volume_server_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  5020. switch v := v.(*VolumeIncrementalCopyRequest); i {
  5021. case 0:
  5022. return &v.state
  5023. case 1:
  5024. return &v.sizeCache
  5025. case 2:
  5026. return &v.unknownFields
  5027. default:
  5028. return nil
  5029. }
  5030. }
  5031. file_volume_server_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  5032. switch v := v.(*VolumeIncrementalCopyResponse); i {
  5033. case 0:
  5034. return &v.state
  5035. case 1:
  5036. return &v.sizeCache
  5037. case 2:
  5038. return &v.unknownFields
  5039. default:
  5040. return nil
  5041. }
  5042. }
  5043. file_volume_server_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  5044. switch v := v.(*VolumeMountRequest); i {
  5045. case 0:
  5046. return &v.state
  5047. case 1:
  5048. return &v.sizeCache
  5049. case 2:
  5050. return &v.unknownFields
  5051. default:
  5052. return nil
  5053. }
  5054. }
  5055. file_volume_server_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  5056. switch v := v.(*VolumeMountResponse); i {
  5057. case 0:
  5058. return &v.state
  5059. case 1:
  5060. return &v.sizeCache
  5061. case 2:
  5062. return &v.unknownFields
  5063. default:
  5064. return nil
  5065. }
  5066. }
  5067. file_volume_server_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  5068. switch v := v.(*VolumeUnmountRequest); i {
  5069. case 0:
  5070. return &v.state
  5071. case 1:
  5072. return &v.sizeCache
  5073. case 2:
  5074. return &v.unknownFields
  5075. default:
  5076. return nil
  5077. }
  5078. }
  5079. file_volume_server_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  5080. switch v := v.(*VolumeUnmountResponse); i {
  5081. case 0:
  5082. return &v.state
  5083. case 1:
  5084. return &v.sizeCache
  5085. case 2:
  5086. return &v.unknownFields
  5087. default:
  5088. return nil
  5089. }
  5090. }
  5091. file_volume_server_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  5092. switch v := v.(*VolumeDeleteRequest); i {
  5093. case 0:
  5094. return &v.state
  5095. case 1:
  5096. return &v.sizeCache
  5097. case 2:
  5098. return &v.unknownFields
  5099. default:
  5100. return nil
  5101. }
  5102. }
  5103. file_volume_server_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  5104. switch v := v.(*VolumeDeleteResponse); i {
  5105. case 0:
  5106. return &v.state
  5107. case 1:
  5108. return &v.sizeCache
  5109. case 2:
  5110. return &v.unknownFields
  5111. default:
  5112. return nil
  5113. }
  5114. }
  5115. file_volume_server_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  5116. switch v := v.(*VolumeMarkReadonlyRequest); i {
  5117. case 0:
  5118. return &v.state
  5119. case 1:
  5120. return &v.sizeCache
  5121. case 2:
  5122. return &v.unknownFields
  5123. default:
  5124. return nil
  5125. }
  5126. }
  5127. file_volume_server_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  5128. switch v := v.(*VolumeMarkReadonlyResponse); i {
  5129. case 0:
  5130. return &v.state
  5131. case 1:
  5132. return &v.sizeCache
  5133. case 2:
  5134. return &v.unknownFields
  5135. default:
  5136. return nil
  5137. }
  5138. }
  5139. file_volume_server_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  5140. switch v := v.(*VolumeConfigureRequest); i {
  5141. case 0:
  5142. return &v.state
  5143. case 1:
  5144. return &v.sizeCache
  5145. case 2:
  5146. return &v.unknownFields
  5147. default:
  5148. return nil
  5149. }
  5150. }
  5151. file_volume_server_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  5152. switch v := v.(*VolumeConfigureResponse); i {
  5153. case 0:
  5154. return &v.state
  5155. case 1:
  5156. return &v.sizeCache
  5157. case 2:
  5158. return &v.unknownFields
  5159. default:
  5160. return nil
  5161. }
  5162. }
  5163. file_volume_server_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  5164. switch v := v.(*VolumeCopyRequest); i {
  5165. case 0:
  5166. return &v.state
  5167. case 1:
  5168. return &v.sizeCache
  5169. case 2:
  5170. return &v.unknownFields
  5171. default:
  5172. return nil
  5173. }
  5174. }
  5175. file_volume_server_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  5176. switch v := v.(*VolumeCopyResponse); i {
  5177. case 0:
  5178. return &v.state
  5179. case 1:
  5180. return &v.sizeCache
  5181. case 2:
  5182. return &v.unknownFields
  5183. default:
  5184. return nil
  5185. }
  5186. }
  5187. file_volume_server_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  5188. switch v := v.(*CopyFileRequest); i {
  5189. case 0:
  5190. return &v.state
  5191. case 1:
  5192. return &v.sizeCache
  5193. case 2:
  5194. return &v.unknownFields
  5195. default:
  5196. return nil
  5197. }
  5198. }
  5199. file_volume_server_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  5200. switch v := v.(*CopyFileResponse); i {
  5201. case 0:
  5202. return &v.state
  5203. case 1:
  5204. return &v.sizeCache
  5205. case 2:
  5206. return &v.unknownFields
  5207. default:
  5208. return nil
  5209. }
  5210. }
  5211. file_volume_server_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  5212. switch v := v.(*VolumeTailSenderRequest); i {
  5213. case 0:
  5214. return &v.state
  5215. case 1:
  5216. return &v.sizeCache
  5217. case 2:
  5218. return &v.unknownFields
  5219. default:
  5220. return nil
  5221. }
  5222. }
  5223. file_volume_server_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  5224. switch v := v.(*VolumeTailSenderResponse); i {
  5225. case 0:
  5226. return &v.state
  5227. case 1:
  5228. return &v.sizeCache
  5229. case 2:
  5230. return &v.unknownFields
  5231. default:
  5232. return nil
  5233. }
  5234. }
  5235. file_volume_server_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  5236. switch v := v.(*VolumeTailReceiverRequest); i {
  5237. case 0:
  5238. return &v.state
  5239. case 1:
  5240. return &v.sizeCache
  5241. case 2:
  5242. return &v.unknownFields
  5243. default:
  5244. return nil
  5245. }
  5246. }
  5247. file_volume_server_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  5248. switch v := v.(*VolumeTailReceiverResponse); i {
  5249. case 0:
  5250. return &v.state
  5251. case 1:
  5252. return &v.sizeCache
  5253. case 2:
  5254. return &v.unknownFields
  5255. default:
  5256. return nil
  5257. }
  5258. }
  5259. file_volume_server_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  5260. switch v := v.(*VolumeEcShardsGenerateRequest); i {
  5261. case 0:
  5262. return &v.state
  5263. case 1:
  5264. return &v.sizeCache
  5265. case 2:
  5266. return &v.unknownFields
  5267. default:
  5268. return nil
  5269. }
  5270. }
  5271. file_volume_server_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  5272. switch v := v.(*VolumeEcShardsGenerateResponse); i {
  5273. case 0:
  5274. return &v.state
  5275. case 1:
  5276. return &v.sizeCache
  5277. case 2:
  5278. return &v.unknownFields
  5279. default:
  5280. return nil
  5281. }
  5282. }
  5283. file_volume_server_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  5284. switch v := v.(*VolumeEcShardsRebuildRequest); i {
  5285. case 0:
  5286. return &v.state
  5287. case 1:
  5288. return &v.sizeCache
  5289. case 2:
  5290. return &v.unknownFields
  5291. default:
  5292. return nil
  5293. }
  5294. }
  5295. file_volume_server_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  5296. switch v := v.(*VolumeEcShardsRebuildResponse); i {
  5297. case 0:
  5298. return &v.state
  5299. case 1:
  5300. return &v.sizeCache
  5301. case 2:
  5302. return &v.unknownFields
  5303. default:
  5304. return nil
  5305. }
  5306. }
  5307. file_volume_server_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  5308. switch v := v.(*VolumeEcShardsCopyRequest); i {
  5309. case 0:
  5310. return &v.state
  5311. case 1:
  5312. return &v.sizeCache
  5313. case 2:
  5314. return &v.unknownFields
  5315. default:
  5316. return nil
  5317. }
  5318. }
  5319. file_volume_server_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  5320. switch v := v.(*VolumeEcShardsCopyResponse); i {
  5321. case 0:
  5322. return &v.state
  5323. case 1:
  5324. return &v.sizeCache
  5325. case 2:
  5326. return &v.unknownFields
  5327. default:
  5328. return nil
  5329. }
  5330. }
  5331. file_volume_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  5332. switch v := v.(*VolumeEcShardsDeleteRequest); i {
  5333. case 0:
  5334. return &v.state
  5335. case 1:
  5336. return &v.sizeCache
  5337. case 2:
  5338. return &v.unknownFields
  5339. default:
  5340. return nil
  5341. }
  5342. }
  5343. file_volume_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  5344. switch v := v.(*VolumeEcShardsDeleteResponse); i {
  5345. case 0:
  5346. return &v.state
  5347. case 1:
  5348. return &v.sizeCache
  5349. case 2:
  5350. return &v.unknownFields
  5351. default:
  5352. return nil
  5353. }
  5354. }
  5355. file_volume_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  5356. switch v := v.(*VolumeEcShardsMountRequest); i {
  5357. case 0:
  5358. return &v.state
  5359. case 1:
  5360. return &v.sizeCache
  5361. case 2:
  5362. return &v.unknownFields
  5363. default:
  5364. return nil
  5365. }
  5366. }
  5367. file_volume_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  5368. switch v := v.(*VolumeEcShardsMountResponse); i {
  5369. case 0:
  5370. return &v.state
  5371. case 1:
  5372. return &v.sizeCache
  5373. case 2:
  5374. return &v.unknownFields
  5375. default:
  5376. return nil
  5377. }
  5378. }
  5379. file_volume_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  5380. switch v := v.(*VolumeEcShardsUnmountRequest); i {
  5381. case 0:
  5382. return &v.state
  5383. case 1:
  5384. return &v.sizeCache
  5385. case 2:
  5386. return &v.unknownFields
  5387. default:
  5388. return nil
  5389. }
  5390. }
  5391. file_volume_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  5392. switch v := v.(*VolumeEcShardsUnmountResponse); i {
  5393. case 0:
  5394. return &v.state
  5395. case 1:
  5396. return &v.sizeCache
  5397. case 2:
  5398. return &v.unknownFields
  5399. default:
  5400. return nil
  5401. }
  5402. }
  5403. file_volume_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  5404. switch v := v.(*VolumeEcShardReadRequest); i {
  5405. case 0:
  5406. return &v.state
  5407. case 1:
  5408. return &v.sizeCache
  5409. case 2:
  5410. return &v.unknownFields
  5411. default:
  5412. return nil
  5413. }
  5414. }
  5415. file_volume_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  5416. switch v := v.(*VolumeEcShardReadResponse); i {
  5417. case 0:
  5418. return &v.state
  5419. case 1:
  5420. return &v.sizeCache
  5421. case 2:
  5422. return &v.unknownFields
  5423. default:
  5424. return nil
  5425. }
  5426. }
  5427. file_volume_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  5428. switch v := v.(*VolumeEcBlobDeleteRequest); i {
  5429. case 0:
  5430. return &v.state
  5431. case 1:
  5432. return &v.sizeCache
  5433. case 2:
  5434. return &v.unknownFields
  5435. default:
  5436. return nil
  5437. }
  5438. }
  5439. file_volume_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  5440. switch v := v.(*VolumeEcBlobDeleteResponse); i {
  5441. case 0:
  5442. return &v.state
  5443. case 1:
  5444. return &v.sizeCache
  5445. case 2:
  5446. return &v.unknownFields
  5447. default:
  5448. return nil
  5449. }
  5450. }
  5451. file_volume_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  5452. switch v := v.(*VolumeEcShardsToVolumeRequest); i {
  5453. case 0:
  5454. return &v.state
  5455. case 1:
  5456. return &v.sizeCache
  5457. case 2:
  5458. return &v.unknownFields
  5459. default:
  5460. return nil
  5461. }
  5462. }
  5463. file_volume_server_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  5464. switch v := v.(*VolumeEcShardsToVolumeResponse); i {
  5465. case 0:
  5466. return &v.state
  5467. case 1:
  5468. return &v.sizeCache
  5469. case 2:
  5470. return &v.unknownFields
  5471. default:
  5472. return nil
  5473. }
  5474. }
  5475. file_volume_server_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  5476. switch v := v.(*ReadVolumeFileStatusRequest); i {
  5477. case 0:
  5478. return &v.state
  5479. case 1:
  5480. return &v.sizeCache
  5481. case 2:
  5482. return &v.unknownFields
  5483. default:
  5484. return nil
  5485. }
  5486. }
  5487. file_volume_server_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  5488. switch v := v.(*ReadVolumeFileStatusResponse); i {
  5489. case 0:
  5490. return &v.state
  5491. case 1:
  5492. return &v.sizeCache
  5493. case 2:
  5494. return &v.unknownFields
  5495. default:
  5496. return nil
  5497. }
  5498. }
  5499. file_volume_server_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  5500. switch v := v.(*DiskStatus); i {
  5501. case 0:
  5502. return &v.state
  5503. case 1:
  5504. return &v.sizeCache
  5505. case 2:
  5506. return &v.unknownFields
  5507. default:
  5508. return nil
  5509. }
  5510. }
  5511. file_volume_server_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  5512. switch v := v.(*MemStatus); i {
  5513. case 0:
  5514. return &v.state
  5515. case 1:
  5516. return &v.sizeCache
  5517. case 2:
  5518. return &v.unknownFields
  5519. default:
  5520. return nil
  5521. }
  5522. }
  5523. file_volume_server_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  5524. switch v := v.(*RemoteFile); i {
  5525. case 0:
  5526. return &v.state
  5527. case 1:
  5528. return &v.sizeCache
  5529. case 2:
  5530. return &v.unknownFields
  5531. default:
  5532. return nil
  5533. }
  5534. }
  5535. file_volume_server_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  5536. switch v := v.(*VolumeInfo); i {
  5537. case 0:
  5538. return &v.state
  5539. case 1:
  5540. return &v.sizeCache
  5541. case 2:
  5542. return &v.unknownFields
  5543. default:
  5544. return nil
  5545. }
  5546. }
  5547. file_volume_server_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  5548. switch v := v.(*VolumeTierMoveDatToRemoteRequest); i {
  5549. case 0:
  5550. return &v.state
  5551. case 1:
  5552. return &v.sizeCache
  5553. case 2:
  5554. return &v.unknownFields
  5555. default:
  5556. return nil
  5557. }
  5558. }
  5559. file_volume_server_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  5560. switch v := v.(*VolumeTierMoveDatToRemoteResponse); i {
  5561. case 0:
  5562. return &v.state
  5563. case 1:
  5564. return &v.sizeCache
  5565. case 2:
  5566. return &v.unknownFields
  5567. default:
  5568. return nil
  5569. }
  5570. }
  5571. file_volume_server_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  5572. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); i {
  5573. case 0:
  5574. return &v.state
  5575. case 1:
  5576. return &v.sizeCache
  5577. case 2:
  5578. return &v.unknownFields
  5579. default:
  5580. return nil
  5581. }
  5582. }
  5583. file_volume_server_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  5584. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); i {
  5585. case 0:
  5586. return &v.state
  5587. case 1:
  5588. return &v.sizeCache
  5589. case 2:
  5590. return &v.unknownFields
  5591. default:
  5592. return nil
  5593. }
  5594. }
  5595. file_volume_server_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  5596. switch v := v.(*VolumeServerStatusRequest); i {
  5597. case 0:
  5598. return &v.state
  5599. case 1:
  5600. return &v.sizeCache
  5601. case 2:
  5602. return &v.unknownFields
  5603. default:
  5604. return nil
  5605. }
  5606. }
  5607. file_volume_server_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  5608. switch v := v.(*VolumeServerStatusResponse); i {
  5609. case 0:
  5610. return &v.state
  5611. case 1:
  5612. return &v.sizeCache
  5613. case 2:
  5614. return &v.unknownFields
  5615. default:
  5616. return nil
  5617. }
  5618. }
  5619. file_volume_server_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
  5620. switch v := v.(*QueryRequest); i {
  5621. case 0:
  5622. return &v.state
  5623. case 1:
  5624. return &v.sizeCache
  5625. case 2:
  5626. return &v.unknownFields
  5627. default:
  5628. return nil
  5629. }
  5630. }
  5631. file_volume_server_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
  5632. switch v := v.(*QueriedStripe); i {
  5633. case 0:
  5634. return &v.state
  5635. case 1:
  5636. return &v.sizeCache
  5637. case 2:
  5638. return &v.unknownFields
  5639. default:
  5640. return nil
  5641. }
  5642. }
  5643. file_volume_server_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
  5644. switch v := v.(*VolumeNeedleStatusRequest); i {
  5645. case 0:
  5646. return &v.state
  5647. case 1:
  5648. return &v.sizeCache
  5649. case 2:
  5650. return &v.unknownFields
  5651. default:
  5652. return nil
  5653. }
  5654. }
  5655. file_volume_server_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
  5656. switch v := v.(*VolumeNeedleStatusResponse); i {
  5657. case 0:
  5658. return &v.state
  5659. case 1:
  5660. return &v.sizeCache
  5661. case 2:
  5662. return &v.unknownFields
  5663. default:
  5664. return nil
  5665. }
  5666. }
  5667. file_volume_server_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
  5668. switch v := v.(*QueryRequest_Filter); i {
  5669. case 0:
  5670. return &v.state
  5671. case 1:
  5672. return &v.sizeCache
  5673. case 2:
  5674. return &v.unknownFields
  5675. default:
  5676. return nil
  5677. }
  5678. }
  5679. file_volume_server_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
  5680. switch v := v.(*QueryRequest_InputSerialization); i {
  5681. case 0:
  5682. return &v.state
  5683. case 1:
  5684. return &v.sizeCache
  5685. case 2:
  5686. return &v.unknownFields
  5687. default:
  5688. return nil
  5689. }
  5690. }
  5691. file_volume_server_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
  5692. switch v := v.(*QueryRequest_OutputSerialization); i {
  5693. case 0:
  5694. return &v.state
  5695. case 1:
  5696. return &v.sizeCache
  5697. case 2:
  5698. return &v.unknownFields
  5699. default:
  5700. return nil
  5701. }
  5702. }
  5703. file_volume_server_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
  5704. switch v := v.(*QueryRequest_InputSerialization_CSVInput); i {
  5705. case 0:
  5706. return &v.state
  5707. case 1:
  5708. return &v.sizeCache
  5709. case 2:
  5710. return &v.unknownFields
  5711. default:
  5712. return nil
  5713. }
  5714. }
  5715. file_volume_server_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
  5716. switch v := v.(*QueryRequest_InputSerialization_JSONInput); i {
  5717. case 0:
  5718. return &v.state
  5719. case 1:
  5720. return &v.sizeCache
  5721. case 2:
  5722. return &v.unknownFields
  5723. default:
  5724. return nil
  5725. }
  5726. }
  5727. file_volume_server_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
  5728. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  5729. case 0:
  5730. return &v.state
  5731. case 1:
  5732. return &v.sizeCache
  5733. case 2:
  5734. return &v.unknownFields
  5735. default:
  5736. return nil
  5737. }
  5738. }
  5739. file_volume_server_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
  5740. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  5741. case 0:
  5742. return &v.state
  5743. case 1:
  5744. return &v.sizeCache
  5745. case 2:
  5746. return &v.unknownFields
  5747. default:
  5748. return nil
  5749. }
  5750. }
  5751. file_volume_server_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
  5752. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  5753. case 0:
  5754. return &v.state
  5755. case 1:
  5756. return &v.sizeCache
  5757. case 2:
  5758. return &v.unknownFields
  5759. default:
  5760. return nil
  5761. }
  5762. }
  5763. }
  5764. type x struct{}
  5765. out := protoimpl.TypeBuilder{
  5766. File: protoimpl.DescBuilder{
  5767. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  5768. RawDescriptor: file_volume_server_proto_rawDesc,
  5769. NumEnums: 0,
  5770. NumMessages: 80,
  5771. NumExtensions: 0,
  5772. NumServices: 1,
  5773. },
  5774. GoTypes: file_volume_server_proto_goTypes,
  5775. DependencyIndexes: file_volume_server_proto_depIdxs,
  5776. MessageInfos: file_volume_server_proto_msgTypes,
  5777. }.Build()
  5778. File_volume_server_proto = out.File
  5779. file_volume_server_proto_rawDesc = nil
  5780. file_volume_server_proto_goTypes = nil
  5781. file_volume_server_proto_depIdxs = nil
  5782. }
  5783. // Reference imports to suppress errors if they are not otherwise used.
  5784. var _ context.Context
  5785. var _ grpc.ClientConnInterface
  5786. // This is a compile-time assertion to ensure that this generated file
  5787. // is compatible with the grpc package it is being compiled against.
  5788. const _ = grpc.SupportPackageIsVersion6
  5789. // VolumeServerClient is the client API for VolumeServer service.
  5790. //
  5791. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  5792. type VolumeServerClient interface {
  5793. //Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  5794. BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error)
  5795. VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error)
  5796. VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error)
  5797. VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error)
  5798. VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error)
  5799. DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error)
  5800. AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error)
  5801. VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error)
  5802. VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error)
  5803. VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error)
  5804. VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error)
  5805. VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error)
  5806. VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error)
  5807. VolumeConfigure(ctx context.Context, in *VolumeConfigureRequest, opts ...grpc.CallOption) (*VolumeConfigureResponse, error)
  5808. // copy the .idx .dat files, and mount this volume
  5809. VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error)
  5810. ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error)
  5811. CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error)
  5812. VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error)
  5813. VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error)
  5814. // erasure coding
  5815. VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error)
  5816. VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error)
  5817. VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error)
  5818. VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error)
  5819. VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error)
  5820. VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error)
  5821. VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error)
  5822. VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error)
  5823. VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error)
  5824. // tiered storage
  5825. VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error)
  5826. VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error)
  5827. VolumeServerStatus(ctx context.Context, in *VolumeServerStatusRequest, opts ...grpc.CallOption) (*VolumeServerStatusResponse, error)
  5828. // <experimental> query
  5829. Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error)
  5830. VolumeNeedleStatus(ctx context.Context, in *VolumeNeedleStatusRequest, opts ...grpc.CallOption) (*VolumeNeedleStatusResponse, error)
  5831. }
  5832. type volumeServerClient struct {
  5833. cc grpc.ClientConnInterface
  5834. }
  5835. func NewVolumeServerClient(cc grpc.ClientConnInterface) VolumeServerClient {
  5836. return &volumeServerClient{cc}
  5837. }
  5838. func (c *volumeServerClient) BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error) {
  5839. out := new(BatchDeleteResponse)
  5840. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/BatchDelete", in, out, opts...)
  5841. if err != nil {
  5842. return nil, err
  5843. }
  5844. return out, nil
  5845. }
  5846. func (c *volumeServerClient) VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error) {
  5847. out := new(VacuumVolumeCheckResponse)
  5848. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCheck", in, out, opts...)
  5849. if err != nil {
  5850. return nil, err
  5851. }
  5852. return out, nil
  5853. }
  5854. func (c *volumeServerClient) VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error) {
  5855. out := new(VacuumVolumeCompactResponse)
  5856. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCompact", in, out, opts...)
  5857. if err != nil {
  5858. return nil, err
  5859. }
  5860. return out, nil
  5861. }
  5862. func (c *volumeServerClient) VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error) {
  5863. out := new(VacuumVolumeCommitResponse)
  5864. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCommit", in, out, opts...)
  5865. if err != nil {
  5866. return nil, err
  5867. }
  5868. return out, nil
  5869. }
  5870. func (c *volumeServerClient) VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error) {
  5871. out := new(VacuumVolumeCleanupResponse)
  5872. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCleanup", in, out, opts...)
  5873. if err != nil {
  5874. return nil, err
  5875. }
  5876. return out, nil
  5877. }
  5878. func (c *volumeServerClient) DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error) {
  5879. out := new(DeleteCollectionResponse)
  5880. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/DeleteCollection", in, out, opts...)
  5881. if err != nil {
  5882. return nil, err
  5883. }
  5884. return out, nil
  5885. }
  5886. func (c *volumeServerClient) AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error) {
  5887. out := new(AllocateVolumeResponse)
  5888. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/AllocateVolume", in, out, opts...)
  5889. if err != nil {
  5890. return nil, err
  5891. }
  5892. return out, nil
  5893. }
  5894. func (c *volumeServerClient) VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error) {
  5895. out := new(VolumeSyncStatusResponse)
  5896. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeSyncStatus", in, out, opts...)
  5897. if err != nil {
  5898. return nil, err
  5899. }
  5900. return out, nil
  5901. }
  5902. func (c *volumeServerClient) VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error) {
  5903. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[0], "/volume_server_pb.VolumeServer/VolumeIncrementalCopy", opts...)
  5904. if err != nil {
  5905. return nil, err
  5906. }
  5907. x := &volumeServerVolumeIncrementalCopyClient{stream}
  5908. if err := x.ClientStream.SendMsg(in); err != nil {
  5909. return nil, err
  5910. }
  5911. if err := x.ClientStream.CloseSend(); err != nil {
  5912. return nil, err
  5913. }
  5914. return x, nil
  5915. }
  5916. type VolumeServer_VolumeIncrementalCopyClient interface {
  5917. Recv() (*VolumeIncrementalCopyResponse, error)
  5918. grpc.ClientStream
  5919. }
  5920. type volumeServerVolumeIncrementalCopyClient struct {
  5921. grpc.ClientStream
  5922. }
  5923. func (x *volumeServerVolumeIncrementalCopyClient) Recv() (*VolumeIncrementalCopyResponse, error) {
  5924. m := new(VolumeIncrementalCopyResponse)
  5925. if err := x.ClientStream.RecvMsg(m); err != nil {
  5926. return nil, err
  5927. }
  5928. return m, nil
  5929. }
  5930. func (c *volumeServerClient) VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error) {
  5931. out := new(VolumeMountResponse)
  5932. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMount", in, out, opts...)
  5933. if err != nil {
  5934. return nil, err
  5935. }
  5936. return out, nil
  5937. }
  5938. func (c *volumeServerClient) VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error) {
  5939. out := new(VolumeUnmountResponse)
  5940. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeUnmount", in, out, opts...)
  5941. if err != nil {
  5942. return nil, err
  5943. }
  5944. return out, nil
  5945. }
  5946. func (c *volumeServerClient) VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error) {
  5947. out := new(VolumeDeleteResponse)
  5948. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeDelete", in, out, opts...)
  5949. if err != nil {
  5950. return nil, err
  5951. }
  5952. return out, nil
  5953. }
  5954. func (c *volumeServerClient) VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error) {
  5955. out := new(VolumeMarkReadonlyResponse)
  5956. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMarkReadonly", in, out, opts...)
  5957. if err != nil {
  5958. return nil, err
  5959. }
  5960. return out, nil
  5961. }
  5962. func (c *volumeServerClient) VolumeConfigure(ctx context.Context, in *VolumeConfigureRequest, opts ...grpc.CallOption) (*VolumeConfigureResponse, error) {
  5963. out := new(VolumeConfigureResponse)
  5964. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeConfigure", in, out, opts...)
  5965. if err != nil {
  5966. return nil, err
  5967. }
  5968. return out, nil
  5969. }
  5970. func (c *volumeServerClient) VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error) {
  5971. out := new(VolumeCopyResponse)
  5972. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeCopy", in, out, opts...)
  5973. if err != nil {
  5974. return nil, err
  5975. }
  5976. return out, nil
  5977. }
  5978. func (c *volumeServerClient) ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error) {
  5979. out := new(ReadVolumeFileStatusResponse)
  5980. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/ReadVolumeFileStatus", in, out, opts...)
  5981. if err != nil {
  5982. return nil, err
  5983. }
  5984. return out, nil
  5985. }
  5986. func (c *volumeServerClient) CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error) {
  5987. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[1], "/volume_server_pb.VolumeServer/CopyFile", opts...)
  5988. if err != nil {
  5989. return nil, err
  5990. }
  5991. x := &volumeServerCopyFileClient{stream}
  5992. if err := x.ClientStream.SendMsg(in); err != nil {
  5993. return nil, err
  5994. }
  5995. if err := x.ClientStream.CloseSend(); err != nil {
  5996. return nil, err
  5997. }
  5998. return x, nil
  5999. }
  6000. type VolumeServer_CopyFileClient interface {
  6001. Recv() (*CopyFileResponse, error)
  6002. grpc.ClientStream
  6003. }
  6004. type volumeServerCopyFileClient struct {
  6005. grpc.ClientStream
  6006. }
  6007. func (x *volumeServerCopyFileClient) Recv() (*CopyFileResponse, error) {
  6008. m := new(CopyFileResponse)
  6009. if err := x.ClientStream.RecvMsg(m); err != nil {
  6010. return nil, err
  6011. }
  6012. return m, nil
  6013. }
  6014. func (c *volumeServerClient) VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error) {
  6015. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[2], "/volume_server_pb.VolumeServer/VolumeTailSender", opts...)
  6016. if err != nil {
  6017. return nil, err
  6018. }
  6019. x := &volumeServerVolumeTailSenderClient{stream}
  6020. if err := x.ClientStream.SendMsg(in); err != nil {
  6021. return nil, err
  6022. }
  6023. if err := x.ClientStream.CloseSend(); err != nil {
  6024. return nil, err
  6025. }
  6026. return x, nil
  6027. }
  6028. type VolumeServer_VolumeTailSenderClient interface {
  6029. Recv() (*VolumeTailSenderResponse, error)
  6030. grpc.ClientStream
  6031. }
  6032. type volumeServerVolumeTailSenderClient struct {
  6033. grpc.ClientStream
  6034. }
  6035. func (x *volumeServerVolumeTailSenderClient) Recv() (*VolumeTailSenderResponse, error) {
  6036. m := new(VolumeTailSenderResponse)
  6037. if err := x.ClientStream.RecvMsg(m); err != nil {
  6038. return nil, err
  6039. }
  6040. return m, nil
  6041. }
  6042. func (c *volumeServerClient) VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error) {
  6043. out := new(VolumeTailReceiverResponse)
  6044. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeTailReceiver", in, out, opts...)
  6045. if err != nil {
  6046. return nil, err
  6047. }
  6048. return out, nil
  6049. }
  6050. func (c *volumeServerClient) VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error) {
  6051. out := new(VolumeEcShardsGenerateResponse)
  6052. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate", in, out, opts...)
  6053. if err != nil {
  6054. return nil, err
  6055. }
  6056. return out, nil
  6057. }
  6058. func (c *volumeServerClient) VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error) {
  6059. out := new(VolumeEcShardsRebuildResponse)
  6060. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild", in, out, opts...)
  6061. if err != nil {
  6062. return nil, err
  6063. }
  6064. return out, nil
  6065. }
  6066. func (c *volumeServerClient) VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error) {
  6067. out := new(VolumeEcShardsCopyResponse)
  6068. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsCopy", in, out, opts...)
  6069. if err != nil {
  6070. return nil, err
  6071. }
  6072. return out, nil
  6073. }
  6074. func (c *volumeServerClient) VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error) {
  6075. out := new(VolumeEcShardsDeleteResponse)
  6076. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsDelete", in, out, opts...)
  6077. if err != nil {
  6078. return nil, err
  6079. }
  6080. return out, nil
  6081. }
  6082. func (c *volumeServerClient) VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error) {
  6083. out := new(VolumeEcShardsMountResponse)
  6084. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsMount", in, out, opts...)
  6085. if err != nil {
  6086. return nil, err
  6087. }
  6088. return out, nil
  6089. }
  6090. func (c *volumeServerClient) VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error) {
  6091. out := new(VolumeEcShardsUnmountResponse)
  6092. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount", in, out, opts...)
  6093. if err != nil {
  6094. return nil, err
  6095. }
  6096. return out, nil
  6097. }
  6098. func (c *volumeServerClient) VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error) {
  6099. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[3], "/volume_server_pb.VolumeServer/VolumeEcShardRead", opts...)
  6100. if err != nil {
  6101. return nil, err
  6102. }
  6103. x := &volumeServerVolumeEcShardReadClient{stream}
  6104. if err := x.ClientStream.SendMsg(in); err != nil {
  6105. return nil, err
  6106. }
  6107. if err := x.ClientStream.CloseSend(); err != nil {
  6108. return nil, err
  6109. }
  6110. return x, nil
  6111. }
  6112. type VolumeServer_VolumeEcShardReadClient interface {
  6113. Recv() (*VolumeEcShardReadResponse, error)
  6114. grpc.ClientStream
  6115. }
  6116. type volumeServerVolumeEcShardReadClient struct {
  6117. grpc.ClientStream
  6118. }
  6119. func (x *volumeServerVolumeEcShardReadClient) Recv() (*VolumeEcShardReadResponse, error) {
  6120. m := new(VolumeEcShardReadResponse)
  6121. if err := x.ClientStream.RecvMsg(m); err != nil {
  6122. return nil, err
  6123. }
  6124. return m, nil
  6125. }
  6126. func (c *volumeServerClient) VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error) {
  6127. out := new(VolumeEcBlobDeleteResponse)
  6128. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcBlobDelete", in, out, opts...)
  6129. if err != nil {
  6130. return nil, err
  6131. }
  6132. return out, nil
  6133. }
  6134. func (c *volumeServerClient) VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error) {
  6135. out := new(VolumeEcShardsToVolumeResponse)
  6136. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume", in, out, opts...)
  6137. if err != nil {
  6138. return nil, err
  6139. }
  6140. return out, nil
  6141. }
  6142. func (c *volumeServerClient) VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error) {
  6143. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[4], "/volume_server_pb.VolumeServer/VolumeTierMoveDatToRemote", opts...)
  6144. if err != nil {
  6145. return nil, err
  6146. }
  6147. x := &volumeServerVolumeTierMoveDatToRemoteClient{stream}
  6148. if err := x.ClientStream.SendMsg(in); err != nil {
  6149. return nil, err
  6150. }
  6151. if err := x.ClientStream.CloseSend(); err != nil {
  6152. return nil, err
  6153. }
  6154. return x, nil
  6155. }
  6156. type VolumeServer_VolumeTierMoveDatToRemoteClient interface {
  6157. Recv() (*VolumeTierMoveDatToRemoteResponse, error)
  6158. grpc.ClientStream
  6159. }
  6160. type volumeServerVolumeTierMoveDatToRemoteClient struct {
  6161. grpc.ClientStream
  6162. }
  6163. func (x *volumeServerVolumeTierMoveDatToRemoteClient) Recv() (*VolumeTierMoveDatToRemoteResponse, error) {
  6164. m := new(VolumeTierMoveDatToRemoteResponse)
  6165. if err := x.ClientStream.RecvMsg(m); err != nil {
  6166. return nil, err
  6167. }
  6168. return m, nil
  6169. }
  6170. func (c *volumeServerClient) VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error) {
  6171. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[5], "/volume_server_pb.VolumeServer/VolumeTierMoveDatFromRemote", opts...)
  6172. if err != nil {
  6173. return nil, err
  6174. }
  6175. x := &volumeServerVolumeTierMoveDatFromRemoteClient{stream}
  6176. if err := x.ClientStream.SendMsg(in); err != nil {
  6177. return nil, err
  6178. }
  6179. if err := x.ClientStream.CloseSend(); err != nil {
  6180. return nil, err
  6181. }
  6182. return x, nil
  6183. }
  6184. type VolumeServer_VolumeTierMoveDatFromRemoteClient interface {
  6185. Recv() (*VolumeTierMoveDatFromRemoteResponse, error)
  6186. grpc.ClientStream
  6187. }
  6188. type volumeServerVolumeTierMoveDatFromRemoteClient struct {
  6189. grpc.ClientStream
  6190. }
  6191. func (x *volumeServerVolumeTierMoveDatFromRemoteClient) Recv() (*VolumeTierMoveDatFromRemoteResponse, error) {
  6192. m := new(VolumeTierMoveDatFromRemoteResponse)
  6193. if err := x.ClientStream.RecvMsg(m); err != nil {
  6194. return nil, err
  6195. }
  6196. return m, nil
  6197. }
  6198. func (c *volumeServerClient) VolumeServerStatus(ctx context.Context, in *VolumeServerStatusRequest, opts ...grpc.CallOption) (*VolumeServerStatusResponse, error) {
  6199. out := new(VolumeServerStatusResponse)
  6200. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeServerStatus", in, out, opts...)
  6201. if err != nil {
  6202. return nil, err
  6203. }
  6204. return out, nil
  6205. }
  6206. func (c *volumeServerClient) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error) {
  6207. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[6], "/volume_server_pb.VolumeServer/Query", opts...)
  6208. if err != nil {
  6209. return nil, err
  6210. }
  6211. x := &volumeServerQueryClient{stream}
  6212. if err := x.ClientStream.SendMsg(in); err != nil {
  6213. return nil, err
  6214. }
  6215. if err := x.ClientStream.CloseSend(); err != nil {
  6216. return nil, err
  6217. }
  6218. return x, nil
  6219. }
  6220. type VolumeServer_QueryClient interface {
  6221. Recv() (*QueriedStripe, error)
  6222. grpc.ClientStream
  6223. }
  6224. type volumeServerQueryClient struct {
  6225. grpc.ClientStream
  6226. }
  6227. func (x *volumeServerQueryClient) Recv() (*QueriedStripe, error) {
  6228. m := new(QueriedStripe)
  6229. if err := x.ClientStream.RecvMsg(m); err != nil {
  6230. return nil, err
  6231. }
  6232. return m, nil
  6233. }
  6234. func (c *volumeServerClient) VolumeNeedleStatus(ctx context.Context, in *VolumeNeedleStatusRequest, opts ...grpc.CallOption) (*VolumeNeedleStatusResponse, error) {
  6235. out := new(VolumeNeedleStatusResponse)
  6236. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeNeedleStatus", in, out, opts...)
  6237. if err != nil {
  6238. return nil, err
  6239. }
  6240. return out, nil
  6241. }
  6242. // VolumeServerServer is the server API for VolumeServer service.
  6243. type VolumeServerServer interface {
  6244. //Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  6245. BatchDelete(context.Context, *BatchDeleteRequest) (*BatchDeleteResponse, error)
  6246. VacuumVolumeCheck(context.Context, *VacuumVolumeCheckRequest) (*VacuumVolumeCheckResponse, error)
  6247. VacuumVolumeCompact(context.Context, *VacuumVolumeCompactRequest) (*VacuumVolumeCompactResponse, error)
  6248. VacuumVolumeCommit(context.Context, *VacuumVolumeCommitRequest) (*VacuumVolumeCommitResponse, error)
  6249. VacuumVolumeCleanup(context.Context, *VacuumVolumeCleanupRequest) (*VacuumVolumeCleanupResponse, error)
  6250. DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error)
  6251. AllocateVolume(context.Context, *AllocateVolumeRequest) (*AllocateVolumeResponse, error)
  6252. VolumeSyncStatus(context.Context, *VolumeSyncStatusRequest) (*VolumeSyncStatusResponse, error)
  6253. VolumeIncrementalCopy(*VolumeIncrementalCopyRequest, VolumeServer_VolumeIncrementalCopyServer) error
  6254. VolumeMount(context.Context, *VolumeMountRequest) (*VolumeMountResponse, error)
  6255. VolumeUnmount(context.Context, *VolumeUnmountRequest) (*VolumeUnmountResponse, error)
  6256. VolumeDelete(context.Context, *VolumeDeleteRequest) (*VolumeDeleteResponse, error)
  6257. VolumeMarkReadonly(context.Context, *VolumeMarkReadonlyRequest) (*VolumeMarkReadonlyResponse, error)
  6258. VolumeConfigure(context.Context, *VolumeConfigureRequest) (*VolumeConfigureResponse, error)
  6259. // copy the .idx .dat files, and mount this volume
  6260. VolumeCopy(context.Context, *VolumeCopyRequest) (*VolumeCopyResponse, error)
  6261. ReadVolumeFileStatus(context.Context, *ReadVolumeFileStatusRequest) (*ReadVolumeFileStatusResponse, error)
  6262. CopyFile(*CopyFileRequest, VolumeServer_CopyFileServer) error
  6263. VolumeTailSender(*VolumeTailSenderRequest, VolumeServer_VolumeTailSenderServer) error
  6264. VolumeTailReceiver(context.Context, *VolumeTailReceiverRequest) (*VolumeTailReceiverResponse, error)
  6265. // erasure coding
  6266. VolumeEcShardsGenerate(context.Context, *VolumeEcShardsGenerateRequest) (*VolumeEcShardsGenerateResponse, error)
  6267. VolumeEcShardsRebuild(context.Context, *VolumeEcShardsRebuildRequest) (*VolumeEcShardsRebuildResponse, error)
  6268. VolumeEcShardsCopy(context.Context, *VolumeEcShardsCopyRequest) (*VolumeEcShardsCopyResponse, error)
  6269. VolumeEcShardsDelete(context.Context, *VolumeEcShardsDeleteRequest) (*VolumeEcShardsDeleteResponse, error)
  6270. VolumeEcShardsMount(context.Context, *VolumeEcShardsMountRequest) (*VolumeEcShardsMountResponse, error)
  6271. VolumeEcShardsUnmount(context.Context, *VolumeEcShardsUnmountRequest) (*VolumeEcShardsUnmountResponse, error)
  6272. VolumeEcShardRead(*VolumeEcShardReadRequest, VolumeServer_VolumeEcShardReadServer) error
  6273. VolumeEcBlobDelete(context.Context, *VolumeEcBlobDeleteRequest) (*VolumeEcBlobDeleteResponse, error)
  6274. VolumeEcShardsToVolume(context.Context, *VolumeEcShardsToVolumeRequest) (*VolumeEcShardsToVolumeResponse, error)
  6275. // tiered storage
  6276. VolumeTierMoveDatToRemote(*VolumeTierMoveDatToRemoteRequest, VolumeServer_VolumeTierMoveDatToRemoteServer) error
  6277. VolumeTierMoveDatFromRemote(*VolumeTierMoveDatFromRemoteRequest, VolumeServer_VolumeTierMoveDatFromRemoteServer) error
  6278. VolumeServerStatus(context.Context, *VolumeServerStatusRequest) (*VolumeServerStatusResponse, error)
  6279. // <experimental> query
  6280. Query(*QueryRequest, VolumeServer_QueryServer) error
  6281. VolumeNeedleStatus(context.Context, *VolumeNeedleStatusRequest) (*VolumeNeedleStatusResponse, error)
  6282. }
  6283. // UnimplementedVolumeServerServer can be embedded to have forward compatible implementations.
  6284. type UnimplementedVolumeServerServer struct {
  6285. }
  6286. func (*UnimplementedVolumeServerServer) BatchDelete(context.Context, *BatchDeleteRequest) (*BatchDeleteResponse, error) {
  6287. return nil, status.Errorf(codes.Unimplemented, "method BatchDelete not implemented")
  6288. }
  6289. func (*UnimplementedVolumeServerServer) VacuumVolumeCheck(context.Context, *VacuumVolumeCheckRequest) (*VacuumVolumeCheckResponse, error) {
  6290. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCheck not implemented")
  6291. }
  6292. func (*UnimplementedVolumeServerServer) VacuumVolumeCompact(context.Context, *VacuumVolumeCompactRequest) (*VacuumVolumeCompactResponse, error) {
  6293. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCompact not implemented")
  6294. }
  6295. func (*UnimplementedVolumeServerServer) VacuumVolumeCommit(context.Context, *VacuumVolumeCommitRequest) (*VacuumVolumeCommitResponse, error) {
  6296. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCommit not implemented")
  6297. }
  6298. func (*UnimplementedVolumeServerServer) VacuumVolumeCleanup(context.Context, *VacuumVolumeCleanupRequest) (*VacuumVolumeCleanupResponse, error) {
  6299. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCleanup not implemented")
  6300. }
  6301. func (*UnimplementedVolumeServerServer) DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error) {
  6302. return nil, status.Errorf(codes.Unimplemented, "method DeleteCollection not implemented")
  6303. }
  6304. func (*UnimplementedVolumeServerServer) AllocateVolume(context.Context, *AllocateVolumeRequest) (*AllocateVolumeResponse, error) {
  6305. return nil, status.Errorf(codes.Unimplemented, "method AllocateVolume not implemented")
  6306. }
  6307. func (*UnimplementedVolumeServerServer) VolumeSyncStatus(context.Context, *VolumeSyncStatusRequest) (*VolumeSyncStatusResponse, error) {
  6308. return nil, status.Errorf(codes.Unimplemented, "method VolumeSyncStatus not implemented")
  6309. }
  6310. func (*UnimplementedVolumeServerServer) VolumeIncrementalCopy(*VolumeIncrementalCopyRequest, VolumeServer_VolumeIncrementalCopyServer) error {
  6311. return status.Errorf(codes.Unimplemented, "method VolumeIncrementalCopy not implemented")
  6312. }
  6313. func (*UnimplementedVolumeServerServer) VolumeMount(context.Context, *VolumeMountRequest) (*VolumeMountResponse, error) {
  6314. return nil, status.Errorf(codes.Unimplemented, "method VolumeMount not implemented")
  6315. }
  6316. func (*UnimplementedVolumeServerServer) VolumeUnmount(context.Context, *VolumeUnmountRequest) (*VolumeUnmountResponse, error) {
  6317. return nil, status.Errorf(codes.Unimplemented, "method VolumeUnmount not implemented")
  6318. }
  6319. func (*UnimplementedVolumeServerServer) VolumeDelete(context.Context, *VolumeDeleteRequest) (*VolumeDeleteResponse, error) {
  6320. return nil, status.Errorf(codes.Unimplemented, "method VolumeDelete not implemented")
  6321. }
  6322. func (*UnimplementedVolumeServerServer) VolumeMarkReadonly(context.Context, *VolumeMarkReadonlyRequest) (*VolumeMarkReadonlyResponse, error) {
  6323. return nil, status.Errorf(codes.Unimplemented, "method VolumeMarkReadonly not implemented")
  6324. }
  6325. func (*UnimplementedVolumeServerServer) VolumeConfigure(context.Context, *VolumeConfigureRequest) (*VolumeConfigureResponse, error) {
  6326. return nil, status.Errorf(codes.Unimplemented, "method VolumeConfigure not implemented")
  6327. }
  6328. func (*UnimplementedVolumeServerServer) VolumeCopy(context.Context, *VolumeCopyRequest) (*VolumeCopyResponse, error) {
  6329. return nil, status.Errorf(codes.Unimplemented, "method VolumeCopy not implemented")
  6330. }
  6331. func (*UnimplementedVolumeServerServer) ReadVolumeFileStatus(context.Context, *ReadVolumeFileStatusRequest) (*ReadVolumeFileStatusResponse, error) {
  6332. return nil, status.Errorf(codes.Unimplemented, "method ReadVolumeFileStatus not implemented")
  6333. }
  6334. func (*UnimplementedVolumeServerServer) CopyFile(*CopyFileRequest, VolumeServer_CopyFileServer) error {
  6335. return status.Errorf(codes.Unimplemented, "method CopyFile not implemented")
  6336. }
  6337. func (*UnimplementedVolumeServerServer) VolumeTailSender(*VolumeTailSenderRequest, VolumeServer_VolumeTailSenderServer) error {
  6338. return status.Errorf(codes.Unimplemented, "method VolumeTailSender not implemented")
  6339. }
  6340. func (*UnimplementedVolumeServerServer) VolumeTailReceiver(context.Context, *VolumeTailReceiverRequest) (*VolumeTailReceiverResponse, error) {
  6341. return nil, status.Errorf(codes.Unimplemented, "method VolumeTailReceiver not implemented")
  6342. }
  6343. func (*UnimplementedVolumeServerServer) VolumeEcShardsGenerate(context.Context, *VolumeEcShardsGenerateRequest) (*VolumeEcShardsGenerateResponse, error) {
  6344. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsGenerate not implemented")
  6345. }
  6346. func (*UnimplementedVolumeServerServer) VolumeEcShardsRebuild(context.Context, *VolumeEcShardsRebuildRequest) (*VolumeEcShardsRebuildResponse, error) {
  6347. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsRebuild not implemented")
  6348. }
  6349. func (*UnimplementedVolumeServerServer) VolumeEcShardsCopy(context.Context, *VolumeEcShardsCopyRequest) (*VolumeEcShardsCopyResponse, error) {
  6350. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsCopy not implemented")
  6351. }
  6352. func (*UnimplementedVolumeServerServer) VolumeEcShardsDelete(context.Context, *VolumeEcShardsDeleteRequest) (*VolumeEcShardsDeleteResponse, error) {
  6353. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsDelete not implemented")
  6354. }
  6355. func (*UnimplementedVolumeServerServer) VolumeEcShardsMount(context.Context, *VolumeEcShardsMountRequest) (*VolumeEcShardsMountResponse, error) {
  6356. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsMount not implemented")
  6357. }
  6358. func (*UnimplementedVolumeServerServer) VolumeEcShardsUnmount(context.Context, *VolumeEcShardsUnmountRequest) (*VolumeEcShardsUnmountResponse, error) {
  6359. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsUnmount not implemented")
  6360. }
  6361. func (*UnimplementedVolumeServerServer) VolumeEcShardRead(*VolumeEcShardReadRequest, VolumeServer_VolumeEcShardReadServer) error {
  6362. return status.Errorf(codes.Unimplemented, "method VolumeEcShardRead not implemented")
  6363. }
  6364. func (*UnimplementedVolumeServerServer) VolumeEcBlobDelete(context.Context, *VolumeEcBlobDeleteRequest) (*VolumeEcBlobDeleteResponse, error) {
  6365. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcBlobDelete not implemented")
  6366. }
  6367. func (*UnimplementedVolumeServerServer) VolumeEcShardsToVolume(context.Context, *VolumeEcShardsToVolumeRequest) (*VolumeEcShardsToVolumeResponse, error) {
  6368. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsToVolume not implemented")
  6369. }
  6370. func (*UnimplementedVolumeServerServer) VolumeTierMoveDatToRemote(*VolumeTierMoveDatToRemoteRequest, VolumeServer_VolumeTierMoveDatToRemoteServer) error {
  6371. return status.Errorf(codes.Unimplemented, "method VolumeTierMoveDatToRemote not implemented")
  6372. }
  6373. func (*UnimplementedVolumeServerServer) VolumeTierMoveDatFromRemote(*VolumeTierMoveDatFromRemoteRequest, VolumeServer_VolumeTierMoveDatFromRemoteServer) error {
  6374. return status.Errorf(codes.Unimplemented, "method VolumeTierMoveDatFromRemote not implemented")
  6375. }
  6376. func (*UnimplementedVolumeServerServer) VolumeServerStatus(context.Context, *VolumeServerStatusRequest) (*VolumeServerStatusResponse, error) {
  6377. return nil, status.Errorf(codes.Unimplemented, "method VolumeServerStatus not implemented")
  6378. }
  6379. func (*UnimplementedVolumeServerServer) Query(*QueryRequest, VolumeServer_QueryServer) error {
  6380. return status.Errorf(codes.Unimplemented, "method Query not implemented")
  6381. }
  6382. func (*UnimplementedVolumeServerServer) VolumeNeedleStatus(context.Context, *VolumeNeedleStatusRequest) (*VolumeNeedleStatusResponse, error) {
  6383. return nil, status.Errorf(codes.Unimplemented, "method VolumeNeedleStatus not implemented")
  6384. }
  6385. func RegisterVolumeServerServer(s *grpc.Server, srv VolumeServerServer) {
  6386. s.RegisterService(&_VolumeServer_serviceDesc, srv)
  6387. }
  6388. func _VolumeServer_BatchDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6389. in := new(BatchDeleteRequest)
  6390. if err := dec(in); err != nil {
  6391. return nil, err
  6392. }
  6393. if interceptor == nil {
  6394. return srv.(VolumeServerServer).BatchDelete(ctx, in)
  6395. }
  6396. info := &grpc.UnaryServerInfo{
  6397. Server: srv,
  6398. FullMethod: "/volume_server_pb.VolumeServer/BatchDelete",
  6399. }
  6400. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6401. return srv.(VolumeServerServer).BatchDelete(ctx, req.(*BatchDeleteRequest))
  6402. }
  6403. return interceptor(ctx, in, info, handler)
  6404. }
  6405. func _VolumeServer_VacuumVolumeCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6406. in := new(VacuumVolumeCheckRequest)
  6407. if err := dec(in); err != nil {
  6408. return nil, err
  6409. }
  6410. if interceptor == nil {
  6411. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, in)
  6412. }
  6413. info := &grpc.UnaryServerInfo{
  6414. Server: srv,
  6415. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCheck",
  6416. }
  6417. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6418. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, req.(*VacuumVolumeCheckRequest))
  6419. }
  6420. return interceptor(ctx, in, info, handler)
  6421. }
  6422. func _VolumeServer_VacuumVolumeCompact_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6423. in := new(VacuumVolumeCompactRequest)
  6424. if err := dec(in); err != nil {
  6425. return nil, err
  6426. }
  6427. if interceptor == nil {
  6428. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, in)
  6429. }
  6430. info := &grpc.UnaryServerInfo{
  6431. Server: srv,
  6432. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCompact",
  6433. }
  6434. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6435. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, req.(*VacuumVolumeCompactRequest))
  6436. }
  6437. return interceptor(ctx, in, info, handler)
  6438. }
  6439. func _VolumeServer_VacuumVolumeCommit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6440. in := new(VacuumVolumeCommitRequest)
  6441. if err := dec(in); err != nil {
  6442. return nil, err
  6443. }
  6444. if interceptor == nil {
  6445. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, in)
  6446. }
  6447. info := &grpc.UnaryServerInfo{
  6448. Server: srv,
  6449. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCommit",
  6450. }
  6451. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6452. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, req.(*VacuumVolumeCommitRequest))
  6453. }
  6454. return interceptor(ctx, in, info, handler)
  6455. }
  6456. func _VolumeServer_VacuumVolumeCleanup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6457. in := new(VacuumVolumeCleanupRequest)
  6458. if err := dec(in); err != nil {
  6459. return nil, err
  6460. }
  6461. if interceptor == nil {
  6462. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, in)
  6463. }
  6464. info := &grpc.UnaryServerInfo{
  6465. Server: srv,
  6466. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCleanup",
  6467. }
  6468. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6469. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, req.(*VacuumVolumeCleanupRequest))
  6470. }
  6471. return interceptor(ctx, in, info, handler)
  6472. }
  6473. func _VolumeServer_DeleteCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6474. in := new(DeleteCollectionRequest)
  6475. if err := dec(in); err != nil {
  6476. return nil, err
  6477. }
  6478. if interceptor == nil {
  6479. return srv.(VolumeServerServer).DeleteCollection(ctx, in)
  6480. }
  6481. info := &grpc.UnaryServerInfo{
  6482. Server: srv,
  6483. FullMethod: "/volume_server_pb.VolumeServer/DeleteCollection",
  6484. }
  6485. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6486. return srv.(VolumeServerServer).DeleteCollection(ctx, req.(*DeleteCollectionRequest))
  6487. }
  6488. return interceptor(ctx, in, info, handler)
  6489. }
  6490. func _VolumeServer_AllocateVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6491. in := new(AllocateVolumeRequest)
  6492. if err := dec(in); err != nil {
  6493. return nil, err
  6494. }
  6495. if interceptor == nil {
  6496. return srv.(VolumeServerServer).AllocateVolume(ctx, in)
  6497. }
  6498. info := &grpc.UnaryServerInfo{
  6499. Server: srv,
  6500. FullMethod: "/volume_server_pb.VolumeServer/AllocateVolume",
  6501. }
  6502. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6503. return srv.(VolumeServerServer).AllocateVolume(ctx, req.(*AllocateVolumeRequest))
  6504. }
  6505. return interceptor(ctx, in, info, handler)
  6506. }
  6507. func _VolumeServer_VolumeSyncStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6508. in := new(VolumeSyncStatusRequest)
  6509. if err := dec(in); err != nil {
  6510. return nil, err
  6511. }
  6512. if interceptor == nil {
  6513. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, in)
  6514. }
  6515. info := &grpc.UnaryServerInfo{
  6516. Server: srv,
  6517. FullMethod: "/volume_server_pb.VolumeServer/VolumeSyncStatus",
  6518. }
  6519. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6520. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, req.(*VolumeSyncStatusRequest))
  6521. }
  6522. return interceptor(ctx, in, info, handler)
  6523. }
  6524. func _VolumeServer_VolumeIncrementalCopy_Handler(srv interface{}, stream grpc.ServerStream) error {
  6525. m := new(VolumeIncrementalCopyRequest)
  6526. if err := stream.RecvMsg(m); err != nil {
  6527. return err
  6528. }
  6529. return srv.(VolumeServerServer).VolumeIncrementalCopy(m, &volumeServerVolumeIncrementalCopyServer{stream})
  6530. }
  6531. type VolumeServer_VolumeIncrementalCopyServer interface {
  6532. Send(*VolumeIncrementalCopyResponse) error
  6533. grpc.ServerStream
  6534. }
  6535. type volumeServerVolumeIncrementalCopyServer struct {
  6536. grpc.ServerStream
  6537. }
  6538. func (x *volumeServerVolumeIncrementalCopyServer) Send(m *VolumeIncrementalCopyResponse) error {
  6539. return x.ServerStream.SendMsg(m)
  6540. }
  6541. func _VolumeServer_VolumeMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6542. in := new(VolumeMountRequest)
  6543. if err := dec(in); err != nil {
  6544. return nil, err
  6545. }
  6546. if interceptor == nil {
  6547. return srv.(VolumeServerServer).VolumeMount(ctx, in)
  6548. }
  6549. info := &grpc.UnaryServerInfo{
  6550. Server: srv,
  6551. FullMethod: "/volume_server_pb.VolumeServer/VolumeMount",
  6552. }
  6553. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6554. return srv.(VolumeServerServer).VolumeMount(ctx, req.(*VolumeMountRequest))
  6555. }
  6556. return interceptor(ctx, in, info, handler)
  6557. }
  6558. func _VolumeServer_VolumeUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6559. in := new(VolumeUnmountRequest)
  6560. if err := dec(in); err != nil {
  6561. return nil, err
  6562. }
  6563. if interceptor == nil {
  6564. return srv.(VolumeServerServer).VolumeUnmount(ctx, in)
  6565. }
  6566. info := &grpc.UnaryServerInfo{
  6567. Server: srv,
  6568. FullMethod: "/volume_server_pb.VolumeServer/VolumeUnmount",
  6569. }
  6570. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6571. return srv.(VolumeServerServer).VolumeUnmount(ctx, req.(*VolumeUnmountRequest))
  6572. }
  6573. return interceptor(ctx, in, info, handler)
  6574. }
  6575. func _VolumeServer_VolumeDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6576. in := new(VolumeDeleteRequest)
  6577. if err := dec(in); err != nil {
  6578. return nil, err
  6579. }
  6580. if interceptor == nil {
  6581. return srv.(VolumeServerServer).VolumeDelete(ctx, in)
  6582. }
  6583. info := &grpc.UnaryServerInfo{
  6584. Server: srv,
  6585. FullMethod: "/volume_server_pb.VolumeServer/VolumeDelete",
  6586. }
  6587. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6588. return srv.(VolumeServerServer).VolumeDelete(ctx, req.(*VolumeDeleteRequest))
  6589. }
  6590. return interceptor(ctx, in, info, handler)
  6591. }
  6592. func _VolumeServer_VolumeMarkReadonly_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6593. in := new(VolumeMarkReadonlyRequest)
  6594. if err := dec(in); err != nil {
  6595. return nil, err
  6596. }
  6597. if interceptor == nil {
  6598. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, in)
  6599. }
  6600. info := &grpc.UnaryServerInfo{
  6601. Server: srv,
  6602. FullMethod: "/volume_server_pb.VolumeServer/VolumeMarkReadonly",
  6603. }
  6604. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6605. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, req.(*VolumeMarkReadonlyRequest))
  6606. }
  6607. return interceptor(ctx, in, info, handler)
  6608. }
  6609. func _VolumeServer_VolumeConfigure_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6610. in := new(VolumeConfigureRequest)
  6611. if err := dec(in); err != nil {
  6612. return nil, err
  6613. }
  6614. if interceptor == nil {
  6615. return srv.(VolumeServerServer).VolumeConfigure(ctx, in)
  6616. }
  6617. info := &grpc.UnaryServerInfo{
  6618. Server: srv,
  6619. FullMethod: "/volume_server_pb.VolumeServer/VolumeConfigure",
  6620. }
  6621. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6622. return srv.(VolumeServerServer).VolumeConfigure(ctx, req.(*VolumeConfigureRequest))
  6623. }
  6624. return interceptor(ctx, in, info, handler)
  6625. }
  6626. func _VolumeServer_VolumeCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6627. in := new(VolumeCopyRequest)
  6628. if err := dec(in); err != nil {
  6629. return nil, err
  6630. }
  6631. if interceptor == nil {
  6632. return srv.(VolumeServerServer).VolumeCopy(ctx, in)
  6633. }
  6634. info := &grpc.UnaryServerInfo{
  6635. Server: srv,
  6636. FullMethod: "/volume_server_pb.VolumeServer/VolumeCopy",
  6637. }
  6638. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6639. return srv.(VolumeServerServer).VolumeCopy(ctx, req.(*VolumeCopyRequest))
  6640. }
  6641. return interceptor(ctx, in, info, handler)
  6642. }
  6643. func _VolumeServer_ReadVolumeFileStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6644. in := new(ReadVolumeFileStatusRequest)
  6645. if err := dec(in); err != nil {
  6646. return nil, err
  6647. }
  6648. if interceptor == nil {
  6649. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, in)
  6650. }
  6651. info := &grpc.UnaryServerInfo{
  6652. Server: srv,
  6653. FullMethod: "/volume_server_pb.VolumeServer/ReadVolumeFileStatus",
  6654. }
  6655. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6656. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, req.(*ReadVolumeFileStatusRequest))
  6657. }
  6658. return interceptor(ctx, in, info, handler)
  6659. }
  6660. func _VolumeServer_CopyFile_Handler(srv interface{}, stream grpc.ServerStream) error {
  6661. m := new(CopyFileRequest)
  6662. if err := stream.RecvMsg(m); err != nil {
  6663. return err
  6664. }
  6665. return srv.(VolumeServerServer).CopyFile(m, &volumeServerCopyFileServer{stream})
  6666. }
  6667. type VolumeServer_CopyFileServer interface {
  6668. Send(*CopyFileResponse) error
  6669. grpc.ServerStream
  6670. }
  6671. type volumeServerCopyFileServer struct {
  6672. grpc.ServerStream
  6673. }
  6674. func (x *volumeServerCopyFileServer) Send(m *CopyFileResponse) error {
  6675. return x.ServerStream.SendMsg(m)
  6676. }
  6677. func _VolumeServer_VolumeTailSender_Handler(srv interface{}, stream grpc.ServerStream) error {
  6678. m := new(VolumeTailSenderRequest)
  6679. if err := stream.RecvMsg(m); err != nil {
  6680. return err
  6681. }
  6682. return srv.(VolumeServerServer).VolumeTailSender(m, &volumeServerVolumeTailSenderServer{stream})
  6683. }
  6684. type VolumeServer_VolumeTailSenderServer interface {
  6685. Send(*VolumeTailSenderResponse) error
  6686. grpc.ServerStream
  6687. }
  6688. type volumeServerVolumeTailSenderServer struct {
  6689. grpc.ServerStream
  6690. }
  6691. func (x *volumeServerVolumeTailSenderServer) Send(m *VolumeTailSenderResponse) error {
  6692. return x.ServerStream.SendMsg(m)
  6693. }
  6694. func _VolumeServer_VolumeTailReceiver_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6695. in := new(VolumeTailReceiverRequest)
  6696. if err := dec(in); err != nil {
  6697. return nil, err
  6698. }
  6699. if interceptor == nil {
  6700. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, in)
  6701. }
  6702. info := &grpc.UnaryServerInfo{
  6703. Server: srv,
  6704. FullMethod: "/volume_server_pb.VolumeServer/VolumeTailReceiver",
  6705. }
  6706. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6707. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, req.(*VolumeTailReceiverRequest))
  6708. }
  6709. return interceptor(ctx, in, info, handler)
  6710. }
  6711. func _VolumeServer_VolumeEcShardsGenerate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6712. in := new(VolumeEcShardsGenerateRequest)
  6713. if err := dec(in); err != nil {
  6714. return nil, err
  6715. }
  6716. if interceptor == nil {
  6717. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, in)
  6718. }
  6719. info := &grpc.UnaryServerInfo{
  6720. Server: srv,
  6721. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate",
  6722. }
  6723. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6724. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, req.(*VolumeEcShardsGenerateRequest))
  6725. }
  6726. return interceptor(ctx, in, info, handler)
  6727. }
  6728. func _VolumeServer_VolumeEcShardsRebuild_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6729. in := new(VolumeEcShardsRebuildRequest)
  6730. if err := dec(in); err != nil {
  6731. return nil, err
  6732. }
  6733. if interceptor == nil {
  6734. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, in)
  6735. }
  6736. info := &grpc.UnaryServerInfo{
  6737. Server: srv,
  6738. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild",
  6739. }
  6740. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6741. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, req.(*VolumeEcShardsRebuildRequest))
  6742. }
  6743. return interceptor(ctx, in, info, handler)
  6744. }
  6745. func _VolumeServer_VolumeEcShardsCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6746. in := new(VolumeEcShardsCopyRequest)
  6747. if err := dec(in); err != nil {
  6748. return nil, err
  6749. }
  6750. if interceptor == nil {
  6751. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, in)
  6752. }
  6753. info := &grpc.UnaryServerInfo{
  6754. Server: srv,
  6755. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsCopy",
  6756. }
  6757. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6758. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, req.(*VolumeEcShardsCopyRequest))
  6759. }
  6760. return interceptor(ctx, in, info, handler)
  6761. }
  6762. func _VolumeServer_VolumeEcShardsDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6763. in := new(VolumeEcShardsDeleteRequest)
  6764. if err := dec(in); err != nil {
  6765. return nil, err
  6766. }
  6767. if interceptor == nil {
  6768. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, in)
  6769. }
  6770. info := &grpc.UnaryServerInfo{
  6771. Server: srv,
  6772. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsDelete",
  6773. }
  6774. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6775. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, req.(*VolumeEcShardsDeleteRequest))
  6776. }
  6777. return interceptor(ctx, in, info, handler)
  6778. }
  6779. func _VolumeServer_VolumeEcShardsMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6780. in := new(VolumeEcShardsMountRequest)
  6781. if err := dec(in); err != nil {
  6782. return nil, err
  6783. }
  6784. if interceptor == nil {
  6785. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, in)
  6786. }
  6787. info := &grpc.UnaryServerInfo{
  6788. Server: srv,
  6789. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsMount",
  6790. }
  6791. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6792. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, req.(*VolumeEcShardsMountRequest))
  6793. }
  6794. return interceptor(ctx, in, info, handler)
  6795. }
  6796. func _VolumeServer_VolumeEcShardsUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6797. in := new(VolumeEcShardsUnmountRequest)
  6798. if err := dec(in); err != nil {
  6799. return nil, err
  6800. }
  6801. if interceptor == nil {
  6802. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, in)
  6803. }
  6804. info := &grpc.UnaryServerInfo{
  6805. Server: srv,
  6806. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount",
  6807. }
  6808. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6809. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, req.(*VolumeEcShardsUnmountRequest))
  6810. }
  6811. return interceptor(ctx, in, info, handler)
  6812. }
  6813. func _VolumeServer_VolumeEcShardRead_Handler(srv interface{}, stream grpc.ServerStream) error {
  6814. m := new(VolumeEcShardReadRequest)
  6815. if err := stream.RecvMsg(m); err != nil {
  6816. return err
  6817. }
  6818. return srv.(VolumeServerServer).VolumeEcShardRead(m, &volumeServerVolumeEcShardReadServer{stream})
  6819. }
  6820. type VolumeServer_VolumeEcShardReadServer interface {
  6821. Send(*VolumeEcShardReadResponse) error
  6822. grpc.ServerStream
  6823. }
  6824. type volumeServerVolumeEcShardReadServer struct {
  6825. grpc.ServerStream
  6826. }
  6827. func (x *volumeServerVolumeEcShardReadServer) Send(m *VolumeEcShardReadResponse) error {
  6828. return x.ServerStream.SendMsg(m)
  6829. }
  6830. func _VolumeServer_VolumeEcBlobDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6831. in := new(VolumeEcBlobDeleteRequest)
  6832. if err := dec(in); err != nil {
  6833. return nil, err
  6834. }
  6835. if interceptor == nil {
  6836. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, in)
  6837. }
  6838. info := &grpc.UnaryServerInfo{
  6839. Server: srv,
  6840. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcBlobDelete",
  6841. }
  6842. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6843. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, req.(*VolumeEcBlobDeleteRequest))
  6844. }
  6845. return interceptor(ctx, in, info, handler)
  6846. }
  6847. func _VolumeServer_VolumeEcShardsToVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6848. in := new(VolumeEcShardsToVolumeRequest)
  6849. if err := dec(in); err != nil {
  6850. return nil, err
  6851. }
  6852. if interceptor == nil {
  6853. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, in)
  6854. }
  6855. info := &grpc.UnaryServerInfo{
  6856. Server: srv,
  6857. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume",
  6858. }
  6859. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6860. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, req.(*VolumeEcShardsToVolumeRequest))
  6861. }
  6862. return interceptor(ctx, in, info, handler)
  6863. }
  6864. func _VolumeServer_VolumeTierMoveDatToRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  6865. m := new(VolumeTierMoveDatToRemoteRequest)
  6866. if err := stream.RecvMsg(m); err != nil {
  6867. return err
  6868. }
  6869. return srv.(VolumeServerServer).VolumeTierMoveDatToRemote(m, &volumeServerVolumeTierMoveDatToRemoteServer{stream})
  6870. }
  6871. type VolumeServer_VolumeTierMoveDatToRemoteServer interface {
  6872. Send(*VolumeTierMoveDatToRemoteResponse) error
  6873. grpc.ServerStream
  6874. }
  6875. type volumeServerVolumeTierMoveDatToRemoteServer struct {
  6876. grpc.ServerStream
  6877. }
  6878. func (x *volumeServerVolumeTierMoveDatToRemoteServer) Send(m *VolumeTierMoveDatToRemoteResponse) error {
  6879. return x.ServerStream.SendMsg(m)
  6880. }
  6881. func _VolumeServer_VolumeTierMoveDatFromRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  6882. m := new(VolumeTierMoveDatFromRemoteRequest)
  6883. if err := stream.RecvMsg(m); err != nil {
  6884. return err
  6885. }
  6886. return srv.(VolumeServerServer).VolumeTierMoveDatFromRemote(m, &volumeServerVolumeTierMoveDatFromRemoteServer{stream})
  6887. }
  6888. type VolumeServer_VolumeTierMoveDatFromRemoteServer interface {
  6889. Send(*VolumeTierMoveDatFromRemoteResponse) error
  6890. grpc.ServerStream
  6891. }
  6892. type volumeServerVolumeTierMoveDatFromRemoteServer struct {
  6893. grpc.ServerStream
  6894. }
  6895. func (x *volumeServerVolumeTierMoveDatFromRemoteServer) Send(m *VolumeTierMoveDatFromRemoteResponse) error {
  6896. return x.ServerStream.SendMsg(m)
  6897. }
  6898. func _VolumeServer_VolumeServerStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6899. in := new(VolumeServerStatusRequest)
  6900. if err := dec(in); err != nil {
  6901. return nil, err
  6902. }
  6903. if interceptor == nil {
  6904. return srv.(VolumeServerServer).VolumeServerStatus(ctx, in)
  6905. }
  6906. info := &grpc.UnaryServerInfo{
  6907. Server: srv,
  6908. FullMethod: "/volume_server_pb.VolumeServer/VolumeServerStatus",
  6909. }
  6910. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6911. return srv.(VolumeServerServer).VolumeServerStatus(ctx, req.(*VolumeServerStatusRequest))
  6912. }
  6913. return interceptor(ctx, in, info, handler)
  6914. }
  6915. func _VolumeServer_Query_Handler(srv interface{}, stream grpc.ServerStream) error {
  6916. m := new(QueryRequest)
  6917. if err := stream.RecvMsg(m); err != nil {
  6918. return err
  6919. }
  6920. return srv.(VolumeServerServer).Query(m, &volumeServerQueryServer{stream})
  6921. }
  6922. type VolumeServer_QueryServer interface {
  6923. Send(*QueriedStripe) error
  6924. grpc.ServerStream
  6925. }
  6926. type volumeServerQueryServer struct {
  6927. grpc.ServerStream
  6928. }
  6929. func (x *volumeServerQueryServer) Send(m *QueriedStripe) error {
  6930. return x.ServerStream.SendMsg(m)
  6931. }
  6932. func _VolumeServer_VolumeNeedleStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6933. in := new(VolumeNeedleStatusRequest)
  6934. if err := dec(in); err != nil {
  6935. return nil, err
  6936. }
  6937. if interceptor == nil {
  6938. return srv.(VolumeServerServer).VolumeNeedleStatus(ctx, in)
  6939. }
  6940. info := &grpc.UnaryServerInfo{
  6941. Server: srv,
  6942. FullMethod: "/volume_server_pb.VolumeServer/VolumeNeedleStatus",
  6943. }
  6944. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6945. return srv.(VolumeServerServer).VolumeNeedleStatus(ctx, req.(*VolumeNeedleStatusRequest))
  6946. }
  6947. return interceptor(ctx, in, info, handler)
  6948. }
  6949. var _VolumeServer_serviceDesc = grpc.ServiceDesc{
  6950. ServiceName: "volume_server_pb.VolumeServer",
  6951. HandlerType: (*VolumeServerServer)(nil),
  6952. Methods: []grpc.MethodDesc{
  6953. {
  6954. MethodName: "BatchDelete",
  6955. Handler: _VolumeServer_BatchDelete_Handler,
  6956. },
  6957. {
  6958. MethodName: "VacuumVolumeCheck",
  6959. Handler: _VolumeServer_VacuumVolumeCheck_Handler,
  6960. },
  6961. {
  6962. MethodName: "VacuumVolumeCompact",
  6963. Handler: _VolumeServer_VacuumVolumeCompact_Handler,
  6964. },
  6965. {
  6966. MethodName: "VacuumVolumeCommit",
  6967. Handler: _VolumeServer_VacuumVolumeCommit_Handler,
  6968. },
  6969. {
  6970. MethodName: "VacuumVolumeCleanup",
  6971. Handler: _VolumeServer_VacuumVolumeCleanup_Handler,
  6972. },
  6973. {
  6974. MethodName: "DeleteCollection",
  6975. Handler: _VolumeServer_DeleteCollection_Handler,
  6976. },
  6977. {
  6978. MethodName: "AllocateVolume",
  6979. Handler: _VolumeServer_AllocateVolume_Handler,
  6980. },
  6981. {
  6982. MethodName: "VolumeSyncStatus",
  6983. Handler: _VolumeServer_VolumeSyncStatus_Handler,
  6984. },
  6985. {
  6986. MethodName: "VolumeMount",
  6987. Handler: _VolumeServer_VolumeMount_Handler,
  6988. },
  6989. {
  6990. MethodName: "VolumeUnmount",
  6991. Handler: _VolumeServer_VolumeUnmount_Handler,
  6992. },
  6993. {
  6994. MethodName: "VolumeDelete",
  6995. Handler: _VolumeServer_VolumeDelete_Handler,
  6996. },
  6997. {
  6998. MethodName: "VolumeMarkReadonly",
  6999. Handler: _VolumeServer_VolumeMarkReadonly_Handler,
  7000. },
  7001. {
  7002. MethodName: "VolumeConfigure",
  7003. Handler: _VolumeServer_VolumeConfigure_Handler,
  7004. },
  7005. {
  7006. MethodName: "VolumeCopy",
  7007. Handler: _VolumeServer_VolumeCopy_Handler,
  7008. },
  7009. {
  7010. MethodName: "ReadVolumeFileStatus",
  7011. Handler: _VolumeServer_ReadVolumeFileStatus_Handler,
  7012. },
  7013. {
  7014. MethodName: "VolumeTailReceiver",
  7015. Handler: _VolumeServer_VolumeTailReceiver_Handler,
  7016. },
  7017. {
  7018. MethodName: "VolumeEcShardsGenerate",
  7019. Handler: _VolumeServer_VolumeEcShardsGenerate_Handler,
  7020. },
  7021. {
  7022. MethodName: "VolumeEcShardsRebuild",
  7023. Handler: _VolumeServer_VolumeEcShardsRebuild_Handler,
  7024. },
  7025. {
  7026. MethodName: "VolumeEcShardsCopy",
  7027. Handler: _VolumeServer_VolumeEcShardsCopy_Handler,
  7028. },
  7029. {
  7030. MethodName: "VolumeEcShardsDelete",
  7031. Handler: _VolumeServer_VolumeEcShardsDelete_Handler,
  7032. },
  7033. {
  7034. MethodName: "VolumeEcShardsMount",
  7035. Handler: _VolumeServer_VolumeEcShardsMount_Handler,
  7036. },
  7037. {
  7038. MethodName: "VolumeEcShardsUnmount",
  7039. Handler: _VolumeServer_VolumeEcShardsUnmount_Handler,
  7040. },
  7041. {
  7042. MethodName: "VolumeEcBlobDelete",
  7043. Handler: _VolumeServer_VolumeEcBlobDelete_Handler,
  7044. },
  7045. {
  7046. MethodName: "VolumeEcShardsToVolume",
  7047. Handler: _VolumeServer_VolumeEcShardsToVolume_Handler,
  7048. },
  7049. {
  7050. MethodName: "VolumeServerStatus",
  7051. Handler: _VolumeServer_VolumeServerStatus_Handler,
  7052. },
  7053. {
  7054. MethodName: "VolumeNeedleStatus",
  7055. Handler: _VolumeServer_VolumeNeedleStatus_Handler,
  7056. },
  7057. },
  7058. Streams: []grpc.StreamDesc{
  7059. {
  7060. StreamName: "VolumeIncrementalCopy",
  7061. Handler: _VolumeServer_VolumeIncrementalCopy_Handler,
  7062. ServerStreams: true,
  7063. },
  7064. {
  7065. StreamName: "CopyFile",
  7066. Handler: _VolumeServer_CopyFile_Handler,
  7067. ServerStreams: true,
  7068. },
  7069. {
  7070. StreamName: "VolumeTailSender",
  7071. Handler: _VolumeServer_VolumeTailSender_Handler,
  7072. ServerStreams: true,
  7073. },
  7074. {
  7075. StreamName: "VolumeEcShardRead",
  7076. Handler: _VolumeServer_VolumeEcShardRead_Handler,
  7077. ServerStreams: true,
  7078. },
  7079. {
  7080. StreamName: "VolumeTierMoveDatToRemote",
  7081. Handler: _VolumeServer_VolumeTierMoveDatToRemote_Handler,
  7082. ServerStreams: true,
  7083. },
  7084. {
  7085. StreamName: "VolumeTierMoveDatFromRemote",
  7086. Handler: _VolumeServer_VolumeTierMoveDatFromRemote_Handler,
  7087. ServerStreams: true,
  7088. },
  7089. {
  7090. StreamName: "Query",
  7091. Handler: _VolumeServer_Query_Handler,
  7092. ServerStreams: true,
  7093. },
  7094. },
  7095. Metadata: "volume_server.proto",
  7096. }