volume_server.pb.go 303 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.21.12
  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. ETag string `protobuf:"bytes,1,opt,name=e_tag,json=eTag,proto3" json:"e_tag,omitempty"`
  4050. }
  4051. func (x *FetchAndWriteNeedleResponse) Reset() {
  4052. *x = FetchAndWriteNeedleResponse{}
  4053. if protoimpl.UnsafeEnabled {
  4054. mi := &file_volume_server_proto_msgTypes[83]
  4055. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4056. ms.StoreMessageInfo(mi)
  4057. }
  4058. }
  4059. func (x *FetchAndWriteNeedleResponse) String() string {
  4060. return protoimpl.X.MessageStringOf(x)
  4061. }
  4062. func (*FetchAndWriteNeedleResponse) ProtoMessage() {}
  4063. func (x *FetchAndWriteNeedleResponse) ProtoReflect() protoreflect.Message {
  4064. mi := &file_volume_server_proto_msgTypes[83]
  4065. if protoimpl.UnsafeEnabled && x != nil {
  4066. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4067. if ms.LoadMessageInfo() == nil {
  4068. ms.StoreMessageInfo(mi)
  4069. }
  4070. return ms
  4071. }
  4072. return mi.MessageOf(x)
  4073. }
  4074. // Deprecated: Use FetchAndWriteNeedleResponse.ProtoReflect.Descriptor instead.
  4075. func (*FetchAndWriteNeedleResponse) Descriptor() ([]byte, []int) {
  4076. return file_volume_server_proto_rawDescGZIP(), []int{83}
  4077. }
  4078. func (x *FetchAndWriteNeedleResponse) GetETag() string {
  4079. if x != nil {
  4080. return x.ETag
  4081. }
  4082. return ""
  4083. }
  4084. // select on volume servers
  4085. type QueryRequest struct {
  4086. state protoimpl.MessageState
  4087. sizeCache protoimpl.SizeCache
  4088. unknownFields protoimpl.UnknownFields
  4089. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  4090. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  4091. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  4092. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  4093. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  4094. }
  4095. func (x *QueryRequest) Reset() {
  4096. *x = QueryRequest{}
  4097. if protoimpl.UnsafeEnabled {
  4098. mi := &file_volume_server_proto_msgTypes[84]
  4099. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4100. ms.StoreMessageInfo(mi)
  4101. }
  4102. }
  4103. func (x *QueryRequest) String() string {
  4104. return protoimpl.X.MessageStringOf(x)
  4105. }
  4106. func (*QueryRequest) ProtoMessage() {}
  4107. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  4108. mi := &file_volume_server_proto_msgTypes[84]
  4109. if protoimpl.UnsafeEnabled && x != nil {
  4110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4111. if ms.LoadMessageInfo() == nil {
  4112. ms.StoreMessageInfo(mi)
  4113. }
  4114. return ms
  4115. }
  4116. return mi.MessageOf(x)
  4117. }
  4118. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  4119. func (*QueryRequest) Descriptor() ([]byte, []int) {
  4120. return file_volume_server_proto_rawDescGZIP(), []int{84}
  4121. }
  4122. func (x *QueryRequest) GetSelections() []string {
  4123. if x != nil {
  4124. return x.Selections
  4125. }
  4126. return nil
  4127. }
  4128. func (x *QueryRequest) GetFromFileIds() []string {
  4129. if x != nil {
  4130. return x.FromFileIds
  4131. }
  4132. return nil
  4133. }
  4134. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  4135. if x != nil {
  4136. return x.Filter
  4137. }
  4138. return nil
  4139. }
  4140. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  4141. if x != nil {
  4142. return x.InputSerialization
  4143. }
  4144. return nil
  4145. }
  4146. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  4147. if x != nil {
  4148. return x.OutputSerialization
  4149. }
  4150. return nil
  4151. }
  4152. type QueriedStripe struct {
  4153. state protoimpl.MessageState
  4154. sizeCache protoimpl.SizeCache
  4155. unknownFields protoimpl.UnknownFields
  4156. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  4157. }
  4158. func (x *QueriedStripe) Reset() {
  4159. *x = QueriedStripe{}
  4160. if protoimpl.UnsafeEnabled {
  4161. mi := &file_volume_server_proto_msgTypes[85]
  4162. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4163. ms.StoreMessageInfo(mi)
  4164. }
  4165. }
  4166. func (x *QueriedStripe) String() string {
  4167. return protoimpl.X.MessageStringOf(x)
  4168. }
  4169. func (*QueriedStripe) ProtoMessage() {}
  4170. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  4171. mi := &file_volume_server_proto_msgTypes[85]
  4172. if protoimpl.UnsafeEnabled && x != nil {
  4173. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4174. if ms.LoadMessageInfo() == nil {
  4175. ms.StoreMessageInfo(mi)
  4176. }
  4177. return ms
  4178. }
  4179. return mi.MessageOf(x)
  4180. }
  4181. // Deprecated: Use QueriedStripe.ProtoReflect.Descriptor instead.
  4182. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  4183. return file_volume_server_proto_rawDescGZIP(), []int{85}
  4184. }
  4185. func (x *QueriedStripe) GetRecords() []byte {
  4186. if x != nil {
  4187. return x.Records
  4188. }
  4189. return nil
  4190. }
  4191. type VolumeNeedleStatusRequest struct {
  4192. state protoimpl.MessageState
  4193. sizeCache protoimpl.SizeCache
  4194. unknownFields protoimpl.UnknownFields
  4195. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  4196. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4197. }
  4198. func (x *VolumeNeedleStatusRequest) Reset() {
  4199. *x = VolumeNeedleStatusRequest{}
  4200. if protoimpl.UnsafeEnabled {
  4201. mi := &file_volume_server_proto_msgTypes[86]
  4202. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4203. ms.StoreMessageInfo(mi)
  4204. }
  4205. }
  4206. func (x *VolumeNeedleStatusRequest) String() string {
  4207. return protoimpl.X.MessageStringOf(x)
  4208. }
  4209. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  4210. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  4211. mi := &file_volume_server_proto_msgTypes[86]
  4212. if protoimpl.UnsafeEnabled && x != nil {
  4213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4214. if ms.LoadMessageInfo() == nil {
  4215. ms.StoreMessageInfo(mi)
  4216. }
  4217. return ms
  4218. }
  4219. return mi.MessageOf(x)
  4220. }
  4221. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  4222. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  4223. return file_volume_server_proto_rawDescGZIP(), []int{86}
  4224. }
  4225. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  4226. if x != nil {
  4227. return x.VolumeId
  4228. }
  4229. return 0
  4230. }
  4231. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  4232. if x != nil {
  4233. return x.NeedleId
  4234. }
  4235. return 0
  4236. }
  4237. type VolumeNeedleStatusResponse struct {
  4238. state protoimpl.MessageState
  4239. sizeCache protoimpl.SizeCache
  4240. unknownFields protoimpl.UnknownFields
  4241. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4242. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  4243. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  4244. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  4245. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  4246. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  4247. }
  4248. func (x *VolumeNeedleStatusResponse) Reset() {
  4249. *x = VolumeNeedleStatusResponse{}
  4250. if protoimpl.UnsafeEnabled {
  4251. mi := &file_volume_server_proto_msgTypes[87]
  4252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4253. ms.StoreMessageInfo(mi)
  4254. }
  4255. }
  4256. func (x *VolumeNeedleStatusResponse) String() string {
  4257. return protoimpl.X.MessageStringOf(x)
  4258. }
  4259. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  4260. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  4261. mi := &file_volume_server_proto_msgTypes[87]
  4262. if protoimpl.UnsafeEnabled && x != nil {
  4263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4264. if ms.LoadMessageInfo() == nil {
  4265. ms.StoreMessageInfo(mi)
  4266. }
  4267. return ms
  4268. }
  4269. return mi.MessageOf(x)
  4270. }
  4271. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  4272. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  4273. return file_volume_server_proto_rawDescGZIP(), []int{87}
  4274. }
  4275. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  4276. if x != nil {
  4277. return x.NeedleId
  4278. }
  4279. return 0
  4280. }
  4281. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  4282. if x != nil {
  4283. return x.Cookie
  4284. }
  4285. return 0
  4286. }
  4287. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  4288. if x != nil {
  4289. return x.Size
  4290. }
  4291. return 0
  4292. }
  4293. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  4294. if x != nil {
  4295. return x.LastModified
  4296. }
  4297. return 0
  4298. }
  4299. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  4300. if x != nil {
  4301. return x.Crc
  4302. }
  4303. return 0
  4304. }
  4305. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  4306. if x != nil {
  4307. return x.Ttl
  4308. }
  4309. return ""
  4310. }
  4311. type PingRequest struct {
  4312. state protoimpl.MessageState
  4313. sizeCache protoimpl.SizeCache
  4314. unknownFields protoimpl.UnknownFields
  4315. Target string `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"` // default to ping itself
  4316. TargetType string `protobuf:"bytes,2,opt,name=target_type,json=targetType,proto3" json:"target_type,omitempty"`
  4317. }
  4318. func (x *PingRequest) Reset() {
  4319. *x = PingRequest{}
  4320. if protoimpl.UnsafeEnabled {
  4321. mi := &file_volume_server_proto_msgTypes[88]
  4322. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4323. ms.StoreMessageInfo(mi)
  4324. }
  4325. }
  4326. func (x *PingRequest) String() string {
  4327. return protoimpl.X.MessageStringOf(x)
  4328. }
  4329. func (*PingRequest) ProtoMessage() {}
  4330. func (x *PingRequest) ProtoReflect() protoreflect.Message {
  4331. mi := &file_volume_server_proto_msgTypes[88]
  4332. if protoimpl.UnsafeEnabled && x != nil {
  4333. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4334. if ms.LoadMessageInfo() == nil {
  4335. ms.StoreMessageInfo(mi)
  4336. }
  4337. return ms
  4338. }
  4339. return mi.MessageOf(x)
  4340. }
  4341. // Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.
  4342. func (*PingRequest) Descriptor() ([]byte, []int) {
  4343. return file_volume_server_proto_rawDescGZIP(), []int{88}
  4344. }
  4345. func (x *PingRequest) GetTarget() string {
  4346. if x != nil {
  4347. return x.Target
  4348. }
  4349. return ""
  4350. }
  4351. func (x *PingRequest) GetTargetType() string {
  4352. if x != nil {
  4353. return x.TargetType
  4354. }
  4355. return ""
  4356. }
  4357. type PingResponse struct {
  4358. state protoimpl.MessageState
  4359. sizeCache protoimpl.SizeCache
  4360. unknownFields protoimpl.UnknownFields
  4361. StartTimeNs int64 `protobuf:"varint,1,opt,name=start_time_ns,json=startTimeNs,proto3" json:"start_time_ns,omitempty"`
  4362. RemoteTimeNs int64 `protobuf:"varint,2,opt,name=remote_time_ns,json=remoteTimeNs,proto3" json:"remote_time_ns,omitempty"`
  4363. StopTimeNs int64 `protobuf:"varint,3,opt,name=stop_time_ns,json=stopTimeNs,proto3" json:"stop_time_ns,omitempty"`
  4364. }
  4365. func (x *PingResponse) Reset() {
  4366. *x = PingResponse{}
  4367. if protoimpl.UnsafeEnabled {
  4368. mi := &file_volume_server_proto_msgTypes[89]
  4369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4370. ms.StoreMessageInfo(mi)
  4371. }
  4372. }
  4373. func (x *PingResponse) String() string {
  4374. return protoimpl.X.MessageStringOf(x)
  4375. }
  4376. func (*PingResponse) ProtoMessage() {}
  4377. func (x *PingResponse) ProtoReflect() protoreflect.Message {
  4378. mi := &file_volume_server_proto_msgTypes[89]
  4379. if protoimpl.UnsafeEnabled && x != nil {
  4380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4381. if ms.LoadMessageInfo() == nil {
  4382. ms.StoreMessageInfo(mi)
  4383. }
  4384. return ms
  4385. }
  4386. return mi.MessageOf(x)
  4387. }
  4388. // Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.
  4389. func (*PingResponse) Descriptor() ([]byte, []int) {
  4390. return file_volume_server_proto_rawDescGZIP(), []int{89}
  4391. }
  4392. func (x *PingResponse) GetStartTimeNs() int64 {
  4393. if x != nil {
  4394. return x.StartTimeNs
  4395. }
  4396. return 0
  4397. }
  4398. func (x *PingResponse) GetRemoteTimeNs() int64 {
  4399. if x != nil {
  4400. return x.RemoteTimeNs
  4401. }
  4402. return 0
  4403. }
  4404. func (x *PingResponse) GetStopTimeNs() int64 {
  4405. if x != nil {
  4406. return x.StopTimeNs
  4407. }
  4408. return 0
  4409. }
  4410. type FetchAndWriteNeedleRequest_Replica struct {
  4411. state protoimpl.MessageState
  4412. sizeCache protoimpl.SizeCache
  4413. unknownFields protoimpl.UnknownFields
  4414. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  4415. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl,proto3" json:"public_url,omitempty"`
  4416. GrpcPort int32 `protobuf:"varint,3,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
  4417. }
  4418. func (x *FetchAndWriteNeedleRequest_Replica) Reset() {
  4419. *x = FetchAndWriteNeedleRequest_Replica{}
  4420. if protoimpl.UnsafeEnabled {
  4421. mi := &file_volume_server_proto_msgTypes[90]
  4422. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4423. ms.StoreMessageInfo(mi)
  4424. }
  4425. }
  4426. func (x *FetchAndWriteNeedleRequest_Replica) String() string {
  4427. return protoimpl.X.MessageStringOf(x)
  4428. }
  4429. func (*FetchAndWriteNeedleRequest_Replica) ProtoMessage() {}
  4430. func (x *FetchAndWriteNeedleRequest_Replica) ProtoReflect() protoreflect.Message {
  4431. mi := &file_volume_server_proto_msgTypes[90]
  4432. if protoimpl.UnsafeEnabled && x != nil {
  4433. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4434. if ms.LoadMessageInfo() == nil {
  4435. ms.StoreMessageInfo(mi)
  4436. }
  4437. return ms
  4438. }
  4439. return mi.MessageOf(x)
  4440. }
  4441. // Deprecated: Use FetchAndWriteNeedleRequest_Replica.ProtoReflect.Descriptor instead.
  4442. func (*FetchAndWriteNeedleRequest_Replica) Descriptor() ([]byte, []int) {
  4443. return file_volume_server_proto_rawDescGZIP(), []int{82, 0}
  4444. }
  4445. func (x *FetchAndWriteNeedleRequest_Replica) GetUrl() string {
  4446. if x != nil {
  4447. return x.Url
  4448. }
  4449. return ""
  4450. }
  4451. func (x *FetchAndWriteNeedleRequest_Replica) GetPublicUrl() string {
  4452. if x != nil {
  4453. return x.PublicUrl
  4454. }
  4455. return ""
  4456. }
  4457. func (x *FetchAndWriteNeedleRequest_Replica) GetGrpcPort() int32 {
  4458. if x != nil {
  4459. return x.GrpcPort
  4460. }
  4461. return 0
  4462. }
  4463. type QueryRequest_Filter struct {
  4464. state protoimpl.MessageState
  4465. sizeCache protoimpl.SizeCache
  4466. unknownFields protoimpl.UnknownFields
  4467. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  4468. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  4469. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  4470. }
  4471. func (x *QueryRequest_Filter) Reset() {
  4472. *x = QueryRequest_Filter{}
  4473. if protoimpl.UnsafeEnabled {
  4474. mi := &file_volume_server_proto_msgTypes[91]
  4475. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4476. ms.StoreMessageInfo(mi)
  4477. }
  4478. }
  4479. func (x *QueryRequest_Filter) String() string {
  4480. return protoimpl.X.MessageStringOf(x)
  4481. }
  4482. func (*QueryRequest_Filter) ProtoMessage() {}
  4483. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  4484. mi := &file_volume_server_proto_msgTypes[91]
  4485. if protoimpl.UnsafeEnabled && x != nil {
  4486. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4487. if ms.LoadMessageInfo() == nil {
  4488. ms.StoreMessageInfo(mi)
  4489. }
  4490. return ms
  4491. }
  4492. return mi.MessageOf(x)
  4493. }
  4494. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  4495. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  4496. return file_volume_server_proto_rawDescGZIP(), []int{84, 0}
  4497. }
  4498. func (x *QueryRequest_Filter) GetField() string {
  4499. if x != nil {
  4500. return x.Field
  4501. }
  4502. return ""
  4503. }
  4504. func (x *QueryRequest_Filter) GetOperand() string {
  4505. if x != nil {
  4506. return x.Operand
  4507. }
  4508. return ""
  4509. }
  4510. func (x *QueryRequest_Filter) GetValue() string {
  4511. if x != nil {
  4512. return x.Value
  4513. }
  4514. return ""
  4515. }
  4516. type QueryRequest_InputSerialization struct {
  4517. state protoimpl.MessageState
  4518. sizeCache protoimpl.SizeCache
  4519. unknownFields protoimpl.UnknownFields
  4520. // NONE | GZIP | BZIP2
  4521. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  4522. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  4523. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  4524. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  4525. }
  4526. func (x *QueryRequest_InputSerialization) Reset() {
  4527. *x = QueryRequest_InputSerialization{}
  4528. if protoimpl.UnsafeEnabled {
  4529. mi := &file_volume_server_proto_msgTypes[92]
  4530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4531. ms.StoreMessageInfo(mi)
  4532. }
  4533. }
  4534. func (x *QueryRequest_InputSerialization) String() string {
  4535. return protoimpl.X.MessageStringOf(x)
  4536. }
  4537. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  4538. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  4539. mi := &file_volume_server_proto_msgTypes[92]
  4540. if protoimpl.UnsafeEnabled && x != nil {
  4541. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4542. if ms.LoadMessageInfo() == nil {
  4543. ms.StoreMessageInfo(mi)
  4544. }
  4545. return ms
  4546. }
  4547. return mi.MessageOf(x)
  4548. }
  4549. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  4550. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  4551. return file_volume_server_proto_rawDescGZIP(), []int{84, 1}
  4552. }
  4553. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  4554. if x != nil {
  4555. return x.CompressionType
  4556. }
  4557. return ""
  4558. }
  4559. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  4560. if x != nil {
  4561. return x.CsvInput
  4562. }
  4563. return nil
  4564. }
  4565. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  4566. if x != nil {
  4567. return x.JsonInput
  4568. }
  4569. return nil
  4570. }
  4571. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  4572. if x != nil {
  4573. return x.ParquetInput
  4574. }
  4575. return nil
  4576. }
  4577. type QueryRequest_OutputSerialization struct {
  4578. state protoimpl.MessageState
  4579. sizeCache protoimpl.SizeCache
  4580. unknownFields protoimpl.UnknownFields
  4581. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  4582. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  4583. }
  4584. func (x *QueryRequest_OutputSerialization) Reset() {
  4585. *x = QueryRequest_OutputSerialization{}
  4586. if protoimpl.UnsafeEnabled {
  4587. mi := &file_volume_server_proto_msgTypes[93]
  4588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4589. ms.StoreMessageInfo(mi)
  4590. }
  4591. }
  4592. func (x *QueryRequest_OutputSerialization) String() string {
  4593. return protoimpl.X.MessageStringOf(x)
  4594. }
  4595. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  4596. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  4597. mi := &file_volume_server_proto_msgTypes[93]
  4598. if protoimpl.UnsafeEnabled && x != nil {
  4599. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4600. if ms.LoadMessageInfo() == nil {
  4601. ms.StoreMessageInfo(mi)
  4602. }
  4603. return ms
  4604. }
  4605. return mi.MessageOf(x)
  4606. }
  4607. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  4608. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  4609. return file_volume_server_proto_rawDescGZIP(), []int{84, 2}
  4610. }
  4611. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  4612. if x != nil {
  4613. return x.CsvOutput
  4614. }
  4615. return nil
  4616. }
  4617. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  4618. if x != nil {
  4619. return x.JsonOutput
  4620. }
  4621. return nil
  4622. }
  4623. type QueryRequest_InputSerialization_CSVInput struct {
  4624. state protoimpl.MessageState
  4625. sizeCache protoimpl.SizeCache
  4626. unknownFields protoimpl.UnknownFields
  4627. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  4628. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4629. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4630. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4631. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4632. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  4633. // If true, records might contain record delimiters within quote characters
  4634. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  4635. }
  4636. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  4637. *x = QueryRequest_InputSerialization_CSVInput{}
  4638. if protoimpl.UnsafeEnabled {
  4639. mi := &file_volume_server_proto_msgTypes[94]
  4640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4641. ms.StoreMessageInfo(mi)
  4642. }
  4643. }
  4644. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  4645. return protoimpl.X.MessageStringOf(x)
  4646. }
  4647. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  4648. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  4649. mi := &file_volume_server_proto_msgTypes[94]
  4650. if protoimpl.UnsafeEnabled && x != nil {
  4651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4652. if ms.LoadMessageInfo() == nil {
  4653. ms.StoreMessageInfo(mi)
  4654. }
  4655. return ms
  4656. }
  4657. return mi.MessageOf(x)
  4658. }
  4659. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  4660. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  4661. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 0}
  4662. }
  4663. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  4664. if x != nil {
  4665. return x.FileHeaderInfo
  4666. }
  4667. return ""
  4668. }
  4669. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  4670. if x != nil {
  4671. return x.RecordDelimiter
  4672. }
  4673. return ""
  4674. }
  4675. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  4676. if x != nil {
  4677. return x.FieldDelimiter
  4678. }
  4679. return ""
  4680. }
  4681. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharacter() string {
  4682. if x != nil {
  4683. return x.QuoteCharacter
  4684. }
  4685. return ""
  4686. }
  4687. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  4688. if x != nil {
  4689. return x.QuoteEscapeCharacter
  4690. }
  4691. return ""
  4692. }
  4693. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  4694. if x != nil {
  4695. return x.Comments
  4696. }
  4697. return ""
  4698. }
  4699. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  4700. if x != nil {
  4701. return x.AllowQuotedRecordDelimiter
  4702. }
  4703. return false
  4704. }
  4705. type QueryRequest_InputSerialization_JSONInput struct {
  4706. state protoimpl.MessageState
  4707. sizeCache protoimpl.SizeCache
  4708. unknownFields protoimpl.UnknownFields
  4709. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  4710. }
  4711. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  4712. *x = QueryRequest_InputSerialization_JSONInput{}
  4713. if protoimpl.UnsafeEnabled {
  4714. mi := &file_volume_server_proto_msgTypes[95]
  4715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4716. ms.StoreMessageInfo(mi)
  4717. }
  4718. }
  4719. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  4720. return protoimpl.X.MessageStringOf(x)
  4721. }
  4722. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  4723. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  4724. mi := &file_volume_server_proto_msgTypes[95]
  4725. if protoimpl.UnsafeEnabled && x != nil {
  4726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4727. if ms.LoadMessageInfo() == nil {
  4728. ms.StoreMessageInfo(mi)
  4729. }
  4730. return ms
  4731. }
  4732. return mi.MessageOf(x)
  4733. }
  4734. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  4735. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  4736. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 1}
  4737. }
  4738. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  4739. if x != nil {
  4740. return x.Type
  4741. }
  4742. return ""
  4743. }
  4744. type QueryRequest_InputSerialization_ParquetInput struct {
  4745. state protoimpl.MessageState
  4746. sizeCache protoimpl.SizeCache
  4747. unknownFields protoimpl.UnknownFields
  4748. }
  4749. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  4750. *x = QueryRequest_InputSerialization_ParquetInput{}
  4751. if protoimpl.UnsafeEnabled {
  4752. mi := &file_volume_server_proto_msgTypes[96]
  4753. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4754. ms.StoreMessageInfo(mi)
  4755. }
  4756. }
  4757. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  4758. return protoimpl.X.MessageStringOf(x)
  4759. }
  4760. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  4761. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  4762. mi := &file_volume_server_proto_msgTypes[96]
  4763. if protoimpl.UnsafeEnabled && x != nil {
  4764. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4765. if ms.LoadMessageInfo() == nil {
  4766. ms.StoreMessageInfo(mi)
  4767. }
  4768. return ms
  4769. }
  4770. return mi.MessageOf(x)
  4771. }
  4772. // Deprecated: Use QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  4773. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  4774. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 2}
  4775. }
  4776. type QueryRequest_OutputSerialization_CSVOutput struct {
  4777. state protoimpl.MessageState
  4778. sizeCache protoimpl.SizeCache
  4779. unknownFields protoimpl.UnknownFields
  4780. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  4781. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4782. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4783. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4784. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4785. }
  4786. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  4787. *x = QueryRequest_OutputSerialization_CSVOutput{}
  4788. if protoimpl.UnsafeEnabled {
  4789. mi := &file_volume_server_proto_msgTypes[97]
  4790. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4791. ms.StoreMessageInfo(mi)
  4792. }
  4793. }
  4794. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  4795. return protoimpl.X.MessageStringOf(x)
  4796. }
  4797. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  4798. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  4799. mi := &file_volume_server_proto_msgTypes[97]
  4800. if protoimpl.UnsafeEnabled && x != nil {
  4801. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4802. if ms.LoadMessageInfo() == nil {
  4803. ms.StoreMessageInfo(mi)
  4804. }
  4805. return ms
  4806. }
  4807. return mi.MessageOf(x)
  4808. }
  4809. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  4810. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  4811. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 0}
  4812. }
  4813. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  4814. if x != nil {
  4815. return x.QuoteFields
  4816. }
  4817. return ""
  4818. }
  4819. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  4820. if x != nil {
  4821. return x.RecordDelimiter
  4822. }
  4823. return ""
  4824. }
  4825. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  4826. if x != nil {
  4827. return x.FieldDelimiter
  4828. }
  4829. return ""
  4830. }
  4831. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharacter() string {
  4832. if x != nil {
  4833. return x.QuoteCharacter
  4834. }
  4835. return ""
  4836. }
  4837. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  4838. if x != nil {
  4839. return x.QuoteEscapeCharacter
  4840. }
  4841. return ""
  4842. }
  4843. type QueryRequest_OutputSerialization_JSONOutput struct {
  4844. state protoimpl.MessageState
  4845. sizeCache protoimpl.SizeCache
  4846. unknownFields protoimpl.UnknownFields
  4847. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  4848. }
  4849. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  4850. *x = QueryRequest_OutputSerialization_JSONOutput{}
  4851. if protoimpl.UnsafeEnabled {
  4852. mi := &file_volume_server_proto_msgTypes[98]
  4853. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4854. ms.StoreMessageInfo(mi)
  4855. }
  4856. }
  4857. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  4858. return protoimpl.X.MessageStringOf(x)
  4859. }
  4860. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  4861. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  4862. mi := &file_volume_server_proto_msgTypes[98]
  4863. if protoimpl.UnsafeEnabled && x != nil {
  4864. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4865. if ms.LoadMessageInfo() == nil {
  4866. ms.StoreMessageInfo(mi)
  4867. }
  4868. return ms
  4869. }
  4870. return mi.MessageOf(x)
  4871. }
  4872. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  4873. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  4874. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 1}
  4875. }
  4876. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  4877. if x != nil {
  4878. return x.RecordDelimiter
  4879. }
  4880. return ""
  4881. }
  4882. var File_volume_server_proto protoreflect.FileDescriptor
  4883. var file_volume_server_proto_rawDesc = []byte{
  4884. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  4885. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4886. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x1a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e,
  4887. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  4888. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66,
  4889. 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x66,
  4890. 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x63,
  4891. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28,
  4892. 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43, 0x68, 0x65,
  4893. 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4894. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72, 0x65, 0x73,
  4895. 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x6f, 0x6c,
  4896. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65,
  4897. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
  4898. 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4899. 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4900. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  4901. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73,
  4902. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03,
  4903. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73,
  4904. 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  4905. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  4906. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45, 0x6d, 0x70,
  4907. 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4908. 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4909. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4910. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x19, 0x56,
  4911. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b,
  4912. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61, 0x72, 0x62,
  4913. 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52,
  4914. 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x5b, 0x0a,
  4915. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d,
  4916. 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4917. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4918. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61,
  4919. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70,
  4920. 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x66, 0x0a, 0x1b, 0x56, 0x61,
  4921. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  4922. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f,
  4923. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01,
  4924. 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74,
  4925. 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x61, 0x76, 0x67, 0x5f, 0x31,
  4926. 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x76, 0x67,
  4927. 0x31, 0x6d, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4928. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4929. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4930. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x1a,
  4931. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d,
  4932. 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73,
  4933. 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  4934. 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x39, 0x0a, 0x1a,
  4935. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61,
  4936. 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4937. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4938. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75, 0x75,
  4939. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65,
  4940. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  4941. 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4942. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  4943. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4944. 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
  4945. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xfb, 0x01,
  4946. 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4947. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4948. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  4949. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4950. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4951. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63,
  4952. 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c,
  4953. 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  4954. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70,
  4955. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18,
  4956. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d, 0x65,
  4957. 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69, 0x7a,
  4958. 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d, 0x6f,
  4959. 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61, 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x12, 0x1b,
  4960. 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  4961. 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x41,
  4962. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73,
  4963. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  4964. 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4965. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4966. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb, 0x01,
  4967. 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74,
  4968. 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4969. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4970. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4971. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  4972. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  4973. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  4974. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c,
  4975. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x74,
  4976. 0x61, 0x69, 0x6c, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  4977. 0x52, 0x0a, 0x74, 0x61, 0x69, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a, 0x10,
  4978. 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e,
  4979. 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52,
  4980. 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66,
  4981. 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
  4982. 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c, 0x56,
  4983. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
  4984. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4985. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4986. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63,
  4987. 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63,
  4988. 0x65, 0x4e, 0x73, 0x22, 0x42, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63,
  4989. 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70,
  4990. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
  4991. 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65,
  4992. 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4993. 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a,
  4994. 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  4995. 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56, 0x6f,
  4996. 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4997. 0x65, 0x22, 0x33, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75,
  4998. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4999. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  5000. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5001. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5002. 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  5003. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5004. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5005. 0x65, 0x49, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c,
  5006. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56,
  5007. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c,
  5008. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5009. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5010. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  5011. 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5012. 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72,
  5013. 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5014. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5015. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a,
  5016. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61,
  5017. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x16, 0x56,
  5018. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65,
  5019. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5020. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5021. 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  5022. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
  5023. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5024. 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  5025. 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  5026. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5027. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5028. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5029. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x14, 0x56, 0x6f, 0x6c,
  5030. 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5031. 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c,
  5032. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f,
  5033. 0x6e, 0x6c, 0x79, 0x22, 0xf8, 0x01, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5034. 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  5035. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  5036. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5037. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5038. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  5039. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70,
  5040. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18,
  5041. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f,
  5042. 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05,
  5043. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61,
  5044. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70,
  5045. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70,
  5046. 0x65, 0x12, 0x2b, 0x0a, 0x12, 0x69, 0x6f, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72,
  5047. 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x69,
  5048. 0x6f, 0x42, 0x79, 0x74, 0x65, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22, 0x68,
  5049. 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70,
  5050. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x61, 0x70, 0x70,
  5051. 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
  5052. 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x12,
  5053. 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74,
  5054. 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
  5055. 0x73, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f, 0x43, 0x6f, 0x70,
  5056. 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5057. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5058. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x74,
  5059. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63,
  5060. 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69,
  5061. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  5062. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b,
  5063. 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  5064. 0x04, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a,
  5065. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28,
  5066. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a,
  5067. 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x18, 0x06, 0x20,
  5068. 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12,
  5069. 0x3e, 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
  5070. 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x18,
  5071. 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x53, 0x6f, 0x75,
  5072. 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x22,
  5073. 0x5b, 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5074. 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74,
  5075. 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x43,
  5076. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0e, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69,
  5077. 0x65, 0x64, 0x5f, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
  5078. 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x73, 0x4e, 0x73, 0x22, 0x60, 0x0a, 0x15,
  5079. 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65,
  5080. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5081. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5082. 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01,
  5083. 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69,
  5084. 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x39,
  5085. 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62,
  5086. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64,
  5087. 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e,
  5088. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x22, 0x7d, 0x0a, 0x15, 0x52, 0x65, 0x61,
  5089. 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65,
  5090. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5091. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5092. 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  5093. 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  5094. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66,
  5095. 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01,
  5096. 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x16, 0x52, 0x65, 0x61,
  5097. 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5098. 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x01, 0x20,
  5099. 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c,
  5100. 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01,
  5101. 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64,
  5102. 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63,
  5103. 0x72, 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  5104. 0x03, 0x74, 0x74, 0x6c, 0x12, 0x20, 0x0a, 0x0c, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61,
  5105. 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x61, 0x70, 0x70, 0x65,
  5106. 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x16, 0x57, 0x72, 0x69, 0x74, 0x65,
  5107. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5108. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5109. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b,
  5110. 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5111. 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73,
  5112. 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  5113. 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x04,
  5114. 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62,
  5115. 0x22, 0x19, 0x0a, 0x17, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  5116. 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x15, 0x52,
  5117. 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71,
  5118. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5119. 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5120. 0x49, 0x64, 0x73, 0x22, 0xa0, 0x02, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e,
  5121. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b,
  5122. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5123. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e,
  5124. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
  5125. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b,
  5126. 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65,
  5127. 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18,
  5128. 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f,
  5129. 0x62, 0x12, 0x34, 0x0a, 0x16, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62,
  5130. 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
  5131. 0x08, 0x52, 0x14, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x43, 0x6f, 0x6d,
  5132. 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f,
  5133. 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c,
  5134. 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03,
  5135. 0x63, 0x72, 0x63, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x12,
  5136. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x61,
  5137. 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c,
  5138. 0x52, 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x22, 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5139. 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  5140. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5141. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5142. 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  5143. 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64,
  5144. 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e,
  5145. 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69,
  5146. 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x84, 0x01, 0x0a,
  5147. 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65,
  5148. 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x65,
  5149. 0x64, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c,
  5150. 0x52, 0x0c, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1f,
  5151. 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x02, 0x20,
  5152. 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12,
  5153. 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b,
  5154. 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x68,
  5155. 0x75, 0x6e, 0x6b, 0x22, 0xb7, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61,
  5156. 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5157. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5158. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19,
  5159. 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  5160. 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c,
  5161. 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  5162. 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d,
  5163. 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73,
  5164. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5165. 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f, 0x75, 0x72, 0x63,
  5166. 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0x1c, 0x0a,
  5167. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69,
  5168. 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56,
  5169. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e,
  5170. 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5171. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5172. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c,
  5173. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  5174. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c,
  5175. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72,
  5176. 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0x0a, 0x1c, 0x56,
  5177. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62,
  5178. 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5179. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5180. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5181. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f,
  5182. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75,
  5183. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c,
  5184. 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x72, 0x65, 0x62,
  5185. 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01,
  5186. 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x53, 0x68, 0x61,
  5187. 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x8b, 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5188. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75,
  5189. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5190. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  5191. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  5192. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5193. 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20,
  5194. 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x22, 0x0a,
  5195. 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04,
  5196. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78, 0x46, 0x69, 0x6c,
  5197. 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61,
  5198. 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75,
  5199. 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63,
  5200. 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x6a, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01,
  5201. 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69, 0x6c, 0x65, 0x12,
  5202. 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66, 0x69, 0x6c, 0x65,
  5203. 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56, 0x69, 0x66, 0x46,
  5204. 0x69, 0x6c, 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5205. 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5206. 0x65, 0x22, 0x77, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5207. 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5208. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5209. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  5210. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  5211. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a,
  5212. 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d,
  5213. 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a, 0x1c, 0x56, 0x6f,
  5214. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65,
  5215. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a, 0x1a, 0x56, 0x6f,
  5216. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e,
  5217. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5218. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5219. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5220. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  5221. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69,
  5222. 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49,
  5223. 0x64, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5224. 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5225. 0x65, 0x22, 0x58, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5226. 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5227. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5228. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b,
  5229. 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  5230. 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f, 0x0a, 0x1d, 0x56,
  5231. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d,
  5232. 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x99, 0x01, 0x0a,
  5233. 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
  5234. 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  5235. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  5236. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f,
  5237. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49,
  5238. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  5239. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a,
  5240. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x19, 0x0a,
  5241. 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  5242. 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75,
  5243. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73,
  5244. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20,
  5245. 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f,
  5246. 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69,
  5247. 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c,
  5248. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  5249. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5250. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5251. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5252. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5253. 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18,
  5254. 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x18,
  5255. 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5256. 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75,
  5257. 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  5258. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5259. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5260. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5261. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5262. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5263. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5264. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5265. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  5266. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f,
  5267. 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  5268. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5269. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5270. 0x49, 0x64, 0x22, 0xc9, 0x03, 0x0a, 0x1c, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5271. 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5272. 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5273. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  5274. 0x12, 0x3b, 0x0a, 0x1a, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d,
  5275. 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02,
  5276. 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d,
  5277. 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a,
  5278. 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03,
  5279. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a,
  5280. 0x65, 0x12, 0x3b, 0x0a, 0x1a, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69,
  5281. 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18,
  5282. 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69,
  5283. 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22,
  5284. 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18,
  5285. 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69,
  5286. 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  5287. 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e,
  5288. 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
  5289. 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12,
  5290. 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69,
  5291. 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5292. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5293. 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
  5294. 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12,
  5295. 0x3d, 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x0a,
  5296. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5297. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e,
  5298. 0x66, 0x6f, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xbb,
  5299. 0x01, 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a,
  5300. 0x03, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x64, 0x69, 0x72, 0x12,
  5301. 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c,
  5302. 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  5303. 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20,
  5304. 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72,
  5305. 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52,
  5306. 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x46, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c,
  5307. 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01,
  5308. 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x64, 0x12,
  5309. 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
  5310. 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa3, 0x01, 0x0a,
  5311. 0x09, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x6f,
  5312. 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a,
  5313. 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c,
  5314. 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04,
  5315. 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64,
  5316. 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04,
  5317. 0x66, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01,
  5318. 0x28, 0x04, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x65, 0x61, 0x70,
  5319. 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x68, 0x65, 0x61, 0x70, 0x12, 0x14, 0x0a, 0x05,
  5320. 0x73, 0x74, 0x61, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x74, 0x61,
  5321. 0x63, 0x6b, 0x22, 0xd8, 0x01, 0x0a, 0x0a, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c,
  5322. 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70,
  5323. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  5324. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f,
  5325. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  5326. 0x64, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  5327. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  5328. 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1b, 0x0a,
  5329. 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  5330. 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f,
  5331. 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  5332. 0x04, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12,
  5333. 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01,
  5334. 0x28, 0x09, 0x52, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x9e, 0x01,
  5335. 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a, 0x05,
  5336. 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f,
  5337. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52,
  5338. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73,
  5339. 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  5340. 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65,
  5341. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  5342. 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b,
  5343. 0x42, 0x79, 0x74, 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  5344. 0x0d, 0x52, 0x0b, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0xc8,
  5345. 0x01, 0x0a, 0x20, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  5346. 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
  5347. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5348. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  5349. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  5350. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5351. 0x12, 0x38, 0x0a, 0x18, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
  5352. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  5353. 0x28, 0x09, 0x52, 0x16, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42,
  5354. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b, 0x65,
  5355. 0x65, 0x70, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c,
  5356. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f, 0x63,
  5357. 0x61, 0x6c, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f, 0x6c,
  5358. 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f,
  5359. 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c,
  5360. 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5361. 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13,
  5362. 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
  5363. 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65,
  5364. 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x92,
  5365. 0x01, 0x0a, 0x22, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  5366. 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65,
  5367. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5368. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5369. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5370. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5371. 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  5372. 0x65, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
  5373. 0x52, 0x11, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74, 0x46,
  5374. 0x69, 0x6c, 0x65, 0x22, 0x75, 0x0a, 0x23, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65,
  5375. 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f,
  5376. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72,
  5377. 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  5378. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63,
  5379. 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18,
  5380. 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64,
  5381. 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f,
  5382. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  5383. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xf0, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75,
  5384. 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  5385. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73,
  5386. 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e,
  5387. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5388. 0x2e, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69, 0x73,
  5389. 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65, 0x6d,
  5390. 0x6f, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  5391. 0x32, 0x1b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5392. 0x5f, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x6d,
  5393. 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76,
  5394. 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65,
  5395. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63, 0x65,
  5396. 0x6e, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61,
  5397. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x18, 0x05,
  5398. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x22, 0x1a, 0x0a, 0x18, 0x56, 0x6f,
  5399. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52,
  5400. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5401. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5402. 0x6e, 0x73, 0x65, 0x22, 0xdc, 0x03, 0x0a, 0x1a, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64,
  5403. 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  5404. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5405. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5406. 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  5407. 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  5408. 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f,
  5409. 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04,
  5410. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04,
  5411. 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65,
  5412. 0x12, 0x50, 0x0a, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x18, 0x06, 0x20, 0x03,
  5413. 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5414. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72,
  5415. 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5416. 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  5417. 0x61, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  5418. 0x52, 0x04, 0x61, 0x75, 0x74, 0x68, 0x12, 0x36, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5419. 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x72, 0x65,
  5420. 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f,
  5421. 0x6e, 0x66, 0x52, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x49,
  5422. 0x0a, 0x0f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
  5423. 0x6e, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5424. 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67,
  5425. 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  5426. 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x57, 0x0a, 0x07, 0x52, 0x65, 0x70,
  5427. 0x6c, 0x69, 0x63, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28,
  5428. 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63,
  5429. 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c,
  5430. 0x69, 0x63, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x70, 0x6f,
  5431. 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x72, 0x70, 0x63, 0x50, 0x6f,
  5432. 0x72, 0x74, 0x22, 0x32, 0x0a, 0x1b, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72,
  5433. 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5434. 0x65, 0x12, 0x13, 0x0a, 0x05, 0x65, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  5435. 0x52, 0x04, 0x65, 0x54, 0x61, 0x67, 0x22, 0xf4, 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79,
  5436. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63,
  5437. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c,
  5438. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
  5439. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b,
  5440. 0x66, 0x72, 0x6f, 0x6d, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x66,
  5441. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x6f,
  5442. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51,
  5443. 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74,
  5444. 0x65, 0x72, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69, 0x6e,
  5445. 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  5446. 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5447. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79,
  5448. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72,
  5449. 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70, 0x75,
  5450. 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65,
  5451. 0x0a, 0x14, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  5452. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76,
  5453. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5454. 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74,
  5455. 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  5456. 0x52, 0x13, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  5457. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x4e, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12,
  5458. 0x14, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  5459. 0x66, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64,
  5460. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12,
  5461. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  5462. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x1a, 0xd3, 0x05, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53,
  5463. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10,
  5464. 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65,
  5465. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
  5466. 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f, 0x69,
  5467. 0x6e, 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f, 0x6c,
  5468. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75,
  5469. 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74,
  5470. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53,
  5471. 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x08, 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75, 0x74,
  5472. 0x12, 0x5a, 0x0a, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x03,
  5473. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5474. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71,
  5475. 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  5476. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75,
  5477. 0x74, 0x52, 0x09, 0x6a, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a, 0x0d,
  5478. 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04, 0x20,
  5479. 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5480. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  5481. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  5482. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e,
  5483. 0x70, 0x75, 0x74, 0x52, 0x0c, 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75,
  5484. 0x74, 0x1a, 0xc6, 0x02, 0x0a, 0x08, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x28,
  5485. 0x0a, 0x10, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e,
  5486. 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48, 0x65,
  5487. 0x61, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f,
  5488. 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01,
  5489. 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69,
  5490. 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c,
  5491. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69,
  5492. 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f,
  5493. 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18,
  5494. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72,
  5495. 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65,
  5496. 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18,
  5497. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61,
  5498. 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x63,
  5499. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63,
  5500. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
  5501. 0x5f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64,
  5502. 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a,
  5503. 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72,
  5504. 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a, 0x53,
  5505. 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
  5506. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c, 0x50,
  5507. 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xef, 0x03, 0x0a, 0x13,
  5508. 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74,
  5509. 0x69, 0x6f, 0x6e, 0x12, 0x5b, 0x0a, 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75,
  5510. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5511. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79,
  5512. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65,
  5513. 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x4f,
  5514. 0x75, 0x74, 0x70, 0x75, 0x74, 0x52, 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5515. 0x12, 0x5e, 0x0a, 0x0b, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18,
  5516. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5517. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65,
  5518. 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69,
  5519. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75,
  5520. 0x74, 0x70, 0x75, 0x74, 0x52, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5521. 0x1a, 0xe1, 0x01, 0x0a, 0x09, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21,
  5522. 0x0a, 0x0c, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01,
  5523. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64,
  5524. 0x73, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69,
  5525. 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63,
  5526. 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f,
  5527. 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18,
  5528. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69,
  5529. 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63,
  5530. 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  5531. 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x34,
  5532. 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63,
  5533. 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14,
  5534. 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61,
  5535. 0x63, 0x74, 0x65, 0x72, 0x1a, 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70,
  5536. 0x75, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c,
  5537. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65,
  5538. 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x22, 0x29, 0x0a,
  5539. 0x0d, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x12, 0x18,
  5540. 0x0a, 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52,
  5541. 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75,
  5542. 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  5543. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5544. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5545. 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5546. 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x22,
  5547. 0xae, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5548. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b,
  5549. 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5550. 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63,
  5551. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f,
  5552. 0x6b, 0x69, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  5553. 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f,
  5554. 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c,
  5555. 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03,
  5556. 0x63, 0x72, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10,
  5557. 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c,
  5558. 0x22, 0x46, 0x0a, 0x0b, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5559. 0x16, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  5560. 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65,
  5561. 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x61,
  5562. 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x7a, 0x0a, 0x0c, 0x50, 0x69, 0x6e, 0x67,
  5563. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72,
  5564. 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  5565. 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12, 0x24, 0x0a, 0x0e,
  5566. 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02,
  5567. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  5568. 0x4e, 0x73, 0x12, 0x20, 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f,
  5569. 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x69,
  5570. 0x6d, 0x65, 0x4e, 0x73, 0x32, 0xbc, 0x24, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5571. 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x5c, 0x0a, 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  5572. 0x6c, 0x65, 0x74, 0x65, 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5573. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c,
  5574. 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c,
  5575. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61,
  5576. 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5577. 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  5578. 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5579. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75,
  5580. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71,
  5581. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5582. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  5583. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5584. 0x65, 0x22, 0x00, 0x12, 0x76, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  5585. 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c,
  5586. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61,
  5587. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  5588. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5589. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75,
  5590. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52,
  5591. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56,
  5592. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69,
  5593. 0x74, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5594. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5595. 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c,
  5596. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5597. 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5598. 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
  5599. 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c,
  5600. 0x65, 0x61, 0x6e, 0x75, 0x70, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5601. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  5602. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75,
  5603. 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5604. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  5605. 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5606. 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f,
  5607. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5608. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65,
  5609. 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
  5610. 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5611. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c,
  5612. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5613. 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c,
  5614. 0x75, 0x6d, 0x65, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5615. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56,
  5616. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76,
  5617. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5618. 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  5619. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75,
  5620. 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e, 0x76,
  5621. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5622. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  5623. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5624. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5625. 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5626. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7c, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5627. 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2e,
  5628. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5629. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e,
  5630. 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f,
  5631. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5632. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e,
  5633. 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5634. 0x00, 0x30, 0x01, 0x12, 0x5c, 0x0a, 0x0b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75,
  5635. 0x6e, 0x74, 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5636. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e,
  5637. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5638. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5639. 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5640. 0x00, 0x12, 0x62, 0x0a, 0x0d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75,
  5641. 0x6e, 0x74, 0x12, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5642. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f,
  5643. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f, 0x6c,
  5644. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5645. 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5646. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44,
  5647. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5648. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44,
  5649. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76,
  5650. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5651. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  5652. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5653. 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e, 0x76,
  5654. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5655. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e,
  5656. 0x6c, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5657. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5658. 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52,
  5659. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c,
  5660. 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12,
  5661. 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5662. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69,
  5663. 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76,
  5664. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5665. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62,
  5666. 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f,
  5667. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12,
  5668. 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5669. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
  5670. 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5671. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5672. 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70,
  5673. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5674. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5675. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5676. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e,
  5677. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5678. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
  5679. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5680. 0x65, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x23, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5681. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5682. 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x6f, 0x6c,
  5683. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5684. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5685. 0x22, 0x00, 0x30, 0x01, 0x12, 0x77, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75,
  5686. 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2d, 0x2e, 0x76,
  5687. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5688. 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74,
  5689. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f,
  5690. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52,
  5691. 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61,
  5692. 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a,
  5693. 0x08, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5694. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70,
  5695. 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76,
  5696. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5697. 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5698. 0x22, 0x00, 0x30, 0x01, 0x12, 0x65, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64,
  5699. 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5700. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65,
  5701. 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5702. 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5703. 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f,
  5704. 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x52,
  5705. 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x27, 0x2e,
  5706. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5707. 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52,
  5708. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5709. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65,
  5710. 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5711. 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c,
  5712. 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5713. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65,
  5714. 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5715. 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5716. 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c,
  5717. 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x0e,
  5718. 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x12, 0x27,
  5719. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5720. 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73,
  5721. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5722. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x41,
  5723. 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5724. 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5725. 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5726. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5727. 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71,
  5728. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5729. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61,
  5730. 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5731. 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61,
  5732. 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c,
  5733. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5734. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72,
  5735. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5736. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5737. 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73,
  5738. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5739. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74,
  5740. 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5741. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5742. 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  5743. 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5744. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5745. 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  5746. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5747. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12,
  5748. 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5749. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5750. 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5751. 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5752. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5753. 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5754. 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5755. 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5756. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5757. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65,
  5758. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5759. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5760. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5761. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5762. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2d, 0x2e,
  5763. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5764. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44,
  5765. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76,
  5766. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5767. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65,
  5768. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
  5769. 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5770. 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5771. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5772. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75,
  5773. 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5774. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5775. 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5776. 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5777. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2e, 0x2e,
  5778. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5779. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55,
  5780. 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e,
  5781. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5782. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55,
  5783. 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5784. 0x12, 0x70, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5785. 0x64, 0x52, 0x65, 0x61, 0x64, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5786. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5787. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5788. 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5789. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5790. 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5791. 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c,
  5792. 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5793. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5794. 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  5795. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5796. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5797. 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5798. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5799. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12,
  5800. 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5801. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5802. 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5803. 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5804. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5805. 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5806. 0x73, 0x65, 0x22, 0x00, 0x12, 0x88, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5807. 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f,
  5808. 0x74, 0x65, 0x12, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5809. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72,
  5810. 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52,
  5811. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5812. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5813. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d,
  5814. 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
  5815. 0x8e, 0x01, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  5816. 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12,
  5817. 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5818. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  5819. 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65,
  5820. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5821. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5822. 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65,
  5823. 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
  5824. 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
  5825. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5826. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5827. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  5828. 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5829. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72,
  5830. 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5831. 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72,
  5832. 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5833. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5834. 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71,
  5835. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5836. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  5837. 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5838. 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57,
  5839. 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c,
  5840. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65,
  5841. 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c,
  5842. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5843. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63,
  5844. 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52,
  5845. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x51, 0x75, 0x65,
  5846. 0x72, 0x79, 0x12, 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5847. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5848. 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5849. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72,
  5850. 0x69, 0x70, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5851. 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e,
  5852. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5853. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61,
  5854. 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c,
  5855. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5856. 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  5857. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x04, 0x50, 0x69,
  5858. 0x6e, 0x67, 0x12, 0x1d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5859. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5860. 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5861. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5862. 0x65, 0x22, 0x00, 0x42, 0x39, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f,
  5863. 0x6d, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x77,
  5864. 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x6f,
  5865. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62, 0x06,
  5866. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  5867. }
  5868. var (
  5869. file_volume_server_proto_rawDescOnce sync.Once
  5870. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  5871. )
  5872. func file_volume_server_proto_rawDescGZIP() []byte {
  5873. file_volume_server_proto_rawDescOnce.Do(func() {
  5874. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  5875. })
  5876. return file_volume_server_proto_rawDescData
  5877. }
  5878. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 99)
  5879. var file_volume_server_proto_goTypes = []interface{}{
  5880. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  5881. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  5882. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  5883. (*Empty)(nil), // 3: volume_server_pb.Empty
  5884. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  5885. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  5886. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  5887. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  5888. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  5889. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  5890. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  5891. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  5892. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  5893. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  5894. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  5895. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  5896. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  5897. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  5898. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  5899. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  5900. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  5901. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  5902. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  5903. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  5904. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  5905. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  5906. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  5907. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  5908. (*VolumeMarkWritableRequest)(nil), // 28: volume_server_pb.VolumeMarkWritableRequest
  5909. (*VolumeMarkWritableResponse)(nil), // 29: volume_server_pb.VolumeMarkWritableResponse
  5910. (*VolumeConfigureRequest)(nil), // 30: volume_server_pb.VolumeConfigureRequest
  5911. (*VolumeConfigureResponse)(nil), // 31: volume_server_pb.VolumeConfigureResponse
  5912. (*VolumeStatusRequest)(nil), // 32: volume_server_pb.VolumeStatusRequest
  5913. (*VolumeStatusResponse)(nil), // 33: volume_server_pb.VolumeStatusResponse
  5914. (*VolumeCopyRequest)(nil), // 34: volume_server_pb.VolumeCopyRequest
  5915. (*VolumeCopyResponse)(nil), // 35: volume_server_pb.VolumeCopyResponse
  5916. (*CopyFileRequest)(nil), // 36: volume_server_pb.CopyFileRequest
  5917. (*CopyFileResponse)(nil), // 37: volume_server_pb.CopyFileResponse
  5918. (*ReadNeedleBlobRequest)(nil), // 38: volume_server_pb.ReadNeedleBlobRequest
  5919. (*ReadNeedleBlobResponse)(nil), // 39: volume_server_pb.ReadNeedleBlobResponse
  5920. (*ReadNeedleMetaRequest)(nil), // 40: volume_server_pb.ReadNeedleMetaRequest
  5921. (*ReadNeedleMetaResponse)(nil), // 41: volume_server_pb.ReadNeedleMetaResponse
  5922. (*WriteNeedleBlobRequest)(nil), // 42: volume_server_pb.WriteNeedleBlobRequest
  5923. (*WriteNeedleBlobResponse)(nil), // 43: volume_server_pb.WriteNeedleBlobResponse
  5924. (*ReadAllNeedlesRequest)(nil), // 44: volume_server_pb.ReadAllNeedlesRequest
  5925. (*ReadAllNeedlesResponse)(nil), // 45: volume_server_pb.ReadAllNeedlesResponse
  5926. (*VolumeTailSenderRequest)(nil), // 46: volume_server_pb.VolumeTailSenderRequest
  5927. (*VolumeTailSenderResponse)(nil), // 47: volume_server_pb.VolumeTailSenderResponse
  5928. (*VolumeTailReceiverRequest)(nil), // 48: volume_server_pb.VolumeTailReceiverRequest
  5929. (*VolumeTailReceiverResponse)(nil), // 49: volume_server_pb.VolumeTailReceiverResponse
  5930. (*VolumeEcShardsGenerateRequest)(nil), // 50: volume_server_pb.VolumeEcShardsGenerateRequest
  5931. (*VolumeEcShardsGenerateResponse)(nil), // 51: volume_server_pb.VolumeEcShardsGenerateResponse
  5932. (*VolumeEcShardsRebuildRequest)(nil), // 52: volume_server_pb.VolumeEcShardsRebuildRequest
  5933. (*VolumeEcShardsRebuildResponse)(nil), // 53: volume_server_pb.VolumeEcShardsRebuildResponse
  5934. (*VolumeEcShardsCopyRequest)(nil), // 54: volume_server_pb.VolumeEcShardsCopyRequest
  5935. (*VolumeEcShardsCopyResponse)(nil), // 55: volume_server_pb.VolumeEcShardsCopyResponse
  5936. (*VolumeEcShardsDeleteRequest)(nil), // 56: volume_server_pb.VolumeEcShardsDeleteRequest
  5937. (*VolumeEcShardsDeleteResponse)(nil), // 57: volume_server_pb.VolumeEcShardsDeleteResponse
  5938. (*VolumeEcShardsMountRequest)(nil), // 58: volume_server_pb.VolumeEcShardsMountRequest
  5939. (*VolumeEcShardsMountResponse)(nil), // 59: volume_server_pb.VolumeEcShardsMountResponse
  5940. (*VolumeEcShardsUnmountRequest)(nil), // 60: volume_server_pb.VolumeEcShardsUnmountRequest
  5941. (*VolumeEcShardsUnmountResponse)(nil), // 61: volume_server_pb.VolumeEcShardsUnmountResponse
  5942. (*VolumeEcShardReadRequest)(nil), // 62: volume_server_pb.VolumeEcShardReadRequest
  5943. (*VolumeEcShardReadResponse)(nil), // 63: volume_server_pb.VolumeEcShardReadResponse
  5944. (*VolumeEcBlobDeleteRequest)(nil), // 64: volume_server_pb.VolumeEcBlobDeleteRequest
  5945. (*VolumeEcBlobDeleteResponse)(nil), // 65: volume_server_pb.VolumeEcBlobDeleteResponse
  5946. (*VolumeEcShardsToVolumeRequest)(nil), // 66: volume_server_pb.VolumeEcShardsToVolumeRequest
  5947. (*VolumeEcShardsToVolumeResponse)(nil), // 67: volume_server_pb.VolumeEcShardsToVolumeResponse
  5948. (*ReadVolumeFileStatusRequest)(nil), // 68: volume_server_pb.ReadVolumeFileStatusRequest
  5949. (*ReadVolumeFileStatusResponse)(nil), // 69: volume_server_pb.ReadVolumeFileStatusResponse
  5950. (*DiskStatus)(nil), // 70: volume_server_pb.DiskStatus
  5951. (*MemStatus)(nil), // 71: volume_server_pb.MemStatus
  5952. (*RemoteFile)(nil), // 72: volume_server_pb.RemoteFile
  5953. (*VolumeInfo)(nil), // 73: volume_server_pb.VolumeInfo
  5954. (*VolumeTierMoveDatToRemoteRequest)(nil), // 74: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  5955. (*VolumeTierMoveDatToRemoteResponse)(nil), // 75: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  5956. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 76: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  5957. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 77: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  5958. (*VolumeServerStatusRequest)(nil), // 78: volume_server_pb.VolumeServerStatusRequest
  5959. (*VolumeServerStatusResponse)(nil), // 79: volume_server_pb.VolumeServerStatusResponse
  5960. (*VolumeServerLeaveRequest)(nil), // 80: volume_server_pb.VolumeServerLeaveRequest
  5961. (*VolumeServerLeaveResponse)(nil), // 81: volume_server_pb.VolumeServerLeaveResponse
  5962. (*FetchAndWriteNeedleRequest)(nil), // 82: volume_server_pb.FetchAndWriteNeedleRequest
  5963. (*FetchAndWriteNeedleResponse)(nil), // 83: volume_server_pb.FetchAndWriteNeedleResponse
  5964. (*QueryRequest)(nil), // 84: volume_server_pb.QueryRequest
  5965. (*QueriedStripe)(nil), // 85: volume_server_pb.QueriedStripe
  5966. (*VolumeNeedleStatusRequest)(nil), // 86: volume_server_pb.VolumeNeedleStatusRequest
  5967. (*VolumeNeedleStatusResponse)(nil), // 87: volume_server_pb.VolumeNeedleStatusResponse
  5968. (*PingRequest)(nil), // 88: volume_server_pb.PingRequest
  5969. (*PingResponse)(nil), // 89: volume_server_pb.PingResponse
  5970. (*FetchAndWriteNeedleRequest_Replica)(nil), // 90: volume_server_pb.FetchAndWriteNeedleRequest.Replica
  5971. (*QueryRequest_Filter)(nil), // 91: volume_server_pb.QueryRequest.Filter
  5972. (*QueryRequest_InputSerialization)(nil), // 92: volume_server_pb.QueryRequest.InputSerialization
  5973. (*QueryRequest_OutputSerialization)(nil), // 93: volume_server_pb.QueryRequest.OutputSerialization
  5974. (*QueryRequest_InputSerialization_CSVInput)(nil), // 94: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  5975. (*QueryRequest_InputSerialization_JSONInput)(nil), // 95: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  5976. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 96: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  5977. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 97: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  5978. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 98: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  5979. (*remote_pb.RemoteConf)(nil), // 99: remote_pb.RemoteConf
  5980. (*remote_pb.RemoteStorageLocation)(nil), // 100: remote_pb.RemoteStorageLocation
  5981. }
  5982. var file_volume_server_proto_depIdxs = []int32{
  5983. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  5984. 73, // 1: volume_server_pb.ReadVolumeFileStatusResponse.volume_info:type_name -> volume_server_pb.VolumeInfo
  5985. 72, // 2: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  5986. 70, // 3: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  5987. 71, // 4: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  5988. 90, // 5: volume_server_pb.FetchAndWriteNeedleRequest.replicas:type_name -> volume_server_pb.FetchAndWriteNeedleRequest.Replica
  5989. 99, // 6: volume_server_pb.FetchAndWriteNeedleRequest.remote_conf:type_name -> remote_pb.RemoteConf
  5990. 100, // 7: volume_server_pb.FetchAndWriteNeedleRequest.remote_location:type_name -> remote_pb.RemoteStorageLocation
  5991. 91, // 8: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  5992. 92, // 9: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  5993. 93, // 10: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  5994. 94, // 11: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  5995. 95, // 12: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  5996. 96, // 13: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  5997. 97, // 14: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  5998. 98, // 15: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  5999. 0, // 16: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  6000. 4, // 17: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  6001. 6, // 18: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  6002. 8, // 19: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  6003. 10, // 20: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  6004. 12, // 21: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  6005. 14, // 22: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  6006. 16, // 23: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  6007. 18, // 24: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  6008. 20, // 25: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  6009. 22, // 26: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  6010. 24, // 27: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  6011. 26, // 28: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  6012. 28, // 29: volume_server_pb.VolumeServer.VolumeMarkWritable:input_type -> volume_server_pb.VolumeMarkWritableRequest
  6013. 30, // 30: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  6014. 32, // 31: volume_server_pb.VolumeServer.VolumeStatus:input_type -> volume_server_pb.VolumeStatusRequest
  6015. 34, // 32: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  6016. 68, // 33: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  6017. 36, // 34: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  6018. 38, // 35: volume_server_pb.VolumeServer.ReadNeedleBlob:input_type -> volume_server_pb.ReadNeedleBlobRequest
  6019. 40, // 36: volume_server_pb.VolumeServer.ReadNeedleMeta:input_type -> volume_server_pb.ReadNeedleMetaRequest
  6020. 42, // 37: volume_server_pb.VolumeServer.WriteNeedleBlob:input_type -> volume_server_pb.WriteNeedleBlobRequest
  6021. 44, // 38: volume_server_pb.VolumeServer.ReadAllNeedles:input_type -> volume_server_pb.ReadAllNeedlesRequest
  6022. 46, // 39: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  6023. 48, // 40: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  6024. 50, // 41: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  6025. 52, // 42: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  6026. 54, // 43: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  6027. 56, // 44: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  6028. 58, // 45: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  6029. 60, // 46: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  6030. 62, // 47: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  6031. 64, // 48: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  6032. 66, // 49: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  6033. 74, // 50: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  6034. 76, // 51: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  6035. 78, // 52: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  6036. 80, // 53: volume_server_pb.VolumeServer.VolumeServerLeave:input_type -> volume_server_pb.VolumeServerLeaveRequest
  6037. 82, // 54: volume_server_pb.VolumeServer.FetchAndWriteNeedle:input_type -> volume_server_pb.FetchAndWriteNeedleRequest
  6038. 84, // 55: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  6039. 86, // 56: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  6040. 88, // 57: volume_server_pb.VolumeServer.Ping:input_type -> volume_server_pb.PingRequest
  6041. 1, // 58: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  6042. 5, // 59: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  6043. 7, // 60: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  6044. 9, // 61: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  6045. 11, // 62: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  6046. 13, // 63: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  6047. 15, // 64: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  6048. 17, // 65: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  6049. 19, // 66: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  6050. 21, // 67: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  6051. 23, // 68: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  6052. 25, // 69: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  6053. 27, // 70: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  6054. 29, // 71: volume_server_pb.VolumeServer.VolumeMarkWritable:output_type -> volume_server_pb.VolumeMarkWritableResponse
  6055. 31, // 72: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  6056. 33, // 73: volume_server_pb.VolumeServer.VolumeStatus:output_type -> volume_server_pb.VolumeStatusResponse
  6057. 35, // 74: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  6058. 69, // 75: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  6059. 37, // 76: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  6060. 39, // 77: volume_server_pb.VolumeServer.ReadNeedleBlob:output_type -> volume_server_pb.ReadNeedleBlobResponse
  6061. 41, // 78: volume_server_pb.VolumeServer.ReadNeedleMeta:output_type -> volume_server_pb.ReadNeedleMetaResponse
  6062. 43, // 79: volume_server_pb.VolumeServer.WriteNeedleBlob:output_type -> volume_server_pb.WriteNeedleBlobResponse
  6063. 45, // 80: volume_server_pb.VolumeServer.ReadAllNeedles:output_type -> volume_server_pb.ReadAllNeedlesResponse
  6064. 47, // 81: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  6065. 49, // 82: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  6066. 51, // 83: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  6067. 53, // 84: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  6068. 55, // 85: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  6069. 57, // 86: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  6070. 59, // 87: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  6071. 61, // 88: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  6072. 63, // 89: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  6073. 65, // 90: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  6074. 67, // 91: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  6075. 75, // 92: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  6076. 77, // 93: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  6077. 79, // 94: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  6078. 81, // 95: volume_server_pb.VolumeServer.VolumeServerLeave:output_type -> volume_server_pb.VolumeServerLeaveResponse
  6079. 83, // 96: volume_server_pb.VolumeServer.FetchAndWriteNeedle:output_type -> volume_server_pb.FetchAndWriteNeedleResponse
  6080. 85, // 97: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  6081. 87, // 98: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  6082. 89, // 99: volume_server_pb.VolumeServer.Ping:output_type -> volume_server_pb.PingResponse
  6083. 58, // [58:100] is the sub-list for method output_type
  6084. 16, // [16:58] is the sub-list for method input_type
  6085. 16, // [16:16] is the sub-list for extension type_name
  6086. 16, // [16:16] is the sub-list for extension extendee
  6087. 0, // [0:16] is the sub-list for field type_name
  6088. }
  6089. func init() { file_volume_server_proto_init() }
  6090. func file_volume_server_proto_init() {
  6091. if File_volume_server_proto != nil {
  6092. return
  6093. }
  6094. if !protoimpl.UnsafeEnabled {
  6095. file_volume_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  6096. switch v := v.(*BatchDeleteRequest); i {
  6097. case 0:
  6098. return &v.state
  6099. case 1:
  6100. return &v.sizeCache
  6101. case 2:
  6102. return &v.unknownFields
  6103. default:
  6104. return nil
  6105. }
  6106. }
  6107. file_volume_server_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  6108. switch v := v.(*BatchDeleteResponse); i {
  6109. case 0:
  6110. return &v.state
  6111. case 1:
  6112. return &v.sizeCache
  6113. case 2:
  6114. return &v.unknownFields
  6115. default:
  6116. return nil
  6117. }
  6118. }
  6119. file_volume_server_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  6120. switch v := v.(*DeleteResult); i {
  6121. case 0:
  6122. return &v.state
  6123. case 1:
  6124. return &v.sizeCache
  6125. case 2:
  6126. return &v.unknownFields
  6127. default:
  6128. return nil
  6129. }
  6130. }
  6131. file_volume_server_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  6132. switch v := v.(*Empty); i {
  6133. case 0:
  6134. return &v.state
  6135. case 1:
  6136. return &v.sizeCache
  6137. case 2:
  6138. return &v.unknownFields
  6139. default:
  6140. return nil
  6141. }
  6142. }
  6143. file_volume_server_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  6144. switch v := v.(*VacuumVolumeCheckRequest); i {
  6145. case 0:
  6146. return &v.state
  6147. case 1:
  6148. return &v.sizeCache
  6149. case 2:
  6150. return &v.unknownFields
  6151. default:
  6152. return nil
  6153. }
  6154. }
  6155. file_volume_server_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  6156. switch v := v.(*VacuumVolumeCheckResponse); i {
  6157. case 0:
  6158. return &v.state
  6159. case 1:
  6160. return &v.sizeCache
  6161. case 2:
  6162. return &v.unknownFields
  6163. default:
  6164. return nil
  6165. }
  6166. }
  6167. file_volume_server_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  6168. switch v := v.(*VacuumVolumeCompactRequest); i {
  6169. case 0:
  6170. return &v.state
  6171. case 1:
  6172. return &v.sizeCache
  6173. case 2:
  6174. return &v.unknownFields
  6175. default:
  6176. return nil
  6177. }
  6178. }
  6179. file_volume_server_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  6180. switch v := v.(*VacuumVolumeCompactResponse); i {
  6181. case 0:
  6182. return &v.state
  6183. case 1:
  6184. return &v.sizeCache
  6185. case 2:
  6186. return &v.unknownFields
  6187. default:
  6188. return nil
  6189. }
  6190. }
  6191. file_volume_server_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  6192. switch v := v.(*VacuumVolumeCommitRequest); i {
  6193. case 0:
  6194. return &v.state
  6195. case 1:
  6196. return &v.sizeCache
  6197. case 2:
  6198. return &v.unknownFields
  6199. default:
  6200. return nil
  6201. }
  6202. }
  6203. file_volume_server_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  6204. switch v := v.(*VacuumVolumeCommitResponse); i {
  6205. case 0:
  6206. return &v.state
  6207. case 1:
  6208. return &v.sizeCache
  6209. case 2:
  6210. return &v.unknownFields
  6211. default:
  6212. return nil
  6213. }
  6214. }
  6215. file_volume_server_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  6216. switch v := v.(*VacuumVolumeCleanupRequest); i {
  6217. case 0:
  6218. return &v.state
  6219. case 1:
  6220. return &v.sizeCache
  6221. case 2:
  6222. return &v.unknownFields
  6223. default:
  6224. return nil
  6225. }
  6226. }
  6227. file_volume_server_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  6228. switch v := v.(*VacuumVolumeCleanupResponse); i {
  6229. case 0:
  6230. return &v.state
  6231. case 1:
  6232. return &v.sizeCache
  6233. case 2:
  6234. return &v.unknownFields
  6235. default:
  6236. return nil
  6237. }
  6238. }
  6239. file_volume_server_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  6240. switch v := v.(*DeleteCollectionRequest); i {
  6241. case 0:
  6242. return &v.state
  6243. case 1:
  6244. return &v.sizeCache
  6245. case 2:
  6246. return &v.unknownFields
  6247. default:
  6248. return nil
  6249. }
  6250. }
  6251. file_volume_server_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  6252. switch v := v.(*DeleteCollectionResponse); i {
  6253. case 0:
  6254. return &v.state
  6255. case 1:
  6256. return &v.sizeCache
  6257. case 2:
  6258. return &v.unknownFields
  6259. default:
  6260. return nil
  6261. }
  6262. }
  6263. file_volume_server_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  6264. switch v := v.(*AllocateVolumeRequest); i {
  6265. case 0:
  6266. return &v.state
  6267. case 1:
  6268. return &v.sizeCache
  6269. case 2:
  6270. return &v.unknownFields
  6271. default:
  6272. return nil
  6273. }
  6274. }
  6275. file_volume_server_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  6276. switch v := v.(*AllocateVolumeResponse); i {
  6277. case 0:
  6278. return &v.state
  6279. case 1:
  6280. return &v.sizeCache
  6281. case 2:
  6282. return &v.unknownFields
  6283. default:
  6284. return nil
  6285. }
  6286. }
  6287. file_volume_server_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  6288. switch v := v.(*VolumeSyncStatusRequest); i {
  6289. case 0:
  6290. return &v.state
  6291. case 1:
  6292. return &v.sizeCache
  6293. case 2:
  6294. return &v.unknownFields
  6295. default:
  6296. return nil
  6297. }
  6298. }
  6299. file_volume_server_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  6300. switch v := v.(*VolumeSyncStatusResponse); i {
  6301. case 0:
  6302. return &v.state
  6303. case 1:
  6304. return &v.sizeCache
  6305. case 2:
  6306. return &v.unknownFields
  6307. default:
  6308. return nil
  6309. }
  6310. }
  6311. file_volume_server_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  6312. switch v := v.(*VolumeIncrementalCopyRequest); i {
  6313. case 0:
  6314. return &v.state
  6315. case 1:
  6316. return &v.sizeCache
  6317. case 2:
  6318. return &v.unknownFields
  6319. default:
  6320. return nil
  6321. }
  6322. }
  6323. file_volume_server_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  6324. switch v := v.(*VolumeIncrementalCopyResponse); i {
  6325. case 0:
  6326. return &v.state
  6327. case 1:
  6328. return &v.sizeCache
  6329. case 2:
  6330. return &v.unknownFields
  6331. default:
  6332. return nil
  6333. }
  6334. }
  6335. file_volume_server_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  6336. switch v := v.(*VolumeMountRequest); i {
  6337. case 0:
  6338. return &v.state
  6339. case 1:
  6340. return &v.sizeCache
  6341. case 2:
  6342. return &v.unknownFields
  6343. default:
  6344. return nil
  6345. }
  6346. }
  6347. file_volume_server_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  6348. switch v := v.(*VolumeMountResponse); i {
  6349. case 0:
  6350. return &v.state
  6351. case 1:
  6352. return &v.sizeCache
  6353. case 2:
  6354. return &v.unknownFields
  6355. default:
  6356. return nil
  6357. }
  6358. }
  6359. file_volume_server_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  6360. switch v := v.(*VolumeUnmountRequest); i {
  6361. case 0:
  6362. return &v.state
  6363. case 1:
  6364. return &v.sizeCache
  6365. case 2:
  6366. return &v.unknownFields
  6367. default:
  6368. return nil
  6369. }
  6370. }
  6371. file_volume_server_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  6372. switch v := v.(*VolumeUnmountResponse); i {
  6373. case 0:
  6374. return &v.state
  6375. case 1:
  6376. return &v.sizeCache
  6377. case 2:
  6378. return &v.unknownFields
  6379. default:
  6380. return nil
  6381. }
  6382. }
  6383. file_volume_server_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  6384. switch v := v.(*VolumeDeleteRequest); i {
  6385. case 0:
  6386. return &v.state
  6387. case 1:
  6388. return &v.sizeCache
  6389. case 2:
  6390. return &v.unknownFields
  6391. default:
  6392. return nil
  6393. }
  6394. }
  6395. file_volume_server_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  6396. switch v := v.(*VolumeDeleteResponse); i {
  6397. case 0:
  6398. return &v.state
  6399. case 1:
  6400. return &v.sizeCache
  6401. case 2:
  6402. return &v.unknownFields
  6403. default:
  6404. return nil
  6405. }
  6406. }
  6407. file_volume_server_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  6408. switch v := v.(*VolumeMarkReadonlyRequest); i {
  6409. case 0:
  6410. return &v.state
  6411. case 1:
  6412. return &v.sizeCache
  6413. case 2:
  6414. return &v.unknownFields
  6415. default:
  6416. return nil
  6417. }
  6418. }
  6419. file_volume_server_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  6420. switch v := v.(*VolumeMarkReadonlyResponse); i {
  6421. case 0:
  6422. return &v.state
  6423. case 1:
  6424. return &v.sizeCache
  6425. case 2:
  6426. return &v.unknownFields
  6427. default:
  6428. return nil
  6429. }
  6430. }
  6431. file_volume_server_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  6432. switch v := v.(*VolumeMarkWritableRequest); i {
  6433. case 0:
  6434. return &v.state
  6435. case 1:
  6436. return &v.sizeCache
  6437. case 2:
  6438. return &v.unknownFields
  6439. default:
  6440. return nil
  6441. }
  6442. }
  6443. file_volume_server_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  6444. switch v := v.(*VolumeMarkWritableResponse); i {
  6445. case 0:
  6446. return &v.state
  6447. case 1:
  6448. return &v.sizeCache
  6449. case 2:
  6450. return &v.unknownFields
  6451. default:
  6452. return nil
  6453. }
  6454. }
  6455. file_volume_server_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  6456. switch v := v.(*VolumeConfigureRequest); i {
  6457. case 0:
  6458. return &v.state
  6459. case 1:
  6460. return &v.sizeCache
  6461. case 2:
  6462. return &v.unknownFields
  6463. default:
  6464. return nil
  6465. }
  6466. }
  6467. file_volume_server_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  6468. switch v := v.(*VolumeConfigureResponse); i {
  6469. case 0:
  6470. return &v.state
  6471. case 1:
  6472. return &v.sizeCache
  6473. case 2:
  6474. return &v.unknownFields
  6475. default:
  6476. return nil
  6477. }
  6478. }
  6479. file_volume_server_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  6480. switch v := v.(*VolumeStatusRequest); i {
  6481. case 0:
  6482. return &v.state
  6483. case 1:
  6484. return &v.sizeCache
  6485. case 2:
  6486. return &v.unknownFields
  6487. default:
  6488. return nil
  6489. }
  6490. }
  6491. file_volume_server_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  6492. switch v := v.(*VolumeStatusResponse); i {
  6493. case 0:
  6494. return &v.state
  6495. case 1:
  6496. return &v.sizeCache
  6497. case 2:
  6498. return &v.unknownFields
  6499. default:
  6500. return nil
  6501. }
  6502. }
  6503. file_volume_server_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  6504. switch v := v.(*VolumeCopyRequest); i {
  6505. case 0:
  6506. return &v.state
  6507. case 1:
  6508. return &v.sizeCache
  6509. case 2:
  6510. return &v.unknownFields
  6511. default:
  6512. return nil
  6513. }
  6514. }
  6515. file_volume_server_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  6516. switch v := v.(*VolumeCopyResponse); i {
  6517. case 0:
  6518. return &v.state
  6519. case 1:
  6520. return &v.sizeCache
  6521. case 2:
  6522. return &v.unknownFields
  6523. default:
  6524. return nil
  6525. }
  6526. }
  6527. file_volume_server_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  6528. switch v := v.(*CopyFileRequest); i {
  6529. case 0:
  6530. return &v.state
  6531. case 1:
  6532. return &v.sizeCache
  6533. case 2:
  6534. return &v.unknownFields
  6535. default:
  6536. return nil
  6537. }
  6538. }
  6539. file_volume_server_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  6540. switch v := v.(*CopyFileResponse); i {
  6541. case 0:
  6542. return &v.state
  6543. case 1:
  6544. return &v.sizeCache
  6545. case 2:
  6546. return &v.unknownFields
  6547. default:
  6548. return nil
  6549. }
  6550. }
  6551. file_volume_server_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  6552. switch v := v.(*ReadNeedleBlobRequest); i {
  6553. case 0:
  6554. return &v.state
  6555. case 1:
  6556. return &v.sizeCache
  6557. case 2:
  6558. return &v.unknownFields
  6559. default:
  6560. return nil
  6561. }
  6562. }
  6563. file_volume_server_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  6564. switch v := v.(*ReadNeedleBlobResponse); i {
  6565. case 0:
  6566. return &v.state
  6567. case 1:
  6568. return &v.sizeCache
  6569. case 2:
  6570. return &v.unknownFields
  6571. default:
  6572. return nil
  6573. }
  6574. }
  6575. file_volume_server_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  6576. switch v := v.(*ReadNeedleMetaRequest); i {
  6577. case 0:
  6578. return &v.state
  6579. case 1:
  6580. return &v.sizeCache
  6581. case 2:
  6582. return &v.unknownFields
  6583. default:
  6584. return nil
  6585. }
  6586. }
  6587. file_volume_server_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  6588. switch v := v.(*ReadNeedleMetaResponse); i {
  6589. case 0:
  6590. return &v.state
  6591. case 1:
  6592. return &v.sizeCache
  6593. case 2:
  6594. return &v.unknownFields
  6595. default:
  6596. return nil
  6597. }
  6598. }
  6599. file_volume_server_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  6600. switch v := v.(*WriteNeedleBlobRequest); i {
  6601. case 0:
  6602. return &v.state
  6603. case 1:
  6604. return &v.sizeCache
  6605. case 2:
  6606. return &v.unknownFields
  6607. default:
  6608. return nil
  6609. }
  6610. }
  6611. file_volume_server_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  6612. switch v := v.(*WriteNeedleBlobResponse); i {
  6613. case 0:
  6614. return &v.state
  6615. case 1:
  6616. return &v.sizeCache
  6617. case 2:
  6618. return &v.unknownFields
  6619. default:
  6620. return nil
  6621. }
  6622. }
  6623. file_volume_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  6624. switch v := v.(*ReadAllNeedlesRequest); i {
  6625. case 0:
  6626. return &v.state
  6627. case 1:
  6628. return &v.sizeCache
  6629. case 2:
  6630. return &v.unknownFields
  6631. default:
  6632. return nil
  6633. }
  6634. }
  6635. file_volume_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  6636. switch v := v.(*ReadAllNeedlesResponse); i {
  6637. case 0:
  6638. return &v.state
  6639. case 1:
  6640. return &v.sizeCache
  6641. case 2:
  6642. return &v.unknownFields
  6643. default:
  6644. return nil
  6645. }
  6646. }
  6647. file_volume_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  6648. switch v := v.(*VolumeTailSenderRequest); i {
  6649. case 0:
  6650. return &v.state
  6651. case 1:
  6652. return &v.sizeCache
  6653. case 2:
  6654. return &v.unknownFields
  6655. default:
  6656. return nil
  6657. }
  6658. }
  6659. file_volume_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  6660. switch v := v.(*VolumeTailSenderResponse); i {
  6661. case 0:
  6662. return &v.state
  6663. case 1:
  6664. return &v.sizeCache
  6665. case 2:
  6666. return &v.unknownFields
  6667. default:
  6668. return nil
  6669. }
  6670. }
  6671. file_volume_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  6672. switch v := v.(*VolumeTailReceiverRequest); i {
  6673. case 0:
  6674. return &v.state
  6675. case 1:
  6676. return &v.sizeCache
  6677. case 2:
  6678. return &v.unknownFields
  6679. default:
  6680. return nil
  6681. }
  6682. }
  6683. file_volume_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  6684. switch v := v.(*VolumeTailReceiverResponse); i {
  6685. case 0:
  6686. return &v.state
  6687. case 1:
  6688. return &v.sizeCache
  6689. case 2:
  6690. return &v.unknownFields
  6691. default:
  6692. return nil
  6693. }
  6694. }
  6695. file_volume_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  6696. switch v := v.(*VolumeEcShardsGenerateRequest); i {
  6697. case 0:
  6698. return &v.state
  6699. case 1:
  6700. return &v.sizeCache
  6701. case 2:
  6702. return &v.unknownFields
  6703. default:
  6704. return nil
  6705. }
  6706. }
  6707. file_volume_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  6708. switch v := v.(*VolumeEcShardsGenerateResponse); i {
  6709. case 0:
  6710. return &v.state
  6711. case 1:
  6712. return &v.sizeCache
  6713. case 2:
  6714. return &v.unknownFields
  6715. default:
  6716. return nil
  6717. }
  6718. }
  6719. file_volume_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  6720. switch v := v.(*VolumeEcShardsRebuildRequest); i {
  6721. case 0:
  6722. return &v.state
  6723. case 1:
  6724. return &v.sizeCache
  6725. case 2:
  6726. return &v.unknownFields
  6727. default:
  6728. return nil
  6729. }
  6730. }
  6731. file_volume_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  6732. switch v := v.(*VolumeEcShardsRebuildResponse); i {
  6733. case 0:
  6734. return &v.state
  6735. case 1:
  6736. return &v.sizeCache
  6737. case 2:
  6738. return &v.unknownFields
  6739. default:
  6740. return nil
  6741. }
  6742. }
  6743. file_volume_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  6744. switch v := v.(*VolumeEcShardsCopyRequest); i {
  6745. case 0:
  6746. return &v.state
  6747. case 1:
  6748. return &v.sizeCache
  6749. case 2:
  6750. return &v.unknownFields
  6751. default:
  6752. return nil
  6753. }
  6754. }
  6755. file_volume_server_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  6756. switch v := v.(*VolumeEcShardsCopyResponse); i {
  6757. case 0:
  6758. return &v.state
  6759. case 1:
  6760. return &v.sizeCache
  6761. case 2:
  6762. return &v.unknownFields
  6763. default:
  6764. return nil
  6765. }
  6766. }
  6767. file_volume_server_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  6768. switch v := v.(*VolumeEcShardsDeleteRequest); i {
  6769. case 0:
  6770. return &v.state
  6771. case 1:
  6772. return &v.sizeCache
  6773. case 2:
  6774. return &v.unknownFields
  6775. default:
  6776. return nil
  6777. }
  6778. }
  6779. file_volume_server_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  6780. switch v := v.(*VolumeEcShardsDeleteResponse); i {
  6781. case 0:
  6782. return &v.state
  6783. case 1:
  6784. return &v.sizeCache
  6785. case 2:
  6786. return &v.unknownFields
  6787. default:
  6788. return nil
  6789. }
  6790. }
  6791. file_volume_server_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  6792. switch v := v.(*VolumeEcShardsMountRequest); i {
  6793. case 0:
  6794. return &v.state
  6795. case 1:
  6796. return &v.sizeCache
  6797. case 2:
  6798. return &v.unknownFields
  6799. default:
  6800. return nil
  6801. }
  6802. }
  6803. file_volume_server_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  6804. switch v := v.(*VolumeEcShardsMountResponse); i {
  6805. case 0:
  6806. return &v.state
  6807. case 1:
  6808. return &v.sizeCache
  6809. case 2:
  6810. return &v.unknownFields
  6811. default:
  6812. return nil
  6813. }
  6814. }
  6815. file_volume_server_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  6816. switch v := v.(*VolumeEcShardsUnmountRequest); i {
  6817. case 0:
  6818. return &v.state
  6819. case 1:
  6820. return &v.sizeCache
  6821. case 2:
  6822. return &v.unknownFields
  6823. default:
  6824. return nil
  6825. }
  6826. }
  6827. file_volume_server_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  6828. switch v := v.(*VolumeEcShardsUnmountResponse); i {
  6829. case 0:
  6830. return &v.state
  6831. case 1:
  6832. return &v.sizeCache
  6833. case 2:
  6834. return &v.unknownFields
  6835. default:
  6836. return nil
  6837. }
  6838. }
  6839. file_volume_server_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  6840. switch v := v.(*VolumeEcShardReadRequest); i {
  6841. case 0:
  6842. return &v.state
  6843. case 1:
  6844. return &v.sizeCache
  6845. case 2:
  6846. return &v.unknownFields
  6847. default:
  6848. return nil
  6849. }
  6850. }
  6851. file_volume_server_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  6852. switch v := v.(*VolumeEcShardReadResponse); i {
  6853. case 0:
  6854. return &v.state
  6855. case 1:
  6856. return &v.sizeCache
  6857. case 2:
  6858. return &v.unknownFields
  6859. default:
  6860. return nil
  6861. }
  6862. }
  6863. file_volume_server_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  6864. switch v := v.(*VolumeEcBlobDeleteRequest); i {
  6865. case 0:
  6866. return &v.state
  6867. case 1:
  6868. return &v.sizeCache
  6869. case 2:
  6870. return &v.unknownFields
  6871. default:
  6872. return nil
  6873. }
  6874. }
  6875. file_volume_server_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  6876. switch v := v.(*VolumeEcBlobDeleteResponse); i {
  6877. case 0:
  6878. return &v.state
  6879. case 1:
  6880. return &v.sizeCache
  6881. case 2:
  6882. return &v.unknownFields
  6883. default:
  6884. return nil
  6885. }
  6886. }
  6887. file_volume_server_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  6888. switch v := v.(*VolumeEcShardsToVolumeRequest); i {
  6889. case 0:
  6890. return &v.state
  6891. case 1:
  6892. return &v.sizeCache
  6893. case 2:
  6894. return &v.unknownFields
  6895. default:
  6896. return nil
  6897. }
  6898. }
  6899. file_volume_server_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  6900. switch v := v.(*VolumeEcShardsToVolumeResponse); i {
  6901. case 0:
  6902. return &v.state
  6903. case 1:
  6904. return &v.sizeCache
  6905. case 2:
  6906. return &v.unknownFields
  6907. default:
  6908. return nil
  6909. }
  6910. }
  6911. file_volume_server_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
  6912. switch v := v.(*ReadVolumeFileStatusRequest); i {
  6913. case 0:
  6914. return &v.state
  6915. case 1:
  6916. return &v.sizeCache
  6917. case 2:
  6918. return &v.unknownFields
  6919. default:
  6920. return nil
  6921. }
  6922. }
  6923. file_volume_server_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
  6924. switch v := v.(*ReadVolumeFileStatusResponse); i {
  6925. case 0:
  6926. return &v.state
  6927. case 1:
  6928. return &v.sizeCache
  6929. case 2:
  6930. return &v.unknownFields
  6931. default:
  6932. return nil
  6933. }
  6934. }
  6935. file_volume_server_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
  6936. switch v := v.(*DiskStatus); i {
  6937. case 0:
  6938. return &v.state
  6939. case 1:
  6940. return &v.sizeCache
  6941. case 2:
  6942. return &v.unknownFields
  6943. default:
  6944. return nil
  6945. }
  6946. }
  6947. file_volume_server_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
  6948. switch v := v.(*MemStatus); i {
  6949. case 0:
  6950. return &v.state
  6951. case 1:
  6952. return &v.sizeCache
  6953. case 2:
  6954. return &v.unknownFields
  6955. default:
  6956. return nil
  6957. }
  6958. }
  6959. file_volume_server_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
  6960. switch v := v.(*RemoteFile); i {
  6961. case 0:
  6962. return &v.state
  6963. case 1:
  6964. return &v.sizeCache
  6965. case 2:
  6966. return &v.unknownFields
  6967. default:
  6968. return nil
  6969. }
  6970. }
  6971. file_volume_server_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
  6972. switch v := v.(*VolumeInfo); i {
  6973. case 0:
  6974. return &v.state
  6975. case 1:
  6976. return &v.sizeCache
  6977. case 2:
  6978. return &v.unknownFields
  6979. default:
  6980. return nil
  6981. }
  6982. }
  6983. file_volume_server_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
  6984. switch v := v.(*VolumeTierMoveDatToRemoteRequest); i {
  6985. case 0:
  6986. return &v.state
  6987. case 1:
  6988. return &v.sizeCache
  6989. case 2:
  6990. return &v.unknownFields
  6991. default:
  6992. return nil
  6993. }
  6994. }
  6995. file_volume_server_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
  6996. switch v := v.(*VolumeTierMoveDatToRemoteResponse); i {
  6997. case 0:
  6998. return &v.state
  6999. case 1:
  7000. return &v.sizeCache
  7001. case 2:
  7002. return &v.unknownFields
  7003. default:
  7004. return nil
  7005. }
  7006. }
  7007. file_volume_server_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
  7008. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); i {
  7009. case 0:
  7010. return &v.state
  7011. case 1:
  7012. return &v.sizeCache
  7013. case 2:
  7014. return &v.unknownFields
  7015. default:
  7016. return nil
  7017. }
  7018. }
  7019. file_volume_server_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
  7020. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); i {
  7021. case 0:
  7022. return &v.state
  7023. case 1:
  7024. return &v.sizeCache
  7025. case 2:
  7026. return &v.unknownFields
  7027. default:
  7028. return nil
  7029. }
  7030. }
  7031. file_volume_server_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
  7032. switch v := v.(*VolumeServerStatusRequest); i {
  7033. case 0:
  7034. return &v.state
  7035. case 1:
  7036. return &v.sizeCache
  7037. case 2:
  7038. return &v.unknownFields
  7039. default:
  7040. return nil
  7041. }
  7042. }
  7043. file_volume_server_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
  7044. switch v := v.(*VolumeServerStatusResponse); i {
  7045. case 0:
  7046. return &v.state
  7047. case 1:
  7048. return &v.sizeCache
  7049. case 2:
  7050. return &v.unknownFields
  7051. default:
  7052. return nil
  7053. }
  7054. }
  7055. file_volume_server_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
  7056. switch v := v.(*VolumeServerLeaveRequest); i {
  7057. case 0:
  7058. return &v.state
  7059. case 1:
  7060. return &v.sizeCache
  7061. case 2:
  7062. return &v.unknownFields
  7063. default:
  7064. return nil
  7065. }
  7066. }
  7067. file_volume_server_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
  7068. switch v := v.(*VolumeServerLeaveResponse); i {
  7069. case 0:
  7070. return &v.state
  7071. case 1:
  7072. return &v.sizeCache
  7073. case 2:
  7074. return &v.unknownFields
  7075. default:
  7076. return nil
  7077. }
  7078. }
  7079. file_volume_server_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
  7080. switch v := v.(*FetchAndWriteNeedleRequest); i {
  7081. case 0:
  7082. return &v.state
  7083. case 1:
  7084. return &v.sizeCache
  7085. case 2:
  7086. return &v.unknownFields
  7087. default:
  7088. return nil
  7089. }
  7090. }
  7091. file_volume_server_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
  7092. switch v := v.(*FetchAndWriteNeedleResponse); i {
  7093. case 0:
  7094. return &v.state
  7095. case 1:
  7096. return &v.sizeCache
  7097. case 2:
  7098. return &v.unknownFields
  7099. default:
  7100. return nil
  7101. }
  7102. }
  7103. file_volume_server_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
  7104. switch v := v.(*QueryRequest); i {
  7105. case 0:
  7106. return &v.state
  7107. case 1:
  7108. return &v.sizeCache
  7109. case 2:
  7110. return &v.unknownFields
  7111. default:
  7112. return nil
  7113. }
  7114. }
  7115. file_volume_server_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
  7116. switch v := v.(*QueriedStripe); i {
  7117. case 0:
  7118. return &v.state
  7119. case 1:
  7120. return &v.sizeCache
  7121. case 2:
  7122. return &v.unknownFields
  7123. default:
  7124. return nil
  7125. }
  7126. }
  7127. file_volume_server_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
  7128. switch v := v.(*VolumeNeedleStatusRequest); i {
  7129. case 0:
  7130. return &v.state
  7131. case 1:
  7132. return &v.sizeCache
  7133. case 2:
  7134. return &v.unknownFields
  7135. default:
  7136. return nil
  7137. }
  7138. }
  7139. file_volume_server_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
  7140. switch v := v.(*VolumeNeedleStatusResponse); i {
  7141. case 0:
  7142. return &v.state
  7143. case 1:
  7144. return &v.sizeCache
  7145. case 2:
  7146. return &v.unknownFields
  7147. default:
  7148. return nil
  7149. }
  7150. }
  7151. file_volume_server_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
  7152. switch v := v.(*PingRequest); i {
  7153. case 0:
  7154. return &v.state
  7155. case 1:
  7156. return &v.sizeCache
  7157. case 2:
  7158. return &v.unknownFields
  7159. default:
  7160. return nil
  7161. }
  7162. }
  7163. file_volume_server_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
  7164. switch v := v.(*PingResponse); i {
  7165. case 0:
  7166. return &v.state
  7167. case 1:
  7168. return &v.sizeCache
  7169. case 2:
  7170. return &v.unknownFields
  7171. default:
  7172. return nil
  7173. }
  7174. }
  7175. file_volume_server_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} {
  7176. switch v := v.(*FetchAndWriteNeedleRequest_Replica); i {
  7177. case 0:
  7178. return &v.state
  7179. case 1:
  7180. return &v.sizeCache
  7181. case 2:
  7182. return &v.unknownFields
  7183. default:
  7184. return nil
  7185. }
  7186. }
  7187. file_volume_server_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} {
  7188. switch v := v.(*QueryRequest_Filter); i {
  7189. case 0:
  7190. return &v.state
  7191. case 1:
  7192. return &v.sizeCache
  7193. case 2:
  7194. return &v.unknownFields
  7195. default:
  7196. return nil
  7197. }
  7198. }
  7199. file_volume_server_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} {
  7200. switch v := v.(*QueryRequest_InputSerialization); i {
  7201. case 0:
  7202. return &v.state
  7203. case 1:
  7204. return &v.sizeCache
  7205. case 2:
  7206. return &v.unknownFields
  7207. default:
  7208. return nil
  7209. }
  7210. }
  7211. file_volume_server_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} {
  7212. switch v := v.(*QueryRequest_OutputSerialization); i {
  7213. case 0:
  7214. return &v.state
  7215. case 1:
  7216. return &v.sizeCache
  7217. case 2:
  7218. return &v.unknownFields
  7219. default:
  7220. return nil
  7221. }
  7222. }
  7223. file_volume_server_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} {
  7224. switch v := v.(*QueryRequest_InputSerialization_CSVInput); i {
  7225. case 0:
  7226. return &v.state
  7227. case 1:
  7228. return &v.sizeCache
  7229. case 2:
  7230. return &v.unknownFields
  7231. default:
  7232. return nil
  7233. }
  7234. }
  7235. file_volume_server_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} {
  7236. switch v := v.(*QueryRequest_InputSerialization_JSONInput); i {
  7237. case 0:
  7238. return &v.state
  7239. case 1:
  7240. return &v.sizeCache
  7241. case 2:
  7242. return &v.unknownFields
  7243. default:
  7244. return nil
  7245. }
  7246. }
  7247. file_volume_server_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} {
  7248. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  7249. case 0:
  7250. return &v.state
  7251. case 1:
  7252. return &v.sizeCache
  7253. case 2:
  7254. return &v.unknownFields
  7255. default:
  7256. return nil
  7257. }
  7258. }
  7259. file_volume_server_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} {
  7260. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  7261. case 0:
  7262. return &v.state
  7263. case 1:
  7264. return &v.sizeCache
  7265. case 2:
  7266. return &v.unknownFields
  7267. default:
  7268. return nil
  7269. }
  7270. }
  7271. file_volume_server_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} {
  7272. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  7273. case 0:
  7274. return &v.state
  7275. case 1:
  7276. return &v.sizeCache
  7277. case 2:
  7278. return &v.unknownFields
  7279. default:
  7280. return nil
  7281. }
  7282. }
  7283. }
  7284. type x struct{}
  7285. out := protoimpl.TypeBuilder{
  7286. File: protoimpl.DescBuilder{
  7287. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  7288. RawDescriptor: file_volume_server_proto_rawDesc,
  7289. NumEnums: 0,
  7290. NumMessages: 99,
  7291. NumExtensions: 0,
  7292. NumServices: 1,
  7293. },
  7294. GoTypes: file_volume_server_proto_goTypes,
  7295. DependencyIndexes: file_volume_server_proto_depIdxs,
  7296. MessageInfos: file_volume_server_proto_msgTypes,
  7297. }.Build()
  7298. File_volume_server_proto = out.File
  7299. file_volume_server_proto_rawDesc = nil
  7300. file_volume_server_proto_goTypes = nil
  7301. file_volume_server_proto_depIdxs = nil
  7302. }