volume_server.pb.go 302 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.27.1
  4. // protoc v3.17.3
  5. // source: volume_server.proto
  6. package volume_server_pb
  7. import (
  8. remote_pb "github.com/seaweedfs/seaweedfs/weed/pb/remote_pb"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type BatchDeleteRequest struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. FileIds []string `protobuf:"bytes,1,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
  25. SkipCookieCheck bool `protobuf:"varint,2,opt,name=skip_cookie_check,json=skipCookieCheck,proto3" json:"skip_cookie_check,omitempty"`
  26. }
  27. func (x *BatchDeleteRequest) Reset() {
  28. *x = BatchDeleteRequest{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_volume_server_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *BatchDeleteRequest) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*BatchDeleteRequest) ProtoMessage() {}
  39. func (x *BatchDeleteRequest) ProtoReflect() protoreflect.Message {
  40. mi := &file_volume_server_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use BatchDeleteRequest.ProtoReflect.Descriptor instead.
  51. func (*BatchDeleteRequest) Descriptor() ([]byte, []int) {
  52. return file_volume_server_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *BatchDeleteRequest) GetFileIds() []string {
  55. if x != nil {
  56. return x.FileIds
  57. }
  58. return nil
  59. }
  60. func (x *BatchDeleteRequest) GetSkipCookieCheck() bool {
  61. if x != nil {
  62. return x.SkipCookieCheck
  63. }
  64. return false
  65. }
  66. type BatchDeleteResponse struct {
  67. state protoimpl.MessageState
  68. sizeCache protoimpl.SizeCache
  69. unknownFields protoimpl.UnknownFields
  70. Results []*DeleteResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
  71. }
  72. func (x *BatchDeleteResponse) Reset() {
  73. *x = BatchDeleteResponse{}
  74. if protoimpl.UnsafeEnabled {
  75. mi := &file_volume_server_proto_msgTypes[1]
  76. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  77. ms.StoreMessageInfo(mi)
  78. }
  79. }
  80. func (x *BatchDeleteResponse) String() string {
  81. return protoimpl.X.MessageStringOf(x)
  82. }
  83. func (*BatchDeleteResponse) ProtoMessage() {}
  84. func (x *BatchDeleteResponse) ProtoReflect() protoreflect.Message {
  85. mi := &file_volume_server_proto_msgTypes[1]
  86. if protoimpl.UnsafeEnabled && x != nil {
  87. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  88. if ms.LoadMessageInfo() == nil {
  89. ms.StoreMessageInfo(mi)
  90. }
  91. return ms
  92. }
  93. return mi.MessageOf(x)
  94. }
  95. // Deprecated: Use BatchDeleteResponse.ProtoReflect.Descriptor instead.
  96. func (*BatchDeleteResponse) Descriptor() ([]byte, []int) {
  97. return file_volume_server_proto_rawDescGZIP(), []int{1}
  98. }
  99. func (x *BatchDeleteResponse) GetResults() []*DeleteResult {
  100. if x != nil {
  101. return x.Results
  102. }
  103. return nil
  104. }
  105. type DeleteResult struct {
  106. state protoimpl.MessageState
  107. sizeCache protoimpl.SizeCache
  108. unknownFields protoimpl.UnknownFields
  109. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
  110. Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
  111. Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
  112. Size uint32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  113. Version uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"`
  114. }
  115. func (x *DeleteResult) Reset() {
  116. *x = DeleteResult{}
  117. if protoimpl.UnsafeEnabled {
  118. mi := &file_volume_server_proto_msgTypes[2]
  119. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  120. ms.StoreMessageInfo(mi)
  121. }
  122. }
  123. func (x *DeleteResult) String() string {
  124. return protoimpl.X.MessageStringOf(x)
  125. }
  126. func (*DeleteResult) ProtoMessage() {}
  127. func (x *DeleteResult) ProtoReflect() protoreflect.Message {
  128. mi := &file_volume_server_proto_msgTypes[2]
  129. if protoimpl.UnsafeEnabled && x != nil {
  130. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  131. if ms.LoadMessageInfo() == nil {
  132. ms.StoreMessageInfo(mi)
  133. }
  134. return ms
  135. }
  136. return mi.MessageOf(x)
  137. }
  138. // Deprecated: Use DeleteResult.ProtoReflect.Descriptor instead.
  139. func (*DeleteResult) Descriptor() ([]byte, []int) {
  140. return file_volume_server_proto_rawDescGZIP(), []int{2}
  141. }
  142. func (x *DeleteResult) GetFileId() string {
  143. if x != nil {
  144. return x.FileId
  145. }
  146. return ""
  147. }
  148. func (x *DeleteResult) GetStatus() int32 {
  149. if x != nil {
  150. return x.Status
  151. }
  152. return 0
  153. }
  154. func (x *DeleteResult) GetError() string {
  155. if x != nil {
  156. return x.Error
  157. }
  158. return ""
  159. }
  160. func (x *DeleteResult) GetSize() uint32 {
  161. if x != nil {
  162. return x.Size
  163. }
  164. return 0
  165. }
  166. func (x *DeleteResult) GetVersion() uint32 {
  167. if x != nil {
  168. return x.Version
  169. }
  170. return 0
  171. }
  172. type Empty struct {
  173. state protoimpl.MessageState
  174. sizeCache protoimpl.SizeCache
  175. unknownFields protoimpl.UnknownFields
  176. }
  177. func (x *Empty) Reset() {
  178. *x = Empty{}
  179. if protoimpl.UnsafeEnabled {
  180. mi := &file_volume_server_proto_msgTypes[3]
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. ms.StoreMessageInfo(mi)
  183. }
  184. }
  185. func (x *Empty) String() string {
  186. return protoimpl.X.MessageStringOf(x)
  187. }
  188. func (*Empty) ProtoMessage() {}
  189. func (x *Empty) ProtoReflect() protoreflect.Message {
  190. mi := &file_volume_server_proto_msgTypes[3]
  191. if protoimpl.UnsafeEnabled && x != nil {
  192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  193. if ms.LoadMessageInfo() == nil {
  194. ms.StoreMessageInfo(mi)
  195. }
  196. return ms
  197. }
  198. return mi.MessageOf(x)
  199. }
  200. // Deprecated: Use Empty.ProtoReflect.Descriptor instead.
  201. func (*Empty) Descriptor() ([]byte, []int) {
  202. return file_volume_server_proto_rawDescGZIP(), []int{3}
  203. }
  204. type VacuumVolumeCheckRequest struct {
  205. state protoimpl.MessageState
  206. sizeCache protoimpl.SizeCache
  207. unknownFields protoimpl.UnknownFields
  208. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  209. }
  210. func (x *VacuumVolumeCheckRequest) Reset() {
  211. *x = VacuumVolumeCheckRequest{}
  212. if protoimpl.UnsafeEnabled {
  213. mi := &file_volume_server_proto_msgTypes[4]
  214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  215. ms.StoreMessageInfo(mi)
  216. }
  217. }
  218. func (x *VacuumVolumeCheckRequest) String() string {
  219. return protoimpl.X.MessageStringOf(x)
  220. }
  221. func (*VacuumVolumeCheckRequest) ProtoMessage() {}
  222. func (x *VacuumVolumeCheckRequest) ProtoReflect() protoreflect.Message {
  223. mi := &file_volume_server_proto_msgTypes[4]
  224. if protoimpl.UnsafeEnabled && x != nil {
  225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  226. if ms.LoadMessageInfo() == nil {
  227. ms.StoreMessageInfo(mi)
  228. }
  229. return ms
  230. }
  231. return mi.MessageOf(x)
  232. }
  233. // Deprecated: Use VacuumVolumeCheckRequest.ProtoReflect.Descriptor instead.
  234. func (*VacuumVolumeCheckRequest) Descriptor() ([]byte, []int) {
  235. return file_volume_server_proto_rawDescGZIP(), []int{4}
  236. }
  237. func (x *VacuumVolumeCheckRequest) GetVolumeId() uint32 {
  238. if x != nil {
  239. return x.VolumeId
  240. }
  241. return 0
  242. }
  243. type VacuumVolumeCheckResponse struct {
  244. state protoimpl.MessageState
  245. sizeCache protoimpl.SizeCache
  246. unknownFields protoimpl.UnknownFields
  247. GarbageRatio float64 `protobuf:"fixed64,1,opt,name=garbage_ratio,json=garbageRatio,proto3" json:"garbage_ratio,omitempty"`
  248. }
  249. func (x *VacuumVolumeCheckResponse) Reset() {
  250. *x = VacuumVolumeCheckResponse{}
  251. if protoimpl.UnsafeEnabled {
  252. mi := &file_volume_server_proto_msgTypes[5]
  253. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  254. ms.StoreMessageInfo(mi)
  255. }
  256. }
  257. func (x *VacuumVolumeCheckResponse) String() string {
  258. return protoimpl.X.MessageStringOf(x)
  259. }
  260. func (*VacuumVolumeCheckResponse) ProtoMessage() {}
  261. func (x *VacuumVolumeCheckResponse) ProtoReflect() protoreflect.Message {
  262. mi := &file_volume_server_proto_msgTypes[5]
  263. if protoimpl.UnsafeEnabled && x != nil {
  264. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  265. if ms.LoadMessageInfo() == nil {
  266. ms.StoreMessageInfo(mi)
  267. }
  268. return ms
  269. }
  270. return mi.MessageOf(x)
  271. }
  272. // Deprecated: Use VacuumVolumeCheckResponse.ProtoReflect.Descriptor instead.
  273. func (*VacuumVolumeCheckResponse) Descriptor() ([]byte, []int) {
  274. return file_volume_server_proto_rawDescGZIP(), []int{5}
  275. }
  276. func (x *VacuumVolumeCheckResponse) GetGarbageRatio() float64 {
  277. if x != nil {
  278. return x.GarbageRatio
  279. }
  280. return 0
  281. }
  282. type VacuumVolumeCompactRequest struct {
  283. state protoimpl.MessageState
  284. sizeCache protoimpl.SizeCache
  285. unknownFields protoimpl.UnknownFields
  286. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  287. Preallocate int64 `protobuf:"varint,2,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  288. }
  289. func (x *VacuumVolumeCompactRequest) Reset() {
  290. *x = VacuumVolumeCompactRequest{}
  291. if protoimpl.UnsafeEnabled {
  292. mi := &file_volume_server_proto_msgTypes[6]
  293. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  294. ms.StoreMessageInfo(mi)
  295. }
  296. }
  297. func (x *VacuumVolumeCompactRequest) String() string {
  298. return protoimpl.X.MessageStringOf(x)
  299. }
  300. func (*VacuumVolumeCompactRequest) ProtoMessage() {}
  301. func (x *VacuumVolumeCompactRequest) ProtoReflect() protoreflect.Message {
  302. mi := &file_volume_server_proto_msgTypes[6]
  303. if protoimpl.UnsafeEnabled && x != nil {
  304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  305. if ms.LoadMessageInfo() == nil {
  306. ms.StoreMessageInfo(mi)
  307. }
  308. return ms
  309. }
  310. return mi.MessageOf(x)
  311. }
  312. // Deprecated: Use VacuumVolumeCompactRequest.ProtoReflect.Descriptor instead.
  313. func (*VacuumVolumeCompactRequest) Descriptor() ([]byte, []int) {
  314. return file_volume_server_proto_rawDescGZIP(), []int{6}
  315. }
  316. func (x *VacuumVolumeCompactRequest) GetVolumeId() uint32 {
  317. if x != nil {
  318. return x.VolumeId
  319. }
  320. return 0
  321. }
  322. func (x *VacuumVolumeCompactRequest) GetPreallocate() int64 {
  323. if x != nil {
  324. return x.Preallocate
  325. }
  326. return 0
  327. }
  328. type VacuumVolumeCompactResponse struct {
  329. state protoimpl.MessageState
  330. sizeCache protoimpl.SizeCache
  331. unknownFields protoimpl.UnknownFields
  332. ProcessedBytes int64 `protobuf:"varint,1,opt,name=processed_bytes,json=processedBytes,proto3" json:"processed_bytes,omitempty"`
  333. LoadAvg_1M float32 `protobuf:"fixed32,2,opt,name=load_avg_1m,json=loadAvg1m,proto3" json:"load_avg_1m,omitempty"`
  334. }
  335. func (x *VacuumVolumeCompactResponse) Reset() {
  336. *x = VacuumVolumeCompactResponse{}
  337. if protoimpl.UnsafeEnabled {
  338. mi := &file_volume_server_proto_msgTypes[7]
  339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  340. ms.StoreMessageInfo(mi)
  341. }
  342. }
  343. func (x *VacuumVolumeCompactResponse) String() string {
  344. return protoimpl.X.MessageStringOf(x)
  345. }
  346. func (*VacuumVolumeCompactResponse) ProtoMessage() {}
  347. func (x *VacuumVolumeCompactResponse) ProtoReflect() protoreflect.Message {
  348. mi := &file_volume_server_proto_msgTypes[7]
  349. if protoimpl.UnsafeEnabled && x != nil {
  350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  351. if ms.LoadMessageInfo() == nil {
  352. ms.StoreMessageInfo(mi)
  353. }
  354. return ms
  355. }
  356. return mi.MessageOf(x)
  357. }
  358. // Deprecated: Use VacuumVolumeCompactResponse.ProtoReflect.Descriptor instead.
  359. func (*VacuumVolumeCompactResponse) Descriptor() ([]byte, []int) {
  360. return file_volume_server_proto_rawDescGZIP(), []int{7}
  361. }
  362. func (x *VacuumVolumeCompactResponse) GetProcessedBytes() int64 {
  363. if x != nil {
  364. return x.ProcessedBytes
  365. }
  366. return 0
  367. }
  368. func (x *VacuumVolumeCompactResponse) GetLoadAvg_1M() float32 {
  369. if x != nil {
  370. return x.LoadAvg_1M
  371. }
  372. return 0
  373. }
  374. type VacuumVolumeCommitRequest struct {
  375. state protoimpl.MessageState
  376. sizeCache protoimpl.SizeCache
  377. unknownFields protoimpl.UnknownFields
  378. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  379. }
  380. func (x *VacuumVolumeCommitRequest) Reset() {
  381. *x = VacuumVolumeCommitRequest{}
  382. if protoimpl.UnsafeEnabled {
  383. mi := &file_volume_server_proto_msgTypes[8]
  384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  385. ms.StoreMessageInfo(mi)
  386. }
  387. }
  388. func (x *VacuumVolumeCommitRequest) String() string {
  389. return protoimpl.X.MessageStringOf(x)
  390. }
  391. func (*VacuumVolumeCommitRequest) ProtoMessage() {}
  392. func (x *VacuumVolumeCommitRequest) ProtoReflect() protoreflect.Message {
  393. mi := &file_volume_server_proto_msgTypes[8]
  394. if protoimpl.UnsafeEnabled && x != nil {
  395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  396. if ms.LoadMessageInfo() == nil {
  397. ms.StoreMessageInfo(mi)
  398. }
  399. return ms
  400. }
  401. return mi.MessageOf(x)
  402. }
  403. // Deprecated: Use VacuumVolumeCommitRequest.ProtoReflect.Descriptor instead.
  404. func (*VacuumVolumeCommitRequest) Descriptor() ([]byte, []int) {
  405. return file_volume_server_proto_rawDescGZIP(), []int{8}
  406. }
  407. func (x *VacuumVolumeCommitRequest) GetVolumeId() uint32 {
  408. if x != nil {
  409. return x.VolumeId
  410. }
  411. return 0
  412. }
  413. type VacuumVolumeCommitResponse struct {
  414. state protoimpl.MessageState
  415. sizeCache protoimpl.SizeCache
  416. unknownFields protoimpl.UnknownFields
  417. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  418. }
  419. func (x *VacuumVolumeCommitResponse) Reset() {
  420. *x = VacuumVolumeCommitResponse{}
  421. if protoimpl.UnsafeEnabled {
  422. mi := &file_volume_server_proto_msgTypes[9]
  423. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  424. ms.StoreMessageInfo(mi)
  425. }
  426. }
  427. func (x *VacuumVolumeCommitResponse) String() string {
  428. return protoimpl.X.MessageStringOf(x)
  429. }
  430. func (*VacuumVolumeCommitResponse) ProtoMessage() {}
  431. func (x *VacuumVolumeCommitResponse) ProtoReflect() protoreflect.Message {
  432. mi := &file_volume_server_proto_msgTypes[9]
  433. if protoimpl.UnsafeEnabled && x != nil {
  434. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  435. if ms.LoadMessageInfo() == nil {
  436. ms.StoreMessageInfo(mi)
  437. }
  438. return ms
  439. }
  440. return mi.MessageOf(x)
  441. }
  442. // Deprecated: Use VacuumVolumeCommitResponse.ProtoReflect.Descriptor instead.
  443. func (*VacuumVolumeCommitResponse) Descriptor() ([]byte, []int) {
  444. return file_volume_server_proto_rawDescGZIP(), []int{9}
  445. }
  446. func (x *VacuumVolumeCommitResponse) GetIsReadOnly() bool {
  447. if x != nil {
  448. return x.IsReadOnly
  449. }
  450. return false
  451. }
  452. type VacuumVolumeCleanupRequest struct {
  453. state protoimpl.MessageState
  454. sizeCache protoimpl.SizeCache
  455. unknownFields protoimpl.UnknownFields
  456. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  457. }
  458. func (x *VacuumVolumeCleanupRequest) Reset() {
  459. *x = VacuumVolumeCleanupRequest{}
  460. if protoimpl.UnsafeEnabled {
  461. mi := &file_volume_server_proto_msgTypes[10]
  462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  463. ms.StoreMessageInfo(mi)
  464. }
  465. }
  466. func (x *VacuumVolumeCleanupRequest) String() string {
  467. return protoimpl.X.MessageStringOf(x)
  468. }
  469. func (*VacuumVolumeCleanupRequest) ProtoMessage() {}
  470. func (x *VacuumVolumeCleanupRequest) ProtoReflect() protoreflect.Message {
  471. mi := &file_volume_server_proto_msgTypes[10]
  472. if protoimpl.UnsafeEnabled && x != nil {
  473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  474. if ms.LoadMessageInfo() == nil {
  475. ms.StoreMessageInfo(mi)
  476. }
  477. return ms
  478. }
  479. return mi.MessageOf(x)
  480. }
  481. // Deprecated: Use VacuumVolumeCleanupRequest.ProtoReflect.Descriptor instead.
  482. func (*VacuumVolumeCleanupRequest) Descriptor() ([]byte, []int) {
  483. return file_volume_server_proto_rawDescGZIP(), []int{10}
  484. }
  485. func (x *VacuumVolumeCleanupRequest) GetVolumeId() uint32 {
  486. if x != nil {
  487. return x.VolumeId
  488. }
  489. return 0
  490. }
  491. type VacuumVolumeCleanupResponse struct {
  492. state protoimpl.MessageState
  493. sizeCache protoimpl.SizeCache
  494. unknownFields protoimpl.UnknownFields
  495. }
  496. func (x *VacuumVolumeCleanupResponse) Reset() {
  497. *x = VacuumVolumeCleanupResponse{}
  498. if protoimpl.UnsafeEnabled {
  499. mi := &file_volume_server_proto_msgTypes[11]
  500. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  501. ms.StoreMessageInfo(mi)
  502. }
  503. }
  504. func (x *VacuumVolumeCleanupResponse) String() string {
  505. return protoimpl.X.MessageStringOf(x)
  506. }
  507. func (*VacuumVolumeCleanupResponse) ProtoMessage() {}
  508. func (x *VacuumVolumeCleanupResponse) ProtoReflect() protoreflect.Message {
  509. mi := &file_volume_server_proto_msgTypes[11]
  510. if protoimpl.UnsafeEnabled && x != nil {
  511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  512. if ms.LoadMessageInfo() == nil {
  513. ms.StoreMessageInfo(mi)
  514. }
  515. return ms
  516. }
  517. return mi.MessageOf(x)
  518. }
  519. // Deprecated: Use VacuumVolumeCleanupResponse.ProtoReflect.Descriptor instead.
  520. func (*VacuumVolumeCleanupResponse) Descriptor() ([]byte, []int) {
  521. return file_volume_server_proto_rawDescGZIP(), []int{11}
  522. }
  523. type DeleteCollectionRequest struct {
  524. state protoimpl.MessageState
  525. sizeCache protoimpl.SizeCache
  526. unknownFields protoimpl.UnknownFields
  527. Collection string `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty"`
  528. }
  529. func (x *DeleteCollectionRequest) Reset() {
  530. *x = DeleteCollectionRequest{}
  531. if protoimpl.UnsafeEnabled {
  532. mi := &file_volume_server_proto_msgTypes[12]
  533. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  534. ms.StoreMessageInfo(mi)
  535. }
  536. }
  537. func (x *DeleteCollectionRequest) String() string {
  538. return protoimpl.X.MessageStringOf(x)
  539. }
  540. func (*DeleteCollectionRequest) ProtoMessage() {}
  541. func (x *DeleteCollectionRequest) ProtoReflect() protoreflect.Message {
  542. mi := &file_volume_server_proto_msgTypes[12]
  543. if protoimpl.UnsafeEnabled && x != nil {
  544. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  545. if ms.LoadMessageInfo() == nil {
  546. ms.StoreMessageInfo(mi)
  547. }
  548. return ms
  549. }
  550. return mi.MessageOf(x)
  551. }
  552. // Deprecated: Use DeleteCollectionRequest.ProtoReflect.Descriptor instead.
  553. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) {
  554. return file_volume_server_proto_rawDescGZIP(), []int{12}
  555. }
  556. func (x *DeleteCollectionRequest) GetCollection() string {
  557. if x != nil {
  558. return x.Collection
  559. }
  560. return ""
  561. }
  562. type DeleteCollectionResponse struct {
  563. state protoimpl.MessageState
  564. sizeCache protoimpl.SizeCache
  565. unknownFields protoimpl.UnknownFields
  566. }
  567. func (x *DeleteCollectionResponse) Reset() {
  568. *x = DeleteCollectionResponse{}
  569. if protoimpl.UnsafeEnabled {
  570. mi := &file_volume_server_proto_msgTypes[13]
  571. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  572. ms.StoreMessageInfo(mi)
  573. }
  574. }
  575. func (x *DeleteCollectionResponse) String() string {
  576. return protoimpl.X.MessageStringOf(x)
  577. }
  578. func (*DeleteCollectionResponse) ProtoMessage() {}
  579. func (x *DeleteCollectionResponse) ProtoReflect() protoreflect.Message {
  580. mi := &file_volume_server_proto_msgTypes[13]
  581. if protoimpl.UnsafeEnabled && x != nil {
  582. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  583. if ms.LoadMessageInfo() == nil {
  584. ms.StoreMessageInfo(mi)
  585. }
  586. return ms
  587. }
  588. return mi.MessageOf(x)
  589. }
  590. // Deprecated: Use DeleteCollectionResponse.ProtoReflect.Descriptor instead.
  591. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) {
  592. return file_volume_server_proto_rawDescGZIP(), []int{13}
  593. }
  594. type AllocateVolumeRequest struct {
  595. state protoimpl.MessageState
  596. sizeCache protoimpl.SizeCache
  597. unknownFields protoimpl.UnknownFields
  598. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  599. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  600. Preallocate int64 `protobuf:"varint,3,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  601. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  602. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  603. MemoryMapMaxSizeMb uint32 `protobuf:"varint,6,opt,name=memory_map_max_size_mb,json=memoryMapMaxSizeMb,proto3" json:"memory_map_max_size_mb,omitempty"`
  604. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  605. }
  606. func (x *AllocateVolumeRequest) Reset() {
  607. *x = AllocateVolumeRequest{}
  608. if protoimpl.UnsafeEnabled {
  609. mi := &file_volume_server_proto_msgTypes[14]
  610. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  611. ms.StoreMessageInfo(mi)
  612. }
  613. }
  614. func (x *AllocateVolumeRequest) String() string {
  615. return protoimpl.X.MessageStringOf(x)
  616. }
  617. func (*AllocateVolumeRequest) ProtoMessage() {}
  618. func (x *AllocateVolumeRequest) ProtoReflect() protoreflect.Message {
  619. mi := &file_volume_server_proto_msgTypes[14]
  620. if protoimpl.UnsafeEnabled && x != nil {
  621. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  622. if ms.LoadMessageInfo() == nil {
  623. ms.StoreMessageInfo(mi)
  624. }
  625. return ms
  626. }
  627. return mi.MessageOf(x)
  628. }
  629. // Deprecated: Use AllocateVolumeRequest.ProtoReflect.Descriptor instead.
  630. func (*AllocateVolumeRequest) Descriptor() ([]byte, []int) {
  631. return file_volume_server_proto_rawDescGZIP(), []int{14}
  632. }
  633. func (x *AllocateVolumeRequest) GetVolumeId() uint32 {
  634. if x != nil {
  635. return x.VolumeId
  636. }
  637. return 0
  638. }
  639. func (x *AllocateVolumeRequest) GetCollection() string {
  640. if x != nil {
  641. return x.Collection
  642. }
  643. return ""
  644. }
  645. func (x *AllocateVolumeRequest) GetPreallocate() int64 {
  646. if x != nil {
  647. return x.Preallocate
  648. }
  649. return 0
  650. }
  651. func (x *AllocateVolumeRequest) GetReplication() string {
  652. if x != nil {
  653. return x.Replication
  654. }
  655. return ""
  656. }
  657. func (x *AllocateVolumeRequest) GetTtl() string {
  658. if x != nil {
  659. return x.Ttl
  660. }
  661. return ""
  662. }
  663. func (x *AllocateVolumeRequest) GetMemoryMapMaxSizeMb() uint32 {
  664. if x != nil {
  665. return x.MemoryMapMaxSizeMb
  666. }
  667. return 0
  668. }
  669. func (x *AllocateVolumeRequest) GetDiskType() string {
  670. if x != nil {
  671. return x.DiskType
  672. }
  673. return ""
  674. }
  675. type AllocateVolumeResponse struct {
  676. state protoimpl.MessageState
  677. sizeCache protoimpl.SizeCache
  678. unknownFields protoimpl.UnknownFields
  679. }
  680. func (x *AllocateVolumeResponse) Reset() {
  681. *x = AllocateVolumeResponse{}
  682. if protoimpl.UnsafeEnabled {
  683. mi := &file_volume_server_proto_msgTypes[15]
  684. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  685. ms.StoreMessageInfo(mi)
  686. }
  687. }
  688. func (x *AllocateVolumeResponse) String() string {
  689. return protoimpl.X.MessageStringOf(x)
  690. }
  691. func (*AllocateVolumeResponse) ProtoMessage() {}
  692. func (x *AllocateVolumeResponse) ProtoReflect() protoreflect.Message {
  693. mi := &file_volume_server_proto_msgTypes[15]
  694. if protoimpl.UnsafeEnabled && x != nil {
  695. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  696. if ms.LoadMessageInfo() == nil {
  697. ms.StoreMessageInfo(mi)
  698. }
  699. return ms
  700. }
  701. return mi.MessageOf(x)
  702. }
  703. // Deprecated: Use AllocateVolumeResponse.ProtoReflect.Descriptor instead.
  704. func (*AllocateVolumeResponse) Descriptor() ([]byte, []int) {
  705. return file_volume_server_proto_rawDescGZIP(), []int{15}
  706. }
  707. type VolumeSyncStatusRequest struct {
  708. state protoimpl.MessageState
  709. sizeCache protoimpl.SizeCache
  710. unknownFields protoimpl.UnknownFields
  711. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  712. }
  713. func (x *VolumeSyncStatusRequest) Reset() {
  714. *x = VolumeSyncStatusRequest{}
  715. if protoimpl.UnsafeEnabled {
  716. mi := &file_volume_server_proto_msgTypes[16]
  717. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  718. ms.StoreMessageInfo(mi)
  719. }
  720. }
  721. func (x *VolumeSyncStatusRequest) String() string {
  722. return protoimpl.X.MessageStringOf(x)
  723. }
  724. func (*VolumeSyncStatusRequest) ProtoMessage() {}
  725. func (x *VolumeSyncStatusRequest) ProtoReflect() protoreflect.Message {
  726. mi := &file_volume_server_proto_msgTypes[16]
  727. if protoimpl.UnsafeEnabled && x != nil {
  728. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  729. if ms.LoadMessageInfo() == nil {
  730. ms.StoreMessageInfo(mi)
  731. }
  732. return ms
  733. }
  734. return mi.MessageOf(x)
  735. }
  736. // Deprecated: Use VolumeSyncStatusRequest.ProtoReflect.Descriptor instead.
  737. func (*VolumeSyncStatusRequest) Descriptor() ([]byte, []int) {
  738. return file_volume_server_proto_rawDescGZIP(), []int{16}
  739. }
  740. func (x *VolumeSyncStatusRequest) GetVolumeId() uint32 {
  741. if x != nil {
  742. return x.VolumeId
  743. }
  744. return 0
  745. }
  746. type VolumeSyncStatusResponse struct {
  747. state protoimpl.MessageState
  748. sizeCache protoimpl.SizeCache
  749. unknownFields protoimpl.UnknownFields
  750. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  751. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  752. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  753. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  754. TailOffset uint64 `protobuf:"varint,6,opt,name=tail_offset,json=tailOffset,proto3" json:"tail_offset,omitempty"`
  755. CompactRevision uint32 `protobuf:"varint,7,opt,name=compact_revision,json=compactRevision,proto3" json:"compact_revision,omitempty"`
  756. IdxFileSize uint64 `protobuf:"varint,8,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  757. }
  758. func (x *VolumeSyncStatusResponse) Reset() {
  759. *x = VolumeSyncStatusResponse{}
  760. if protoimpl.UnsafeEnabled {
  761. mi := &file_volume_server_proto_msgTypes[17]
  762. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  763. ms.StoreMessageInfo(mi)
  764. }
  765. }
  766. func (x *VolumeSyncStatusResponse) String() string {
  767. return protoimpl.X.MessageStringOf(x)
  768. }
  769. func (*VolumeSyncStatusResponse) ProtoMessage() {}
  770. func (x *VolumeSyncStatusResponse) ProtoReflect() protoreflect.Message {
  771. mi := &file_volume_server_proto_msgTypes[17]
  772. if protoimpl.UnsafeEnabled && x != nil {
  773. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  774. if ms.LoadMessageInfo() == nil {
  775. ms.StoreMessageInfo(mi)
  776. }
  777. return ms
  778. }
  779. return mi.MessageOf(x)
  780. }
  781. // Deprecated: Use VolumeSyncStatusResponse.ProtoReflect.Descriptor instead.
  782. func (*VolumeSyncStatusResponse) Descriptor() ([]byte, []int) {
  783. return file_volume_server_proto_rawDescGZIP(), []int{17}
  784. }
  785. func (x *VolumeSyncStatusResponse) GetVolumeId() uint32 {
  786. if x != nil {
  787. return x.VolumeId
  788. }
  789. return 0
  790. }
  791. func (x *VolumeSyncStatusResponse) GetCollection() string {
  792. if x != nil {
  793. return x.Collection
  794. }
  795. return ""
  796. }
  797. func (x *VolumeSyncStatusResponse) GetReplication() string {
  798. if x != nil {
  799. return x.Replication
  800. }
  801. return ""
  802. }
  803. func (x *VolumeSyncStatusResponse) GetTtl() string {
  804. if x != nil {
  805. return x.Ttl
  806. }
  807. return ""
  808. }
  809. func (x *VolumeSyncStatusResponse) GetTailOffset() uint64 {
  810. if x != nil {
  811. return x.TailOffset
  812. }
  813. return 0
  814. }
  815. func (x *VolumeSyncStatusResponse) GetCompactRevision() uint32 {
  816. if x != nil {
  817. return x.CompactRevision
  818. }
  819. return 0
  820. }
  821. func (x *VolumeSyncStatusResponse) GetIdxFileSize() uint64 {
  822. if x != nil {
  823. return x.IdxFileSize
  824. }
  825. return 0
  826. }
  827. type VolumeIncrementalCopyRequest struct {
  828. state protoimpl.MessageState
  829. sizeCache protoimpl.SizeCache
  830. unknownFields protoimpl.UnknownFields
  831. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  832. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  833. }
  834. func (x *VolumeIncrementalCopyRequest) Reset() {
  835. *x = VolumeIncrementalCopyRequest{}
  836. if protoimpl.UnsafeEnabled {
  837. mi := &file_volume_server_proto_msgTypes[18]
  838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  839. ms.StoreMessageInfo(mi)
  840. }
  841. }
  842. func (x *VolumeIncrementalCopyRequest) String() string {
  843. return protoimpl.X.MessageStringOf(x)
  844. }
  845. func (*VolumeIncrementalCopyRequest) ProtoMessage() {}
  846. func (x *VolumeIncrementalCopyRequest) ProtoReflect() protoreflect.Message {
  847. mi := &file_volume_server_proto_msgTypes[18]
  848. if protoimpl.UnsafeEnabled && x != nil {
  849. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  850. if ms.LoadMessageInfo() == nil {
  851. ms.StoreMessageInfo(mi)
  852. }
  853. return ms
  854. }
  855. return mi.MessageOf(x)
  856. }
  857. // Deprecated: Use VolumeIncrementalCopyRequest.ProtoReflect.Descriptor instead.
  858. func (*VolumeIncrementalCopyRequest) Descriptor() ([]byte, []int) {
  859. return file_volume_server_proto_rawDescGZIP(), []int{18}
  860. }
  861. func (x *VolumeIncrementalCopyRequest) GetVolumeId() uint32 {
  862. if x != nil {
  863. return x.VolumeId
  864. }
  865. return 0
  866. }
  867. func (x *VolumeIncrementalCopyRequest) GetSinceNs() uint64 {
  868. if x != nil {
  869. return x.SinceNs
  870. }
  871. return 0
  872. }
  873. type VolumeIncrementalCopyResponse struct {
  874. state protoimpl.MessageState
  875. sizeCache protoimpl.SizeCache
  876. unknownFields protoimpl.UnknownFields
  877. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  878. }
  879. func (x *VolumeIncrementalCopyResponse) Reset() {
  880. *x = VolumeIncrementalCopyResponse{}
  881. if protoimpl.UnsafeEnabled {
  882. mi := &file_volume_server_proto_msgTypes[19]
  883. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  884. ms.StoreMessageInfo(mi)
  885. }
  886. }
  887. func (x *VolumeIncrementalCopyResponse) String() string {
  888. return protoimpl.X.MessageStringOf(x)
  889. }
  890. func (*VolumeIncrementalCopyResponse) ProtoMessage() {}
  891. func (x *VolumeIncrementalCopyResponse) ProtoReflect() protoreflect.Message {
  892. mi := &file_volume_server_proto_msgTypes[19]
  893. if protoimpl.UnsafeEnabled && x != nil {
  894. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  895. if ms.LoadMessageInfo() == nil {
  896. ms.StoreMessageInfo(mi)
  897. }
  898. return ms
  899. }
  900. return mi.MessageOf(x)
  901. }
  902. // Deprecated: Use VolumeIncrementalCopyResponse.ProtoReflect.Descriptor instead.
  903. func (*VolumeIncrementalCopyResponse) Descriptor() ([]byte, []int) {
  904. return file_volume_server_proto_rawDescGZIP(), []int{19}
  905. }
  906. func (x *VolumeIncrementalCopyResponse) GetFileContent() []byte {
  907. if x != nil {
  908. return x.FileContent
  909. }
  910. return nil
  911. }
  912. type VolumeMountRequest struct {
  913. state protoimpl.MessageState
  914. sizeCache protoimpl.SizeCache
  915. unknownFields protoimpl.UnknownFields
  916. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  917. }
  918. func (x *VolumeMountRequest) Reset() {
  919. *x = VolumeMountRequest{}
  920. if protoimpl.UnsafeEnabled {
  921. mi := &file_volume_server_proto_msgTypes[20]
  922. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  923. ms.StoreMessageInfo(mi)
  924. }
  925. }
  926. func (x *VolumeMountRequest) String() string {
  927. return protoimpl.X.MessageStringOf(x)
  928. }
  929. func (*VolumeMountRequest) ProtoMessage() {}
  930. func (x *VolumeMountRequest) ProtoReflect() protoreflect.Message {
  931. mi := &file_volume_server_proto_msgTypes[20]
  932. if protoimpl.UnsafeEnabled && x != nil {
  933. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  934. if ms.LoadMessageInfo() == nil {
  935. ms.StoreMessageInfo(mi)
  936. }
  937. return ms
  938. }
  939. return mi.MessageOf(x)
  940. }
  941. // Deprecated: Use VolumeMountRequest.ProtoReflect.Descriptor instead.
  942. func (*VolumeMountRequest) Descriptor() ([]byte, []int) {
  943. return file_volume_server_proto_rawDescGZIP(), []int{20}
  944. }
  945. func (x *VolumeMountRequest) GetVolumeId() uint32 {
  946. if x != nil {
  947. return x.VolumeId
  948. }
  949. return 0
  950. }
  951. type VolumeMountResponse struct {
  952. state protoimpl.MessageState
  953. sizeCache protoimpl.SizeCache
  954. unknownFields protoimpl.UnknownFields
  955. }
  956. func (x *VolumeMountResponse) Reset() {
  957. *x = VolumeMountResponse{}
  958. if protoimpl.UnsafeEnabled {
  959. mi := &file_volume_server_proto_msgTypes[21]
  960. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  961. ms.StoreMessageInfo(mi)
  962. }
  963. }
  964. func (x *VolumeMountResponse) String() string {
  965. return protoimpl.X.MessageStringOf(x)
  966. }
  967. func (*VolumeMountResponse) ProtoMessage() {}
  968. func (x *VolumeMountResponse) ProtoReflect() protoreflect.Message {
  969. mi := &file_volume_server_proto_msgTypes[21]
  970. if protoimpl.UnsafeEnabled && x != nil {
  971. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  972. if ms.LoadMessageInfo() == nil {
  973. ms.StoreMessageInfo(mi)
  974. }
  975. return ms
  976. }
  977. return mi.MessageOf(x)
  978. }
  979. // Deprecated: Use VolumeMountResponse.ProtoReflect.Descriptor instead.
  980. func (*VolumeMountResponse) Descriptor() ([]byte, []int) {
  981. return file_volume_server_proto_rawDescGZIP(), []int{21}
  982. }
  983. type VolumeUnmountRequest struct {
  984. state protoimpl.MessageState
  985. sizeCache protoimpl.SizeCache
  986. unknownFields protoimpl.UnknownFields
  987. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  988. }
  989. func (x *VolumeUnmountRequest) Reset() {
  990. *x = VolumeUnmountRequest{}
  991. if protoimpl.UnsafeEnabled {
  992. mi := &file_volume_server_proto_msgTypes[22]
  993. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  994. ms.StoreMessageInfo(mi)
  995. }
  996. }
  997. func (x *VolumeUnmountRequest) String() string {
  998. return protoimpl.X.MessageStringOf(x)
  999. }
  1000. func (*VolumeUnmountRequest) ProtoMessage() {}
  1001. func (x *VolumeUnmountRequest) ProtoReflect() protoreflect.Message {
  1002. mi := &file_volume_server_proto_msgTypes[22]
  1003. if protoimpl.UnsafeEnabled && x != nil {
  1004. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1005. if ms.LoadMessageInfo() == nil {
  1006. ms.StoreMessageInfo(mi)
  1007. }
  1008. return ms
  1009. }
  1010. return mi.MessageOf(x)
  1011. }
  1012. // Deprecated: Use VolumeUnmountRequest.ProtoReflect.Descriptor instead.
  1013. func (*VolumeUnmountRequest) Descriptor() ([]byte, []int) {
  1014. return file_volume_server_proto_rawDescGZIP(), []int{22}
  1015. }
  1016. func (x *VolumeUnmountRequest) GetVolumeId() uint32 {
  1017. if x != nil {
  1018. return x.VolumeId
  1019. }
  1020. return 0
  1021. }
  1022. type VolumeUnmountResponse struct {
  1023. state protoimpl.MessageState
  1024. sizeCache protoimpl.SizeCache
  1025. unknownFields protoimpl.UnknownFields
  1026. }
  1027. func (x *VolumeUnmountResponse) Reset() {
  1028. *x = VolumeUnmountResponse{}
  1029. if protoimpl.UnsafeEnabled {
  1030. mi := &file_volume_server_proto_msgTypes[23]
  1031. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1032. ms.StoreMessageInfo(mi)
  1033. }
  1034. }
  1035. func (x *VolumeUnmountResponse) String() string {
  1036. return protoimpl.X.MessageStringOf(x)
  1037. }
  1038. func (*VolumeUnmountResponse) ProtoMessage() {}
  1039. func (x *VolumeUnmountResponse) ProtoReflect() protoreflect.Message {
  1040. mi := &file_volume_server_proto_msgTypes[23]
  1041. if protoimpl.UnsafeEnabled && x != nil {
  1042. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1043. if ms.LoadMessageInfo() == nil {
  1044. ms.StoreMessageInfo(mi)
  1045. }
  1046. return ms
  1047. }
  1048. return mi.MessageOf(x)
  1049. }
  1050. // Deprecated: Use VolumeUnmountResponse.ProtoReflect.Descriptor instead.
  1051. func (*VolumeUnmountResponse) Descriptor() ([]byte, []int) {
  1052. return file_volume_server_proto_rawDescGZIP(), []int{23}
  1053. }
  1054. type VolumeDeleteRequest struct {
  1055. state protoimpl.MessageState
  1056. sizeCache protoimpl.SizeCache
  1057. unknownFields protoimpl.UnknownFields
  1058. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1059. }
  1060. func (x *VolumeDeleteRequest) Reset() {
  1061. *x = VolumeDeleteRequest{}
  1062. if protoimpl.UnsafeEnabled {
  1063. mi := &file_volume_server_proto_msgTypes[24]
  1064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1065. ms.StoreMessageInfo(mi)
  1066. }
  1067. }
  1068. func (x *VolumeDeleteRequest) String() string {
  1069. return protoimpl.X.MessageStringOf(x)
  1070. }
  1071. func (*VolumeDeleteRequest) ProtoMessage() {}
  1072. func (x *VolumeDeleteRequest) ProtoReflect() protoreflect.Message {
  1073. mi := &file_volume_server_proto_msgTypes[24]
  1074. if protoimpl.UnsafeEnabled && x != nil {
  1075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1076. if ms.LoadMessageInfo() == nil {
  1077. ms.StoreMessageInfo(mi)
  1078. }
  1079. return ms
  1080. }
  1081. return mi.MessageOf(x)
  1082. }
  1083. // Deprecated: Use VolumeDeleteRequest.ProtoReflect.Descriptor instead.
  1084. func (*VolumeDeleteRequest) Descriptor() ([]byte, []int) {
  1085. return file_volume_server_proto_rawDescGZIP(), []int{24}
  1086. }
  1087. func (x *VolumeDeleteRequest) GetVolumeId() uint32 {
  1088. if x != nil {
  1089. return x.VolumeId
  1090. }
  1091. return 0
  1092. }
  1093. type VolumeDeleteResponse struct {
  1094. state protoimpl.MessageState
  1095. sizeCache protoimpl.SizeCache
  1096. unknownFields protoimpl.UnknownFields
  1097. }
  1098. func (x *VolumeDeleteResponse) Reset() {
  1099. *x = VolumeDeleteResponse{}
  1100. if protoimpl.UnsafeEnabled {
  1101. mi := &file_volume_server_proto_msgTypes[25]
  1102. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1103. ms.StoreMessageInfo(mi)
  1104. }
  1105. }
  1106. func (x *VolumeDeleteResponse) String() string {
  1107. return protoimpl.X.MessageStringOf(x)
  1108. }
  1109. func (*VolumeDeleteResponse) ProtoMessage() {}
  1110. func (x *VolumeDeleteResponse) ProtoReflect() protoreflect.Message {
  1111. mi := &file_volume_server_proto_msgTypes[25]
  1112. if protoimpl.UnsafeEnabled && x != nil {
  1113. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1114. if ms.LoadMessageInfo() == nil {
  1115. ms.StoreMessageInfo(mi)
  1116. }
  1117. return ms
  1118. }
  1119. return mi.MessageOf(x)
  1120. }
  1121. // Deprecated: Use VolumeDeleteResponse.ProtoReflect.Descriptor instead.
  1122. func (*VolumeDeleteResponse) Descriptor() ([]byte, []int) {
  1123. return file_volume_server_proto_rawDescGZIP(), []int{25}
  1124. }
  1125. type VolumeMarkReadonlyRequest struct {
  1126. state protoimpl.MessageState
  1127. sizeCache protoimpl.SizeCache
  1128. unknownFields protoimpl.UnknownFields
  1129. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1130. }
  1131. func (x *VolumeMarkReadonlyRequest) Reset() {
  1132. *x = VolumeMarkReadonlyRequest{}
  1133. if protoimpl.UnsafeEnabled {
  1134. mi := &file_volume_server_proto_msgTypes[26]
  1135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1136. ms.StoreMessageInfo(mi)
  1137. }
  1138. }
  1139. func (x *VolumeMarkReadonlyRequest) String() string {
  1140. return protoimpl.X.MessageStringOf(x)
  1141. }
  1142. func (*VolumeMarkReadonlyRequest) ProtoMessage() {}
  1143. func (x *VolumeMarkReadonlyRequest) ProtoReflect() protoreflect.Message {
  1144. mi := &file_volume_server_proto_msgTypes[26]
  1145. if protoimpl.UnsafeEnabled && x != nil {
  1146. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1147. if ms.LoadMessageInfo() == nil {
  1148. ms.StoreMessageInfo(mi)
  1149. }
  1150. return ms
  1151. }
  1152. return mi.MessageOf(x)
  1153. }
  1154. // Deprecated: Use VolumeMarkReadonlyRequest.ProtoReflect.Descriptor instead.
  1155. func (*VolumeMarkReadonlyRequest) Descriptor() ([]byte, []int) {
  1156. return file_volume_server_proto_rawDescGZIP(), []int{26}
  1157. }
  1158. func (x *VolumeMarkReadonlyRequest) GetVolumeId() uint32 {
  1159. if x != nil {
  1160. return x.VolumeId
  1161. }
  1162. return 0
  1163. }
  1164. type VolumeMarkReadonlyResponse struct {
  1165. state protoimpl.MessageState
  1166. sizeCache protoimpl.SizeCache
  1167. unknownFields protoimpl.UnknownFields
  1168. }
  1169. func (x *VolumeMarkReadonlyResponse) Reset() {
  1170. *x = VolumeMarkReadonlyResponse{}
  1171. if protoimpl.UnsafeEnabled {
  1172. mi := &file_volume_server_proto_msgTypes[27]
  1173. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1174. ms.StoreMessageInfo(mi)
  1175. }
  1176. }
  1177. func (x *VolumeMarkReadonlyResponse) String() string {
  1178. return protoimpl.X.MessageStringOf(x)
  1179. }
  1180. func (*VolumeMarkReadonlyResponse) ProtoMessage() {}
  1181. func (x *VolumeMarkReadonlyResponse) ProtoReflect() protoreflect.Message {
  1182. mi := &file_volume_server_proto_msgTypes[27]
  1183. if protoimpl.UnsafeEnabled && x != nil {
  1184. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1185. if ms.LoadMessageInfo() == nil {
  1186. ms.StoreMessageInfo(mi)
  1187. }
  1188. return ms
  1189. }
  1190. return mi.MessageOf(x)
  1191. }
  1192. // Deprecated: Use VolumeMarkReadonlyResponse.ProtoReflect.Descriptor instead.
  1193. func (*VolumeMarkReadonlyResponse) Descriptor() ([]byte, []int) {
  1194. return file_volume_server_proto_rawDescGZIP(), []int{27}
  1195. }
  1196. type VolumeMarkWritableRequest struct {
  1197. state protoimpl.MessageState
  1198. sizeCache protoimpl.SizeCache
  1199. unknownFields protoimpl.UnknownFields
  1200. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1201. }
  1202. func (x *VolumeMarkWritableRequest) Reset() {
  1203. *x = VolumeMarkWritableRequest{}
  1204. if protoimpl.UnsafeEnabled {
  1205. mi := &file_volume_server_proto_msgTypes[28]
  1206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1207. ms.StoreMessageInfo(mi)
  1208. }
  1209. }
  1210. func (x *VolumeMarkWritableRequest) String() string {
  1211. return protoimpl.X.MessageStringOf(x)
  1212. }
  1213. func (*VolumeMarkWritableRequest) ProtoMessage() {}
  1214. func (x *VolumeMarkWritableRequest) ProtoReflect() protoreflect.Message {
  1215. mi := &file_volume_server_proto_msgTypes[28]
  1216. if protoimpl.UnsafeEnabled && x != nil {
  1217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1218. if ms.LoadMessageInfo() == nil {
  1219. ms.StoreMessageInfo(mi)
  1220. }
  1221. return ms
  1222. }
  1223. return mi.MessageOf(x)
  1224. }
  1225. // Deprecated: Use VolumeMarkWritableRequest.ProtoReflect.Descriptor instead.
  1226. func (*VolumeMarkWritableRequest) Descriptor() ([]byte, []int) {
  1227. return file_volume_server_proto_rawDescGZIP(), []int{28}
  1228. }
  1229. func (x *VolumeMarkWritableRequest) GetVolumeId() uint32 {
  1230. if x != nil {
  1231. return x.VolumeId
  1232. }
  1233. return 0
  1234. }
  1235. type VolumeMarkWritableResponse struct {
  1236. state protoimpl.MessageState
  1237. sizeCache protoimpl.SizeCache
  1238. unknownFields protoimpl.UnknownFields
  1239. }
  1240. func (x *VolumeMarkWritableResponse) Reset() {
  1241. *x = VolumeMarkWritableResponse{}
  1242. if protoimpl.UnsafeEnabled {
  1243. mi := &file_volume_server_proto_msgTypes[29]
  1244. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1245. ms.StoreMessageInfo(mi)
  1246. }
  1247. }
  1248. func (x *VolumeMarkWritableResponse) String() string {
  1249. return protoimpl.X.MessageStringOf(x)
  1250. }
  1251. func (*VolumeMarkWritableResponse) ProtoMessage() {}
  1252. func (x *VolumeMarkWritableResponse) ProtoReflect() protoreflect.Message {
  1253. mi := &file_volume_server_proto_msgTypes[29]
  1254. if protoimpl.UnsafeEnabled && x != nil {
  1255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1256. if ms.LoadMessageInfo() == nil {
  1257. ms.StoreMessageInfo(mi)
  1258. }
  1259. return ms
  1260. }
  1261. return mi.MessageOf(x)
  1262. }
  1263. // Deprecated: Use VolumeMarkWritableResponse.ProtoReflect.Descriptor instead.
  1264. func (*VolumeMarkWritableResponse) Descriptor() ([]byte, []int) {
  1265. return file_volume_server_proto_rawDescGZIP(), []int{29}
  1266. }
  1267. type VolumeConfigureRequest 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. Replication string `protobuf:"bytes,2,opt,name=replication,proto3" json:"replication,omitempty"`
  1273. }
  1274. func (x *VolumeConfigureRequest) Reset() {
  1275. *x = VolumeConfigureRequest{}
  1276. if protoimpl.UnsafeEnabled {
  1277. mi := &file_volume_server_proto_msgTypes[30]
  1278. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1279. ms.StoreMessageInfo(mi)
  1280. }
  1281. }
  1282. func (x *VolumeConfigureRequest) String() string {
  1283. return protoimpl.X.MessageStringOf(x)
  1284. }
  1285. func (*VolumeConfigureRequest) ProtoMessage() {}
  1286. func (x *VolumeConfigureRequest) ProtoReflect() protoreflect.Message {
  1287. mi := &file_volume_server_proto_msgTypes[30]
  1288. if protoimpl.UnsafeEnabled && x != nil {
  1289. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1290. if ms.LoadMessageInfo() == nil {
  1291. ms.StoreMessageInfo(mi)
  1292. }
  1293. return ms
  1294. }
  1295. return mi.MessageOf(x)
  1296. }
  1297. // Deprecated: Use VolumeConfigureRequest.ProtoReflect.Descriptor instead.
  1298. func (*VolumeConfigureRequest) Descriptor() ([]byte, []int) {
  1299. return file_volume_server_proto_rawDescGZIP(), []int{30}
  1300. }
  1301. func (x *VolumeConfigureRequest) GetVolumeId() uint32 {
  1302. if x != nil {
  1303. return x.VolumeId
  1304. }
  1305. return 0
  1306. }
  1307. func (x *VolumeConfigureRequest) GetReplication() string {
  1308. if x != nil {
  1309. return x.Replication
  1310. }
  1311. return ""
  1312. }
  1313. type VolumeConfigureResponse struct {
  1314. state protoimpl.MessageState
  1315. sizeCache protoimpl.SizeCache
  1316. unknownFields protoimpl.UnknownFields
  1317. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  1318. }
  1319. func (x *VolumeConfigureResponse) Reset() {
  1320. *x = VolumeConfigureResponse{}
  1321. if protoimpl.UnsafeEnabled {
  1322. mi := &file_volume_server_proto_msgTypes[31]
  1323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1324. ms.StoreMessageInfo(mi)
  1325. }
  1326. }
  1327. func (x *VolumeConfigureResponse) String() string {
  1328. return protoimpl.X.MessageStringOf(x)
  1329. }
  1330. func (*VolumeConfigureResponse) ProtoMessage() {}
  1331. func (x *VolumeConfigureResponse) ProtoReflect() protoreflect.Message {
  1332. mi := &file_volume_server_proto_msgTypes[31]
  1333. if protoimpl.UnsafeEnabled && x != nil {
  1334. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1335. if ms.LoadMessageInfo() == nil {
  1336. ms.StoreMessageInfo(mi)
  1337. }
  1338. return ms
  1339. }
  1340. return mi.MessageOf(x)
  1341. }
  1342. // Deprecated: Use VolumeConfigureResponse.ProtoReflect.Descriptor instead.
  1343. func (*VolumeConfigureResponse) Descriptor() ([]byte, []int) {
  1344. return file_volume_server_proto_rawDescGZIP(), []int{31}
  1345. }
  1346. func (x *VolumeConfigureResponse) GetError() string {
  1347. if x != nil {
  1348. return x.Error
  1349. }
  1350. return ""
  1351. }
  1352. type VolumeStatusRequest struct {
  1353. state protoimpl.MessageState
  1354. sizeCache protoimpl.SizeCache
  1355. unknownFields protoimpl.UnknownFields
  1356. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1357. }
  1358. func (x *VolumeStatusRequest) Reset() {
  1359. *x = VolumeStatusRequest{}
  1360. if protoimpl.UnsafeEnabled {
  1361. mi := &file_volume_server_proto_msgTypes[32]
  1362. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1363. ms.StoreMessageInfo(mi)
  1364. }
  1365. }
  1366. func (x *VolumeStatusRequest) String() string {
  1367. return protoimpl.X.MessageStringOf(x)
  1368. }
  1369. func (*VolumeStatusRequest) ProtoMessage() {}
  1370. func (x *VolumeStatusRequest) ProtoReflect() protoreflect.Message {
  1371. mi := &file_volume_server_proto_msgTypes[32]
  1372. if protoimpl.UnsafeEnabled && x != nil {
  1373. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1374. if ms.LoadMessageInfo() == nil {
  1375. ms.StoreMessageInfo(mi)
  1376. }
  1377. return ms
  1378. }
  1379. return mi.MessageOf(x)
  1380. }
  1381. // Deprecated: Use VolumeStatusRequest.ProtoReflect.Descriptor instead.
  1382. func (*VolumeStatusRequest) Descriptor() ([]byte, []int) {
  1383. return file_volume_server_proto_rawDescGZIP(), []int{32}
  1384. }
  1385. func (x *VolumeStatusRequest) GetVolumeId() uint32 {
  1386. if x != nil {
  1387. return x.VolumeId
  1388. }
  1389. return 0
  1390. }
  1391. type VolumeStatusResponse struct {
  1392. state protoimpl.MessageState
  1393. sizeCache protoimpl.SizeCache
  1394. unknownFields protoimpl.UnknownFields
  1395. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  1396. }
  1397. func (x *VolumeStatusResponse) Reset() {
  1398. *x = VolumeStatusResponse{}
  1399. if protoimpl.UnsafeEnabled {
  1400. mi := &file_volume_server_proto_msgTypes[33]
  1401. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1402. ms.StoreMessageInfo(mi)
  1403. }
  1404. }
  1405. func (x *VolumeStatusResponse) String() string {
  1406. return protoimpl.X.MessageStringOf(x)
  1407. }
  1408. func (*VolumeStatusResponse) ProtoMessage() {}
  1409. func (x *VolumeStatusResponse) ProtoReflect() protoreflect.Message {
  1410. mi := &file_volume_server_proto_msgTypes[33]
  1411. if protoimpl.UnsafeEnabled && x != nil {
  1412. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1413. if ms.LoadMessageInfo() == nil {
  1414. ms.StoreMessageInfo(mi)
  1415. }
  1416. return ms
  1417. }
  1418. return mi.MessageOf(x)
  1419. }
  1420. // Deprecated: Use VolumeStatusResponse.ProtoReflect.Descriptor instead.
  1421. func (*VolumeStatusResponse) Descriptor() ([]byte, []int) {
  1422. return file_volume_server_proto_rawDescGZIP(), []int{33}
  1423. }
  1424. func (x *VolumeStatusResponse) GetIsReadOnly() bool {
  1425. if x != nil {
  1426. return x.IsReadOnly
  1427. }
  1428. return false
  1429. }
  1430. type VolumeCopyRequest struct {
  1431. state protoimpl.MessageState
  1432. sizeCache protoimpl.SizeCache
  1433. unknownFields protoimpl.UnknownFields
  1434. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1435. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1436. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  1437. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1438. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  1439. DiskType string `protobuf:"bytes,6,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  1440. IoBytePerSecond int64 `protobuf:"varint,7,opt,name=io_byte_per_second,json=ioBytePerSecond,proto3" json:"io_byte_per_second,omitempty"`
  1441. }
  1442. func (x *VolumeCopyRequest) Reset() {
  1443. *x = VolumeCopyRequest{}
  1444. if protoimpl.UnsafeEnabled {
  1445. mi := &file_volume_server_proto_msgTypes[34]
  1446. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1447. ms.StoreMessageInfo(mi)
  1448. }
  1449. }
  1450. func (x *VolumeCopyRequest) String() string {
  1451. return protoimpl.X.MessageStringOf(x)
  1452. }
  1453. func (*VolumeCopyRequest) ProtoMessage() {}
  1454. func (x *VolumeCopyRequest) ProtoReflect() protoreflect.Message {
  1455. mi := &file_volume_server_proto_msgTypes[34]
  1456. if protoimpl.UnsafeEnabled && x != nil {
  1457. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1458. if ms.LoadMessageInfo() == nil {
  1459. ms.StoreMessageInfo(mi)
  1460. }
  1461. return ms
  1462. }
  1463. return mi.MessageOf(x)
  1464. }
  1465. // Deprecated: Use VolumeCopyRequest.ProtoReflect.Descriptor instead.
  1466. func (*VolumeCopyRequest) Descriptor() ([]byte, []int) {
  1467. return file_volume_server_proto_rawDescGZIP(), []int{34}
  1468. }
  1469. func (x *VolumeCopyRequest) GetVolumeId() uint32 {
  1470. if x != nil {
  1471. return x.VolumeId
  1472. }
  1473. return 0
  1474. }
  1475. func (x *VolumeCopyRequest) GetCollection() string {
  1476. if x != nil {
  1477. return x.Collection
  1478. }
  1479. return ""
  1480. }
  1481. func (x *VolumeCopyRequest) GetReplication() string {
  1482. if x != nil {
  1483. return x.Replication
  1484. }
  1485. return ""
  1486. }
  1487. func (x *VolumeCopyRequest) GetTtl() string {
  1488. if x != nil {
  1489. return x.Ttl
  1490. }
  1491. return ""
  1492. }
  1493. func (x *VolumeCopyRequest) GetSourceDataNode() string {
  1494. if x != nil {
  1495. return x.SourceDataNode
  1496. }
  1497. return ""
  1498. }
  1499. func (x *VolumeCopyRequest) GetDiskType() string {
  1500. if x != nil {
  1501. return x.DiskType
  1502. }
  1503. return ""
  1504. }
  1505. func (x *VolumeCopyRequest) GetIoBytePerSecond() int64 {
  1506. if x != nil {
  1507. return x.IoBytePerSecond
  1508. }
  1509. return 0
  1510. }
  1511. type VolumeCopyResponse struct {
  1512. state protoimpl.MessageState
  1513. sizeCache protoimpl.SizeCache
  1514. unknownFields protoimpl.UnknownFields
  1515. LastAppendAtNs uint64 `protobuf:"varint,1,opt,name=last_append_at_ns,json=lastAppendAtNs,proto3" json:"last_append_at_ns,omitempty"`
  1516. ProcessedBytes int64 `protobuf:"varint,2,opt,name=processed_bytes,json=processedBytes,proto3" json:"processed_bytes,omitempty"`
  1517. }
  1518. func (x *VolumeCopyResponse) Reset() {
  1519. *x = VolumeCopyResponse{}
  1520. if protoimpl.UnsafeEnabled {
  1521. mi := &file_volume_server_proto_msgTypes[35]
  1522. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1523. ms.StoreMessageInfo(mi)
  1524. }
  1525. }
  1526. func (x *VolumeCopyResponse) String() string {
  1527. return protoimpl.X.MessageStringOf(x)
  1528. }
  1529. func (*VolumeCopyResponse) ProtoMessage() {}
  1530. func (x *VolumeCopyResponse) ProtoReflect() protoreflect.Message {
  1531. mi := &file_volume_server_proto_msgTypes[35]
  1532. if protoimpl.UnsafeEnabled && x != nil {
  1533. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1534. if ms.LoadMessageInfo() == nil {
  1535. ms.StoreMessageInfo(mi)
  1536. }
  1537. return ms
  1538. }
  1539. return mi.MessageOf(x)
  1540. }
  1541. // Deprecated: Use VolumeCopyResponse.ProtoReflect.Descriptor instead.
  1542. func (*VolumeCopyResponse) Descriptor() ([]byte, []int) {
  1543. return file_volume_server_proto_rawDescGZIP(), []int{35}
  1544. }
  1545. func (x *VolumeCopyResponse) GetLastAppendAtNs() uint64 {
  1546. if x != nil {
  1547. return x.LastAppendAtNs
  1548. }
  1549. return 0
  1550. }
  1551. func (x *VolumeCopyResponse) GetProcessedBytes() int64 {
  1552. if x != nil {
  1553. return x.ProcessedBytes
  1554. }
  1555. return 0
  1556. }
  1557. type CopyFileRequest struct {
  1558. state protoimpl.MessageState
  1559. sizeCache protoimpl.SizeCache
  1560. unknownFields protoimpl.UnknownFields
  1561. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1562. Ext string `protobuf:"bytes,2,opt,name=ext,proto3" json:"ext,omitempty"`
  1563. CompactionRevision uint32 `protobuf:"varint,3,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  1564. StopOffset uint64 `protobuf:"varint,4,opt,name=stop_offset,json=stopOffset,proto3" json:"stop_offset,omitempty"`
  1565. Collection string `protobuf:"bytes,5,opt,name=collection,proto3" json:"collection,omitempty"`
  1566. IsEcVolume bool `protobuf:"varint,6,opt,name=is_ec_volume,json=isEcVolume,proto3" json:"is_ec_volume,omitempty"`
  1567. IgnoreSourceFileNotFound bool `protobuf:"varint,7,opt,name=ignore_source_file_not_found,json=ignoreSourceFileNotFound,proto3" json:"ignore_source_file_not_found,omitempty"`
  1568. }
  1569. func (x *CopyFileRequest) Reset() {
  1570. *x = CopyFileRequest{}
  1571. if protoimpl.UnsafeEnabled {
  1572. mi := &file_volume_server_proto_msgTypes[36]
  1573. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1574. ms.StoreMessageInfo(mi)
  1575. }
  1576. }
  1577. func (x *CopyFileRequest) String() string {
  1578. return protoimpl.X.MessageStringOf(x)
  1579. }
  1580. func (*CopyFileRequest) ProtoMessage() {}
  1581. func (x *CopyFileRequest) ProtoReflect() protoreflect.Message {
  1582. mi := &file_volume_server_proto_msgTypes[36]
  1583. if protoimpl.UnsafeEnabled && x != nil {
  1584. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1585. if ms.LoadMessageInfo() == nil {
  1586. ms.StoreMessageInfo(mi)
  1587. }
  1588. return ms
  1589. }
  1590. return mi.MessageOf(x)
  1591. }
  1592. // Deprecated: Use CopyFileRequest.ProtoReflect.Descriptor instead.
  1593. func (*CopyFileRequest) Descriptor() ([]byte, []int) {
  1594. return file_volume_server_proto_rawDescGZIP(), []int{36}
  1595. }
  1596. func (x *CopyFileRequest) GetVolumeId() uint32 {
  1597. if x != nil {
  1598. return x.VolumeId
  1599. }
  1600. return 0
  1601. }
  1602. func (x *CopyFileRequest) GetExt() string {
  1603. if x != nil {
  1604. return x.Ext
  1605. }
  1606. return ""
  1607. }
  1608. func (x *CopyFileRequest) GetCompactionRevision() uint32 {
  1609. if x != nil {
  1610. return x.CompactionRevision
  1611. }
  1612. return 0
  1613. }
  1614. func (x *CopyFileRequest) GetStopOffset() uint64 {
  1615. if x != nil {
  1616. return x.StopOffset
  1617. }
  1618. return 0
  1619. }
  1620. func (x *CopyFileRequest) GetCollection() string {
  1621. if x != nil {
  1622. return x.Collection
  1623. }
  1624. return ""
  1625. }
  1626. func (x *CopyFileRequest) GetIsEcVolume() bool {
  1627. if x != nil {
  1628. return x.IsEcVolume
  1629. }
  1630. return false
  1631. }
  1632. func (x *CopyFileRequest) GetIgnoreSourceFileNotFound() bool {
  1633. if x != nil {
  1634. return x.IgnoreSourceFileNotFound
  1635. }
  1636. return false
  1637. }
  1638. type CopyFileResponse struct {
  1639. state protoimpl.MessageState
  1640. sizeCache protoimpl.SizeCache
  1641. unknownFields protoimpl.UnknownFields
  1642. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  1643. ModifiedTsNs int64 `protobuf:"varint,2,opt,name=modified_ts_ns,json=modifiedTsNs,proto3" json:"modified_ts_ns,omitempty"`
  1644. }
  1645. func (x *CopyFileResponse) Reset() {
  1646. *x = CopyFileResponse{}
  1647. if protoimpl.UnsafeEnabled {
  1648. mi := &file_volume_server_proto_msgTypes[37]
  1649. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1650. ms.StoreMessageInfo(mi)
  1651. }
  1652. }
  1653. func (x *CopyFileResponse) String() string {
  1654. return protoimpl.X.MessageStringOf(x)
  1655. }
  1656. func (*CopyFileResponse) ProtoMessage() {}
  1657. func (x *CopyFileResponse) ProtoReflect() protoreflect.Message {
  1658. mi := &file_volume_server_proto_msgTypes[37]
  1659. if protoimpl.UnsafeEnabled && x != nil {
  1660. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1661. if ms.LoadMessageInfo() == nil {
  1662. ms.StoreMessageInfo(mi)
  1663. }
  1664. return ms
  1665. }
  1666. return mi.MessageOf(x)
  1667. }
  1668. // Deprecated: Use CopyFileResponse.ProtoReflect.Descriptor instead.
  1669. func (*CopyFileResponse) Descriptor() ([]byte, []int) {
  1670. return file_volume_server_proto_rawDescGZIP(), []int{37}
  1671. }
  1672. func (x *CopyFileResponse) GetFileContent() []byte {
  1673. if x != nil {
  1674. return x.FileContent
  1675. }
  1676. return nil
  1677. }
  1678. func (x *CopyFileResponse) GetModifiedTsNs() int64 {
  1679. if x != nil {
  1680. return x.ModifiedTsNs
  1681. }
  1682. return 0
  1683. }
  1684. type ReadNeedleBlobRequest struct {
  1685. state protoimpl.MessageState
  1686. sizeCache protoimpl.SizeCache
  1687. unknownFields protoimpl.UnknownFields
  1688. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1689. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"` // actual offset
  1690. Size int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  1691. }
  1692. func (x *ReadNeedleBlobRequest) Reset() {
  1693. *x = ReadNeedleBlobRequest{}
  1694. if protoimpl.UnsafeEnabled {
  1695. mi := &file_volume_server_proto_msgTypes[38]
  1696. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1697. ms.StoreMessageInfo(mi)
  1698. }
  1699. }
  1700. func (x *ReadNeedleBlobRequest) String() string {
  1701. return protoimpl.X.MessageStringOf(x)
  1702. }
  1703. func (*ReadNeedleBlobRequest) ProtoMessage() {}
  1704. func (x *ReadNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1705. mi := &file_volume_server_proto_msgTypes[38]
  1706. if protoimpl.UnsafeEnabled && x != nil {
  1707. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1708. if ms.LoadMessageInfo() == nil {
  1709. ms.StoreMessageInfo(mi)
  1710. }
  1711. return ms
  1712. }
  1713. return mi.MessageOf(x)
  1714. }
  1715. // Deprecated: Use ReadNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1716. func (*ReadNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1717. return file_volume_server_proto_rawDescGZIP(), []int{38}
  1718. }
  1719. func (x *ReadNeedleBlobRequest) GetVolumeId() uint32 {
  1720. if x != nil {
  1721. return x.VolumeId
  1722. }
  1723. return 0
  1724. }
  1725. func (x *ReadNeedleBlobRequest) GetOffset() int64 {
  1726. if x != nil {
  1727. return x.Offset
  1728. }
  1729. return 0
  1730. }
  1731. func (x *ReadNeedleBlobRequest) GetSize() int32 {
  1732. if x != nil {
  1733. return x.Size
  1734. }
  1735. return 0
  1736. }
  1737. type ReadNeedleBlobResponse struct {
  1738. state protoimpl.MessageState
  1739. sizeCache protoimpl.SizeCache
  1740. unknownFields protoimpl.UnknownFields
  1741. NeedleBlob []byte `protobuf:"bytes,1,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1742. }
  1743. func (x *ReadNeedleBlobResponse) Reset() {
  1744. *x = ReadNeedleBlobResponse{}
  1745. if protoimpl.UnsafeEnabled {
  1746. mi := &file_volume_server_proto_msgTypes[39]
  1747. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1748. ms.StoreMessageInfo(mi)
  1749. }
  1750. }
  1751. func (x *ReadNeedleBlobResponse) String() string {
  1752. return protoimpl.X.MessageStringOf(x)
  1753. }
  1754. func (*ReadNeedleBlobResponse) ProtoMessage() {}
  1755. func (x *ReadNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  1756. mi := &file_volume_server_proto_msgTypes[39]
  1757. if protoimpl.UnsafeEnabled && x != nil {
  1758. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1759. if ms.LoadMessageInfo() == nil {
  1760. ms.StoreMessageInfo(mi)
  1761. }
  1762. return ms
  1763. }
  1764. return mi.MessageOf(x)
  1765. }
  1766. // Deprecated: Use ReadNeedleBlobResponse.ProtoReflect.Descriptor instead.
  1767. func (*ReadNeedleBlobResponse) Descriptor() ([]byte, []int) {
  1768. return file_volume_server_proto_rawDescGZIP(), []int{39}
  1769. }
  1770. func (x *ReadNeedleBlobResponse) GetNeedleBlob() []byte {
  1771. if x != nil {
  1772. return x.NeedleBlob
  1773. }
  1774. return nil
  1775. }
  1776. type ReadNeedleMetaRequest struct {
  1777. state protoimpl.MessageState
  1778. sizeCache protoimpl.SizeCache
  1779. unknownFields protoimpl.UnknownFields
  1780. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1781. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1782. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"` // actual offset
  1783. Size int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  1784. }
  1785. func (x *ReadNeedleMetaRequest) Reset() {
  1786. *x = ReadNeedleMetaRequest{}
  1787. if protoimpl.UnsafeEnabled {
  1788. mi := &file_volume_server_proto_msgTypes[40]
  1789. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1790. ms.StoreMessageInfo(mi)
  1791. }
  1792. }
  1793. func (x *ReadNeedleMetaRequest) String() string {
  1794. return protoimpl.X.MessageStringOf(x)
  1795. }
  1796. func (*ReadNeedleMetaRequest) ProtoMessage() {}
  1797. func (x *ReadNeedleMetaRequest) ProtoReflect() protoreflect.Message {
  1798. mi := &file_volume_server_proto_msgTypes[40]
  1799. if protoimpl.UnsafeEnabled && x != nil {
  1800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1801. if ms.LoadMessageInfo() == nil {
  1802. ms.StoreMessageInfo(mi)
  1803. }
  1804. return ms
  1805. }
  1806. return mi.MessageOf(x)
  1807. }
  1808. // Deprecated: Use ReadNeedleMetaRequest.ProtoReflect.Descriptor instead.
  1809. func (*ReadNeedleMetaRequest) Descriptor() ([]byte, []int) {
  1810. return file_volume_server_proto_rawDescGZIP(), []int{40}
  1811. }
  1812. func (x *ReadNeedleMetaRequest) GetVolumeId() uint32 {
  1813. if x != nil {
  1814. return x.VolumeId
  1815. }
  1816. return 0
  1817. }
  1818. func (x *ReadNeedleMetaRequest) GetNeedleId() uint64 {
  1819. if x != nil {
  1820. return x.NeedleId
  1821. }
  1822. return 0
  1823. }
  1824. func (x *ReadNeedleMetaRequest) GetOffset() int64 {
  1825. if x != nil {
  1826. return x.Offset
  1827. }
  1828. return 0
  1829. }
  1830. func (x *ReadNeedleMetaRequest) GetSize() int32 {
  1831. if x != nil {
  1832. return x.Size
  1833. }
  1834. return 0
  1835. }
  1836. type ReadNeedleMetaResponse struct {
  1837. state protoimpl.MessageState
  1838. sizeCache protoimpl.SizeCache
  1839. unknownFields protoimpl.UnknownFields
  1840. Cookie uint32 `protobuf:"varint,1,opt,name=cookie,proto3" json:"cookie,omitempty"`
  1841. LastModified uint64 `protobuf:"varint,2,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  1842. Crc uint32 `protobuf:"varint,3,opt,name=crc,proto3" json:"crc,omitempty"`
  1843. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1844. AppendAtNs uint64 `protobuf:"varint,5,opt,name=append_at_ns,json=appendAtNs,proto3" json:"append_at_ns,omitempty"`
  1845. }
  1846. func (x *ReadNeedleMetaResponse) Reset() {
  1847. *x = ReadNeedleMetaResponse{}
  1848. if protoimpl.UnsafeEnabled {
  1849. mi := &file_volume_server_proto_msgTypes[41]
  1850. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1851. ms.StoreMessageInfo(mi)
  1852. }
  1853. }
  1854. func (x *ReadNeedleMetaResponse) String() string {
  1855. return protoimpl.X.MessageStringOf(x)
  1856. }
  1857. func (*ReadNeedleMetaResponse) ProtoMessage() {}
  1858. func (x *ReadNeedleMetaResponse) ProtoReflect() protoreflect.Message {
  1859. mi := &file_volume_server_proto_msgTypes[41]
  1860. if protoimpl.UnsafeEnabled && x != nil {
  1861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1862. if ms.LoadMessageInfo() == nil {
  1863. ms.StoreMessageInfo(mi)
  1864. }
  1865. return ms
  1866. }
  1867. return mi.MessageOf(x)
  1868. }
  1869. // Deprecated: Use ReadNeedleMetaResponse.ProtoReflect.Descriptor instead.
  1870. func (*ReadNeedleMetaResponse) Descriptor() ([]byte, []int) {
  1871. return file_volume_server_proto_rawDescGZIP(), []int{41}
  1872. }
  1873. func (x *ReadNeedleMetaResponse) GetCookie() uint32 {
  1874. if x != nil {
  1875. return x.Cookie
  1876. }
  1877. return 0
  1878. }
  1879. func (x *ReadNeedleMetaResponse) GetLastModified() uint64 {
  1880. if x != nil {
  1881. return x.LastModified
  1882. }
  1883. return 0
  1884. }
  1885. func (x *ReadNeedleMetaResponse) GetCrc() uint32 {
  1886. if x != nil {
  1887. return x.Crc
  1888. }
  1889. return 0
  1890. }
  1891. func (x *ReadNeedleMetaResponse) GetTtl() string {
  1892. if x != nil {
  1893. return x.Ttl
  1894. }
  1895. return ""
  1896. }
  1897. func (x *ReadNeedleMetaResponse) GetAppendAtNs() uint64 {
  1898. if x != nil {
  1899. return x.AppendAtNs
  1900. }
  1901. return 0
  1902. }
  1903. type WriteNeedleBlobRequest struct {
  1904. state protoimpl.MessageState
  1905. sizeCache protoimpl.SizeCache
  1906. unknownFields protoimpl.UnknownFields
  1907. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1908. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1909. Size int32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  1910. NeedleBlob []byte `protobuf:"bytes,4,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1911. }
  1912. func (x *WriteNeedleBlobRequest) Reset() {
  1913. *x = WriteNeedleBlobRequest{}
  1914. if protoimpl.UnsafeEnabled {
  1915. mi := &file_volume_server_proto_msgTypes[42]
  1916. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1917. ms.StoreMessageInfo(mi)
  1918. }
  1919. }
  1920. func (x *WriteNeedleBlobRequest) String() string {
  1921. return protoimpl.X.MessageStringOf(x)
  1922. }
  1923. func (*WriteNeedleBlobRequest) ProtoMessage() {}
  1924. func (x *WriteNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1925. mi := &file_volume_server_proto_msgTypes[42]
  1926. if protoimpl.UnsafeEnabled && x != nil {
  1927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1928. if ms.LoadMessageInfo() == nil {
  1929. ms.StoreMessageInfo(mi)
  1930. }
  1931. return ms
  1932. }
  1933. return mi.MessageOf(x)
  1934. }
  1935. // Deprecated: Use WriteNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1936. func (*WriteNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1937. return file_volume_server_proto_rawDescGZIP(), []int{42}
  1938. }
  1939. func (x *WriteNeedleBlobRequest) GetVolumeId() uint32 {
  1940. if x != nil {
  1941. return x.VolumeId
  1942. }
  1943. return 0
  1944. }
  1945. func (x *WriteNeedleBlobRequest) GetNeedleId() uint64 {
  1946. if x != nil {
  1947. return x.NeedleId
  1948. }
  1949. return 0
  1950. }
  1951. func (x *WriteNeedleBlobRequest) GetSize() int32 {
  1952. if x != nil {
  1953. return x.Size
  1954. }
  1955. return 0
  1956. }
  1957. func (x *WriteNeedleBlobRequest) GetNeedleBlob() []byte {
  1958. if x != nil {
  1959. return x.NeedleBlob
  1960. }
  1961. return nil
  1962. }
  1963. type WriteNeedleBlobResponse struct {
  1964. state protoimpl.MessageState
  1965. sizeCache protoimpl.SizeCache
  1966. unknownFields protoimpl.UnknownFields
  1967. }
  1968. func (x *WriteNeedleBlobResponse) Reset() {
  1969. *x = WriteNeedleBlobResponse{}
  1970. if protoimpl.UnsafeEnabled {
  1971. mi := &file_volume_server_proto_msgTypes[43]
  1972. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1973. ms.StoreMessageInfo(mi)
  1974. }
  1975. }
  1976. func (x *WriteNeedleBlobResponse) String() string {
  1977. return protoimpl.X.MessageStringOf(x)
  1978. }
  1979. func (*WriteNeedleBlobResponse) ProtoMessage() {}
  1980. func (x *WriteNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  1981. mi := &file_volume_server_proto_msgTypes[43]
  1982. if protoimpl.UnsafeEnabled && x != nil {
  1983. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1984. if ms.LoadMessageInfo() == nil {
  1985. ms.StoreMessageInfo(mi)
  1986. }
  1987. return ms
  1988. }
  1989. return mi.MessageOf(x)
  1990. }
  1991. // Deprecated: Use WriteNeedleBlobResponse.ProtoReflect.Descriptor instead.
  1992. func (*WriteNeedleBlobResponse) Descriptor() ([]byte, []int) {
  1993. return file_volume_server_proto_rawDescGZIP(), []int{43}
  1994. }
  1995. type ReadAllNeedlesRequest struct {
  1996. state protoimpl.MessageState
  1997. sizeCache protoimpl.SizeCache
  1998. unknownFields protoimpl.UnknownFields
  1999. VolumeIds []uint32 `protobuf:"varint,1,rep,packed,name=volume_ids,json=volumeIds,proto3" json:"volume_ids,omitempty"`
  2000. }
  2001. func (x *ReadAllNeedlesRequest) Reset() {
  2002. *x = ReadAllNeedlesRequest{}
  2003. if protoimpl.UnsafeEnabled {
  2004. mi := &file_volume_server_proto_msgTypes[44]
  2005. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2006. ms.StoreMessageInfo(mi)
  2007. }
  2008. }
  2009. func (x *ReadAllNeedlesRequest) String() string {
  2010. return protoimpl.X.MessageStringOf(x)
  2011. }
  2012. func (*ReadAllNeedlesRequest) ProtoMessage() {}
  2013. func (x *ReadAllNeedlesRequest) ProtoReflect() protoreflect.Message {
  2014. mi := &file_volume_server_proto_msgTypes[44]
  2015. if protoimpl.UnsafeEnabled && x != nil {
  2016. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2017. if ms.LoadMessageInfo() == nil {
  2018. ms.StoreMessageInfo(mi)
  2019. }
  2020. return ms
  2021. }
  2022. return mi.MessageOf(x)
  2023. }
  2024. // Deprecated: Use ReadAllNeedlesRequest.ProtoReflect.Descriptor instead.
  2025. func (*ReadAllNeedlesRequest) Descriptor() ([]byte, []int) {
  2026. return file_volume_server_proto_rawDescGZIP(), []int{44}
  2027. }
  2028. func (x *ReadAllNeedlesRequest) GetVolumeIds() []uint32 {
  2029. if x != nil {
  2030. return x.VolumeIds
  2031. }
  2032. return nil
  2033. }
  2034. type ReadAllNeedlesResponse struct {
  2035. state protoimpl.MessageState
  2036. sizeCache protoimpl.SizeCache
  2037. unknownFields protoimpl.UnknownFields
  2038. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2039. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  2040. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  2041. NeedleBlob []byte `protobuf:"bytes,5,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  2042. NeedleBlobCompressed bool `protobuf:"varint,6,opt,name=needle_blob_compressed,json=needleBlobCompressed,proto3" json:"needle_blob_compressed,omitempty"`
  2043. LastModified uint64 `protobuf:"varint,7,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  2044. Crc uint32 `protobuf:"varint,8,opt,name=crc,proto3" json:"crc,omitempty"`
  2045. Name []byte `protobuf:"bytes,9,opt,name=name,proto3" json:"name,omitempty"`
  2046. Mime []byte `protobuf:"bytes,10,opt,name=mime,proto3" json:"mime,omitempty"`
  2047. }
  2048. func (x *ReadAllNeedlesResponse) Reset() {
  2049. *x = ReadAllNeedlesResponse{}
  2050. if protoimpl.UnsafeEnabled {
  2051. mi := &file_volume_server_proto_msgTypes[45]
  2052. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2053. ms.StoreMessageInfo(mi)
  2054. }
  2055. }
  2056. func (x *ReadAllNeedlesResponse) String() string {
  2057. return protoimpl.X.MessageStringOf(x)
  2058. }
  2059. func (*ReadAllNeedlesResponse) ProtoMessage() {}
  2060. func (x *ReadAllNeedlesResponse) ProtoReflect() protoreflect.Message {
  2061. mi := &file_volume_server_proto_msgTypes[45]
  2062. if protoimpl.UnsafeEnabled && x != nil {
  2063. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2064. if ms.LoadMessageInfo() == nil {
  2065. ms.StoreMessageInfo(mi)
  2066. }
  2067. return ms
  2068. }
  2069. return mi.MessageOf(x)
  2070. }
  2071. // Deprecated: Use ReadAllNeedlesResponse.ProtoReflect.Descriptor instead.
  2072. func (*ReadAllNeedlesResponse) Descriptor() ([]byte, []int) {
  2073. return file_volume_server_proto_rawDescGZIP(), []int{45}
  2074. }
  2075. func (x *ReadAllNeedlesResponse) GetVolumeId() uint32 {
  2076. if x != nil {
  2077. return x.VolumeId
  2078. }
  2079. return 0
  2080. }
  2081. func (x *ReadAllNeedlesResponse) GetNeedleId() uint64 {
  2082. if x != nil {
  2083. return x.NeedleId
  2084. }
  2085. return 0
  2086. }
  2087. func (x *ReadAllNeedlesResponse) GetCookie() uint32 {
  2088. if x != nil {
  2089. return x.Cookie
  2090. }
  2091. return 0
  2092. }
  2093. func (x *ReadAllNeedlesResponse) GetNeedleBlob() []byte {
  2094. if x != nil {
  2095. return x.NeedleBlob
  2096. }
  2097. return nil
  2098. }
  2099. func (x *ReadAllNeedlesResponse) GetNeedleBlobCompressed() bool {
  2100. if x != nil {
  2101. return x.NeedleBlobCompressed
  2102. }
  2103. return false
  2104. }
  2105. func (x *ReadAllNeedlesResponse) GetLastModified() uint64 {
  2106. if x != nil {
  2107. return x.LastModified
  2108. }
  2109. return 0
  2110. }
  2111. func (x *ReadAllNeedlesResponse) GetCrc() uint32 {
  2112. if x != nil {
  2113. return x.Crc
  2114. }
  2115. return 0
  2116. }
  2117. func (x *ReadAllNeedlesResponse) GetName() []byte {
  2118. if x != nil {
  2119. return x.Name
  2120. }
  2121. return nil
  2122. }
  2123. func (x *ReadAllNeedlesResponse) GetMime() []byte {
  2124. if x != nil {
  2125. return x.Mime
  2126. }
  2127. return nil
  2128. }
  2129. type VolumeTailSenderRequest struct {
  2130. state protoimpl.MessageState
  2131. sizeCache protoimpl.SizeCache
  2132. unknownFields protoimpl.UnknownFields
  2133. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2134. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2135. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  2136. }
  2137. func (x *VolumeTailSenderRequest) Reset() {
  2138. *x = VolumeTailSenderRequest{}
  2139. if protoimpl.UnsafeEnabled {
  2140. mi := &file_volume_server_proto_msgTypes[46]
  2141. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2142. ms.StoreMessageInfo(mi)
  2143. }
  2144. }
  2145. func (x *VolumeTailSenderRequest) String() string {
  2146. return protoimpl.X.MessageStringOf(x)
  2147. }
  2148. func (*VolumeTailSenderRequest) ProtoMessage() {}
  2149. func (x *VolumeTailSenderRequest) ProtoReflect() protoreflect.Message {
  2150. mi := &file_volume_server_proto_msgTypes[46]
  2151. if protoimpl.UnsafeEnabled && x != nil {
  2152. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2153. if ms.LoadMessageInfo() == nil {
  2154. ms.StoreMessageInfo(mi)
  2155. }
  2156. return ms
  2157. }
  2158. return mi.MessageOf(x)
  2159. }
  2160. // Deprecated: Use VolumeTailSenderRequest.ProtoReflect.Descriptor instead.
  2161. func (*VolumeTailSenderRequest) Descriptor() ([]byte, []int) {
  2162. return file_volume_server_proto_rawDescGZIP(), []int{46}
  2163. }
  2164. func (x *VolumeTailSenderRequest) GetVolumeId() uint32 {
  2165. if x != nil {
  2166. return x.VolumeId
  2167. }
  2168. return 0
  2169. }
  2170. func (x *VolumeTailSenderRequest) GetSinceNs() uint64 {
  2171. if x != nil {
  2172. return x.SinceNs
  2173. }
  2174. return 0
  2175. }
  2176. func (x *VolumeTailSenderRequest) GetIdleTimeoutSeconds() uint32 {
  2177. if x != nil {
  2178. return x.IdleTimeoutSeconds
  2179. }
  2180. return 0
  2181. }
  2182. type VolumeTailSenderResponse struct {
  2183. state protoimpl.MessageState
  2184. sizeCache protoimpl.SizeCache
  2185. unknownFields protoimpl.UnknownFields
  2186. NeedleHeader []byte `protobuf:"bytes,1,opt,name=needle_header,json=needleHeader,proto3" json:"needle_header,omitempty"`
  2187. NeedleBody []byte `protobuf:"bytes,2,opt,name=needle_body,json=needleBody,proto3" json:"needle_body,omitempty"`
  2188. IsLastChunk bool `protobuf:"varint,3,opt,name=is_last_chunk,json=isLastChunk,proto3" json:"is_last_chunk,omitempty"`
  2189. }
  2190. func (x *VolumeTailSenderResponse) Reset() {
  2191. *x = VolumeTailSenderResponse{}
  2192. if protoimpl.UnsafeEnabled {
  2193. mi := &file_volume_server_proto_msgTypes[47]
  2194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2195. ms.StoreMessageInfo(mi)
  2196. }
  2197. }
  2198. func (x *VolumeTailSenderResponse) String() string {
  2199. return protoimpl.X.MessageStringOf(x)
  2200. }
  2201. func (*VolumeTailSenderResponse) ProtoMessage() {}
  2202. func (x *VolumeTailSenderResponse) ProtoReflect() protoreflect.Message {
  2203. mi := &file_volume_server_proto_msgTypes[47]
  2204. if protoimpl.UnsafeEnabled && x != nil {
  2205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2206. if ms.LoadMessageInfo() == nil {
  2207. ms.StoreMessageInfo(mi)
  2208. }
  2209. return ms
  2210. }
  2211. return mi.MessageOf(x)
  2212. }
  2213. // Deprecated: Use VolumeTailSenderResponse.ProtoReflect.Descriptor instead.
  2214. func (*VolumeTailSenderResponse) Descriptor() ([]byte, []int) {
  2215. return file_volume_server_proto_rawDescGZIP(), []int{47}
  2216. }
  2217. func (x *VolumeTailSenderResponse) GetNeedleHeader() []byte {
  2218. if x != nil {
  2219. return x.NeedleHeader
  2220. }
  2221. return nil
  2222. }
  2223. func (x *VolumeTailSenderResponse) GetNeedleBody() []byte {
  2224. if x != nil {
  2225. return x.NeedleBody
  2226. }
  2227. return nil
  2228. }
  2229. func (x *VolumeTailSenderResponse) GetIsLastChunk() bool {
  2230. if x != nil {
  2231. return x.IsLastChunk
  2232. }
  2233. return false
  2234. }
  2235. type VolumeTailReceiverRequest struct {
  2236. state protoimpl.MessageState
  2237. sizeCache protoimpl.SizeCache
  2238. unknownFields protoimpl.UnknownFields
  2239. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2240. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2241. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  2242. SourceVolumeServer string `protobuf:"bytes,4,opt,name=source_volume_server,json=sourceVolumeServer,proto3" json:"source_volume_server,omitempty"`
  2243. }
  2244. func (x *VolumeTailReceiverRequest) Reset() {
  2245. *x = VolumeTailReceiverRequest{}
  2246. if protoimpl.UnsafeEnabled {
  2247. mi := &file_volume_server_proto_msgTypes[48]
  2248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2249. ms.StoreMessageInfo(mi)
  2250. }
  2251. }
  2252. func (x *VolumeTailReceiverRequest) String() string {
  2253. return protoimpl.X.MessageStringOf(x)
  2254. }
  2255. func (*VolumeTailReceiverRequest) ProtoMessage() {}
  2256. func (x *VolumeTailReceiverRequest) ProtoReflect() protoreflect.Message {
  2257. mi := &file_volume_server_proto_msgTypes[48]
  2258. if protoimpl.UnsafeEnabled && x != nil {
  2259. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2260. if ms.LoadMessageInfo() == nil {
  2261. ms.StoreMessageInfo(mi)
  2262. }
  2263. return ms
  2264. }
  2265. return mi.MessageOf(x)
  2266. }
  2267. // Deprecated: Use VolumeTailReceiverRequest.ProtoReflect.Descriptor instead.
  2268. func (*VolumeTailReceiverRequest) Descriptor() ([]byte, []int) {
  2269. return file_volume_server_proto_rawDescGZIP(), []int{48}
  2270. }
  2271. func (x *VolumeTailReceiverRequest) GetVolumeId() uint32 {
  2272. if x != nil {
  2273. return x.VolumeId
  2274. }
  2275. return 0
  2276. }
  2277. func (x *VolumeTailReceiverRequest) GetSinceNs() uint64 {
  2278. if x != nil {
  2279. return x.SinceNs
  2280. }
  2281. return 0
  2282. }
  2283. func (x *VolumeTailReceiverRequest) GetIdleTimeoutSeconds() uint32 {
  2284. if x != nil {
  2285. return x.IdleTimeoutSeconds
  2286. }
  2287. return 0
  2288. }
  2289. func (x *VolumeTailReceiverRequest) GetSourceVolumeServer() string {
  2290. if x != nil {
  2291. return x.SourceVolumeServer
  2292. }
  2293. return ""
  2294. }
  2295. type VolumeTailReceiverResponse struct {
  2296. state protoimpl.MessageState
  2297. sizeCache protoimpl.SizeCache
  2298. unknownFields protoimpl.UnknownFields
  2299. }
  2300. func (x *VolumeTailReceiverResponse) Reset() {
  2301. *x = VolumeTailReceiverResponse{}
  2302. if protoimpl.UnsafeEnabled {
  2303. mi := &file_volume_server_proto_msgTypes[49]
  2304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2305. ms.StoreMessageInfo(mi)
  2306. }
  2307. }
  2308. func (x *VolumeTailReceiverResponse) String() string {
  2309. return protoimpl.X.MessageStringOf(x)
  2310. }
  2311. func (*VolumeTailReceiverResponse) ProtoMessage() {}
  2312. func (x *VolumeTailReceiverResponse) ProtoReflect() protoreflect.Message {
  2313. mi := &file_volume_server_proto_msgTypes[49]
  2314. if protoimpl.UnsafeEnabled && x != nil {
  2315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2316. if ms.LoadMessageInfo() == nil {
  2317. ms.StoreMessageInfo(mi)
  2318. }
  2319. return ms
  2320. }
  2321. return mi.MessageOf(x)
  2322. }
  2323. // Deprecated: Use VolumeTailReceiverResponse.ProtoReflect.Descriptor instead.
  2324. func (*VolumeTailReceiverResponse) Descriptor() ([]byte, []int) {
  2325. return file_volume_server_proto_rawDescGZIP(), []int{49}
  2326. }
  2327. type VolumeEcShardsGenerateRequest struct {
  2328. state protoimpl.MessageState
  2329. sizeCache protoimpl.SizeCache
  2330. unknownFields protoimpl.UnknownFields
  2331. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2332. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2333. }
  2334. func (x *VolumeEcShardsGenerateRequest) Reset() {
  2335. *x = VolumeEcShardsGenerateRequest{}
  2336. if protoimpl.UnsafeEnabled {
  2337. mi := &file_volume_server_proto_msgTypes[50]
  2338. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2339. ms.StoreMessageInfo(mi)
  2340. }
  2341. }
  2342. func (x *VolumeEcShardsGenerateRequest) String() string {
  2343. return protoimpl.X.MessageStringOf(x)
  2344. }
  2345. func (*VolumeEcShardsGenerateRequest) ProtoMessage() {}
  2346. func (x *VolumeEcShardsGenerateRequest) ProtoReflect() protoreflect.Message {
  2347. mi := &file_volume_server_proto_msgTypes[50]
  2348. if protoimpl.UnsafeEnabled && x != nil {
  2349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2350. if ms.LoadMessageInfo() == nil {
  2351. ms.StoreMessageInfo(mi)
  2352. }
  2353. return ms
  2354. }
  2355. return mi.MessageOf(x)
  2356. }
  2357. // Deprecated: Use VolumeEcShardsGenerateRequest.ProtoReflect.Descriptor instead.
  2358. func (*VolumeEcShardsGenerateRequest) Descriptor() ([]byte, []int) {
  2359. return file_volume_server_proto_rawDescGZIP(), []int{50}
  2360. }
  2361. func (x *VolumeEcShardsGenerateRequest) GetVolumeId() uint32 {
  2362. if x != nil {
  2363. return x.VolumeId
  2364. }
  2365. return 0
  2366. }
  2367. func (x *VolumeEcShardsGenerateRequest) GetCollection() string {
  2368. if x != nil {
  2369. return x.Collection
  2370. }
  2371. return ""
  2372. }
  2373. type VolumeEcShardsGenerateResponse struct {
  2374. state protoimpl.MessageState
  2375. sizeCache protoimpl.SizeCache
  2376. unknownFields protoimpl.UnknownFields
  2377. }
  2378. func (x *VolumeEcShardsGenerateResponse) Reset() {
  2379. *x = VolumeEcShardsGenerateResponse{}
  2380. if protoimpl.UnsafeEnabled {
  2381. mi := &file_volume_server_proto_msgTypes[51]
  2382. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2383. ms.StoreMessageInfo(mi)
  2384. }
  2385. }
  2386. func (x *VolumeEcShardsGenerateResponse) String() string {
  2387. return protoimpl.X.MessageStringOf(x)
  2388. }
  2389. func (*VolumeEcShardsGenerateResponse) ProtoMessage() {}
  2390. func (x *VolumeEcShardsGenerateResponse) ProtoReflect() protoreflect.Message {
  2391. mi := &file_volume_server_proto_msgTypes[51]
  2392. if protoimpl.UnsafeEnabled && x != nil {
  2393. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2394. if ms.LoadMessageInfo() == nil {
  2395. ms.StoreMessageInfo(mi)
  2396. }
  2397. return ms
  2398. }
  2399. return mi.MessageOf(x)
  2400. }
  2401. // Deprecated: Use VolumeEcShardsGenerateResponse.ProtoReflect.Descriptor instead.
  2402. func (*VolumeEcShardsGenerateResponse) Descriptor() ([]byte, []int) {
  2403. return file_volume_server_proto_rawDescGZIP(), []int{51}
  2404. }
  2405. type VolumeEcShardsRebuildRequest struct {
  2406. state protoimpl.MessageState
  2407. sizeCache protoimpl.SizeCache
  2408. unknownFields protoimpl.UnknownFields
  2409. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2410. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2411. }
  2412. func (x *VolumeEcShardsRebuildRequest) Reset() {
  2413. *x = VolumeEcShardsRebuildRequest{}
  2414. if protoimpl.UnsafeEnabled {
  2415. mi := &file_volume_server_proto_msgTypes[52]
  2416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2417. ms.StoreMessageInfo(mi)
  2418. }
  2419. }
  2420. func (x *VolumeEcShardsRebuildRequest) String() string {
  2421. return protoimpl.X.MessageStringOf(x)
  2422. }
  2423. func (*VolumeEcShardsRebuildRequest) ProtoMessage() {}
  2424. func (x *VolumeEcShardsRebuildRequest) ProtoReflect() protoreflect.Message {
  2425. mi := &file_volume_server_proto_msgTypes[52]
  2426. if protoimpl.UnsafeEnabled && x != nil {
  2427. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2428. if ms.LoadMessageInfo() == nil {
  2429. ms.StoreMessageInfo(mi)
  2430. }
  2431. return ms
  2432. }
  2433. return mi.MessageOf(x)
  2434. }
  2435. // Deprecated: Use VolumeEcShardsRebuildRequest.ProtoReflect.Descriptor instead.
  2436. func (*VolumeEcShardsRebuildRequest) Descriptor() ([]byte, []int) {
  2437. return file_volume_server_proto_rawDescGZIP(), []int{52}
  2438. }
  2439. func (x *VolumeEcShardsRebuildRequest) GetVolumeId() uint32 {
  2440. if x != nil {
  2441. return x.VolumeId
  2442. }
  2443. return 0
  2444. }
  2445. func (x *VolumeEcShardsRebuildRequest) GetCollection() string {
  2446. if x != nil {
  2447. return x.Collection
  2448. }
  2449. return ""
  2450. }
  2451. type VolumeEcShardsRebuildResponse struct {
  2452. state protoimpl.MessageState
  2453. sizeCache protoimpl.SizeCache
  2454. unknownFields protoimpl.UnknownFields
  2455. RebuiltShardIds []uint32 `protobuf:"varint,1,rep,packed,name=rebuilt_shard_ids,json=rebuiltShardIds,proto3" json:"rebuilt_shard_ids,omitempty"`
  2456. }
  2457. func (x *VolumeEcShardsRebuildResponse) Reset() {
  2458. *x = VolumeEcShardsRebuildResponse{}
  2459. if protoimpl.UnsafeEnabled {
  2460. mi := &file_volume_server_proto_msgTypes[53]
  2461. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2462. ms.StoreMessageInfo(mi)
  2463. }
  2464. }
  2465. func (x *VolumeEcShardsRebuildResponse) String() string {
  2466. return protoimpl.X.MessageStringOf(x)
  2467. }
  2468. func (*VolumeEcShardsRebuildResponse) ProtoMessage() {}
  2469. func (x *VolumeEcShardsRebuildResponse) ProtoReflect() protoreflect.Message {
  2470. mi := &file_volume_server_proto_msgTypes[53]
  2471. if protoimpl.UnsafeEnabled && x != nil {
  2472. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2473. if ms.LoadMessageInfo() == nil {
  2474. ms.StoreMessageInfo(mi)
  2475. }
  2476. return ms
  2477. }
  2478. return mi.MessageOf(x)
  2479. }
  2480. // Deprecated: Use VolumeEcShardsRebuildResponse.ProtoReflect.Descriptor instead.
  2481. func (*VolumeEcShardsRebuildResponse) Descriptor() ([]byte, []int) {
  2482. return file_volume_server_proto_rawDescGZIP(), []int{53}
  2483. }
  2484. func (x *VolumeEcShardsRebuildResponse) GetRebuiltShardIds() []uint32 {
  2485. if x != nil {
  2486. return x.RebuiltShardIds
  2487. }
  2488. return nil
  2489. }
  2490. type VolumeEcShardsCopyRequest struct {
  2491. state protoimpl.MessageState
  2492. sizeCache protoimpl.SizeCache
  2493. unknownFields protoimpl.UnknownFields
  2494. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2495. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2496. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2497. CopyEcxFile bool `protobuf:"varint,4,opt,name=copy_ecx_file,json=copyEcxFile,proto3" json:"copy_ecx_file,omitempty"`
  2498. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  2499. CopyEcjFile bool `protobuf:"varint,6,opt,name=copy_ecj_file,json=copyEcjFile,proto3" json:"copy_ecj_file,omitempty"`
  2500. CopyVifFile bool `protobuf:"varint,7,opt,name=copy_vif_file,json=copyVifFile,proto3" json:"copy_vif_file,omitempty"`
  2501. }
  2502. func (x *VolumeEcShardsCopyRequest) Reset() {
  2503. *x = VolumeEcShardsCopyRequest{}
  2504. if protoimpl.UnsafeEnabled {
  2505. mi := &file_volume_server_proto_msgTypes[54]
  2506. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2507. ms.StoreMessageInfo(mi)
  2508. }
  2509. }
  2510. func (x *VolumeEcShardsCopyRequest) String() string {
  2511. return protoimpl.X.MessageStringOf(x)
  2512. }
  2513. func (*VolumeEcShardsCopyRequest) ProtoMessage() {}
  2514. func (x *VolumeEcShardsCopyRequest) ProtoReflect() protoreflect.Message {
  2515. mi := &file_volume_server_proto_msgTypes[54]
  2516. if protoimpl.UnsafeEnabled && x != nil {
  2517. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2518. if ms.LoadMessageInfo() == nil {
  2519. ms.StoreMessageInfo(mi)
  2520. }
  2521. return ms
  2522. }
  2523. return mi.MessageOf(x)
  2524. }
  2525. // Deprecated: Use VolumeEcShardsCopyRequest.ProtoReflect.Descriptor instead.
  2526. func (*VolumeEcShardsCopyRequest) Descriptor() ([]byte, []int) {
  2527. return file_volume_server_proto_rawDescGZIP(), []int{54}
  2528. }
  2529. func (x *VolumeEcShardsCopyRequest) GetVolumeId() uint32 {
  2530. if x != nil {
  2531. return x.VolumeId
  2532. }
  2533. return 0
  2534. }
  2535. func (x *VolumeEcShardsCopyRequest) GetCollection() string {
  2536. if x != nil {
  2537. return x.Collection
  2538. }
  2539. return ""
  2540. }
  2541. func (x *VolumeEcShardsCopyRequest) GetShardIds() []uint32 {
  2542. if x != nil {
  2543. return x.ShardIds
  2544. }
  2545. return nil
  2546. }
  2547. func (x *VolumeEcShardsCopyRequest) GetCopyEcxFile() bool {
  2548. if x != nil {
  2549. return x.CopyEcxFile
  2550. }
  2551. return false
  2552. }
  2553. func (x *VolumeEcShardsCopyRequest) GetSourceDataNode() string {
  2554. if x != nil {
  2555. return x.SourceDataNode
  2556. }
  2557. return ""
  2558. }
  2559. func (x *VolumeEcShardsCopyRequest) GetCopyEcjFile() bool {
  2560. if x != nil {
  2561. return x.CopyEcjFile
  2562. }
  2563. return false
  2564. }
  2565. func (x *VolumeEcShardsCopyRequest) GetCopyVifFile() bool {
  2566. if x != nil {
  2567. return x.CopyVifFile
  2568. }
  2569. return false
  2570. }
  2571. type VolumeEcShardsCopyResponse struct {
  2572. state protoimpl.MessageState
  2573. sizeCache protoimpl.SizeCache
  2574. unknownFields protoimpl.UnknownFields
  2575. }
  2576. func (x *VolumeEcShardsCopyResponse) Reset() {
  2577. *x = VolumeEcShardsCopyResponse{}
  2578. if protoimpl.UnsafeEnabled {
  2579. mi := &file_volume_server_proto_msgTypes[55]
  2580. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2581. ms.StoreMessageInfo(mi)
  2582. }
  2583. }
  2584. func (x *VolumeEcShardsCopyResponse) String() string {
  2585. return protoimpl.X.MessageStringOf(x)
  2586. }
  2587. func (*VolumeEcShardsCopyResponse) ProtoMessage() {}
  2588. func (x *VolumeEcShardsCopyResponse) ProtoReflect() protoreflect.Message {
  2589. mi := &file_volume_server_proto_msgTypes[55]
  2590. if protoimpl.UnsafeEnabled && x != nil {
  2591. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2592. if ms.LoadMessageInfo() == nil {
  2593. ms.StoreMessageInfo(mi)
  2594. }
  2595. return ms
  2596. }
  2597. return mi.MessageOf(x)
  2598. }
  2599. // Deprecated: Use VolumeEcShardsCopyResponse.ProtoReflect.Descriptor instead.
  2600. func (*VolumeEcShardsCopyResponse) Descriptor() ([]byte, []int) {
  2601. return file_volume_server_proto_rawDescGZIP(), []int{55}
  2602. }
  2603. type VolumeEcShardsDeleteRequest struct {
  2604. state protoimpl.MessageState
  2605. sizeCache protoimpl.SizeCache
  2606. unknownFields protoimpl.UnknownFields
  2607. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2608. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2609. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2610. }
  2611. func (x *VolumeEcShardsDeleteRequest) Reset() {
  2612. *x = VolumeEcShardsDeleteRequest{}
  2613. if protoimpl.UnsafeEnabled {
  2614. mi := &file_volume_server_proto_msgTypes[56]
  2615. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2616. ms.StoreMessageInfo(mi)
  2617. }
  2618. }
  2619. func (x *VolumeEcShardsDeleteRequest) String() string {
  2620. return protoimpl.X.MessageStringOf(x)
  2621. }
  2622. func (*VolumeEcShardsDeleteRequest) ProtoMessage() {}
  2623. func (x *VolumeEcShardsDeleteRequest) ProtoReflect() protoreflect.Message {
  2624. mi := &file_volume_server_proto_msgTypes[56]
  2625. if protoimpl.UnsafeEnabled && x != nil {
  2626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2627. if ms.LoadMessageInfo() == nil {
  2628. ms.StoreMessageInfo(mi)
  2629. }
  2630. return ms
  2631. }
  2632. return mi.MessageOf(x)
  2633. }
  2634. // Deprecated: Use VolumeEcShardsDeleteRequest.ProtoReflect.Descriptor instead.
  2635. func (*VolumeEcShardsDeleteRequest) Descriptor() ([]byte, []int) {
  2636. return file_volume_server_proto_rawDescGZIP(), []int{56}
  2637. }
  2638. func (x *VolumeEcShardsDeleteRequest) GetVolumeId() uint32 {
  2639. if x != nil {
  2640. return x.VolumeId
  2641. }
  2642. return 0
  2643. }
  2644. func (x *VolumeEcShardsDeleteRequest) GetCollection() string {
  2645. if x != nil {
  2646. return x.Collection
  2647. }
  2648. return ""
  2649. }
  2650. func (x *VolumeEcShardsDeleteRequest) GetShardIds() []uint32 {
  2651. if x != nil {
  2652. return x.ShardIds
  2653. }
  2654. return nil
  2655. }
  2656. type VolumeEcShardsDeleteResponse struct {
  2657. state protoimpl.MessageState
  2658. sizeCache protoimpl.SizeCache
  2659. unknownFields protoimpl.UnknownFields
  2660. }
  2661. func (x *VolumeEcShardsDeleteResponse) Reset() {
  2662. *x = VolumeEcShardsDeleteResponse{}
  2663. if protoimpl.UnsafeEnabled {
  2664. mi := &file_volume_server_proto_msgTypes[57]
  2665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2666. ms.StoreMessageInfo(mi)
  2667. }
  2668. }
  2669. func (x *VolumeEcShardsDeleteResponse) String() string {
  2670. return protoimpl.X.MessageStringOf(x)
  2671. }
  2672. func (*VolumeEcShardsDeleteResponse) ProtoMessage() {}
  2673. func (x *VolumeEcShardsDeleteResponse) ProtoReflect() protoreflect.Message {
  2674. mi := &file_volume_server_proto_msgTypes[57]
  2675. if protoimpl.UnsafeEnabled && x != nil {
  2676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2677. if ms.LoadMessageInfo() == nil {
  2678. ms.StoreMessageInfo(mi)
  2679. }
  2680. return ms
  2681. }
  2682. return mi.MessageOf(x)
  2683. }
  2684. // Deprecated: Use VolumeEcShardsDeleteResponse.ProtoReflect.Descriptor instead.
  2685. func (*VolumeEcShardsDeleteResponse) Descriptor() ([]byte, []int) {
  2686. return file_volume_server_proto_rawDescGZIP(), []int{57}
  2687. }
  2688. type VolumeEcShardsMountRequest struct {
  2689. state protoimpl.MessageState
  2690. sizeCache protoimpl.SizeCache
  2691. unknownFields protoimpl.UnknownFields
  2692. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2693. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2694. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2695. }
  2696. func (x *VolumeEcShardsMountRequest) Reset() {
  2697. *x = VolumeEcShardsMountRequest{}
  2698. if protoimpl.UnsafeEnabled {
  2699. mi := &file_volume_server_proto_msgTypes[58]
  2700. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2701. ms.StoreMessageInfo(mi)
  2702. }
  2703. }
  2704. func (x *VolumeEcShardsMountRequest) String() string {
  2705. return protoimpl.X.MessageStringOf(x)
  2706. }
  2707. func (*VolumeEcShardsMountRequest) ProtoMessage() {}
  2708. func (x *VolumeEcShardsMountRequest) ProtoReflect() protoreflect.Message {
  2709. mi := &file_volume_server_proto_msgTypes[58]
  2710. if protoimpl.UnsafeEnabled && x != nil {
  2711. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2712. if ms.LoadMessageInfo() == nil {
  2713. ms.StoreMessageInfo(mi)
  2714. }
  2715. return ms
  2716. }
  2717. return mi.MessageOf(x)
  2718. }
  2719. // Deprecated: Use VolumeEcShardsMountRequest.ProtoReflect.Descriptor instead.
  2720. func (*VolumeEcShardsMountRequest) Descriptor() ([]byte, []int) {
  2721. return file_volume_server_proto_rawDescGZIP(), []int{58}
  2722. }
  2723. func (x *VolumeEcShardsMountRequest) GetVolumeId() uint32 {
  2724. if x != nil {
  2725. return x.VolumeId
  2726. }
  2727. return 0
  2728. }
  2729. func (x *VolumeEcShardsMountRequest) GetCollection() string {
  2730. if x != nil {
  2731. return x.Collection
  2732. }
  2733. return ""
  2734. }
  2735. func (x *VolumeEcShardsMountRequest) GetShardIds() []uint32 {
  2736. if x != nil {
  2737. return x.ShardIds
  2738. }
  2739. return nil
  2740. }
  2741. type VolumeEcShardsMountResponse struct {
  2742. state protoimpl.MessageState
  2743. sizeCache protoimpl.SizeCache
  2744. unknownFields protoimpl.UnknownFields
  2745. }
  2746. func (x *VolumeEcShardsMountResponse) Reset() {
  2747. *x = VolumeEcShardsMountResponse{}
  2748. if protoimpl.UnsafeEnabled {
  2749. mi := &file_volume_server_proto_msgTypes[59]
  2750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2751. ms.StoreMessageInfo(mi)
  2752. }
  2753. }
  2754. func (x *VolumeEcShardsMountResponse) String() string {
  2755. return protoimpl.X.MessageStringOf(x)
  2756. }
  2757. func (*VolumeEcShardsMountResponse) ProtoMessage() {}
  2758. func (x *VolumeEcShardsMountResponse) ProtoReflect() protoreflect.Message {
  2759. mi := &file_volume_server_proto_msgTypes[59]
  2760. if protoimpl.UnsafeEnabled && x != nil {
  2761. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2762. if ms.LoadMessageInfo() == nil {
  2763. ms.StoreMessageInfo(mi)
  2764. }
  2765. return ms
  2766. }
  2767. return mi.MessageOf(x)
  2768. }
  2769. // Deprecated: Use VolumeEcShardsMountResponse.ProtoReflect.Descriptor instead.
  2770. func (*VolumeEcShardsMountResponse) Descriptor() ([]byte, []int) {
  2771. return file_volume_server_proto_rawDescGZIP(), []int{59}
  2772. }
  2773. type VolumeEcShardsUnmountRequest struct {
  2774. state protoimpl.MessageState
  2775. sizeCache protoimpl.SizeCache
  2776. unknownFields protoimpl.UnknownFields
  2777. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2778. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2779. }
  2780. func (x *VolumeEcShardsUnmountRequest) Reset() {
  2781. *x = VolumeEcShardsUnmountRequest{}
  2782. if protoimpl.UnsafeEnabled {
  2783. mi := &file_volume_server_proto_msgTypes[60]
  2784. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2785. ms.StoreMessageInfo(mi)
  2786. }
  2787. }
  2788. func (x *VolumeEcShardsUnmountRequest) String() string {
  2789. return protoimpl.X.MessageStringOf(x)
  2790. }
  2791. func (*VolumeEcShardsUnmountRequest) ProtoMessage() {}
  2792. func (x *VolumeEcShardsUnmountRequest) ProtoReflect() protoreflect.Message {
  2793. mi := &file_volume_server_proto_msgTypes[60]
  2794. if protoimpl.UnsafeEnabled && x != nil {
  2795. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2796. if ms.LoadMessageInfo() == nil {
  2797. ms.StoreMessageInfo(mi)
  2798. }
  2799. return ms
  2800. }
  2801. return mi.MessageOf(x)
  2802. }
  2803. // Deprecated: Use VolumeEcShardsUnmountRequest.ProtoReflect.Descriptor instead.
  2804. func (*VolumeEcShardsUnmountRequest) Descriptor() ([]byte, []int) {
  2805. return file_volume_server_proto_rawDescGZIP(), []int{60}
  2806. }
  2807. func (x *VolumeEcShardsUnmountRequest) GetVolumeId() uint32 {
  2808. if x != nil {
  2809. return x.VolumeId
  2810. }
  2811. return 0
  2812. }
  2813. func (x *VolumeEcShardsUnmountRequest) GetShardIds() []uint32 {
  2814. if x != nil {
  2815. return x.ShardIds
  2816. }
  2817. return nil
  2818. }
  2819. type VolumeEcShardsUnmountResponse struct {
  2820. state protoimpl.MessageState
  2821. sizeCache protoimpl.SizeCache
  2822. unknownFields protoimpl.UnknownFields
  2823. }
  2824. func (x *VolumeEcShardsUnmountResponse) Reset() {
  2825. *x = VolumeEcShardsUnmountResponse{}
  2826. if protoimpl.UnsafeEnabled {
  2827. mi := &file_volume_server_proto_msgTypes[61]
  2828. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2829. ms.StoreMessageInfo(mi)
  2830. }
  2831. }
  2832. func (x *VolumeEcShardsUnmountResponse) String() string {
  2833. return protoimpl.X.MessageStringOf(x)
  2834. }
  2835. func (*VolumeEcShardsUnmountResponse) ProtoMessage() {}
  2836. func (x *VolumeEcShardsUnmountResponse) ProtoReflect() protoreflect.Message {
  2837. mi := &file_volume_server_proto_msgTypes[61]
  2838. if protoimpl.UnsafeEnabled && x != nil {
  2839. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2840. if ms.LoadMessageInfo() == nil {
  2841. ms.StoreMessageInfo(mi)
  2842. }
  2843. return ms
  2844. }
  2845. return mi.MessageOf(x)
  2846. }
  2847. // Deprecated: Use VolumeEcShardsUnmountResponse.ProtoReflect.Descriptor instead.
  2848. func (*VolumeEcShardsUnmountResponse) Descriptor() ([]byte, []int) {
  2849. return file_volume_server_proto_rawDescGZIP(), []int{61}
  2850. }
  2851. type VolumeEcShardReadRequest struct {
  2852. state protoimpl.MessageState
  2853. sizeCache protoimpl.SizeCache
  2854. unknownFields protoimpl.UnknownFields
  2855. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2856. ShardId uint32 `protobuf:"varint,2,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"`
  2857. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
  2858. Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  2859. FileKey uint64 `protobuf:"varint,5,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2860. }
  2861. func (x *VolumeEcShardReadRequest) Reset() {
  2862. *x = VolumeEcShardReadRequest{}
  2863. if protoimpl.UnsafeEnabled {
  2864. mi := &file_volume_server_proto_msgTypes[62]
  2865. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2866. ms.StoreMessageInfo(mi)
  2867. }
  2868. }
  2869. func (x *VolumeEcShardReadRequest) String() string {
  2870. return protoimpl.X.MessageStringOf(x)
  2871. }
  2872. func (*VolumeEcShardReadRequest) ProtoMessage() {}
  2873. func (x *VolumeEcShardReadRequest) ProtoReflect() protoreflect.Message {
  2874. mi := &file_volume_server_proto_msgTypes[62]
  2875. if protoimpl.UnsafeEnabled && x != nil {
  2876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2877. if ms.LoadMessageInfo() == nil {
  2878. ms.StoreMessageInfo(mi)
  2879. }
  2880. return ms
  2881. }
  2882. return mi.MessageOf(x)
  2883. }
  2884. // Deprecated: Use VolumeEcShardReadRequest.ProtoReflect.Descriptor instead.
  2885. func (*VolumeEcShardReadRequest) Descriptor() ([]byte, []int) {
  2886. return file_volume_server_proto_rawDescGZIP(), []int{62}
  2887. }
  2888. func (x *VolumeEcShardReadRequest) GetVolumeId() uint32 {
  2889. if x != nil {
  2890. return x.VolumeId
  2891. }
  2892. return 0
  2893. }
  2894. func (x *VolumeEcShardReadRequest) GetShardId() uint32 {
  2895. if x != nil {
  2896. return x.ShardId
  2897. }
  2898. return 0
  2899. }
  2900. func (x *VolumeEcShardReadRequest) GetOffset() int64 {
  2901. if x != nil {
  2902. return x.Offset
  2903. }
  2904. return 0
  2905. }
  2906. func (x *VolumeEcShardReadRequest) GetSize() int64 {
  2907. if x != nil {
  2908. return x.Size
  2909. }
  2910. return 0
  2911. }
  2912. func (x *VolumeEcShardReadRequest) GetFileKey() uint64 {
  2913. if x != nil {
  2914. return x.FileKey
  2915. }
  2916. return 0
  2917. }
  2918. type VolumeEcShardReadResponse struct {
  2919. state protoimpl.MessageState
  2920. sizeCache protoimpl.SizeCache
  2921. unknownFields protoimpl.UnknownFields
  2922. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  2923. IsDeleted bool `protobuf:"varint,2,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
  2924. }
  2925. func (x *VolumeEcShardReadResponse) Reset() {
  2926. *x = VolumeEcShardReadResponse{}
  2927. if protoimpl.UnsafeEnabled {
  2928. mi := &file_volume_server_proto_msgTypes[63]
  2929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2930. ms.StoreMessageInfo(mi)
  2931. }
  2932. }
  2933. func (x *VolumeEcShardReadResponse) String() string {
  2934. return protoimpl.X.MessageStringOf(x)
  2935. }
  2936. func (*VolumeEcShardReadResponse) ProtoMessage() {}
  2937. func (x *VolumeEcShardReadResponse) ProtoReflect() protoreflect.Message {
  2938. mi := &file_volume_server_proto_msgTypes[63]
  2939. if protoimpl.UnsafeEnabled && x != nil {
  2940. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2941. if ms.LoadMessageInfo() == nil {
  2942. ms.StoreMessageInfo(mi)
  2943. }
  2944. return ms
  2945. }
  2946. return mi.MessageOf(x)
  2947. }
  2948. // Deprecated: Use VolumeEcShardReadResponse.ProtoReflect.Descriptor instead.
  2949. func (*VolumeEcShardReadResponse) Descriptor() ([]byte, []int) {
  2950. return file_volume_server_proto_rawDescGZIP(), []int{63}
  2951. }
  2952. func (x *VolumeEcShardReadResponse) GetData() []byte {
  2953. if x != nil {
  2954. return x.Data
  2955. }
  2956. return nil
  2957. }
  2958. func (x *VolumeEcShardReadResponse) GetIsDeleted() bool {
  2959. if x != nil {
  2960. return x.IsDeleted
  2961. }
  2962. return false
  2963. }
  2964. type VolumeEcBlobDeleteRequest struct {
  2965. state protoimpl.MessageState
  2966. sizeCache protoimpl.SizeCache
  2967. unknownFields protoimpl.UnknownFields
  2968. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2969. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2970. FileKey uint64 `protobuf:"varint,3,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2971. Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
  2972. }
  2973. func (x *VolumeEcBlobDeleteRequest) Reset() {
  2974. *x = VolumeEcBlobDeleteRequest{}
  2975. if protoimpl.UnsafeEnabled {
  2976. mi := &file_volume_server_proto_msgTypes[64]
  2977. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2978. ms.StoreMessageInfo(mi)
  2979. }
  2980. }
  2981. func (x *VolumeEcBlobDeleteRequest) String() string {
  2982. return protoimpl.X.MessageStringOf(x)
  2983. }
  2984. func (*VolumeEcBlobDeleteRequest) ProtoMessage() {}
  2985. func (x *VolumeEcBlobDeleteRequest) ProtoReflect() protoreflect.Message {
  2986. mi := &file_volume_server_proto_msgTypes[64]
  2987. if protoimpl.UnsafeEnabled && x != nil {
  2988. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2989. if ms.LoadMessageInfo() == nil {
  2990. ms.StoreMessageInfo(mi)
  2991. }
  2992. return ms
  2993. }
  2994. return mi.MessageOf(x)
  2995. }
  2996. // Deprecated: Use VolumeEcBlobDeleteRequest.ProtoReflect.Descriptor instead.
  2997. func (*VolumeEcBlobDeleteRequest) Descriptor() ([]byte, []int) {
  2998. return file_volume_server_proto_rawDescGZIP(), []int{64}
  2999. }
  3000. func (x *VolumeEcBlobDeleteRequest) GetVolumeId() uint32 {
  3001. if x != nil {
  3002. return x.VolumeId
  3003. }
  3004. return 0
  3005. }
  3006. func (x *VolumeEcBlobDeleteRequest) GetCollection() string {
  3007. if x != nil {
  3008. return x.Collection
  3009. }
  3010. return ""
  3011. }
  3012. func (x *VolumeEcBlobDeleteRequest) GetFileKey() uint64 {
  3013. if x != nil {
  3014. return x.FileKey
  3015. }
  3016. return 0
  3017. }
  3018. func (x *VolumeEcBlobDeleteRequest) GetVersion() uint32 {
  3019. if x != nil {
  3020. return x.Version
  3021. }
  3022. return 0
  3023. }
  3024. type VolumeEcBlobDeleteResponse struct {
  3025. state protoimpl.MessageState
  3026. sizeCache protoimpl.SizeCache
  3027. unknownFields protoimpl.UnknownFields
  3028. }
  3029. func (x *VolumeEcBlobDeleteResponse) Reset() {
  3030. *x = VolumeEcBlobDeleteResponse{}
  3031. if protoimpl.UnsafeEnabled {
  3032. mi := &file_volume_server_proto_msgTypes[65]
  3033. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3034. ms.StoreMessageInfo(mi)
  3035. }
  3036. }
  3037. func (x *VolumeEcBlobDeleteResponse) String() string {
  3038. return protoimpl.X.MessageStringOf(x)
  3039. }
  3040. func (*VolumeEcBlobDeleteResponse) ProtoMessage() {}
  3041. func (x *VolumeEcBlobDeleteResponse) ProtoReflect() protoreflect.Message {
  3042. mi := &file_volume_server_proto_msgTypes[65]
  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 VolumeEcBlobDeleteResponse.ProtoReflect.Descriptor instead.
  3053. func (*VolumeEcBlobDeleteResponse) Descriptor() ([]byte, []int) {
  3054. return file_volume_server_proto_rawDescGZIP(), []int{65}
  3055. }
  3056. type VolumeEcShardsToVolumeRequest struct {
  3057. state protoimpl.MessageState
  3058. sizeCache protoimpl.SizeCache
  3059. unknownFields protoimpl.UnknownFields
  3060. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3061. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3062. }
  3063. func (x *VolumeEcShardsToVolumeRequest) Reset() {
  3064. *x = VolumeEcShardsToVolumeRequest{}
  3065. if protoimpl.UnsafeEnabled {
  3066. mi := &file_volume_server_proto_msgTypes[66]
  3067. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3068. ms.StoreMessageInfo(mi)
  3069. }
  3070. }
  3071. func (x *VolumeEcShardsToVolumeRequest) String() string {
  3072. return protoimpl.X.MessageStringOf(x)
  3073. }
  3074. func (*VolumeEcShardsToVolumeRequest) ProtoMessage() {}
  3075. func (x *VolumeEcShardsToVolumeRequest) ProtoReflect() protoreflect.Message {
  3076. mi := &file_volume_server_proto_msgTypes[66]
  3077. if protoimpl.UnsafeEnabled && x != nil {
  3078. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3079. if ms.LoadMessageInfo() == nil {
  3080. ms.StoreMessageInfo(mi)
  3081. }
  3082. return ms
  3083. }
  3084. return mi.MessageOf(x)
  3085. }
  3086. // Deprecated: Use VolumeEcShardsToVolumeRequest.ProtoReflect.Descriptor instead.
  3087. func (*VolumeEcShardsToVolumeRequest) Descriptor() ([]byte, []int) {
  3088. return file_volume_server_proto_rawDescGZIP(), []int{66}
  3089. }
  3090. func (x *VolumeEcShardsToVolumeRequest) GetVolumeId() uint32 {
  3091. if x != nil {
  3092. return x.VolumeId
  3093. }
  3094. return 0
  3095. }
  3096. func (x *VolumeEcShardsToVolumeRequest) GetCollection() string {
  3097. if x != nil {
  3098. return x.Collection
  3099. }
  3100. return ""
  3101. }
  3102. type VolumeEcShardsToVolumeResponse struct {
  3103. state protoimpl.MessageState
  3104. sizeCache protoimpl.SizeCache
  3105. unknownFields protoimpl.UnknownFields
  3106. }
  3107. func (x *VolumeEcShardsToVolumeResponse) Reset() {
  3108. *x = VolumeEcShardsToVolumeResponse{}
  3109. if protoimpl.UnsafeEnabled {
  3110. mi := &file_volume_server_proto_msgTypes[67]
  3111. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3112. ms.StoreMessageInfo(mi)
  3113. }
  3114. }
  3115. func (x *VolumeEcShardsToVolumeResponse) String() string {
  3116. return protoimpl.X.MessageStringOf(x)
  3117. }
  3118. func (*VolumeEcShardsToVolumeResponse) ProtoMessage() {}
  3119. func (x *VolumeEcShardsToVolumeResponse) ProtoReflect() protoreflect.Message {
  3120. mi := &file_volume_server_proto_msgTypes[67]
  3121. if protoimpl.UnsafeEnabled && x != nil {
  3122. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3123. if ms.LoadMessageInfo() == nil {
  3124. ms.StoreMessageInfo(mi)
  3125. }
  3126. return ms
  3127. }
  3128. return mi.MessageOf(x)
  3129. }
  3130. // Deprecated: Use VolumeEcShardsToVolumeResponse.ProtoReflect.Descriptor instead.
  3131. func (*VolumeEcShardsToVolumeResponse) Descriptor() ([]byte, []int) {
  3132. return file_volume_server_proto_rawDescGZIP(), []int{67}
  3133. }
  3134. type ReadVolumeFileStatusRequest struct {
  3135. state protoimpl.MessageState
  3136. sizeCache protoimpl.SizeCache
  3137. unknownFields protoimpl.UnknownFields
  3138. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3139. }
  3140. func (x *ReadVolumeFileStatusRequest) Reset() {
  3141. *x = ReadVolumeFileStatusRequest{}
  3142. if protoimpl.UnsafeEnabled {
  3143. mi := &file_volume_server_proto_msgTypes[68]
  3144. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3145. ms.StoreMessageInfo(mi)
  3146. }
  3147. }
  3148. func (x *ReadVolumeFileStatusRequest) String() string {
  3149. return protoimpl.X.MessageStringOf(x)
  3150. }
  3151. func (*ReadVolumeFileStatusRequest) ProtoMessage() {}
  3152. func (x *ReadVolumeFileStatusRequest) ProtoReflect() protoreflect.Message {
  3153. mi := &file_volume_server_proto_msgTypes[68]
  3154. if protoimpl.UnsafeEnabled && x != nil {
  3155. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3156. if ms.LoadMessageInfo() == nil {
  3157. ms.StoreMessageInfo(mi)
  3158. }
  3159. return ms
  3160. }
  3161. return mi.MessageOf(x)
  3162. }
  3163. // Deprecated: Use ReadVolumeFileStatusRequest.ProtoReflect.Descriptor instead.
  3164. func (*ReadVolumeFileStatusRequest) Descriptor() ([]byte, []int) {
  3165. return file_volume_server_proto_rawDescGZIP(), []int{68}
  3166. }
  3167. func (x *ReadVolumeFileStatusRequest) GetVolumeId() uint32 {
  3168. if x != nil {
  3169. return x.VolumeId
  3170. }
  3171. return 0
  3172. }
  3173. type ReadVolumeFileStatusResponse struct {
  3174. state protoimpl.MessageState
  3175. sizeCache protoimpl.SizeCache
  3176. unknownFields protoimpl.UnknownFields
  3177. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3178. IdxFileTimestampSeconds uint64 `protobuf:"varint,2,opt,name=idx_file_timestamp_seconds,json=idxFileTimestampSeconds,proto3" json:"idx_file_timestamp_seconds,omitempty"`
  3179. IdxFileSize uint64 `protobuf:"varint,3,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  3180. DatFileTimestampSeconds uint64 `protobuf:"varint,4,opt,name=dat_file_timestamp_seconds,json=datFileTimestampSeconds,proto3" json:"dat_file_timestamp_seconds,omitempty"`
  3181. DatFileSize uint64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"`
  3182. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  3183. CompactionRevision uint32 `protobuf:"varint,7,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  3184. Collection string `protobuf:"bytes,8,opt,name=collection,proto3" json:"collection,omitempty"`
  3185. DiskType string `protobuf:"bytes,9,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3186. VolumeInfo *VolumeInfo `protobuf:"bytes,10,opt,name=volume_info,json=volumeInfo,proto3" json:"volume_info,omitempty"`
  3187. }
  3188. func (x *ReadVolumeFileStatusResponse) Reset() {
  3189. *x = ReadVolumeFileStatusResponse{}
  3190. if protoimpl.UnsafeEnabled {
  3191. mi := &file_volume_server_proto_msgTypes[69]
  3192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3193. ms.StoreMessageInfo(mi)
  3194. }
  3195. }
  3196. func (x *ReadVolumeFileStatusResponse) String() string {
  3197. return protoimpl.X.MessageStringOf(x)
  3198. }
  3199. func (*ReadVolumeFileStatusResponse) ProtoMessage() {}
  3200. func (x *ReadVolumeFileStatusResponse) ProtoReflect() protoreflect.Message {
  3201. mi := &file_volume_server_proto_msgTypes[69]
  3202. if protoimpl.UnsafeEnabled && x != nil {
  3203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3204. if ms.LoadMessageInfo() == nil {
  3205. ms.StoreMessageInfo(mi)
  3206. }
  3207. return ms
  3208. }
  3209. return mi.MessageOf(x)
  3210. }
  3211. // Deprecated: Use ReadVolumeFileStatusResponse.ProtoReflect.Descriptor instead.
  3212. func (*ReadVolumeFileStatusResponse) Descriptor() ([]byte, []int) {
  3213. return file_volume_server_proto_rawDescGZIP(), []int{69}
  3214. }
  3215. func (x *ReadVolumeFileStatusResponse) GetVolumeId() uint32 {
  3216. if x != nil {
  3217. return x.VolumeId
  3218. }
  3219. return 0
  3220. }
  3221. func (x *ReadVolumeFileStatusResponse) GetIdxFileTimestampSeconds() uint64 {
  3222. if x != nil {
  3223. return x.IdxFileTimestampSeconds
  3224. }
  3225. return 0
  3226. }
  3227. func (x *ReadVolumeFileStatusResponse) GetIdxFileSize() uint64 {
  3228. if x != nil {
  3229. return x.IdxFileSize
  3230. }
  3231. return 0
  3232. }
  3233. func (x *ReadVolumeFileStatusResponse) GetDatFileTimestampSeconds() uint64 {
  3234. if x != nil {
  3235. return x.DatFileTimestampSeconds
  3236. }
  3237. return 0
  3238. }
  3239. func (x *ReadVolumeFileStatusResponse) GetDatFileSize() uint64 {
  3240. if x != nil {
  3241. return x.DatFileSize
  3242. }
  3243. return 0
  3244. }
  3245. func (x *ReadVolumeFileStatusResponse) GetFileCount() uint64 {
  3246. if x != nil {
  3247. return x.FileCount
  3248. }
  3249. return 0
  3250. }
  3251. func (x *ReadVolumeFileStatusResponse) GetCompactionRevision() uint32 {
  3252. if x != nil {
  3253. return x.CompactionRevision
  3254. }
  3255. return 0
  3256. }
  3257. func (x *ReadVolumeFileStatusResponse) GetCollection() string {
  3258. if x != nil {
  3259. return x.Collection
  3260. }
  3261. return ""
  3262. }
  3263. func (x *ReadVolumeFileStatusResponse) GetDiskType() string {
  3264. if x != nil {
  3265. return x.DiskType
  3266. }
  3267. return ""
  3268. }
  3269. func (x *ReadVolumeFileStatusResponse) GetVolumeInfo() *VolumeInfo {
  3270. if x != nil {
  3271. return x.VolumeInfo
  3272. }
  3273. return nil
  3274. }
  3275. type DiskStatus struct {
  3276. state protoimpl.MessageState
  3277. sizeCache protoimpl.SizeCache
  3278. unknownFields protoimpl.UnknownFields
  3279. Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
  3280. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3281. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3282. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3283. PercentFree float32 `protobuf:"fixed32,5,opt,name=percent_free,json=percentFree,proto3" json:"percent_free,omitempty"`
  3284. PercentUsed float32 `protobuf:"fixed32,6,opt,name=percent_used,json=percentUsed,proto3" json:"percent_used,omitempty"`
  3285. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3286. }
  3287. func (x *DiskStatus) Reset() {
  3288. *x = DiskStatus{}
  3289. if protoimpl.UnsafeEnabled {
  3290. mi := &file_volume_server_proto_msgTypes[70]
  3291. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3292. ms.StoreMessageInfo(mi)
  3293. }
  3294. }
  3295. func (x *DiskStatus) String() string {
  3296. return protoimpl.X.MessageStringOf(x)
  3297. }
  3298. func (*DiskStatus) ProtoMessage() {}
  3299. func (x *DiskStatus) ProtoReflect() protoreflect.Message {
  3300. mi := &file_volume_server_proto_msgTypes[70]
  3301. if protoimpl.UnsafeEnabled && x != nil {
  3302. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3303. if ms.LoadMessageInfo() == nil {
  3304. ms.StoreMessageInfo(mi)
  3305. }
  3306. return ms
  3307. }
  3308. return mi.MessageOf(x)
  3309. }
  3310. // Deprecated: Use DiskStatus.ProtoReflect.Descriptor instead.
  3311. func (*DiskStatus) Descriptor() ([]byte, []int) {
  3312. return file_volume_server_proto_rawDescGZIP(), []int{70}
  3313. }
  3314. func (x *DiskStatus) GetDir() string {
  3315. if x != nil {
  3316. return x.Dir
  3317. }
  3318. return ""
  3319. }
  3320. func (x *DiskStatus) GetAll() uint64 {
  3321. if x != nil {
  3322. return x.All
  3323. }
  3324. return 0
  3325. }
  3326. func (x *DiskStatus) GetUsed() uint64 {
  3327. if x != nil {
  3328. return x.Used
  3329. }
  3330. return 0
  3331. }
  3332. func (x *DiskStatus) GetFree() uint64 {
  3333. if x != nil {
  3334. return x.Free
  3335. }
  3336. return 0
  3337. }
  3338. func (x *DiskStatus) GetPercentFree() float32 {
  3339. if x != nil {
  3340. return x.PercentFree
  3341. }
  3342. return 0
  3343. }
  3344. func (x *DiskStatus) GetPercentUsed() float32 {
  3345. if x != nil {
  3346. return x.PercentUsed
  3347. }
  3348. return 0
  3349. }
  3350. func (x *DiskStatus) GetDiskType() string {
  3351. if x != nil {
  3352. return x.DiskType
  3353. }
  3354. return ""
  3355. }
  3356. type MemStatus struct {
  3357. state protoimpl.MessageState
  3358. sizeCache protoimpl.SizeCache
  3359. unknownFields protoimpl.UnknownFields
  3360. Goroutines int32 `protobuf:"varint,1,opt,name=goroutines,proto3" json:"goroutines,omitempty"`
  3361. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3362. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3363. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3364. Self uint64 `protobuf:"varint,5,opt,name=self,proto3" json:"self,omitempty"`
  3365. Heap uint64 `protobuf:"varint,6,opt,name=heap,proto3" json:"heap,omitempty"`
  3366. Stack uint64 `protobuf:"varint,7,opt,name=stack,proto3" json:"stack,omitempty"`
  3367. }
  3368. func (x *MemStatus) Reset() {
  3369. *x = MemStatus{}
  3370. if protoimpl.UnsafeEnabled {
  3371. mi := &file_volume_server_proto_msgTypes[71]
  3372. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3373. ms.StoreMessageInfo(mi)
  3374. }
  3375. }
  3376. func (x *MemStatus) String() string {
  3377. return protoimpl.X.MessageStringOf(x)
  3378. }
  3379. func (*MemStatus) ProtoMessage() {}
  3380. func (x *MemStatus) ProtoReflect() protoreflect.Message {
  3381. mi := &file_volume_server_proto_msgTypes[71]
  3382. if protoimpl.UnsafeEnabled && x != nil {
  3383. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3384. if ms.LoadMessageInfo() == nil {
  3385. ms.StoreMessageInfo(mi)
  3386. }
  3387. return ms
  3388. }
  3389. return mi.MessageOf(x)
  3390. }
  3391. // Deprecated: Use MemStatus.ProtoReflect.Descriptor instead.
  3392. func (*MemStatus) Descriptor() ([]byte, []int) {
  3393. return file_volume_server_proto_rawDescGZIP(), []int{71}
  3394. }
  3395. func (x *MemStatus) GetGoroutines() int32 {
  3396. if x != nil {
  3397. return x.Goroutines
  3398. }
  3399. return 0
  3400. }
  3401. func (x *MemStatus) GetAll() uint64 {
  3402. if x != nil {
  3403. return x.All
  3404. }
  3405. return 0
  3406. }
  3407. func (x *MemStatus) GetUsed() uint64 {
  3408. if x != nil {
  3409. return x.Used
  3410. }
  3411. return 0
  3412. }
  3413. func (x *MemStatus) GetFree() uint64 {
  3414. if x != nil {
  3415. return x.Free
  3416. }
  3417. return 0
  3418. }
  3419. func (x *MemStatus) GetSelf() uint64 {
  3420. if x != nil {
  3421. return x.Self
  3422. }
  3423. return 0
  3424. }
  3425. func (x *MemStatus) GetHeap() uint64 {
  3426. if x != nil {
  3427. return x.Heap
  3428. }
  3429. return 0
  3430. }
  3431. func (x *MemStatus) GetStack() uint64 {
  3432. if x != nil {
  3433. return x.Stack
  3434. }
  3435. return 0
  3436. }
  3437. // tired storage on volume servers
  3438. type RemoteFile struct {
  3439. state protoimpl.MessageState
  3440. sizeCache protoimpl.SizeCache
  3441. unknownFields protoimpl.UnknownFields
  3442. BackendType string `protobuf:"bytes,1,opt,name=backend_type,json=backendType,proto3" json:"backend_type,omitempty"`
  3443. BackendId string `protobuf:"bytes,2,opt,name=backend_id,json=backendId,proto3" json:"backend_id,omitempty"`
  3444. Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
  3445. Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  3446. FileSize uint64 `protobuf:"varint,5,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
  3447. ModifiedTime uint64 `protobuf:"varint,6,opt,name=modified_time,json=modifiedTime,proto3" json:"modified_time,omitempty"`
  3448. Extension string `protobuf:"bytes,7,opt,name=extension,proto3" json:"extension,omitempty"`
  3449. }
  3450. func (x *RemoteFile) Reset() {
  3451. *x = RemoteFile{}
  3452. if protoimpl.UnsafeEnabled {
  3453. mi := &file_volume_server_proto_msgTypes[72]
  3454. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3455. ms.StoreMessageInfo(mi)
  3456. }
  3457. }
  3458. func (x *RemoteFile) String() string {
  3459. return protoimpl.X.MessageStringOf(x)
  3460. }
  3461. func (*RemoteFile) ProtoMessage() {}
  3462. func (x *RemoteFile) ProtoReflect() protoreflect.Message {
  3463. mi := &file_volume_server_proto_msgTypes[72]
  3464. if protoimpl.UnsafeEnabled && x != nil {
  3465. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3466. if ms.LoadMessageInfo() == nil {
  3467. ms.StoreMessageInfo(mi)
  3468. }
  3469. return ms
  3470. }
  3471. return mi.MessageOf(x)
  3472. }
  3473. // Deprecated: Use RemoteFile.ProtoReflect.Descriptor instead.
  3474. func (*RemoteFile) Descriptor() ([]byte, []int) {
  3475. return file_volume_server_proto_rawDescGZIP(), []int{72}
  3476. }
  3477. func (x *RemoteFile) GetBackendType() string {
  3478. if x != nil {
  3479. return x.BackendType
  3480. }
  3481. return ""
  3482. }
  3483. func (x *RemoteFile) GetBackendId() string {
  3484. if x != nil {
  3485. return x.BackendId
  3486. }
  3487. return ""
  3488. }
  3489. func (x *RemoteFile) GetKey() string {
  3490. if x != nil {
  3491. return x.Key
  3492. }
  3493. return ""
  3494. }
  3495. func (x *RemoteFile) GetOffset() uint64 {
  3496. if x != nil {
  3497. return x.Offset
  3498. }
  3499. return 0
  3500. }
  3501. func (x *RemoteFile) GetFileSize() uint64 {
  3502. if x != nil {
  3503. return x.FileSize
  3504. }
  3505. return 0
  3506. }
  3507. func (x *RemoteFile) GetModifiedTime() uint64 {
  3508. if x != nil {
  3509. return x.ModifiedTime
  3510. }
  3511. return 0
  3512. }
  3513. func (x *RemoteFile) GetExtension() string {
  3514. if x != nil {
  3515. return x.Extension
  3516. }
  3517. return ""
  3518. }
  3519. type VolumeInfo struct {
  3520. state protoimpl.MessageState
  3521. sizeCache protoimpl.SizeCache
  3522. unknownFields protoimpl.UnknownFields
  3523. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
  3524. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
  3525. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  3526. BytesOffset uint32 `protobuf:"varint,4,opt,name=BytesOffset,proto3" json:"BytesOffset,omitempty"`
  3527. }
  3528. func (x *VolumeInfo) Reset() {
  3529. *x = VolumeInfo{}
  3530. if protoimpl.UnsafeEnabled {
  3531. mi := &file_volume_server_proto_msgTypes[73]
  3532. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3533. ms.StoreMessageInfo(mi)
  3534. }
  3535. }
  3536. func (x *VolumeInfo) String() string {
  3537. return protoimpl.X.MessageStringOf(x)
  3538. }
  3539. func (*VolumeInfo) ProtoMessage() {}
  3540. func (x *VolumeInfo) ProtoReflect() protoreflect.Message {
  3541. mi := &file_volume_server_proto_msgTypes[73]
  3542. if protoimpl.UnsafeEnabled && x != nil {
  3543. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3544. if ms.LoadMessageInfo() == nil {
  3545. ms.StoreMessageInfo(mi)
  3546. }
  3547. return ms
  3548. }
  3549. return mi.MessageOf(x)
  3550. }
  3551. // Deprecated: Use VolumeInfo.ProtoReflect.Descriptor instead.
  3552. func (*VolumeInfo) Descriptor() ([]byte, []int) {
  3553. return file_volume_server_proto_rawDescGZIP(), []int{73}
  3554. }
  3555. func (x *VolumeInfo) GetFiles() []*RemoteFile {
  3556. if x != nil {
  3557. return x.Files
  3558. }
  3559. return nil
  3560. }
  3561. func (x *VolumeInfo) GetVersion() uint32 {
  3562. if x != nil {
  3563. return x.Version
  3564. }
  3565. return 0
  3566. }
  3567. func (x *VolumeInfo) GetReplication() string {
  3568. if x != nil {
  3569. return x.Replication
  3570. }
  3571. return ""
  3572. }
  3573. func (x *VolumeInfo) GetBytesOffset() uint32 {
  3574. if x != nil {
  3575. return x.BytesOffset
  3576. }
  3577. return 0
  3578. }
  3579. // tiered storage
  3580. type VolumeTierMoveDatToRemoteRequest struct {
  3581. state protoimpl.MessageState
  3582. sizeCache protoimpl.SizeCache
  3583. unknownFields protoimpl.UnknownFields
  3584. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3585. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3586. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName,proto3" json:"destination_backend_name,omitempty"`
  3587. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile,proto3" json:"keep_local_dat_file,omitempty"`
  3588. }
  3589. func (x *VolumeTierMoveDatToRemoteRequest) Reset() {
  3590. *x = VolumeTierMoveDatToRemoteRequest{}
  3591. if protoimpl.UnsafeEnabled {
  3592. mi := &file_volume_server_proto_msgTypes[74]
  3593. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3594. ms.StoreMessageInfo(mi)
  3595. }
  3596. }
  3597. func (x *VolumeTierMoveDatToRemoteRequest) String() string {
  3598. return protoimpl.X.MessageStringOf(x)
  3599. }
  3600. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  3601. func (x *VolumeTierMoveDatToRemoteRequest) ProtoReflect() protoreflect.Message {
  3602. mi := &file_volume_server_proto_msgTypes[74]
  3603. if protoimpl.UnsafeEnabled && x != nil {
  3604. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3605. if ms.LoadMessageInfo() == nil {
  3606. ms.StoreMessageInfo(mi)
  3607. }
  3608. return ms
  3609. }
  3610. return mi.MessageOf(x)
  3611. }
  3612. // Deprecated: Use VolumeTierMoveDatToRemoteRequest.ProtoReflect.Descriptor instead.
  3613. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  3614. return file_volume_server_proto_rawDescGZIP(), []int{74}
  3615. }
  3616. func (x *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  3617. if x != nil {
  3618. return x.VolumeId
  3619. }
  3620. return 0
  3621. }
  3622. func (x *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  3623. if x != nil {
  3624. return x.Collection
  3625. }
  3626. return ""
  3627. }
  3628. func (x *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  3629. if x != nil {
  3630. return x.DestinationBackendName
  3631. }
  3632. return ""
  3633. }
  3634. func (x *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  3635. if x != nil {
  3636. return x.KeepLocalDatFile
  3637. }
  3638. return false
  3639. }
  3640. type VolumeTierMoveDatToRemoteResponse struct {
  3641. state protoimpl.MessageState
  3642. sizeCache protoimpl.SizeCache
  3643. unknownFields protoimpl.UnknownFields
  3644. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3645. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3646. }
  3647. func (x *VolumeTierMoveDatToRemoteResponse) Reset() {
  3648. *x = VolumeTierMoveDatToRemoteResponse{}
  3649. if protoimpl.UnsafeEnabled {
  3650. mi := &file_volume_server_proto_msgTypes[75]
  3651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3652. ms.StoreMessageInfo(mi)
  3653. }
  3654. }
  3655. func (x *VolumeTierMoveDatToRemoteResponse) String() string {
  3656. return protoimpl.X.MessageStringOf(x)
  3657. }
  3658. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  3659. func (x *VolumeTierMoveDatToRemoteResponse) ProtoReflect() protoreflect.Message {
  3660. mi := &file_volume_server_proto_msgTypes[75]
  3661. if protoimpl.UnsafeEnabled && x != nil {
  3662. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3663. if ms.LoadMessageInfo() == nil {
  3664. ms.StoreMessageInfo(mi)
  3665. }
  3666. return ms
  3667. }
  3668. return mi.MessageOf(x)
  3669. }
  3670. // Deprecated: Use VolumeTierMoveDatToRemoteResponse.ProtoReflect.Descriptor instead.
  3671. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  3672. return file_volume_server_proto_rawDescGZIP(), []int{75}
  3673. }
  3674. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  3675. if x != nil {
  3676. return x.Processed
  3677. }
  3678. return 0
  3679. }
  3680. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  3681. if x != nil {
  3682. return x.ProcessedPercentage
  3683. }
  3684. return 0
  3685. }
  3686. type VolumeTierMoveDatFromRemoteRequest struct {
  3687. state protoimpl.MessageState
  3688. sizeCache protoimpl.SizeCache
  3689. unknownFields protoimpl.UnknownFields
  3690. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3691. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3692. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile,proto3" json:"keep_remote_dat_file,omitempty"`
  3693. }
  3694. func (x *VolumeTierMoveDatFromRemoteRequest) Reset() {
  3695. *x = VolumeTierMoveDatFromRemoteRequest{}
  3696. if protoimpl.UnsafeEnabled {
  3697. mi := &file_volume_server_proto_msgTypes[76]
  3698. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3699. ms.StoreMessageInfo(mi)
  3700. }
  3701. }
  3702. func (x *VolumeTierMoveDatFromRemoteRequest) String() string {
  3703. return protoimpl.X.MessageStringOf(x)
  3704. }
  3705. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  3706. func (x *VolumeTierMoveDatFromRemoteRequest) ProtoReflect() protoreflect.Message {
  3707. mi := &file_volume_server_proto_msgTypes[76]
  3708. if protoimpl.UnsafeEnabled && x != nil {
  3709. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3710. if ms.LoadMessageInfo() == nil {
  3711. ms.StoreMessageInfo(mi)
  3712. }
  3713. return ms
  3714. }
  3715. return mi.MessageOf(x)
  3716. }
  3717. // Deprecated: Use VolumeTierMoveDatFromRemoteRequest.ProtoReflect.Descriptor instead.
  3718. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  3719. return file_volume_server_proto_rawDescGZIP(), []int{76}
  3720. }
  3721. func (x *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  3722. if x != nil {
  3723. return x.VolumeId
  3724. }
  3725. return 0
  3726. }
  3727. func (x *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  3728. if x != nil {
  3729. return x.Collection
  3730. }
  3731. return ""
  3732. }
  3733. func (x *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  3734. if x != nil {
  3735. return x.KeepRemoteDatFile
  3736. }
  3737. return false
  3738. }
  3739. type VolumeTierMoveDatFromRemoteResponse struct {
  3740. state protoimpl.MessageState
  3741. sizeCache protoimpl.SizeCache
  3742. unknownFields protoimpl.UnknownFields
  3743. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3744. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3745. }
  3746. func (x *VolumeTierMoveDatFromRemoteResponse) Reset() {
  3747. *x = VolumeTierMoveDatFromRemoteResponse{}
  3748. if protoimpl.UnsafeEnabled {
  3749. mi := &file_volume_server_proto_msgTypes[77]
  3750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3751. ms.StoreMessageInfo(mi)
  3752. }
  3753. }
  3754. func (x *VolumeTierMoveDatFromRemoteResponse) String() string {
  3755. return protoimpl.X.MessageStringOf(x)
  3756. }
  3757. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  3758. func (x *VolumeTierMoveDatFromRemoteResponse) ProtoReflect() protoreflect.Message {
  3759. mi := &file_volume_server_proto_msgTypes[77]
  3760. if protoimpl.UnsafeEnabled && x != nil {
  3761. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3762. if ms.LoadMessageInfo() == nil {
  3763. ms.StoreMessageInfo(mi)
  3764. }
  3765. return ms
  3766. }
  3767. return mi.MessageOf(x)
  3768. }
  3769. // Deprecated: Use VolumeTierMoveDatFromRemoteResponse.ProtoReflect.Descriptor instead.
  3770. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  3771. return file_volume_server_proto_rawDescGZIP(), []int{77}
  3772. }
  3773. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  3774. if x != nil {
  3775. return x.Processed
  3776. }
  3777. return 0
  3778. }
  3779. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  3780. if x != nil {
  3781. return x.ProcessedPercentage
  3782. }
  3783. return 0
  3784. }
  3785. type VolumeServerStatusRequest struct {
  3786. state protoimpl.MessageState
  3787. sizeCache protoimpl.SizeCache
  3788. unknownFields protoimpl.UnknownFields
  3789. }
  3790. func (x *VolumeServerStatusRequest) Reset() {
  3791. *x = VolumeServerStatusRequest{}
  3792. if protoimpl.UnsafeEnabled {
  3793. mi := &file_volume_server_proto_msgTypes[78]
  3794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3795. ms.StoreMessageInfo(mi)
  3796. }
  3797. }
  3798. func (x *VolumeServerStatusRequest) String() string {
  3799. return protoimpl.X.MessageStringOf(x)
  3800. }
  3801. func (*VolumeServerStatusRequest) ProtoMessage() {}
  3802. func (x *VolumeServerStatusRequest) ProtoReflect() protoreflect.Message {
  3803. mi := &file_volume_server_proto_msgTypes[78]
  3804. if protoimpl.UnsafeEnabled && x != nil {
  3805. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3806. if ms.LoadMessageInfo() == nil {
  3807. ms.StoreMessageInfo(mi)
  3808. }
  3809. return ms
  3810. }
  3811. return mi.MessageOf(x)
  3812. }
  3813. // Deprecated: Use VolumeServerStatusRequest.ProtoReflect.Descriptor instead.
  3814. func (*VolumeServerStatusRequest) Descriptor() ([]byte, []int) {
  3815. return file_volume_server_proto_rawDescGZIP(), []int{78}
  3816. }
  3817. type VolumeServerStatusResponse struct {
  3818. state protoimpl.MessageState
  3819. sizeCache protoimpl.SizeCache
  3820. unknownFields protoimpl.UnknownFields
  3821. DiskStatuses []*DiskStatus `protobuf:"bytes,1,rep,name=disk_statuses,json=diskStatuses,proto3" json:"disk_statuses,omitempty"`
  3822. MemoryStatus *MemStatus `protobuf:"bytes,2,opt,name=memory_status,json=memoryStatus,proto3" json:"memory_status,omitempty"`
  3823. Version string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
  3824. DataCenter string `protobuf:"bytes,4,opt,name=data_center,json=dataCenter,proto3" json:"data_center,omitempty"`
  3825. Rack string `protobuf:"bytes,5,opt,name=rack,proto3" json:"rack,omitempty"`
  3826. }
  3827. func (x *VolumeServerStatusResponse) Reset() {
  3828. *x = VolumeServerStatusResponse{}
  3829. if protoimpl.UnsafeEnabled {
  3830. mi := &file_volume_server_proto_msgTypes[79]
  3831. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3832. ms.StoreMessageInfo(mi)
  3833. }
  3834. }
  3835. func (x *VolumeServerStatusResponse) String() string {
  3836. return protoimpl.X.MessageStringOf(x)
  3837. }
  3838. func (*VolumeServerStatusResponse) ProtoMessage() {}
  3839. func (x *VolumeServerStatusResponse) ProtoReflect() protoreflect.Message {
  3840. mi := &file_volume_server_proto_msgTypes[79]
  3841. if protoimpl.UnsafeEnabled && x != nil {
  3842. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3843. if ms.LoadMessageInfo() == nil {
  3844. ms.StoreMessageInfo(mi)
  3845. }
  3846. return ms
  3847. }
  3848. return mi.MessageOf(x)
  3849. }
  3850. // Deprecated: Use VolumeServerStatusResponse.ProtoReflect.Descriptor instead.
  3851. func (*VolumeServerStatusResponse) Descriptor() ([]byte, []int) {
  3852. return file_volume_server_proto_rawDescGZIP(), []int{79}
  3853. }
  3854. func (x *VolumeServerStatusResponse) GetDiskStatuses() []*DiskStatus {
  3855. if x != nil {
  3856. return x.DiskStatuses
  3857. }
  3858. return nil
  3859. }
  3860. func (x *VolumeServerStatusResponse) GetMemoryStatus() *MemStatus {
  3861. if x != nil {
  3862. return x.MemoryStatus
  3863. }
  3864. return nil
  3865. }
  3866. func (x *VolumeServerStatusResponse) GetVersion() string {
  3867. if x != nil {
  3868. return x.Version
  3869. }
  3870. return ""
  3871. }
  3872. func (x *VolumeServerStatusResponse) GetDataCenter() string {
  3873. if x != nil {
  3874. return x.DataCenter
  3875. }
  3876. return ""
  3877. }
  3878. func (x *VolumeServerStatusResponse) GetRack() string {
  3879. if x != nil {
  3880. return x.Rack
  3881. }
  3882. return ""
  3883. }
  3884. type VolumeServerLeaveRequest struct {
  3885. state protoimpl.MessageState
  3886. sizeCache protoimpl.SizeCache
  3887. unknownFields protoimpl.UnknownFields
  3888. }
  3889. func (x *VolumeServerLeaveRequest) Reset() {
  3890. *x = VolumeServerLeaveRequest{}
  3891. if protoimpl.UnsafeEnabled {
  3892. mi := &file_volume_server_proto_msgTypes[80]
  3893. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3894. ms.StoreMessageInfo(mi)
  3895. }
  3896. }
  3897. func (x *VolumeServerLeaveRequest) String() string {
  3898. return protoimpl.X.MessageStringOf(x)
  3899. }
  3900. func (*VolumeServerLeaveRequest) ProtoMessage() {}
  3901. func (x *VolumeServerLeaveRequest) ProtoReflect() protoreflect.Message {
  3902. mi := &file_volume_server_proto_msgTypes[80]
  3903. if protoimpl.UnsafeEnabled && x != nil {
  3904. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3905. if ms.LoadMessageInfo() == nil {
  3906. ms.StoreMessageInfo(mi)
  3907. }
  3908. return ms
  3909. }
  3910. return mi.MessageOf(x)
  3911. }
  3912. // Deprecated: Use VolumeServerLeaveRequest.ProtoReflect.Descriptor instead.
  3913. func (*VolumeServerLeaveRequest) Descriptor() ([]byte, []int) {
  3914. return file_volume_server_proto_rawDescGZIP(), []int{80}
  3915. }
  3916. type VolumeServerLeaveResponse struct {
  3917. state protoimpl.MessageState
  3918. sizeCache protoimpl.SizeCache
  3919. unknownFields protoimpl.UnknownFields
  3920. }
  3921. func (x *VolumeServerLeaveResponse) Reset() {
  3922. *x = VolumeServerLeaveResponse{}
  3923. if protoimpl.UnsafeEnabled {
  3924. mi := &file_volume_server_proto_msgTypes[81]
  3925. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3926. ms.StoreMessageInfo(mi)
  3927. }
  3928. }
  3929. func (x *VolumeServerLeaveResponse) String() string {
  3930. return protoimpl.X.MessageStringOf(x)
  3931. }
  3932. func (*VolumeServerLeaveResponse) ProtoMessage() {}
  3933. func (x *VolumeServerLeaveResponse) ProtoReflect() protoreflect.Message {
  3934. mi := &file_volume_server_proto_msgTypes[81]
  3935. if protoimpl.UnsafeEnabled && x != nil {
  3936. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3937. if ms.LoadMessageInfo() == nil {
  3938. ms.StoreMessageInfo(mi)
  3939. }
  3940. return ms
  3941. }
  3942. return mi.MessageOf(x)
  3943. }
  3944. // Deprecated: Use VolumeServerLeaveResponse.ProtoReflect.Descriptor instead.
  3945. func (*VolumeServerLeaveResponse) Descriptor() ([]byte, []int) {
  3946. return file_volume_server_proto_rawDescGZIP(), []int{81}
  3947. }
  3948. // remote storage
  3949. type FetchAndWriteNeedleRequest struct {
  3950. state protoimpl.MessageState
  3951. sizeCache protoimpl.SizeCache
  3952. unknownFields protoimpl.UnknownFields
  3953. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3954. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3955. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  3956. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  3957. Size int64 `protobuf:"varint,5,opt,name=size,proto3" json:"size,omitempty"`
  3958. Replicas []*FetchAndWriteNeedleRequest_Replica `protobuf:"bytes,6,rep,name=replicas,proto3" json:"replicas,omitempty"`
  3959. Auth string `protobuf:"bytes,7,opt,name=auth,proto3" json:"auth,omitempty"`
  3960. // remote conf
  3961. RemoteConf *remote_pb.RemoteConf `protobuf:"bytes,15,opt,name=remote_conf,json=remoteConf,proto3" json:"remote_conf,omitempty"`
  3962. RemoteLocation *remote_pb.RemoteStorageLocation `protobuf:"bytes,16,opt,name=remote_location,json=remoteLocation,proto3" json:"remote_location,omitempty"`
  3963. }
  3964. func (x *FetchAndWriteNeedleRequest) Reset() {
  3965. *x = FetchAndWriteNeedleRequest{}
  3966. if protoimpl.UnsafeEnabled {
  3967. mi := &file_volume_server_proto_msgTypes[82]
  3968. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3969. ms.StoreMessageInfo(mi)
  3970. }
  3971. }
  3972. func (x *FetchAndWriteNeedleRequest) String() string {
  3973. return protoimpl.X.MessageStringOf(x)
  3974. }
  3975. func (*FetchAndWriteNeedleRequest) ProtoMessage() {}
  3976. func (x *FetchAndWriteNeedleRequest) ProtoReflect() protoreflect.Message {
  3977. mi := &file_volume_server_proto_msgTypes[82]
  3978. if protoimpl.UnsafeEnabled && x != nil {
  3979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3980. if ms.LoadMessageInfo() == nil {
  3981. ms.StoreMessageInfo(mi)
  3982. }
  3983. return ms
  3984. }
  3985. return mi.MessageOf(x)
  3986. }
  3987. // Deprecated: Use FetchAndWriteNeedleRequest.ProtoReflect.Descriptor instead.
  3988. func (*FetchAndWriteNeedleRequest) Descriptor() ([]byte, []int) {
  3989. return file_volume_server_proto_rawDescGZIP(), []int{82}
  3990. }
  3991. func (x *FetchAndWriteNeedleRequest) GetVolumeId() uint32 {
  3992. if x != nil {
  3993. return x.VolumeId
  3994. }
  3995. return 0
  3996. }
  3997. func (x *FetchAndWriteNeedleRequest) GetNeedleId() uint64 {
  3998. if x != nil {
  3999. return x.NeedleId
  4000. }
  4001. return 0
  4002. }
  4003. func (x *FetchAndWriteNeedleRequest) GetCookie() uint32 {
  4004. if x != nil {
  4005. return x.Cookie
  4006. }
  4007. return 0
  4008. }
  4009. func (x *FetchAndWriteNeedleRequest) GetOffset() int64 {
  4010. if x != nil {
  4011. return x.Offset
  4012. }
  4013. return 0
  4014. }
  4015. func (x *FetchAndWriteNeedleRequest) GetSize() int64 {
  4016. if x != nil {
  4017. return x.Size
  4018. }
  4019. return 0
  4020. }
  4021. func (x *FetchAndWriteNeedleRequest) GetReplicas() []*FetchAndWriteNeedleRequest_Replica {
  4022. if x != nil {
  4023. return x.Replicas
  4024. }
  4025. return nil
  4026. }
  4027. func (x *FetchAndWriteNeedleRequest) GetAuth() string {
  4028. if x != nil {
  4029. return x.Auth
  4030. }
  4031. return ""
  4032. }
  4033. func (x *FetchAndWriteNeedleRequest) GetRemoteConf() *remote_pb.RemoteConf {
  4034. if x != nil {
  4035. return x.RemoteConf
  4036. }
  4037. return nil
  4038. }
  4039. func (x *FetchAndWriteNeedleRequest) GetRemoteLocation() *remote_pb.RemoteStorageLocation {
  4040. if x != nil {
  4041. return x.RemoteLocation
  4042. }
  4043. return nil
  4044. }
  4045. type FetchAndWriteNeedleResponse struct {
  4046. state protoimpl.MessageState
  4047. sizeCache protoimpl.SizeCache
  4048. unknownFields protoimpl.UnknownFields
  4049. }
  4050. func (x *FetchAndWriteNeedleResponse) Reset() {
  4051. *x = FetchAndWriteNeedleResponse{}
  4052. if protoimpl.UnsafeEnabled {
  4053. mi := &file_volume_server_proto_msgTypes[83]
  4054. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4055. ms.StoreMessageInfo(mi)
  4056. }
  4057. }
  4058. func (x *FetchAndWriteNeedleResponse) String() string {
  4059. return protoimpl.X.MessageStringOf(x)
  4060. }
  4061. func (*FetchAndWriteNeedleResponse) ProtoMessage() {}
  4062. func (x *FetchAndWriteNeedleResponse) ProtoReflect() protoreflect.Message {
  4063. mi := &file_volume_server_proto_msgTypes[83]
  4064. if protoimpl.UnsafeEnabled && x != nil {
  4065. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4066. if ms.LoadMessageInfo() == nil {
  4067. ms.StoreMessageInfo(mi)
  4068. }
  4069. return ms
  4070. }
  4071. return mi.MessageOf(x)
  4072. }
  4073. // Deprecated: Use FetchAndWriteNeedleResponse.ProtoReflect.Descriptor instead.
  4074. func (*FetchAndWriteNeedleResponse) Descriptor() ([]byte, []int) {
  4075. return file_volume_server_proto_rawDescGZIP(), []int{83}
  4076. }
  4077. // select on volume servers
  4078. type QueryRequest struct {
  4079. state protoimpl.MessageState
  4080. sizeCache protoimpl.SizeCache
  4081. unknownFields protoimpl.UnknownFields
  4082. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  4083. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  4084. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  4085. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  4086. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  4087. }
  4088. func (x *QueryRequest) Reset() {
  4089. *x = QueryRequest{}
  4090. if protoimpl.UnsafeEnabled {
  4091. mi := &file_volume_server_proto_msgTypes[84]
  4092. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4093. ms.StoreMessageInfo(mi)
  4094. }
  4095. }
  4096. func (x *QueryRequest) String() string {
  4097. return protoimpl.X.MessageStringOf(x)
  4098. }
  4099. func (*QueryRequest) ProtoMessage() {}
  4100. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  4101. mi := &file_volume_server_proto_msgTypes[84]
  4102. if protoimpl.UnsafeEnabled && x != nil {
  4103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4104. if ms.LoadMessageInfo() == nil {
  4105. ms.StoreMessageInfo(mi)
  4106. }
  4107. return ms
  4108. }
  4109. return mi.MessageOf(x)
  4110. }
  4111. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  4112. func (*QueryRequest) Descriptor() ([]byte, []int) {
  4113. return file_volume_server_proto_rawDescGZIP(), []int{84}
  4114. }
  4115. func (x *QueryRequest) GetSelections() []string {
  4116. if x != nil {
  4117. return x.Selections
  4118. }
  4119. return nil
  4120. }
  4121. func (x *QueryRequest) GetFromFileIds() []string {
  4122. if x != nil {
  4123. return x.FromFileIds
  4124. }
  4125. return nil
  4126. }
  4127. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  4128. if x != nil {
  4129. return x.Filter
  4130. }
  4131. return nil
  4132. }
  4133. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  4134. if x != nil {
  4135. return x.InputSerialization
  4136. }
  4137. return nil
  4138. }
  4139. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  4140. if x != nil {
  4141. return x.OutputSerialization
  4142. }
  4143. return nil
  4144. }
  4145. type QueriedStripe struct {
  4146. state protoimpl.MessageState
  4147. sizeCache protoimpl.SizeCache
  4148. unknownFields protoimpl.UnknownFields
  4149. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  4150. }
  4151. func (x *QueriedStripe) Reset() {
  4152. *x = QueriedStripe{}
  4153. if protoimpl.UnsafeEnabled {
  4154. mi := &file_volume_server_proto_msgTypes[85]
  4155. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4156. ms.StoreMessageInfo(mi)
  4157. }
  4158. }
  4159. func (x *QueriedStripe) String() string {
  4160. return protoimpl.X.MessageStringOf(x)
  4161. }
  4162. func (*QueriedStripe) ProtoMessage() {}
  4163. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  4164. mi := &file_volume_server_proto_msgTypes[85]
  4165. if protoimpl.UnsafeEnabled && x != nil {
  4166. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4167. if ms.LoadMessageInfo() == nil {
  4168. ms.StoreMessageInfo(mi)
  4169. }
  4170. return ms
  4171. }
  4172. return mi.MessageOf(x)
  4173. }
  4174. // Deprecated: Use QueriedStripe.ProtoReflect.Descriptor instead.
  4175. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  4176. return file_volume_server_proto_rawDescGZIP(), []int{85}
  4177. }
  4178. func (x *QueriedStripe) GetRecords() []byte {
  4179. if x != nil {
  4180. return x.Records
  4181. }
  4182. return nil
  4183. }
  4184. type VolumeNeedleStatusRequest struct {
  4185. state protoimpl.MessageState
  4186. sizeCache protoimpl.SizeCache
  4187. unknownFields protoimpl.UnknownFields
  4188. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  4189. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4190. }
  4191. func (x *VolumeNeedleStatusRequest) Reset() {
  4192. *x = VolumeNeedleStatusRequest{}
  4193. if protoimpl.UnsafeEnabled {
  4194. mi := &file_volume_server_proto_msgTypes[86]
  4195. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4196. ms.StoreMessageInfo(mi)
  4197. }
  4198. }
  4199. func (x *VolumeNeedleStatusRequest) String() string {
  4200. return protoimpl.X.MessageStringOf(x)
  4201. }
  4202. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  4203. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  4204. mi := &file_volume_server_proto_msgTypes[86]
  4205. if protoimpl.UnsafeEnabled && x != nil {
  4206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4207. if ms.LoadMessageInfo() == nil {
  4208. ms.StoreMessageInfo(mi)
  4209. }
  4210. return ms
  4211. }
  4212. return mi.MessageOf(x)
  4213. }
  4214. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  4215. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  4216. return file_volume_server_proto_rawDescGZIP(), []int{86}
  4217. }
  4218. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  4219. if x != nil {
  4220. return x.VolumeId
  4221. }
  4222. return 0
  4223. }
  4224. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  4225. if x != nil {
  4226. return x.NeedleId
  4227. }
  4228. return 0
  4229. }
  4230. type VolumeNeedleStatusResponse struct {
  4231. state protoimpl.MessageState
  4232. sizeCache protoimpl.SizeCache
  4233. unknownFields protoimpl.UnknownFields
  4234. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4235. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  4236. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  4237. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  4238. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  4239. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  4240. }
  4241. func (x *VolumeNeedleStatusResponse) Reset() {
  4242. *x = VolumeNeedleStatusResponse{}
  4243. if protoimpl.UnsafeEnabled {
  4244. mi := &file_volume_server_proto_msgTypes[87]
  4245. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4246. ms.StoreMessageInfo(mi)
  4247. }
  4248. }
  4249. func (x *VolumeNeedleStatusResponse) String() string {
  4250. return protoimpl.X.MessageStringOf(x)
  4251. }
  4252. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  4253. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  4254. mi := &file_volume_server_proto_msgTypes[87]
  4255. if protoimpl.UnsafeEnabled && x != nil {
  4256. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4257. if ms.LoadMessageInfo() == nil {
  4258. ms.StoreMessageInfo(mi)
  4259. }
  4260. return ms
  4261. }
  4262. return mi.MessageOf(x)
  4263. }
  4264. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  4265. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  4266. return file_volume_server_proto_rawDescGZIP(), []int{87}
  4267. }
  4268. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  4269. if x != nil {
  4270. return x.NeedleId
  4271. }
  4272. return 0
  4273. }
  4274. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  4275. if x != nil {
  4276. return x.Cookie
  4277. }
  4278. return 0
  4279. }
  4280. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  4281. if x != nil {
  4282. return x.Size
  4283. }
  4284. return 0
  4285. }
  4286. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  4287. if x != nil {
  4288. return x.LastModified
  4289. }
  4290. return 0
  4291. }
  4292. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  4293. if x != nil {
  4294. return x.Crc
  4295. }
  4296. return 0
  4297. }
  4298. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  4299. if x != nil {
  4300. return x.Ttl
  4301. }
  4302. return ""
  4303. }
  4304. type PingRequest struct {
  4305. state protoimpl.MessageState
  4306. sizeCache protoimpl.SizeCache
  4307. unknownFields protoimpl.UnknownFields
  4308. Target string `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"` // default to ping itself
  4309. TargetType string `protobuf:"bytes,2,opt,name=target_type,json=targetType,proto3" json:"target_type,omitempty"`
  4310. }
  4311. func (x *PingRequest) Reset() {
  4312. *x = PingRequest{}
  4313. if protoimpl.UnsafeEnabled {
  4314. mi := &file_volume_server_proto_msgTypes[88]
  4315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4316. ms.StoreMessageInfo(mi)
  4317. }
  4318. }
  4319. func (x *PingRequest) String() string {
  4320. return protoimpl.X.MessageStringOf(x)
  4321. }
  4322. func (*PingRequest) ProtoMessage() {}
  4323. func (x *PingRequest) ProtoReflect() protoreflect.Message {
  4324. mi := &file_volume_server_proto_msgTypes[88]
  4325. if protoimpl.UnsafeEnabled && x != nil {
  4326. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4327. if ms.LoadMessageInfo() == nil {
  4328. ms.StoreMessageInfo(mi)
  4329. }
  4330. return ms
  4331. }
  4332. return mi.MessageOf(x)
  4333. }
  4334. // Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.
  4335. func (*PingRequest) Descriptor() ([]byte, []int) {
  4336. return file_volume_server_proto_rawDescGZIP(), []int{88}
  4337. }
  4338. func (x *PingRequest) GetTarget() string {
  4339. if x != nil {
  4340. return x.Target
  4341. }
  4342. return ""
  4343. }
  4344. func (x *PingRequest) GetTargetType() string {
  4345. if x != nil {
  4346. return x.TargetType
  4347. }
  4348. return ""
  4349. }
  4350. type PingResponse struct {
  4351. state protoimpl.MessageState
  4352. sizeCache protoimpl.SizeCache
  4353. unknownFields protoimpl.UnknownFields
  4354. StartTimeNs int64 `protobuf:"varint,1,opt,name=start_time_ns,json=startTimeNs,proto3" json:"start_time_ns,omitempty"`
  4355. RemoteTimeNs int64 `protobuf:"varint,2,opt,name=remote_time_ns,json=remoteTimeNs,proto3" json:"remote_time_ns,omitempty"`
  4356. StopTimeNs int64 `protobuf:"varint,3,opt,name=stop_time_ns,json=stopTimeNs,proto3" json:"stop_time_ns,omitempty"`
  4357. }
  4358. func (x *PingResponse) Reset() {
  4359. *x = PingResponse{}
  4360. if protoimpl.UnsafeEnabled {
  4361. mi := &file_volume_server_proto_msgTypes[89]
  4362. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4363. ms.StoreMessageInfo(mi)
  4364. }
  4365. }
  4366. func (x *PingResponse) String() string {
  4367. return protoimpl.X.MessageStringOf(x)
  4368. }
  4369. func (*PingResponse) ProtoMessage() {}
  4370. func (x *PingResponse) ProtoReflect() protoreflect.Message {
  4371. mi := &file_volume_server_proto_msgTypes[89]
  4372. if protoimpl.UnsafeEnabled && x != nil {
  4373. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4374. if ms.LoadMessageInfo() == nil {
  4375. ms.StoreMessageInfo(mi)
  4376. }
  4377. return ms
  4378. }
  4379. return mi.MessageOf(x)
  4380. }
  4381. // Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.
  4382. func (*PingResponse) Descriptor() ([]byte, []int) {
  4383. return file_volume_server_proto_rawDescGZIP(), []int{89}
  4384. }
  4385. func (x *PingResponse) GetStartTimeNs() int64 {
  4386. if x != nil {
  4387. return x.StartTimeNs
  4388. }
  4389. return 0
  4390. }
  4391. func (x *PingResponse) GetRemoteTimeNs() int64 {
  4392. if x != nil {
  4393. return x.RemoteTimeNs
  4394. }
  4395. return 0
  4396. }
  4397. func (x *PingResponse) GetStopTimeNs() int64 {
  4398. if x != nil {
  4399. return x.StopTimeNs
  4400. }
  4401. return 0
  4402. }
  4403. type FetchAndWriteNeedleRequest_Replica struct {
  4404. state protoimpl.MessageState
  4405. sizeCache protoimpl.SizeCache
  4406. unknownFields protoimpl.UnknownFields
  4407. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  4408. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl,proto3" json:"public_url,omitempty"`
  4409. GrpcPort int32 `protobuf:"varint,3,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
  4410. }
  4411. func (x *FetchAndWriteNeedleRequest_Replica) Reset() {
  4412. *x = FetchAndWriteNeedleRequest_Replica{}
  4413. if protoimpl.UnsafeEnabled {
  4414. mi := &file_volume_server_proto_msgTypes[90]
  4415. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4416. ms.StoreMessageInfo(mi)
  4417. }
  4418. }
  4419. func (x *FetchAndWriteNeedleRequest_Replica) String() string {
  4420. return protoimpl.X.MessageStringOf(x)
  4421. }
  4422. func (*FetchAndWriteNeedleRequest_Replica) ProtoMessage() {}
  4423. func (x *FetchAndWriteNeedleRequest_Replica) ProtoReflect() protoreflect.Message {
  4424. mi := &file_volume_server_proto_msgTypes[90]
  4425. if protoimpl.UnsafeEnabled && x != nil {
  4426. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4427. if ms.LoadMessageInfo() == nil {
  4428. ms.StoreMessageInfo(mi)
  4429. }
  4430. return ms
  4431. }
  4432. return mi.MessageOf(x)
  4433. }
  4434. // Deprecated: Use FetchAndWriteNeedleRequest_Replica.ProtoReflect.Descriptor instead.
  4435. func (*FetchAndWriteNeedleRequest_Replica) Descriptor() ([]byte, []int) {
  4436. return file_volume_server_proto_rawDescGZIP(), []int{82, 0}
  4437. }
  4438. func (x *FetchAndWriteNeedleRequest_Replica) GetUrl() string {
  4439. if x != nil {
  4440. return x.Url
  4441. }
  4442. return ""
  4443. }
  4444. func (x *FetchAndWriteNeedleRequest_Replica) GetPublicUrl() string {
  4445. if x != nil {
  4446. return x.PublicUrl
  4447. }
  4448. return ""
  4449. }
  4450. func (x *FetchAndWriteNeedleRequest_Replica) GetGrpcPort() int32 {
  4451. if x != nil {
  4452. return x.GrpcPort
  4453. }
  4454. return 0
  4455. }
  4456. type QueryRequest_Filter struct {
  4457. state protoimpl.MessageState
  4458. sizeCache protoimpl.SizeCache
  4459. unknownFields protoimpl.UnknownFields
  4460. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  4461. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  4462. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  4463. }
  4464. func (x *QueryRequest_Filter) Reset() {
  4465. *x = QueryRequest_Filter{}
  4466. if protoimpl.UnsafeEnabled {
  4467. mi := &file_volume_server_proto_msgTypes[91]
  4468. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4469. ms.StoreMessageInfo(mi)
  4470. }
  4471. }
  4472. func (x *QueryRequest_Filter) String() string {
  4473. return protoimpl.X.MessageStringOf(x)
  4474. }
  4475. func (*QueryRequest_Filter) ProtoMessage() {}
  4476. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  4477. mi := &file_volume_server_proto_msgTypes[91]
  4478. if protoimpl.UnsafeEnabled && x != nil {
  4479. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4480. if ms.LoadMessageInfo() == nil {
  4481. ms.StoreMessageInfo(mi)
  4482. }
  4483. return ms
  4484. }
  4485. return mi.MessageOf(x)
  4486. }
  4487. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  4488. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  4489. return file_volume_server_proto_rawDescGZIP(), []int{84, 0}
  4490. }
  4491. func (x *QueryRequest_Filter) GetField() string {
  4492. if x != nil {
  4493. return x.Field
  4494. }
  4495. return ""
  4496. }
  4497. func (x *QueryRequest_Filter) GetOperand() string {
  4498. if x != nil {
  4499. return x.Operand
  4500. }
  4501. return ""
  4502. }
  4503. func (x *QueryRequest_Filter) GetValue() string {
  4504. if x != nil {
  4505. return x.Value
  4506. }
  4507. return ""
  4508. }
  4509. type QueryRequest_InputSerialization struct {
  4510. state protoimpl.MessageState
  4511. sizeCache protoimpl.SizeCache
  4512. unknownFields protoimpl.UnknownFields
  4513. // NONE | GZIP | BZIP2
  4514. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  4515. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  4516. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  4517. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  4518. }
  4519. func (x *QueryRequest_InputSerialization) Reset() {
  4520. *x = QueryRequest_InputSerialization{}
  4521. if protoimpl.UnsafeEnabled {
  4522. mi := &file_volume_server_proto_msgTypes[92]
  4523. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4524. ms.StoreMessageInfo(mi)
  4525. }
  4526. }
  4527. func (x *QueryRequest_InputSerialization) String() string {
  4528. return protoimpl.X.MessageStringOf(x)
  4529. }
  4530. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  4531. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  4532. mi := &file_volume_server_proto_msgTypes[92]
  4533. if protoimpl.UnsafeEnabled && x != nil {
  4534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4535. if ms.LoadMessageInfo() == nil {
  4536. ms.StoreMessageInfo(mi)
  4537. }
  4538. return ms
  4539. }
  4540. return mi.MessageOf(x)
  4541. }
  4542. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  4543. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  4544. return file_volume_server_proto_rawDescGZIP(), []int{84, 1}
  4545. }
  4546. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  4547. if x != nil {
  4548. return x.CompressionType
  4549. }
  4550. return ""
  4551. }
  4552. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  4553. if x != nil {
  4554. return x.CsvInput
  4555. }
  4556. return nil
  4557. }
  4558. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  4559. if x != nil {
  4560. return x.JsonInput
  4561. }
  4562. return nil
  4563. }
  4564. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  4565. if x != nil {
  4566. return x.ParquetInput
  4567. }
  4568. return nil
  4569. }
  4570. type QueryRequest_OutputSerialization struct {
  4571. state protoimpl.MessageState
  4572. sizeCache protoimpl.SizeCache
  4573. unknownFields protoimpl.UnknownFields
  4574. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  4575. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  4576. }
  4577. func (x *QueryRequest_OutputSerialization) Reset() {
  4578. *x = QueryRequest_OutputSerialization{}
  4579. if protoimpl.UnsafeEnabled {
  4580. mi := &file_volume_server_proto_msgTypes[93]
  4581. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4582. ms.StoreMessageInfo(mi)
  4583. }
  4584. }
  4585. func (x *QueryRequest_OutputSerialization) String() string {
  4586. return protoimpl.X.MessageStringOf(x)
  4587. }
  4588. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  4589. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  4590. mi := &file_volume_server_proto_msgTypes[93]
  4591. if protoimpl.UnsafeEnabled && x != nil {
  4592. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4593. if ms.LoadMessageInfo() == nil {
  4594. ms.StoreMessageInfo(mi)
  4595. }
  4596. return ms
  4597. }
  4598. return mi.MessageOf(x)
  4599. }
  4600. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  4601. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  4602. return file_volume_server_proto_rawDescGZIP(), []int{84, 2}
  4603. }
  4604. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  4605. if x != nil {
  4606. return x.CsvOutput
  4607. }
  4608. return nil
  4609. }
  4610. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  4611. if x != nil {
  4612. return x.JsonOutput
  4613. }
  4614. return nil
  4615. }
  4616. type QueryRequest_InputSerialization_CSVInput struct {
  4617. state protoimpl.MessageState
  4618. sizeCache protoimpl.SizeCache
  4619. unknownFields protoimpl.UnknownFields
  4620. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  4621. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4622. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4623. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4624. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4625. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  4626. // If true, records might contain record delimiters within quote characters
  4627. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  4628. }
  4629. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  4630. *x = QueryRequest_InputSerialization_CSVInput{}
  4631. if protoimpl.UnsafeEnabled {
  4632. mi := &file_volume_server_proto_msgTypes[94]
  4633. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4634. ms.StoreMessageInfo(mi)
  4635. }
  4636. }
  4637. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  4638. return protoimpl.X.MessageStringOf(x)
  4639. }
  4640. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  4641. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  4642. mi := &file_volume_server_proto_msgTypes[94]
  4643. if protoimpl.UnsafeEnabled && x != nil {
  4644. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4645. if ms.LoadMessageInfo() == nil {
  4646. ms.StoreMessageInfo(mi)
  4647. }
  4648. return ms
  4649. }
  4650. return mi.MessageOf(x)
  4651. }
  4652. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  4653. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  4654. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 0}
  4655. }
  4656. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  4657. if x != nil {
  4658. return x.FileHeaderInfo
  4659. }
  4660. return ""
  4661. }
  4662. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  4663. if x != nil {
  4664. return x.RecordDelimiter
  4665. }
  4666. return ""
  4667. }
  4668. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  4669. if x != nil {
  4670. return x.FieldDelimiter
  4671. }
  4672. return ""
  4673. }
  4674. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharacter() string {
  4675. if x != nil {
  4676. return x.QuoteCharacter
  4677. }
  4678. return ""
  4679. }
  4680. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  4681. if x != nil {
  4682. return x.QuoteEscapeCharacter
  4683. }
  4684. return ""
  4685. }
  4686. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  4687. if x != nil {
  4688. return x.Comments
  4689. }
  4690. return ""
  4691. }
  4692. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  4693. if x != nil {
  4694. return x.AllowQuotedRecordDelimiter
  4695. }
  4696. return false
  4697. }
  4698. type QueryRequest_InputSerialization_JSONInput struct {
  4699. state protoimpl.MessageState
  4700. sizeCache protoimpl.SizeCache
  4701. unknownFields protoimpl.UnknownFields
  4702. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  4703. }
  4704. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  4705. *x = QueryRequest_InputSerialization_JSONInput{}
  4706. if protoimpl.UnsafeEnabled {
  4707. mi := &file_volume_server_proto_msgTypes[95]
  4708. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4709. ms.StoreMessageInfo(mi)
  4710. }
  4711. }
  4712. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  4713. return protoimpl.X.MessageStringOf(x)
  4714. }
  4715. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  4716. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  4717. mi := &file_volume_server_proto_msgTypes[95]
  4718. if protoimpl.UnsafeEnabled && x != nil {
  4719. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4720. if ms.LoadMessageInfo() == nil {
  4721. ms.StoreMessageInfo(mi)
  4722. }
  4723. return ms
  4724. }
  4725. return mi.MessageOf(x)
  4726. }
  4727. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  4728. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  4729. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 1}
  4730. }
  4731. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  4732. if x != nil {
  4733. return x.Type
  4734. }
  4735. return ""
  4736. }
  4737. type QueryRequest_InputSerialization_ParquetInput struct {
  4738. state protoimpl.MessageState
  4739. sizeCache protoimpl.SizeCache
  4740. unknownFields protoimpl.UnknownFields
  4741. }
  4742. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  4743. *x = QueryRequest_InputSerialization_ParquetInput{}
  4744. if protoimpl.UnsafeEnabled {
  4745. mi := &file_volume_server_proto_msgTypes[96]
  4746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4747. ms.StoreMessageInfo(mi)
  4748. }
  4749. }
  4750. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  4751. return protoimpl.X.MessageStringOf(x)
  4752. }
  4753. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  4754. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  4755. mi := &file_volume_server_proto_msgTypes[96]
  4756. if protoimpl.UnsafeEnabled && x != nil {
  4757. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4758. if ms.LoadMessageInfo() == nil {
  4759. ms.StoreMessageInfo(mi)
  4760. }
  4761. return ms
  4762. }
  4763. return mi.MessageOf(x)
  4764. }
  4765. // Deprecated: Use QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  4766. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  4767. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 2}
  4768. }
  4769. type QueryRequest_OutputSerialization_CSVOutput struct {
  4770. state protoimpl.MessageState
  4771. sizeCache protoimpl.SizeCache
  4772. unknownFields protoimpl.UnknownFields
  4773. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  4774. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4775. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4776. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4777. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4778. }
  4779. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  4780. *x = QueryRequest_OutputSerialization_CSVOutput{}
  4781. if protoimpl.UnsafeEnabled {
  4782. mi := &file_volume_server_proto_msgTypes[97]
  4783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4784. ms.StoreMessageInfo(mi)
  4785. }
  4786. }
  4787. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  4788. return protoimpl.X.MessageStringOf(x)
  4789. }
  4790. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  4791. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  4792. mi := &file_volume_server_proto_msgTypes[97]
  4793. if protoimpl.UnsafeEnabled && x != nil {
  4794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4795. if ms.LoadMessageInfo() == nil {
  4796. ms.StoreMessageInfo(mi)
  4797. }
  4798. return ms
  4799. }
  4800. return mi.MessageOf(x)
  4801. }
  4802. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  4803. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  4804. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 0}
  4805. }
  4806. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  4807. if x != nil {
  4808. return x.QuoteFields
  4809. }
  4810. return ""
  4811. }
  4812. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  4813. if x != nil {
  4814. return x.RecordDelimiter
  4815. }
  4816. return ""
  4817. }
  4818. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  4819. if x != nil {
  4820. return x.FieldDelimiter
  4821. }
  4822. return ""
  4823. }
  4824. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharacter() string {
  4825. if x != nil {
  4826. return x.QuoteCharacter
  4827. }
  4828. return ""
  4829. }
  4830. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  4831. if x != nil {
  4832. return x.QuoteEscapeCharacter
  4833. }
  4834. return ""
  4835. }
  4836. type QueryRequest_OutputSerialization_JSONOutput struct {
  4837. state protoimpl.MessageState
  4838. sizeCache protoimpl.SizeCache
  4839. unknownFields protoimpl.UnknownFields
  4840. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  4841. }
  4842. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  4843. *x = QueryRequest_OutputSerialization_JSONOutput{}
  4844. if protoimpl.UnsafeEnabled {
  4845. mi := &file_volume_server_proto_msgTypes[98]
  4846. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4847. ms.StoreMessageInfo(mi)
  4848. }
  4849. }
  4850. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  4851. return protoimpl.X.MessageStringOf(x)
  4852. }
  4853. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  4854. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  4855. mi := &file_volume_server_proto_msgTypes[98]
  4856. if protoimpl.UnsafeEnabled && x != nil {
  4857. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4858. if ms.LoadMessageInfo() == nil {
  4859. ms.StoreMessageInfo(mi)
  4860. }
  4861. return ms
  4862. }
  4863. return mi.MessageOf(x)
  4864. }
  4865. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  4866. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  4867. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 1}
  4868. }
  4869. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  4870. if x != nil {
  4871. return x.RecordDelimiter
  4872. }
  4873. return ""
  4874. }
  4875. var File_volume_server_proto protoreflect.FileDescriptor
  4876. var file_volume_server_proto_rawDesc = []byte{
  4877. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  4878. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4879. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x1a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e,
  4880. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  4881. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66,
  4882. 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x66,
  4883. 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x63,
  4884. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28,
  4885. 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43, 0x68, 0x65,
  4886. 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4887. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72, 0x65, 0x73,
  4888. 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x6f, 0x6c,
  4889. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65,
  4890. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
  4891. 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4892. 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4893. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  4894. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73,
  4895. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03,
  4896. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73,
  4897. 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  4898. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  4899. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45, 0x6d, 0x70,
  4900. 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4901. 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4902. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4903. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x19, 0x56,
  4904. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b,
  4905. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61, 0x72, 0x62,
  4906. 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52,
  4907. 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x5b, 0x0a,
  4908. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d,
  4909. 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4910. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4911. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61,
  4912. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70,
  4913. 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x66, 0x0a, 0x1b, 0x56, 0x61,
  4914. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  4915. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f,
  4916. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01,
  4917. 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74,
  4918. 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x61, 0x76, 0x67, 0x5f, 0x31,
  4919. 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x76, 0x67,
  4920. 0x31, 0x6d, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4921. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4922. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4923. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x1a,
  4924. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d,
  4925. 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73,
  4926. 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  4927. 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x39, 0x0a, 0x1a,
  4928. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61,
  4929. 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4930. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4931. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75, 0x75,
  4932. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65,
  4933. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  4934. 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4935. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  4936. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4937. 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
  4938. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xfb, 0x01,
  4939. 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4940. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4941. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  4942. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4943. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4944. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63,
  4945. 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c,
  4946. 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  4947. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70,
  4948. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18,
  4949. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d, 0x65,
  4950. 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69, 0x7a,
  4951. 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d, 0x6f,
  4952. 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61, 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x12, 0x1b,
  4953. 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  4954. 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x41,
  4955. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73,
  4956. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  4957. 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4958. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4959. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb, 0x01,
  4960. 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74,
  4961. 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4962. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4963. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4964. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  4965. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  4966. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  4967. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c,
  4968. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x74,
  4969. 0x61, 0x69, 0x6c, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  4970. 0x52, 0x0a, 0x74, 0x61, 0x69, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a, 0x10,
  4971. 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e,
  4972. 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52,
  4973. 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66,
  4974. 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
  4975. 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c, 0x56,
  4976. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
  4977. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4978. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4979. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63,
  4980. 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63,
  4981. 0x65, 0x4e, 0x73, 0x22, 0x42, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63,
  4982. 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70,
  4983. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
  4984. 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65,
  4985. 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4986. 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a,
  4987. 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  4988. 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56, 0x6f,
  4989. 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4990. 0x65, 0x22, 0x33, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75,
  4991. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4992. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4993. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4994. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4995. 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  4996. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4997. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4998. 0x65, 0x49, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c,
  4999. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56,
  5000. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c,
  5001. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5002. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5003. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  5004. 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5005. 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72,
  5006. 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5007. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5008. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a,
  5009. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61,
  5010. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x16, 0x56,
  5011. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65,
  5012. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5013. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5014. 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  5015. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
  5016. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5017. 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  5018. 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  5019. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5020. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5021. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5022. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x14, 0x56, 0x6f, 0x6c,
  5023. 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5024. 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c,
  5025. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f,
  5026. 0x6e, 0x6c, 0x79, 0x22, 0xf8, 0x01, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5027. 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  5028. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  5029. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5030. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5031. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  5032. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70,
  5033. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18,
  5034. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f,
  5035. 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05,
  5036. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61,
  5037. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70,
  5038. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70,
  5039. 0x65, 0x12, 0x2b, 0x0a, 0x12, 0x69, 0x6f, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72,
  5040. 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x69,
  5041. 0x6f, 0x42, 0x79, 0x74, 0x65, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22, 0x68,
  5042. 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70,
  5043. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x61, 0x70, 0x70,
  5044. 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
  5045. 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x12,
  5046. 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74,
  5047. 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
  5048. 0x73, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f, 0x43, 0x6f, 0x70,
  5049. 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5050. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5051. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x74,
  5052. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63,
  5053. 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69,
  5054. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  5055. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b,
  5056. 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  5057. 0x04, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a,
  5058. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28,
  5059. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a,
  5060. 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x18, 0x06, 0x20,
  5061. 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12,
  5062. 0x3e, 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
  5063. 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x18,
  5064. 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x53, 0x6f, 0x75,
  5065. 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x22,
  5066. 0x5b, 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5067. 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74,
  5068. 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x43,
  5069. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0e, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69,
  5070. 0x65, 0x64, 0x5f, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
  5071. 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x73, 0x4e, 0x73, 0x22, 0x60, 0x0a, 0x15,
  5072. 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65,
  5073. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5074. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5075. 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01,
  5076. 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69,
  5077. 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x39,
  5078. 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62,
  5079. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64,
  5080. 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e,
  5081. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x22, 0x7d, 0x0a, 0x15, 0x52, 0x65, 0x61,
  5082. 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65,
  5083. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5084. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5085. 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  5086. 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  5087. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66,
  5088. 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01,
  5089. 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x16, 0x52, 0x65, 0x61,
  5090. 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5091. 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x01, 0x20,
  5092. 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c,
  5093. 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01,
  5094. 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64,
  5095. 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63,
  5096. 0x72, 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  5097. 0x03, 0x74, 0x74, 0x6c, 0x12, 0x20, 0x0a, 0x0c, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61,
  5098. 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x61, 0x70, 0x70, 0x65,
  5099. 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x16, 0x57, 0x72, 0x69, 0x74, 0x65,
  5100. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5101. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5102. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b,
  5103. 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5104. 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73,
  5105. 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  5106. 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x04,
  5107. 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62,
  5108. 0x22, 0x19, 0x0a, 0x17, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  5109. 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x15, 0x52,
  5110. 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71,
  5111. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5112. 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5113. 0x49, 0x64, 0x73, 0x22, 0xa0, 0x02, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e,
  5114. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b,
  5115. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5116. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e,
  5117. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
  5118. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b,
  5119. 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65,
  5120. 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18,
  5121. 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f,
  5122. 0x62, 0x12, 0x34, 0x0a, 0x16, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62,
  5123. 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
  5124. 0x08, 0x52, 0x14, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x43, 0x6f, 0x6d,
  5125. 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f,
  5126. 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c,
  5127. 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03,
  5128. 0x63, 0x72, 0x63, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x12,
  5129. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x61,
  5130. 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c,
  5131. 0x52, 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x22, 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5132. 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  5133. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5134. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5135. 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  5136. 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64,
  5137. 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e,
  5138. 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69,
  5139. 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x84, 0x01, 0x0a,
  5140. 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65,
  5141. 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x65,
  5142. 0x64, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c,
  5143. 0x52, 0x0c, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1f,
  5144. 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x02, 0x20,
  5145. 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12,
  5146. 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b,
  5147. 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x68,
  5148. 0x75, 0x6e, 0x6b, 0x22, 0xb7, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61,
  5149. 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5150. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5151. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19,
  5152. 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  5153. 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c,
  5154. 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  5155. 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d,
  5156. 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73,
  5157. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5158. 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f, 0x75, 0x72, 0x63,
  5159. 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0x1c, 0x0a,
  5160. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69,
  5161. 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56,
  5162. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e,
  5163. 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5164. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5165. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c,
  5166. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  5167. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c,
  5168. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72,
  5169. 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0x0a, 0x1c, 0x56,
  5170. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62,
  5171. 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5172. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5173. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5174. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f,
  5175. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75,
  5176. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c,
  5177. 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x72, 0x65, 0x62,
  5178. 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01,
  5179. 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x53, 0x68, 0x61,
  5180. 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x8b, 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5181. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75,
  5182. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5183. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  5184. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  5185. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5186. 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20,
  5187. 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x22, 0x0a,
  5188. 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04,
  5189. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78, 0x46, 0x69, 0x6c,
  5190. 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61,
  5191. 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75,
  5192. 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63,
  5193. 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x6a, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01,
  5194. 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69, 0x6c, 0x65, 0x12,
  5195. 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66, 0x69, 0x6c, 0x65,
  5196. 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56, 0x69, 0x66, 0x46,
  5197. 0x69, 0x6c, 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5198. 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5199. 0x65, 0x22, 0x77, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5200. 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5201. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5202. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  5203. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  5204. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a,
  5205. 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d,
  5206. 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a, 0x1c, 0x56, 0x6f,
  5207. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65,
  5208. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a, 0x1a, 0x56, 0x6f,
  5209. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e,
  5210. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5211. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5212. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5213. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  5214. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69,
  5215. 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49,
  5216. 0x64, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5217. 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5218. 0x65, 0x22, 0x58, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5219. 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5220. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5221. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b,
  5222. 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  5223. 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f, 0x0a, 0x1d, 0x56,
  5224. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d,
  5225. 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x99, 0x01, 0x0a,
  5226. 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
  5227. 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  5228. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  5229. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f,
  5230. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49,
  5231. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  5232. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a,
  5233. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x19, 0x0a,
  5234. 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  5235. 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75,
  5236. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73,
  5237. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20,
  5238. 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f,
  5239. 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69,
  5240. 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c,
  5241. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  5242. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5243. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5244. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5245. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5246. 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18,
  5247. 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x18,
  5248. 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5249. 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75,
  5250. 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  5251. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5252. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5253. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5254. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5255. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5256. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5257. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5258. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  5259. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f,
  5260. 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  5261. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5262. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5263. 0x49, 0x64, 0x22, 0xc9, 0x03, 0x0a, 0x1c, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5264. 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5265. 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5266. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  5267. 0x12, 0x3b, 0x0a, 0x1a, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d,
  5268. 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02,
  5269. 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d,
  5270. 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a,
  5271. 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03,
  5272. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a,
  5273. 0x65, 0x12, 0x3b, 0x0a, 0x1a, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69,
  5274. 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18,
  5275. 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69,
  5276. 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22,
  5277. 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18,
  5278. 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69,
  5279. 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  5280. 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e,
  5281. 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
  5282. 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12,
  5283. 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69,
  5284. 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5285. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5286. 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
  5287. 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12,
  5288. 0x3d, 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x0a,
  5289. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5290. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e,
  5291. 0x66, 0x6f, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xbb,
  5292. 0x01, 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a,
  5293. 0x03, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x64, 0x69, 0x72, 0x12,
  5294. 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c,
  5295. 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  5296. 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20,
  5297. 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72,
  5298. 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52,
  5299. 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x46, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c,
  5300. 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01,
  5301. 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x64, 0x12,
  5302. 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
  5303. 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa3, 0x01, 0x0a,
  5304. 0x09, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x6f,
  5305. 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a,
  5306. 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c,
  5307. 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04,
  5308. 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64,
  5309. 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04,
  5310. 0x66, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01,
  5311. 0x28, 0x04, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x65, 0x61, 0x70,
  5312. 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x68, 0x65, 0x61, 0x70, 0x12, 0x14, 0x0a, 0x05,
  5313. 0x73, 0x74, 0x61, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x74, 0x61,
  5314. 0x63, 0x6b, 0x22, 0xd8, 0x01, 0x0a, 0x0a, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c,
  5315. 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70,
  5316. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  5317. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f,
  5318. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  5319. 0x64, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  5320. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  5321. 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1b, 0x0a,
  5322. 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  5323. 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f,
  5324. 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  5325. 0x04, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12,
  5326. 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01,
  5327. 0x28, 0x09, 0x52, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x9e, 0x01,
  5328. 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a, 0x05,
  5329. 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f,
  5330. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52,
  5331. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73,
  5332. 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  5333. 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65,
  5334. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  5335. 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b,
  5336. 0x42, 0x79, 0x74, 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  5337. 0x0d, 0x52, 0x0b, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0xc8,
  5338. 0x01, 0x0a, 0x20, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  5339. 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
  5340. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5341. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  5342. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  5343. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5344. 0x12, 0x38, 0x0a, 0x18, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
  5345. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  5346. 0x28, 0x09, 0x52, 0x16, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42,
  5347. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b, 0x65,
  5348. 0x65, 0x70, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c,
  5349. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f, 0x63,
  5350. 0x61, 0x6c, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f, 0x6c,
  5351. 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f,
  5352. 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c,
  5353. 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5354. 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13,
  5355. 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
  5356. 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65,
  5357. 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x92,
  5358. 0x01, 0x0a, 0x22, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  5359. 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65,
  5360. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5361. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5362. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5363. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5364. 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  5365. 0x65, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
  5366. 0x52, 0x11, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74, 0x46,
  5367. 0x69, 0x6c, 0x65, 0x22, 0x75, 0x0a, 0x23, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65,
  5368. 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f,
  5369. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72,
  5370. 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  5371. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63,
  5372. 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18,
  5373. 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64,
  5374. 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f,
  5375. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  5376. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xf0, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75,
  5377. 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  5378. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73,
  5379. 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e,
  5380. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5381. 0x2e, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69, 0x73,
  5382. 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65, 0x6d,
  5383. 0x6f, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  5384. 0x32, 0x1b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5385. 0x5f, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x6d,
  5386. 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76,
  5387. 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65,
  5388. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63, 0x65,
  5389. 0x6e, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61,
  5390. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x18, 0x05,
  5391. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x22, 0x1a, 0x0a, 0x18, 0x56, 0x6f,
  5392. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52,
  5393. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5394. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5395. 0x6e, 0x73, 0x65, 0x22, 0xdc, 0x03, 0x0a, 0x1a, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64,
  5396. 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  5397. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5398. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5399. 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  5400. 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  5401. 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f,
  5402. 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04,
  5403. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04,
  5404. 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65,
  5405. 0x12, 0x50, 0x0a, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x18, 0x06, 0x20, 0x03,
  5406. 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5407. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72,
  5408. 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5409. 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  5410. 0x61, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  5411. 0x52, 0x04, 0x61, 0x75, 0x74, 0x68, 0x12, 0x36, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5412. 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x72, 0x65,
  5413. 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f,
  5414. 0x6e, 0x66, 0x52, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x49,
  5415. 0x0a, 0x0f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
  5416. 0x6e, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5417. 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67,
  5418. 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  5419. 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x57, 0x0a, 0x07, 0x52, 0x65, 0x70,
  5420. 0x6c, 0x69, 0x63, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28,
  5421. 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63,
  5422. 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c,
  5423. 0x69, 0x63, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x70, 0x6f,
  5424. 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x72, 0x70, 0x63, 0x50, 0x6f,
  5425. 0x72, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72,
  5426. 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5427. 0x65, 0x22, 0xf4, 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5428. 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  5429. 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5430. 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f,
  5431. 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x66, 0x72, 0x6f, 0x6d, 0x46,
  5432. 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
  5433. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5434. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  5435. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06, 0x66,
  5436. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f, 0x73,
  5437. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
  5438. 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5439. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5440. 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  5441. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69,
  5442. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x14, 0x6f, 0x75, 0x74,
  5443. 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  5444. 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5445. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79,
  5446. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65,
  5447. 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6f, 0x75, 0x74,
  5448. 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  5449. 0x1a, 0x4e, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69,
  5450. 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64,
  5451. 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5452. 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
  5453. 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  5454. 0x1a, 0xd3, 0x05, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  5455. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x72,
  5456. 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  5457. 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79,
  5458. 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18,
  5459. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5460. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65,
  5461. 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  5462. 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75,
  5463. 0x74, 0x52, 0x08, 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x5a, 0x0a, 0x0a, 0x6a,
  5464. 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  5465. 0x3b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5466. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  5467. 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  5468. 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x09, 0x6a, 0x73,
  5469. 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x71, 0x75,
  5470. 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e,
  5471. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5472. 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49,
  5473. 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  5474. 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x0c,
  5475. 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xc6, 0x02, 0x0a,
  5476. 0x08, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x69, 0x6c,
  5477. 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20,
  5478. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x49,
  5479. 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65,
  5480. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72,
  5481. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27,
  5482. 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65,
  5483. 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65,
  5484. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65,
  5485. 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  5486. 0x52, 0x0e, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
  5487. 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65,
  5488. 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  5489. 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61,
  5490. 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  5491. 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  5492. 0x74, 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x71, 0x75, 0x6f, 0x74,
  5493. 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69,
  5494. 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
  5495. 0x51, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69,
  5496. 0x6d, 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70,
  5497. 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  5498. 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65,
  5499. 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xef, 0x03, 0x0a, 0x13, 0x4f, 0x75, 0x74, 0x70, 0x75,
  5500. 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5b,
  5501. 0x0a, 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01,
  5502. 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5503. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5504. 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  5505. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5506. 0x52, 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x5e, 0x0a, 0x0b, 0x6a,
  5507. 0x73, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  5508. 0x32, 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5509. 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5510. 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61,
  5511. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x52,
  5512. 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x1a, 0xe1, 0x01, 0x0a, 0x09,
  5513. 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x71, 0x75, 0x6f,
  5514. 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  5515. 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x29, 0x0a, 0x10,
  5516. 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72,
  5517. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65,
  5518. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64,
  5519. 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  5520. 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72,
  5521. 0x12, 0x27, 0x0a, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63,
  5522. 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x71, 0x75, 0x6f, 0x74, 0x65,
  5523. 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f,
  5524. 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63,
  5525. 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65,
  5526. 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x1a,
  5527. 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x29, 0x0a,
  5528. 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65,
  5529. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44,
  5530. 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x22, 0x29, 0x0a, 0x0d, 0x51, 0x75, 0x65, 0x72,
  5531. 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x63,
  5532. 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x72, 0x65, 0x63, 0x6f,
  5533. 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65,
  5534. 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5535. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5536. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a,
  5537. 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  5538. 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x22, 0xae, 0x01, 0x0a, 0x1a, 0x56,
  5539. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  5540. 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65,
  5541. 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65,
  5542. 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65,
  5543. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x12,
  5544. 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69,
  5545. 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66,
  5546. 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d,
  5547. 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18, 0x05,
  5548. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c,
  5549. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x22, 0x46, 0x0a, 0x0b, 0x50,
  5550. 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61,
  5551. 0x72, 0x67, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x72, 0x67,
  5552. 0x65, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70,
  5553. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54,
  5554. 0x79, 0x70, 0x65, 0x22, 0x7a, 0x0a, 0x0c, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5555. 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d,
  5556. 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x74, 0x61, 0x72,
  5557. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  5558. 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  5559. 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12, 0x20, 0x0a,
  5560. 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x03, 0x20,
  5561. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x32,
  5562. 0xbc, 0x24, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
  5563. 0x12, 0x5c, 0x0a, 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12,
  5564. 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5565. 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  5566. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5567. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  5568. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e,
  5569. 0x0a, 0x11, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68,
  5570. 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5571. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  5572. 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5573. 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5574. 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5575. 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x76,
  5576. 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5577. 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5578. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  5579. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75,
  5580. 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5581. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  5582. 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5583. 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d,
  5584. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x2b, 0x2e, 0x76,
  5585. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5586. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d,
  5587. 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5588. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63,
  5589. 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52,
  5590. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x61, 0x63,
  5591. 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70,
  5592. 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5593. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5594. 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d,
  5595. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5596. 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c,
  5597. 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5598. 0x6b, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5599. 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5600. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c,
  5601. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a,
  5602. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5603. 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5604. 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e,
  5605. 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x27,
  5606. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5607. 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5608. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5609. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63,
  5610. 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5611. 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e,
  5612. 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5613. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5614. 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  5615. 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5616. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63,
  5617. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5618. 0x12, 0x7c, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d,
  5619. 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5620. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5621. 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f,
  5622. 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5623. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5624. 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f,
  5625. 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x5c,
  5626. 0x0a, 0x0b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24, 0x2e,
  5627. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5628. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75,
  5629. 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5630. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75,
  5631. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x62, 0x0a, 0x0d,
  5632. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x2e,
  5633. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5634. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
  5635. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5636. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55,
  5637. 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5638. 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5639. 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5640. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5641. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5642. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5643. 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5644. 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52,
  5645. 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5646. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5647. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x71,
  5648. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5649. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61,
  5650. 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5651. 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61,
  5652. 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c,
  5653. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5654. 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65,
  5655. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5656. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5657. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73,
  5658. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5659. 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c,
  5660. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5661. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71,
  5662. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5663. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5664. 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5665. 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  5666. 0x73, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5667. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  5668. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5669. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5670. 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5671. 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79,
  5672. 0x12, 0x23, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5673. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65,
  5674. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5675. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5676. 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
  5677. 0x77, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c,
  5678. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5679. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56,
  5680. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5681. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5682. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f,
  5683. 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  5684. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x08, 0x43, 0x6f, 0x70, 0x79,
  5685. 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5686. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65,
  5687. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5688. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46,
  5689. 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
  5690. 0x65, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f,
  5691. 0x62, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5692. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  5693. 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c,
  5694. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65,
  5695. 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70,
  5696. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65,
  5697. 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5698. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64,
  5699. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5700. 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5701. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d,
  5702. 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a,
  5703. 0x0f, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62,
  5704. 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5705. 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  5706. 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c,
  5707. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72,
  5708. 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73,
  5709. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64, 0x41,
  5710. 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5711. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61,
  5712. 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  5713. 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5714. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65,
  5715. 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
  5716. 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65,
  5717. 0x6e, 0x64, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5718. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61,
  5719. 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5720. 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5721. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e,
  5722. 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
  5723. 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63,
  5724. 0x65, 0x69, 0x76, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5725. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5726. 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  5727. 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5728. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c,
  5729. 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5730. 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5731. 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x2f, 0x2e, 0x76,
  5732. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5733. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65,
  5734. 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e,
  5735. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5736. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47,
  5737. 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5738. 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5739. 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c,
  5740. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5741. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75,
  5742. 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c,
  5743. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5744. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75,
  5745. 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a,
  5746. 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43,
  5747. 0x6f, 0x70, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5748. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5749. 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5750. 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5751. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5752. 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5753. 0x12, 0x77, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5754. 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5755. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5756. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5757. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5758. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5759. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  5760. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x6f, 0x6c,
  5761. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74,
  5762. 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5763. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5764. 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d,
  5765. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5766. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5767. 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5768. 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5769. 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5770. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5771. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e,
  5772. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5773. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5774. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e,
  5775. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x70, 0x0a, 0x11, 0x56,
  5776. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64,
  5777. 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5778. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5779. 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76,
  5780. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5781. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61,
  5782. 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a,
  5783. 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c,
  5784. 0x65, 0x74, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5785. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42,
  5786. 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5787. 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5788. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62,
  5789. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5790. 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5791. 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c,
  5792. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5793. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f,
  5794. 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f,
  5795. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5796. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56,
  5797. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5798. 0x88, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  5799. 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x32, 0x2e,
  5800. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5801. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44,
  5802. 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5803. 0x74, 0x1a, 0x33, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5804. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d,
  5805. 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65,
  5806. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x8e, 0x01, 0x0a, 0x1b, 0x56,
  5807. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74,
  5808. 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x34, 0x2e, 0x76, 0x6f, 0x6c,
  5809. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5810. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46,
  5811. 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5812. 0x1a, 0x35, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5813. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  5814. 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52,
  5815. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56,
  5816. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75,
  5817. 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5818. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65,
  5819. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c,
  5820. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5821. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74,
  5822. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e,
  5823. 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65,
  5824. 0x61, 0x76, 0x65, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5825. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72,
  5826. 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5827. 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5828. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c,
  5829. 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
  5830. 0x0a, 0x13, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e,
  5831. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5832. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e,
  5833. 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75,
  5834. 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5835. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57,
  5836. 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5837. 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x1e, 0x2e,
  5838. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5839. 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e,
  5840. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5841. 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x22, 0x00,
  5842. 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64,
  5843. 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5844. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5845. 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  5846. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5847. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e,
  5848. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5849. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x04, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x1d, 0x2e,
  5850. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5851. 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76,
  5852. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5853. 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x39,
  5854. 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x61,
  5855. 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73,
  5856. 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5857. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  5858. 0x33,
  5859. }
  5860. var (
  5861. file_volume_server_proto_rawDescOnce sync.Once
  5862. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  5863. )
  5864. func file_volume_server_proto_rawDescGZIP() []byte {
  5865. file_volume_server_proto_rawDescOnce.Do(func() {
  5866. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  5867. })
  5868. return file_volume_server_proto_rawDescData
  5869. }
  5870. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 99)
  5871. var file_volume_server_proto_goTypes = []interface{}{
  5872. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  5873. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  5874. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  5875. (*Empty)(nil), // 3: volume_server_pb.Empty
  5876. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  5877. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  5878. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  5879. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  5880. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  5881. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  5882. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  5883. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  5884. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  5885. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  5886. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  5887. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  5888. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  5889. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  5890. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  5891. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  5892. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  5893. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  5894. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  5895. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  5896. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  5897. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  5898. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  5899. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  5900. (*VolumeMarkWritableRequest)(nil), // 28: volume_server_pb.VolumeMarkWritableRequest
  5901. (*VolumeMarkWritableResponse)(nil), // 29: volume_server_pb.VolumeMarkWritableResponse
  5902. (*VolumeConfigureRequest)(nil), // 30: volume_server_pb.VolumeConfigureRequest
  5903. (*VolumeConfigureResponse)(nil), // 31: volume_server_pb.VolumeConfigureResponse
  5904. (*VolumeStatusRequest)(nil), // 32: volume_server_pb.VolumeStatusRequest
  5905. (*VolumeStatusResponse)(nil), // 33: volume_server_pb.VolumeStatusResponse
  5906. (*VolumeCopyRequest)(nil), // 34: volume_server_pb.VolumeCopyRequest
  5907. (*VolumeCopyResponse)(nil), // 35: volume_server_pb.VolumeCopyResponse
  5908. (*CopyFileRequest)(nil), // 36: volume_server_pb.CopyFileRequest
  5909. (*CopyFileResponse)(nil), // 37: volume_server_pb.CopyFileResponse
  5910. (*ReadNeedleBlobRequest)(nil), // 38: volume_server_pb.ReadNeedleBlobRequest
  5911. (*ReadNeedleBlobResponse)(nil), // 39: volume_server_pb.ReadNeedleBlobResponse
  5912. (*ReadNeedleMetaRequest)(nil), // 40: volume_server_pb.ReadNeedleMetaRequest
  5913. (*ReadNeedleMetaResponse)(nil), // 41: volume_server_pb.ReadNeedleMetaResponse
  5914. (*WriteNeedleBlobRequest)(nil), // 42: volume_server_pb.WriteNeedleBlobRequest
  5915. (*WriteNeedleBlobResponse)(nil), // 43: volume_server_pb.WriteNeedleBlobResponse
  5916. (*ReadAllNeedlesRequest)(nil), // 44: volume_server_pb.ReadAllNeedlesRequest
  5917. (*ReadAllNeedlesResponse)(nil), // 45: volume_server_pb.ReadAllNeedlesResponse
  5918. (*VolumeTailSenderRequest)(nil), // 46: volume_server_pb.VolumeTailSenderRequest
  5919. (*VolumeTailSenderResponse)(nil), // 47: volume_server_pb.VolumeTailSenderResponse
  5920. (*VolumeTailReceiverRequest)(nil), // 48: volume_server_pb.VolumeTailReceiverRequest
  5921. (*VolumeTailReceiverResponse)(nil), // 49: volume_server_pb.VolumeTailReceiverResponse
  5922. (*VolumeEcShardsGenerateRequest)(nil), // 50: volume_server_pb.VolumeEcShardsGenerateRequest
  5923. (*VolumeEcShardsGenerateResponse)(nil), // 51: volume_server_pb.VolumeEcShardsGenerateResponse
  5924. (*VolumeEcShardsRebuildRequest)(nil), // 52: volume_server_pb.VolumeEcShardsRebuildRequest
  5925. (*VolumeEcShardsRebuildResponse)(nil), // 53: volume_server_pb.VolumeEcShardsRebuildResponse
  5926. (*VolumeEcShardsCopyRequest)(nil), // 54: volume_server_pb.VolumeEcShardsCopyRequest
  5927. (*VolumeEcShardsCopyResponse)(nil), // 55: volume_server_pb.VolumeEcShardsCopyResponse
  5928. (*VolumeEcShardsDeleteRequest)(nil), // 56: volume_server_pb.VolumeEcShardsDeleteRequest
  5929. (*VolumeEcShardsDeleteResponse)(nil), // 57: volume_server_pb.VolumeEcShardsDeleteResponse
  5930. (*VolumeEcShardsMountRequest)(nil), // 58: volume_server_pb.VolumeEcShardsMountRequest
  5931. (*VolumeEcShardsMountResponse)(nil), // 59: volume_server_pb.VolumeEcShardsMountResponse
  5932. (*VolumeEcShardsUnmountRequest)(nil), // 60: volume_server_pb.VolumeEcShardsUnmountRequest
  5933. (*VolumeEcShardsUnmountResponse)(nil), // 61: volume_server_pb.VolumeEcShardsUnmountResponse
  5934. (*VolumeEcShardReadRequest)(nil), // 62: volume_server_pb.VolumeEcShardReadRequest
  5935. (*VolumeEcShardReadResponse)(nil), // 63: volume_server_pb.VolumeEcShardReadResponse
  5936. (*VolumeEcBlobDeleteRequest)(nil), // 64: volume_server_pb.VolumeEcBlobDeleteRequest
  5937. (*VolumeEcBlobDeleteResponse)(nil), // 65: volume_server_pb.VolumeEcBlobDeleteResponse
  5938. (*VolumeEcShardsToVolumeRequest)(nil), // 66: volume_server_pb.VolumeEcShardsToVolumeRequest
  5939. (*VolumeEcShardsToVolumeResponse)(nil), // 67: volume_server_pb.VolumeEcShardsToVolumeResponse
  5940. (*ReadVolumeFileStatusRequest)(nil), // 68: volume_server_pb.ReadVolumeFileStatusRequest
  5941. (*ReadVolumeFileStatusResponse)(nil), // 69: volume_server_pb.ReadVolumeFileStatusResponse
  5942. (*DiskStatus)(nil), // 70: volume_server_pb.DiskStatus
  5943. (*MemStatus)(nil), // 71: volume_server_pb.MemStatus
  5944. (*RemoteFile)(nil), // 72: volume_server_pb.RemoteFile
  5945. (*VolumeInfo)(nil), // 73: volume_server_pb.VolumeInfo
  5946. (*VolumeTierMoveDatToRemoteRequest)(nil), // 74: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  5947. (*VolumeTierMoveDatToRemoteResponse)(nil), // 75: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  5948. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 76: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  5949. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 77: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  5950. (*VolumeServerStatusRequest)(nil), // 78: volume_server_pb.VolumeServerStatusRequest
  5951. (*VolumeServerStatusResponse)(nil), // 79: volume_server_pb.VolumeServerStatusResponse
  5952. (*VolumeServerLeaveRequest)(nil), // 80: volume_server_pb.VolumeServerLeaveRequest
  5953. (*VolumeServerLeaveResponse)(nil), // 81: volume_server_pb.VolumeServerLeaveResponse
  5954. (*FetchAndWriteNeedleRequest)(nil), // 82: volume_server_pb.FetchAndWriteNeedleRequest
  5955. (*FetchAndWriteNeedleResponse)(nil), // 83: volume_server_pb.FetchAndWriteNeedleResponse
  5956. (*QueryRequest)(nil), // 84: volume_server_pb.QueryRequest
  5957. (*QueriedStripe)(nil), // 85: volume_server_pb.QueriedStripe
  5958. (*VolumeNeedleStatusRequest)(nil), // 86: volume_server_pb.VolumeNeedleStatusRequest
  5959. (*VolumeNeedleStatusResponse)(nil), // 87: volume_server_pb.VolumeNeedleStatusResponse
  5960. (*PingRequest)(nil), // 88: volume_server_pb.PingRequest
  5961. (*PingResponse)(nil), // 89: volume_server_pb.PingResponse
  5962. (*FetchAndWriteNeedleRequest_Replica)(nil), // 90: volume_server_pb.FetchAndWriteNeedleRequest.Replica
  5963. (*QueryRequest_Filter)(nil), // 91: volume_server_pb.QueryRequest.Filter
  5964. (*QueryRequest_InputSerialization)(nil), // 92: volume_server_pb.QueryRequest.InputSerialization
  5965. (*QueryRequest_OutputSerialization)(nil), // 93: volume_server_pb.QueryRequest.OutputSerialization
  5966. (*QueryRequest_InputSerialization_CSVInput)(nil), // 94: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  5967. (*QueryRequest_InputSerialization_JSONInput)(nil), // 95: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  5968. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 96: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  5969. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 97: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  5970. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 98: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  5971. (*remote_pb.RemoteConf)(nil), // 99: remote_pb.RemoteConf
  5972. (*remote_pb.RemoteStorageLocation)(nil), // 100: remote_pb.RemoteStorageLocation
  5973. }
  5974. var file_volume_server_proto_depIdxs = []int32{
  5975. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  5976. 73, // 1: volume_server_pb.ReadVolumeFileStatusResponse.volume_info:type_name -> volume_server_pb.VolumeInfo
  5977. 72, // 2: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  5978. 70, // 3: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  5979. 71, // 4: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  5980. 90, // 5: volume_server_pb.FetchAndWriteNeedleRequest.replicas:type_name -> volume_server_pb.FetchAndWriteNeedleRequest.Replica
  5981. 99, // 6: volume_server_pb.FetchAndWriteNeedleRequest.remote_conf:type_name -> remote_pb.RemoteConf
  5982. 100, // 7: volume_server_pb.FetchAndWriteNeedleRequest.remote_location:type_name -> remote_pb.RemoteStorageLocation
  5983. 91, // 8: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  5984. 92, // 9: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  5985. 93, // 10: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  5986. 94, // 11: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  5987. 95, // 12: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  5988. 96, // 13: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  5989. 97, // 14: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  5990. 98, // 15: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  5991. 0, // 16: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  5992. 4, // 17: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  5993. 6, // 18: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  5994. 8, // 19: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  5995. 10, // 20: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  5996. 12, // 21: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  5997. 14, // 22: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  5998. 16, // 23: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  5999. 18, // 24: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  6000. 20, // 25: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  6001. 22, // 26: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  6002. 24, // 27: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  6003. 26, // 28: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  6004. 28, // 29: volume_server_pb.VolumeServer.VolumeMarkWritable:input_type -> volume_server_pb.VolumeMarkWritableRequest
  6005. 30, // 30: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  6006. 32, // 31: volume_server_pb.VolumeServer.VolumeStatus:input_type -> volume_server_pb.VolumeStatusRequest
  6007. 34, // 32: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  6008. 68, // 33: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  6009. 36, // 34: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  6010. 38, // 35: volume_server_pb.VolumeServer.ReadNeedleBlob:input_type -> volume_server_pb.ReadNeedleBlobRequest
  6011. 40, // 36: volume_server_pb.VolumeServer.ReadNeedleMeta:input_type -> volume_server_pb.ReadNeedleMetaRequest
  6012. 42, // 37: volume_server_pb.VolumeServer.WriteNeedleBlob:input_type -> volume_server_pb.WriteNeedleBlobRequest
  6013. 44, // 38: volume_server_pb.VolumeServer.ReadAllNeedles:input_type -> volume_server_pb.ReadAllNeedlesRequest
  6014. 46, // 39: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  6015. 48, // 40: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  6016. 50, // 41: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  6017. 52, // 42: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  6018. 54, // 43: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  6019. 56, // 44: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  6020. 58, // 45: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  6021. 60, // 46: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  6022. 62, // 47: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  6023. 64, // 48: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  6024. 66, // 49: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  6025. 74, // 50: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  6026. 76, // 51: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  6027. 78, // 52: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  6028. 80, // 53: volume_server_pb.VolumeServer.VolumeServerLeave:input_type -> volume_server_pb.VolumeServerLeaveRequest
  6029. 82, // 54: volume_server_pb.VolumeServer.FetchAndWriteNeedle:input_type -> volume_server_pb.FetchAndWriteNeedleRequest
  6030. 84, // 55: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  6031. 86, // 56: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  6032. 88, // 57: volume_server_pb.VolumeServer.Ping:input_type -> volume_server_pb.PingRequest
  6033. 1, // 58: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  6034. 5, // 59: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  6035. 7, // 60: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  6036. 9, // 61: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  6037. 11, // 62: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  6038. 13, // 63: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  6039. 15, // 64: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  6040. 17, // 65: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  6041. 19, // 66: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  6042. 21, // 67: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  6043. 23, // 68: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  6044. 25, // 69: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  6045. 27, // 70: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  6046. 29, // 71: volume_server_pb.VolumeServer.VolumeMarkWritable:output_type -> volume_server_pb.VolumeMarkWritableResponse
  6047. 31, // 72: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  6048. 33, // 73: volume_server_pb.VolumeServer.VolumeStatus:output_type -> volume_server_pb.VolumeStatusResponse
  6049. 35, // 74: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  6050. 69, // 75: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  6051. 37, // 76: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  6052. 39, // 77: volume_server_pb.VolumeServer.ReadNeedleBlob:output_type -> volume_server_pb.ReadNeedleBlobResponse
  6053. 41, // 78: volume_server_pb.VolumeServer.ReadNeedleMeta:output_type -> volume_server_pb.ReadNeedleMetaResponse
  6054. 43, // 79: volume_server_pb.VolumeServer.WriteNeedleBlob:output_type -> volume_server_pb.WriteNeedleBlobResponse
  6055. 45, // 80: volume_server_pb.VolumeServer.ReadAllNeedles:output_type -> volume_server_pb.ReadAllNeedlesResponse
  6056. 47, // 81: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  6057. 49, // 82: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  6058. 51, // 83: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  6059. 53, // 84: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  6060. 55, // 85: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  6061. 57, // 86: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  6062. 59, // 87: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  6063. 61, // 88: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  6064. 63, // 89: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  6065. 65, // 90: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  6066. 67, // 91: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  6067. 75, // 92: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  6068. 77, // 93: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  6069. 79, // 94: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  6070. 81, // 95: volume_server_pb.VolumeServer.VolumeServerLeave:output_type -> volume_server_pb.VolumeServerLeaveResponse
  6071. 83, // 96: volume_server_pb.VolumeServer.FetchAndWriteNeedle:output_type -> volume_server_pb.FetchAndWriteNeedleResponse
  6072. 85, // 97: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  6073. 87, // 98: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  6074. 89, // 99: volume_server_pb.VolumeServer.Ping:output_type -> volume_server_pb.PingResponse
  6075. 58, // [58:100] is the sub-list for method output_type
  6076. 16, // [16:58] is the sub-list for method input_type
  6077. 16, // [16:16] is the sub-list for extension type_name
  6078. 16, // [16:16] is the sub-list for extension extendee
  6079. 0, // [0:16] is the sub-list for field type_name
  6080. }
  6081. func init() { file_volume_server_proto_init() }
  6082. func file_volume_server_proto_init() {
  6083. if File_volume_server_proto != nil {
  6084. return
  6085. }
  6086. if !protoimpl.UnsafeEnabled {
  6087. file_volume_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  6088. switch v := v.(*BatchDeleteRequest); i {
  6089. case 0:
  6090. return &v.state
  6091. case 1:
  6092. return &v.sizeCache
  6093. case 2:
  6094. return &v.unknownFields
  6095. default:
  6096. return nil
  6097. }
  6098. }
  6099. file_volume_server_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  6100. switch v := v.(*BatchDeleteResponse); i {
  6101. case 0:
  6102. return &v.state
  6103. case 1:
  6104. return &v.sizeCache
  6105. case 2:
  6106. return &v.unknownFields
  6107. default:
  6108. return nil
  6109. }
  6110. }
  6111. file_volume_server_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  6112. switch v := v.(*DeleteResult); i {
  6113. case 0:
  6114. return &v.state
  6115. case 1:
  6116. return &v.sizeCache
  6117. case 2:
  6118. return &v.unknownFields
  6119. default:
  6120. return nil
  6121. }
  6122. }
  6123. file_volume_server_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  6124. switch v := v.(*Empty); i {
  6125. case 0:
  6126. return &v.state
  6127. case 1:
  6128. return &v.sizeCache
  6129. case 2:
  6130. return &v.unknownFields
  6131. default:
  6132. return nil
  6133. }
  6134. }
  6135. file_volume_server_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  6136. switch v := v.(*VacuumVolumeCheckRequest); i {
  6137. case 0:
  6138. return &v.state
  6139. case 1:
  6140. return &v.sizeCache
  6141. case 2:
  6142. return &v.unknownFields
  6143. default:
  6144. return nil
  6145. }
  6146. }
  6147. file_volume_server_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  6148. switch v := v.(*VacuumVolumeCheckResponse); i {
  6149. case 0:
  6150. return &v.state
  6151. case 1:
  6152. return &v.sizeCache
  6153. case 2:
  6154. return &v.unknownFields
  6155. default:
  6156. return nil
  6157. }
  6158. }
  6159. file_volume_server_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  6160. switch v := v.(*VacuumVolumeCompactRequest); i {
  6161. case 0:
  6162. return &v.state
  6163. case 1:
  6164. return &v.sizeCache
  6165. case 2:
  6166. return &v.unknownFields
  6167. default:
  6168. return nil
  6169. }
  6170. }
  6171. file_volume_server_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  6172. switch v := v.(*VacuumVolumeCompactResponse); i {
  6173. case 0:
  6174. return &v.state
  6175. case 1:
  6176. return &v.sizeCache
  6177. case 2:
  6178. return &v.unknownFields
  6179. default:
  6180. return nil
  6181. }
  6182. }
  6183. file_volume_server_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  6184. switch v := v.(*VacuumVolumeCommitRequest); i {
  6185. case 0:
  6186. return &v.state
  6187. case 1:
  6188. return &v.sizeCache
  6189. case 2:
  6190. return &v.unknownFields
  6191. default:
  6192. return nil
  6193. }
  6194. }
  6195. file_volume_server_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  6196. switch v := v.(*VacuumVolumeCommitResponse); i {
  6197. case 0:
  6198. return &v.state
  6199. case 1:
  6200. return &v.sizeCache
  6201. case 2:
  6202. return &v.unknownFields
  6203. default:
  6204. return nil
  6205. }
  6206. }
  6207. file_volume_server_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  6208. switch v := v.(*VacuumVolumeCleanupRequest); i {
  6209. case 0:
  6210. return &v.state
  6211. case 1:
  6212. return &v.sizeCache
  6213. case 2:
  6214. return &v.unknownFields
  6215. default:
  6216. return nil
  6217. }
  6218. }
  6219. file_volume_server_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  6220. switch v := v.(*VacuumVolumeCleanupResponse); i {
  6221. case 0:
  6222. return &v.state
  6223. case 1:
  6224. return &v.sizeCache
  6225. case 2:
  6226. return &v.unknownFields
  6227. default:
  6228. return nil
  6229. }
  6230. }
  6231. file_volume_server_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  6232. switch v := v.(*DeleteCollectionRequest); i {
  6233. case 0:
  6234. return &v.state
  6235. case 1:
  6236. return &v.sizeCache
  6237. case 2:
  6238. return &v.unknownFields
  6239. default:
  6240. return nil
  6241. }
  6242. }
  6243. file_volume_server_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  6244. switch v := v.(*DeleteCollectionResponse); i {
  6245. case 0:
  6246. return &v.state
  6247. case 1:
  6248. return &v.sizeCache
  6249. case 2:
  6250. return &v.unknownFields
  6251. default:
  6252. return nil
  6253. }
  6254. }
  6255. file_volume_server_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  6256. switch v := v.(*AllocateVolumeRequest); i {
  6257. case 0:
  6258. return &v.state
  6259. case 1:
  6260. return &v.sizeCache
  6261. case 2:
  6262. return &v.unknownFields
  6263. default:
  6264. return nil
  6265. }
  6266. }
  6267. file_volume_server_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  6268. switch v := v.(*AllocateVolumeResponse); i {
  6269. case 0:
  6270. return &v.state
  6271. case 1:
  6272. return &v.sizeCache
  6273. case 2:
  6274. return &v.unknownFields
  6275. default:
  6276. return nil
  6277. }
  6278. }
  6279. file_volume_server_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  6280. switch v := v.(*VolumeSyncStatusRequest); i {
  6281. case 0:
  6282. return &v.state
  6283. case 1:
  6284. return &v.sizeCache
  6285. case 2:
  6286. return &v.unknownFields
  6287. default:
  6288. return nil
  6289. }
  6290. }
  6291. file_volume_server_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  6292. switch v := v.(*VolumeSyncStatusResponse); i {
  6293. case 0:
  6294. return &v.state
  6295. case 1:
  6296. return &v.sizeCache
  6297. case 2:
  6298. return &v.unknownFields
  6299. default:
  6300. return nil
  6301. }
  6302. }
  6303. file_volume_server_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  6304. switch v := v.(*VolumeIncrementalCopyRequest); i {
  6305. case 0:
  6306. return &v.state
  6307. case 1:
  6308. return &v.sizeCache
  6309. case 2:
  6310. return &v.unknownFields
  6311. default:
  6312. return nil
  6313. }
  6314. }
  6315. file_volume_server_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  6316. switch v := v.(*VolumeIncrementalCopyResponse); i {
  6317. case 0:
  6318. return &v.state
  6319. case 1:
  6320. return &v.sizeCache
  6321. case 2:
  6322. return &v.unknownFields
  6323. default:
  6324. return nil
  6325. }
  6326. }
  6327. file_volume_server_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  6328. switch v := v.(*VolumeMountRequest); i {
  6329. case 0:
  6330. return &v.state
  6331. case 1:
  6332. return &v.sizeCache
  6333. case 2:
  6334. return &v.unknownFields
  6335. default:
  6336. return nil
  6337. }
  6338. }
  6339. file_volume_server_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  6340. switch v := v.(*VolumeMountResponse); i {
  6341. case 0:
  6342. return &v.state
  6343. case 1:
  6344. return &v.sizeCache
  6345. case 2:
  6346. return &v.unknownFields
  6347. default:
  6348. return nil
  6349. }
  6350. }
  6351. file_volume_server_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  6352. switch v := v.(*VolumeUnmountRequest); i {
  6353. case 0:
  6354. return &v.state
  6355. case 1:
  6356. return &v.sizeCache
  6357. case 2:
  6358. return &v.unknownFields
  6359. default:
  6360. return nil
  6361. }
  6362. }
  6363. file_volume_server_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  6364. switch v := v.(*VolumeUnmountResponse); i {
  6365. case 0:
  6366. return &v.state
  6367. case 1:
  6368. return &v.sizeCache
  6369. case 2:
  6370. return &v.unknownFields
  6371. default:
  6372. return nil
  6373. }
  6374. }
  6375. file_volume_server_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  6376. switch v := v.(*VolumeDeleteRequest); i {
  6377. case 0:
  6378. return &v.state
  6379. case 1:
  6380. return &v.sizeCache
  6381. case 2:
  6382. return &v.unknownFields
  6383. default:
  6384. return nil
  6385. }
  6386. }
  6387. file_volume_server_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  6388. switch v := v.(*VolumeDeleteResponse); i {
  6389. case 0:
  6390. return &v.state
  6391. case 1:
  6392. return &v.sizeCache
  6393. case 2:
  6394. return &v.unknownFields
  6395. default:
  6396. return nil
  6397. }
  6398. }
  6399. file_volume_server_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  6400. switch v := v.(*VolumeMarkReadonlyRequest); i {
  6401. case 0:
  6402. return &v.state
  6403. case 1:
  6404. return &v.sizeCache
  6405. case 2:
  6406. return &v.unknownFields
  6407. default:
  6408. return nil
  6409. }
  6410. }
  6411. file_volume_server_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  6412. switch v := v.(*VolumeMarkReadonlyResponse); i {
  6413. case 0:
  6414. return &v.state
  6415. case 1:
  6416. return &v.sizeCache
  6417. case 2:
  6418. return &v.unknownFields
  6419. default:
  6420. return nil
  6421. }
  6422. }
  6423. file_volume_server_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  6424. switch v := v.(*VolumeMarkWritableRequest); i {
  6425. case 0:
  6426. return &v.state
  6427. case 1:
  6428. return &v.sizeCache
  6429. case 2:
  6430. return &v.unknownFields
  6431. default:
  6432. return nil
  6433. }
  6434. }
  6435. file_volume_server_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  6436. switch v := v.(*VolumeMarkWritableResponse); i {
  6437. case 0:
  6438. return &v.state
  6439. case 1:
  6440. return &v.sizeCache
  6441. case 2:
  6442. return &v.unknownFields
  6443. default:
  6444. return nil
  6445. }
  6446. }
  6447. file_volume_server_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  6448. switch v := v.(*VolumeConfigureRequest); i {
  6449. case 0:
  6450. return &v.state
  6451. case 1:
  6452. return &v.sizeCache
  6453. case 2:
  6454. return &v.unknownFields
  6455. default:
  6456. return nil
  6457. }
  6458. }
  6459. file_volume_server_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  6460. switch v := v.(*VolumeConfigureResponse); i {
  6461. case 0:
  6462. return &v.state
  6463. case 1:
  6464. return &v.sizeCache
  6465. case 2:
  6466. return &v.unknownFields
  6467. default:
  6468. return nil
  6469. }
  6470. }
  6471. file_volume_server_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  6472. switch v := v.(*VolumeStatusRequest); i {
  6473. case 0:
  6474. return &v.state
  6475. case 1:
  6476. return &v.sizeCache
  6477. case 2:
  6478. return &v.unknownFields
  6479. default:
  6480. return nil
  6481. }
  6482. }
  6483. file_volume_server_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  6484. switch v := v.(*VolumeStatusResponse); i {
  6485. case 0:
  6486. return &v.state
  6487. case 1:
  6488. return &v.sizeCache
  6489. case 2:
  6490. return &v.unknownFields
  6491. default:
  6492. return nil
  6493. }
  6494. }
  6495. file_volume_server_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  6496. switch v := v.(*VolumeCopyRequest); i {
  6497. case 0:
  6498. return &v.state
  6499. case 1:
  6500. return &v.sizeCache
  6501. case 2:
  6502. return &v.unknownFields
  6503. default:
  6504. return nil
  6505. }
  6506. }
  6507. file_volume_server_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  6508. switch v := v.(*VolumeCopyResponse); i {
  6509. case 0:
  6510. return &v.state
  6511. case 1:
  6512. return &v.sizeCache
  6513. case 2:
  6514. return &v.unknownFields
  6515. default:
  6516. return nil
  6517. }
  6518. }
  6519. file_volume_server_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  6520. switch v := v.(*CopyFileRequest); i {
  6521. case 0:
  6522. return &v.state
  6523. case 1:
  6524. return &v.sizeCache
  6525. case 2:
  6526. return &v.unknownFields
  6527. default:
  6528. return nil
  6529. }
  6530. }
  6531. file_volume_server_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  6532. switch v := v.(*CopyFileResponse); i {
  6533. case 0:
  6534. return &v.state
  6535. case 1:
  6536. return &v.sizeCache
  6537. case 2:
  6538. return &v.unknownFields
  6539. default:
  6540. return nil
  6541. }
  6542. }
  6543. file_volume_server_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  6544. switch v := v.(*ReadNeedleBlobRequest); i {
  6545. case 0:
  6546. return &v.state
  6547. case 1:
  6548. return &v.sizeCache
  6549. case 2:
  6550. return &v.unknownFields
  6551. default:
  6552. return nil
  6553. }
  6554. }
  6555. file_volume_server_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  6556. switch v := v.(*ReadNeedleBlobResponse); i {
  6557. case 0:
  6558. return &v.state
  6559. case 1:
  6560. return &v.sizeCache
  6561. case 2:
  6562. return &v.unknownFields
  6563. default:
  6564. return nil
  6565. }
  6566. }
  6567. file_volume_server_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  6568. switch v := v.(*ReadNeedleMetaRequest); i {
  6569. case 0:
  6570. return &v.state
  6571. case 1:
  6572. return &v.sizeCache
  6573. case 2:
  6574. return &v.unknownFields
  6575. default:
  6576. return nil
  6577. }
  6578. }
  6579. file_volume_server_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  6580. switch v := v.(*ReadNeedleMetaResponse); i {
  6581. case 0:
  6582. return &v.state
  6583. case 1:
  6584. return &v.sizeCache
  6585. case 2:
  6586. return &v.unknownFields
  6587. default:
  6588. return nil
  6589. }
  6590. }
  6591. file_volume_server_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  6592. switch v := v.(*WriteNeedleBlobRequest); i {
  6593. case 0:
  6594. return &v.state
  6595. case 1:
  6596. return &v.sizeCache
  6597. case 2:
  6598. return &v.unknownFields
  6599. default:
  6600. return nil
  6601. }
  6602. }
  6603. file_volume_server_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  6604. switch v := v.(*WriteNeedleBlobResponse); i {
  6605. case 0:
  6606. return &v.state
  6607. case 1:
  6608. return &v.sizeCache
  6609. case 2:
  6610. return &v.unknownFields
  6611. default:
  6612. return nil
  6613. }
  6614. }
  6615. file_volume_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  6616. switch v := v.(*ReadAllNeedlesRequest); i {
  6617. case 0:
  6618. return &v.state
  6619. case 1:
  6620. return &v.sizeCache
  6621. case 2:
  6622. return &v.unknownFields
  6623. default:
  6624. return nil
  6625. }
  6626. }
  6627. file_volume_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  6628. switch v := v.(*ReadAllNeedlesResponse); i {
  6629. case 0:
  6630. return &v.state
  6631. case 1:
  6632. return &v.sizeCache
  6633. case 2:
  6634. return &v.unknownFields
  6635. default:
  6636. return nil
  6637. }
  6638. }
  6639. file_volume_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  6640. switch v := v.(*VolumeTailSenderRequest); i {
  6641. case 0:
  6642. return &v.state
  6643. case 1:
  6644. return &v.sizeCache
  6645. case 2:
  6646. return &v.unknownFields
  6647. default:
  6648. return nil
  6649. }
  6650. }
  6651. file_volume_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  6652. switch v := v.(*VolumeTailSenderResponse); i {
  6653. case 0:
  6654. return &v.state
  6655. case 1:
  6656. return &v.sizeCache
  6657. case 2:
  6658. return &v.unknownFields
  6659. default:
  6660. return nil
  6661. }
  6662. }
  6663. file_volume_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  6664. switch v := v.(*VolumeTailReceiverRequest); i {
  6665. case 0:
  6666. return &v.state
  6667. case 1:
  6668. return &v.sizeCache
  6669. case 2:
  6670. return &v.unknownFields
  6671. default:
  6672. return nil
  6673. }
  6674. }
  6675. file_volume_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  6676. switch v := v.(*VolumeTailReceiverResponse); i {
  6677. case 0:
  6678. return &v.state
  6679. case 1:
  6680. return &v.sizeCache
  6681. case 2:
  6682. return &v.unknownFields
  6683. default:
  6684. return nil
  6685. }
  6686. }
  6687. file_volume_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  6688. switch v := v.(*VolumeEcShardsGenerateRequest); i {
  6689. case 0:
  6690. return &v.state
  6691. case 1:
  6692. return &v.sizeCache
  6693. case 2:
  6694. return &v.unknownFields
  6695. default:
  6696. return nil
  6697. }
  6698. }
  6699. file_volume_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  6700. switch v := v.(*VolumeEcShardsGenerateResponse); i {
  6701. case 0:
  6702. return &v.state
  6703. case 1:
  6704. return &v.sizeCache
  6705. case 2:
  6706. return &v.unknownFields
  6707. default:
  6708. return nil
  6709. }
  6710. }
  6711. file_volume_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  6712. switch v := v.(*VolumeEcShardsRebuildRequest); i {
  6713. case 0:
  6714. return &v.state
  6715. case 1:
  6716. return &v.sizeCache
  6717. case 2:
  6718. return &v.unknownFields
  6719. default:
  6720. return nil
  6721. }
  6722. }
  6723. file_volume_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  6724. switch v := v.(*VolumeEcShardsRebuildResponse); i {
  6725. case 0:
  6726. return &v.state
  6727. case 1:
  6728. return &v.sizeCache
  6729. case 2:
  6730. return &v.unknownFields
  6731. default:
  6732. return nil
  6733. }
  6734. }
  6735. file_volume_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  6736. switch v := v.(*VolumeEcShardsCopyRequest); i {
  6737. case 0:
  6738. return &v.state
  6739. case 1:
  6740. return &v.sizeCache
  6741. case 2:
  6742. return &v.unknownFields
  6743. default:
  6744. return nil
  6745. }
  6746. }
  6747. file_volume_server_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  6748. switch v := v.(*VolumeEcShardsCopyResponse); i {
  6749. case 0:
  6750. return &v.state
  6751. case 1:
  6752. return &v.sizeCache
  6753. case 2:
  6754. return &v.unknownFields
  6755. default:
  6756. return nil
  6757. }
  6758. }
  6759. file_volume_server_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  6760. switch v := v.(*VolumeEcShardsDeleteRequest); i {
  6761. case 0:
  6762. return &v.state
  6763. case 1:
  6764. return &v.sizeCache
  6765. case 2:
  6766. return &v.unknownFields
  6767. default:
  6768. return nil
  6769. }
  6770. }
  6771. file_volume_server_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  6772. switch v := v.(*VolumeEcShardsDeleteResponse); i {
  6773. case 0:
  6774. return &v.state
  6775. case 1:
  6776. return &v.sizeCache
  6777. case 2:
  6778. return &v.unknownFields
  6779. default:
  6780. return nil
  6781. }
  6782. }
  6783. file_volume_server_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  6784. switch v := v.(*VolumeEcShardsMountRequest); i {
  6785. case 0:
  6786. return &v.state
  6787. case 1:
  6788. return &v.sizeCache
  6789. case 2:
  6790. return &v.unknownFields
  6791. default:
  6792. return nil
  6793. }
  6794. }
  6795. file_volume_server_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  6796. switch v := v.(*VolumeEcShardsMountResponse); i {
  6797. case 0:
  6798. return &v.state
  6799. case 1:
  6800. return &v.sizeCache
  6801. case 2:
  6802. return &v.unknownFields
  6803. default:
  6804. return nil
  6805. }
  6806. }
  6807. file_volume_server_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  6808. switch v := v.(*VolumeEcShardsUnmountRequest); i {
  6809. case 0:
  6810. return &v.state
  6811. case 1:
  6812. return &v.sizeCache
  6813. case 2:
  6814. return &v.unknownFields
  6815. default:
  6816. return nil
  6817. }
  6818. }
  6819. file_volume_server_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  6820. switch v := v.(*VolumeEcShardsUnmountResponse); i {
  6821. case 0:
  6822. return &v.state
  6823. case 1:
  6824. return &v.sizeCache
  6825. case 2:
  6826. return &v.unknownFields
  6827. default:
  6828. return nil
  6829. }
  6830. }
  6831. file_volume_server_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  6832. switch v := v.(*VolumeEcShardReadRequest); i {
  6833. case 0:
  6834. return &v.state
  6835. case 1:
  6836. return &v.sizeCache
  6837. case 2:
  6838. return &v.unknownFields
  6839. default:
  6840. return nil
  6841. }
  6842. }
  6843. file_volume_server_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  6844. switch v := v.(*VolumeEcShardReadResponse); i {
  6845. case 0:
  6846. return &v.state
  6847. case 1:
  6848. return &v.sizeCache
  6849. case 2:
  6850. return &v.unknownFields
  6851. default:
  6852. return nil
  6853. }
  6854. }
  6855. file_volume_server_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  6856. switch v := v.(*VolumeEcBlobDeleteRequest); i {
  6857. case 0:
  6858. return &v.state
  6859. case 1:
  6860. return &v.sizeCache
  6861. case 2:
  6862. return &v.unknownFields
  6863. default:
  6864. return nil
  6865. }
  6866. }
  6867. file_volume_server_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  6868. switch v := v.(*VolumeEcBlobDeleteResponse); i {
  6869. case 0:
  6870. return &v.state
  6871. case 1:
  6872. return &v.sizeCache
  6873. case 2:
  6874. return &v.unknownFields
  6875. default:
  6876. return nil
  6877. }
  6878. }
  6879. file_volume_server_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  6880. switch v := v.(*VolumeEcShardsToVolumeRequest); i {
  6881. case 0:
  6882. return &v.state
  6883. case 1:
  6884. return &v.sizeCache
  6885. case 2:
  6886. return &v.unknownFields
  6887. default:
  6888. return nil
  6889. }
  6890. }
  6891. file_volume_server_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  6892. switch v := v.(*VolumeEcShardsToVolumeResponse); i {
  6893. case 0:
  6894. return &v.state
  6895. case 1:
  6896. return &v.sizeCache
  6897. case 2:
  6898. return &v.unknownFields
  6899. default:
  6900. return nil
  6901. }
  6902. }
  6903. file_volume_server_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
  6904. switch v := v.(*ReadVolumeFileStatusRequest); i {
  6905. case 0:
  6906. return &v.state
  6907. case 1:
  6908. return &v.sizeCache
  6909. case 2:
  6910. return &v.unknownFields
  6911. default:
  6912. return nil
  6913. }
  6914. }
  6915. file_volume_server_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
  6916. switch v := v.(*ReadVolumeFileStatusResponse); i {
  6917. case 0:
  6918. return &v.state
  6919. case 1:
  6920. return &v.sizeCache
  6921. case 2:
  6922. return &v.unknownFields
  6923. default:
  6924. return nil
  6925. }
  6926. }
  6927. file_volume_server_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
  6928. switch v := v.(*DiskStatus); i {
  6929. case 0:
  6930. return &v.state
  6931. case 1:
  6932. return &v.sizeCache
  6933. case 2:
  6934. return &v.unknownFields
  6935. default:
  6936. return nil
  6937. }
  6938. }
  6939. file_volume_server_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
  6940. switch v := v.(*MemStatus); i {
  6941. case 0:
  6942. return &v.state
  6943. case 1:
  6944. return &v.sizeCache
  6945. case 2:
  6946. return &v.unknownFields
  6947. default:
  6948. return nil
  6949. }
  6950. }
  6951. file_volume_server_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
  6952. switch v := v.(*RemoteFile); i {
  6953. case 0:
  6954. return &v.state
  6955. case 1:
  6956. return &v.sizeCache
  6957. case 2:
  6958. return &v.unknownFields
  6959. default:
  6960. return nil
  6961. }
  6962. }
  6963. file_volume_server_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
  6964. switch v := v.(*VolumeInfo); i {
  6965. case 0:
  6966. return &v.state
  6967. case 1:
  6968. return &v.sizeCache
  6969. case 2:
  6970. return &v.unknownFields
  6971. default:
  6972. return nil
  6973. }
  6974. }
  6975. file_volume_server_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
  6976. switch v := v.(*VolumeTierMoveDatToRemoteRequest); i {
  6977. case 0:
  6978. return &v.state
  6979. case 1:
  6980. return &v.sizeCache
  6981. case 2:
  6982. return &v.unknownFields
  6983. default:
  6984. return nil
  6985. }
  6986. }
  6987. file_volume_server_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
  6988. switch v := v.(*VolumeTierMoveDatToRemoteResponse); i {
  6989. case 0:
  6990. return &v.state
  6991. case 1:
  6992. return &v.sizeCache
  6993. case 2:
  6994. return &v.unknownFields
  6995. default:
  6996. return nil
  6997. }
  6998. }
  6999. file_volume_server_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
  7000. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); i {
  7001. case 0:
  7002. return &v.state
  7003. case 1:
  7004. return &v.sizeCache
  7005. case 2:
  7006. return &v.unknownFields
  7007. default:
  7008. return nil
  7009. }
  7010. }
  7011. file_volume_server_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
  7012. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); i {
  7013. case 0:
  7014. return &v.state
  7015. case 1:
  7016. return &v.sizeCache
  7017. case 2:
  7018. return &v.unknownFields
  7019. default:
  7020. return nil
  7021. }
  7022. }
  7023. file_volume_server_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
  7024. switch v := v.(*VolumeServerStatusRequest); i {
  7025. case 0:
  7026. return &v.state
  7027. case 1:
  7028. return &v.sizeCache
  7029. case 2:
  7030. return &v.unknownFields
  7031. default:
  7032. return nil
  7033. }
  7034. }
  7035. file_volume_server_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
  7036. switch v := v.(*VolumeServerStatusResponse); i {
  7037. case 0:
  7038. return &v.state
  7039. case 1:
  7040. return &v.sizeCache
  7041. case 2:
  7042. return &v.unknownFields
  7043. default:
  7044. return nil
  7045. }
  7046. }
  7047. file_volume_server_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
  7048. switch v := v.(*VolumeServerLeaveRequest); i {
  7049. case 0:
  7050. return &v.state
  7051. case 1:
  7052. return &v.sizeCache
  7053. case 2:
  7054. return &v.unknownFields
  7055. default:
  7056. return nil
  7057. }
  7058. }
  7059. file_volume_server_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
  7060. switch v := v.(*VolumeServerLeaveResponse); i {
  7061. case 0:
  7062. return &v.state
  7063. case 1:
  7064. return &v.sizeCache
  7065. case 2:
  7066. return &v.unknownFields
  7067. default:
  7068. return nil
  7069. }
  7070. }
  7071. file_volume_server_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
  7072. switch v := v.(*FetchAndWriteNeedleRequest); i {
  7073. case 0:
  7074. return &v.state
  7075. case 1:
  7076. return &v.sizeCache
  7077. case 2:
  7078. return &v.unknownFields
  7079. default:
  7080. return nil
  7081. }
  7082. }
  7083. file_volume_server_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
  7084. switch v := v.(*FetchAndWriteNeedleResponse); i {
  7085. case 0:
  7086. return &v.state
  7087. case 1:
  7088. return &v.sizeCache
  7089. case 2:
  7090. return &v.unknownFields
  7091. default:
  7092. return nil
  7093. }
  7094. }
  7095. file_volume_server_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
  7096. switch v := v.(*QueryRequest); i {
  7097. case 0:
  7098. return &v.state
  7099. case 1:
  7100. return &v.sizeCache
  7101. case 2:
  7102. return &v.unknownFields
  7103. default:
  7104. return nil
  7105. }
  7106. }
  7107. file_volume_server_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
  7108. switch v := v.(*QueriedStripe); i {
  7109. case 0:
  7110. return &v.state
  7111. case 1:
  7112. return &v.sizeCache
  7113. case 2:
  7114. return &v.unknownFields
  7115. default:
  7116. return nil
  7117. }
  7118. }
  7119. file_volume_server_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
  7120. switch v := v.(*VolumeNeedleStatusRequest); i {
  7121. case 0:
  7122. return &v.state
  7123. case 1:
  7124. return &v.sizeCache
  7125. case 2:
  7126. return &v.unknownFields
  7127. default:
  7128. return nil
  7129. }
  7130. }
  7131. file_volume_server_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
  7132. switch v := v.(*VolumeNeedleStatusResponse); i {
  7133. case 0:
  7134. return &v.state
  7135. case 1:
  7136. return &v.sizeCache
  7137. case 2:
  7138. return &v.unknownFields
  7139. default:
  7140. return nil
  7141. }
  7142. }
  7143. file_volume_server_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
  7144. switch v := v.(*PingRequest); i {
  7145. case 0:
  7146. return &v.state
  7147. case 1:
  7148. return &v.sizeCache
  7149. case 2:
  7150. return &v.unknownFields
  7151. default:
  7152. return nil
  7153. }
  7154. }
  7155. file_volume_server_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
  7156. switch v := v.(*PingResponse); i {
  7157. case 0:
  7158. return &v.state
  7159. case 1:
  7160. return &v.sizeCache
  7161. case 2:
  7162. return &v.unknownFields
  7163. default:
  7164. return nil
  7165. }
  7166. }
  7167. file_volume_server_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} {
  7168. switch v := v.(*FetchAndWriteNeedleRequest_Replica); i {
  7169. case 0:
  7170. return &v.state
  7171. case 1:
  7172. return &v.sizeCache
  7173. case 2:
  7174. return &v.unknownFields
  7175. default:
  7176. return nil
  7177. }
  7178. }
  7179. file_volume_server_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} {
  7180. switch v := v.(*QueryRequest_Filter); i {
  7181. case 0:
  7182. return &v.state
  7183. case 1:
  7184. return &v.sizeCache
  7185. case 2:
  7186. return &v.unknownFields
  7187. default:
  7188. return nil
  7189. }
  7190. }
  7191. file_volume_server_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} {
  7192. switch v := v.(*QueryRequest_InputSerialization); i {
  7193. case 0:
  7194. return &v.state
  7195. case 1:
  7196. return &v.sizeCache
  7197. case 2:
  7198. return &v.unknownFields
  7199. default:
  7200. return nil
  7201. }
  7202. }
  7203. file_volume_server_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} {
  7204. switch v := v.(*QueryRequest_OutputSerialization); i {
  7205. case 0:
  7206. return &v.state
  7207. case 1:
  7208. return &v.sizeCache
  7209. case 2:
  7210. return &v.unknownFields
  7211. default:
  7212. return nil
  7213. }
  7214. }
  7215. file_volume_server_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} {
  7216. switch v := v.(*QueryRequest_InputSerialization_CSVInput); i {
  7217. case 0:
  7218. return &v.state
  7219. case 1:
  7220. return &v.sizeCache
  7221. case 2:
  7222. return &v.unknownFields
  7223. default:
  7224. return nil
  7225. }
  7226. }
  7227. file_volume_server_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} {
  7228. switch v := v.(*QueryRequest_InputSerialization_JSONInput); i {
  7229. case 0:
  7230. return &v.state
  7231. case 1:
  7232. return &v.sizeCache
  7233. case 2:
  7234. return &v.unknownFields
  7235. default:
  7236. return nil
  7237. }
  7238. }
  7239. file_volume_server_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} {
  7240. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  7241. case 0:
  7242. return &v.state
  7243. case 1:
  7244. return &v.sizeCache
  7245. case 2:
  7246. return &v.unknownFields
  7247. default:
  7248. return nil
  7249. }
  7250. }
  7251. file_volume_server_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} {
  7252. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  7253. case 0:
  7254. return &v.state
  7255. case 1:
  7256. return &v.sizeCache
  7257. case 2:
  7258. return &v.unknownFields
  7259. default:
  7260. return nil
  7261. }
  7262. }
  7263. file_volume_server_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} {
  7264. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  7265. case 0:
  7266. return &v.state
  7267. case 1:
  7268. return &v.sizeCache
  7269. case 2:
  7270. return &v.unknownFields
  7271. default:
  7272. return nil
  7273. }
  7274. }
  7275. }
  7276. type x struct{}
  7277. out := protoimpl.TypeBuilder{
  7278. File: protoimpl.DescBuilder{
  7279. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  7280. RawDescriptor: file_volume_server_proto_rawDesc,
  7281. NumEnums: 0,
  7282. NumMessages: 99,
  7283. NumExtensions: 0,
  7284. NumServices: 1,
  7285. },
  7286. GoTypes: file_volume_server_proto_goTypes,
  7287. DependencyIndexes: file_volume_server_proto_depIdxs,
  7288. MessageInfos: file_volume_server_proto_msgTypes,
  7289. }.Build()
  7290. File_volume_server_proto = out.File
  7291. file_volume_server_proto_rawDesc = nil
  7292. file_volume_server_proto_goTypes = nil
  7293. file_volume_server_proto_depIdxs = nil
  7294. }