volume_server.pb.go 304 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.30.0
  4. // protoc v4.23.3
  5. // source: volume_server.proto
  6. package volume_server_pb
  7. import (
  8. remote_pb "github.com/seaweedfs/seaweedfs/weed/pb/remote_pb"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type BatchDeleteRequest struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. FileIds []string `protobuf:"bytes,1,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
  25. SkipCookieCheck bool `protobuf:"varint,2,opt,name=skip_cookie_check,json=skipCookieCheck,proto3" json:"skip_cookie_check,omitempty"`
  26. }
  27. func (x *BatchDeleteRequest) Reset() {
  28. *x = BatchDeleteRequest{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_volume_server_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *BatchDeleteRequest) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*BatchDeleteRequest) ProtoMessage() {}
  39. func (x *BatchDeleteRequest) ProtoReflect() protoreflect.Message {
  40. mi := &file_volume_server_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use BatchDeleteRequest.ProtoReflect.Descriptor instead.
  51. func (*BatchDeleteRequest) Descriptor() ([]byte, []int) {
  52. return file_volume_server_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *BatchDeleteRequest) GetFileIds() []string {
  55. if x != nil {
  56. return x.FileIds
  57. }
  58. return nil
  59. }
  60. func (x *BatchDeleteRequest) GetSkipCookieCheck() bool {
  61. if x != nil {
  62. return x.SkipCookieCheck
  63. }
  64. return false
  65. }
  66. type BatchDeleteResponse struct {
  67. state protoimpl.MessageState
  68. sizeCache protoimpl.SizeCache
  69. unknownFields protoimpl.UnknownFields
  70. Results []*DeleteResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
  71. }
  72. func (x *BatchDeleteResponse) Reset() {
  73. *x = BatchDeleteResponse{}
  74. if protoimpl.UnsafeEnabled {
  75. mi := &file_volume_server_proto_msgTypes[1]
  76. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  77. ms.StoreMessageInfo(mi)
  78. }
  79. }
  80. func (x *BatchDeleteResponse) String() string {
  81. return protoimpl.X.MessageStringOf(x)
  82. }
  83. func (*BatchDeleteResponse) ProtoMessage() {}
  84. func (x *BatchDeleteResponse) ProtoReflect() protoreflect.Message {
  85. mi := &file_volume_server_proto_msgTypes[1]
  86. if protoimpl.UnsafeEnabled && x != nil {
  87. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  88. if ms.LoadMessageInfo() == nil {
  89. ms.StoreMessageInfo(mi)
  90. }
  91. return ms
  92. }
  93. return mi.MessageOf(x)
  94. }
  95. // Deprecated: Use BatchDeleteResponse.ProtoReflect.Descriptor instead.
  96. func (*BatchDeleteResponse) Descriptor() ([]byte, []int) {
  97. return file_volume_server_proto_rawDescGZIP(), []int{1}
  98. }
  99. func (x *BatchDeleteResponse) GetResults() []*DeleteResult {
  100. if x != nil {
  101. return x.Results
  102. }
  103. return nil
  104. }
  105. type DeleteResult struct {
  106. state protoimpl.MessageState
  107. sizeCache protoimpl.SizeCache
  108. unknownFields protoimpl.UnknownFields
  109. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
  110. Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
  111. Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
  112. Size uint32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  113. Version uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"`
  114. }
  115. func (x *DeleteResult) Reset() {
  116. *x = DeleteResult{}
  117. if protoimpl.UnsafeEnabled {
  118. mi := &file_volume_server_proto_msgTypes[2]
  119. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  120. ms.StoreMessageInfo(mi)
  121. }
  122. }
  123. func (x *DeleteResult) String() string {
  124. return protoimpl.X.MessageStringOf(x)
  125. }
  126. func (*DeleteResult) ProtoMessage() {}
  127. func (x *DeleteResult) ProtoReflect() protoreflect.Message {
  128. mi := &file_volume_server_proto_msgTypes[2]
  129. if protoimpl.UnsafeEnabled && x != nil {
  130. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  131. if ms.LoadMessageInfo() == nil {
  132. ms.StoreMessageInfo(mi)
  133. }
  134. return ms
  135. }
  136. return mi.MessageOf(x)
  137. }
  138. // Deprecated: Use DeleteResult.ProtoReflect.Descriptor instead.
  139. func (*DeleteResult) Descriptor() ([]byte, []int) {
  140. return file_volume_server_proto_rawDescGZIP(), []int{2}
  141. }
  142. func (x *DeleteResult) GetFileId() string {
  143. if x != nil {
  144. return x.FileId
  145. }
  146. return ""
  147. }
  148. func (x *DeleteResult) GetStatus() int32 {
  149. if x != nil {
  150. return x.Status
  151. }
  152. return 0
  153. }
  154. func (x *DeleteResult) GetError() string {
  155. if x != nil {
  156. return x.Error
  157. }
  158. return ""
  159. }
  160. func (x *DeleteResult) GetSize() uint32 {
  161. if x != nil {
  162. return x.Size
  163. }
  164. return 0
  165. }
  166. func (x *DeleteResult) GetVersion() uint32 {
  167. if x != nil {
  168. return x.Version
  169. }
  170. return 0
  171. }
  172. type Empty struct {
  173. state protoimpl.MessageState
  174. sizeCache protoimpl.SizeCache
  175. unknownFields protoimpl.UnknownFields
  176. }
  177. func (x *Empty) Reset() {
  178. *x = Empty{}
  179. if protoimpl.UnsafeEnabled {
  180. mi := &file_volume_server_proto_msgTypes[3]
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. ms.StoreMessageInfo(mi)
  183. }
  184. }
  185. func (x *Empty) String() string {
  186. return protoimpl.X.MessageStringOf(x)
  187. }
  188. func (*Empty) ProtoMessage() {}
  189. func (x *Empty) ProtoReflect() protoreflect.Message {
  190. mi := &file_volume_server_proto_msgTypes[3]
  191. if protoimpl.UnsafeEnabled && x != nil {
  192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  193. if ms.LoadMessageInfo() == nil {
  194. ms.StoreMessageInfo(mi)
  195. }
  196. return ms
  197. }
  198. return mi.MessageOf(x)
  199. }
  200. // Deprecated: Use Empty.ProtoReflect.Descriptor instead.
  201. func (*Empty) Descriptor() ([]byte, []int) {
  202. return file_volume_server_proto_rawDescGZIP(), []int{3}
  203. }
  204. type VacuumVolumeCheckRequest struct {
  205. state protoimpl.MessageState
  206. sizeCache protoimpl.SizeCache
  207. unknownFields protoimpl.UnknownFields
  208. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  209. }
  210. func (x *VacuumVolumeCheckRequest) Reset() {
  211. *x = VacuumVolumeCheckRequest{}
  212. if protoimpl.UnsafeEnabled {
  213. mi := &file_volume_server_proto_msgTypes[4]
  214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  215. ms.StoreMessageInfo(mi)
  216. }
  217. }
  218. func (x *VacuumVolumeCheckRequest) String() string {
  219. return protoimpl.X.MessageStringOf(x)
  220. }
  221. func (*VacuumVolumeCheckRequest) ProtoMessage() {}
  222. func (x *VacuumVolumeCheckRequest) ProtoReflect() protoreflect.Message {
  223. mi := &file_volume_server_proto_msgTypes[4]
  224. if protoimpl.UnsafeEnabled && x != nil {
  225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  226. if ms.LoadMessageInfo() == nil {
  227. ms.StoreMessageInfo(mi)
  228. }
  229. return ms
  230. }
  231. return mi.MessageOf(x)
  232. }
  233. // Deprecated: Use VacuumVolumeCheckRequest.ProtoReflect.Descriptor instead.
  234. func (*VacuumVolumeCheckRequest) Descriptor() ([]byte, []int) {
  235. return file_volume_server_proto_rawDescGZIP(), []int{4}
  236. }
  237. func (x *VacuumVolumeCheckRequest) GetVolumeId() uint32 {
  238. if x != nil {
  239. return x.VolumeId
  240. }
  241. return 0
  242. }
  243. type VacuumVolumeCheckResponse struct {
  244. state protoimpl.MessageState
  245. sizeCache protoimpl.SizeCache
  246. unknownFields protoimpl.UnknownFields
  247. GarbageRatio float64 `protobuf:"fixed64,1,opt,name=garbage_ratio,json=garbageRatio,proto3" json:"garbage_ratio,omitempty"`
  248. }
  249. func (x *VacuumVolumeCheckResponse) Reset() {
  250. *x = VacuumVolumeCheckResponse{}
  251. if protoimpl.UnsafeEnabled {
  252. mi := &file_volume_server_proto_msgTypes[5]
  253. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  254. ms.StoreMessageInfo(mi)
  255. }
  256. }
  257. func (x *VacuumVolumeCheckResponse) String() string {
  258. return protoimpl.X.MessageStringOf(x)
  259. }
  260. func (*VacuumVolumeCheckResponse) ProtoMessage() {}
  261. func (x *VacuumVolumeCheckResponse) ProtoReflect() protoreflect.Message {
  262. mi := &file_volume_server_proto_msgTypes[5]
  263. if protoimpl.UnsafeEnabled && x != nil {
  264. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  265. if ms.LoadMessageInfo() == nil {
  266. ms.StoreMessageInfo(mi)
  267. }
  268. return ms
  269. }
  270. return mi.MessageOf(x)
  271. }
  272. // Deprecated: Use VacuumVolumeCheckResponse.ProtoReflect.Descriptor instead.
  273. func (*VacuumVolumeCheckResponse) Descriptor() ([]byte, []int) {
  274. return file_volume_server_proto_rawDescGZIP(), []int{5}
  275. }
  276. func (x *VacuumVolumeCheckResponse) GetGarbageRatio() float64 {
  277. if x != nil {
  278. return x.GarbageRatio
  279. }
  280. return 0
  281. }
  282. type VacuumVolumeCompactRequest struct {
  283. state protoimpl.MessageState
  284. sizeCache protoimpl.SizeCache
  285. unknownFields protoimpl.UnknownFields
  286. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  287. Preallocate int64 `protobuf:"varint,2,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  288. }
  289. func (x *VacuumVolumeCompactRequest) Reset() {
  290. *x = VacuumVolumeCompactRequest{}
  291. if protoimpl.UnsafeEnabled {
  292. mi := &file_volume_server_proto_msgTypes[6]
  293. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  294. ms.StoreMessageInfo(mi)
  295. }
  296. }
  297. func (x *VacuumVolumeCompactRequest) String() string {
  298. return protoimpl.X.MessageStringOf(x)
  299. }
  300. func (*VacuumVolumeCompactRequest) ProtoMessage() {}
  301. func (x *VacuumVolumeCompactRequest) ProtoReflect() protoreflect.Message {
  302. mi := &file_volume_server_proto_msgTypes[6]
  303. if protoimpl.UnsafeEnabled && x != nil {
  304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  305. if ms.LoadMessageInfo() == nil {
  306. ms.StoreMessageInfo(mi)
  307. }
  308. return ms
  309. }
  310. return mi.MessageOf(x)
  311. }
  312. // Deprecated: Use VacuumVolumeCompactRequest.ProtoReflect.Descriptor instead.
  313. func (*VacuumVolumeCompactRequest) Descriptor() ([]byte, []int) {
  314. return file_volume_server_proto_rawDescGZIP(), []int{6}
  315. }
  316. func (x *VacuumVolumeCompactRequest) GetVolumeId() uint32 {
  317. if x != nil {
  318. return x.VolumeId
  319. }
  320. return 0
  321. }
  322. func (x *VacuumVolumeCompactRequest) GetPreallocate() int64 {
  323. if x != nil {
  324. return x.Preallocate
  325. }
  326. return 0
  327. }
  328. type VacuumVolumeCompactResponse struct {
  329. state protoimpl.MessageState
  330. sizeCache protoimpl.SizeCache
  331. unknownFields protoimpl.UnknownFields
  332. ProcessedBytes int64 `protobuf:"varint,1,opt,name=processed_bytes,json=processedBytes,proto3" json:"processed_bytes,omitempty"`
  333. LoadAvg_1M float32 `protobuf:"fixed32,2,opt,name=load_avg_1m,json=loadAvg1m,proto3" json:"load_avg_1m,omitempty"`
  334. }
  335. func (x *VacuumVolumeCompactResponse) Reset() {
  336. *x = VacuumVolumeCompactResponse{}
  337. if protoimpl.UnsafeEnabled {
  338. mi := &file_volume_server_proto_msgTypes[7]
  339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  340. ms.StoreMessageInfo(mi)
  341. }
  342. }
  343. func (x *VacuumVolumeCompactResponse) String() string {
  344. return protoimpl.X.MessageStringOf(x)
  345. }
  346. func (*VacuumVolumeCompactResponse) ProtoMessage() {}
  347. func (x *VacuumVolumeCompactResponse) ProtoReflect() protoreflect.Message {
  348. mi := &file_volume_server_proto_msgTypes[7]
  349. if protoimpl.UnsafeEnabled && x != nil {
  350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  351. if ms.LoadMessageInfo() == nil {
  352. ms.StoreMessageInfo(mi)
  353. }
  354. return ms
  355. }
  356. return mi.MessageOf(x)
  357. }
  358. // Deprecated: Use VacuumVolumeCompactResponse.ProtoReflect.Descriptor instead.
  359. func (*VacuumVolumeCompactResponse) Descriptor() ([]byte, []int) {
  360. return file_volume_server_proto_rawDescGZIP(), []int{7}
  361. }
  362. func (x *VacuumVolumeCompactResponse) GetProcessedBytes() int64 {
  363. if x != nil {
  364. return x.ProcessedBytes
  365. }
  366. return 0
  367. }
  368. func (x *VacuumVolumeCompactResponse) GetLoadAvg_1M() float32 {
  369. if x != nil {
  370. return x.LoadAvg_1M
  371. }
  372. return 0
  373. }
  374. type VacuumVolumeCommitRequest struct {
  375. state protoimpl.MessageState
  376. sizeCache protoimpl.SizeCache
  377. unknownFields protoimpl.UnknownFields
  378. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  379. }
  380. func (x *VacuumVolumeCommitRequest) Reset() {
  381. *x = VacuumVolumeCommitRequest{}
  382. if protoimpl.UnsafeEnabled {
  383. mi := &file_volume_server_proto_msgTypes[8]
  384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  385. ms.StoreMessageInfo(mi)
  386. }
  387. }
  388. func (x *VacuumVolumeCommitRequest) String() string {
  389. return protoimpl.X.MessageStringOf(x)
  390. }
  391. func (*VacuumVolumeCommitRequest) ProtoMessage() {}
  392. func (x *VacuumVolumeCommitRequest) ProtoReflect() protoreflect.Message {
  393. mi := &file_volume_server_proto_msgTypes[8]
  394. if protoimpl.UnsafeEnabled && x != nil {
  395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  396. if ms.LoadMessageInfo() == nil {
  397. ms.StoreMessageInfo(mi)
  398. }
  399. return ms
  400. }
  401. return mi.MessageOf(x)
  402. }
  403. // Deprecated: Use VacuumVolumeCommitRequest.ProtoReflect.Descriptor instead.
  404. func (*VacuumVolumeCommitRequest) Descriptor() ([]byte, []int) {
  405. return file_volume_server_proto_rawDescGZIP(), []int{8}
  406. }
  407. func (x *VacuumVolumeCommitRequest) GetVolumeId() uint32 {
  408. if x != nil {
  409. return x.VolumeId
  410. }
  411. return 0
  412. }
  413. type VacuumVolumeCommitResponse struct {
  414. state protoimpl.MessageState
  415. sizeCache protoimpl.SizeCache
  416. unknownFields protoimpl.UnknownFields
  417. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  418. VolumeSize uint64 `protobuf:"varint,2,opt,name=volume_size,json=volumeSize,proto3" json:"volume_size,omitempty"`
  419. }
  420. func (x *VacuumVolumeCommitResponse) Reset() {
  421. *x = VacuumVolumeCommitResponse{}
  422. if protoimpl.UnsafeEnabled {
  423. mi := &file_volume_server_proto_msgTypes[9]
  424. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  425. ms.StoreMessageInfo(mi)
  426. }
  427. }
  428. func (x *VacuumVolumeCommitResponse) String() string {
  429. return protoimpl.X.MessageStringOf(x)
  430. }
  431. func (*VacuumVolumeCommitResponse) ProtoMessage() {}
  432. func (x *VacuumVolumeCommitResponse) ProtoReflect() protoreflect.Message {
  433. mi := &file_volume_server_proto_msgTypes[9]
  434. if protoimpl.UnsafeEnabled && x != nil {
  435. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  436. if ms.LoadMessageInfo() == nil {
  437. ms.StoreMessageInfo(mi)
  438. }
  439. return ms
  440. }
  441. return mi.MessageOf(x)
  442. }
  443. // Deprecated: Use VacuumVolumeCommitResponse.ProtoReflect.Descriptor instead.
  444. func (*VacuumVolumeCommitResponse) Descriptor() ([]byte, []int) {
  445. return file_volume_server_proto_rawDescGZIP(), []int{9}
  446. }
  447. func (x *VacuumVolumeCommitResponse) GetIsReadOnly() bool {
  448. if x != nil {
  449. return x.IsReadOnly
  450. }
  451. return false
  452. }
  453. func (x *VacuumVolumeCommitResponse) GetVolumeSize() uint64 {
  454. if x != nil {
  455. return x.VolumeSize
  456. }
  457. return 0
  458. }
  459. type VacuumVolumeCleanupRequest struct {
  460. state protoimpl.MessageState
  461. sizeCache protoimpl.SizeCache
  462. unknownFields protoimpl.UnknownFields
  463. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  464. }
  465. func (x *VacuumVolumeCleanupRequest) Reset() {
  466. *x = VacuumVolumeCleanupRequest{}
  467. if protoimpl.UnsafeEnabled {
  468. mi := &file_volume_server_proto_msgTypes[10]
  469. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  470. ms.StoreMessageInfo(mi)
  471. }
  472. }
  473. func (x *VacuumVolumeCleanupRequest) String() string {
  474. return protoimpl.X.MessageStringOf(x)
  475. }
  476. func (*VacuumVolumeCleanupRequest) ProtoMessage() {}
  477. func (x *VacuumVolumeCleanupRequest) ProtoReflect() protoreflect.Message {
  478. mi := &file_volume_server_proto_msgTypes[10]
  479. if protoimpl.UnsafeEnabled && x != nil {
  480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  481. if ms.LoadMessageInfo() == nil {
  482. ms.StoreMessageInfo(mi)
  483. }
  484. return ms
  485. }
  486. return mi.MessageOf(x)
  487. }
  488. // Deprecated: Use VacuumVolumeCleanupRequest.ProtoReflect.Descriptor instead.
  489. func (*VacuumVolumeCleanupRequest) Descriptor() ([]byte, []int) {
  490. return file_volume_server_proto_rawDescGZIP(), []int{10}
  491. }
  492. func (x *VacuumVolumeCleanupRequest) GetVolumeId() uint32 {
  493. if x != nil {
  494. return x.VolumeId
  495. }
  496. return 0
  497. }
  498. type VacuumVolumeCleanupResponse struct {
  499. state protoimpl.MessageState
  500. sizeCache protoimpl.SizeCache
  501. unknownFields protoimpl.UnknownFields
  502. }
  503. func (x *VacuumVolumeCleanupResponse) Reset() {
  504. *x = VacuumVolumeCleanupResponse{}
  505. if protoimpl.UnsafeEnabled {
  506. mi := &file_volume_server_proto_msgTypes[11]
  507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  508. ms.StoreMessageInfo(mi)
  509. }
  510. }
  511. func (x *VacuumVolumeCleanupResponse) String() string {
  512. return protoimpl.X.MessageStringOf(x)
  513. }
  514. func (*VacuumVolumeCleanupResponse) ProtoMessage() {}
  515. func (x *VacuumVolumeCleanupResponse) ProtoReflect() protoreflect.Message {
  516. mi := &file_volume_server_proto_msgTypes[11]
  517. if protoimpl.UnsafeEnabled && x != nil {
  518. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  519. if ms.LoadMessageInfo() == nil {
  520. ms.StoreMessageInfo(mi)
  521. }
  522. return ms
  523. }
  524. return mi.MessageOf(x)
  525. }
  526. // Deprecated: Use VacuumVolumeCleanupResponse.ProtoReflect.Descriptor instead.
  527. func (*VacuumVolumeCleanupResponse) Descriptor() ([]byte, []int) {
  528. return file_volume_server_proto_rawDescGZIP(), []int{11}
  529. }
  530. type DeleteCollectionRequest struct {
  531. state protoimpl.MessageState
  532. sizeCache protoimpl.SizeCache
  533. unknownFields protoimpl.UnknownFields
  534. Collection string `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty"`
  535. }
  536. func (x *DeleteCollectionRequest) Reset() {
  537. *x = DeleteCollectionRequest{}
  538. if protoimpl.UnsafeEnabled {
  539. mi := &file_volume_server_proto_msgTypes[12]
  540. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  541. ms.StoreMessageInfo(mi)
  542. }
  543. }
  544. func (x *DeleteCollectionRequest) String() string {
  545. return protoimpl.X.MessageStringOf(x)
  546. }
  547. func (*DeleteCollectionRequest) ProtoMessage() {}
  548. func (x *DeleteCollectionRequest) ProtoReflect() protoreflect.Message {
  549. mi := &file_volume_server_proto_msgTypes[12]
  550. if protoimpl.UnsafeEnabled && x != nil {
  551. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  552. if ms.LoadMessageInfo() == nil {
  553. ms.StoreMessageInfo(mi)
  554. }
  555. return ms
  556. }
  557. return mi.MessageOf(x)
  558. }
  559. // Deprecated: Use DeleteCollectionRequest.ProtoReflect.Descriptor instead.
  560. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) {
  561. return file_volume_server_proto_rawDescGZIP(), []int{12}
  562. }
  563. func (x *DeleteCollectionRequest) GetCollection() string {
  564. if x != nil {
  565. return x.Collection
  566. }
  567. return ""
  568. }
  569. type DeleteCollectionResponse struct {
  570. state protoimpl.MessageState
  571. sizeCache protoimpl.SizeCache
  572. unknownFields protoimpl.UnknownFields
  573. }
  574. func (x *DeleteCollectionResponse) Reset() {
  575. *x = DeleteCollectionResponse{}
  576. if protoimpl.UnsafeEnabled {
  577. mi := &file_volume_server_proto_msgTypes[13]
  578. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  579. ms.StoreMessageInfo(mi)
  580. }
  581. }
  582. func (x *DeleteCollectionResponse) String() string {
  583. return protoimpl.X.MessageStringOf(x)
  584. }
  585. func (*DeleteCollectionResponse) ProtoMessage() {}
  586. func (x *DeleteCollectionResponse) ProtoReflect() protoreflect.Message {
  587. mi := &file_volume_server_proto_msgTypes[13]
  588. if protoimpl.UnsafeEnabled && x != nil {
  589. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  590. if ms.LoadMessageInfo() == nil {
  591. ms.StoreMessageInfo(mi)
  592. }
  593. return ms
  594. }
  595. return mi.MessageOf(x)
  596. }
  597. // Deprecated: Use DeleteCollectionResponse.ProtoReflect.Descriptor instead.
  598. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) {
  599. return file_volume_server_proto_rawDescGZIP(), []int{13}
  600. }
  601. type AllocateVolumeRequest struct {
  602. state protoimpl.MessageState
  603. sizeCache protoimpl.SizeCache
  604. unknownFields protoimpl.UnknownFields
  605. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  606. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  607. Preallocate int64 `protobuf:"varint,3,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  608. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  609. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  610. MemoryMapMaxSizeMb uint32 `protobuf:"varint,6,opt,name=memory_map_max_size_mb,json=memoryMapMaxSizeMb,proto3" json:"memory_map_max_size_mb,omitempty"`
  611. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  612. }
  613. func (x *AllocateVolumeRequest) Reset() {
  614. *x = AllocateVolumeRequest{}
  615. if protoimpl.UnsafeEnabled {
  616. mi := &file_volume_server_proto_msgTypes[14]
  617. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  618. ms.StoreMessageInfo(mi)
  619. }
  620. }
  621. func (x *AllocateVolumeRequest) String() string {
  622. return protoimpl.X.MessageStringOf(x)
  623. }
  624. func (*AllocateVolumeRequest) ProtoMessage() {}
  625. func (x *AllocateVolumeRequest) ProtoReflect() protoreflect.Message {
  626. mi := &file_volume_server_proto_msgTypes[14]
  627. if protoimpl.UnsafeEnabled && x != nil {
  628. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  629. if ms.LoadMessageInfo() == nil {
  630. ms.StoreMessageInfo(mi)
  631. }
  632. return ms
  633. }
  634. return mi.MessageOf(x)
  635. }
  636. // Deprecated: Use AllocateVolumeRequest.ProtoReflect.Descriptor instead.
  637. func (*AllocateVolumeRequest) Descriptor() ([]byte, []int) {
  638. return file_volume_server_proto_rawDescGZIP(), []int{14}
  639. }
  640. func (x *AllocateVolumeRequest) GetVolumeId() uint32 {
  641. if x != nil {
  642. return x.VolumeId
  643. }
  644. return 0
  645. }
  646. func (x *AllocateVolumeRequest) GetCollection() string {
  647. if x != nil {
  648. return x.Collection
  649. }
  650. return ""
  651. }
  652. func (x *AllocateVolumeRequest) GetPreallocate() int64 {
  653. if x != nil {
  654. return x.Preallocate
  655. }
  656. return 0
  657. }
  658. func (x *AllocateVolumeRequest) GetReplication() string {
  659. if x != nil {
  660. return x.Replication
  661. }
  662. return ""
  663. }
  664. func (x *AllocateVolumeRequest) GetTtl() string {
  665. if x != nil {
  666. return x.Ttl
  667. }
  668. return ""
  669. }
  670. func (x *AllocateVolumeRequest) GetMemoryMapMaxSizeMb() uint32 {
  671. if x != nil {
  672. return x.MemoryMapMaxSizeMb
  673. }
  674. return 0
  675. }
  676. func (x *AllocateVolumeRequest) GetDiskType() string {
  677. if x != nil {
  678. return x.DiskType
  679. }
  680. return ""
  681. }
  682. type AllocateVolumeResponse struct {
  683. state protoimpl.MessageState
  684. sizeCache protoimpl.SizeCache
  685. unknownFields protoimpl.UnknownFields
  686. }
  687. func (x *AllocateVolumeResponse) Reset() {
  688. *x = AllocateVolumeResponse{}
  689. if protoimpl.UnsafeEnabled {
  690. mi := &file_volume_server_proto_msgTypes[15]
  691. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  692. ms.StoreMessageInfo(mi)
  693. }
  694. }
  695. func (x *AllocateVolumeResponse) String() string {
  696. return protoimpl.X.MessageStringOf(x)
  697. }
  698. func (*AllocateVolumeResponse) ProtoMessage() {}
  699. func (x *AllocateVolumeResponse) ProtoReflect() protoreflect.Message {
  700. mi := &file_volume_server_proto_msgTypes[15]
  701. if protoimpl.UnsafeEnabled && x != nil {
  702. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  703. if ms.LoadMessageInfo() == nil {
  704. ms.StoreMessageInfo(mi)
  705. }
  706. return ms
  707. }
  708. return mi.MessageOf(x)
  709. }
  710. // Deprecated: Use AllocateVolumeResponse.ProtoReflect.Descriptor instead.
  711. func (*AllocateVolumeResponse) Descriptor() ([]byte, []int) {
  712. return file_volume_server_proto_rawDescGZIP(), []int{15}
  713. }
  714. type VolumeSyncStatusRequest struct {
  715. state protoimpl.MessageState
  716. sizeCache protoimpl.SizeCache
  717. unknownFields protoimpl.UnknownFields
  718. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  719. }
  720. func (x *VolumeSyncStatusRequest) Reset() {
  721. *x = VolumeSyncStatusRequest{}
  722. if protoimpl.UnsafeEnabled {
  723. mi := &file_volume_server_proto_msgTypes[16]
  724. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  725. ms.StoreMessageInfo(mi)
  726. }
  727. }
  728. func (x *VolumeSyncStatusRequest) String() string {
  729. return protoimpl.X.MessageStringOf(x)
  730. }
  731. func (*VolumeSyncStatusRequest) ProtoMessage() {}
  732. func (x *VolumeSyncStatusRequest) ProtoReflect() protoreflect.Message {
  733. mi := &file_volume_server_proto_msgTypes[16]
  734. if protoimpl.UnsafeEnabled && x != nil {
  735. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  736. if ms.LoadMessageInfo() == nil {
  737. ms.StoreMessageInfo(mi)
  738. }
  739. return ms
  740. }
  741. return mi.MessageOf(x)
  742. }
  743. // Deprecated: Use VolumeSyncStatusRequest.ProtoReflect.Descriptor instead.
  744. func (*VolumeSyncStatusRequest) Descriptor() ([]byte, []int) {
  745. return file_volume_server_proto_rawDescGZIP(), []int{16}
  746. }
  747. func (x *VolumeSyncStatusRequest) GetVolumeId() uint32 {
  748. if x != nil {
  749. return x.VolumeId
  750. }
  751. return 0
  752. }
  753. type VolumeSyncStatusResponse struct {
  754. state protoimpl.MessageState
  755. sizeCache protoimpl.SizeCache
  756. unknownFields protoimpl.UnknownFields
  757. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  758. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  759. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  760. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  761. TailOffset uint64 `protobuf:"varint,6,opt,name=tail_offset,json=tailOffset,proto3" json:"tail_offset,omitempty"`
  762. CompactRevision uint32 `protobuf:"varint,7,opt,name=compact_revision,json=compactRevision,proto3" json:"compact_revision,omitempty"`
  763. IdxFileSize uint64 `protobuf:"varint,8,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  764. }
  765. func (x *VolumeSyncStatusResponse) Reset() {
  766. *x = VolumeSyncStatusResponse{}
  767. if protoimpl.UnsafeEnabled {
  768. mi := &file_volume_server_proto_msgTypes[17]
  769. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  770. ms.StoreMessageInfo(mi)
  771. }
  772. }
  773. func (x *VolumeSyncStatusResponse) String() string {
  774. return protoimpl.X.MessageStringOf(x)
  775. }
  776. func (*VolumeSyncStatusResponse) ProtoMessage() {}
  777. func (x *VolumeSyncStatusResponse) ProtoReflect() protoreflect.Message {
  778. mi := &file_volume_server_proto_msgTypes[17]
  779. if protoimpl.UnsafeEnabled && x != nil {
  780. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  781. if ms.LoadMessageInfo() == nil {
  782. ms.StoreMessageInfo(mi)
  783. }
  784. return ms
  785. }
  786. return mi.MessageOf(x)
  787. }
  788. // Deprecated: Use VolumeSyncStatusResponse.ProtoReflect.Descriptor instead.
  789. func (*VolumeSyncStatusResponse) Descriptor() ([]byte, []int) {
  790. return file_volume_server_proto_rawDescGZIP(), []int{17}
  791. }
  792. func (x *VolumeSyncStatusResponse) GetVolumeId() uint32 {
  793. if x != nil {
  794. return x.VolumeId
  795. }
  796. return 0
  797. }
  798. func (x *VolumeSyncStatusResponse) GetCollection() string {
  799. if x != nil {
  800. return x.Collection
  801. }
  802. return ""
  803. }
  804. func (x *VolumeSyncStatusResponse) GetReplication() string {
  805. if x != nil {
  806. return x.Replication
  807. }
  808. return ""
  809. }
  810. func (x *VolumeSyncStatusResponse) GetTtl() string {
  811. if x != nil {
  812. return x.Ttl
  813. }
  814. return ""
  815. }
  816. func (x *VolumeSyncStatusResponse) GetTailOffset() uint64 {
  817. if x != nil {
  818. return x.TailOffset
  819. }
  820. return 0
  821. }
  822. func (x *VolumeSyncStatusResponse) GetCompactRevision() uint32 {
  823. if x != nil {
  824. return x.CompactRevision
  825. }
  826. return 0
  827. }
  828. func (x *VolumeSyncStatusResponse) GetIdxFileSize() uint64 {
  829. if x != nil {
  830. return x.IdxFileSize
  831. }
  832. return 0
  833. }
  834. type VolumeIncrementalCopyRequest struct {
  835. state protoimpl.MessageState
  836. sizeCache protoimpl.SizeCache
  837. unknownFields protoimpl.UnknownFields
  838. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  839. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  840. }
  841. func (x *VolumeIncrementalCopyRequest) Reset() {
  842. *x = VolumeIncrementalCopyRequest{}
  843. if protoimpl.UnsafeEnabled {
  844. mi := &file_volume_server_proto_msgTypes[18]
  845. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  846. ms.StoreMessageInfo(mi)
  847. }
  848. }
  849. func (x *VolumeIncrementalCopyRequest) String() string {
  850. return protoimpl.X.MessageStringOf(x)
  851. }
  852. func (*VolumeIncrementalCopyRequest) ProtoMessage() {}
  853. func (x *VolumeIncrementalCopyRequest) ProtoReflect() protoreflect.Message {
  854. mi := &file_volume_server_proto_msgTypes[18]
  855. if protoimpl.UnsafeEnabled && x != nil {
  856. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  857. if ms.LoadMessageInfo() == nil {
  858. ms.StoreMessageInfo(mi)
  859. }
  860. return ms
  861. }
  862. return mi.MessageOf(x)
  863. }
  864. // Deprecated: Use VolumeIncrementalCopyRequest.ProtoReflect.Descriptor instead.
  865. func (*VolumeIncrementalCopyRequest) Descriptor() ([]byte, []int) {
  866. return file_volume_server_proto_rawDescGZIP(), []int{18}
  867. }
  868. func (x *VolumeIncrementalCopyRequest) GetVolumeId() uint32 {
  869. if x != nil {
  870. return x.VolumeId
  871. }
  872. return 0
  873. }
  874. func (x *VolumeIncrementalCopyRequest) GetSinceNs() uint64 {
  875. if x != nil {
  876. return x.SinceNs
  877. }
  878. return 0
  879. }
  880. type VolumeIncrementalCopyResponse struct {
  881. state protoimpl.MessageState
  882. sizeCache protoimpl.SizeCache
  883. unknownFields protoimpl.UnknownFields
  884. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  885. }
  886. func (x *VolumeIncrementalCopyResponse) Reset() {
  887. *x = VolumeIncrementalCopyResponse{}
  888. if protoimpl.UnsafeEnabled {
  889. mi := &file_volume_server_proto_msgTypes[19]
  890. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  891. ms.StoreMessageInfo(mi)
  892. }
  893. }
  894. func (x *VolumeIncrementalCopyResponse) String() string {
  895. return protoimpl.X.MessageStringOf(x)
  896. }
  897. func (*VolumeIncrementalCopyResponse) ProtoMessage() {}
  898. func (x *VolumeIncrementalCopyResponse) ProtoReflect() protoreflect.Message {
  899. mi := &file_volume_server_proto_msgTypes[19]
  900. if protoimpl.UnsafeEnabled && x != nil {
  901. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  902. if ms.LoadMessageInfo() == nil {
  903. ms.StoreMessageInfo(mi)
  904. }
  905. return ms
  906. }
  907. return mi.MessageOf(x)
  908. }
  909. // Deprecated: Use VolumeIncrementalCopyResponse.ProtoReflect.Descriptor instead.
  910. func (*VolumeIncrementalCopyResponse) Descriptor() ([]byte, []int) {
  911. return file_volume_server_proto_rawDescGZIP(), []int{19}
  912. }
  913. func (x *VolumeIncrementalCopyResponse) GetFileContent() []byte {
  914. if x != nil {
  915. return x.FileContent
  916. }
  917. return nil
  918. }
  919. type VolumeMountRequest struct {
  920. state protoimpl.MessageState
  921. sizeCache protoimpl.SizeCache
  922. unknownFields protoimpl.UnknownFields
  923. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  924. }
  925. func (x *VolumeMountRequest) Reset() {
  926. *x = VolumeMountRequest{}
  927. if protoimpl.UnsafeEnabled {
  928. mi := &file_volume_server_proto_msgTypes[20]
  929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  930. ms.StoreMessageInfo(mi)
  931. }
  932. }
  933. func (x *VolumeMountRequest) String() string {
  934. return protoimpl.X.MessageStringOf(x)
  935. }
  936. func (*VolumeMountRequest) ProtoMessage() {}
  937. func (x *VolumeMountRequest) ProtoReflect() protoreflect.Message {
  938. mi := &file_volume_server_proto_msgTypes[20]
  939. if protoimpl.UnsafeEnabled && x != nil {
  940. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  941. if ms.LoadMessageInfo() == nil {
  942. ms.StoreMessageInfo(mi)
  943. }
  944. return ms
  945. }
  946. return mi.MessageOf(x)
  947. }
  948. // Deprecated: Use VolumeMountRequest.ProtoReflect.Descriptor instead.
  949. func (*VolumeMountRequest) Descriptor() ([]byte, []int) {
  950. return file_volume_server_proto_rawDescGZIP(), []int{20}
  951. }
  952. func (x *VolumeMountRequest) GetVolumeId() uint32 {
  953. if x != nil {
  954. return x.VolumeId
  955. }
  956. return 0
  957. }
  958. type VolumeMountResponse struct {
  959. state protoimpl.MessageState
  960. sizeCache protoimpl.SizeCache
  961. unknownFields protoimpl.UnknownFields
  962. }
  963. func (x *VolumeMountResponse) Reset() {
  964. *x = VolumeMountResponse{}
  965. if protoimpl.UnsafeEnabled {
  966. mi := &file_volume_server_proto_msgTypes[21]
  967. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  968. ms.StoreMessageInfo(mi)
  969. }
  970. }
  971. func (x *VolumeMountResponse) String() string {
  972. return protoimpl.X.MessageStringOf(x)
  973. }
  974. func (*VolumeMountResponse) ProtoMessage() {}
  975. func (x *VolumeMountResponse) ProtoReflect() protoreflect.Message {
  976. mi := &file_volume_server_proto_msgTypes[21]
  977. if protoimpl.UnsafeEnabled && x != nil {
  978. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  979. if ms.LoadMessageInfo() == nil {
  980. ms.StoreMessageInfo(mi)
  981. }
  982. return ms
  983. }
  984. return mi.MessageOf(x)
  985. }
  986. // Deprecated: Use VolumeMountResponse.ProtoReflect.Descriptor instead.
  987. func (*VolumeMountResponse) Descriptor() ([]byte, []int) {
  988. return file_volume_server_proto_rawDescGZIP(), []int{21}
  989. }
  990. type VolumeUnmountRequest struct {
  991. state protoimpl.MessageState
  992. sizeCache protoimpl.SizeCache
  993. unknownFields protoimpl.UnknownFields
  994. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  995. }
  996. func (x *VolumeUnmountRequest) Reset() {
  997. *x = VolumeUnmountRequest{}
  998. if protoimpl.UnsafeEnabled {
  999. mi := &file_volume_server_proto_msgTypes[22]
  1000. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1001. ms.StoreMessageInfo(mi)
  1002. }
  1003. }
  1004. func (x *VolumeUnmountRequest) String() string {
  1005. return protoimpl.X.MessageStringOf(x)
  1006. }
  1007. func (*VolumeUnmountRequest) ProtoMessage() {}
  1008. func (x *VolumeUnmountRequest) ProtoReflect() protoreflect.Message {
  1009. mi := &file_volume_server_proto_msgTypes[22]
  1010. if protoimpl.UnsafeEnabled && x != nil {
  1011. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1012. if ms.LoadMessageInfo() == nil {
  1013. ms.StoreMessageInfo(mi)
  1014. }
  1015. return ms
  1016. }
  1017. return mi.MessageOf(x)
  1018. }
  1019. // Deprecated: Use VolumeUnmountRequest.ProtoReflect.Descriptor instead.
  1020. func (*VolumeUnmountRequest) Descriptor() ([]byte, []int) {
  1021. return file_volume_server_proto_rawDescGZIP(), []int{22}
  1022. }
  1023. func (x *VolumeUnmountRequest) GetVolumeId() uint32 {
  1024. if x != nil {
  1025. return x.VolumeId
  1026. }
  1027. return 0
  1028. }
  1029. type VolumeUnmountResponse struct {
  1030. state protoimpl.MessageState
  1031. sizeCache protoimpl.SizeCache
  1032. unknownFields protoimpl.UnknownFields
  1033. }
  1034. func (x *VolumeUnmountResponse) Reset() {
  1035. *x = VolumeUnmountResponse{}
  1036. if protoimpl.UnsafeEnabled {
  1037. mi := &file_volume_server_proto_msgTypes[23]
  1038. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1039. ms.StoreMessageInfo(mi)
  1040. }
  1041. }
  1042. func (x *VolumeUnmountResponse) String() string {
  1043. return protoimpl.X.MessageStringOf(x)
  1044. }
  1045. func (*VolumeUnmountResponse) ProtoMessage() {}
  1046. func (x *VolumeUnmountResponse) ProtoReflect() protoreflect.Message {
  1047. mi := &file_volume_server_proto_msgTypes[23]
  1048. if protoimpl.UnsafeEnabled && x != nil {
  1049. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1050. if ms.LoadMessageInfo() == nil {
  1051. ms.StoreMessageInfo(mi)
  1052. }
  1053. return ms
  1054. }
  1055. return mi.MessageOf(x)
  1056. }
  1057. // Deprecated: Use VolumeUnmountResponse.ProtoReflect.Descriptor instead.
  1058. func (*VolumeUnmountResponse) Descriptor() ([]byte, []int) {
  1059. return file_volume_server_proto_rawDescGZIP(), []int{23}
  1060. }
  1061. type VolumeDeleteRequest struct {
  1062. state protoimpl.MessageState
  1063. sizeCache protoimpl.SizeCache
  1064. unknownFields protoimpl.UnknownFields
  1065. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1066. OnlyEmpty bool `protobuf:"varint,2,opt,name=only_empty,json=onlyEmpty,proto3" json:"only_empty,omitempty"`
  1067. }
  1068. func (x *VolumeDeleteRequest) Reset() {
  1069. *x = VolumeDeleteRequest{}
  1070. if protoimpl.UnsafeEnabled {
  1071. mi := &file_volume_server_proto_msgTypes[24]
  1072. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1073. ms.StoreMessageInfo(mi)
  1074. }
  1075. }
  1076. func (x *VolumeDeleteRequest) String() string {
  1077. return protoimpl.X.MessageStringOf(x)
  1078. }
  1079. func (*VolumeDeleteRequest) ProtoMessage() {}
  1080. func (x *VolumeDeleteRequest) ProtoReflect() protoreflect.Message {
  1081. mi := &file_volume_server_proto_msgTypes[24]
  1082. if protoimpl.UnsafeEnabled && x != nil {
  1083. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1084. if ms.LoadMessageInfo() == nil {
  1085. ms.StoreMessageInfo(mi)
  1086. }
  1087. return ms
  1088. }
  1089. return mi.MessageOf(x)
  1090. }
  1091. // Deprecated: Use VolumeDeleteRequest.ProtoReflect.Descriptor instead.
  1092. func (*VolumeDeleteRequest) Descriptor() ([]byte, []int) {
  1093. return file_volume_server_proto_rawDescGZIP(), []int{24}
  1094. }
  1095. func (x *VolumeDeleteRequest) GetVolumeId() uint32 {
  1096. if x != nil {
  1097. return x.VolumeId
  1098. }
  1099. return 0
  1100. }
  1101. func (x *VolumeDeleteRequest) GetOnlyEmpty() bool {
  1102. if x != nil {
  1103. return x.OnlyEmpty
  1104. }
  1105. return false
  1106. }
  1107. type VolumeDeleteResponse struct {
  1108. state protoimpl.MessageState
  1109. sizeCache protoimpl.SizeCache
  1110. unknownFields protoimpl.UnknownFields
  1111. }
  1112. func (x *VolumeDeleteResponse) Reset() {
  1113. *x = VolumeDeleteResponse{}
  1114. if protoimpl.UnsafeEnabled {
  1115. mi := &file_volume_server_proto_msgTypes[25]
  1116. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1117. ms.StoreMessageInfo(mi)
  1118. }
  1119. }
  1120. func (x *VolumeDeleteResponse) String() string {
  1121. return protoimpl.X.MessageStringOf(x)
  1122. }
  1123. func (*VolumeDeleteResponse) ProtoMessage() {}
  1124. func (x *VolumeDeleteResponse) ProtoReflect() protoreflect.Message {
  1125. mi := &file_volume_server_proto_msgTypes[25]
  1126. if protoimpl.UnsafeEnabled && x != nil {
  1127. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1128. if ms.LoadMessageInfo() == nil {
  1129. ms.StoreMessageInfo(mi)
  1130. }
  1131. return ms
  1132. }
  1133. return mi.MessageOf(x)
  1134. }
  1135. // Deprecated: Use VolumeDeleteResponse.ProtoReflect.Descriptor instead.
  1136. func (*VolumeDeleteResponse) Descriptor() ([]byte, []int) {
  1137. return file_volume_server_proto_rawDescGZIP(), []int{25}
  1138. }
  1139. type VolumeMarkReadonlyRequest struct {
  1140. state protoimpl.MessageState
  1141. sizeCache protoimpl.SizeCache
  1142. unknownFields protoimpl.UnknownFields
  1143. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1144. }
  1145. func (x *VolumeMarkReadonlyRequest) Reset() {
  1146. *x = VolumeMarkReadonlyRequest{}
  1147. if protoimpl.UnsafeEnabled {
  1148. mi := &file_volume_server_proto_msgTypes[26]
  1149. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1150. ms.StoreMessageInfo(mi)
  1151. }
  1152. }
  1153. func (x *VolumeMarkReadonlyRequest) String() string {
  1154. return protoimpl.X.MessageStringOf(x)
  1155. }
  1156. func (*VolumeMarkReadonlyRequest) ProtoMessage() {}
  1157. func (x *VolumeMarkReadonlyRequest) ProtoReflect() protoreflect.Message {
  1158. mi := &file_volume_server_proto_msgTypes[26]
  1159. if protoimpl.UnsafeEnabled && x != nil {
  1160. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1161. if ms.LoadMessageInfo() == nil {
  1162. ms.StoreMessageInfo(mi)
  1163. }
  1164. return ms
  1165. }
  1166. return mi.MessageOf(x)
  1167. }
  1168. // Deprecated: Use VolumeMarkReadonlyRequest.ProtoReflect.Descriptor instead.
  1169. func (*VolumeMarkReadonlyRequest) Descriptor() ([]byte, []int) {
  1170. return file_volume_server_proto_rawDescGZIP(), []int{26}
  1171. }
  1172. func (x *VolumeMarkReadonlyRequest) GetVolumeId() uint32 {
  1173. if x != nil {
  1174. return x.VolumeId
  1175. }
  1176. return 0
  1177. }
  1178. type VolumeMarkReadonlyResponse struct {
  1179. state protoimpl.MessageState
  1180. sizeCache protoimpl.SizeCache
  1181. unknownFields protoimpl.UnknownFields
  1182. }
  1183. func (x *VolumeMarkReadonlyResponse) Reset() {
  1184. *x = VolumeMarkReadonlyResponse{}
  1185. if protoimpl.UnsafeEnabled {
  1186. mi := &file_volume_server_proto_msgTypes[27]
  1187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1188. ms.StoreMessageInfo(mi)
  1189. }
  1190. }
  1191. func (x *VolumeMarkReadonlyResponse) String() string {
  1192. return protoimpl.X.MessageStringOf(x)
  1193. }
  1194. func (*VolumeMarkReadonlyResponse) ProtoMessage() {}
  1195. func (x *VolumeMarkReadonlyResponse) ProtoReflect() protoreflect.Message {
  1196. mi := &file_volume_server_proto_msgTypes[27]
  1197. if protoimpl.UnsafeEnabled && x != nil {
  1198. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1199. if ms.LoadMessageInfo() == nil {
  1200. ms.StoreMessageInfo(mi)
  1201. }
  1202. return ms
  1203. }
  1204. return mi.MessageOf(x)
  1205. }
  1206. // Deprecated: Use VolumeMarkReadonlyResponse.ProtoReflect.Descriptor instead.
  1207. func (*VolumeMarkReadonlyResponse) Descriptor() ([]byte, []int) {
  1208. return file_volume_server_proto_rawDescGZIP(), []int{27}
  1209. }
  1210. type VolumeMarkWritableRequest struct {
  1211. state protoimpl.MessageState
  1212. sizeCache protoimpl.SizeCache
  1213. unknownFields protoimpl.UnknownFields
  1214. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1215. }
  1216. func (x *VolumeMarkWritableRequest) Reset() {
  1217. *x = VolumeMarkWritableRequest{}
  1218. if protoimpl.UnsafeEnabled {
  1219. mi := &file_volume_server_proto_msgTypes[28]
  1220. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1221. ms.StoreMessageInfo(mi)
  1222. }
  1223. }
  1224. func (x *VolumeMarkWritableRequest) String() string {
  1225. return protoimpl.X.MessageStringOf(x)
  1226. }
  1227. func (*VolumeMarkWritableRequest) ProtoMessage() {}
  1228. func (x *VolumeMarkWritableRequest) ProtoReflect() protoreflect.Message {
  1229. mi := &file_volume_server_proto_msgTypes[28]
  1230. if protoimpl.UnsafeEnabled && x != nil {
  1231. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1232. if ms.LoadMessageInfo() == nil {
  1233. ms.StoreMessageInfo(mi)
  1234. }
  1235. return ms
  1236. }
  1237. return mi.MessageOf(x)
  1238. }
  1239. // Deprecated: Use VolumeMarkWritableRequest.ProtoReflect.Descriptor instead.
  1240. func (*VolumeMarkWritableRequest) Descriptor() ([]byte, []int) {
  1241. return file_volume_server_proto_rawDescGZIP(), []int{28}
  1242. }
  1243. func (x *VolumeMarkWritableRequest) GetVolumeId() uint32 {
  1244. if x != nil {
  1245. return x.VolumeId
  1246. }
  1247. return 0
  1248. }
  1249. type VolumeMarkWritableResponse struct {
  1250. state protoimpl.MessageState
  1251. sizeCache protoimpl.SizeCache
  1252. unknownFields protoimpl.UnknownFields
  1253. }
  1254. func (x *VolumeMarkWritableResponse) Reset() {
  1255. *x = VolumeMarkWritableResponse{}
  1256. if protoimpl.UnsafeEnabled {
  1257. mi := &file_volume_server_proto_msgTypes[29]
  1258. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1259. ms.StoreMessageInfo(mi)
  1260. }
  1261. }
  1262. func (x *VolumeMarkWritableResponse) String() string {
  1263. return protoimpl.X.MessageStringOf(x)
  1264. }
  1265. func (*VolumeMarkWritableResponse) ProtoMessage() {}
  1266. func (x *VolumeMarkWritableResponse) ProtoReflect() protoreflect.Message {
  1267. mi := &file_volume_server_proto_msgTypes[29]
  1268. if protoimpl.UnsafeEnabled && x != nil {
  1269. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1270. if ms.LoadMessageInfo() == nil {
  1271. ms.StoreMessageInfo(mi)
  1272. }
  1273. return ms
  1274. }
  1275. return mi.MessageOf(x)
  1276. }
  1277. // Deprecated: Use VolumeMarkWritableResponse.ProtoReflect.Descriptor instead.
  1278. func (*VolumeMarkWritableResponse) Descriptor() ([]byte, []int) {
  1279. return file_volume_server_proto_rawDescGZIP(), []int{29}
  1280. }
  1281. type VolumeConfigureRequest struct {
  1282. state protoimpl.MessageState
  1283. sizeCache protoimpl.SizeCache
  1284. unknownFields protoimpl.UnknownFields
  1285. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1286. Replication string `protobuf:"bytes,2,opt,name=replication,proto3" json:"replication,omitempty"`
  1287. }
  1288. func (x *VolumeConfigureRequest) Reset() {
  1289. *x = VolumeConfigureRequest{}
  1290. if protoimpl.UnsafeEnabled {
  1291. mi := &file_volume_server_proto_msgTypes[30]
  1292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1293. ms.StoreMessageInfo(mi)
  1294. }
  1295. }
  1296. func (x *VolumeConfigureRequest) String() string {
  1297. return protoimpl.X.MessageStringOf(x)
  1298. }
  1299. func (*VolumeConfigureRequest) ProtoMessage() {}
  1300. func (x *VolumeConfigureRequest) ProtoReflect() protoreflect.Message {
  1301. mi := &file_volume_server_proto_msgTypes[30]
  1302. if protoimpl.UnsafeEnabled && x != nil {
  1303. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1304. if ms.LoadMessageInfo() == nil {
  1305. ms.StoreMessageInfo(mi)
  1306. }
  1307. return ms
  1308. }
  1309. return mi.MessageOf(x)
  1310. }
  1311. // Deprecated: Use VolumeConfigureRequest.ProtoReflect.Descriptor instead.
  1312. func (*VolumeConfigureRequest) Descriptor() ([]byte, []int) {
  1313. return file_volume_server_proto_rawDescGZIP(), []int{30}
  1314. }
  1315. func (x *VolumeConfigureRequest) GetVolumeId() uint32 {
  1316. if x != nil {
  1317. return x.VolumeId
  1318. }
  1319. return 0
  1320. }
  1321. func (x *VolumeConfigureRequest) GetReplication() string {
  1322. if x != nil {
  1323. return x.Replication
  1324. }
  1325. return ""
  1326. }
  1327. type VolumeConfigureResponse struct {
  1328. state protoimpl.MessageState
  1329. sizeCache protoimpl.SizeCache
  1330. unknownFields protoimpl.UnknownFields
  1331. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  1332. }
  1333. func (x *VolumeConfigureResponse) Reset() {
  1334. *x = VolumeConfigureResponse{}
  1335. if protoimpl.UnsafeEnabled {
  1336. mi := &file_volume_server_proto_msgTypes[31]
  1337. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1338. ms.StoreMessageInfo(mi)
  1339. }
  1340. }
  1341. func (x *VolumeConfigureResponse) String() string {
  1342. return protoimpl.X.MessageStringOf(x)
  1343. }
  1344. func (*VolumeConfigureResponse) ProtoMessage() {}
  1345. func (x *VolumeConfigureResponse) ProtoReflect() protoreflect.Message {
  1346. mi := &file_volume_server_proto_msgTypes[31]
  1347. if protoimpl.UnsafeEnabled && x != nil {
  1348. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1349. if ms.LoadMessageInfo() == nil {
  1350. ms.StoreMessageInfo(mi)
  1351. }
  1352. return ms
  1353. }
  1354. return mi.MessageOf(x)
  1355. }
  1356. // Deprecated: Use VolumeConfigureResponse.ProtoReflect.Descriptor instead.
  1357. func (*VolumeConfigureResponse) Descriptor() ([]byte, []int) {
  1358. return file_volume_server_proto_rawDescGZIP(), []int{31}
  1359. }
  1360. func (x *VolumeConfigureResponse) GetError() string {
  1361. if x != nil {
  1362. return x.Error
  1363. }
  1364. return ""
  1365. }
  1366. type VolumeStatusRequest struct {
  1367. state protoimpl.MessageState
  1368. sizeCache protoimpl.SizeCache
  1369. unknownFields protoimpl.UnknownFields
  1370. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1371. }
  1372. func (x *VolumeStatusRequest) Reset() {
  1373. *x = VolumeStatusRequest{}
  1374. if protoimpl.UnsafeEnabled {
  1375. mi := &file_volume_server_proto_msgTypes[32]
  1376. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1377. ms.StoreMessageInfo(mi)
  1378. }
  1379. }
  1380. func (x *VolumeStatusRequest) String() string {
  1381. return protoimpl.X.MessageStringOf(x)
  1382. }
  1383. func (*VolumeStatusRequest) ProtoMessage() {}
  1384. func (x *VolumeStatusRequest) ProtoReflect() protoreflect.Message {
  1385. mi := &file_volume_server_proto_msgTypes[32]
  1386. if protoimpl.UnsafeEnabled && x != nil {
  1387. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1388. if ms.LoadMessageInfo() == nil {
  1389. ms.StoreMessageInfo(mi)
  1390. }
  1391. return ms
  1392. }
  1393. return mi.MessageOf(x)
  1394. }
  1395. // Deprecated: Use VolumeStatusRequest.ProtoReflect.Descriptor instead.
  1396. func (*VolumeStatusRequest) Descriptor() ([]byte, []int) {
  1397. return file_volume_server_proto_rawDescGZIP(), []int{32}
  1398. }
  1399. func (x *VolumeStatusRequest) GetVolumeId() uint32 {
  1400. if x != nil {
  1401. return x.VolumeId
  1402. }
  1403. return 0
  1404. }
  1405. type VolumeStatusResponse struct {
  1406. state protoimpl.MessageState
  1407. sizeCache protoimpl.SizeCache
  1408. unknownFields protoimpl.UnknownFields
  1409. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  1410. VolumeSize uint64 `protobuf:"varint,2,opt,name=volume_size,json=volumeSize,proto3" json:"volume_size,omitempty"`
  1411. }
  1412. func (x *VolumeStatusResponse) Reset() {
  1413. *x = VolumeStatusResponse{}
  1414. if protoimpl.UnsafeEnabled {
  1415. mi := &file_volume_server_proto_msgTypes[33]
  1416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1417. ms.StoreMessageInfo(mi)
  1418. }
  1419. }
  1420. func (x *VolumeStatusResponse) String() string {
  1421. return protoimpl.X.MessageStringOf(x)
  1422. }
  1423. func (*VolumeStatusResponse) ProtoMessage() {}
  1424. func (x *VolumeStatusResponse) ProtoReflect() protoreflect.Message {
  1425. mi := &file_volume_server_proto_msgTypes[33]
  1426. if protoimpl.UnsafeEnabled && x != nil {
  1427. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1428. if ms.LoadMessageInfo() == nil {
  1429. ms.StoreMessageInfo(mi)
  1430. }
  1431. return ms
  1432. }
  1433. return mi.MessageOf(x)
  1434. }
  1435. // Deprecated: Use VolumeStatusResponse.ProtoReflect.Descriptor instead.
  1436. func (*VolumeStatusResponse) Descriptor() ([]byte, []int) {
  1437. return file_volume_server_proto_rawDescGZIP(), []int{33}
  1438. }
  1439. func (x *VolumeStatusResponse) GetIsReadOnly() bool {
  1440. if x != nil {
  1441. return x.IsReadOnly
  1442. }
  1443. return false
  1444. }
  1445. func (x *VolumeStatusResponse) GetVolumeSize() uint64 {
  1446. if x != nil {
  1447. return x.VolumeSize
  1448. }
  1449. return 0
  1450. }
  1451. type VolumeCopyRequest struct {
  1452. state protoimpl.MessageState
  1453. sizeCache protoimpl.SizeCache
  1454. unknownFields protoimpl.UnknownFields
  1455. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1456. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1457. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  1458. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1459. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  1460. DiskType string `protobuf:"bytes,6,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  1461. IoBytePerSecond int64 `protobuf:"varint,7,opt,name=io_byte_per_second,json=ioBytePerSecond,proto3" json:"io_byte_per_second,omitempty"`
  1462. }
  1463. func (x *VolumeCopyRequest) Reset() {
  1464. *x = VolumeCopyRequest{}
  1465. if protoimpl.UnsafeEnabled {
  1466. mi := &file_volume_server_proto_msgTypes[34]
  1467. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1468. ms.StoreMessageInfo(mi)
  1469. }
  1470. }
  1471. func (x *VolumeCopyRequest) String() string {
  1472. return protoimpl.X.MessageStringOf(x)
  1473. }
  1474. func (*VolumeCopyRequest) ProtoMessage() {}
  1475. func (x *VolumeCopyRequest) ProtoReflect() protoreflect.Message {
  1476. mi := &file_volume_server_proto_msgTypes[34]
  1477. if protoimpl.UnsafeEnabled && x != nil {
  1478. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1479. if ms.LoadMessageInfo() == nil {
  1480. ms.StoreMessageInfo(mi)
  1481. }
  1482. return ms
  1483. }
  1484. return mi.MessageOf(x)
  1485. }
  1486. // Deprecated: Use VolumeCopyRequest.ProtoReflect.Descriptor instead.
  1487. func (*VolumeCopyRequest) Descriptor() ([]byte, []int) {
  1488. return file_volume_server_proto_rawDescGZIP(), []int{34}
  1489. }
  1490. func (x *VolumeCopyRequest) GetVolumeId() uint32 {
  1491. if x != nil {
  1492. return x.VolumeId
  1493. }
  1494. return 0
  1495. }
  1496. func (x *VolumeCopyRequest) GetCollection() string {
  1497. if x != nil {
  1498. return x.Collection
  1499. }
  1500. return ""
  1501. }
  1502. func (x *VolumeCopyRequest) GetReplication() string {
  1503. if x != nil {
  1504. return x.Replication
  1505. }
  1506. return ""
  1507. }
  1508. func (x *VolumeCopyRequest) GetTtl() string {
  1509. if x != nil {
  1510. return x.Ttl
  1511. }
  1512. return ""
  1513. }
  1514. func (x *VolumeCopyRequest) GetSourceDataNode() string {
  1515. if x != nil {
  1516. return x.SourceDataNode
  1517. }
  1518. return ""
  1519. }
  1520. func (x *VolumeCopyRequest) GetDiskType() string {
  1521. if x != nil {
  1522. return x.DiskType
  1523. }
  1524. return ""
  1525. }
  1526. func (x *VolumeCopyRequest) GetIoBytePerSecond() int64 {
  1527. if x != nil {
  1528. return x.IoBytePerSecond
  1529. }
  1530. return 0
  1531. }
  1532. type VolumeCopyResponse struct {
  1533. state protoimpl.MessageState
  1534. sizeCache protoimpl.SizeCache
  1535. unknownFields protoimpl.UnknownFields
  1536. LastAppendAtNs uint64 `protobuf:"varint,1,opt,name=last_append_at_ns,json=lastAppendAtNs,proto3" json:"last_append_at_ns,omitempty"`
  1537. ProcessedBytes int64 `protobuf:"varint,2,opt,name=processed_bytes,json=processedBytes,proto3" json:"processed_bytes,omitempty"`
  1538. }
  1539. func (x *VolumeCopyResponse) Reset() {
  1540. *x = VolumeCopyResponse{}
  1541. if protoimpl.UnsafeEnabled {
  1542. mi := &file_volume_server_proto_msgTypes[35]
  1543. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1544. ms.StoreMessageInfo(mi)
  1545. }
  1546. }
  1547. func (x *VolumeCopyResponse) String() string {
  1548. return protoimpl.X.MessageStringOf(x)
  1549. }
  1550. func (*VolumeCopyResponse) ProtoMessage() {}
  1551. func (x *VolumeCopyResponse) ProtoReflect() protoreflect.Message {
  1552. mi := &file_volume_server_proto_msgTypes[35]
  1553. if protoimpl.UnsafeEnabled && x != nil {
  1554. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1555. if ms.LoadMessageInfo() == nil {
  1556. ms.StoreMessageInfo(mi)
  1557. }
  1558. return ms
  1559. }
  1560. return mi.MessageOf(x)
  1561. }
  1562. // Deprecated: Use VolumeCopyResponse.ProtoReflect.Descriptor instead.
  1563. func (*VolumeCopyResponse) Descriptor() ([]byte, []int) {
  1564. return file_volume_server_proto_rawDescGZIP(), []int{35}
  1565. }
  1566. func (x *VolumeCopyResponse) GetLastAppendAtNs() uint64 {
  1567. if x != nil {
  1568. return x.LastAppendAtNs
  1569. }
  1570. return 0
  1571. }
  1572. func (x *VolumeCopyResponse) GetProcessedBytes() int64 {
  1573. if x != nil {
  1574. return x.ProcessedBytes
  1575. }
  1576. return 0
  1577. }
  1578. type CopyFileRequest struct {
  1579. state protoimpl.MessageState
  1580. sizeCache protoimpl.SizeCache
  1581. unknownFields protoimpl.UnknownFields
  1582. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1583. Ext string `protobuf:"bytes,2,opt,name=ext,proto3" json:"ext,omitempty"`
  1584. CompactionRevision uint32 `protobuf:"varint,3,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  1585. StopOffset uint64 `protobuf:"varint,4,opt,name=stop_offset,json=stopOffset,proto3" json:"stop_offset,omitempty"`
  1586. Collection string `protobuf:"bytes,5,opt,name=collection,proto3" json:"collection,omitempty"`
  1587. IsEcVolume bool `protobuf:"varint,6,opt,name=is_ec_volume,json=isEcVolume,proto3" json:"is_ec_volume,omitempty"`
  1588. IgnoreSourceFileNotFound bool `protobuf:"varint,7,opt,name=ignore_source_file_not_found,json=ignoreSourceFileNotFound,proto3" json:"ignore_source_file_not_found,omitempty"`
  1589. }
  1590. func (x *CopyFileRequest) Reset() {
  1591. *x = CopyFileRequest{}
  1592. if protoimpl.UnsafeEnabled {
  1593. mi := &file_volume_server_proto_msgTypes[36]
  1594. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1595. ms.StoreMessageInfo(mi)
  1596. }
  1597. }
  1598. func (x *CopyFileRequest) String() string {
  1599. return protoimpl.X.MessageStringOf(x)
  1600. }
  1601. func (*CopyFileRequest) ProtoMessage() {}
  1602. func (x *CopyFileRequest) ProtoReflect() protoreflect.Message {
  1603. mi := &file_volume_server_proto_msgTypes[36]
  1604. if protoimpl.UnsafeEnabled && x != nil {
  1605. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1606. if ms.LoadMessageInfo() == nil {
  1607. ms.StoreMessageInfo(mi)
  1608. }
  1609. return ms
  1610. }
  1611. return mi.MessageOf(x)
  1612. }
  1613. // Deprecated: Use CopyFileRequest.ProtoReflect.Descriptor instead.
  1614. func (*CopyFileRequest) Descriptor() ([]byte, []int) {
  1615. return file_volume_server_proto_rawDescGZIP(), []int{36}
  1616. }
  1617. func (x *CopyFileRequest) GetVolumeId() uint32 {
  1618. if x != nil {
  1619. return x.VolumeId
  1620. }
  1621. return 0
  1622. }
  1623. func (x *CopyFileRequest) GetExt() string {
  1624. if x != nil {
  1625. return x.Ext
  1626. }
  1627. return ""
  1628. }
  1629. func (x *CopyFileRequest) GetCompactionRevision() uint32 {
  1630. if x != nil {
  1631. return x.CompactionRevision
  1632. }
  1633. return 0
  1634. }
  1635. func (x *CopyFileRequest) GetStopOffset() uint64 {
  1636. if x != nil {
  1637. return x.StopOffset
  1638. }
  1639. return 0
  1640. }
  1641. func (x *CopyFileRequest) GetCollection() string {
  1642. if x != nil {
  1643. return x.Collection
  1644. }
  1645. return ""
  1646. }
  1647. func (x *CopyFileRequest) GetIsEcVolume() bool {
  1648. if x != nil {
  1649. return x.IsEcVolume
  1650. }
  1651. return false
  1652. }
  1653. func (x *CopyFileRequest) GetIgnoreSourceFileNotFound() bool {
  1654. if x != nil {
  1655. return x.IgnoreSourceFileNotFound
  1656. }
  1657. return false
  1658. }
  1659. type CopyFileResponse struct {
  1660. state protoimpl.MessageState
  1661. sizeCache protoimpl.SizeCache
  1662. unknownFields protoimpl.UnknownFields
  1663. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  1664. ModifiedTsNs int64 `protobuf:"varint,2,opt,name=modified_ts_ns,json=modifiedTsNs,proto3" json:"modified_ts_ns,omitempty"`
  1665. }
  1666. func (x *CopyFileResponse) Reset() {
  1667. *x = CopyFileResponse{}
  1668. if protoimpl.UnsafeEnabled {
  1669. mi := &file_volume_server_proto_msgTypes[37]
  1670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1671. ms.StoreMessageInfo(mi)
  1672. }
  1673. }
  1674. func (x *CopyFileResponse) String() string {
  1675. return protoimpl.X.MessageStringOf(x)
  1676. }
  1677. func (*CopyFileResponse) ProtoMessage() {}
  1678. func (x *CopyFileResponse) ProtoReflect() protoreflect.Message {
  1679. mi := &file_volume_server_proto_msgTypes[37]
  1680. if protoimpl.UnsafeEnabled && x != nil {
  1681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1682. if ms.LoadMessageInfo() == nil {
  1683. ms.StoreMessageInfo(mi)
  1684. }
  1685. return ms
  1686. }
  1687. return mi.MessageOf(x)
  1688. }
  1689. // Deprecated: Use CopyFileResponse.ProtoReflect.Descriptor instead.
  1690. func (*CopyFileResponse) Descriptor() ([]byte, []int) {
  1691. return file_volume_server_proto_rawDescGZIP(), []int{37}
  1692. }
  1693. func (x *CopyFileResponse) GetFileContent() []byte {
  1694. if x != nil {
  1695. return x.FileContent
  1696. }
  1697. return nil
  1698. }
  1699. func (x *CopyFileResponse) GetModifiedTsNs() int64 {
  1700. if x != nil {
  1701. return x.ModifiedTsNs
  1702. }
  1703. return 0
  1704. }
  1705. type ReadNeedleBlobRequest struct {
  1706. state protoimpl.MessageState
  1707. sizeCache protoimpl.SizeCache
  1708. unknownFields protoimpl.UnknownFields
  1709. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1710. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"` // actual offset
  1711. Size int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  1712. }
  1713. func (x *ReadNeedleBlobRequest) Reset() {
  1714. *x = ReadNeedleBlobRequest{}
  1715. if protoimpl.UnsafeEnabled {
  1716. mi := &file_volume_server_proto_msgTypes[38]
  1717. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1718. ms.StoreMessageInfo(mi)
  1719. }
  1720. }
  1721. func (x *ReadNeedleBlobRequest) String() string {
  1722. return protoimpl.X.MessageStringOf(x)
  1723. }
  1724. func (*ReadNeedleBlobRequest) ProtoMessage() {}
  1725. func (x *ReadNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1726. mi := &file_volume_server_proto_msgTypes[38]
  1727. if protoimpl.UnsafeEnabled && x != nil {
  1728. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1729. if ms.LoadMessageInfo() == nil {
  1730. ms.StoreMessageInfo(mi)
  1731. }
  1732. return ms
  1733. }
  1734. return mi.MessageOf(x)
  1735. }
  1736. // Deprecated: Use ReadNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1737. func (*ReadNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1738. return file_volume_server_proto_rawDescGZIP(), []int{38}
  1739. }
  1740. func (x *ReadNeedleBlobRequest) GetVolumeId() uint32 {
  1741. if x != nil {
  1742. return x.VolumeId
  1743. }
  1744. return 0
  1745. }
  1746. func (x *ReadNeedleBlobRequest) GetOffset() int64 {
  1747. if x != nil {
  1748. return x.Offset
  1749. }
  1750. return 0
  1751. }
  1752. func (x *ReadNeedleBlobRequest) GetSize() int32 {
  1753. if x != nil {
  1754. return x.Size
  1755. }
  1756. return 0
  1757. }
  1758. type ReadNeedleBlobResponse struct {
  1759. state protoimpl.MessageState
  1760. sizeCache protoimpl.SizeCache
  1761. unknownFields protoimpl.UnknownFields
  1762. NeedleBlob []byte `protobuf:"bytes,1,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1763. }
  1764. func (x *ReadNeedleBlobResponse) Reset() {
  1765. *x = ReadNeedleBlobResponse{}
  1766. if protoimpl.UnsafeEnabled {
  1767. mi := &file_volume_server_proto_msgTypes[39]
  1768. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1769. ms.StoreMessageInfo(mi)
  1770. }
  1771. }
  1772. func (x *ReadNeedleBlobResponse) String() string {
  1773. return protoimpl.X.MessageStringOf(x)
  1774. }
  1775. func (*ReadNeedleBlobResponse) ProtoMessage() {}
  1776. func (x *ReadNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  1777. mi := &file_volume_server_proto_msgTypes[39]
  1778. if protoimpl.UnsafeEnabled && x != nil {
  1779. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1780. if ms.LoadMessageInfo() == nil {
  1781. ms.StoreMessageInfo(mi)
  1782. }
  1783. return ms
  1784. }
  1785. return mi.MessageOf(x)
  1786. }
  1787. // Deprecated: Use ReadNeedleBlobResponse.ProtoReflect.Descriptor instead.
  1788. func (*ReadNeedleBlobResponse) Descriptor() ([]byte, []int) {
  1789. return file_volume_server_proto_rawDescGZIP(), []int{39}
  1790. }
  1791. func (x *ReadNeedleBlobResponse) GetNeedleBlob() []byte {
  1792. if x != nil {
  1793. return x.NeedleBlob
  1794. }
  1795. return nil
  1796. }
  1797. type ReadNeedleMetaRequest struct {
  1798. state protoimpl.MessageState
  1799. sizeCache protoimpl.SizeCache
  1800. unknownFields protoimpl.UnknownFields
  1801. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1802. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1803. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"` // actual offset
  1804. Size int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  1805. }
  1806. func (x *ReadNeedleMetaRequest) Reset() {
  1807. *x = ReadNeedleMetaRequest{}
  1808. if protoimpl.UnsafeEnabled {
  1809. mi := &file_volume_server_proto_msgTypes[40]
  1810. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1811. ms.StoreMessageInfo(mi)
  1812. }
  1813. }
  1814. func (x *ReadNeedleMetaRequest) String() string {
  1815. return protoimpl.X.MessageStringOf(x)
  1816. }
  1817. func (*ReadNeedleMetaRequest) ProtoMessage() {}
  1818. func (x *ReadNeedleMetaRequest) ProtoReflect() protoreflect.Message {
  1819. mi := &file_volume_server_proto_msgTypes[40]
  1820. if protoimpl.UnsafeEnabled && x != nil {
  1821. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1822. if ms.LoadMessageInfo() == nil {
  1823. ms.StoreMessageInfo(mi)
  1824. }
  1825. return ms
  1826. }
  1827. return mi.MessageOf(x)
  1828. }
  1829. // Deprecated: Use ReadNeedleMetaRequest.ProtoReflect.Descriptor instead.
  1830. func (*ReadNeedleMetaRequest) Descriptor() ([]byte, []int) {
  1831. return file_volume_server_proto_rawDescGZIP(), []int{40}
  1832. }
  1833. func (x *ReadNeedleMetaRequest) GetVolumeId() uint32 {
  1834. if x != nil {
  1835. return x.VolumeId
  1836. }
  1837. return 0
  1838. }
  1839. func (x *ReadNeedleMetaRequest) GetNeedleId() uint64 {
  1840. if x != nil {
  1841. return x.NeedleId
  1842. }
  1843. return 0
  1844. }
  1845. func (x *ReadNeedleMetaRequest) GetOffset() int64 {
  1846. if x != nil {
  1847. return x.Offset
  1848. }
  1849. return 0
  1850. }
  1851. func (x *ReadNeedleMetaRequest) GetSize() int32 {
  1852. if x != nil {
  1853. return x.Size
  1854. }
  1855. return 0
  1856. }
  1857. type ReadNeedleMetaResponse struct {
  1858. state protoimpl.MessageState
  1859. sizeCache protoimpl.SizeCache
  1860. unknownFields protoimpl.UnknownFields
  1861. Cookie uint32 `protobuf:"varint,1,opt,name=cookie,proto3" json:"cookie,omitempty"`
  1862. LastModified uint64 `protobuf:"varint,2,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  1863. Crc uint32 `protobuf:"varint,3,opt,name=crc,proto3" json:"crc,omitempty"`
  1864. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1865. AppendAtNs uint64 `protobuf:"varint,5,opt,name=append_at_ns,json=appendAtNs,proto3" json:"append_at_ns,omitempty"`
  1866. }
  1867. func (x *ReadNeedleMetaResponse) Reset() {
  1868. *x = ReadNeedleMetaResponse{}
  1869. if protoimpl.UnsafeEnabled {
  1870. mi := &file_volume_server_proto_msgTypes[41]
  1871. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1872. ms.StoreMessageInfo(mi)
  1873. }
  1874. }
  1875. func (x *ReadNeedleMetaResponse) String() string {
  1876. return protoimpl.X.MessageStringOf(x)
  1877. }
  1878. func (*ReadNeedleMetaResponse) ProtoMessage() {}
  1879. func (x *ReadNeedleMetaResponse) ProtoReflect() protoreflect.Message {
  1880. mi := &file_volume_server_proto_msgTypes[41]
  1881. if protoimpl.UnsafeEnabled && x != nil {
  1882. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1883. if ms.LoadMessageInfo() == nil {
  1884. ms.StoreMessageInfo(mi)
  1885. }
  1886. return ms
  1887. }
  1888. return mi.MessageOf(x)
  1889. }
  1890. // Deprecated: Use ReadNeedleMetaResponse.ProtoReflect.Descriptor instead.
  1891. func (*ReadNeedleMetaResponse) Descriptor() ([]byte, []int) {
  1892. return file_volume_server_proto_rawDescGZIP(), []int{41}
  1893. }
  1894. func (x *ReadNeedleMetaResponse) GetCookie() uint32 {
  1895. if x != nil {
  1896. return x.Cookie
  1897. }
  1898. return 0
  1899. }
  1900. func (x *ReadNeedleMetaResponse) GetLastModified() uint64 {
  1901. if x != nil {
  1902. return x.LastModified
  1903. }
  1904. return 0
  1905. }
  1906. func (x *ReadNeedleMetaResponse) GetCrc() uint32 {
  1907. if x != nil {
  1908. return x.Crc
  1909. }
  1910. return 0
  1911. }
  1912. func (x *ReadNeedleMetaResponse) GetTtl() string {
  1913. if x != nil {
  1914. return x.Ttl
  1915. }
  1916. return ""
  1917. }
  1918. func (x *ReadNeedleMetaResponse) GetAppendAtNs() uint64 {
  1919. if x != nil {
  1920. return x.AppendAtNs
  1921. }
  1922. return 0
  1923. }
  1924. type WriteNeedleBlobRequest struct {
  1925. state protoimpl.MessageState
  1926. sizeCache protoimpl.SizeCache
  1927. unknownFields protoimpl.UnknownFields
  1928. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1929. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1930. Size int32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  1931. NeedleBlob []byte `protobuf:"bytes,4,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1932. }
  1933. func (x *WriteNeedleBlobRequest) Reset() {
  1934. *x = WriteNeedleBlobRequest{}
  1935. if protoimpl.UnsafeEnabled {
  1936. mi := &file_volume_server_proto_msgTypes[42]
  1937. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1938. ms.StoreMessageInfo(mi)
  1939. }
  1940. }
  1941. func (x *WriteNeedleBlobRequest) String() string {
  1942. return protoimpl.X.MessageStringOf(x)
  1943. }
  1944. func (*WriteNeedleBlobRequest) ProtoMessage() {}
  1945. func (x *WriteNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1946. mi := &file_volume_server_proto_msgTypes[42]
  1947. if protoimpl.UnsafeEnabled && x != nil {
  1948. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1949. if ms.LoadMessageInfo() == nil {
  1950. ms.StoreMessageInfo(mi)
  1951. }
  1952. return ms
  1953. }
  1954. return mi.MessageOf(x)
  1955. }
  1956. // Deprecated: Use WriteNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1957. func (*WriteNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1958. return file_volume_server_proto_rawDescGZIP(), []int{42}
  1959. }
  1960. func (x *WriteNeedleBlobRequest) GetVolumeId() uint32 {
  1961. if x != nil {
  1962. return x.VolumeId
  1963. }
  1964. return 0
  1965. }
  1966. func (x *WriteNeedleBlobRequest) GetNeedleId() uint64 {
  1967. if x != nil {
  1968. return x.NeedleId
  1969. }
  1970. return 0
  1971. }
  1972. func (x *WriteNeedleBlobRequest) GetSize() int32 {
  1973. if x != nil {
  1974. return x.Size
  1975. }
  1976. return 0
  1977. }
  1978. func (x *WriteNeedleBlobRequest) GetNeedleBlob() []byte {
  1979. if x != nil {
  1980. return x.NeedleBlob
  1981. }
  1982. return nil
  1983. }
  1984. type WriteNeedleBlobResponse struct {
  1985. state protoimpl.MessageState
  1986. sizeCache protoimpl.SizeCache
  1987. unknownFields protoimpl.UnknownFields
  1988. }
  1989. func (x *WriteNeedleBlobResponse) Reset() {
  1990. *x = WriteNeedleBlobResponse{}
  1991. if protoimpl.UnsafeEnabled {
  1992. mi := &file_volume_server_proto_msgTypes[43]
  1993. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1994. ms.StoreMessageInfo(mi)
  1995. }
  1996. }
  1997. func (x *WriteNeedleBlobResponse) String() string {
  1998. return protoimpl.X.MessageStringOf(x)
  1999. }
  2000. func (*WriteNeedleBlobResponse) ProtoMessage() {}
  2001. func (x *WriteNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  2002. mi := &file_volume_server_proto_msgTypes[43]
  2003. if protoimpl.UnsafeEnabled && x != nil {
  2004. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2005. if ms.LoadMessageInfo() == nil {
  2006. ms.StoreMessageInfo(mi)
  2007. }
  2008. return ms
  2009. }
  2010. return mi.MessageOf(x)
  2011. }
  2012. // Deprecated: Use WriteNeedleBlobResponse.ProtoReflect.Descriptor instead.
  2013. func (*WriteNeedleBlobResponse) Descriptor() ([]byte, []int) {
  2014. return file_volume_server_proto_rawDescGZIP(), []int{43}
  2015. }
  2016. type ReadAllNeedlesRequest struct {
  2017. state protoimpl.MessageState
  2018. sizeCache protoimpl.SizeCache
  2019. unknownFields protoimpl.UnknownFields
  2020. VolumeIds []uint32 `protobuf:"varint,1,rep,packed,name=volume_ids,json=volumeIds,proto3" json:"volume_ids,omitempty"`
  2021. }
  2022. func (x *ReadAllNeedlesRequest) Reset() {
  2023. *x = ReadAllNeedlesRequest{}
  2024. if protoimpl.UnsafeEnabled {
  2025. mi := &file_volume_server_proto_msgTypes[44]
  2026. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2027. ms.StoreMessageInfo(mi)
  2028. }
  2029. }
  2030. func (x *ReadAllNeedlesRequest) String() string {
  2031. return protoimpl.X.MessageStringOf(x)
  2032. }
  2033. func (*ReadAllNeedlesRequest) ProtoMessage() {}
  2034. func (x *ReadAllNeedlesRequest) ProtoReflect() protoreflect.Message {
  2035. mi := &file_volume_server_proto_msgTypes[44]
  2036. if protoimpl.UnsafeEnabled && x != nil {
  2037. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2038. if ms.LoadMessageInfo() == nil {
  2039. ms.StoreMessageInfo(mi)
  2040. }
  2041. return ms
  2042. }
  2043. return mi.MessageOf(x)
  2044. }
  2045. // Deprecated: Use ReadAllNeedlesRequest.ProtoReflect.Descriptor instead.
  2046. func (*ReadAllNeedlesRequest) Descriptor() ([]byte, []int) {
  2047. return file_volume_server_proto_rawDescGZIP(), []int{44}
  2048. }
  2049. func (x *ReadAllNeedlesRequest) GetVolumeIds() []uint32 {
  2050. if x != nil {
  2051. return x.VolumeIds
  2052. }
  2053. return nil
  2054. }
  2055. type ReadAllNeedlesResponse struct {
  2056. state protoimpl.MessageState
  2057. sizeCache protoimpl.SizeCache
  2058. unknownFields protoimpl.UnknownFields
  2059. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2060. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  2061. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  2062. NeedleBlob []byte `protobuf:"bytes,5,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  2063. NeedleBlobCompressed bool `protobuf:"varint,6,opt,name=needle_blob_compressed,json=needleBlobCompressed,proto3" json:"needle_blob_compressed,omitempty"`
  2064. LastModified uint64 `protobuf:"varint,7,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  2065. Crc uint32 `protobuf:"varint,8,opt,name=crc,proto3" json:"crc,omitempty"`
  2066. Name []byte `protobuf:"bytes,9,opt,name=name,proto3" json:"name,omitempty"`
  2067. Mime []byte `protobuf:"bytes,10,opt,name=mime,proto3" json:"mime,omitempty"`
  2068. }
  2069. func (x *ReadAllNeedlesResponse) Reset() {
  2070. *x = ReadAllNeedlesResponse{}
  2071. if protoimpl.UnsafeEnabled {
  2072. mi := &file_volume_server_proto_msgTypes[45]
  2073. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2074. ms.StoreMessageInfo(mi)
  2075. }
  2076. }
  2077. func (x *ReadAllNeedlesResponse) String() string {
  2078. return protoimpl.X.MessageStringOf(x)
  2079. }
  2080. func (*ReadAllNeedlesResponse) ProtoMessage() {}
  2081. func (x *ReadAllNeedlesResponse) ProtoReflect() protoreflect.Message {
  2082. mi := &file_volume_server_proto_msgTypes[45]
  2083. if protoimpl.UnsafeEnabled && x != nil {
  2084. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2085. if ms.LoadMessageInfo() == nil {
  2086. ms.StoreMessageInfo(mi)
  2087. }
  2088. return ms
  2089. }
  2090. return mi.MessageOf(x)
  2091. }
  2092. // Deprecated: Use ReadAllNeedlesResponse.ProtoReflect.Descriptor instead.
  2093. func (*ReadAllNeedlesResponse) Descriptor() ([]byte, []int) {
  2094. return file_volume_server_proto_rawDescGZIP(), []int{45}
  2095. }
  2096. func (x *ReadAllNeedlesResponse) GetVolumeId() uint32 {
  2097. if x != nil {
  2098. return x.VolumeId
  2099. }
  2100. return 0
  2101. }
  2102. func (x *ReadAllNeedlesResponse) GetNeedleId() uint64 {
  2103. if x != nil {
  2104. return x.NeedleId
  2105. }
  2106. return 0
  2107. }
  2108. func (x *ReadAllNeedlesResponse) GetCookie() uint32 {
  2109. if x != nil {
  2110. return x.Cookie
  2111. }
  2112. return 0
  2113. }
  2114. func (x *ReadAllNeedlesResponse) GetNeedleBlob() []byte {
  2115. if x != nil {
  2116. return x.NeedleBlob
  2117. }
  2118. return nil
  2119. }
  2120. func (x *ReadAllNeedlesResponse) GetNeedleBlobCompressed() bool {
  2121. if x != nil {
  2122. return x.NeedleBlobCompressed
  2123. }
  2124. return false
  2125. }
  2126. func (x *ReadAllNeedlesResponse) GetLastModified() uint64 {
  2127. if x != nil {
  2128. return x.LastModified
  2129. }
  2130. return 0
  2131. }
  2132. func (x *ReadAllNeedlesResponse) GetCrc() uint32 {
  2133. if x != nil {
  2134. return x.Crc
  2135. }
  2136. return 0
  2137. }
  2138. func (x *ReadAllNeedlesResponse) GetName() []byte {
  2139. if x != nil {
  2140. return x.Name
  2141. }
  2142. return nil
  2143. }
  2144. func (x *ReadAllNeedlesResponse) GetMime() []byte {
  2145. if x != nil {
  2146. return x.Mime
  2147. }
  2148. return nil
  2149. }
  2150. type VolumeTailSenderRequest struct {
  2151. state protoimpl.MessageState
  2152. sizeCache protoimpl.SizeCache
  2153. unknownFields protoimpl.UnknownFields
  2154. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2155. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2156. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  2157. }
  2158. func (x *VolumeTailSenderRequest) Reset() {
  2159. *x = VolumeTailSenderRequest{}
  2160. if protoimpl.UnsafeEnabled {
  2161. mi := &file_volume_server_proto_msgTypes[46]
  2162. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2163. ms.StoreMessageInfo(mi)
  2164. }
  2165. }
  2166. func (x *VolumeTailSenderRequest) String() string {
  2167. return protoimpl.X.MessageStringOf(x)
  2168. }
  2169. func (*VolumeTailSenderRequest) ProtoMessage() {}
  2170. func (x *VolumeTailSenderRequest) ProtoReflect() protoreflect.Message {
  2171. mi := &file_volume_server_proto_msgTypes[46]
  2172. if protoimpl.UnsafeEnabled && x != nil {
  2173. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2174. if ms.LoadMessageInfo() == nil {
  2175. ms.StoreMessageInfo(mi)
  2176. }
  2177. return ms
  2178. }
  2179. return mi.MessageOf(x)
  2180. }
  2181. // Deprecated: Use VolumeTailSenderRequest.ProtoReflect.Descriptor instead.
  2182. func (*VolumeTailSenderRequest) Descriptor() ([]byte, []int) {
  2183. return file_volume_server_proto_rawDescGZIP(), []int{46}
  2184. }
  2185. func (x *VolumeTailSenderRequest) GetVolumeId() uint32 {
  2186. if x != nil {
  2187. return x.VolumeId
  2188. }
  2189. return 0
  2190. }
  2191. func (x *VolumeTailSenderRequest) GetSinceNs() uint64 {
  2192. if x != nil {
  2193. return x.SinceNs
  2194. }
  2195. return 0
  2196. }
  2197. func (x *VolumeTailSenderRequest) GetIdleTimeoutSeconds() uint32 {
  2198. if x != nil {
  2199. return x.IdleTimeoutSeconds
  2200. }
  2201. return 0
  2202. }
  2203. type VolumeTailSenderResponse struct {
  2204. state protoimpl.MessageState
  2205. sizeCache protoimpl.SizeCache
  2206. unknownFields protoimpl.UnknownFields
  2207. NeedleHeader []byte `protobuf:"bytes,1,opt,name=needle_header,json=needleHeader,proto3" json:"needle_header,omitempty"`
  2208. NeedleBody []byte `protobuf:"bytes,2,opt,name=needle_body,json=needleBody,proto3" json:"needle_body,omitempty"`
  2209. IsLastChunk bool `protobuf:"varint,3,opt,name=is_last_chunk,json=isLastChunk,proto3" json:"is_last_chunk,omitempty"`
  2210. }
  2211. func (x *VolumeTailSenderResponse) Reset() {
  2212. *x = VolumeTailSenderResponse{}
  2213. if protoimpl.UnsafeEnabled {
  2214. mi := &file_volume_server_proto_msgTypes[47]
  2215. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2216. ms.StoreMessageInfo(mi)
  2217. }
  2218. }
  2219. func (x *VolumeTailSenderResponse) String() string {
  2220. return protoimpl.X.MessageStringOf(x)
  2221. }
  2222. func (*VolumeTailSenderResponse) ProtoMessage() {}
  2223. func (x *VolumeTailSenderResponse) ProtoReflect() protoreflect.Message {
  2224. mi := &file_volume_server_proto_msgTypes[47]
  2225. if protoimpl.UnsafeEnabled && x != nil {
  2226. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2227. if ms.LoadMessageInfo() == nil {
  2228. ms.StoreMessageInfo(mi)
  2229. }
  2230. return ms
  2231. }
  2232. return mi.MessageOf(x)
  2233. }
  2234. // Deprecated: Use VolumeTailSenderResponse.ProtoReflect.Descriptor instead.
  2235. func (*VolumeTailSenderResponse) Descriptor() ([]byte, []int) {
  2236. return file_volume_server_proto_rawDescGZIP(), []int{47}
  2237. }
  2238. func (x *VolumeTailSenderResponse) GetNeedleHeader() []byte {
  2239. if x != nil {
  2240. return x.NeedleHeader
  2241. }
  2242. return nil
  2243. }
  2244. func (x *VolumeTailSenderResponse) GetNeedleBody() []byte {
  2245. if x != nil {
  2246. return x.NeedleBody
  2247. }
  2248. return nil
  2249. }
  2250. func (x *VolumeTailSenderResponse) GetIsLastChunk() bool {
  2251. if x != nil {
  2252. return x.IsLastChunk
  2253. }
  2254. return false
  2255. }
  2256. type VolumeTailReceiverRequest struct {
  2257. state protoimpl.MessageState
  2258. sizeCache protoimpl.SizeCache
  2259. unknownFields protoimpl.UnknownFields
  2260. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2261. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2262. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  2263. SourceVolumeServer string `protobuf:"bytes,4,opt,name=source_volume_server,json=sourceVolumeServer,proto3" json:"source_volume_server,omitempty"`
  2264. }
  2265. func (x *VolumeTailReceiverRequest) Reset() {
  2266. *x = VolumeTailReceiverRequest{}
  2267. if protoimpl.UnsafeEnabled {
  2268. mi := &file_volume_server_proto_msgTypes[48]
  2269. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2270. ms.StoreMessageInfo(mi)
  2271. }
  2272. }
  2273. func (x *VolumeTailReceiverRequest) String() string {
  2274. return protoimpl.X.MessageStringOf(x)
  2275. }
  2276. func (*VolumeTailReceiverRequest) ProtoMessage() {}
  2277. func (x *VolumeTailReceiverRequest) ProtoReflect() protoreflect.Message {
  2278. mi := &file_volume_server_proto_msgTypes[48]
  2279. if protoimpl.UnsafeEnabled && x != nil {
  2280. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2281. if ms.LoadMessageInfo() == nil {
  2282. ms.StoreMessageInfo(mi)
  2283. }
  2284. return ms
  2285. }
  2286. return mi.MessageOf(x)
  2287. }
  2288. // Deprecated: Use VolumeTailReceiverRequest.ProtoReflect.Descriptor instead.
  2289. func (*VolumeTailReceiverRequest) Descriptor() ([]byte, []int) {
  2290. return file_volume_server_proto_rawDescGZIP(), []int{48}
  2291. }
  2292. func (x *VolumeTailReceiverRequest) GetVolumeId() uint32 {
  2293. if x != nil {
  2294. return x.VolumeId
  2295. }
  2296. return 0
  2297. }
  2298. func (x *VolumeTailReceiverRequest) GetSinceNs() uint64 {
  2299. if x != nil {
  2300. return x.SinceNs
  2301. }
  2302. return 0
  2303. }
  2304. func (x *VolumeTailReceiverRequest) GetIdleTimeoutSeconds() uint32 {
  2305. if x != nil {
  2306. return x.IdleTimeoutSeconds
  2307. }
  2308. return 0
  2309. }
  2310. func (x *VolumeTailReceiverRequest) GetSourceVolumeServer() string {
  2311. if x != nil {
  2312. return x.SourceVolumeServer
  2313. }
  2314. return ""
  2315. }
  2316. type VolumeTailReceiverResponse struct {
  2317. state protoimpl.MessageState
  2318. sizeCache protoimpl.SizeCache
  2319. unknownFields protoimpl.UnknownFields
  2320. }
  2321. func (x *VolumeTailReceiverResponse) Reset() {
  2322. *x = VolumeTailReceiverResponse{}
  2323. if protoimpl.UnsafeEnabled {
  2324. mi := &file_volume_server_proto_msgTypes[49]
  2325. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2326. ms.StoreMessageInfo(mi)
  2327. }
  2328. }
  2329. func (x *VolumeTailReceiverResponse) String() string {
  2330. return protoimpl.X.MessageStringOf(x)
  2331. }
  2332. func (*VolumeTailReceiverResponse) ProtoMessage() {}
  2333. func (x *VolumeTailReceiverResponse) ProtoReflect() protoreflect.Message {
  2334. mi := &file_volume_server_proto_msgTypes[49]
  2335. if protoimpl.UnsafeEnabled && x != nil {
  2336. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2337. if ms.LoadMessageInfo() == nil {
  2338. ms.StoreMessageInfo(mi)
  2339. }
  2340. return ms
  2341. }
  2342. return mi.MessageOf(x)
  2343. }
  2344. // Deprecated: Use VolumeTailReceiverResponse.ProtoReflect.Descriptor instead.
  2345. func (*VolumeTailReceiverResponse) Descriptor() ([]byte, []int) {
  2346. return file_volume_server_proto_rawDescGZIP(), []int{49}
  2347. }
  2348. type VolumeEcShardsGenerateRequest struct {
  2349. state protoimpl.MessageState
  2350. sizeCache protoimpl.SizeCache
  2351. unknownFields protoimpl.UnknownFields
  2352. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2353. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2354. }
  2355. func (x *VolumeEcShardsGenerateRequest) Reset() {
  2356. *x = VolumeEcShardsGenerateRequest{}
  2357. if protoimpl.UnsafeEnabled {
  2358. mi := &file_volume_server_proto_msgTypes[50]
  2359. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2360. ms.StoreMessageInfo(mi)
  2361. }
  2362. }
  2363. func (x *VolumeEcShardsGenerateRequest) String() string {
  2364. return protoimpl.X.MessageStringOf(x)
  2365. }
  2366. func (*VolumeEcShardsGenerateRequest) ProtoMessage() {}
  2367. func (x *VolumeEcShardsGenerateRequest) ProtoReflect() protoreflect.Message {
  2368. mi := &file_volume_server_proto_msgTypes[50]
  2369. if protoimpl.UnsafeEnabled && x != nil {
  2370. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2371. if ms.LoadMessageInfo() == nil {
  2372. ms.StoreMessageInfo(mi)
  2373. }
  2374. return ms
  2375. }
  2376. return mi.MessageOf(x)
  2377. }
  2378. // Deprecated: Use VolumeEcShardsGenerateRequest.ProtoReflect.Descriptor instead.
  2379. func (*VolumeEcShardsGenerateRequest) Descriptor() ([]byte, []int) {
  2380. return file_volume_server_proto_rawDescGZIP(), []int{50}
  2381. }
  2382. func (x *VolumeEcShardsGenerateRequest) GetVolumeId() uint32 {
  2383. if x != nil {
  2384. return x.VolumeId
  2385. }
  2386. return 0
  2387. }
  2388. func (x *VolumeEcShardsGenerateRequest) GetCollection() string {
  2389. if x != nil {
  2390. return x.Collection
  2391. }
  2392. return ""
  2393. }
  2394. type VolumeEcShardsGenerateResponse struct {
  2395. state protoimpl.MessageState
  2396. sizeCache protoimpl.SizeCache
  2397. unknownFields protoimpl.UnknownFields
  2398. }
  2399. func (x *VolumeEcShardsGenerateResponse) Reset() {
  2400. *x = VolumeEcShardsGenerateResponse{}
  2401. if protoimpl.UnsafeEnabled {
  2402. mi := &file_volume_server_proto_msgTypes[51]
  2403. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2404. ms.StoreMessageInfo(mi)
  2405. }
  2406. }
  2407. func (x *VolumeEcShardsGenerateResponse) String() string {
  2408. return protoimpl.X.MessageStringOf(x)
  2409. }
  2410. func (*VolumeEcShardsGenerateResponse) ProtoMessage() {}
  2411. func (x *VolumeEcShardsGenerateResponse) ProtoReflect() protoreflect.Message {
  2412. mi := &file_volume_server_proto_msgTypes[51]
  2413. if protoimpl.UnsafeEnabled && x != nil {
  2414. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2415. if ms.LoadMessageInfo() == nil {
  2416. ms.StoreMessageInfo(mi)
  2417. }
  2418. return ms
  2419. }
  2420. return mi.MessageOf(x)
  2421. }
  2422. // Deprecated: Use VolumeEcShardsGenerateResponse.ProtoReflect.Descriptor instead.
  2423. func (*VolumeEcShardsGenerateResponse) Descriptor() ([]byte, []int) {
  2424. return file_volume_server_proto_rawDescGZIP(), []int{51}
  2425. }
  2426. type VolumeEcShardsRebuildRequest struct {
  2427. state protoimpl.MessageState
  2428. sizeCache protoimpl.SizeCache
  2429. unknownFields protoimpl.UnknownFields
  2430. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2431. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2432. }
  2433. func (x *VolumeEcShardsRebuildRequest) Reset() {
  2434. *x = VolumeEcShardsRebuildRequest{}
  2435. if protoimpl.UnsafeEnabled {
  2436. mi := &file_volume_server_proto_msgTypes[52]
  2437. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2438. ms.StoreMessageInfo(mi)
  2439. }
  2440. }
  2441. func (x *VolumeEcShardsRebuildRequest) String() string {
  2442. return protoimpl.X.MessageStringOf(x)
  2443. }
  2444. func (*VolumeEcShardsRebuildRequest) ProtoMessage() {}
  2445. func (x *VolumeEcShardsRebuildRequest) ProtoReflect() protoreflect.Message {
  2446. mi := &file_volume_server_proto_msgTypes[52]
  2447. if protoimpl.UnsafeEnabled && x != nil {
  2448. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2449. if ms.LoadMessageInfo() == nil {
  2450. ms.StoreMessageInfo(mi)
  2451. }
  2452. return ms
  2453. }
  2454. return mi.MessageOf(x)
  2455. }
  2456. // Deprecated: Use VolumeEcShardsRebuildRequest.ProtoReflect.Descriptor instead.
  2457. func (*VolumeEcShardsRebuildRequest) Descriptor() ([]byte, []int) {
  2458. return file_volume_server_proto_rawDescGZIP(), []int{52}
  2459. }
  2460. func (x *VolumeEcShardsRebuildRequest) GetVolumeId() uint32 {
  2461. if x != nil {
  2462. return x.VolumeId
  2463. }
  2464. return 0
  2465. }
  2466. func (x *VolumeEcShardsRebuildRequest) GetCollection() string {
  2467. if x != nil {
  2468. return x.Collection
  2469. }
  2470. return ""
  2471. }
  2472. type VolumeEcShardsRebuildResponse struct {
  2473. state protoimpl.MessageState
  2474. sizeCache protoimpl.SizeCache
  2475. unknownFields protoimpl.UnknownFields
  2476. RebuiltShardIds []uint32 `protobuf:"varint,1,rep,packed,name=rebuilt_shard_ids,json=rebuiltShardIds,proto3" json:"rebuilt_shard_ids,omitempty"`
  2477. }
  2478. func (x *VolumeEcShardsRebuildResponse) Reset() {
  2479. *x = VolumeEcShardsRebuildResponse{}
  2480. if protoimpl.UnsafeEnabled {
  2481. mi := &file_volume_server_proto_msgTypes[53]
  2482. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2483. ms.StoreMessageInfo(mi)
  2484. }
  2485. }
  2486. func (x *VolumeEcShardsRebuildResponse) String() string {
  2487. return protoimpl.X.MessageStringOf(x)
  2488. }
  2489. func (*VolumeEcShardsRebuildResponse) ProtoMessage() {}
  2490. func (x *VolumeEcShardsRebuildResponse) ProtoReflect() protoreflect.Message {
  2491. mi := &file_volume_server_proto_msgTypes[53]
  2492. if protoimpl.UnsafeEnabled && x != nil {
  2493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2494. if ms.LoadMessageInfo() == nil {
  2495. ms.StoreMessageInfo(mi)
  2496. }
  2497. return ms
  2498. }
  2499. return mi.MessageOf(x)
  2500. }
  2501. // Deprecated: Use VolumeEcShardsRebuildResponse.ProtoReflect.Descriptor instead.
  2502. func (*VolumeEcShardsRebuildResponse) Descriptor() ([]byte, []int) {
  2503. return file_volume_server_proto_rawDescGZIP(), []int{53}
  2504. }
  2505. func (x *VolumeEcShardsRebuildResponse) GetRebuiltShardIds() []uint32 {
  2506. if x != nil {
  2507. return x.RebuiltShardIds
  2508. }
  2509. return nil
  2510. }
  2511. type VolumeEcShardsCopyRequest struct {
  2512. state protoimpl.MessageState
  2513. sizeCache protoimpl.SizeCache
  2514. unknownFields protoimpl.UnknownFields
  2515. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2516. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2517. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2518. CopyEcxFile bool `protobuf:"varint,4,opt,name=copy_ecx_file,json=copyEcxFile,proto3" json:"copy_ecx_file,omitempty"`
  2519. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  2520. CopyEcjFile bool `protobuf:"varint,6,opt,name=copy_ecj_file,json=copyEcjFile,proto3" json:"copy_ecj_file,omitempty"`
  2521. CopyVifFile bool `protobuf:"varint,7,opt,name=copy_vif_file,json=copyVifFile,proto3" json:"copy_vif_file,omitempty"`
  2522. }
  2523. func (x *VolumeEcShardsCopyRequest) Reset() {
  2524. *x = VolumeEcShardsCopyRequest{}
  2525. if protoimpl.UnsafeEnabled {
  2526. mi := &file_volume_server_proto_msgTypes[54]
  2527. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2528. ms.StoreMessageInfo(mi)
  2529. }
  2530. }
  2531. func (x *VolumeEcShardsCopyRequest) String() string {
  2532. return protoimpl.X.MessageStringOf(x)
  2533. }
  2534. func (*VolumeEcShardsCopyRequest) ProtoMessage() {}
  2535. func (x *VolumeEcShardsCopyRequest) ProtoReflect() protoreflect.Message {
  2536. mi := &file_volume_server_proto_msgTypes[54]
  2537. if protoimpl.UnsafeEnabled && x != nil {
  2538. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2539. if ms.LoadMessageInfo() == nil {
  2540. ms.StoreMessageInfo(mi)
  2541. }
  2542. return ms
  2543. }
  2544. return mi.MessageOf(x)
  2545. }
  2546. // Deprecated: Use VolumeEcShardsCopyRequest.ProtoReflect.Descriptor instead.
  2547. func (*VolumeEcShardsCopyRequest) Descriptor() ([]byte, []int) {
  2548. return file_volume_server_proto_rawDescGZIP(), []int{54}
  2549. }
  2550. func (x *VolumeEcShardsCopyRequest) GetVolumeId() uint32 {
  2551. if x != nil {
  2552. return x.VolumeId
  2553. }
  2554. return 0
  2555. }
  2556. func (x *VolumeEcShardsCopyRequest) GetCollection() string {
  2557. if x != nil {
  2558. return x.Collection
  2559. }
  2560. return ""
  2561. }
  2562. func (x *VolumeEcShardsCopyRequest) GetShardIds() []uint32 {
  2563. if x != nil {
  2564. return x.ShardIds
  2565. }
  2566. return nil
  2567. }
  2568. func (x *VolumeEcShardsCopyRequest) GetCopyEcxFile() bool {
  2569. if x != nil {
  2570. return x.CopyEcxFile
  2571. }
  2572. return false
  2573. }
  2574. func (x *VolumeEcShardsCopyRequest) GetSourceDataNode() string {
  2575. if x != nil {
  2576. return x.SourceDataNode
  2577. }
  2578. return ""
  2579. }
  2580. func (x *VolumeEcShardsCopyRequest) GetCopyEcjFile() bool {
  2581. if x != nil {
  2582. return x.CopyEcjFile
  2583. }
  2584. return false
  2585. }
  2586. func (x *VolumeEcShardsCopyRequest) GetCopyVifFile() bool {
  2587. if x != nil {
  2588. return x.CopyVifFile
  2589. }
  2590. return false
  2591. }
  2592. type VolumeEcShardsCopyResponse struct {
  2593. state protoimpl.MessageState
  2594. sizeCache protoimpl.SizeCache
  2595. unknownFields protoimpl.UnknownFields
  2596. }
  2597. func (x *VolumeEcShardsCopyResponse) Reset() {
  2598. *x = VolumeEcShardsCopyResponse{}
  2599. if protoimpl.UnsafeEnabled {
  2600. mi := &file_volume_server_proto_msgTypes[55]
  2601. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2602. ms.StoreMessageInfo(mi)
  2603. }
  2604. }
  2605. func (x *VolumeEcShardsCopyResponse) String() string {
  2606. return protoimpl.X.MessageStringOf(x)
  2607. }
  2608. func (*VolumeEcShardsCopyResponse) ProtoMessage() {}
  2609. func (x *VolumeEcShardsCopyResponse) ProtoReflect() protoreflect.Message {
  2610. mi := &file_volume_server_proto_msgTypes[55]
  2611. if protoimpl.UnsafeEnabled && x != nil {
  2612. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2613. if ms.LoadMessageInfo() == nil {
  2614. ms.StoreMessageInfo(mi)
  2615. }
  2616. return ms
  2617. }
  2618. return mi.MessageOf(x)
  2619. }
  2620. // Deprecated: Use VolumeEcShardsCopyResponse.ProtoReflect.Descriptor instead.
  2621. func (*VolumeEcShardsCopyResponse) Descriptor() ([]byte, []int) {
  2622. return file_volume_server_proto_rawDescGZIP(), []int{55}
  2623. }
  2624. type VolumeEcShardsDeleteRequest struct {
  2625. state protoimpl.MessageState
  2626. sizeCache protoimpl.SizeCache
  2627. unknownFields protoimpl.UnknownFields
  2628. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2629. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2630. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2631. }
  2632. func (x *VolumeEcShardsDeleteRequest) Reset() {
  2633. *x = VolumeEcShardsDeleteRequest{}
  2634. if protoimpl.UnsafeEnabled {
  2635. mi := &file_volume_server_proto_msgTypes[56]
  2636. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2637. ms.StoreMessageInfo(mi)
  2638. }
  2639. }
  2640. func (x *VolumeEcShardsDeleteRequest) String() string {
  2641. return protoimpl.X.MessageStringOf(x)
  2642. }
  2643. func (*VolumeEcShardsDeleteRequest) ProtoMessage() {}
  2644. func (x *VolumeEcShardsDeleteRequest) ProtoReflect() protoreflect.Message {
  2645. mi := &file_volume_server_proto_msgTypes[56]
  2646. if protoimpl.UnsafeEnabled && x != nil {
  2647. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2648. if ms.LoadMessageInfo() == nil {
  2649. ms.StoreMessageInfo(mi)
  2650. }
  2651. return ms
  2652. }
  2653. return mi.MessageOf(x)
  2654. }
  2655. // Deprecated: Use VolumeEcShardsDeleteRequest.ProtoReflect.Descriptor instead.
  2656. func (*VolumeEcShardsDeleteRequest) Descriptor() ([]byte, []int) {
  2657. return file_volume_server_proto_rawDescGZIP(), []int{56}
  2658. }
  2659. func (x *VolumeEcShardsDeleteRequest) GetVolumeId() uint32 {
  2660. if x != nil {
  2661. return x.VolumeId
  2662. }
  2663. return 0
  2664. }
  2665. func (x *VolumeEcShardsDeleteRequest) GetCollection() string {
  2666. if x != nil {
  2667. return x.Collection
  2668. }
  2669. return ""
  2670. }
  2671. func (x *VolumeEcShardsDeleteRequest) GetShardIds() []uint32 {
  2672. if x != nil {
  2673. return x.ShardIds
  2674. }
  2675. return nil
  2676. }
  2677. type VolumeEcShardsDeleteResponse struct {
  2678. state protoimpl.MessageState
  2679. sizeCache protoimpl.SizeCache
  2680. unknownFields protoimpl.UnknownFields
  2681. }
  2682. func (x *VolumeEcShardsDeleteResponse) Reset() {
  2683. *x = VolumeEcShardsDeleteResponse{}
  2684. if protoimpl.UnsafeEnabled {
  2685. mi := &file_volume_server_proto_msgTypes[57]
  2686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2687. ms.StoreMessageInfo(mi)
  2688. }
  2689. }
  2690. func (x *VolumeEcShardsDeleteResponse) String() string {
  2691. return protoimpl.X.MessageStringOf(x)
  2692. }
  2693. func (*VolumeEcShardsDeleteResponse) ProtoMessage() {}
  2694. func (x *VolumeEcShardsDeleteResponse) ProtoReflect() protoreflect.Message {
  2695. mi := &file_volume_server_proto_msgTypes[57]
  2696. if protoimpl.UnsafeEnabled && x != nil {
  2697. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2698. if ms.LoadMessageInfo() == nil {
  2699. ms.StoreMessageInfo(mi)
  2700. }
  2701. return ms
  2702. }
  2703. return mi.MessageOf(x)
  2704. }
  2705. // Deprecated: Use VolumeEcShardsDeleteResponse.ProtoReflect.Descriptor instead.
  2706. func (*VolumeEcShardsDeleteResponse) Descriptor() ([]byte, []int) {
  2707. return file_volume_server_proto_rawDescGZIP(), []int{57}
  2708. }
  2709. type VolumeEcShardsMountRequest struct {
  2710. state protoimpl.MessageState
  2711. sizeCache protoimpl.SizeCache
  2712. unknownFields protoimpl.UnknownFields
  2713. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2714. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2715. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2716. }
  2717. func (x *VolumeEcShardsMountRequest) Reset() {
  2718. *x = VolumeEcShardsMountRequest{}
  2719. if protoimpl.UnsafeEnabled {
  2720. mi := &file_volume_server_proto_msgTypes[58]
  2721. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2722. ms.StoreMessageInfo(mi)
  2723. }
  2724. }
  2725. func (x *VolumeEcShardsMountRequest) String() string {
  2726. return protoimpl.X.MessageStringOf(x)
  2727. }
  2728. func (*VolumeEcShardsMountRequest) ProtoMessage() {}
  2729. func (x *VolumeEcShardsMountRequest) ProtoReflect() protoreflect.Message {
  2730. mi := &file_volume_server_proto_msgTypes[58]
  2731. if protoimpl.UnsafeEnabled && x != nil {
  2732. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2733. if ms.LoadMessageInfo() == nil {
  2734. ms.StoreMessageInfo(mi)
  2735. }
  2736. return ms
  2737. }
  2738. return mi.MessageOf(x)
  2739. }
  2740. // Deprecated: Use VolumeEcShardsMountRequest.ProtoReflect.Descriptor instead.
  2741. func (*VolumeEcShardsMountRequest) Descriptor() ([]byte, []int) {
  2742. return file_volume_server_proto_rawDescGZIP(), []int{58}
  2743. }
  2744. func (x *VolumeEcShardsMountRequest) GetVolumeId() uint32 {
  2745. if x != nil {
  2746. return x.VolumeId
  2747. }
  2748. return 0
  2749. }
  2750. func (x *VolumeEcShardsMountRequest) GetCollection() string {
  2751. if x != nil {
  2752. return x.Collection
  2753. }
  2754. return ""
  2755. }
  2756. func (x *VolumeEcShardsMountRequest) GetShardIds() []uint32 {
  2757. if x != nil {
  2758. return x.ShardIds
  2759. }
  2760. return nil
  2761. }
  2762. type VolumeEcShardsMountResponse struct {
  2763. state protoimpl.MessageState
  2764. sizeCache protoimpl.SizeCache
  2765. unknownFields protoimpl.UnknownFields
  2766. }
  2767. func (x *VolumeEcShardsMountResponse) Reset() {
  2768. *x = VolumeEcShardsMountResponse{}
  2769. if protoimpl.UnsafeEnabled {
  2770. mi := &file_volume_server_proto_msgTypes[59]
  2771. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2772. ms.StoreMessageInfo(mi)
  2773. }
  2774. }
  2775. func (x *VolumeEcShardsMountResponse) String() string {
  2776. return protoimpl.X.MessageStringOf(x)
  2777. }
  2778. func (*VolumeEcShardsMountResponse) ProtoMessage() {}
  2779. func (x *VolumeEcShardsMountResponse) ProtoReflect() protoreflect.Message {
  2780. mi := &file_volume_server_proto_msgTypes[59]
  2781. if protoimpl.UnsafeEnabled && x != nil {
  2782. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2783. if ms.LoadMessageInfo() == nil {
  2784. ms.StoreMessageInfo(mi)
  2785. }
  2786. return ms
  2787. }
  2788. return mi.MessageOf(x)
  2789. }
  2790. // Deprecated: Use VolumeEcShardsMountResponse.ProtoReflect.Descriptor instead.
  2791. func (*VolumeEcShardsMountResponse) Descriptor() ([]byte, []int) {
  2792. return file_volume_server_proto_rawDescGZIP(), []int{59}
  2793. }
  2794. type VolumeEcShardsUnmountRequest struct {
  2795. state protoimpl.MessageState
  2796. sizeCache protoimpl.SizeCache
  2797. unknownFields protoimpl.UnknownFields
  2798. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2799. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2800. }
  2801. func (x *VolumeEcShardsUnmountRequest) Reset() {
  2802. *x = VolumeEcShardsUnmountRequest{}
  2803. if protoimpl.UnsafeEnabled {
  2804. mi := &file_volume_server_proto_msgTypes[60]
  2805. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2806. ms.StoreMessageInfo(mi)
  2807. }
  2808. }
  2809. func (x *VolumeEcShardsUnmountRequest) String() string {
  2810. return protoimpl.X.MessageStringOf(x)
  2811. }
  2812. func (*VolumeEcShardsUnmountRequest) ProtoMessage() {}
  2813. func (x *VolumeEcShardsUnmountRequest) ProtoReflect() protoreflect.Message {
  2814. mi := &file_volume_server_proto_msgTypes[60]
  2815. if protoimpl.UnsafeEnabled && x != nil {
  2816. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2817. if ms.LoadMessageInfo() == nil {
  2818. ms.StoreMessageInfo(mi)
  2819. }
  2820. return ms
  2821. }
  2822. return mi.MessageOf(x)
  2823. }
  2824. // Deprecated: Use VolumeEcShardsUnmountRequest.ProtoReflect.Descriptor instead.
  2825. func (*VolumeEcShardsUnmountRequest) Descriptor() ([]byte, []int) {
  2826. return file_volume_server_proto_rawDescGZIP(), []int{60}
  2827. }
  2828. func (x *VolumeEcShardsUnmountRequest) GetVolumeId() uint32 {
  2829. if x != nil {
  2830. return x.VolumeId
  2831. }
  2832. return 0
  2833. }
  2834. func (x *VolumeEcShardsUnmountRequest) GetShardIds() []uint32 {
  2835. if x != nil {
  2836. return x.ShardIds
  2837. }
  2838. return nil
  2839. }
  2840. type VolumeEcShardsUnmountResponse struct {
  2841. state protoimpl.MessageState
  2842. sizeCache protoimpl.SizeCache
  2843. unknownFields protoimpl.UnknownFields
  2844. }
  2845. func (x *VolumeEcShardsUnmountResponse) Reset() {
  2846. *x = VolumeEcShardsUnmountResponse{}
  2847. if protoimpl.UnsafeEnabled {
  2848. mi := &file_volume_server_proto_msgTypes[61]
  2849. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2850. ms.StoreMessageInfo(mi)
  2851. }
  2852. }
  2853. func (x *VolumeEcShardsUnmountResponse) String() string {
  2854. return protoimpl.X.MessageStringOf(x)
  2855. }
  2856. func (*VolumeEcShardsUnmountResponse) ProtoMessage() {}
  2857. func (x *VolumeEcShardsUnmountResponse) ProtoReflect() protoreflect.Message {
  2858. mi := &file_volume_server_proto_msgTypes[61]
  2859. if protoimpl.UnsafeEnabled && x != nil {
  2860. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2861. if ms.LoadMessageInfo() == nil {
  2862. ms.StoreMessageInfo(mi)
  2863. }
  2864. return ms
  2865. }
  2866. return mi.MessageOf(x)
  2867. }
  2868. // Deprecated: Use VolumeEcShardsUnmountResponse.ProtoReflect.Descriptor instead.
  2869. func (*VolumeEcShardsUnmountResponse) Descriptor() ([]byte, []int) {
  2870. return file_volume_server_proto_rawDescGZIP(), []int{61}
  2871. }
  2872. type VolumeEcShardReadRequest struct {
  2873. state protoimpl.MessageState
  2874. sizeCache protoimpl.SizeCache
  2875. unknownFields protoimpl.UnknownFields
  2876. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2877. ShardId uint32 `protobuf:"varint,2,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"`
  2878. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
  2879. Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  2880. FileKey uint64 `protobuf:"varint,5,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2881. }
  2882. func (x *VolumeEcShardReadRequest) Reset() {
  2883. *x = VolumeEcShardReadRequest{}
  2884. if protoimpl.UnsafeEnabled {
  2885. mi := &file_volume_server_proto_msgTypes[62]
  2886. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2887. ms.StoreMessageInfo(mi)
  2888. }
  2889. }
  2890. func (x *VolumeEcShardReadRequest) String() string {
  2891. return protoimpl.X.MessageStringOf(x)
  2892. }
  2893. func (*VolumeEcShardReadRequest) ProtoMessage() {}
  2894. func (x *VolumeEcShardReadRequest) ProtoReflect() protoreflect.Message {
  2895. mi := &file_volume_server_proto_msgTypes[62]
  2896. if protoimpl.UnsafeEnabled && x != nil {
  2897. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2898. if ms.LoadMessageInfo() == nil {
  2899. ms.StoreMessageInfo(mi)
  2900. }
  2901. return ms
  2902. }
  2903. return mi.MessageOf(x)
  2904. }
  2905. // Deprecated: Use VolumeEcShardReadRequest.ProtoReflect.Descriptor instead.
  2906. func (*VolumeEcShardReadRequest) Descriptor() ([]byte, []int) {
  2907. return file_volume_server_proto_rawDescGZIP(), []int{62}
  2908. }
  2909. func (x *VolumeEcShardReadRequest) GetVolumeId() uint32 {
  2910. if x != nil {
  2911. return x.VolumeId
  2912. }
  2913. return 0
  2914. }
  2915. func (x *VolumeEcShardReadRequest) GetShardId() uint32 {
  2916. if x != nil {
  2917. return x.ShardId
  2918. }
  2919. return 0
  2920. }
  2921. func (x *VolumeEcShardReadRequest) GetOffset() int64 {
  2922. if x != nil {
  2923. return x.Offset
  2924. }
  2925. return 0
  2926. }
  2927. func (x *VolumeEcShardReadRequest) GetSize() int64 {
  2928. if x != nil {
  2929. return x.Size
  2930. }
  2931. return 0
  2932. }
  2933. func (x *VolumeEcShardReadRequest) GetFileKey() uint64 {
  2934. if x != nil {
  2935. return x.FileKey
  2936. }
  2937. return 0
  2938. }
  2939. type VolumeEcShardReadResponse struct {
  2940. state protoimpl.MessageState
  2941. sizeCache protoimpl.SizeCache
  2942. unknownFields protoimpl.UnknownFields
  2943. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  2944. IsDeleted bool `protobuf:"varint,2,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
  2945. }
  2946. func (x *VolumeEcShardReadResponse) Reset() {
  2947. *x = VolumeEcShardReadResponse{}
  2948. if protoimpl.UnsafeEnabled {
  2949. mi := &file_volume_server_proto_msgTypes[63]
  2950. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2951. ms.StoreMessageInfo(mi)
  2952. }
  2953. }
  2954. func (x *VolumeEcShardReadResponse) String() string {
  2955. return protoimpl.X.MessageStringOf(x)
  2956. }
  2957. func (*VolumeEcShardReadResponse) ProtoMessage() {}
  2958. func (x *VolumeEcShardReadResponse) ProtoReflect() protoreflect.Message {
  2959. mi := &file_volume_server_proto_msgTypes[63]
  2960. if protoimpl.UnsafeEnabled && x != nil {
  2961. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2962. if ms.LoadMessageInfo() == nil {
  2963. ms.StoreMessageInfo(mi)
  2964. }
  2965. return ms
  2966. }
  2967. return mi.MessageOf(x)
  2968. }
  2969. // Deprecated: Use VolumeEcShardReadResponse.ProtoReflect.Descriptor instead.
  2970. func (*VolumeEcShardReadResponse) Descriptor() ([]byte, []int) {
  2971. return file_volume_server_proto_rawDescGZIP(), []int{63}
  2972. }
  2973. func (x *VolumeEcShardReadResponse) GetData() []byte {
  2974. if x != nil {
  2975. return x.Data
  2976. }
  2977. return nil
  2978. }
  2979. func (x *VolumeEcShardReadResponse) GetIsDeleted() bool {
  2980. if x != nil {
  2981. return x.IsDeleted
  2982. }
  2983. return false
  2984. }
  2985. type VolumeEcBlobDeleteRequest struct {
  2986. state protoimpl.MessageState
  2987. sizeCache protoimpl.SizeCache
  2988. unknownFields protoimpl.UnknownFields
  2989. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2990. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2991. FileKey uint64 `protobuf:"varint,3,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2992. Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
  2993. }
  2994. func (x *VolumeEcBlobDeleteRequest) Reset() {
  2995. *x = VolumeEcBlobDeleteRequest{}
  2996. if protoimpl.UnsafeEnabled {
  2997. mi := &file_volume_server_proto_msgTypes[64]
  2998. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2999. ms.StoreMessageInfo(mi)
  3000. }
  3001. }
  3002. func (x *VolumeEcBlobDeleteRequest) String() string {
  3003. return protoimpl.X.MessageStringOf(x)
  3004. }
  3005. func (*VolumeEcBlobDeleteRequest) ProtoMessage() {}
  3006. func (x *VolumeEcBlobDeleteRequest) ProtoReflect() protoreflect.Message {
  3007. mi := &file_volume_server_proto_msgTypes[64]
  3008. if protoimpl.UnsafeEnabled && x != nil {
  3009. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3010. if ms.LoadMessageInfo() == nil {
  3011. ms.StoreMessageInfo(mi)
  3012. }
  3013. return ms
  3014. }
  3015. return mi.MessageOf(x)
  3016. }
  3017. // Deprecated: Use VolumeEcBlobDeleteRequest.ProtoReflect.Descriptor instead.
  3018. func (*VolumeEcBlobDeleteRequest) Descriptor() ([]byte, []int) {
  3019. return file_volume_server_proto_rawDescGZIP(), []int{64}
  3020. }
  3021. func (x *VolumeEcBlobDeleteRequest) GetVolumeId() uint32 {
  3022. if x != nil {
  3023. return x.VolumeId
  3024. }
  3025. return 0
  3026. }
  3027. func (x *VolumeEcBlobDeleteRequest) GetCollection() string {
  3028. if x != nil {
  3029. return x.Collection
  3030. }
  3031. return ""
  3032. }
  3033. func (x *VolumeEcBlobDeleteRequest) GetFileKey() uint64 {
  3034. if x != nil {
  3035. return x.FileKey
  3036. }
  3037. return 0
  3038. }
  3039. func (x *VolumeEcBlobDeleteRequest) GetVersion() uint32 {
  3040. if x != nil {
  3041. return x.Version
  3042. }
  3043. return 0
  3044. }
  3045. type VolumeEcBlobDeleteResponse struct {
  3046. state protoimpl.MessageState
  3047. sizeCache protoimpl.SizeCache
  3048. unknownFields protoimpl.UnknownFields
  3049. }
  3050. func (x *VolumeEcBlobDeleteResponse) Reset() {
  3051. *x = VolumeEcBlobDeleteResponse{}
  3052. if protoimpl.UnsafeEnabled {
  3053. mi := &file_volume_server_proto_msgTypes[65]
  3054. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3055. ms.StoreMessageInfo(mi)
  3056. }
  3057. }
  3058. func (x *VolumeEcBlobDeleteResponse) String() string {
  3059. return protoimpl.X.MessageStringOf(x)
  3060. }
  3061. func (*VolumeEcBlobDeleteResponse) ProtoMessage() {}
  3062. func (x *VolumeEcBlobDeleteResponse) ProtoReflect() protoreflect.Message {
  3063. mi := &file_volume_server_proto_msgTypes[65]
  3064. if protoimpl.UnsafeEnabled && x != nil {
  3065. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3066. if ms.LoadMessageInfo() == nil {
  3067. ms.StoreMessageInfo(mi)
  3068. }
  3069. return ms
  3070. }
  3071. return mi.MessageOf(x)
  3072. }
  3073. // Deprecated: Use VolumeEcBlobDeleteResponse.ProtoReflect.Descriptor instead.
  3074. func (*VolumeEcBlobDeleteResponse) Descriptor() ([]byte, []int) {
  3075. return file_volume_server_proto_rawDescGZIP(), []int{65}
  3076. }
  3077. type VolumeEcShardsToVolumeRequest struct {
  3078. state protoimpl.MessageState
  3079. sizeCache protoimpl.SizeCache
  3080. unknownFields protoimpl.UnknownFields
  3081. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3082. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3083. }
  3084. func (x *VolumeEcShardsToVolumeRequest) Reset() {
  3085. *x = VolumeEcShardsToVolumeRequest{}
  3086. if protoimpl.UnsafeEnabled {
  3087. mi := &file_volume_server_proto_msgTypes[66]
  3088. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3089. ms.StoreMessageInfo(mi)
  3090. }
  3091. }
  3092. func (x *VolumeEcShardsToVolumeRequest) String() string {
  3093. return protoimpl.X.MessageStringOf(x)
  3094. }
  3095. func (*VolumeEcShardsToVolumeRequest) ProtoMessage() {}
  3096. func (x *VolumeEcShardsToVolumeRequest) ProtoReflect() protoreflect.Message {
  3097. mi := &file_volume_server_proto_msgTypes[66]
  3098. if protoimpl.UnsafeEnabled && x != nil {
  3099. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3100. if ms.LoadMessageInfo() == nil {
  3101. ms.StoreMessageInfo(mi)
  3102. }
  3103. return ms
  3104. }
  3105. return mi.MessageOf(x)
  3106. }
  3107. // Deprecated: Use VolumeEcShardsToVolumeRequest.ProtoReflect.Descriptor instead.
  3108. func (*VolumeEcShardsToVolumeRequest) Descriptor() ([]byte, []int) {
  3109. return file_volume_server_proto_rawDescGZIP(), []int{66}
  3110. }
  3111. func (x *VolumeEcShardsToVolumeRequest) GetVolumeId() uint32 {
  3112. if x != nil {
  3113. return x.VolumeId
  3114. }
  3115. return 0
  3116. }
  3117. func (x *VolumeEcShardsToVolumeRequest) GetCollection() string {
  3118. if x != nil {
  3119. return x.Collection
  3120. }
  3121. return ""
  3122. }
  3123. type VolumeEcShardsToVolumeResponse struct {
  3124. state protoimpl.MessageState
  3125. sizeCache protoimpl.SizeCache
  3126. unknownFields protoimpl.UnknownFields
  3127. }
  3128. func (x *VolumeEcShardsToVolumeResponse) Reset() {
  3129. *x = VolumeEcShardsToVolumeResponse{}
  3130. if protoimpl.UnsafeEnabled {
  3131. mi := &file_volume_server_proto_msgTypes[67]
  3132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3133. ms.StoreMessageInfo(mi)
  3134. }
  3135. }
  3136. func (x *VolumeEcShardsToVolumeResponse) String() string {
  3137. return protoimpl.X.MessageStringOf(x)
  3138. }
  3139. func (*VolumeEcShardsToVolumeResponse) ProtoMessage() {}
  3140. func (x *VolumeEcShardsToVolumeResponse) ProtoReflect() protoreflect.Message {
  3141. mi := &file_volume_server_proto_msgTypes[67]
  3142. if protoimpl.UnsafeEnabled && x != nil {
  3143. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3144. if ms.LoadMessageInfo() == nil {
  3145. ms.StoreMessageInfo(mi)
  3146. }
  3147. return ms
  3148. }
  3149. return mi.MessageOf(x)
  3150. }
  3151. // Deprecated: Use VolumeEcShardsToVolumeResponse.ProtoReflect.Descriptor instead.
  3152. func (*VolumeEcShardsToVolumeResponse) Descriptor() ([]byte, []int) {
  3153. return file_volume_server_proto_rawDescGZIP(), []int{67}
  3154. }
  3155. type ReadVolumeFileStatusRequest struct {
  3156. state protoimpl.MessageState
  3157. sizeCache protoimpl.SizeCache
  3158. unknownFields protoimpl.UnknownFields
  3159. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3160. }
  3161. func (x *ReadVolumeFileStatusRequest) Reset() {
  3162. *x = ReadVolumeFileStatusRequest{}
  3163. if protoimpl.UnsafeEnabled {
  3164. mi := &file_volume_server_proto_msgTypes[68]
  3165. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3166. ms.StoreMessageInfo(mi)
  3167. }
  3168. }
  3169. func (x *ReadVolumeFileStatusRequest) String() string {
  3170. return protoimpl.X.MessageStringOf(x)
  3171. }
  3172. func (*ReadVolumeFileStatusRequest) ProtoMessage() {}
  3173. func (x *ReadVolumeFileStatusRequest) ProtoReflect() protoreflect.Message {
  3174. mi := &file_volume_server_proto_msgTypes[68]
  3175. if protoimpl.UnsafeEnabled && x != nil {
  3176. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3177. if ms.LoadMessageInfo() == nil {
  3178. ms.StoreMessageInfo(mi)
  3179. }
  3180. return ms
  3181. }
  3182. return mi.MessageOf(x)
  3183. }
  3184. // Deprecated: Use ReadVolumeFileStatusRequest.ProtoReflect.Descriptor instead.
  3185. func (*ReadVolumeFileStatusRequest) Descriptor() ([]byte, []int) {
  3186. return file_volume_server_proto_rawDescGZIP(), []int{68}
  3187. }
  3188. func (x *ReadVolumeFileStatusRequest) GetVolumeId() uint32 {
  3189. if x != nil {
  3190. return x.VolumeId
  3191. }
  3192. return 0
  3193. }
  3194. type ReadVolumeFileStatusResponse struct {
  3195. state protoimpl.MessageState
  3196. sizeCache protoimpl.SizeCache
  3197. unknownFields protoimpl.UnknownFields
  3198. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3199. IdxFileTimestampSeconds uint64 `protobuf:"varint,2,opt,name=idx_file_timestamp_seconds,json=idxFileTimestampSeconds,proto3" json:"idx_file_timestamp_seconds,omitempty"`
  3200. IdxFileSize uint64 `protobuf:"varint,3,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  3201. DatFileTimestampSeconds uint64 `protobuf:"varint,4,opt,name=dat_file_timestamp_seconds,json=datFileTimestampSeconds,proto3" json:"dat_file_timestamp_seconds,omitempty"`
  3202. DatFileSize uint64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"`
  3203. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  3204. CompactionRevision uint32 `protobuf:"varint,7,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  3205. Collection string `protobuf:"bytes,8,opt,name=collection,proto3" json:"collection,omitempty"`
  3206. DiskType string `protobuf:"bytes,9,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3207. VolumeInfo *VolumeInfo `protobuf:"bytes,10,opt,name=volume_info,json=volumeInfo,proto3" json:"volume_info,omitempty"`
  3208. }
  3209. func (x *ReadVolumeFileStatusResponse) Reset() {
  3210. *x = ReadVolumeFileStatusResponse{}
  3211. if protoimpl.UnsafeEnabled {
  3212. mi := &file_volume_server_proto_msgTypes[69]
  3213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3214. ms.StoreMessageInfo(mi)
  3215. }
  3216. }
  3217. func (x *ReadVolumeFileStatusResponse) String() string {
  3218. return protoimpl.X.MessageStringOf(x)
  3219. }
  3220. func (*ReadVolumeFileStatusResponse) ProtoMessage() {}
  3221. func (x *ReadVolumeFileStatusResponse) ProtoReflect() protoreflect.Message {
  3222. mi := &file_volume_server_proto_msgTypes[69]
  3223. if protoimpl.UnsafeEnabled && x != nil {
  3224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3225. if ms.LoadMessageInfo() == nil {
  3226. ms.StoreMessageInfo(mi)
  3227. }
  3228. return ms
  3229. }
  3230. return mi.MessageOf(x)
  3231. }
  3232. // Deprecated: Use ReadVolumeFileStatusResponse.ProtoReflect.Descriptor instead.
  3233. func (*ReadVolumeFileStatusResponse) Descriptor() ([]byte, []int) {
  3234. return file_volume_server_proto_rawDescGZIP(), []int{69}
  3235. }
  3236. func (x *ReadVolumeFileStatusResponse) GetVolumeId() uint32 {
  3237. if x != nil {
  3238. return x.VolumeId
  3239. }
  3240. return 0
  3241. }
  3242. func (x *ReadVolumeFileStatusResponse) GetIdxFileTimestampSeconds() uint64 {
  3243. if x != nil {
  3244. return x.IdxFileTimestampSeconds
  3245. }
  3246. return 0
  3247. }
  3248. func (x *ReadVolumeFileStatusResponse) GetIdxFileSize() uint64 {
  3249. if x != nil {
  3250. return x.IdxFileSize
  3251. }
  3252. return 0
  3253. }
  3254. func (x *ReadVolumeFileStatusResponse) GetDatFileTimestampSeconds() uint64 {
  3255. if x != nil {
  3256. return x.DatFileTimestampSeconds
  3257. }
  3258. return 0
  3259. }
  3260. func (x *ReadVolumeFileStatusResponse) GetDatFileSize() uint64 {
  3261. if x != nil {
  3262. return x.DatFileSize
  3263. }
  3264. return 0
  3265. }
  3266. func (x *ReadVolumeFileStatusResponse) GetFileCount() uint64 {
  3267. if x != nil {
  3268. return x.FileCount
  3269. }
  3270. return 0
  3271. }
  3272. func (x *ReadVolumeFileStatusResponse) GetCompactionRevision() uint32 {
  3273. if x != nil {
  3274. return x.CompactionRevision
  3275. }
  3276. return 0
  3277. }
  3278. func (x *ReadVolumeFileStatusResponse) GetCollection() string {
  3279. if x != nil {
  3280. return x.Collection
  3281. }
  3282. return ""
  3283. }
  3284. func (x *ReadVolumeFileStatusResponse) GetDiskType() string {
  3285. if x != nil {
  3286. return x.DiskType
  3287. }
  3288. return ""
  3289. }
  3290. func (x *ReadVolumeFileStatusResponse) GetVolumeInfo() *VolumeInfo {
  3291. if x != nil {
  3292. return x.VolumeInfo
  3293. }
  3294. return nil
  3295. }
  3296. type DiskStatus struct {
  3297. state protoimpl.MessageState
  3298. sizeCache protoimpl.SizeCache
  3299. unknownFields protoimpl.UnknownFields
  3300. Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
  3301. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3302. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3303. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3304. PercentFree float32 `protobuf:"fixed32,5,opt,name=percent_free,json=percentFree,proto3" json:"percent_free,omitempty"`
  3305. PercentUsed float32 `protobuf:"fixed32,6,opt,name=percent_used,json=percentUsed,proto3" json:"percent_used,omitempty"`
  3306. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3307. }
  3308. func (x *DiskStatus) Reset() {
  3309. *x = DiskStatus{}
  3310. if protoimpl.UnsafeEnabled {
  3311. mi := &file_volume_server_proto_msgTypes[70]
  3312. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3313. ms.StoreMessageInfo(mi)
  3314. }
  3315. }
  3316. func (x *DiskStatus) String() string {
  3317. return protoimpl.X.MessageStringOf(x)
  3318. }
  3319. func (*DiskStatus) ProtoMessage() {}
  3320. func (x *DiskStatus) ProtoReflect() protoreflect.Message {
  3321. mi := &file_volume_server_proto_msgTypes[70]
  3322. if protoimpl.UnsafeEnabled && x != nil {
  3323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3324. if ms.LoadMessageInfo() == nil {
  3325. ms.StoreMessageInfo(mi)
  3326. }
  3327. return ms
  3328. }
  3329. return mi.MessageOf(x)
  3330. }
  3331. // Deprecated: Use DiskStatus.ProtoReflect.Descriptor instead.
  3332. func (*DiskStatus) Descriptor() ([]byte, []int) {
  3333. return file_volume_server_proto_rawDescGZIP(), []int{70}
  3334. }
  3335. func (x *DiskStatus) GetDir() string {
  3336. if x != nil {
  3337. return x.Dir
  3338. }
  3339. return ""
  3340. }
  3341. func (x *DiskStatus) GetAll() uint64 {
  3342. if x != nil {
  3343. return x.All
  3344. }
  3345. return 0
  3346. }
  3347. func (x *DiskStatus) GetUsed() uint64 {
  3348. if x != nil {
  3349. return x.Used
  3350. }
  3351. return 0
  3352. }
  3353. func (x *DiskStatus) GetFree() uint64 {
  3354. if x != nil {
  3355. return x.Free
  3356. }
  3357. return 0
  3358. }
  3359. func (x *DiskStatus) GetPercentFree() float32 {
  3360. if x != nil {
  3361. return x.PercentFree
  3362. }
  3363. return 0
  3364. }
  3365. func (x *DiskStatus) GetPercentUsed() float32 {
  3366. if x != nil {
  3367. return x.PercentUsed
  3368. }
  3369. return 0
  3370. }
  3371. func (x *DiskStatus) GetDiskType() string {
  3372. if x != nil {
  3373. return x.DiskType
  3374. }
  3375. return ""
  3376. }
  3377. type MemStatus struct {
  3378. state protoimpl.MessageState
  3379. sizeCache protoimpl.SizeCache
  3380. unknownFields protoimpl.UnknownFields
  3381. Goroutines int32 `protobuf:"varint,1,opt,name=goroutines,proto3" json:"goroutines,omitempty"`
  3382. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3383. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3384. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3385. Self uint64 `protobuf:"varint,5,opt,name=self,proto3" json:"self,omitempty"`
  3386. Heap uint64 `protobuf:"varint,6,opt,name=heap,proto3" json:"heap,omitempty"`
  3387. Stack uint64 `protobuf:"varint,7,opt,name=stack,proto3" json:"stack,omitempty"`
  3388. }
  3389. func (x *MemStatus) Reset() {
  3390. *x = MemStatus{}
  3391. if protoimpl.UnsafeEnabled {
  3392. mi := &file_volume_server_proto_msgTypes[71]
  3393. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3394. ms.StoreMessageInfo(mi)
  3395. }
  3396. }
  3397. func (x *MemStatus) String() string {
  3398. return protoimpl.X.MessageStringOf(x)
  3399. }
  3400. func (*MemStatus) ProtoMessage() {}
  3401. func (x *MemStatus) ProtoReflect() protoreflect.Message {
  3402. mi := &file_volume_server_proto_msgTypes[71]
  3403. if protoimpl.UnsafeEnabled && x != nil {
  3404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3405. if ms.LoadMessageInfo() == nil {
  3406. ms.StoreMessageInfo(mi)
  3407. }
  3408. return ms
  3409. }
  3410. return mi.MessageOf(x)
  3411. }
  3412. // Deprecated: Use MemStatus.ProtoReflect.Descriptor instead.
  3413. func (*MemStatus) Descriptor() ([]byte, []int) {
  3414. return file_volume_server_proto_rawDescGZIP(), []int{71}
  3415. }
  3416. func (x *MemStatus) GetGoroutines() int32 {
  3417. if x != nil {
  3418. return x.Goroutines
  3419. }
  3420. return 0
  3421. }
  3422. func (x *MemStatus) GetAll() uint64 {
  3423. if x != nil {
  3424. return x.All
  3425. }
  3426. return 0
  3427. }
  3428. func (x *MemStatus) GetUsed() uint64 {
  3429. if x != nil {
  3430. return x.Used
  3431. }
  3432. return 0
  3433. }
  3434. func (x *MemStatus) GetFree() uint64 {
  3435. if x != nil {
  3436. return x.Free
  3437. }
  3438. return 0
  3439. }
  3440. func (x *MemStatus) GetSelf() uint64 {
  3441. if x != nil {
  3442. return x.Self
  3443. }
  3444. return 0
  3445. }
  3446. func (x *MemStatus) GetHeap() uint64 {
  3447. if x != nil {
  3448. return x.Heap
  3449. }
  3450. return 0
  3451. }
  3452. func (x *MemStatus) GetStack() uint64 {
  3453. if x != nil {
  3454. return x.Stack
  3455. }
  3456. return 0
  3457. }
  3458. // tired storage on volume servers
  3459. type RemoteFile struct {
  3460. state protoimpl.MessageState
  3461. sizeCache protoimpl.SizeCache
  3462. unknownFields protoimpl.UnknownFields
  3463. BackendType string `protobuf:"bytes,1,opt,name=backend_type,json=backendType,proto3" json:"backend_type,omitempty"`
  3464. BackendId string `protobuf:"bytes,2,opt,name=backend_id,json=backendId,proto3" json:"backend_id,omitempty"`
  3465. Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
  3466. Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  3467. FileSize uint64 `protobuf:"varint,5,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
  3468. ModifiedTime uint64 `protobuf:"varint,6,opt,name=modified_time,json=modifiedTime,proto3" json:"modified_time,omitempty"`
  3469. Extension string `protobuf:"bytes,7,opt,name=extension,proto3" json:"extension,omitempty"`
  3470. }
  3471. func (x *RemoteFile) Reset() {
  3472. *x = RemoteFile{}
  3473. if protoimpl.UnsafeEnabled {
  3474. mi := &file_volume_server_proto_msgTypes[72]
  3475. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3476. ms.StoreMessageInfo(mi)
  3477. }
  3478. }
  3479. func (x *RemoteFile) String() string {
  3480. return protoimpl.X.MessageStringOf(x)
  3481. }
  3482. func (*RemoteFile) ProtoMessage() {}
  3483. func (x *RemoteFile) ProtoReflect() protoreflect.Message {
  3484. mi := &file_volume_server_proto_msgTypes[72]
  3485. if protoimpl.UnsafeEnabled && x != nil {
  3486. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3487. if ms.LoadMessageInfo() == nil {
  3488. ms.StoreMessageInfo(mi)
  3489. }
  3490. return ms
  3491. }
  3492. return mi.MessageOf(x)
  3493. }
  3494. // Deprecated: Use RemoteFile.ProtoReflect.Descriptor instead.
  3495. func (*RemoteFile) Descriptor() ([]byte, []int) {
  3496. return file_volume_server_proto_rawDescGZIP(), []int{72}
  3497. }
  3498. func (x *RemoteFile) GetBackendType() string {
  3499. if x != nil {
  3500. return x.BackendType
  3501. }
  3502. return ""
  3503. }
  3504. func (x *RemoteFile) GetBackendId() string {
  3505. if x != nil {
  3506. return x.BackendId
  3507. }
  3508. return ""
  3509. }
  3510. func (x *RemoteFile) GetKey() string {
  3511. if x != nil {
  3512. return x.Key
  3513. }
  3514. return ""
  3515. }
  3516. func (x *RemoteFile) GetOffset() uint64 {
  3517. if x != nil {
  3518. return x.Offset
  3519. }
  3520. return 0
  3521. }
  3522. func (x *RemoteFile) GetFileSize() uint64 {
  3523. if x != nil {
  3524. return x.FileSize
  3525. }
  3526. return 0
  3527. }
  3528. func (x *RemoteFile) GetModifiedTime() uint64 {
  3529. if x != nil {
  3530. return x.ModifiedTime
  3531. }
  3532. return 0
  3533. }
  3534. func (x *RemoteFile) GetExtension() string {
  3535. if x != nil {
  3536. return x.Extension
  3537. }
  3538. return ""
  3539. }
  3540. type VolumeInfo struct {
  3541. state protoimpl.MessageState
  3542. sizeCache protoimpl.SizeCache
  3543. unknownFields protoimpl.UnknownFields
  3544. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
  3545. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
  3546. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  3547. BytesOffset uint32 `protobuf:"varint,4,opt,name=BytesOffset,proto3" json:"BytesOffset,omitempty"`
  3548. }
  3549. func (x *VolumeInfo) Reset() {
  3550. *x = VolumeInfo{}
  3551. if protoimpl.UnsafeEnabled {
  3552. mi := &file_volume_server_proto_msgTypes[73]
  3553. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3554. ms.StoreMessageInfo(mi)
  3555. }
  3556. }
  3557. func (x *VolumeInfo) String() string {
  3558. return protoimpl.X.MessageStringOf(x)
  3559. }
  3560. func (*VolumeInfo) ProtoMessage() {}
  3561. func (x *VolumeInfo) ProtoReflect() protoreflect.Message {
  3562. mi := &file_volume_server_proto_msgTypes[73]
  3563. if protoimpl.UnsafeEnabled && x != nil {
  3564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3565. if ms.LoadMessageInfo() == nil {
  3566. ms.StoreMessageInfo(mi)
  3567. }
  3568. return ms
  3569. }
  3570. return mi.MessageOf(x)
  3571. }
  3572. // Deprecated: Use VolumeInfo.ProtoReflect.Descriptor instead.
  3573. func (*VolumeInfo) Descriptor() ([]byte, []int) {
  3574. return file_volume_server_proto_rawDescGZIP(), []int{73}
  3575. }
  3576. func (x *VolumeInfo) GetFiles() []*RemoteFile {
  3577. if x != nil {
  3578. return x.Files
  3579. }
  3580. return nil
  3581. }
  3582. func (x *VolumeInfo) GetVersion() uint32 {
  3583. if x != nil {
  3584. return x.Version
  3585. }
  3586. return 0
  3587. }
  3588. func (x *VolumeInfo) GetReplication() string {
  3589. if x != nil {
  3590. return x.Replication
  3591. }
  3592. return ""
  3593. }
  3594. func (x *VolumeInfo) GetBytesOffset() uint32 {
  3595. if x != nil {
  3596. return x.BytesOffset
  3597. }
  3598. return 0
  3599. }
  3600. // tiered storage
  3601. type VolumeTierMoveDatToRemoteRequest struct {
  3602. state protoimpl.MessageState
  3603. sizeCache protoimpl.SizeCache
  3604. unknownFields protoimpl.UnknownFields
  3605. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3606. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3607. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName,proto3" json:"destination_backend_name,omitempty"`
  3608. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile,proto3" json:"keep_local_dat_file,omitempty"`
  3609. }
  3610. func (x *VolumeTierMoveDatToRemoteRequest) Reset() {
  3611. *x = VolumeTierMoveDatToRemoteRequest{}
  3612. if protoimpl.UnsafeEnabled {
  3613. mi := &file_volume_server_proto_msgTypes[74]
  3614. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3615. ms.StoreMessageInfo(mi)
  3616. }
  3617. }
  3618. func (x *VolumeTierMoveDatToRemoteRequest) String() string {
  3619. return protoimpl.X.MessageStringOf(x)
  3620. }
  3621. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  3622. func (x *VolumeTierMoveDatToRemoteRequest) ProtoReflect() protoreflect.Message {
  3623. mi := &file_volume_server_proto_msgTypes[74]
  3624. if protoimpl.UnsafeEnabled && x != nil {
  3625. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3626. if ms.LoadMessageInfo() == nil {
  3627. ms.StoreMessageInfo(mi)
  3628. }
  3629. return ms
  3630. }
  3631. return mi.MessageOf(x)
  3632. }
  3633. // Deprecated: Use VolumeTierMoveDatToRemoteRequest.ProtoReflect.Descriptor instead.
  3634. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  3635. return file_volume_server_proto_rawDescGZIP(), []int{74}
  3636. }
  3637. func (x *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  3638. if x != nil {
  3639. return x.VolumeId
  3640. }
  3641. return 0
  3642. }
  3643. func (x *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  3644. if x != nil {
  3645. return x.Collection
  3646. }
  3647. return ""
  3648. }
  3649. func (x *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  3650. if x != nil {
  3651. return x.DestinationBackendName
  3652. }
  3653. return ""
  3654. }
  3655. func (x *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  3656. if x != nil {
  3657. return x.KeepLocalDatFile
  3658. }
  3659. return false
  3660. }
  3661. type VolumeTierMoveDatToRemoteResponse struct {
  3662. state protoimpl.MessageState
  3663. sizeCache protoimpl.SizeCache
  3664. unknownFields protoimpl.UnknownFields
  3665. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3666. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3667. }
  3668. func (x *VolumeTierMoveDatToRemoteResponse) Reset() {
  3669. *x = VolumeTierMoveDatToRemoteResponse{}
  3670. if protoimpl.UnsafeEnabled {
  3671. mi := &file_volume_server_proto_msgTypes[75]
  3672. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3673. ms.StoreMessageInfo(mi)
  3674. }
  3675. }
  3676. func (x *VolumeTierMoveDatToRemoteResponse) String() string {
  3677. return protoimpl.X.MessageStringOf(x)
  3678. }
  3679. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  3680. func (x *VolumeTierMoveDatToRemoteResponse) ProtoReflect() protoreflect.Message {
  3681. mi := &file_volume_server_proto_msgTypes[75]
  3682. if protoimpl.UnsafeEnabled && x != nil {
  3683. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3684. if ms.LoadMessageInfo() == nil {
  3685. ms.StoreMessageInfo(mi)
  3686. }
  3687. return ms
  3688. }
  3689. return mi.MessageOf(x)
  3690. }
  3691. // Deprecated: Use VolumeTierMoveDatToRemoteResponse.ProtoReflect.Descriptor instead.
  3692. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  3693. return file_volume_server_proto_rawDescGZIP(), []int{75}
  3694. }
  3695. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  3696. if x != nil {
  3697. return x.Processed
  3698. }
  3699. return 0
  3700. }
  3701. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  3702. if x != nil {
  3703. return x.ProcessedPercentage
  3704. }
  3705. return 0
  3706. }
  3707. type VolumeTierMoveDatFromRemoteRequest struct {
  3708. state protoimpl.MessageState
  3709. sizeCache protoimpl.SizeCache
  3710. unknownFields protoimpl.UnknownFields
  3711. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3712. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3713. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile,proto3" json:"keep_remote_dat_file,omitempty"`
  3714. }
  3715. func (x *VolumeTierMoveDatFromRemoteRequest) Reset() {
  3716. *x = VolumeTierMoveDatFromRemoteRequest{}
  3717. if protoimpl.UnsafeEnabled {
  3718. mi := &file_volume_server_proto_msgTypes[76]
  3719. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3720. ms.StoreMessageInfo(mi)
  3721. }
  3722. }
  3723. func (x *VolumeTierMoveDatFromRemoteRequest) String() string {
  3724. return protoimpl.X.MessageStringOf(x)
  3725. }
  3726. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  3727. func (x *VolumeTierMoveDatFromRemoteRequest) ProtoReflect() protoreflect.Message {
  3728. mi := &file_volume_server_proto_msgTypes[76]
  3729. if protoimpl.UnsafeEnabled && x != nil {
  3730. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3731. if ms.LoadMessageInfo() == nil {
  3732. ms.StoreMessageInfo(mi)
  3733. }
  3734. return ms
  3735. }
  3736. return mi.MessageOf(x)
  3737. }
  3738. // Deprecated: Use VolumeTierMoveDatFromRemoteRequest.ProtoReflect.Descriptor instead.
  3739. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  3740. return file_volume_server_proto_rawDescGZIP(), []int{76}
  3741. }
  3742. func (x *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  3743. if x != nil {
  3744. return x.VolumeId
  3745. }
  3746. return 0
  3747. }
  3748. func (x *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  3749. if x != nil {
  3750. return x.Collection
  3751. }
  3752. return ""
  3753. }
  3754. func (x *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  3755. if x != nil {
  3756. return x.KeepRemoteDatFile
  3757. }
  3758. return false
  3759. }
  3760. type VolumeTierMoveDatFromRemoteResponse struct {
  3761. state protoimpl.MessageState
  3762. sizeCache protoimpl.SizeCache
  3763. unknownFields protoimpl.UnknownFields
  3764. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3765. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3766. }
  3767. func (x *VolumeTierMoveDatFromRemoteResponse) Reset() {
  3768. *x = VolumeTierMoveDatFromRemoteResponse{}
  3769. if protoimpl.UnsafeEnabled {
  3770. mi := &file_volume_server_proto_msgTypes[77]
  3771. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3772. ms.StoreMessageInfo(mi)
  3773. }
  3774. }
  3775. func (x *VolumeTierMoveDatFromRemoteResponse) String() string {
  3776. return protoimpl.X.MessageStringOf(x)
  3777. }
  3778. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  3779. func (x *VolumeTierMoveDatFromRemoteResponse) ProtoReflect() protoreflect.Message {
  3780. mi := &file_volume_server_proto_msgTypes[77]
  3781. if protoimpl.UnsafeEnabled && x != nil {
  3782. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3783. if ms.LoadMessageInfo() == nil {
  3784. ms.StoreMessageInfo(mi)
  3785. }
  3786. return ms
  3787. }
  3788. return mi.MessageOf(x)
  3789. }
  3790. // Deprecated: Use VolumeTierMoveDatFromRemoteResponse.ProtoReflect.Descriptor instead.
  3791. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  3792. return file_volume_server_proto_rawDescGZIP(), []int{77}
  3793. }
  3794. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  3795. if x != nil {
  3796. return x.Processed
  3797. }
  3798. return 0
  3799. }
  3800. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  3801. if x != nil {
  3802. return x.ProcessedPercentage
  3803. }
  3804. return 0
  3805. }
  3806. type VolumeServerStatusRequest struct {
  3807. state protoimpl.MessageState
  3808. sizeCache protoimpl.SizeCache
  3809. unknownFields protoimpl.UnknownFields
  3810. }
  3811. func (x *VolumeServerStatusRequest) Reset() {
  3812. *x = VolumeServerStatusRequest{}
  3813. if protoimpl.UnsafeEnabled {
  3814. mi := &file_volume_server_proto_msgTypes[78]
  3815. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3816. ms.StoreMessageInfo(mi)
  3817. }
  3818. }
  3819. func (x *VolumeServerStatusRequest) String() string {
  3820. return protoimpl.X.MessageStringOf(x)
  3821. }
  3822. func (*VolumeServerStatusRequest) ProtoMessage() {}
  3823. func (x *VolumeServerStatusRequest) ProtoReflect() protoreflect.Message {
  3824. mi := &file_volume_server_proto_msgTypes[78]
  3825. if protoimpl.UnsafeEnabled && x != nil {
  3826. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3827. if ms.LoadMessageInfo() == nil {
  3828. ms.StoreMessageInfo(mi)
  3829. }
  3830. return ms
  3831. }
  3832. return mi.MessageOf(x)
  3833. }
  3834. // Deprecated: Use VolumeServerStatusRequest.ProtoReflect.Descriptor instead.
  3835. func (*VolumeServerStatusRequest) Descriptor() ([]byte, []int) {
  3836. return file_volume_server_proto_rawDescGZIP(), []int{78}
  3837. }
  3838. type VolumeServerStatusResponse struct {
  3839. state protoimpl.MessageState
  3840. sizeCache protoimpl.SizeCache
  3841. unknownFields protoimpl.UnknownFields
  3842. DiskStatuses []*DiskStatus `protobuf:"bytes,1,rep,name=disk_statuses,json=diskStatuses,proto3" json:"disk_statuses,omitempty"`
  3843. MemoryStatus *MemStatus `protobuf:"bytes,2,opt,name=memory_status,json=memoryStatus,proto3" json:"memory_status,omitempty"`
  3844. Version string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
  3845. DataCenter string `protobuf:"bytes,4,opt,name=data_center,json=dataCenter,proto3" json:"data_center,omitempty"`
  3846. Rack string `protobuf:"bytes,5,opt,name=rack,proto3" json:"rack,omitempty"`
  3847. }
  3848. func (x *VolumeServerStatusResponse) Reset() {
  3849. *x = VolumeServerStatusResponse{}
  3850. if protoimpl.UnsafeEnabled {
  3851. mi := &file_volume_server_proto_msgTypes[79]
  3852. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3853. ms.StoreMessageInfo(mi)
  3854. }
  3855. }
  3856. func (x *VolumeServerStatusResponse) String() string {
  3857. return protoimpl.X.MessageStringOf(x)
  3858. }
  3859. func (*VolumeServerStatusResponse) ProtoMessage() {}
  3860. func (x *VolumeServerStatusResponse) ProtoReflect() protoreflect.Message {
  3861. mi := &file_volume_server_proto_msgTypes[79]
  3862. if protoimpl.UnsafeEnabled && x != nil {
  3863. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3864. if ms.LoadMessageInfo() == nil {
  3865. ms.StoreMessageInfo(mi)
  3866. }
  3867. return ms
  3868. }
  3869. return mi.MessageOf(x)
  3870. }
  3871. // Deprecated: Use VolumeServerStatusResponse.ProtoReflect.Descriptor instead.
  3872. func (*VolumeServerStatusResponse) Descriptor() ([]byte, []int) {
  3873. return file_volume_server_proto_rawDescGZIP(), []int{79}
  3874. }
  3875. func (x *VolumeServerStatusResponse) GetDiskStatuses() []*DiskStatus {
  3876. if x != nil {
  3877. return x.DiskStatuses
  3878. }
  3879. return nil
  3880. }
  3881. func (x *VolumeServerStatusResponse) GetMemoryStatus() *MemStatus {
  3882. if x != nil {
  3883. return x.MemoryStatus
  3884. }
  3885. return nil
  3886. }
  3887. func (x *VolumeServerStatusResponse) GetVersion() string {
  3888. if x != nil {
  3889. return x.Version
  3890. }
  3891. return ""
  3892. }
  3893. func (x *VolumeServerStatusResponse) GetDataCenter() string {
  3894. if x != nil {
  3895. return x.DataCenter
  3896. }
  3897. return ""
  3898. }
  3899. func (x *VolumeServerStatusResponse) GetRack() string {
  3900. if x != nil {
  3901. return x.Rack
  3902. }
  3903. return ""
  3904. }
  3905. type VolumeServerLeaveRequest struct {
  3906. state protoimpl.MessageState
  3907. sizeCache protoimpl.SizeCache
  3908. unknownFields protoimpl.UnknownFields
  3909. }
  3910. func (x *VolumeServerLeaveRequest) Reset() {
  3911. *x = VolumeServerLeaveRequest{}
  3912. if protoimpl.UnsafeEnabled {
  3913. mi := &file_volume_server_proto_msgTypes[80]
  3914. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3915. ms.StoreMessageInfo(mi)
  3916. }
  3917. }
  3918. func (x *VolumeServerLeaveRequest) String() string {
  3919. return protoimpl.X.MessageStringOf(x)
  3920. }
  3921. func (*VolumeServerLeaveRequest) ProtoMessage() {}
  3922. func (x *VolumeServerLeaveRequest) ProtoReflect() protoreflect.Message {
  3923. mi := &file_volume_server_proto_msgTypes[80]
  3924. if protoimpl.UnsafeEnabled && x != nil {
  3925. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3926. if ms.LoadMessageInfo() == nil {
  3927. ms.StoreMessageInfo(mi)
  3928. }
  3929. return ms
  3930. }
  3931. return mi.MessageOf(x)
  3932. }
  3933. // Deprecated: Use VolumeServerLeaveRequest.ProtoReflect.Descriptor instead.
  3934. func (*VolumeServerLeaveRequest) Descriptor() ([]byte, []int) {
  3935. return file_volume_server_proto_rawDescGZIP(), []int{80}
  3936. }
  3937. type VolumeServerLeaveResponse struct {
  3938. state protoimpl.MessageState
  3939. sizeCache protoimpl.SizeCache
  3940. unknownFields protoimpl.UnknownFields
  3941. }
  3942. func (x *VolumeServerLeaveResponse) Reset() {
  3943. *x = VolumeServerLeaveResponse{}
  3944. if protoimpl.UnsafeEnabled {
  3945. mi := &file_volume_server_proto_msgTypes[81]
  3946. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3947. ms.StoreMessageInfo(mi)
  3948. }
  3949. }
  3950. func (x *VolumeServerLeaveResponse) String() string {
  3951. return protoimpl.X.MessageStringOf(x)
  3952. }
  3953. func (*VolumeServerLeaveResponse) ProtoMessage() {}
  3954. func (x *VolumeServerLeaveResponse) ProtoReflect() protoreflect.Message {
  3955. mi := &file_volume_server_proto_msgTypes[81]
  3956. if protoimpl.UnsafeEnabled && x != nil {
  3957. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3958. if ms.LoadMessageInfo() == nil {
  3959. ms.StoreMessageInfo(mi)
  3960. }
  3961. return ms
  3962. }
  3963. return mi.MessageOf(x)
  3964. }
  3965. // Deprecated: Use VolumeServerLeaveResponse.ProtoReflect.Descriptor instead.
  3966. func (*VolumeServerLeaveResponse) Descriptor() ([]byte, []int) {
  3967. return file_volume_server_proto_rawDescGZIP(), []int{81}
  3968. }
  3969. // remote storage
  3970. type FetchAndWriteNeedleRequest struct {
  3971. state protoimpl.MessageState
  3972. sizeCache protoimpl.SizeCache
  3973. unknownFields protoimpl.UnknownFields
  3974. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3975. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3976. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  3977. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  3978. Size int64 `protobuf:"varint,5,opt,name=size,proto3" json:"size,omitempty"`
  3979. Replicas []*FetchAndWriteNeedleRequest_Replica `protobuf:"bytes,6,rep,name=replicas,proto3" json:"replicas,omitempty"`
  3980. Auth string `protobuf:"bytes,7,opt,name=auth,proto3" json:"auth,omitempty"`
  3981. // remote conf
  3982. RemoteConf *remote_pb.RemoteConf `protobuf:"bytes,15,opt,name=remote_conf,json=remoteConf,proto3" json:"remote_conf,omitempty"`
  3983. RemoteLocation *remote_pb.RemoteStorageLocation `protobuf:"bytes,16,opt,name=remote_location,json=remoteLocation,proto3" json:"remote_location,omitempty"`
  3984. }
  3985. func (x *FetchAndWriteNeedleRequest) Reset() {
  3986. *x = FetchAndWriteNeedleRequest{}
  3987. if protoimpl.UnsafeEnabled {
  3988. mi := &file_volume_server_proto_msgTypes[82]
  3989. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3990. ms.StoreMessageInfo(mi)
  3991. }
  3992. }
  3993. func (x *FetchAndWriteNeedleRequest) String() string {
  3994. return protoimpl.X.MessageStringOf(x)
  3995. }
  3996. func (*FetchAndWriteNeedleRequest) ProtoMessage() {}
  3997. func (x *FetchAndWriteNeedleRequest) ProtoReflect() protoreflect.Message {
  3998. mi := &file_volume_server_proto_msgTypes[82]
  3999. if protoimpl.UnsafeEnabled && x != nil {
  4000. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4001. if ms.LoadMessageInfo() == nil {
  4002. ms.StoreMessageInfo(mi)
  4003. }
  4004. return ms
  4005. }
  4006. return mi.MessageOf(x)
  4007. }
  4008. // Deprecated: Use FetchAndWriteNeedleRequest.ProtoReflect.Descriptor instead.
  4009. func (*FetchAndWriteNeedleRequest) Descriptor() ([]byte, []int) {
  4010. return file_volume_server_proto_rawDescGZIP(), []int{82}
  4011. }
  4012. func (x *FetchAndWriteNeedleRequest) GetVolumeId() uint32 {
  4013. if x != nil {
  4014. return x.VolumeId
  4015. }
  4016. return 0
  4017. }
  4018. func (x *FetchAndWriteNeedleRequest) GetNeedleId() uint64 {
  4019. if x != nil {
  4020. return x.NeedleId
  4021. }
  4022. return 0
  4023. }
  4024. func (x *FetchAndWriteNeedleRequest) GetCookie() uint32 {
  4025. if x != nil {
  4026. return x.Cookie
  4027. }
  4028. return 0
  4029. }
  4030. func (x *FetchAndWriteNeedleRequest) GetOffset() int64 {
  4031. if x != nil {
  4032. return x.Offset
  4033. }
  4034. return 0
  4035. }
  4036. func (x *FetchAndWriteNeedleRequest) GetSize() int64 {
  4037. if x != nil {
  4038. return x.Size
  4039. }
  4040. return 0
  4041. }
  4042. func (x *FetchAndWriteNeedleRequest) GetReplicas() []*FetchAndWriteNeedleRequest_Replica {
  4043. if x != nil {
  4044. return x.Replicas
  4045. }
  4046. return nil
  4047. }
  4048. func (x *FetchAndWriteNeedleRequest) GetAuth() string {
  4049. if x != nil {
  4050. return x.Auth
  4051. }
  4052. return ""
  4053. }
  4054. func (x *FetchAndWriteNeedleRequest) GetRemoteConf() *remote_pb.RemoteConf {
  4055. if x != nil {
  4056. return x.RemoteConf
  4057. }
  4058. return nil
  4059. }
  4060. func (x *FetchAndWriteNeedleRequest) GetRemoteLocation() *remote_pb.RemoteStorageLocation {
  4061. if x != nil {
  4062. return x.RemoteLocation
  4063. }
  4064. return nil
  4065. }
  4066. type FetchAndWriteNeedleResponse struct {
  4067. state protoimpl.MessageState
  4068. sizeCache protoimpl.SizeCache
  4069. unknownFields protoimpl.UnknownFields
  4070. ETag string `protobuf:"bytes,1,opt,name=e_tag,json=eTag,proto3" json:"e_tag,omitempty"`
  4071. }
  4072. func (x *FetchAndWriteNeedleResponse) Reset() {
  4073. *x = FetchAndWriteNeedleResponse{}
  4074. if protoimpl.UnsafeEnabled {
  4075. mi := &file_volume_server_proto_msgTypes[83]
  4076. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4077. ms.StoreMessageInfo(mi)
  4078. }
  4079. }
  4080. func (x *FetchAndWriteNeedleResponse) String() string {
  4081. return protoimpl.X.MessageStringOf(x)
  4082. }
  4083. func (*FetchAndWriteNeedleResponse) ProtoMessage() {}
  4084. func (x *FetchAndWriteNeedleResponse) ProtoReflect() protoreflect.Message {
  4085. mi := &file_volume_server_proto_msgTypes[83]
  4086. if protoimpl.UnsafeEnabled && x != nil {
  4087. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4088. if ms.LoadMessageInfo() == nil {
  4089. ms.StoreMessageInfo(mi)
  4090. }
  4091. return ms
  4092. }
  4093. return mi.MessageOf(x)
  4094. }
  4095. // Deprecated: Use FetchAndWriteNeedleResponse.ProtoReflect.Descriptor instead.
  4096. func (*FetchAndWriteNeedleResponse) Descriptor() ([]byte, []int) {
  4097. return file_volume_server_proto_rawDescGZIP(), []int{83}
  4098. }
  4099. func (x *FetchAndWriteNeedleResponse) GetETag() string {
  4100. if x != nil {
  4101. return x.ETag
  4102. }
  4103. return ""
  4104. }
  4105. // select on volume servers
  4106. type QueryRequest struct {
  4107. state protoimpl.MessageState
  4108. sizeCache protoimpl.SizeCache
  4109. unknownFields protoimpl.UnknownFields
  4110. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  4111. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  4112. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  4113. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  4114. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  4115. }
  4116. func (x *QueryRequest) Reset() {
  4117. *x = QueryRequest{}
  4118. if protoimpl.UnsafeEnabled {
  4119. mi := &file_volume_server_proto_msgTypes[84]
  4120. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4121. ms.StoreMessageInfo(mi)
  4122. }
  4123. }
  4124. func (x *QueryRequest) String() string {
  4125. return protoimpl.X.MessageStringOf(x)
  4126. }
  4127. func (*QueryRequest) ProtoMessage() {}
  4128. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  4129. mi := &file_volume_server_proto_msgTypes[84]
  4130. if protoimpl.UnsafeEnabled && x != nil {
  4131. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4132. if ms.LoadMessageInfo() == nil {
  4133. ms.StoreMessageInfo(mi)
  4134. }
  4135. return ms
  4136. }
  4137. return mi.MessageOf(x)
  4138. }
  4139. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  4140. func (*QueryRequest) Descriptor() ([]byte, []int) {
  4141. return file_volume_server_proto_rawDescGZIP(), []int{84}
  4142. }
  4143. func (x *QueryRequest) GetSelections() []string {
  4144. if x != nil {
  4145. return x.Selections
  4146. }
  4147. return nil
  4148. }
  4149. func (x *QueryRequest) GetFromFileIds() []string {
  4150. if x != nil {
  4151. return x.FromFileIds
  4152. }
  4153. return nil
  4154. }
  4155. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  4156. if x != nil {
  4157. return x.Filter
  4158. }
  4159. return nil
  4160. }
  4161. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  4162. if x != nil {
  4163. return x.InputSerialization
  4164. }
  4165. return nil
  4166. }
  4167. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  4168. if x != nil {
  4169. return x.OutputSerialization
  4170. }
  4171. return nil
  4172. }
  4173. type QueriedStripe struct {
  4174. state protoimpl.MessageState
  4175. sizeCache protoimpl.SizeCache
  4176. unknownFields protoimpl.UnknownFields
  4177. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  4178. }
  4179. func (x *QueriedStripe) Reset() {
  4180. *x = QueriedStripe{}
  4181. if protoimpl.UnsafeEnabled {
  4182. mi := &file_volume_server_proto_msgTypes[85]
  4183. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4184. ms.StoreMessageInfo(mi)
  4185. }
  4186. }
  4187. func (x *QueriedStripe) String() string {
  4188. return protoimpl.X.MessageStringOf(x)
  4189. }
  4190. func (*QueriedStripe) ProtoMessage() {}
  4191. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  4192. mi := &file_volume_server_proto_msgTypes[85]
  4193. if protoimpl.UnsafeEnabled && x != nil {
  4194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4195. if ms.LoadMessageInfo() == nil {
  4196. ms.StoreMessageInfo(mi)
  4197. }
  4198. return ms
  4199. }
  4200. return mi.MessageOf(x)
  4201. }
  4202. // Deprecated: Use QueriedStripe.ProtoReflect.Descriptor instead.
  4203. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  4204. return file_volume_server_proto_rawDescGZIP(), []int{85}
  4205. }
  4206. func (x *QueriedStripe) GetRecords() []byte {
  4207. if x != nil {
  4208. return x.Records
  4209. }
  4210. return nil
  4211. }
  4212. type VolumeNeedleStatusRequest struct {
  4213. state protoimpl.MessageState
  4214. sizeCache protoimpl.SizeCache
  4215. unknownFields protoimpl.UnknownFields
  4216. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  4217. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4218. }
  4219. func (x *VolumeNeedleStatusRequest) Reset() {
  4220. *x = VolumeNeedleStatusRequest{}
  4221. if protoimpl.UnsafeEnabled {
  4222. mi := &file_volume_server_proto_msgTypes[86]
  4223. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4224. ms.StoreMessageInfo(mi)
  4225. }
  4226. }
  4227. func (x *VolumeNeedleStatusRequest) String() string {
  4228. return protoimpl.X.MessageStringOf(x)
  4229. }
  4230. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  4231. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  4232. mi := &file_volume_server_proto_msgTypes[86]
  4233. if protoimpl.UnsafeEnabled && x != nil {
  4234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4235. if ms.LoadMessageInfo() == nil {
  4236. ms.StoreMessageInfo(mi)
  4237. }
  4238. return ms
  4239. }
  4240. return mi.MessageOf(x)
  4241. }
  4242. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  4243. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  4244. return file_volume_server_proto_rawDescGZIP(), []int{86}
  4245. }
  4246. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  4247. if x != nil {
  4248. return x.VolumeId
  4249. }
  4250. return 0
  4251. }
  4252. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  4253. if x != nil {
  4254. return x.NeedleId
  4255. }
  4256. return 0
  4257. }
  4258. type VolumeNeedleStatusResponse struct {
  4259. state protoimpl.MessageState
  4260. sizeCache protoimpl.SizeCache
  4261. unknownFields protoimpl.UnknownFields
  4262. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4263. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  4264. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  4265. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  4266. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  4267. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  4268. }
  4269. func (x *VolumeNeedleStatusResponse) Reset() {
  4270. *x = VolumeNeedleStatusResponse{}
  4271. if protoimpl.UnsafeEnabled {
  4272. mi := &file_volume_server_proto_msgTypes[87]
  4273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4274. ms.StoreMessageInfo(mi)
  4275. }
  4276. }
  4277. func (x *VolumeNeedleStatusResponse) String() string {
  4278. return protoimpl.X.MessageStringOf(x)
  4279. }
  4280. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  4281. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  4282. mi := &file_volume_server_proto_msgTypes[87]
  4283. if protoimpl.UnsafeEnabled && x != nil {
  4284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4285. if ms.LoadMessageInfo() == nil {
  4286. ms.StoreMessageInfo(mi)
  4287. }
  4288. return ms
  4289. }
  4290. return mi.MessageOf(x)
  4291. }
  4292. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  4293. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  4294. return file_volume_server_proto_rawDescGZIP(), []int{87}
  4295. }
  4296. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  4297. if x != nil {
  4298. return x.NeedleId
  4299. }
  4300. return 0
  4301. }
  4302. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  4303. if x != nil {
  4304. return x.Cookie
  4305. }
  4306. return 0
  4307. }
  4308. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  4309. if x != nil {
  4310. return x.Size
  4311. }
  4312. return 0
  4313. }
  4314. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  4315. if x != nil {
  4316. return x.LastModified
  4317. }
  4318. return 0
  4319. }
  4320. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  4321. if x != nil {
  4322. return x.Crc
  4323. }
  4324. return 0
  4325. }
  4326. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  4327. if x != nil {
  4328. return x.Ttl
  4329. }
  4330. return ""
  4331. }
  4332. type PingRequest struct {
  4333. state protoimpl.MessageState
  4334. sizeCache protoimpl.SizeCache
  4335. unknownFields protoimpl.UnknownFields
  4336. Target string `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"` // default to ping itself
  4337. TargetType string `protobuf:"bytes,2,opt,name=target_type,json=targetType,proto3" json:"target_type,omitempty"`
  4338. }
  4339. func (x *PingRequest) Reset() {
  4340. *x = PingRequest{}
  4341. if protoimpl.UnsafeEnabled {
  4342. mi := &file_volume_server_proto_msgTypes[88]
  4343. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4344. ms.StoreMessageInfo(mi)
  4345. }
  4346. }
  4347. func (x *PingRequest) String() string {
  4348. return protoimpl.X.MessageStringOf(x)
  4349. }
  4350. func (*PingRequest) ProtoMessage() {}
  4351. func (x *PingRequest) ProtoReflect() protoreflect.Message {
  4352. mi := &file_volume_server_proto_msgTypes[88]
  4353. if protoimpl.UnsafeEnabled && x != nil {
  4354. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4355. if ms.LoadMessageInfo() == nil {
  4356. ms.StoreMessageInfo(mi)
  4357. }
  4358. return ms
  4359. }
  4360. return mi.MessageOf(x)
  4361. }
  4362. // Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.
  4363. func (*PingRequest) Descriptor() ([]byte, []int) {
  4364. return file_volume_server_proto_rawDescGZIP(), []int{88}
  4365. }
  4366. func (x *PingRequest) GetTarget() string {
  4367. if x != nil {
  4368. return x.Target
  4369. }
  4370. return ""
  4371. }
  4372. func (x *PingRequest) GetTargetType() string {
  4373. if x != nil {
  4374. return x.TargetType
  4375. }
  4376. return ""
  4377. }
  4378. type PingResponse struct {
  4379. state protoimpl.MessageState
  4380. sizeCache protoimpl.SizeCache
  4381. unknownFields protoimpl.UnknownFields
  4382. StartTimeNs int64 `protobuf:"varint,1,opt,name=start_time_ns,json=startTimeNs,proto3" json:"start_time_ns,omitempty"`
  4383. RemoteTimeNs int64 `protobuf:"varint,2,opt,name=remote_time_ns,json=remoteTimeNs,proto3" json:"remote_time_ns,omitempty"`
  4384. StopTimeNs int64 `protobuf:"varint,3,opt,name=stop_time_ns,json=stopTimeNs,proto3" json:"stop_time_ns,omitempty"`
  4385. }
  4386. func (x *PingResponse) Reset() {
  4387. *x = PingResponse{}
  4388. if protoimpl.UnsafeEnabled {
  4389. mi := &file_volume_server_proto_msgTypes[89]
  4390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4391. ms.StoreMessageInfo(mi)
  4392. }
  4393. }
  4394. func (x *PingResponse) String() string {
  4395. return protoimpl.X.MessageStringOf(x)
  4396. }
  4397. func (*PingResponse) ProtoMessage() {}
  4398. func (x *PingResponse) ProtoReflect() protoreflect.Message {
  4399. mi := &file_volume_server_proto_msgTypes[89]
  4400. if protoimpl.UnsafeEnabled && x != nil {
  4401. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4402. if ms.LoadMessageInfo() == nil {
  4403. ms.StoreMessageInfo(mi)
  4404. }
  4405. return ms
  4406. }
  4407. return mi.MessageOf(x)
  4408. }
  4409. // Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.
  4410. func (*PingResponse) Descriptor() ([]byte, []int) {
  4411. return file_volume_server_proto_rawDescGZIP(), []int{89}
  4412. }
  4413. func (x *PingResponse) GetStartTimeNs() int64 {
  4414. if x != nil {
  4415. return x.StartTimeNs
  4416. }
  4417. return 0
  4418. }
  4419. func (x *PingResponse) GetRemoteTimeNs() int64 {
  4420. if x != nil {
  4421. return x.RemoteTimeNs
  4422. }
  4423. return 0
  4424. }
  4425. func (x *PingResponse) GetStopTimeNs() int64 {
  4426. if x != nil {
  4427. return x.StopTimeNs
  4428. }
  4429. return 0
  4430. }
  4431. type FetchAndWriteNeedleRequest_Replica struct {
  4432. state protoimpl.MessageState
  4433. sizeCache protoimpl.SizeCache
  4434. unknownFields protoimpl.UnknownFields
  4435. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  4436. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl,proto3" json:"public_url,omitempty"`
  4437. GrpcPort int32 `protobuf:"varint,3,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
  4438. }
  4439. func (x *FetchAndWriteNeedleRequest_Replica) Reset() {
  4440. *x = FetchAndWriteNeedleRequest_Replica{}
  4441. if protoimpl.UnsafeEnabled {
  4442. mi := &file_volume_server_proto_msgTypes[90]
  4443. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4444. ms.StoreMessageInfo(mi)
  4445. }
  4446. }
  4447. func (x *FetchAndWriteNeedleRequest_Replica) String() string {
  4448. return protoimpl.X.MessageStringOf(x)
  4449. }
  4450. func (*FetchAndWriteNeedleRequest_Replica) ProtoMessage() {}
  4451. func (x *FetchAndWriteNeedleRequest_Replica) ProtoReflect() protoreflect.Message {
  4452. mi := &file_volume_server_proto_msgTypes[90]
  4453. if protoimpl.UnsafeEnabled && x != nil {
  4454. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4455. if ms.LoadMessageInfo() == nil {
  4456. ms.StoreMessageInfo(mi)
  4457. }
  4458. return ms
  4459. }
  4460. return mi.MessageOf(x)
  4461. }
  4462. // Deprecated: Use FetchAndWriteNeedleRequest_Replica.ProtoReflect.Descriptor instead.
  4463. func (*FetchAndWriteNeedleRequest_Replica) Descriptor() ([]byte, []int) {
  4464. return file_volume_server_proto_rawDescGZIP(), []int{82, 0}
  4465. }
  4466. func (x *FetchAndWriteNeedleRequest_Replica) GetUrl() string {
  4467. if x != nil {
  4468. return x.Url
  4469. }
  4470. return ""
  4471. }
  4472. func (x *FetchAndWriteNeedleRequest_Replica) GetPublicUrl() string {
  4473. if x != nil {
  4474. return x.PublicUrl
  4475. }
  4476. return ""
  4477. }
  4478. func (x *FetchAndWriteNeedleRequest_Replica) GetGrpcPort() int32 {
  4479. if x != nil {
  4480. return x.GrpcPort
  4481. }
  4482. return 0
  4483. }
  4484. type QueryRequest_Filter struct {
  4485. state protoimpl.MessageState
  4486. sizeCache protoimpl.SizeCache
  4487. unknownFields protoimpl.UnknownFields
  4488. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  4489. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  4490. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  4491. }
  4492. func (x *QueryRequest_Filter) Reset() {
  4493. *x = QueryRequest_Filter{}
  4494. if protoimpl.UnsafeEnabled {
  4495. mi := &file_volume_server_proto_msgTypes[91]
  4496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4497. ms.StoreMessageInfo(mi)
  4498. }
  4499. }
  4500. func (x *QueryRequest_Filter) String() string {
  4501. return protoimpl.X.MessageStringOf(x)
  4502. }
  4503. func (*QueryRequest_Filter) ProtoMessage() {}
  4504. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  4505. mi := &file_volume_server_proto_msgTypes[91]
  4506. if protoimpl.UnsafeEnabled && x != nil {
  4507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4508. if ms.LoadMessageInfo() == nil {
  4509. ms.StoreMessageInfo(mi)
  4510. }
  4511. return ms
  4512. }
  4513. return mi.MessageOf(x)
  4514. }
  4515. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  4516. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  4517. return file_volume_server_proto_rawDescGZIP(), []int{84, 0}
  4518. }
  4519. func (x *QueryRequest_Filter) GetField() string {
  4520. if x != nil {
  4521. return x.Field
  4522. }
  4523. return ""
  4524. }
  4525. func (x *QueryRequest_Filter) GetOperand() string {
  4526. if x != nil {
  4527. return x.Operand
  4528. }
  4529. return ""
  4530. }
  4531. func (x *QueryRequest_Filter) GetValue() string {
  4532. if x != nil {
  4533. return x.Value
  4534. }
  4535. return ""
  4536. }
  4537. type QueryRequest_InputSerialization struct {
  4538. state protoimpl.MessageState
  4539. sizeCache protoimpl.SizeCache
  4540. unknownFields protoimpl.UnknownFields
  4541. // NONE | GZIP | BZIP2
  4542. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  4543. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  4544. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  4545. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  4546. }
  4547. func (x *QueryRequest_InputSerialization) Reset() {
  4548. *x = QueryRequest_InputSerialization{}
  4549. if protoimpl.UnsafeEnabled {
  4550. mi := &file_volume_server_proto_msgTypes[92]
  4551. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4552. ms.StoreMessageInfo(mi)
  4553. }
  4554. }
  4555. func (x *QueryRequest_InputSerialization) String() string {
  4556. return protoimpl.X.MessageStringOf(x)
  4557. }
  4558. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  4559. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  4560. mi := &file_volume_server_proto_msgTypes[92]
  4561. if protoimpl.UnsafeEnabled && x != nil {
  4562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4563. if ms.LoadMessageInfo() == nil {
  4564. ms.StoreMessageInfo(mi)
  4565. }
  4566. return ms
  4567. }
  4568. return mi.MessageOf(x)
  4569. }
  4570. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  4571. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  4572. return file_volume_server_proto_rawDescGZIP(), []int{84, 1}
  4573. }
  4574. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  4575. if x != nil {
  4576. return x.CompressionType
  4577. }
  4578. return ""
  4579. }
  4580. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  4581. if x != nil {
  4582. return x.CsvInput
  4583. }
  4584. return nil
  4585. }
  4586. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  4587. if x != nil {
  4588. return x.JsonInput
  4589. }
  4590. return nil
  4591. }
  4592. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  4593. if x != nil {
  4594. return x.ParquetInput
  4595. }
  4596. return nil
  4597. }
  4598. type QueryRequest_OutputSerialization struct {
  4599. state protoimpl.MessageState
  4600. sizeCache protoimpl.SizeCache
  4601. unknownFields protoimpl.UnknownFields
  4602. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  4603. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  4604. }
  4605. func (x *QueryRequest_OutputSerialization) Reset() {
  4606. *x = QueryRequest_OutputSerialization{}
  4607. if protoimpl.UnsafeEnabled {
  4608. mi := &file_volume_server_proto_msgTypes[93]
  4609. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4610. ms.StoreMessageInfo(mi)
  4611. }
  4612. }
  4613. func (x *QueryRequest_OutputSerialization) String() string {
  4614. return protoimpl.X.MessageStringOf(x)
  4615. }
  4616. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  4617. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  4618. mi := &file_volume_server_proto_msgTypes[93]
  4619. if protoimpl.UnsafeEnabled && x != nil {
  4620. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4621. if ms.LoadMessageInfo() == nil {
  4622. ms.StoreMessageInfo(mi)
  4623. }
  4624. return ms
  4625. }
  4626. return mi.MessageOf(x)
  4627. }
  4628. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  4629. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  4630. return file_volume_server_proto_rawDescGZIP(), []int{84, 2}
  4631. }
  4632. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  4633. if x != nil {
  4634. return x.CsvOutput
  4635. }
  4636. return nil
  4637. }
  4638. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  4639. if x != nil {
  4640. return x.JsonOutput
  4641. }
  4642. return nil
  4643. }
  4644. type QueryRequest_InputSerialization_CSVInput struct {
  4645. state protoimpl.MessageState
  4646. sizeCache protoimpl.SizeCache
  4647. unknownFields protoimpl.UnknownFields
  4648. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  4649. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4650. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4651. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4652. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4653. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  4654. // If true, records might contain record delimiters within quote characters
  4655. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  4656. }
  4657. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  4658. *x = QueryRequest_InputSerialization_CSVInput{}
  4659. if protoimpl.UnsafeEnabled {
  4660. mi := &file_volume_server_proto_msgTypes[94]
  4661. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4662. ms.StoreMessageInfo(mi)
  4663. }
  4664. }
  4665. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  4666. return protoimpl.X.MessageStringOf(x)
  4667. }
  4668. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  4669. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  4670. mi := &file_volume_server_proto_msgTypes[94]
  4671. if protoimpl.UnsafeEnabled && x != nil {
  4672. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4673. if ms.LoadMessageInfo() == nil {
  4674. ms.StoreMessageInfo(mi)
  4675. }
  4676. return ms
  4677. }
  4678. return mi.MessageOf(x)
  4679. }
  4680. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  4681. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  4682. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 0}
  4683. }
  4684. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  4685. if x != nil {
  4686. return x.FileHeaderInfo
  4687. }
  4688. return ""
  4689. }
  4690. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  4691. if x != nil {
  4692. return x.RecordDelimiter
  4693. }
  4694. return ""
  4695. }
  4696. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  4697. if x != nil {
  4698. return x.FieldDelimiter
  4699. }
  4700. return ""
  4701. }
  4702. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharacter() string {
  4703. if x != nil {
  4704. return x.QuoteCharacter
  4705. }
  4706. return ""
  4707. }
  4708. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  4709. if x != nil {
  4710. return x.QuoteEscapeCharacter
  4711. }
  4712. return ""
  4713. }
  4714. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  4715. if x != nil {
  4716. return x.Comments
  4717. }
  4718. return ""
  4719. }
  4720. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  4721. if x != nil {
  4722. return x.AllowQuotedRecordDelimiter
  4723. }
  4724. return false
  4725. }
  4726. type QueryRequest_InputSerialization_JSONInput struct {
  4727. state protoimpl.MessageState
  4728. sizeCache protoimpl.SizeCache
  4729. unknownFields protoimpl.UnknownFields
  4730. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  4731. }
  4732. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  4733. *x = QueryRequest_InputSerialization_JSONInput{}
  4734. if protoimpl.UnsafeEnabled {
  4735. mi := &file_volume_server_proto_msgTypes[95]
  4736. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4737. ms.StoreMessageInfo(mi)
  4738. }
  4739. }
  4740. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  4741. return protoimpl.X.MessageStringOf(x)
  4742. }
  4743. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  4744. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  4745. mi := &file_volume_server_proto_msgTypes[95]
  4746. if protoimpl.UnsafeEnabled && x != nil {
  4747. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4748. if ms.LoadMessageInfo() == nil {
  4749. ms.StoreMessageInfo(mi)
  4750. }
  4751. return ms
  4752. }
  4753. return mi.MessageOf(x)
  4754. }
  4755. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  4756. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  4757. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 1}
  4758. }
  4759. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  4760. if x != nil {
  4761. return x.Type
  4762. }
  4763. return ""
  4764. }
  4765. type QueryRequest_InputSerialization_ParquetInput struct {
  4766. state protoimpl.MessageState
  4767. sizeCache protoimpl.SizeCache
  4768. unknownFields protoimpl.UnknownFields
  4769. }
  4770. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  4771. *x = QueryRequest_InputSerialization_ParquetInput{}
  4772. if protoimpl.UnsafeEnabled {
  4773. mi := &file_volume_server_proto_msgTypes[96]
  4774. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4775. ms.StoreMessageInfo(mi)
  4776. }
  4777. }
  4778. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  4779. return protoimpl.X.MessageStringOf(x)
  4780. }
  4781. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  4782. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  4783. mi := &file_volume_server_proto_msgTypes[96]
  4784. if protoimpl.UnsafeEnabled && x != nil {
  4785. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4786. if ms.LoadMessageInfo() == nil {
  4787. ms.StoreMessageInfo(mi)
  4788. }
  4789. return ms
  4790. }
  4791. return mi.MessageOf(x)
  4792. }
  4793. // Deprecated: Use QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  4794. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  4795. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 2}
  4796. }
  4797. type QueryRequest_OutputSerialization_CSVOutput struct {
  4798. state protoimpl.MessageState
  4799. sizeCache protoimpl.SizeCache
  4800. unknownFields protoimpl.UnknownFields
  4801. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  4802. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4803. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4804. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4805. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4806. }
  4807. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  4808. *x = QueryRequest_OutputSerialization_CSVOutput{}
  4809. if protoimpl.UnsafeEnabled {
  4810. mi := &file_volume_server_proto_msgTypes[97]
  4811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4812. ms.StoreMessageInfo(mi)
  4813. }
  4814. }
  4815. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  4816. return protoimpl.X.MessageStringOf(x)
  4817. }
  4818. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  4819. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  4820. mi := &file_volume_server_proto_msgTypes[97]
  4821. if protoimpl.UnsafeEnabled && x != nil {
  4822. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4823. if ms.LoadMessageInfo() == nil {
  4824. ms.StoreMessageInfo(mi)
  4825. }
  4826. return ms
  4827. }
  4828. return mi.MessageOf(x)
  4829. }
  4830. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  4831. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  4832. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 0}
  4833. }
  4834. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  4835. if x != nil {
  4836. return x.QuoteFields
  4837. }
  4838. return ""
  4839. }
  4840. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  4841. if x != nil {
  4842. return x.RecordDelimiter
  4843. }
  4844. return ""
  4845. }
  4846. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  4847. if x != nil {
  4848. return x.FieldDelimiter
  4849. }
  4850. return ""
  4851. }
  4852. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharacter() string {
  4853. if x != nil {
  4854. return x.QuoteCharacter
  4855. }
  4856. return ""
  4857. }
  4858. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  4859. if x != nil {
  4860. return x.QuoteEscapeCharacter
  4861. }
  4862. return ""
  4863. }
  4864. type QueryRequest_OutputSerialization_JSONOutput struct {
  4865. state protoimpl.MessageState
  4866. sizeCache protoimpl.SizeCache
  4867. unknownFields protoimpl.UnknownFields
  4868. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  4869. }
  4870. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  4871. *x = QueryRequest_OutputSerialization_JSONOutput{}
  4872. if protoimpl.UnsafeEnabled {
  4873. mi := &file_volume_server_proto_msgTypes[98]
  4874. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4875. ms.StoreMessageInfo(mi)
  4876. }
  4877. }
  4878. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  4879. return protoimpl.X.MessageStringOf(x)
  4880. }
  4881. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  4882. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  4883. mi := &file_volume_server_proto_msgTypes[98]
  4884. if protoimpl.UnsafeEnabled && x != nil {
  4885. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4886. if ms.LoadMessageInfo() == nil {
  4887. ms.StoreMessageInfo(mi)
  4888. }
  4889. return ms
  4890. }
  4891. return mi.MessageOf(x)
  4892. }
  4893. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  4894. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  4895. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 1}
  4896. }
  4897. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  4898. if x != nil {
  4899. return x.RecordDelimiter
  4900. }
  4901. return ""
  4902. }
  4903. var File_volume_server_proto protoreflect.FileDescriptor
  4904. var file_volume_server_proto_rawDesc = []byte{
  4905. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  4906. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4907. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x1a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e,
  4908. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  4909. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66,
  4910. 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x66,
  4911. 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x63,
  4912. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28,
  4913. 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43, 0x68, 0x65,
  4914. 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4915. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72, 0x65, 0x73,
  4916. 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x6f, 0x6c,
  4917. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65,
  4918. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
  4919. 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4920. 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4921. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  4922. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73,
  4923. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03,
  4924. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73,
  4925. 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  4926. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  4927. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45, 0x6d, 0x70,
  4928. 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4929. 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4930. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4931. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x19, 0x56,
  4932. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b,
  4933. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61, 0x72, 0x62,
  4934. 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52,
  4935. 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x5b, 0x0a,
  4936. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d,
  4937. 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4938. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4939. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61,
  4940. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70,
  4941. 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x66, 0x0a, 0x1b, 0x56, 0x61,
  4942. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  4943. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f,
  4944. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01,
  4945. 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74,
  4946. 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x61, 0x76, 0x67, 0x5f, 0x31,
  4947. 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x76, 0x67,
  4948. 0x31, 0x6d, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4949. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4950. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4951. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x1a,
  4952. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d,
  4953. 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73,
  4954. 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  4955. 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1f, 0x0a, 0x0b,
  4956. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  4957. 0x04, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x39, 0x0a,
  4958. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65,
  4959. 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4960. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4961. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75,
  4962. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52,
  4963. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4964. 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  4965. 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4966. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4967. 0x6f, 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c,
  4968. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xfb,
  4969. 0x01, 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4970. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4971. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4972. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4973. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4974. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f,
  4975. 0x63, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61,
  4976. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  4977. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  4978. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c,
  4979. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d,
  4980. 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69,
  4981. 0x7a, 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d,
  4982. 0x6f, 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61, 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x12,
  4983. 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
  4984. 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x18, 0x0a, 0x16,
  4985. 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  4986. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4987. 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4988. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  4989. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb,
  4990. 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61,
  4991. 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4992. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4993. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  4994. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f,
  4995. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c,
  4996. 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72,
  4997. 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74,
  4998. 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b,
  4999. 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28,
  5000. 0x04, 0x52, 0x0a, 0x74, 0x61, 0x69, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a,
  5001. 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f,
  5002. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  5003. 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f,
  5004. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52,
  5005. 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c,
  5006. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61,
  5007. 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5008. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5009. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e,
  5010. 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e,
  5011. 0x63, 0x65, 0x4e, 0x73, 0x22, 0x42, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e,
  5012. 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73,
  5013. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f,
  5014. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c,
  5015. 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75,
  5016. 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5017. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5018. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56,
  5019. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5020. 0x73, 0x65, 0x22, 0x33, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f,
  5021. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5022. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5023. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5024. 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5025. 0x22, 0x51, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5026. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5027. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5028. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x65, 0x6d, 0x70,
  5029. 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x6f, 0x6e, 0x6c, 0x79, 0x45, 0x6d,
  5030. 0x70, 0x74, 0x79, 0x22, 0x16, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c,
  5031. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56,
  5032. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c,
  5033. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5034. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5035. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  5036. 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5037. 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72,
  5038. 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5039. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5040. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a,
  5041. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61,
  5042. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x16, 0x56,
  5043. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65,
  5044. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5045. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5046. 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  5047. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
  5048. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5049. 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  5050. 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  5051. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5052. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5053. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5054. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x59, 0x0a, 0x14, 0x56, 0x6f, 0x6c,
  5055. 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5056. 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c,
  5057. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f,
  5058. 0x6e, 0x6c, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x69,
  5059. 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5060. 0x53, 0x69, 0x7a, 0x65, 0x22, 0xf8, 0x01, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5061. 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5062. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5063. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  5064. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  5065. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  5066. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  5067. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c,
  5068. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x73,
  5069. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18,
  5070. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74,
  5071. 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79,
  5072. 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79,
  5073. 0x70, 0x65, 0x12, 0x2b, 0x0a, 0x12, 0x69, 0x6f, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x5f, 0x70, 0x65,
  5074. 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f,
  5075. 0x69, 0x6f, 0x42, 0x79, 0x74, 0x65, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22,
  5076. 0x68, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73,
  5077. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x61, 0x70,
  5078. 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
  5079. 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73,
  5080. 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79,
  5081. 0x74, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65,
  5082. 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f, 0x43, 0x6f,
  5083. 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a,
  5084. 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  5085. 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78,
  5086. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f, 0x0a, 0x13,
  5087. 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73,
  5088. 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61,
  5089. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a,
  5090. 0x0b, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01,
  5091. 0x28, 0x04, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e,
  5092. 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
  5093. 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20,
  5094. 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x18, 0x06,
  5095. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5096. 0x12, 0x3e, 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63,
  5097. 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75, 0x6e, 0x64,
  5098. 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x53, 0x6f,
  5099. 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75, 0x6e, 0x64,
  5100. 0x22, 0x5b, 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70,
  5101. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
  5102. 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65,
  5103. 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0e, 0x6d, 0x6f, 0x64, 0x69, 0x66,
  5104. 0x69, 0x65, 0x64, 0x5f, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  5105. 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x73, 0x4e, 0x73, 0x22, 0x60, 0x0a,
  5106. 0x15, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52,
  5107. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5108. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5109. 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20,
  5110. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73,
  5111. 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22,
  5112. 0x39, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f,
  5113. 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65,
  5114. 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a,
  5115. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x22, 0x7d, 0x0a, 0x15, 0x52, 0x65,
  5116. 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75,
  5117. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5118. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  5119. 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  5120. 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  5121. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f,
  5122. 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20,
  5123. 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x16, 0x52, 0x65,
  5124. 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70,
  5125. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x01,
  5126. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x23, 0x0a, 0x0d,
  5127. 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20,
  5128. 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
  5129. 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03,
  5130. 0x63, 0x72, 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  5131. 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x20, 0x0a, 0x0c, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f,
  5132. 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x61, 0x70, 0x70,
  5133. 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x16, 0x57, 0x72, 0x69, 0x74,
  5134. 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65,
  5135. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5136. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5137. 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  5138. 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04,
  5139. 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65,
  5140. 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18,
  5141. 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f,
  5142. 0x62, 0x22, 0x19, 0x0a, 0x17, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5143. 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x15,
  5144. 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65,
  5145. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5146. 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5147. 0x65, 0x49, 0x64, 0x73, 0x22, 0xa0, 0x02, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c,
  5148. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  5149. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5150. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
  5151. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
  5152. 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f,
  5153. 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69,
  5154. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62,
  5155. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c,
  5156. 0x6f, 0x62, 0x12, 0x34, 0x0a, 0x16, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f,
  5157. 0x62, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01,
  5158. 0x28, 0x08, 0x52, 0x14, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x43, 0x6f,
  5159. 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74,
  5160. 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52,
  5161. 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a,
  5162. 0x03, 0x63, 0x72, 0x63, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12,
  5163. 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e,
  5164. 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  5165. 0x0c, 0x52, 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x22, 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75,
  5166. 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
  5167. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5168. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  5169. 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01,
  5170. 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69,
  5171. 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f,
  5172. 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54,
  5173. 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x84, 0x01,
  5174. 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64,
  5175. 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65,
  5176. 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  5177. 0x0c, 0x52, 0x0c, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12,
  5178. 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x02,
  5179. 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79,
  5180. 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68, 0x75, 0x6e,
  5181. 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43,
  5182. 0x68, 0x75, 0x6e, 0x6b, 0x22, 0xb7, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5183. 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  5184. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5185. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5186. 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  5187. 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64,
  5188. 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e,
  5189. 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69,
  5190. 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30, 0x0a, 0x14,
  5191. 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5192. 0x72, 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f, 0x75, 0x72,
  5193. 0x63, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0x1c,
  5194. 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65,
  5195. 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d,
  5196. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65,
  5197. 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a,
  5198. 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  5199. 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f,
  5200. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  5201. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f,
  5202. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65,
  5203. 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0x0a, 0x1c,
  5204. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65,
  5205. 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5206. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5207. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c,
  5208. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  5209. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56, 0x6f, 0x6c,
  5210. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69,
  5211. 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x72, 0x65,
  5212. 0x62, 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18,
  5213. 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x53, 0x68,
  5214. 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x8b, 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5215. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71,
  5216. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5217. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5218. 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  5219. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5220. 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03,
  5221. 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x22,
  5222. 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18,
  5223. 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78, 0x46, 0x69,
  5224. 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74,
  5225. 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f,
  5226. 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d,
  5227. 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x6a, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20,
  5228. 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69, 0x6c, 0x65,
  5229. 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66, 0x69, 0x6c,
  5230. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56, 0x69, 0x66,
  5231. 0x46, 0x69, 0x6c, 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5232. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5233. 0x73, 0x65, 0x22, 0x77, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5234. 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5235. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5236. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e,
  5237. 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  5238. 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b,
  5239. 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  5240. 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a, 0x1c, 0x56,
  5241. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c,
  5242. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a, 0x1a, 0x56,
  5243. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75,
  5244. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  5245. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  5246. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5247. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5248. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f,
  5249. 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64,
  5250. 0x49, 0x64, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5251. 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5252. 0x73, 0x65, 0x22, 0x58, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5253. 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  5254. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5255. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5256. 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03,
  5257. 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f, 0x0a, 0x1d,
  5258. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e,
  5259. 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x99, 0x01,
  5260. 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
  5261. 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5262. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5263. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64,
  5264. 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72, 0x64,
  5265. 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01,
  5266. 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69,
  5267. 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x19,
  5268. 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  5269. 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56, 0x6f, 0x6c,
  5270. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65,
  5271. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01,
  5272. 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73,
  5273. 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09,
  5274. 0x69, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19, 0x56, 0x6f,
  5275. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5276. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5277. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5278. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5279. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5280. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79,
  5281. 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x12,
  5282. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d,
  5283. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c,
  5284. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  5285. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5286. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5287. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5288. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5289. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5290. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  5291. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5292. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52,
  5293. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61, 0x64, 0x56,
  5294. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5295. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5296. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5297. 0x65, 0x49, 0x64, 0x22, 0xc9, 0x03, 0x0a, 0x1c, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75,
  5298. 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70,
  5299. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5300. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5301. 0x64, 0x12, 0x3b, 0x0a, 0x1a, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69,
  5302. 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18,
  5303. 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69,
  5304. 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22,
  5305. 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18,
  5306. 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69,
  5307. 0x7a, 0x65, 0x12, 0x3b, 0x0a, 0x1a, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74,
  5308. 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73,
  5309. 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x54,
  5310. 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12,
  5311. 0x22, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65,
  5312. 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53,
  5313. 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e,
  5314. 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75,
  5315. 0x6e, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5316. 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5317. 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73,
  5318. 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5319. 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5320. 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65,
  5321. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65,
  5322. 0x12, 0x3d, 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18,
  5323. 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5324. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5325. 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  5326. 0xbb, 0x01, 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10,
  5327. 0x0a, 0x03, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x64, 0x69, 0x72,
  5328. 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61,
  5329. 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
  5330. 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04,
  5331. 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65,
  5332. 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02,
  5333. 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x46, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a,
  5334. 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20,
  5335. 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x64,
  5336. 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20,
  5337. 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa3, 0x01,
  5338. 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x67,
  5339. 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
  5340. 0x0a, 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61,
  5341. 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a,
  5342. 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65,
  5343. 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
  5344. 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20,
  5345. 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x65, 0x61,
  5346. 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x68, 0x65, 0x61, 0x70, 0x12, 0x14, 0x0a,
  5347. 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x74,
  5348. 0x61, 0x63, 0x6b, 0x22, 0xd8, 0x01, 0x0a, 0x0a, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69,
  5349. 0x6c, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79,
  5350. 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  5351. 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  5352. 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x65,
  5353. 0x6e, 0x64, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28,
  5354. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  5355. 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1b,
  5356. 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  5357. 0x04, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d,
  5358. 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01,
  5359. 0x28, 0x04, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65,
  5360. 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20,
  5361. 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x9e,
  5362. 0x01, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a,
  5363. 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76,
  5364. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5365. 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65,
  5366. 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  5367. 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72,
  5368. 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  5369. 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a,
  5370. 0x0b, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01,
  5371. 0x28, 0x0d, 0x52, 0x0b, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22,
  5372. 0xc8, 0x01, 0x0a, 0x20, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  5373. 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71,
  5374. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5375. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5376. 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  5377. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5378. 0x6e, 0x12, 0x38, 0x0a, 0x18, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  5379. 0x5f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
  5380. 0x01, 0x28, 0x09, 0x52, 0x16, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  5381. 0x42, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b,
  5382. 0x65, 0x65, 0x70, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69,
  5383. 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f,
  5384. 0x63, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f,
  5385. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54,
  5386. 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  5387. 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01,
  5388. 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a,
  5389. 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e,
  5390. 0x74, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63,
  5391. 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22,
  5392. 0x92, 0x01, 0x0a, 0x22, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  5393. 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52,
  5394. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5395. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5396. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5397. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5398. 0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f,
  5399. 0x74, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  5400. 0x08, 0x52, 0x11, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74,
  5401. 0x46, 0x69, 0x6c, 0x65, 0x22, 0x75, 0x0a, 0x23, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69,
  5402. 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d,
  5403. 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70,
  5404. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  5405. 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f,
  5406. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
  5407. 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65,
  5408. 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56,
  5409. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75,
  5410. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xf0, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c,
  5411. 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5412. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f,
  5413. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c,
  5414. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5415. 0x62, 0x2e, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69,
  5416. 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65,
  5417. 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  5418. 0x0b, 0x32, 0x1b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5419. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c,
  5420. 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07,
  5421. 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76,
  5422. 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63,
  5423. 0x65, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74,
  5424. 0x61, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x18,
  5425. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x22, 0x1a, 0x0a, 0x18, 0x56,
  5426. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65,
  5427. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5428. 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70,
  5429. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xdc, 0x03, 0x0a, 0x1a, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e,
  5430. 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75,
  5431. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5432. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  5433. 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  5434. 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  5435. 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63,
  5436. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  5437. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a,
  5438. 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a,
  5439. 0x65, 0x12, 0x50, 0x0a, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x18, 0x06, 0x20,
  5440. 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5441. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57,
  5442. 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5443. 0x74, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69,
  5444. 0x63, 0x61, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28,
  5445. 0x09, 0x52, 0x04, 0x61, 0x75, 0x74, 0x68, 0x12, 0x36, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  5446. 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x72,
  5447. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43,
  5448. 0x6f, 0x6e, 0x66, 0x52, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x12,
  5449. 0x49, 0x0a, 0x0f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
  5450. 0x6f, 0x6e, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  5451. 0x65, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x53, 0x74, 0x6f, 0x72, 0x61,
  5452. 0x67, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x72, 0x65, 0x6d, 0x6f,
  5453. 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x57, 0x0a, 0x07, 0x52, 0x65,
  5454. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01,
  5455. 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69,
  5456. 0x63, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x75, 0x62,
  5457. 0x6c, 0x69, 0x63, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x70,
  5458. 0x6f, 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x72, 0x70, 0x63, 0x50,
  5459. 0x6f, 0x72, 0x74, 0x22, 0x32, 0x0a, 0x1b, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57,
  5460. 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5461. 0x73, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x65, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28,
  5462. 0x09, 0x52, 0x04, 0x65, 0x54, 0x61, 0x67, 0x22, 0xf4, 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72,
  5463. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65,
  5464. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65,
  5465. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d,
  5466. 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52,
  5467. 0x0b, 0x66, 0x72, 0x6f, 0x6d, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06,
  5468. 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76,
  5469. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5470. 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c,
  5471. 0x74, 0x65, 0x72, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69,
  5472. 0x6e, 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  5473. 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5474. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72,
  5475. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65,
  5476. 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70,
  5477. 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  5478. 0x65, 0x0a, 0x14, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c,
  5479. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e,
  5480. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5481. 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75,
  5482. 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  5483. 0x6e, 0x52, 0x13, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  5484. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x4e, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
  5485. 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  5486. 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e,
  5487. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64,
  5488. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  5489. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x1a, 0xd3, 0x05, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74,
  5490. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a,
  5491. 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70,
  5492. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73,
  5493. 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f,
  5494. 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f,
  5495. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51,
  5496. 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75,
  5497. 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43,
  5498. 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x08, 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75,
  5499. 0x74, 0x12, 0x5a, 0x0a, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18,
  5500. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5501. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65,
  5502. 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  5503. 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70,
  5504. 0x75, 0x74, 0x52, 0x09, 0x6a, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a,
  5505. 0x0d, 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04,
  5506. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5507. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71,
  5508. 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  5509. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49,
  5510. 0x6e, 0x70, 0x75, 0x74, 0x52, 0x0c, 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70,
  5511. 0x75, 0x74, 0x1a, 0xc6, 0x02, 0x0a, 0x08, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12,
  5512. 0x28, 0x0a, 0x10, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69,
  5513. 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48,
  5514. 0x65, 0x61, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63,
  5515. 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20,
  5516. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d,
  5517. 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65,
  5518. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66,
  5519. 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a,
  5520. 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
  5521. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61,
  5522. 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f,
  5523. 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
  5524. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63,
  5525. 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08,
  5526. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  5527. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f,
  5528. 0x77, 0x5f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f,
  5529. 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52,
  5530. 0x1a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f,
  5531. 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a,
  5532. 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
  5533. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c,
  5534. 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xef, 0x03, 0x0a,
  5535. 0x13, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61,
  5536. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5b, 0x0a, 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70,
  5537. 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5538. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72,
  5539. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53,
  5540. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56,
  5541. 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x52, 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75,
  5542. 0x74, 0x12, 0x5e, 0x0a, 0x0b, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5543. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5544. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  5545. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72,
  5546. 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f,
  5547. 0x75, 0x74, 0x70, 0x75, 0x74, 0x52, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75,
  5548. 0x74, 0x1a, 0xe1, 0x01, 0x0a, 0x09, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12,
  5549. 0x21, 0x0a, 0x0c, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18,
  5550. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c,
  5551. 0x64, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c,
  5552. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65,
  5553. 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a,
  5554. 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72,
  5555. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c,
  5556. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f,
  5557. 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  5558. 0x0e, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12,
  5559. 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f,
  5560. 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  5561. 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72,
  5562. 0x61, 0x63, 0x74, 0x65, 0x72, 0x1a, 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74,
  5563. 0x70, 0x75, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65,
  5564. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72,
  5565. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x22, 0x29,
  5566. 0x0a, 0x0d, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x12,
  5567. 0x18, 0x0a, 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c,
  5568. 0x52, 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56, 0x6f, 0x6c,
  5569. 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5570. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5571. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5572. 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64,
  5573. 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64,
  5574. 0x22, 0xae, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c,
  5575. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  5576. 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5577. 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  5578. 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f,
  5579. 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01,
  5580. 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74,
  5581. 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
  5582. 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a,
  5583. 0x03, 0x63, 0x72, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12,
  5584. 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74,
  5585. 0x6c, 0x22, 0x46, 0x0a, 0x0b, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5586. 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  5587. 0x52, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67,
  5588. 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74,
  5589. 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x7a, 0x0a, 0x0c, 0x50, 0x69, 0x6e,
  5590. 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x74, 0x61,
  5591. 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  5592. 0x52, 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12, 0x24, 0x0a,
  5593. 0x0e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18,
  5594. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x54, 0x69, 0x6d,
  5595. 0x65, 0x4e, 0x73, 0x12, 0x20, 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  5596. 0x5f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x54,
  5597. 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x32, 0xbc, 0x24, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5598. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x5c, 0x0a, 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44,
  5599. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5600. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  5601. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f,
  5602. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42,
  5603. 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5604. 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  5605. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5606. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63,
  5607. 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65,
  5608. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5609. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  5610. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5611. 0x73, 0x65, 0x22, 0x00, 0x12, 0x76, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  5612. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f,
  5613. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5614. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61,
  5615. 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5616. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63,
  5617. 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  5618. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12,
  5619. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d,
  5620. 0x69, 0x74, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5621. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  5622. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5623. 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5624. 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5625. 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5626. 0x74, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5627. 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5628. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d,
  5629. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71,
  5630. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5631. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  5632. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5633. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43,
  5634. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5635. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c,
  5636. 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
  5637. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5638. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f,
  5639. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5640. 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f,
  5641. 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5642. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65,
  5643. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e,
  5644. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5645. 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52,
  5646. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c,
  5647. 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e,
  5648. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5649. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75,
  5650. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5651. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5652. 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70,
  5653. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7c, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5654. 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12,
  5655. 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5656. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65,
  5657. 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5658. 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5659. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65,
  5660. 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5661. 0x22, 0x00, 0x30, 0x01, 0x12, 0x5c, 0x0a, 0x0b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f,
  5662. 0x75, 0x6e, 0x74, 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5663. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75,
  5664. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5665. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5666. 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5667. 0x22, 0x00, 0x12, 0x62, 0x0a, 0x0d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f,
  5668. 0x75, 0x6e, 0x74, 0x12, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5669. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d,
  5670. 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f,
  5671. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5672. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
  5673. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5674. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 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. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 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, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73,
  5679. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5680. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e,
  5681. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5682. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f,
  5683. 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c,
  5684. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5685. 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79,
  5686. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f,
  5687. 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65,
  5688. 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5689. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72,
  5690. 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e,
  5691. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5692. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61,
  5693. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a,
  5694. 0x0f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65,
  5695. 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5696. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  5697. 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c,
  5698. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5699. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73,
  5700. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5701. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5702. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5703. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26,
  5704. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5705. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  5706. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75,
  5707. 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x23, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5708. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5709. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x6f,
  5710. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5711. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5712. 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x77, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c,
  5713. 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2d, 0x2e,
  5714. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5715. 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53,
  5716. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76,
  5717. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5718. 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74,
  5719. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55,
  5720. 0x0a, 0x08, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e, 0x76, 0x6f, 0x6c,
  5721. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f,
  5722. 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e,
  5723. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5724. 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5725. 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x65, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65,
  5726. 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5727. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e,
  5728. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5729. 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5730. 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c,
  5731. 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e,
  5732. 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x27,
  5733. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5734. 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61,
  5735. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5736. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e,
  5737. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5738. 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64,
  5739. 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5740. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e,
  5741. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5742. 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5743. 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  5744. 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a,
  5745. 0x0e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x12,
  5746. 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5747. 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5748. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5749. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64,
  5750. 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5751. 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5752. 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c,
  5753. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5754. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65,
  5755. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5756. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5757. 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5758. 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5759. 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x76, 0x6f,
  5760. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5761. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
  5762. 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5763. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5764. 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65,
  5765. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75,
  5766. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61,
  5767. 0x74, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5768. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5769. 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
  5770. 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5771. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5772. 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73,
  5773. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5774. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64,
  5775. 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5776. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5777. 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5778. 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5779. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5780. 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5781. 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5782. 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5783. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5784. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52,
  5785. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5786. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5787. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70,
  5788. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5789. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2d,
  5790. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5791. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5792. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e,
  5793. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5794. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44,
  5795. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5796. 0x74, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5797. 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5798. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5799. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71,
  5800. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5801. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5802. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5803. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5804. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2e,
  5805. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5806. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5807. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f,
  5808. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5809. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5810. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5811. 0x00, 0x12, 0x70, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5812. 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5813. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5814. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  5815. 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5816. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5817. 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5818. 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42,
  5819. 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5820. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5821. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  5822. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5823. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5824. 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  5825. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5826. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5827. 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5828. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5829. 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5830. 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5831. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5832. 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5833. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x88, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5834. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d,
  5835. 0x6f, 0x74, 0x65, 0x12, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5836. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65,
  5837. 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5838. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5839. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5840. 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65,
  5841. 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
  5842. 0x12, 0x8e, 0x01, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d,
  5843. 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5844. 0x12, 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5845. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  5846. 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52,
  5847. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5848. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5849. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52,
  5850. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30,
  5851. 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65,
  5852. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5853. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5854. 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  5855. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5856. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  5857. 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5858. 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  5859. 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5860. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5861. 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65,
  5862. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5863. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5864. 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5865. 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64,
  5866. 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x12, 0x2c, 0x2e, 0x76, 0x6f,
  5867. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46,
  5868. 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64,
  5869. 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5870. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74,
  5871. 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5872. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x51, 0x75,
  5873. 0x65, 0x72, 0x79, 0x12, 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5874. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  5875. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5876. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74,
  5877. 0x72, 0x69, 0x70, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75,
  5878. 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b,
  5879. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5880. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74,
  5881. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f,
  5882. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5883. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  5884. 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x04, 0x50,
  5885. 0x69, 0x6e, 0x67, 0x12, 0x1d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5886. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,
  5887. 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5888. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5889. 0x73, 0x65, 0x22, 0x00, 0x42, 0x39, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63,
  5890. 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x73, 0x65, 0x61,
  5891. 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x76,
  5892. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62,
  5893. 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  5894. }
  5895. var (
  5896. file_volume_server_proto_rawDescOnce sync.Once
  5897. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  5898. )
  5899. func file_volume_server_proto_rawDescGZIP() []byte {
  5900. file_volume_server_proto_rawDescOnce.Do(func() {
  5901. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  5902. })
  5903. return file_volume_server_proto_rawDescData
  5904. }
  5905. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 99)
  5906. var file_volume_server_proto_goTypes = []interface{}{
  5907. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  5908. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  5909. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  5910. (*Empty)(nil), // 3: volume_server_pb.Empty
  5911. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  5912. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  5913. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  5914. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  5915. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  5916. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  5917. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  5918. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  5919. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  5920. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  5921. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  5922. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  5923. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  5924. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  5925. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  5926. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  5927. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  5928. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  5929. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  5930. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  5931. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  5932. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  5933. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  5934. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  5935. (*VolumeMarkWritableRequest)(nil), // 28: volume_server_pb.VolumeMarkWritableRequest
  5936. (*VolumeMarkWritableResponse)(nil), // 29: volume_server_pb.VolumeMarkWritableResponse
  5937. (*VolumeConfigureRequest)(nil), // 30: volume_server_pb.VolumeConfigureRequest
  5938. (*VolumeConfigureResponse)(nil), // 31: volume_server_pb.VolumeConfigureResponse
  5939. (*VolumeStatusRequest)(nil), // 32: volume_server_pb.VolumeStatusRequest
  5940. (*VolumeStatusResponse)(nil), // 33: volume_server_pb.VolumeStatusResponse
  5941. (*VolumeCopyRequest)(nil), // 34: volume_server_pb.VolumeCopyRequest
  5942. (*VolumeCopyResponse)(nil), // 35: volume_server_pb.VolumeCopyResponse
  5943. (*CopyFileRequest)(nil), // 36: volume_server_pb.CopyFileRequest
  5944. (*CopyFileResponse)(nil), // 37: volume_server_pb.CopyFileResponse
  5945. (*ReadNeedleBlobRequest)(nil), // 38: volume_server_pb.ReadNeedleBlobRequest
  5946. (*ReadNeedleBlobResponse)(nil), // 39: volume_server_pb.ReadNeedleBlobResponse
  5947. (*ReadNeedleMetaRequest)(nil), // 40: volume_server_pb.ReadNeedleMetaRequest
  5948. (*ReadNeedleMetaResponse)(nil), // 41: volume_server_pb.ReadNeedleMetaResponse
  5949. (*WriteNeedleBlobRequest)(nil), // 42: volume_server_pb.WriteNeedleBlobRequest
  5950. (*WriteNeedleBlobResponse)(nil), // 43: volume_server_pb.WriteNeedleBlobResponse
  5951. (*ReadAllNeedlesRequest)(nil), // 44: volume_server_pb.ReadAllNeedlesRequest
  5952. (*ReadAllNeedlesResponse)(nil), // 45: volume_server_pb.ReadAllNeedlesResponse
  5953. (*VolumeTailSenderRequest)(nil), // 46: volume_server_pb.VolumeTailSenderRequest
  5954. (*VolumeTailSenderResponse)(nil), // 47: volume_server_pb.VolumeTailSenderResponse
  5955. (*VolumeTailReceiverRequest)(nil), // 48: volume_server_pb.VolumeTailReceiverRequest
  5956. (*VolumeTailReceiverResponse)(nil), // 49: volume_server_pb.VolumeTailReceiverResponse
  5957. (*VolumeEcShardsGenerateRequest)(nil), // 50: volume_server_pb.VolumeEcShardsGenerateRequest
  5958. (*VolumeEcShardsGenerateResponse)(nil), // 51: volume_server_pb.VolumeEcShardsGenerateResponse
  5959. (*VolumeEcShardsRebuildRequest)(nil), // 52: volume_server_pb.VolumeEcShardsRebuildRequest
  5960. (*VolumeEcShardsRebuildResponse)(nil), // 53: volume_server_pb.VolumeEcShardsRebuildResponse
  5961. (*VolumeEcShardsCopyRequest)(nil), // 54: volume_server_pb.VolumeEcShardsCopyRequest
  5962. (*VolumeEcShardsCopyResponse)(nil), // 55: volume_server_pb.VolumeEcShardsCopyResponse
  5963. (*VolumeEcShardsDeleteRequest)(nil), // 56: volume_server_pb.VolumeEcShardsDeleteRequest
  5964. (*VolumeEcShardsDeleteResponse)(nil), // 57: volume_server_pb.VolumeEcShardsDeleteResponse
  5965. (*VolumeEcShardsMountRequest)(nil), // 58: volume_server_pb.VolumeEcShardsMountRequest
  5966. (*VolumeEcShardsMountResponse)(nil), // 59: volume_server_pb.VolumeEcShardsMountResponse
  5967. (*VolumeEcShardsUnmountRequest)(nil), // 60: volume_server_pb.VolumeEcShardsUnmountRequest
  5968. (*VolumeEcShardsUnmountResponse)(nil), // 61: volume_server_pb.VolumeEcShardsUnmountResponse
  5969. (*VolumeEcShardReadRequest)(nil), // 62: volume_server_pb.VolumeEcShardReadRequest
  5970. (*VolumeEcShardReadResponse)(nil), // 63: volume_server_pb.VolumeEcShardReadResponse
  5971. (*VolumeEcBlobDeleteRequest)(nil), // 64: volume_server_pb.VolumeEcBlobDeleteRequest
  5972. (*VolumeEcBlobDeleteResponse)(nil), // 65: volume_server_pb.VolumeEcBlobDeleteResponse
  5973. (*VolumeEcShardsToVolumeRequest)(nil), // 66: volume_server_pb.VolumeEcShardsToVolumeRequest
  5974. (*VolumeEcShardsToVolumeResponse)(nil), // 67: volume_server_pb.VolumeEcShardsToVolumeResponse
  5975. (*ReadVolumeFileStatusRequest)(nil), // 68: volume_server_pb.ReadVolumeFileStatusRequest
  5976. (*ReadVolumeFileStatusResponse)(nil), // 69: volume_server_pb.ReadVolumeFileStatusResponse
  5977. (*DiskStatus)(nil), // 70: volume_server_pb.DiskStatus
  5978. (*MemStatus)(nil), // 71: volume_server_pb.MemStatus
  5979. (*RemoteFile)(nil), // 72: volume_server_pb.RemoteFile
  5980. (*VolumeInfo)(nil), // 73: volume_server_pb.VolumeInfo
  5981. (*VolumeTierMoveDatToRemoteRequest)(nil), // 74: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  5982. (*VolumeTierMoveDatToRemoteResponse)(nil), // 75: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  5983. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 76: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  5984. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 77: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  5985. (*VolumeServerStatusRequest)(nil), // 78: volume_server_pb.VolumeServerStatusRequest
  5986. (*VolumeServerStatusResponse)(nil), // 79: volume_server_pb.VolumeServerStatusResponse
  5987. (*VolumeServerLeaveRequest)(nil), // 80: volume_server_pb.VolumeServerLeaveRequest
  5988. (*VolumeServerLeaveResponse)(nil), // 81: volume_server_pb.VolumeServerLeaveResponse
  5989. (*FetchAndWriteNeedleRequest)(nil), // 82: volume_server_pb.FetchAndWriteNeedleRequest
  5990. (*FetchAndWriteNeedleResponse)(nil), // 83: volume_server_pb.FetchAndWriteNeedleResponse
  5991. (*QueryRequest)(nil), // 84: volume_server_pb.QueryRequest
  5992. (*QueriedStripe)(nil), // 85: volume_server_pb.QueriedStripe
  5993. (*VolumeNeedleStatusRequest)(nil), // 86: volume_server_pb.VolumeNeedleStatusRequest
  5994. (*VolumeNeedleStatusResponse)(nil), // 87: volume_server_pb.VolumeNeedleStatusResponse
  5995. (*PingRequest)(nil), // 88: volume_server_pb.PingRequest
  5996. (*PingResponse)(nil), // 89: volume_server_pb.PingResponse
  5997. (*FetchAndWriteNeedleRequest_Replica)(nil), // 90: volume_server_pb.FetchAndWriteNeedleRequest.Replica
  5998. (*QueryRequest_Filter)(nil), // 91: volume_server_pb.QueryRequest.Filter
  5999. (*QueryRequest_InputSerialization)(nil), // 92: volume_server_pb.QueryRequest.InputSerialization
  6000. (*QueryRequest_OutputSerialization)(nil), // 93: volume_server_pb.QueryRequest.OutputSerialization
  6001. (*QueryRequest_InputSerialization_CSVInput)(nil), // 94: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  6002. (*QueryRequest_InputSerialization_JSONInput)(nil), // 95: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  6003. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 96: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  6004. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 97: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  6005. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 98: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  6006. (*remote_pb.RemoteConf)(nil), // 99: remote_pb.RemoteConf
  6007. (*remote_pb.RemoteStorageLocation)(nil), // 100: remote_pb.RemoteStorageLocation
  6008. }
  6009. var file_volume_server_proto_depIdxs = []int32{
  6010. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  6011. 73, // 1: volume_server_pb.ReadVolumeFileStatusResponse.volume_info:type_name -> volume_server_pb.VolumeInfo
  6012. 72, // 2: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  6013. 70, // 3: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  6014. 71, // 4: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  6015. 90, // 5: volume_server_pb.FetchAndWriteNeedleRequest.replicas:type_name -> volume_server_pb.FetchAndWriteNeedleRequest.Replica
  6016. 99, // 6: volume_server_pb.FetchAndWriteNeedleRequest.remote_conf:type_name -> remote_pb.RemoteConf
  6017. 100, // 7: volume_server_pb.FetchAndWriteNeedleRequest.remote_location:type_name -> remote_pb.RemoteStorageLocation
  6018. 91, // 8: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  6019. 92, // 9: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  6020. 93, // 10: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  6021. 94, // 11: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  6022. 95, // 12: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  6023. 96, // 13: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  6024. 97, // 14: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  6025. 98, // 15: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  6026. 0, // 16: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  6027. 4, // 17: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  6028. 6, // 18: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  6029. 8, // 19: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  6030. 10, // 20: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  6031. 12, // 21: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  6032. 14, // 22: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  6033. 16, // 23: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  6034. 18, // 24: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  6035. 20, // 25: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  6036. 22, // 26: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  6037. 24, // 27: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  6038. 26, // 28: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  6039. 28, // 29: volume_server_pb.VolumeServer.VolumeMarkWritable:input_type -> volume_server_pb.VolumeMarkWritableRequest
  6040. 30, // 30: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  6041. 32, // 31: volume_server_pb.VolumeServer.VolumeStatus:input_type -> volume_server_pb.VolumeStatusRequest
  6042. 34, // 32: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  6043. 68, // 33: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  6044. 36, // 34: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  6045. 38, // 35: volume_server_pb.VolumeServer.ReadNeedleBlob:input_type -> volume_server_pb.ReadNeedleBlobRequest
  6046. 40, // 36: volume_server_pb.VolumeServer.ReadNeedleMeta:input_type -> volume_server_pb.ReadNeedleMetaRequest
  6047. 42, // 37: volume_server_pb.VolumeServer.WriteNeedleBlob:input_type -> volume_server_pb.WriteNeedleBlobRequest
  6048. 44, // 38: volume_server_pb.VolumeServer.ReadAllNeedles:input_type -> volume_server_pb.ReadAllNeedlesRequest
  6049. 46, // 39: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  6050. 48, // 40: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  6051. 50, // 41: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  6052. 52, // 42: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  6053. 54, // 43: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  6054. 56, // 44: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  6055. 58, // 45: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  6056. 60, // 46: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  6057. 62, // 47: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  6058. 64, // 48: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  6059. 66, // 49: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  6060. 74, // 50: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  6061. 76, // 51: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  6062. 78, // 52: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  6063. 80, // 53: volume_server_pb.VolumeServer.VolumeServerLeave:input_type -> volume_server_pb.VolumeServerLeaveRequest
  6064. 82, // 54: volume_server_pb.VolumeServer.FetchAndWriteNeedle:input_type -> volume_server_pb.FetchAndWriteNeedleRequest
  6065. 84, // 55: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  6066. 86, // 56: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  6067. 88, // 57: volume_server_pb.VolumeServer.Ping:input_type -> volume_server_pb.PingRequest
  6068. 1, // 58: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  6069. 5, // 59: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  6070. 7, // 60: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  6071. 9, // 61: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  6072. 11, // 62: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  6073. 13, // 63: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  6074. 15, // 64: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  6075. 17, // 65: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  6076. 19, // 66: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  6077. 21, // 67: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  6078. 23, // 68: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  6079. 25, // 69: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  6080. 27, // 70: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  6081. 29, // 71: volume_server_pb.VolumeServer.VolumeMarkWritable:output_type -> volume_server_pb.VolumeMarkWritableResponse
  6082. 31, // 72: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  6083. 33, // 73: volume_server_pb.VolumeServer.VolumeStatus:output_type -> volume_server_pb.VolumeStatusResponse
  6084. 35, // 74: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  6085. 69, // 75: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  6086. 37, // 76: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  6087. 39, // 77: volume_server_pb.VolumeServer.ReadNeedleBlob:output_type -> volume_server_pb.ReadNeedleBlobResponse
  6088. 41, // 78: volume_server_pb.VolumeServer.ReadNeedleMeta:output_type -> volume_server_pb.ReadNeedleMetaResponse
  6089. 43, // 79: volume_server_pb.VolumeServer.WriteNeedleBlob:output_type -> volume_server_pb.WriteNeedleBlobResponse
  6090. 45, // 80: volume_server_pb.VolumeServer.ReadAllNeedles:output_type -> volume_server_pb.ReadAllNeedlesResponse
  6091. 47, // 81: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  6092. 49, // 82: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  6093. 51, // 83: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  6094. 53, // 84: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  6095. 55, // 85: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  6096. 57, // 86: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  6097. 59, // 87: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  6098. 61, // 88: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  6099. 63, // 89: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  6100. 65, // 90: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  6101. 67, // 91: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  6102. 75, // 92: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  6103. 77, // 93: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  6104. 79, // 94: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  6105. 81, // 95: volume_server_pb.VolumeServer.VolumeServerLeave:output_type -> volume_server_pb.VolumeServerLeaveResponse
  6106. 83, // 96: volume_server_pb.VolumeServer.FetchAndWriteNeedle:output_type -> volume_server_pb.FetchAndWriteNeedleResponse
  6107. 85, // 97: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  6108. 87, // 98: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  6109. 89, // 99: volume_server_pb.VolumeServer.Ping:output_type -> volume_server_pb.PingResponse
  6110. 58, // [58:100] is the sub-list for method output_type
  6111. 16, // [16:58] is the sub-list for method input_type
  6112. 16, // [16:16] is the sub-list for extension type_name
  6113. 16, // [16:16] is the sub-list for extension extendee
  6114. 0, // [0:16] is the sub-list for field type_name
  6115. }
  6116. func init() { file_volume_server_proto_init() }
  6117. func file_volume_server_proto_init() {
  6118. if File_volume_server_proto != nil {
  6119. return
  6120. }
  6121. if !protoimpl.UnsafeEnabled {
  6122. file_volume_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  6123. switch v := v.(*BatchDeleteRequest); i {
  6124. case 0:
  6125. return &v.state
  6126. case 1:
  6127. return &v.sizeCache
  6128. case 2:
  6129. return &v.unknownFields
  6130. default:
  6131. return nil
  6132. }
  6133. }
  6134. file_volume_server_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  6135. switch v := v.(*BatchDeleteResponse); i {
  6136. case 0:
  6137. return &v.state
  6138. case 1:
  6139. return &v.sizeCache
  6140. case 2:
  6141. return &v.unknownFields
  6142. default:
  6143. return nil
  6144. }
  6145. }
  6146. file_volume_server_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  6147. switch v := v.(*DeleteResult); i {
  6148. case 0:
  6149. return &v.state
  6150. case 1:
  6151. return &v.sizeCache
  6152. case 2:
  6153. return &v.unknownFields
  6154. default:
  6155. return nil
  6156. }
  6157. }
  6158. file_volume_server_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  6159. switch v := v.(*Empty); i {
  6160. case 0:
  6161. return &v.state
  6162. case 1:
  6163. return &v.sizeCache
  6164. case 2:
  6165. return &v.unknownFields
  6166. default:
  6167. return nil
  6168. }
  6169. }
  6170. file_volume_server_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  6171. switch v := v.(*VacuumVolumeCheckRequest); i {
  6172. case 0:
  6173. return &v.state
  6174. case 1:
  6175. return &v.sizeCache
  6176. case 2:
  6177. return &v.unknownFields
  6178. default:
  6179. return nil
  6180. }
  6181. }
  6182. file_volume_server_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  6183. switch v := v.(*VacuumVolumeCheckResponse); i {
  6184. case 0:
  6185. return &v.state
  6186. case 1:
  6187. return &v.sizeCache
  6188. case 2:
  6189. return &v.unknownFields
  6190. default:
  6191. return nil
  6192. }
  6193. }
  6194. file_volume_server_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  6195. switch v := v.(*VacuumVolumeCompactRequest); i {
  6196. case 0:
  6197. return &v.state
  6198. case 1:
  6199. return &v.sizeCache
  6200. case 2:
  6201. return &v.unknownFields
  6202. default:
  6203. return nil
  6204. }
  6205. }
  6206. file_volume_server_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  6207. switch v := v.(*VacuumVolumeCompactResponse); i {
  6208. case 0:
  6209. return &v.state
  6210. case 1:
  6211. return &v.sizeCache
  6212. case 2:
  6213. return &v.unknownFields
  6214. default:
  6215. return nil
  6216. }
  6217. }
  6218. file_volume_server_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  6219. switch v := v.(*VacuumVolumeCommitRequest); i {
  6220. case 0:
  6221. return &v.state
  6222. case 1:
  6223. return &v.sizeCache
  6224. case 2:
  6225. return &v.unknownFields
  6226. default:
  6227. return nil
  6228. }
  6229. }
  6230. file_volume_server_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  6231. switch v := v.(*VacuumVolumeCommitResponse); i {
  6232. case 0:
  6233. return &v.state
  6234. case 1:
  6235. return &v.sizeCache
  6236. case 2:
  6237. return &v.unknownFields
  6238. default:
  6239. return nil
  6240. }
  6241. }
  6242. file_volume_server_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  6243. switch v := v.(*VacuumVolumeCleanupRequest); i {
  6244. case 0:
  6245. return &v.state
  6246. case 1:
  6247. return &v.sizeCache
  6248. case 2:
  6249. return &v.unknownFields
  6250. default:
  6251. return nil
  6252. }
  6253. }
  6254. file_volume_server_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  6255. switch v := v.(*VacuumVolumeCleanupResponse); i {
  6256. case 0:
  6257. return &v.state
  6258. case 1:
  6259. return &v.sizeCache
  6260. case 2:
  6261. return &v.unknownFields
  6262. default:
  6263. return nil
  6264. }
  6265. }
  6266. file_volume_server_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  6267. switch v := v.(*DeleteCollectionRequest); i {
  6268. case 0:
  6269. return &v.state
  6270. case 1:
  6271. return &v.sizeCache
  6272. case 2:
  6273. return &v.unknownFields
  6274. default:
  6275. return nil
  6276. }
  6277. }
  6278. file_volume_server_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  6279. switch v := v.(*DeleteCollectionResponse); i {
  6280. case 0:
  6281. return &v.state
  6282. case 1:
  6283. return &v.sizeCache
  6284. case 2:
  6285. return &v.unknownFields
  6286. default:
  6287. return nil
  6288. }
  6289. }
  6290. file_volume_server_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  6291. switch v := v.(*AllocateVolumeRequest); i {
  6292. case 0:
  6293. return &v.state
  6294. case 1:
  6295. return &v.sizeCache
  6296. case 2:
  6297. return &v.unknownFields
  6298. default:
  6299. return nil
  6300. }
  6301. }
  6302. file_volume_server_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  6303. switch v := v.(*AllocateVolumeResponse); i {
  6304. case 0:
  6305. return &v.state
  6306. case 1:
  6307. return &v.sizeCache
  6308. case 2:
  6309. return &v.unknownFields
  6310. default:
  6311. return nil
  6312. }
  6313. }
  6314. file_volume_server_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  6315. switch v := v.(*VolumeSyncStatusRequest); i {
  6316. case 0:
  6317. return &v.state
  6318. case 1:
  6319. return &v.sizeCache
  6320. case 2:
  6321. return &v.unknownFields
  6322. default:
  6323. return nil
  6324. }
  6325. }
  6326. file_volume_server_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  6327. switch v := v.(*VolumeSyncStatusResponse); i {
  6328. case 0:
  6329. return &v.state
  6330. case 1:
  6331. return &v.sizeCache
  6332. case 2:
  6333. return &v.unknownFields
  6334. default:
  6335. return nil
  6336. }
  6337. }
  6338. file_volume_server_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  6339. switch v := v.(*VolumeIncrementalCopyRequest); i {
  6340. case 0:
  6341. return &v.state
  6342. case 1:
  6343. return &v.sizeCache
  6344. case 2:
  6345. return &v.unknownFields
  6346. default:
  6347. return nil
  6348. }
  6349. }
  6350. file_volume_server_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  6351. switch v := v.(*VolumeIncrementalCopyResponse); i {
  6352. case 0:
  6353. return &v.state
  6354. case 1:
  6355. return &v.sizeCache
  6356. case 2:
  6357. return &v.unknownFields
  6358. default:
  6359. return nil
  6360. }
  6361. }
  6362. file_volume_server_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  6363. switch v := v.(*VolumeMountRequest); i {
  6364. case 0:
  6365. return &v.state
  6366. case 1:
  6367. return &v.sizeCache
  6368. case 2:
  6369. return &v.unknownFields
  6370. default:
  6371. return nil
  6372. }
  6373. }
  6374. file_volume_server_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  6375. switch v := v.(*VolumeMountResponse); i {
  6376. case 0:
  6377. return &v.state
  6378. case 1:
  6379. return &v.sizeCache
  6380. case 2:
  6381. return &v.unknownFields
  6382. default:
  6383. return nil
  6384. }
  6385. }
  6386. file_volume_server_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  6387. switch v := v.(*VolumeUnmountRequest); i {
  6388. case 0:
  6389. return &v.state
  6390. case 1:
  6391. return &v.sizeCache
  6392. case 2:
  6393. return &v.unknownFields
  6394. default:
  6395. return nil
  6396. }
  6397. }
  6398. file_volume_server_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  6399. switch v := v.(*VolumeUnmountResponse); i {
  6400. case 0:
  6401. return &v.state
  6402. case 1:
  6403. return &v.sizeCache
  6404. case 2:
  6405. return &v.unknownFields
  6406. default:
  6407. return nil
  6408. }
  6409. }
  6410. file_volume_server_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  6411. switch v := v.(*VolumeDeleteRequest); i {
  6412. case 0:
  6413. return &v.state
  6414. case 1:
  6415. return &v.sizeCache
  6416. case 2:
  6417. return &v.unknownFields
  6418. default:
  6419. return nil
  6420. }
  6421. }
  6422. file_volume_server_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  6423. switch v := v.(*VolumeDeleteResponse); i {
  6424. case 0:
  6425. return &v.state
  6426. case 1:
  6427. return &v.sizeCache
  6428. case 2:
  6429. return &v.unknownFields
  6430. default:
  6431. return nil
  6432. }
  6433. }
  6434. file_volume_server_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  6435. switch v := v.(*VolumeMarkReadonlyRequest); i {
  6436. case 0:
  6437. return &v.state
  6438. case 1:
  6439. return &v.sizeCache
  6440. case 2:
  6441. return &v.unknownFields
  6442. default:
  6443. return nil
  6444. }
  6445. }
  6446. file_volume_server_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  6447. switch v := v.(*VolumeMarkReadonlyResponse); i {
  6448. case 0:
  6449. return &v.state
  6450. case 1:
  6451. return &v.sizeCache
  6452. case 2:
  6453. return &v.unknownFields
  6454. default:
  6455. return nil
  6456. }
  6457. }
  6458. file_volume_server_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  6459. switch v := v.(*VolumeMarkWritableRequest); i {
  6460. case 0:
  6461. return &v.state
  6462. case 1:
  6463. return &v.sizeCache
  6464. case 2:
  6465. return &v.unknownFields
  6466. default:
  6467. return nil
  6468. }
  6469. }
  6470. file_volume_server_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  6471. switch v := v.(*VolumeMarkWritableResponse); i {
  6472. case 0:
  6473. return &v.state
  6474. case 1:
  6475. return &v.sizeCache
  6476. case 2:
  6477. return &v.unknownFields
  6478. default:
  6479. return nil
  6480. }
  6481. }
  6482. file_volume_server_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  6483. switch v := v.(*VolumeConfigureRequest); i {
  6484. case 0:
  6485. return &v.state
  6486. case 1:
  6487. return &v.sizeCache
  6488. case 2:
  6489. return &v.unknownFields
  6490. default:
  6491. return nil
  6492. }
  6493. }
  6494. file_volume_server_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  6495. switch v := v.(*VolumeConfigureResponse); i {
  6496. case 0:
  6497. return &v.state
  6498. case 1:
  6499. return &v.sizeCache
  6500. case 2:
  6501. return &v.unknownFields
  6502. default:
  6503. return nil
  6504. }
  6505. }
  6506. file_volume_server_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  6507. switch v := v.(*VolumeStatusRequest); i {
  6508. case 0:
  6509. return &v.state
  6510. case 1:
  6511. return &v.sizeCache
  6512. case 2:
  6513. return &v.unknownFields
  6514. default:
  6515. return nil
  6516. }
  6517. }
  6518. file_volume_server_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  6519. switch v := v.(*VolumeStatusResponse); i {
  6520. case 0:
  6521. return &v.state
  6522. case 1:
  6523. return &v.sizeCache
  6524. case 2:
  6525. return &v.unknownFields
  6526. default:
  6527. return nil
  6528. }
  6529. }
  6530. file_volume_server_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  6531. switch v := v.(*VolumeCopyRequest); i {
  6532. case 0:
  6533. return &v.state
  6534. case 1:
  6535. return &v.sizeCache
  6536. case 2:
  6537. return &v.unknownFields
  6538. default:
  6539. return nil
  6540. }
  6541. }
  6542. file_volume_server_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  6543. switch v := v.(*VolumeCopyResponse); i {
  6544. case 0:
  6545. return &v.state
  6546. case 1:
  6547. return &v.sizeCache
  6548. case 2:
  6549. return &v.unknownFields
  6550. default:
  6551. return nil
  6552. }
  6553. }
  6554. file_volume_server_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  6555. switch v := v.(*CopyFileRequest); i {
  6556. case 0:
  6557. return &v.state
  6558. case 1:
  6559. return &v.sizeCache
  6560. case 2:
  6561. return &v.unknownFields
  6562. default:
  6563. return nil
  6564. }
  6565. }
  6566. file_volume_server_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  6567. switch v := v.(*CopyFileResponse); i {
  6568. case 0:
  6569. return &v.state
  6570. case 1:
  6571. return &v.sizeCache
  6572. case 2:
  6573. return &v.unknownFields
  6574. default:
  6575. return nil
  6576. }
  6577. }
  6578. file_volume_server_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  6579. switch v := v.(*ReadNeedleBlobRequest); i {
  6580. case 0:
  6581. return &v.state
  6582. case 1:
  6583. return &v.sizeCache
  6584. case 2:
  6585. return &v.unknownFields
  6586. default:
  6587. return nil
  6588. }
  6589. }
  6590. file_volume_server_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  6591. switch v := v.(*ReadNeedleBlobResponse); i {
  6592. case 0:
  6593. return &v.state
  6594. case 1:
  6595. return &v.sizeCache
  6596. case 2:
  6597. return &v.unknownFields
  6598. default:
  6599. return nil
  6600. }
  6601. }
  6602. file_volume_server_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  6603. switch v := v.(*ReadNeedleMetaRequest); i {
  6604. case 0:
  6605. return &v.state
  6606. case 1:
  6607. return &v.sizeCache
  6608. case 2:
  6609. return &v.unknownFields
  6610. default:
  6611. return nil
  6612. }
  6613. }
  6614. file_volume_server_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  6615. switch v := v.(*ReadNeedleMetaResponse); i {
  6616. case 0:
  6617. return &v.state
  6618. case 1:
  6619. return &v.sizeCache
  6620. case 2:
  6621. return &v.unknownFields
  6622. default:
  6623. return nil
  6624. }
  6625. }
  6626. file_volume_server_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  6627. switch v := v.(*WriteNeedleBlobRequest); i {
  6628. case 0:
  6629. return &v.state
  6630. case 1:
  6631. return &v.sizeCache
  6632. case 2:
  6633. return &v.unknownFields
  6634. default:
  6635. return nil
  6636. }
  6637. }
  6638. file_volume_server_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  6639. switch v := v.(*WriteNeedleBlobResponse); i {
  6640. case 0:
  6641. return &v.state
  6642. case 1:
  6643. return &v.sizeCache
  6644. case 2:
  6645. return &v.unknownFields
  6646. default:
  6647. return nil
  6648. }
  6649. }
  6650. file_volume_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  6651. switch v := v.(*ReadAllNeedlesRequest); i {
  6652. case 0:
  6653. return &v.state
  6654. case 1:
  6655. return &v.sizeCache
  6656. case 2:
  6657. return &v.unknownFields
  6658. default:
  6659. return nil
  6660. }
  6661. }
  6662. file_volume_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  6663. switch v := v.(*ReadAllNeedlesResponse); i {
  6664. case 0:
  6665. return &v.state
  6666. case 1:
  6667. return &v.sizeCache
  6668. case 2:
  6669. return &v.unknownFields
  6670. default:
  6671. return nil
  6672. }
  6673. }
  6674. file_volume_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  6675. switch v := v.(*VolumeTailSenderRequest); i {
  6676. case 0:
  6677. return &v.state
  6678. case 1:
  6679. return &v.sizeCache
  6680. case 2:
  6681. return &v.unknownFields
  6682. default:
  6683. return nil
  6684. }
  6685. }
  6686. file_volume_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  6687. switch v := v.(*VolumeTailSenderResponse); i {
  6688. case 0:
  6689. return &v.state
  6690. case 1:
  6691. return &v.sizeCache
  6692. case 2:
  6693. return &v.unknownFields
  6694. default:
  6695. return nil
  6696. }
  6697. }
  6698. file_volume_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  6699. switch v := v.(*VolumeTailReceiverRequest); i {
  6700. case 0:
  6701. return &v.state
  6702. case 1:
  6703. return &v.sizeCache
  6704. case 2:
  6705. return &v.unknownFields
  6706. default:
  6707. return nil
  6708. }
  6709. }
  6710. file_volume_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  6711. switch v := v.(*VolumeTailReceiverResponse); i {
  6712. case 0:
  6713. return &v.state
  6714. case 1:
  6715. return &v.sizeCache
  6716. case 2:
  6717. return &v.unknownFields
  6718. default:
  6719. return nil
  6720. }
  6721. }
  6722. file_volume_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  6723. switch v := v.(*VolumeEcShardsGenerateRequest); i {
  6724. case 0:
  6725. return &v.state
  6726. case 1:
  6727. return &v.sizeCache
  6728. case 2:
  6729. return &v.unknownFields
  6730. default:
  6731. return nil
  6732. }
  6733. }
  6734. file_volume_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  6735. switch v := v.(*VolumeEcShardsGenerateResponse); i {
  6736. case 0:
  6737. return &v.state
  6738. case 1:
  6739. return &v.sizeCache
  6740. case 2:
  6741. return &v.unknownFields
  6742. default:
  6743. return nil
  6744. }
  6745. }
  6746. file_volume_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  6747. switch v := v.(*VolumeEcShardsRebuildRequest); i {
  6748. case 0:
  6749. return &v.state
  6750. case 1:
  6751. return &v.sizeCache
  6752. case 2:
  6753. return &v.unknownFields
  6754. default:
  6755. return nil
  6756. }
  6757. }
  6758. file_volume_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  6759. switch v := v.(*VolumeEcShardsRebuildResponse); i {
  6760. case 0:
  6761. return &v.state
  6762. case 1:
  6763. return &v.sizeCache
  6764. case 2:
  6765. return &v.unknownFields
  6766. default:
  6767. return nil
  6768. }
  6769. }
  6770. file_volume_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  6771. switch v := v.(*VolumeEcShardsCopyRequest); i {
  6772. case 0:
  6773. return &v.state
  6774. case 1:
  6775. return &v.sizeCache
  6776. case 2:
  6777. return &v.unknownFields
  6778. default:
  6779. return nil
  6780. }
  6781. }
  6782. file_volume_server_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  6783. switch v := v.(*VolumeEcShardsCopyResponse); i {
  6784. case 0:
  6785. return &v.state
  6786. case 1:
  6787. return &v.sizeCache
  6788. case 2:
  6789. return &v.unknownFields
  6790. default:
  6791. return nil
  6792. }
  6793. }
  6794. file_volume_server_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  6795. switch v := v.(*VolumeEcShardsDeleteRequest); i {
  6796. case 0:
  6797. return &v.state
  6798. case 1:
  6799. return &v.sizeCache
  6800. case 2:
  6801. return &v.unknownFields
  6802. default:
  6803. return nil
  6804. }
  6805. }
  6806. file_volume_server_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  6807. switch v := v.(*VolumeEcShardsDeleteResponse); i {
  6808. case 0:
  6809. return &v.state
  6810. case 1:
  6811. return &v.sizeCache
  6812. case 2:
  6813. return &v.unknownFields
  6814. default:
  6815. return nil
  6816. }
  6817. }
  6818. file_volume_server_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  6819. switch v := v.(*VolumeEcShardsMountRequest); i {
  6820. case 0:
  6821. return &v.state
  6822. case 1:
  6823. return &v.sizeCache
  6824. case 2:
  6825. return &v.unknownFields
  6826. default:
  6827. return nil
  6828. }
  6829. }
  6830. file_volume_server_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  6831. switch v := v.(*VolumeEcShardsMountResponse); i {
  6832. case 0:
  6833. return &v.state
  6834. case 1:
  6835. return &v.sizeCache
  6836. case 2:
  6837. return &v.unknownFields
  6838. default:
  6839. return nil
  6840. }
  6841. }
  6842. file_volume_server_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  6843. switch v := v.(*VolumeEcShardsUnmountRequest); i {
  6844. case 0:
  6845. return &v.state
  6846. case 1:
  6847. return &v.sizeCache
  6848. case 2:
  6849. return &v.unknownFields
  6850. default:
  6851. return nil
  6852. }
  6853. }
  6854. file_volume_server_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  6855. switch v := v.(*VolumeEcShardsUnmountResponse); i {
  6856. case 0:
  6857. return &v.state
  6858. case 1:
  6859. return &v.sizeCache
  6860. case 2:
  6861. return &v.unknownFields
  6862. default:
  6863. return nil
  6864. }
  6865. }
  6866. file_volume_server_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  6867. switch v := v.(*VolumeEcShardReadRequest); i {
  6868. case 0:
  6869. return &v.state
  6870. case 1:
  6871. return &v.sizeCache
  6872. case 2:
  6873. return &v.unknownFields
  6874. default:
  6875. return nil
  6876. }
  6877. }
  6878. file_volume_server_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  6879. switch v := v.(*VolumeEcShardReadResponse); i {
  6880. case 0:
  6881. return &v.state
  6882. case 1:
  6883. return &v.sizeCache
  6884. case 2:
  6885. return &v.unknownFields
  6886. default:
  6887. return nil
  6888. }
  6889. }
  6890. file_volume_server_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  6891. switch v := v.(*VolumeEcBlobDeleteRequest); i {
  6892. case 0:
  6893. return &v.state
  6894. case 1:
  6895. return &v.sizeCache
  6896. case 2:
  6897. return &v.unknownFields
  6898. default:
  6899. return nil
  6900. }
  6901. }
  6902. file_volume_server_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  6903. switch v := v.(*VolumeEcBlobDeleteResponse); i {
  6904. case 0:
  6905. return &v.state
  6906. case 1:
  6907. return &v.sizeCache
  6908. case 2:
  6909. return &v.unknownFields
  6910. default:
  6911. return nil
  6912. }
  6913. }
  6914. file_volume_server_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  6915. switch v := v.(*VolumeEcShardsToVolumeRequest); i {
  6916. case 0:
  6917. return &v.state
  6918. case 1:
  6919. return &v.sizeCache
  6920. case 2:
  6921. return &v.unknownFields
  6922. default:
  6923. return nil
  6924. }
  6925. }
  6926. file_volume_server_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  6927. switch v := v.(*VolumeEcShardsToVolumeResponse); i {
  6928. case 0:
  6929. return &v.state
  6930. case 1:
  6931. return &v.sizeCache
  6932. case 2:
  6933. return &v.unknownFields
  6934. default:
  6935. return nil
  6936. }
  6937. }
  6938. file_volume_server_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
  6939. switch v := v.(*ReadVolumeFileStatusRequest); i {
  6940. case 0:
  6941. return &v.state
  6942. case 1:
  6943. return &v.sizeCache
  6944. case 2:
  6945. return &v.unknownFields
  6946. default:
  6947. return nil
  6948. }
  6949. }
  6950. file_volume_server_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
  6951. switch v := v.(*ReadVolumeFileStatusResponse); i {
  6952. case 0:
  6953. return &v.state
  6954. case 1:
  6955. return &v.sizeCache
  6956. case 2:
  6957. return &v.unknownFields
  6958. default:
  6959. return nil
  6960. }
  6961. }
  6962. file_volume_server_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
  6963. switch v := v.(*DiskStatus); i {
  6964. case 0:
  6965. return &v.state
  6966. case 1:
  6967. return &v.sizeCache
  6968. case 2:
  6969. return &v.unknownFields
  6970. default:
  6971. return nil
  6972. }
  6973. }
  6974. file_volume_server_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
  6975. switch v := v.(*MemStatus); i {
  6976. case 0:
  6977. return &v.state
  6978. case 1:
  6979. return &v.sizeCache
  6980. case 2:
  6981. return &v.unknownFields
  6982. default:
  6983. return nil
  6984. }
  6985. }
  6986. file_volume_server_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
  6987. switch v := v.(*RemoteFile); i {
  6988. case 0:
  6989. return &v.state
  6990. case 1:
  6991. return &v.sizeCache
  6992. case 2:
  6993. return &v.unknownFields
  6994. default:
  6995. return nil
  6996. }
  6997. }
  6998. file_volume_server_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
  6999. switch v := v.(*VolumeInfo); i {
  7000. case 0:
  7001. return &v.state
  7002. case 1:
  7003. return &v.sizeCache
  7004. case 2:
  7005. return &v.unknownFields
  7006. default:
  7007. return nil
  7008. }
  7009. }
  7010. file_volume_server_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
  7011. switch v := v.(*VolumeTierMoveDatToRemoteRequest); i {
  7012. case 0:
  7013. return &v.state
  7014. case 1:
  7015. return &v.sizeCache
  7016. case 2:
  7017. return &v.unknownFields
  7018. default:
  7019. return nil
  7020. }
  7021. }
  7022. file_volume_server_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
  7023. switch v := v.(*VolumeTierMoveDatToRemoteResponse); i {
  7024. case 0:
  7025. return &v.state
  7026. case 1:
  7027. return &v.sizeCache
  7028. case 2:
  7029. return &v.unknownFields
  7030. default:
  7031. return nil
  7032. }
  7033. }
  7034. file_volume_server_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
  7035. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); i {
  7036. case 0:
  7037. return &v.state
  7038. case 1:
  7039. return &v.sizeCache
  7040. case 2:
  7041. return &v.unknownFields
  7042. default:
  7043. return nil
  7044. }
  7045. }
  7046. file_volume_server_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
  7047. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); i {
  7048. case 0:
  7049. return &v.state
  7050. case 1:
  7051. return &v.sizeCache
  7052. case 2:
  7053. return &v.unknownFields
  7054. default:
  7055. return nil
  7056. }
  7057. }
  7058. file_volume_server_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
  7059. switch v := v.(*VolumeServerStatusRequest); i {
  7060. case 0:
  7061. return &v.state
  7062. case 1:
  7063. return &v.sizeCache
  7064. case 2:
  7065. return &v.unknownFields
  7066. default:
  7067. return nil
  7068. }
  7069. }
  7070. file_volume_server_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
  7071. switch v := v.(*VolumeServerStatusResponse); i {
  7072. case 0:
  7073. return &v.state
  7074. case 1:
  7075. return &v.sizeCache
  7076. case 2:
  7077. return &v.unknownFields
  7078. default:
  7079. return nil
  7080. }
  7081. }
  7082. file_volume_server_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
  7083. switch v := v.(*VolumeServerLeaveRequest); i {
  7084. case 0:
  7085. return &v.state
  7086. case 1:
  7087. return &v.sizeCache
  7088. case 2:
  7089. return &v.unknownFields
  7090. default:
  7091. return nil
  7092. }
  7093. }
  7094. file_volume_server_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
  7095. switch v := v.(*VolumeServerLeaveResponse); i {
  7096. case 0:
  7097. return &v.state
  7098. case 1:
  7099. return &v.sizeCache
  7100. case 2:
  7101. return &v.unknownFields
  7102. default:
  7103. return nil
  7104. }
  7105. }
  7106. file_volume_server_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
  7107. switch v := v.(*FetchAndWriteNeedleRequest); i {
  7108. case 0:
  7109. return &v.state
  7110. case 1:
  7111. return &v.sizeCache
  7112. case 2:
  7113. return &v.unknownFields
  7114. default:
  7115. return nil
  7116. }
  7117. }
  7118. file_volume_server_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
  7119. switch v := v.(*FetchAndWriteNeedleResponse); i {
  7120. case 0:
  7121. return &v.state
  7122. case 1:
  7123. return &v.sizeCache
  7124. case 2:
  7125. return &v.unknownFields
  7126. default:
  7127. return nil
  7128. }
  7129. }
  7130. file_volume_server_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
  7131. switch v := v.(*QueryRequest); i {
  7132. case 0:
  7133. return &v.state
  7134. case 1:
  7135. return &v.sizeCache
  7136. case 2:
  7137. return &v.unknownFields
  7138. default:
  7139. return nil
  7140. }
  7141. }
  7142. file_volume_server_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
  7143. switch v := v.(*QueriedStripe); i {
  7144. case 0:
  7145. return &v.state
  7146. case 1:
  7147. return &v.sizeCache
  7148. case 2:
  7149. return &v.unknownFields
  7150. default:
  7151. return nil
  7152. }
  7153. }
  7154. file_volume_server_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
  7155. switch v := v.(*VolumeNeedleStatusRequest); i {
  7156. case 0:
  7157. return &v.state
  7158. case 1:
  7159. return &v.sizeCache
  7160. case 2:
  7161. return &v.unknownFields
  7162. default:
  7163. return nil
  7164. }
  7165. }
  7166. file_volume_server_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
  7167. switch v := v.(*VolumeNeedleStatusResponse); i {
  7168. case 0:
  7169. return &v.state
  7170. case 1:
  7171. return &v.sizeCache
  7172. case 2:
  7173. return &v.unknownFields
  7174. default:
  7175. return nil
  7176. }
  7177. }
  7178. file_volume_server_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
  7179. switch v := v.(*PingRequest); i {
  7180. case 0:
  7181. return &v.state
  7182. case 1:
  7183. return &v.sizeCache
  7184. case 2:
  7185. return &v.unknownFields
  7186. default:
  7187. return nil
  7188. }
  7189. }
  7190. file_volume_server_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
  7191. switch v := v.(*PingResponse); i {
  7192. case 0:
  7193. return &v.state
  7194. case 1:
  7195. return &v.sizeCache
  7196. case 2:
  7197. return &v.unknownFields
  7198. default:
  7199. return nil
  7200. }
  7201. }
  7202. file_volume_server_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} {
  7203. switch v := v.(*FetchAndWriteNeedleRequest_Replica); i {
  7204. case 0:
  7205. return &v.state
  7206. case 1:
  7207. return &v.sizeCache
  7208. case 2:
  7209. return &v.unknownFields
  7210. default:
  7211. return nil
  7212. }
  7213. }
  7214. file_volume_server_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} {
  7215. switch v := v.(*QueryRequest_Filter); i {
  7216. case 0:
  7217. return &v.state
  7218. case 1:
  7219. return &v.sizeCache
  7220. case 2:
  7221. return &v.unknownFields
  7222. default:
  7223. return nil
  7224. }
  7225. }
  7226. file_volume_server_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} {
  7227. switch v := v.(*QueryRequest_InputSerialization); i {
  7228. case 0:
  7229. return &v.state
  7230. case 1:
  7231. return &v.sizeCache
  7232. case 2:
  7233. return &v.unknownFields
  7234. default:
  7235. return nil
  7236. }
  7237. }
  7238. file_volume_server_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} {
  7239. switch v := v.(*QueryRequest_OutputSerialization); i {
  7240. case 0:
  7241. return &v.state
  7242. case 1:
  7243. return &v.sizeCache
  7244. case 2:
  7245. return &v.unknownFields
  7246. default:
  7247. return nil
  7248. }
  7249. }
  7250. file_volume_server_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} {
  7251. switch v := v.(*QueryRequest_InputSerialization_CSVInput); i {
  7252. case 0:
  7253. return &v.state
  7254. case 1:
  7255. return &v.sizeCache
  7256. case 2:
  7257. return &v.unknownFields
  7258. default:
  7259. return nil
  7260. }
  7261. }
  7262. file_volume_server_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} {
  7263. switch v := v.(*QueryRequest_InputSerialization_JSONInput); i {
  7264. case 0:
  7265. return &v.state
  7266. case 1:
  7267. return &v.sizeCache
  7268. case 2:
  7269. return &v.unknownFields
  7270. default:
  7271. return nil
  7272. }
  7273. }
  7274. file_volume_server_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} {
  7275. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  7276. case 0:
  7277. return &v.state
  7278. case 1:
  7279. return &v.sizeCache
  7280. case 2:
  7281. return &v.unknownFields
  7282. default:
  7283. return nil
  7284. }
  7285. }
  7286. file_volume_server_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} {
  7287. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  7288. case 0:
  7289. return &v.state
  7290. case 1:
  7291. return &v.sizeCache
  7292. case 2:
  7293. return &v.unknownFields
  7294. default:
  7295. return nil
  7296. }
  7297. }
  7298. file_volume_server_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} {
  7299. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  7300. case 0:
  7301. return &v.state
  7302. case 1:
  7303. return &v.sizeCache
  7304. case 2:
  7305. return &v.unknownFields
  7306. default:
  7307. return nil
  7308. }
  7309. }
  7310. }
  7311. type x struct{}
  7312. out := protoimpl.TypeBuilder{
  7313. File: protoimpl.DescBuilder{
  7314. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  7315. RawDescriptor: file_volume_server_proto_rawDesc,
  7316. NumEnums: 0,
  7317. NumMessages: 99,
  7318. NumExtensions: 0,
  7319. NumServices: 1,
  7320. },
  7321. GoTypes: file_volume_server_proto_goTypes,
  7322. DependencyIndexes: file_volume_server_proto_depIdxs,
  7323. MessageInfos: file_volume_server_proto_msgTypes,
  7324. }.Build()
  7325. File_volume_server_proto = out.File
  7326. file_volume_server_proto_rawDesc = nil
  7327. file_volume_server_proto_goTypes = nil
  7328. file_volume_server_proto_depIdxs = nil
  7329. }