volume_server.pb.go 305 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.32.0
  4. // protoc v4.25.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. FileCount uint64 `protobuf:"varint,3,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  1412. FileDeletedCount uint64 `protobuf:"varint,4,opt,name=file_deleted_count,json=fileDeletedCount,proto3" json:"file_deleted_count,omitempty"`
  1413. }
  1414. func (x *VolumeStatusResponse) Reset() {
  1415. *x = VolumeStatusResponse{}
  1416. if protoimpl.UnsafeEnabled {
  1417. mi := &file_volume_server_proto_msgTypes[33]
  1418. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1419. ms.StoreMessageInfo(mi)
  1420. }
  1421. }
  1422. func (x *VolumeStatusResponse) String() string {
  1423. return protoimpl.X.MessageStringOf(x)
  1424. }
  1425. func (*VolumeStatusResponse) ProtoMessage() {}
  1426. func (x *VolumeStatusResponse) ProtoReflect() protoreflect.Message {
  1427. mi := &file_volume_server_proto_msgTypes[33]
  1428. if protoimpl.UnsafeEnabled && x != nil {
  1429. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1430. if ms.LoadMessageInfo() == nil {
  1431. ms.StoreMessageInfo(mi)
  1432. }
  1433. return ms
  1434. }
  1435. return mi.MessageOf(x)
  1436. }
  1437. // Deprecated: Use VolumeStatusResponse.ProtoReflect.Descriptor instead.
  1438. func (*VolumeStatusResponse) Descriptor() ([]byte, []int) {
  1439. return file_volume_server_proto_rawDescGZIP(), []int{33}
  1440. }
  1441. func (x *VolumeStatusResponse) GetIsReadOnly() bool {
  1442. if x != nil {
  1443. return x.IsReadOnly
  1444. }
  1445. return false
  1446. }
  1447. func (x *VolumeStatusResponse) GetVolumeSize() uint64 {
  1448. if x != nil {
  1449. return x.VolumeSize
  1450. }
  1451. return 0
  1452. }
  1453. func (x *VolumeStatusResponse) GetFileCount() uint64 {
  1454. if x != nil {
  1455. return x.FileCount
  1456. }
  1457. return 0
  1458. }
  1459. func (x *VolumeStatusResponse) GetFileDeletedCount() uint64 {
  1460. if x != nil {
  1461. return x.FileDeletedCount
  1462. }
  1463. return 0
  1464. }
  1465. type VolumeCopyRequest struct {
  1466. state protoimpl.MessageState
  1467. sizeCache protoimpl.SizeCache
  1468. unknownFields protoimpl.UnknownFields
  1469. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1470. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1471. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  1472. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1473. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  1474. DiskType string `protobuf:"bytes,6,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  1475. IoBytePerSecond int64 `protobuf:"varint,7,opt,name=io_byte_per_second,json=ioBytePerSecond,proto3" json:"io_byte_per_second,omitempty"`
  1476. }
  1477. func (x *VolumeCopyRequest) Reset() {
  1478. *x = VolumeCopyRequest{}
  1479. if protoimpl.UnsafeEnabled {
  1480. mi := &file_volume_server_proto_msgTypes[34]
  1481. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1482. ms.StoreMessageInfo(mi)
  1483. }
  1484. }
  1485. func (x *VolumeCopyRequest) String() string {
  1486. return protoimpl.X.MessageStringOf(x)
  1487. }
  1488. func (*VolumeCopyRequest) ProtoMessage() {}
  1489. func (x *VolumeCopyRequest) ProtoReflect() protoreflect.Message {
  1490. mi := &file_volume_server_proto_msgTypes[34]
  1491. if protoimpl.UnsafeEnabled && x != nil {
  1492. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1493. if ms.LoadMessageInfo() == nil {
  1494. ms.StoreMessageInfo(mi)
  1495. }
  1496. return ms
  1497. }
  1498. return mi.MessageOf(x)
  1499. }
  1500. // Deprecated: Use VolumeCopyRequest.ProtoReflect.Descriptor instead.
  1501. func (*VolumeCopyRequest) Descriptor() ([]byte, []int) {
  1502. return file_volume_server_proto_rawDescGZIP(), []int{34}
  1503. }
  1504. func (x *VolumeCopyRequest) GetVolumeId() uint32 {
  1505. if x != nil {
  1506. return x.VolumeId
  1507. }
  1508. return 0
  1509. }
  1510. func (x *VolumeCopyRequest) GetCollection() string {
  1511. if x != nil {
  1512. return x.Collection
  1513. }
  1514. return ""
  1515. }
  1516. func (x *VolumeCopyRequest) GetReplication() string {
  1517. if x != nil {
  1518. return x.Replication
  1519. }
  1520. return ""
  1521. }
  1522. func (x *VolumeCopyRequest) GetTtl() string {
  1523. if x != nil {
  1524. return x.Ttl
  1525. }
  1526. return ""
  1527. }
  1528. func (x *VolumeCopyRequest) GetSourceDataNode() string {
  1529. if x != nil {
  1530. return x.SourceDataNode
  1531. }
  1532. return ""
  1533. }
  1534. func (x *VolumeCopyRequest) GetDiskType() string {
  1535. if x != nil {
  1536. return x.DiskType
  1537. }
  1538. return ""
  1539. }
  1540. func (x *VolumeCopyRequest) GetIoBytePerSecond() int64 {
  1541. if x != nil {
  1542. return x.IoBytePerSecond
  1543. }
  1544. return 0
  1545. }
  1546. type VolumeCopyResponse struct {
  1547. state protoimpl.MessageState
  1548. sizeCache protoimpl.SizeCache
  1549. unknownFields protoimpl.UnknownFields
  1550. LastAppendAtNs uint64 `protobuf:"varint,1,opt,name=last_append_at_ns,json=lastAppendAtNs,proto3" json:"last_append_at_ns,omitempty"`
  1551. ProcessedBytes int64 `protobuf:"varint,2,opt,name=processed_bytes,json=processedBytes,proto3" json:"processed_bytes,omitempty"`
  1552. }
  1553. func (x *VolumeCopyResponse) Reset() {
  1554. *x = VolumeCopyResponse{}
  1555. if protoimpl.UnsafeEnabled {
  1556. mi := &file_volume_server_proto_msgTypes[35]
  1557. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1558. ms.StoreMessageInfo(mi)
  1559. }
  1560. }
  1561. func (x *VolumeCopyResponse) String() string {
  1562. return protoimpl.X.MessageStringOf(x)
  1563. }
  1564. func (*VolumeCopyResponse) ProtoMessage() {}
  1565. func (x *VolumeCopyResponse) ProtoReflect() protoreflect.Message {
  1566. mi := &file_volume_server_proto_msgTypes[35]
  1567. if protoimpl.UnsafeEnabled && x != nil {
  1568. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1569. if ms.LoadMessageInfo() == nil {
  1570. ms.StoreMessageInfo(mi)
  1571. }
  1572. return ms
  1573. }
  1574. return mi.MessageOf(x)
  1575. }
  1576. // Deprecated: Use VolumeCopyResponse.ProtoReflect.Descriptor instead.
  1577. func (*VolumeCopyResponse) Descriptor() ([]byte, []int) {
  1578. return file_volume_server_proto_rawDescGZIP(), []int{35}
  1579. }
  1580. func (x *VolumeCopyResponse) GetLastAppendAtNs() uint64 {
  1581. if x != nil {
  1582. return x.LastAppendAtNs
  1583. }
  1584. return 0
  1585. }
  1586. func (x *VolumeCopyResponse) GetProcessedBytes() int64 {
  1587. if x != nil {
  1588. return x.ProcessedBytes
  1589. }
  1590. return 0
  1591. }
  1592. type CopyFileRequest struct {
  1593. state protoimpl.MessageState
  1594. sizeCache protoimpl.SizeCache
  1595. unknownFields protoimpl.UnknownFields
  1596. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1597. Ext string `protobuf:"bytes,2,opt,name=ext,proto3" json:"ext,omitempty"`
  1598. CompactionRevision uint32 `protobuf:"varint,3,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  1599. StopOffset uint64 `protobuf:"varint,4,opt,name=stop_offset,json=stopOffset,proto3" json:"stop_offset,omitempty"`
  1600. Collection string `protobuf:"bytes,5,opt,name=collection,proto3" json:"collection,omitempty"`
  1601. IsEcVolume bool `protobuf:"varint,6,opt,name=is_ec_volume,json=isEcVolume,proto3" json:"is_ec_volume,omitempty"`
  1602. IgnoreSourceFileNotFound bool `protobuf:"varint,7,opt,name=ignore_source_file_not_found,json=ignoreSourceFileNotFound,proto3" json:"ignore_source_file_not_found,omitempty"`
  1603. }
  1604. func (x *CopyFileRequest) Reset() {
  1605. *x = CopyFileRequest{}
  1606. if protoimpl.UnsafeEnabled {
  1607. mi := &file_volume_server_proto_msgTypes[36]
  1608. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1609. ms.StoreMessageInfo(mi)
  1610. }
  1611. }
  1612. func (x *CopyFileRequest) String() string {
  1613. return protoimpl.X.MessageStringOf(x)
  1614. }
  1615. func (*CopyFileRequest) ProtoMessage() {}
  1616. func (x *CopyFileRequest) ProtoReflect() protoreflect.Message {
  1617. mi := &file_volume_server_proto_msgTypes[36]
  1618. if protoimpl.UnsafeEnabled && x != nil {
  1619. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1620. if ms.LoadMessageInfo() == nil {
  1621. ms.StoreMessageInfo(mi)
  1622. }
  1623. return ms
  1624. }
  1625. return mi.MessageOf(x)
  1626. }
  1627. // Deprecated: Use CopyFileRequest.ProtoReflect.Descriptor instead.
  1628. func (*CopyFileRequest) Descriptor() ([]byte, []int) {
  1629. return file_volume_server_proto_rawDescGZIP(), []int{36}
  1630. }
  1631. func (x *CopyFileRequest) GetVolumeId() uint32 {
  1632. if x != nil {
  1633. return x.VolumeId
  1634. }
  1635. return 0
  1636. }
  1637. func (x *CopyFileRequest) GetExt() string {
  1638. if x != nil {
  1639. return x.Ext
  1640. }
  1641. return ""
  1642. }
  1643. func (x *CopyFileRequest) GetCompactionRevision() uint32 {
  1644. if x != nil {
  1645. return x.CompactionRevision
  1646. }
  1647. return 0
  1648. }
  1649. func (x *CopyFileRequest) GetStopOffset() uint64 {
  1650. if x != nil {
  1651. return x.StopOffset
  1652. }
  1653. return 0
  1654. }
  1655. func (x *CopyFileRequest) GetCollection() string {
  1656. if x != nil {
  1657. return x.Collection
  1658. }
  1659. return ""
  1660. }
  1661. func (x *CopyFileRequest) GetIsEcVolume() bool {
  1662. if x != nil {
  1663. return x.IsEcVolume
  1664. }
  1665. return false
  1666. }
  1667. func (x *CopyFileRequest) GetIgnoreSourceFileNotFound() bool {
  1668. if x != nil {
  1669. return x.IgnoreSourceFileNotFound
  1670. }
  1671. return false
  1672. }
  1673. type CopyFileResponse struct {
  1674. state protoimpl.MessageState
  1675. sizeCache protoimpl.SizeCache
  1676. unknownFields protoimpl.UnknownFields
  1677. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  1678. ModifiedTsNs int64 `protobuf:"varint,2,opt,name=modified_ts_ns,json=modifiedTsNs,proto3" json:"modified_ts_ns,omitempty"`
  1679. }
  1680. func (x *CopyFileResponse) Reset() {
  1681. *x = CopyFileResponse{}
  1682. if protoimpl.UnsafeEnabled {
  1683. mi := &file_volume_server_proto_msgTypes[37]
  1684. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1685. ms.StoreMessageInfo(mi)
  1686. }
  1687. }
  1688. func (x *CopyFileResponse) String() string {
  1689. return protoimpl.X.MessageStringOf(x)
  1690. }
  1691. func (*CopyFileResponse) ProtoMessage() {}
  1692. func (x *CopyFileResponse) ProtoReflect() protoreflect.Message {
  1693. mi := &file_volume_server_proto_msgTypes[37]
  1694. if protoimpl.UnsafeEnabled && x != nil {
  1695. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1696. if ms.LoadMessageInfo() == nil {
  1697. ms.StoreMessageInfo(mi)
  1698. }
  1699. return ms
  1700. }
  1701. return mi.MessageOf(x)
  1702. }
  1703. // Deprecated: Use CopyFileResponse.ProtoReflect.Descriptor instead.
  1704. func (*CopyFileResponse) Descriptor() ([]byte, []int) {
  1705. return file_volume_server_proto_rawDescGZIP(), []int{37}
  1706. }
  1707. func (x *CopyFileResponse) GetFileContent() []byte {
  1708. if x != nil {
  1709. return x.FileContent
  1710. }
  1711. return nil
  1712. }
  1713. func (x *CopyFileResponse) GetModifiedTsNs() int64 {
  1714. if x != nil {
  1715. return x.ModifiedTsNs
  1716. }
  1717. return 0
  1718. }
  1719. type ReadNeedleBlobRequest struct {
  1720. state protoimpl.MessageState
  1721. sizeCache protoimpl.SizeCache
  1722. unknownFields protoimpl.UnknownFields
  1723. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1724. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"` // actual offset
  1725. Size int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  1726. }
  1727. func (x *ReadNeedleBlobRequest) Reset() {
  1728. *x = ReadNeedleBlobRequest{}
  1729. if protoimpl.UnsafeEnabled {
  1730. mi := &file_volume_server_proto_msgTypes[38]
  1731. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1732. ms.StoreMessageInfo(mi)
  1733. }
  1734. }
  1735. func (x *ReadNeedleBlobRequest) String() string {
  1736. return protoimpl.X.MessageStringOf(x)
  1737. }
  1738. func (*ReadNeedleBlobRequest) ProtoMessage() {}
  1739. func (x *ReadNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1740. mi := &file_volume_server_proto_msgTypes[38]
  1741. if protoimpl.UnsafeEnabled && x != nil {
  1742. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1743. if ms.LoadMessageInfo() == nil {
  1744. ms.StoreMessageInfo(mi)
  1745. }
  1746. return ms
  1747. }
  1748. return mi.MessageOf(x)
  1749. }
  1750. // Deprecated: Use ReadNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1751. func (*ReadNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1752. return file_volume_server_proto_rawDescGZIP(), []int{38}
  1753. }
  1754. func (x *ReadNeedleBlobRequest) GetVolumeId() uint32 {
  1755. if x != nil {
  1756. return x.VolumeId
  1757. }
  1758. return 0
  1759. }
  1760. func (x *ReadNeedleBlobRequest) GetOffset() int64 {
  1761. if x != nil {
  1762. return x.Offset
  1763. }
  1764. return 0
  1765. }
  1766. func (x *ReadNeedleBlobRequest) GetSize() int32 {
  1767. if x != nil {
  1768. return x.Size
  1769. }
  1770. return 0
  1771. }
  1772. type ReadNeedleBlobResponse struct {
  1773. state protoimpl.MessageState
  1774. sizeCache protoimpl.SizeCache
  1775. unknownFields protoimpl.UnknownFields
  1776. NeedleBlob []byte `protobuf:"bytes,1,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1777. }
  1778. func (x *ReadNeedleBlobResponse) Reset() {
  1779. *x = ReadNeedleBlobResponse{}
  1780. if protoimpl.UnsafeEnabled {
  1781. mi := &file_volume_server_proto_msgTypes[39]
  1782. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1783. ms.StoreMessageInfo(mi)
  1784. }
  1785. }
  1786. func (x *ReadNeedleBlobResponse) String() string {
  1787. return protoimpl.X.MessageStringOf(x)
  1788. }
  1789. func (*ReadNeedleBlobResponse) ProtoMessage() {}
  1790. func (x *ReadNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  1791. mi := &file_volume_server_proto_msgTypes[39]
  1792. if protoimpl.UnsafeEnabled && x != nil {
  1793. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1794. if ms.LoadMessageInfo() == nil {
  1795. ms.StoreMessageInfo(mi)
  1796. }
  1797. return ms
  1798. }
  1799. return mi.MessageOf(x)
  1800. }
  1801. // Deprecated: Use ReadNeedleBlobResponse.ProtoReflect.Descriptor instead.
  1802. func (*ReadNeedleBlobResponse) Descriptor() ([]byte, []int) {
  1803. return file_volume_server_proto_rawDescGZIP(), []int{39}
  1804. }
  1805. func (x *ReadNeedleBlobResponse) GetNeedleBlob() []byte {
  1806. if x != nil {
  1807. return x.NeedleBlob
  1808. }
  1809. return nil
  1810. }
  1811. type ReadNeedleMetaRequest struct {
  1812. state protoimpl.MessageState
  1813. sizeCache protoimpl.SizeCache
  1814. unknownFields protoimpl.UnknownFields
  1815. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1816. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1817. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"` // actual offset
  1818. Size int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  1819. }
  1820. func (x *ReadNeedleMetaRequest) Reset() {
  1821. *x = ReadNeedleMetaRequest{}
  1822. if protoimpl.UnsafeEnabled {
  1823. mi := &file_volume_server_proto_msgTypes[40]
  1824. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1825. ms.StoreMessageInfo(mi)
  1826. }
  1827. }
  1828. func (x *ReadNeedleMetaRequest) String() string {
  1829. return protoimpl.X.MessageStringOf(x)
  1830. }
  1831. func (*ReadNeedleMetaRequest) ProtoMessage() {}
  1832. func (x *ReadNeedleMetaRequest) ProtoReflect() protoreflect.Message {
  1833. mi := &file_volume_server_proto_msgTypes[40]
  1834. if protoimpl.UnsafeEnabled && x != nil {
  1835. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1836. if ms.LoadMessageInfo() == nil {
  1837. ms.StoreMessageInfo(mi)
  1838. }
  1839. return ms
  1840. }
  1841. return mi.MessageOf(x)
  1842. }
  1843. // Deprecated: Use ReadNeedleMetaRequest.ProtoReflect.Descriptor instead.
  1844. func (*ReadNeedleMetaRequest) Descriptor() ([]byte, []int) {
  1845. return file_volume_server_proto_rawDescGZIP(), []int{40}
  1846. }
  1847. func (x *ReadNeedleMetaRequest) GetVolumeId() uint32 {
  1848. if x != nil {
  1849. return x.VolumeId
  1850. }
  1851. return 0
  1852. }
  1853. func (x *ReadNeedleMetaRequest) GetNeedleId() uint64 {
  1854. if x != nil {
  1855. return x.NeedleId
  1856. }
  1857. return 0
  1858. }
  1859. func (x *ReadNeedleMetaRequest) GetOffset() int64 {
  1860. if x != nil {
  1861. return x.Offset
  1862. }
  1863. return 0
  1864. }
  1865. func (x *ReadNeedleMetaRequest) GetSize() int32 {
  1866. if x != nil {
  1867. return x.Size
  1868. }
  1869. return 0
  1870. }
  1871. type ReadNeedleMetaResponse struct {
  1872. state protoimpl.MessageState
  1873. sizeCache protoimpl.SizeCache
  1874. unknownFields protoimpl.UnknownFields
  1875. Cookie uint32 `protobuf:"varint,1,opt,name=cookie,proto3" json:"cookie,omitempty"`
  1876. LastModified uint64 `protobuf:"varint,2,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  1877. Crc uint32 `protobuf:"varint,3,opt,name=crc,proto3" json:"crc,omitempty"`
  1878. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1879. AppendAtNs uint64 `protobuf:"varint,5,opt,name=append_at_ns,json=appendAtNs,proto3" json:"append_at_ns,omitempty"`
  1880. }
  1881. func (x *ReadNeedleMetaResponse) Reset() {
  1882. *x = ReadNeedleMetaResponse{}
  1883. if protoimpl.UnsafeEnabled {
  1884. mi := &file_volume_server_proto_msgTypes[41]
  1885. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1886. ms.StoreMessageInfo(mi)
  1887. }
  1888. }
  1889. func (x *ReadNeedleMetaResponse) String() string {
  1890. return protoimpl.X.MessageStringOf(x)
  1891. }
  1892. func (*ReadNeedleMetaResponse) ProtoMessage() {}
  1893. func (x *ReadNeedleMetaResponse) ProtoReflect() protoreflect.Message {
  1894. mi := &file_volume_server_proto_msgTypes[41]
  1895. if protoimpl.UnsafeEnabled && x != nil {
  1896. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1897. if ms.LoadMessageInfo() == nil {
  1898. ms.StoreMessageInfo(mi)
  1899. }
  1900. return ms
  1901. }
  1902. return mi.MessageOf(x)
  1903. }
  1904. // Deprecated: Use ReadNeedleMetaResponse.ProtoReflect.Descriptor instead.
  1905. func (*ReadNeedleMetaResponse) Descriptor() ([]byte, []int) {
  1906. return file_volume_server_proto_rawDescGZIP(), []int{41}
  1907. }
  1908. func (x *ReadNeedleMetaResponse) GetCookie() uint32 {
  1909. if x != nil {
  1910. return x.Cookie
  1911. }
  1912. return 0
  1913. }
  1914. func (x *ReadNeedleMetaResponse) GetLastModified() uint64 {
  1915. if x != nil {
  1916. return x.LastModified
  1917. }
  1918. return 0
  1919. }
  1920. func (x *ReadNeedleMetaResponse) GetCrc() uint32 {
  1921. if x != nil {
  1922. return x.Crc
  1923. }
  1924. return 0
  1925. }
  1926. func (x *ReadNeedleMetaResponse) GetTtl() string {
  1927. if x != nil {
  1928. return x.Ttl
  1929. }
  1930. return ""
  1931. }
  1932. func (x *ReadNeedleMetaResponse) GetAppendAtNs() uint64 {
  1933. if x != nil {
  1934. return x.AppendAtNs
  1935. }
  1936. return 0
  1937. }
  1938. type WriteNeedleBlobRequest struct {
  1939. state protoimpl.MessageState
  1940. sizeCache protoimpl.SizeCache
  1941. unknownFields protoimpl.UnknownFields
  1942. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1943. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1944. Size int32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  1945. NeedleBlob []byte `protobuf:"bytes,4,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1946. }
  1947. func (x *WriteNeedleBlobRequest) Reset() {
  1948. *x = WriteNeedleBlobRequest{}
  1949. if protoimpl.UnsafeEnabled {
  1950. mi := &file_volume_server_proto_msgTypes[42]
  1951. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1952. ms.StoreMessageInfo(mi)
  1953. }
  1954. }
  1955. func (x *WriteNeedleBlobRequest) String() string {
  1956. return protoimpl.X.MessageStringOf(x)
  1957. }
  1958. func (*WriteNeedleBlobRequest) ProtoMessage() {}
  1959. func (x *WriteNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1960. mi := &file_volume_server_proto_msgTypes[42]
  1961. if protoimpl.UnsafeEnabled && x != nil {
  1962. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1963. if ms.LoadMessageInfo() == nil {
  1964. ms.StoreMessageInfo(mi)
  1965. }
  1966. return ms
  1967. }
  1968. return mi.MessageOf(x)
  1969. }
  1970. // Deprecated: Use WriteNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1971. func (*WriteNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1972. return file_volume_server_proto_rawDescGZIP(), []int{42}
  1973. }
  1974. func (x *WriteNeedleBlobRequest) GetVolumeId() uint32 {
  1975. if x != nil {
  1976. return x.VolumeId
  1977. }
  1978. return 0
  1979. }
  1980. func (x *WriteNeedleBlobRequest) GetNeedleId() uint64 {
  1981. if x != nil {
  1982. return x.NeedleId
  1983. }
  1984. return 0
  1985. }
  1986. func (x *WriteNeedleBlobRequest) GetSize() int32 {
  1987. if x != nil {
  1988. return x.Size
  1989. }
  1990. return 0
  1991. }
  1992. func (x *WriteNeedleBlobRequest) GetNeedleBlob() []byte {
  1993. if x != nil {
  1994. return x.NeedleBlob
  1995. }
  1996. return nil
  1997. }
  1998. type WriteNeedleBlobResponse struct {
  1999. state protoimpl.MessageState
  2000. sizeCache protoimpl.SizeCache
  2001. unknownFields protoimpl.UnknownFields
  2002. }
  2003. func (x *WriteNeedleBlobResponse) Reset() {
  2004. *x = WriteNeedleBlobResponse{}
  2005. if protoimpl.UnsafeEnabled {
  2006. mi := &file_volume_server_proto_msgTypes[43]
  2007. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2008. ms.StoreMessageInfo(mi)
  2009. }
  2010. }
  2011. func (x *WriteNeedleBlobResponse) String() string {
  2012. return protoimpl.X.MessageStringOf(x)
  2013. }
  2014. func (*WriteNeedleBlobResponse) ProtoMessage() {}
  2015. func (x *WriteNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  2016. mi := &file_volume_server_proto_msgTypes[43]
  2017. if protoimpl.UnsafeEnabled && x != nil {
  2018. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2019. if ms.LoadMessageInfo() == nil {
  2020. ms.StoreMessageInfo(mi)
  2021. }
  2022. return ms
  2023. }
  2024. return mi.MessageOf(x)
  2025. }
  2026. // Deprecated: Use WriteNeedleBlobResponse.ProtoReflect.Descriptor instead.
  2027. func (*WriteNeedleBlobResponse) Descriptor() ([]byte, []int) {
  2028. return file_volume_server_proto_rawDescGZIP(), []int{43}
  2029. }
  2030. type ReadAllNeedlesRequest struct {
  2031. state protoimpl.MessageState
  2032. sizeCache protoimpl.SizeCache
  2033. unknownFields protoimpl.UnknownFields
  2034. VolumeIds []uint32 `protobuf:"varint,1,rep,packed,name=volume_ids,json=volumeIds,proto3" json:"volume_ids,omitempty"`
  2035. }
  2036. func (x *ReadAllNeedlesRequest) Reset() {
  2037. *x = ReadAllNeedlesRequest{}
  2038. if protoimpl.UnsafeEnabled {
  2039. mi := &file_volume_server_proto_msgTypes[44]
  2040. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2041. ms.StoreMessageInfo(mi)
  2042. }
  2043. }
  2044. func (x *ReadAllNeedlesRequest) String() string {
  2045. return protoimpl.X.MessageStringOf(x)
  2046. }
  2047. func (*ReadAllNeedlesRequest) ProtoMessage() {}
  2048. func (x *ReadAllNeedlesRequest) ProtoReflect() protoreflect.Message {
  2049. mi := &file_volume_server_proto_msgTypes[44]
  2050. if protoimpl.UnsafeEnabled && x != nil {
  2051. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2052. if ms.LoadMessageInfo() == nil {
  2053. ms.StoreMessageInfo(mi)
  2054. }
  2055. return ms
  2056. }
  2057. return mi.MessageOf(x)
  2058. }
  2059. // Deprecated: Use ReadAllNeedlesRequest.ProtoReflect.Descriptor instead.
  2060. func (*ReadAllNeedlesRequest) Descriptor() ([]byte, []int) {
  2061. return file_volume_server_proto_rawDescGZIP(), []int{44}
  2062. }
  2063. func (x *ReadAllNeedlesRequest) GetVolumeIds() []uint32 {
  2064. if x != nil {
  2065. return x.VolumeIds
  2066. }
  2067. return nil
  2068. }
  2069. type ReadAllNeedlesResponse struct {
  2070. state protoimpl.MessageState
  2071. sizeCache protoimpl.SizeCache
  2072. unknownFields protoimpl.UnknownFields
  2073. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2074. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  2075. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  2076. NeedleBlob []byte `protobuf:"bytes,5,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  2077. NeedleBlobCompressed bool `protobuf:"varint,6,opt,name=needle_blob_compressed,json=needleBlobCompressed,proto3" json:"needle_blob_compressed,omitempty"`
  2078. LastModified uint64 `protobuf:"varint,7,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  2079. Crc uint32 `protobuf:"varint,8,opt,name=crc,proto3" json:"crc,omitempty"`
  2080. Name []byte `protobuf:"bytes,9,opt,name=name,proto3" json:"name,omitempty"`
  2081. Mime []byte `protobuf:"bytes,10,opt,name=mime,proto3" json:"mime,omitempty"`
  2082. }
  2083. func (x *ReadAllNeedlesResponse) Reset() {
  2084. *x = ReadAllNeedlesResponse{}
  2085. if protoimpl.UnsafeEnabled {
  2086. mi := &file_volume_server_proto_msgTypes[45]
  2087. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2088. ms.StoreMessageInfo(mi)
  2089. }
  2090. }
  2091. func (x *ReadAllNeedlesResponse) String() string {
  2092. return protoimpl.X.MessageStringOf(x)
  2093. }
  2094. func (*ReadAllNeedlesResponse) ProtoMessage() {}
  2095. func (x *ReadAllNeedlesResponse) ProtoReflect() protoreflect.Message {
  2096. mi := &file_volume_server_proto_msgTypes[45]
  2097. if protoimpl.UnsafeEnabled && x != nil {
  2098. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2099. if ms.LoadMessageInfo() == nil {
  2100. ms.StoreMessageInfo(mi)
  2101. }
  2102. return ms
  2103. }
  2104. return mi.MessageOf(x)
  2105. }
  2106. // Deprecated: Use ReadAllNeedlesResponse.ProtoReflect.Descriptor instead.
  2107. func (*ReadAllNeedlesResponse) Descriptor() ([]byte, []int) {
  2108. return file_volume_server_proto_rawDescGZIP(), []int{45}
  2109. }
  2110. func (x *ReadAllNeedlesResponse) GetVolumeId() uint32 {
  2111. if x != nil {
  2112. return x.VolumeId
  2113. }
  2114. return 0
  2115. }
  2116. func (x *ReadAllNeedlesResponse) GetNeedleId() uint64 {
  2117. if x != nil {
  2118. return x.NeedleId
  2119. }
  2120. return 0
  2121. }
  2122. func (x *ReadAllNeedlesResponse) GetCookie() uint32 {
  2123. if x != nil {
  2124. return x.Cookie
  2125. }
  2126. return 0
  2127. }
  2128. func (x *ReadAllNeedlesResponse) GetNeedleBlob() []byte {
  2129. if x != nil {
  2130. return x.NeedleBlob
  2131. }
  2132. return nil
  2133. }
  2134. func (x *ReadAllNeedlesResponse) GetNeedleBlobCompressed() bool {
  2135. if x != nil {
  2136. return x.NeedleBlobCompressed
  2137. }
  2138. return false
  2139. }
  2140. func (x *ReadAllNeedlesResponse) GetLastModified() uint64 {
  2141. if x != nil {
  2142. return x.LastModified
  2143. }
  2144. return 0
  2145. }
  2146. func (x *ReadAllNeedlesResponse) GetCrc() uint32 {
  2147. if x != nil {
  2148. return x.Crc
  2149. }
  2150. return 0
  2151. }
  2152. func (x *ReadAllNeedlesResponse) GetName() []byte {
  2153. if x != nil {
  2154. return x.Name
  2155. }
  2156. return nil
  2157. }
  2158. func (x *ReadAllNeedlesResponse) GetMime() []byte {
  2159. if x != nil {
  2160. return x.Mime
  2161. }
  2162. return nil
  2163. }
  2164. type VolumeTailSenderRequest struct {
  2165. state protoimpl.MessageState
  2166. sizeCache protoimpl.SizeCache
  2167. unknownFields protoimpl.UnknownFields
  2168. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2169. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2170. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  2171. }
  2172. func (x *VolumeTailSenderRequest) Reset() {
  2173. *x = VolumeTailSenderRequest{}
  2174. if protoimpl.UnsafeEnabled {
  2175. mi := &file_volume_server_proto_msgTypes[46]
  2176. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2177. ms.StoreMessageInfo(mi)
  2178. }
  2179. }
  2180. func (x *VolumeTailSenderRequest) String() string {
  2181. return protoimpl.X.MessageStringOf(x)
  2182. }
  2183. func (*VolumeTailSenderRequest) ProtoMessage() {}
  2184. func (x *VolumeTailSenderRequest) ProtoReflect() protoreflect.Message {
  2185. mi := &file_volume_server_proto_msgTypes[46]
  2186. if protoimpl.UnsafeEnabled && x != nil {
  2187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2188. if ms.LoadMessageInfo() == nil {
  2189. ms.StoreMessageInfo(mi)
  2190. }
  2191. return ms
  2192. }
  2193. return mi.MessageOf(x)
  2194. }
  2195. // Deprecated: Use VolumeTailSenderRequest.ProtoReflect.Descriptor instead.
  2196. func (*VolumeTailSenderRequest) Descriptor() ([]byte, []int) {
  2197. return file_volume_server_proto_rawDescGZIP(), []int{46}
  2198. }
  2199. func (x *VolumeTailSenderRequest) GetVolumeId() uint32 {
  2200. if x != nil {
  2201. return x.VolumeId
  2202. }
  2203. return 0
  2204. }
  2205. func (x *VolumeTailSenderRequest) GetSinceNs() uint64 {
  2206. if x != nil {
  2207. return x.SinceNs
  2208. }
  2209. return 0
  2210. }
  2211. func (x *VolumeTailSenderRequest) GetIdleTimeoutSeconds() uint32 {
  2212. if x != nil {
  2213. return x.IdleTimeoutSeconds
  2214. }
  2215. return 0
  2216. }
  2217. type VolumeTailSenderResponse struct {
  2218. state protoimpl.MessageState
  2219. sizeCache protoimpl.SizeCache
  2220. unknownFields protoimpl.UnknownFields
  2221. NeedleHeader []byte `protobuf:"bytes,1,opt,name=needle_header,json=needleHeader,proto3" json:"needle_header,omitempty"`
  2222. NeedleBody []byte `protobuf:"bytes,2,opt,name=needle_body,json=needleBody,proto3" json:"needle_body,omitempty"`
  2223. IsLastChunk bool `protobuf:"varint,3,opt,name=is_last_chunk,json=isLastChunk,proto3" json:"is_last_chunk,omitempty"`
  2224. }
  2225. func (x *VolumeTailSenderResponse) Reset() {
  2226. *x = VolumeTailSenderResponse{}
  2227. if protoimpl.UnsafeEnabled {
  2228. mi := &file_volume_server_proto_msgTypes[47]
  2229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2230. ms.StoreMessageInfo(mi)
  2231. }
  2232. }
  2233. func (x *VolumeTailSenderResponse) String() string {
  2234. return protoimpl.X.MessageStringOf(x)
  2235. }
  2236. func (*VolumeTailSenderResponse) ProtoMessage() {}
  2237. func (x *VolumeTailSenderResponse) ProtoReflect() protoreflect.Message {
  2238. mi := &file_volume_server_proto_msgTypes[47]
  2239. if protoimpl.UnsafeEnabled && x != nil {
  2240. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2241. if ms.LoadMessageInfo() == nil {
  2242. ms.StoreMessageInfo(mi)
  2243. }
  2244. return ms
  2245. }
  2246. return mi.MessageOf(x)
  2247. }
  2248. // Deprecated: Use VolumeTailSenderResponse.ProtoReflect.Descriptor instead.
  2249. func (*VolumeTailSenderResponse) Descriptor() ([]byte, []int) {
  2250. return file_volume_server_proto_rawDescGZIP(), []int{47}
  2251. }
  2252. func (x *VolumeTailSenderResponse) GetNeedleHeader() []byte {
  2253. if x != nil {
  2254. return x.NeedleHeader
  2255. }
  2256. return nil
  2257. }
  2258. func (x *VolumeTailSenderResponse) GetNeedleBody() []byte {
  2259. if x != nil {
  2260. return x.NeedleBody
  2261. }
  2262. return nil
  2263. }
  2264. func (x *VolumeTailSenderResponse) GetIsLastChunk() bool {
  2265. if x != nil {
  2266. return x.IsLastChunk
  2267. }
  2268. return false
  2269. }
  2270. type VolumeTailReceiverRequest struct {
  2271. state protoimpl.MessageState
  2272. sizeCache protoimpl.SizeCache
  2273. unknownFields protoimpl.UnknownFields
  2274. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2275. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2276. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  2277. SourceVolumeServer string `protobuf:"bytes,4,opt,name=source_volume_server,json=sourceVolumeServer,proto3" json:"source_volume_server,omitempty"`
  2278. }
  2279. func (x *VolumeTailReceiverRequest) Reset() {
  2280. *x = VolumeTailReceiverRequest{}
  2281. if protoimpl.UnsafeEnabled {
  2282. mi := &file_volume_server_proto_msgTypes[48]
  2283. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2284. ms.StoreMessageInfo(mi)
  2285. }
  2286. }
  2287. func (x *VolumeTailReceiverRequest) String() string {
  2288. return protoimpl.X.MessageStringOf(x)
  2289. }
  2290. func (*VolumeTailReceiverRequest) ProtoMessage() {}
  2291. func (x *VolumeTailReceiverRequest) ProtoReflect() protoreflect.Message {
  2292. mi := &file_volume_server_proto_msgTypes[48]
  2293. if protoimpl.UnsafeEnabled && x != nil {
  2294. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2295. if ms.LoadMessageInfo() == nil {
  2296. ms.StoreMessageInfo(mi)
  2297. }
  2298. return ms
  2299. }
  2300. return mi.MessageOf(x)
  2301. }
  2302. // Deprecated: Use VolumeTailReceiverRequest.ProtoReflect.Descriptor instead.
  2303. func (*VolumeTailReceiverRequest) Descriptor() ([]byte, []int) {
  2304. return file_volume_server_proto_rawDescGZIP(), []int{48}
  2305. }
  2306. func (x *VolumeTailReceiverRequest) GetVolumeId() uint32 {
  2307. if x != nil {
  2308. return x.VolumeId
  2309. }
  2310. return 0
  2311. }
  2312. func (x *VolumeTailReceiverRequest) GetSinceNs() uint64 {
  2313. if x != nil {
  2314. return x.SinceNs
  2315. }
  2316. return 0
  2317. }
  2318. func (x *VolumeTailReceiverRequest) GetIdleTimeoutSeconds() uint32 {
  2319. if x != nil {
  2320. return x.IdleTimeoutSeconds
  2321. }
  2322. return 0
  2323. }
  2324. func (x *VolumeTailReceiverRequest) GetSourceVolumeServer() string {
  2325. if x != nil {
  2326. return x.SourceVolumeServer
  2327. }
  2328. return ""
  2329. }
  2330. type VolumeTailReceiverResponse struct {
  2331. state protoimpl.MessageState
  2332. sizeCache protoimpl.SizeCache
  2333. unknownFields protoimpl.UnknownFields
  2334. }
  2335. func (x *VolumeTailReceiverResponse) Reset() {
  2336. *x = VolumeTailReceiverResponse{}
  2337. if protoimpl.UnsafeEnabled {
  2338. mi := &file_volume_server_proto_msgTypes[49]
  2339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2340. ms.StoreMessageInfo(mi)
  2341. }
  2342. }
  2343. func (x *VolumeTailReceiverResponse) String() string {
  2344. return protoimpl.X.MessageStringOf(x)
  2345. }
  2346. func (*VolumeTailReceiverResponse) ProtoMessage() {}
  2347. func (x *VolumeTailReceiverResponse) ProtoReflect() protoreflect.Message {
  2348. mi := &file_volume_server_proto_msgTypes[49]
  2349. if protoimpl.UnsafeEnabled && x != nil {
  2350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2351. if ms.LoadMessageInfo() == nil {
  2352. ms.StoreMessageInfo(mi)
  2353. }
  2354. return ms
  2355. }
  2356. return mi.MessageOf(x)
  2357. }
  2358. // Deprecated: Use VolumeTailReceiverResponse.ProtoReflect.Descriptor instead.
  2359. func (*VolumeTailReceiverResponse) Descriptor() ([]byte, []int) {
  2360. return file_volume_server_proto_rawDescGZIP(), []int{49}
  2361. }
  2362. type VolumeEcShardsGenerateRequest struct {
  2363. state protoimpl.MessageState
  2364. sizeCache protoimpl.SizeCache
  2365. unknownFields protoimpl.UnknownFields
  2366. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2367. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2368. }
  2369. func (x *VolumeEcShardsGenerateRequest) Reset() {
  2370. *x = VolumeEcShardsGenerateRequest{}
  2371. if protoimpl.UnsafeEnabled {
  2372. mi := &file_volume_server_proto_msgTypes[50]
  2373. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2374. ms.StoreMessageInfo(mi)
  2375. }
  2376. }
  2377. func (x *VolumeEcShardsGenerateRequest) String() string {
  2378. return protoimpl.X.MessageStringOf(x)
  2379. }
  2380. func (*VolumeEcShardsGenerateRequest) ProtoMessage() {}
  2381. func (x *VolumeEcShardsGenerateRequest) ProtoReflect() protoreflect.Message {
  2382. mi := &file_volume_server_proto_msgTypes[50]
  2383. if protoimpl.UnsafeEnabled && x != nil {
  2384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2385. if ms.LoadMessageInfo() == nil {
  2386. ms.StoreMessageInfo(mi)
  2387. }
  2388. return ms
  2389. }
  2390. return mi.MessageOf(x)
  2391. }
  2392. // Deprecated: Use VolumeEcShardsGenerateRequest.ProtoReflect.Descriptor instead.
  2393. func (*VolumeEcShardsGenerateRequest) Descriptor() ([]byte, []int) {
  2394. return file_volume_server_proto_rawDescGZIP(), []int{50}
  2395. }
  2396. func (x *VolumeEcShardsGenerateRequest) GetVolumeId() uint32 {
  2397. if x != nil {
  2398. return x.VolumeId
  2399. }
  2400. return 0
  2401. }
  2402. func (x *VolumeEcShardsGenerateRequest) GetCollection() string {
  2403. if x != nil {
  2404. return x.Collection
  2405. }
  2406. return ""
  2407. }
  2408. type VolumeEcShardsGenerateResponse struct {
  2409. state protoimpl.MessageState
  2410. sizeCache protoimpl.SizeCache
  2411. unknownFields protoimpl.UnknownFields
  2412. }
  2413. func (x *VolumeEcShardsGenerateResponse) Reset() {
  2414. *x = VolumeEcShardsGenerateResponse{}
  2415. if protoimpl.UnsafeEnabled {
  2416. mi := &file_volume_server_proto_msgTypes[51]
  2417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2418. ms.StoreMessageInfo(mi)
  2419. }
  2420. }
  2421. func (x *VolumeEcShardsGenerateResponse) String() string {
  2422. return protoimpl.X.MessageStringOf(x)
  2423. }
  2424. func (*VolumeEcShardsGenerateResponse) ProtoMessage() {}
  2425. func (x *VolumeEcShardsGenerateResponse) ProtoReflect() protoreflect.Message {
  2426. mi := &file_volume_server_proto_msgTypes[51]
  2427. if protoimpl.UnsafeEnabled && x != nil {
  2428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2429. if ms.LoadMessageInfo() == nil {
  2430. ms.StoreMessageInfo(mi)
  2431. }
  2432. return ms
  2433. }
  2434. return mi.MessageOf(x)
  2435. }
  2436. // Deprecated: Use VolumeEcShardsGenerateResponse.ProtoReflect.Descriptor instead.
  2437. func (*VolumeEcShardsGenerateResponse) Descriptor() ([]byte, []int) {
  2438. return file_volume_server_proto_rawDescGZIP(), []int{51}
  2439. }
  2440. type VolumeEcShardsRebuildRequest struct {
  2441. state protoimpl.MessageState
  2442. sizeCache protoimpl.SizeCache
  2443. unknownFields protoimpl.UnknownFields
  2444. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2445. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2446. }
  2447. func (x *VolumeEcShardsRebuildRequest) Reset() {
  2448. *x = VolumeEcShardsRebuildRequest{}
  2449. if protoimpl.UnsafeEnabled {
  2450. mi := &file_volume_server_proto_msgTypes[52]
  2451. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2452. ms.StoreMessageInfo(mi)
  2453. }
  2454. }
  2455. func (x *VolumeEcShardsRebuildRequest) String() string {
  2456. return protoimpl.X.MessageStringOf(x)
  2457. }
  2458. func (*VolumeEcShardsRebuildRequest) ProtoMessage() {}
  2459. func (x *VolumeEcShardsRebuildRequest) ProtoReflect() protoreflect.Message {
  2460. mi := &file_volume_server_proto_msgTypes[52]
  2461. if protoimpl.UnsafeEnabled && x != nil {
  2462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2463. if ms.LoadMessageInfo() == nil {
  2464. ms.StoreMessageInfo(mi)
  2465. }
  2466. return ms
  2467. }
  2468. return mi.MessageOf(x)
  2469. }
  2470. // Deprecated: Use VolumeEcShardsRebuildRequest.ProtoReflect.Descriptor instead.
  2471. func (*VolumeEcShardsRebuildRequest) Descriptor() ([]byte, []int) {
  2472. return file_volume_server_proto_rawDescGZIP(), []int{52}
  2473. }
  2474. func (x *VolumeEcShardsRebuildRequest) GetVolumeId() uint32 {
  2475. if x != nil {
  2476. return x.VolumeId
  2477. }
  2478. return 0
  2479. }
  2480. func (x *VolumeEcShardsRebuildRequest) GetCollection() string {
  2481. if x != nil {
  2482. return x.Collection
  2483. }
  2484. return ""
  2485. }
  2486. type VolumeEcShardsRebuildResponse struct {
  2487. state protoimpl.MessageState
  2488. sizeCache protoimpl.SizeCache
  2489. unknownFields protoimpl.UnknownFields
  2490. RebuiltShardIds []uint32 `protobuf:"varint,1,rep,packed,name=rebuilt_shard_ids,json=rebuiltShardIds,proto3" json:"rebuilt_shard_ids,omitempty"`
  2491. }
  2492. func (x *VolumeEcShardsRebuildResponse) Reset() {
  2493. *x = VolumeEcShardsRebuildResponse{}
  2494. if protoimpl.UnsafeEnabled {
  2495. mi := &file_volume_server_proto_msgTypes[53]
  2496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2497. ms.StoreMessageInfo(mi)
  2498. }
  2499. }
  2500. func (x *VolumeEcShardsRebuildResponse) String() string {
  2501. return protoimpl.X.MessageStringOf(x)
  2502. }
  2503. func (*VolumeEcShardsRebuildResponse) ProtoMessage() {}
  2504. func (x *VolumeEcShardsRebuildResponse) ProtoReflect() protoreflect.Message {
  2505. mi := &file_volume_server_proto_msgTypes[53]
  2506. if protoimpl.UnsafeEnabled && x != nil {
  2507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2508. if ms.LoadMessageInfo() == nil {
  2509. ms.StoreMessageInfo(mi)
  2510. }
  2511. return ms
  2512. }
  2513. return mi.MessageOf(x)
  2514. }
  2515. // Deprecated: Use VolumeEcShardsRebuildResponse.ProtoReflect.Descriptor instead.
  2516. func (*VolumeEcShardsRebuildResponse) Descriptor() ([]byte, []int) {
  2517. return file_volume_server_proto_rawDescGZIP(), []int{53}
  2518. }
  2519. func (x *VolumeEcShardsRebuildResponse) GetRebuiltShardIds() []uint32 {
  2520. if x != nil {
  2521. return x.RebuiltShardIds
  2522. }
  2523. return nil
  2524. }
  2525. type VolumeEcShardsCopyRequest struct {
  2526. state protoimpl.MessageState
  2527. sizeCache protoimpl.SizeCache
  2528. unknownFields protoimpl.UnknownFields
  2529. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2530. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2531. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2532. CopyEcxFile bool `protobuf:"varint,4,opt,name=copy_ecx_file,json=copyEcxFile,proto3" json:"copy_ecx_file,omitempty"`
  2533. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  2534. CopyEcjFile bool `protobuf:"varint,6,opt,name=copy_ecj_file,json=copyEcjFile,proto3" json:"copy_ecj_file,omitempty"`
  2535. CopyVifFile bool `protobuf:"varint,7,opt,name=copy_vif_file,json=copyVifFile,proto3" json:"copy_vif_file,omitempty"`
  2536. }
  2537. func (x *VolumeEcShardsCopyRequest) Reset() {
  2538. *x = VolumeEcShardsCopyRequest{}
  2539. if protoimpl.UnsafeEnabled {
  2540. mi := &file_volume_server_proto_msgTypes[54]
  2541. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2542. ms.StoreMessageInfo(mi)
  2543. }
  2544. }
  2545. func (x *VolumeEcShardsCopyRequest) String() string {
  2546. return protoimpl.X.MessageStringOf(x)
  2547. }
  2548. func (*VolumeEcShardsCopyRequest) ProtoMessage() {}
  2549. func (x *VolumeEcShardsCopyRequest) ProtoReflect() protoreflect.Message {
  2550. mi := &file_volume_server_proto_msgTypes[54]
  2551. if protoimpl.UnsafeEnabled && x != nil {
  2552. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2553. if ms.LoadMessageInfo() == nil {
  2554. ms.StoreMessageInfo(mi)
  2555. }
  2556. return ms
  2557. }
  2558. return mi.MessageOf(x)
  2559. }
  2560. // Deprecated: Use VolumeEcShardsCopyRequest.ProtoReflect.Descriptor instead.
  2561. func (*VolumeEcShardsCopyRequest) Descriptor() ([]byte, []int) {
  2562. return file_volume_server_proto_rawDescGZIP(), []int{54}
  2563. }
  2564. func (x *VolumeEcShardsCopyRequest) GetVolumeId() uint32 {
  2565. if x != nil {
  2566. return x.VolumeId
  2567. }
  2568. return 0
  2569. }
  2570. func (x *VolumeEcShardsCopyRequest) GetCollection() string {
  2571. if x != nil {
  2572. return x.Collection
  2573. }
  2574. return ""
  2575. }
  2576. func (x *VolumeEcShardsCopyRequest) GetShardIds() []uint32 {
  2577. if x != nil {
  2578. return x.ShardIds
  2579. }
  2580. return nil
  2581. }
  2582. func (x *VolumeEcShardsCopyRequest) GetCopyEcxFile() bool {
  2583. if x != nil {
  2584. return x.CopyEcxFile
  2585. }
  2586. return false
  2587. }
  2588. func (x *VolumeEcShardsCopyRequest) GetSourceDataNode() string {
  2589. if x != nil {
  2590. return x.SourceDataNode
  2591. }
  2592. return ""
  2593. }
  2594. func (x *VolumeEcShardsCopyRequest) GetCopyEcjFile() bool {
  2595. if x != nil {
  2596. return x.CopyEcjFile
  2597. }
  2598. return false
  2599. }
  2600. func (x *VolumeEcShardsCopyRequest) GetCopyVifFile() bool {
  2601. if x != nil {
  2602. return x.CopyVifFile
  2603. }
  2604. return false
  2605. }
  2606. type VolumeEcShardsCopyResponse struct {
  2607. state protoimpl.MessageState
  2608. sizeCache protoimpl.SizeCache
  2609. unknownFields protoimpl.UnknownFields
  2610. }
  2611. func (x *VolumeEcShardsCopyResponse) Reset() {
  2612. *x = VolumeEcShardsCopyResponse{}
  2613. if protoimpl.UnsafeEnabled {
  2614. mi := &file_volume_server_proto_msgTypes[55]
  2615. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2616. ms.StoreMessageInfo(mi)
  2617. }
  2618. }
  2619. func (x *VolumeEcShardsCopyResponse) String() string {
  2620. return protoimpl.X.MessageStringOf(x)
  2621. }
  2622. func (*VolumeEcShardsCopyResponse) ProtoMessage() {}
  2623. func (x *VolumeEcShardsCopyResponse) ProtoReflect() protoreflect.Message {
  2624. mi := &file_volume_server_proto_msgTypes[55]
  2625. if protoimpl.UnsafeEnabled && x != nil {
  2626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2627. if ms.LoadMessageInfo() == nil {
  2628. ms.StoreMessageInfo(mi)
  2629. }
  2630. return ms
  2631. }
  2632. return mi.MessageOf(x)
  2633. }
  2634. // Deprecated: Use VolumeEcShardsCopyResponse.ProtoReflect.Descriptor instead.
  2635. func (*VolumeEcShardsCopyResponse) Descriptor() ([]byte, []int) {
  2636. return file_volume_server_proto_rawDescGZIP(), []int{55}
  2637. }
  2638. type VolumeEcShardsDeleteRequest struct {
  2639. state protoimpl.MessageState
  2640. sizeCache protoimpl.SizeCache
  2641. unknownFields protoimpl.UnknownFields
  2642. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2643. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2644. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2645. }
  2646. func (x *VolumeEcShardsDeleteRequest) Reset() {
  2647. *x = VolumeEcShardsDeleteRequest{}
  2648. if protoimpl.UnsafeEnabled {
  2649. mi := &file_volume_server_proto_msgTypes[56]
  2650. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2651. ms.StoreMessageInfo(mi)
  2652. }
  2653. }
  2654. func (x *VolumeEcShardsDeleteRequest) String() string {
  2655. return protoimpl.X.MessageStringOf(x)
  2656. }
  2657. func (*VolumeEcShardsDeleteRequest) ProtoMessage() {}
  2658. func (x *VolumeEcShardsDeleteRequest) ProtoReflect() protoreflect.Message {
  2659. mi := &file_volume_server_proto_msgTypes[56]
  2660. if protoimpl.UnsafeEnabled && x != nil {
  2661. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2662. if ms.LoadMessageInfo() == nil {
  2663. ms.StoreMessageInfo(mi)
  2664. }
  2665. return ms
  2666. }
  2667. return mi.MessageOf(x)
  2668. }
  2669. // Deprecated: Use VolumeEcShardsDeleteRequest.ProtoReflect.Descriptor instead.
  2670. func (*VolumeEcShardsDeleteRequest) Descriptor() ([]byte, []int) {
  2671. return file_volume_server_proto_rawDescGZIP(), []int{56}
  2672. }
  2673. func (x *VolumeEcShardsDeleteRequest) GetVolumeId() uint32 {
  2674. if x != nil {
  2675. return x.VolumeId
  2676. }
  2677. return 0
  2678. }
  2679. func (x *VolumeEcShardsDeleteRequest) GetCollection() string {
  2680. if x != nil {
  2681. return x.Collection
  2682. }
  2683. return ""
  2684. }
  2685. func (x *VolumeEcShardsDeleteRequest) GetShardIds() []uint32 {
  2686. if x != nil {
  2687. return x.ShardIds
  2688. }
  2689. return nil
  2690. }
  2691. type VolumeEcShardsDeleteResponse struct {
  2692. state protoimpl.MessageState
  2693. sizeCache protoimpl.SizeCache
  2694. unknownFields protoimpl.UnknownFields
  2695. }
  2696. func (x *VolumeEcShardsDeleteResponse) Reset() {
  2697. *x = VolumeEcShardsDeleteResponse{}
  2698. if protoimpl.UnsafeEnabled {
  2699. mi := &file_volume_server_proto_msgTypes[57]
  2700. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2701. ms.StoreMessageInfo(mi)
  2702. }
  2703. }
  2704. func (x *VolumeEcShardsDeleteResponse) String() string {
  2705. return protoimpl.X.MessageStringOf(x)
  2706. }
  2707. func (*VolumeEcShardsDeleteResponse) ProtoMessage() {}
  2708. func (x *VolumeEcShardsDeleteResponse) ProtoReflect() protoreflect.Message {
  2709. mi := &file_volume_server_proto_msgTypes[57]
  2710. if protoimpl.UnsafeEnabled && x != nil {
  2711. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2712. if ms.LoadMessageInfo() == nil {
  2713. ms.StoreMessageInfo(mi)
  2714. }
  2715. return ms
  2716. }
  2717. return mi.MessageOf(x)
  2718. }
  2719. // Deprecated: Use VolumeEcShardsDeleteResponse.ProtoReflect.Descriptor instead.
  2720. func (*VolumeEcShardsDeleteResponse) Descriptor() ([]byte, []int) {
  2721. return file_volume_server_proto_rawDescGZIP(), []int{57}
  2722. }
  2723. type VolumeEcShardsMountRequest struct {
  2724. state protoimpl.MessageState
  2725. sizeCache protoimpl.SizeCache
  2726. unknownFields protoimpl.UnknownFields
  2727. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2728. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2729. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2730. }
  2731. func (x *VolumeEcShardsMountRequest) Reset() {
  2732. *x = VolumeEcShardsMountRequest{}
  2733. if protoimpl.UnsafeEnabled {
  2734. mi := &file_volume_server_proto_msgTypes[58]
  2735. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2736. ms.StoreMessageInfo(mi)
  2737. }
  2738. }
  2739. func (x *VolumeEcShardsMountRequest) String() string {
  2740. return protoimpl.X.MessageStringOf(x)
  2741. }
  2742. func (*VolumeEcShardsMountRequest) ProtoMessage() {}
  2743. func (x *VolumeEcShardsMountRequest) ProtoReflect() protoreflect.Message {
  2744. mi := &file_volume_server_proto_msgTypes[58]
  2745. if protoimpl.UnsafeEnabled && x != nil {
  2746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2747. if ms.LoadMessageInfo() == nil {
  2748. ms.StoreMessageInfo(mi)
  2749. }
  2750. return ms
  2751. }
  2752. return mi.MessageOf(x)
  2753. }
  2754. // Deprecated: Use VolumeEcShardsMountRequest.ProtoReflect.Descriptor instead.
  2755. func (*VolumeEcShardsMountRequest) Descriptor() ([]byte, []int) {
  2756. return file_volume_server_proto_rawDescGZIP(), []int{58}
  2757. }
  2758. func (x *VolumeEcShardsMountRequest) GetVolumeId() uint32 {
  2759. if x != nil {
  2760. return x.VolumeId
  2761. }
  2762. return 0
  2763. }
  2764. func (x *VolumeEcShardsMountRequest) GetCollection() string {
  2765. if x != nil {
  2766. return x.Collection
  2767. }
  2768. return ""
  2769. }
  2770. func (x *VolumeEcShardsMountRequest) GetShardIds() []uint32 {
  2771. if x != nil {
  2772. return x.ShardIds
  2773. }
  2774. return nil
  2775. }
  2776. type VolumeEcShardsMountResponse struct {
  2777. state protoimpl.MessageState
  2778. sizeCache protoimpl.SizeCache
  2779. unknownFields protoimpl.UnknownFields
  2780. }
  2781. func (x *VolumeEcShardsMountResponse) Reset() {
  2782. *x = VolumeEcShardsMountResponse{}
  2783. if protoimpl.UnsafeEnabled {
  2784. mi := &file_volume_server_proto_msgTypes[59]
  2785. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2786. ms.StoreMessageInfo(mi)
  2787. }
  2788. }
  2789. func (x *VolumeEcShardsMountResponse) String() string {
  2790. return protoimpl.X.MessageStringOf(x)
  2791. }
  2792. func (*VolumeEcShardsMountResponse) ProtoMessage() {}
  2793. func (x *VolumeEcShardsMountResponse) ProtoReflect() protoreflect.Message {
  2794. mi := &file_volume_server_proto_msgTypes[59]
  2795. if protoimpl.UnsafeEnabled && x != nil {
  2796. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2797. if ms.LoadMessageInfo() == nil {
  2798. ms.StoreMessageInfo(mi)
  2799. }
  2800. return ms
  2801. }
  2802. return mi.MessageOf(x)
  2803. }
  2804. // Deprecated: Use VolumeEcShardsMountResponse.ProtoReflect.Descriptor instead.
  2805. func (*VolumeEcShardsMountResponse) Descriptor() ([]byte, []int) {
  2806. return file_volume_server_proto_rawDescGZIP(), []int{59}
  2807. }
  2808. type VolumeEcShardsUnmountRequest struct {
  2809. state protoimpl.MessageState
  2810. sizeCache protoimpl.SizeCache
  2811. unknownFields protoimpl.UnknownFields
  2812. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2813. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2814. }
  2815. func (x *VolumeEcShardsUnmountRequest) Reset() {
  2816. *x = VolumeEcShardsUnmountRequest{}
  2817. if protoimpl.UnsafeEnabled {
  2818. mi := &file_volume_server_proto_msgTypes[60]
  2819. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2820. ms.StoreMessageInfo(mi)
  2821. }
  2822. }
  2823. func (x *VolumeEcShardsUnmountRequest) String() string {
  2824. return protoimpl.X.MessageStringOf(x)
  2825. }
  2826. func (*VolumeEcShardsUnmountRequest) ProtoMessage() {}
  2827. func (x *VolumeEcShardsUnmountRequest) ProtoReflect() protoreflect.Message {
  2828. mi := &file_volume_server_proto_msgTypes[60]
  2829. if protoimpl.UnsafeEnabled && x != nil {
  2830. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2831. if ms.LoadMessageInfo() == nil {
  2832. ms.StoreMessageInfo(mi)
  2833. }
  2834. return ms
  2835. }
  2836. return mi.MessageOf(x)
  2837. }
  2838. // Deprecated: Use VolumeEcShardsUnmountRequest.ProtoReflect.Descriptor instead.
  2839. func (*VolumeEcShardsUnmountRequest) Descriptor() ([]byte, []int) {
  2840. return file_volume_server_proto_rawDescGZIP(), []int{60}
  2841. }
  2842. func (x *VolumeEcShardsUnmountRequest) GetVolumeId() uint32 {
  2843. if x != nil {
  2844. return x.VolumeId
  2845. }
  2846. return 0
  2847. }
  2848. func (x *VolumeEcShardsUnmountRequest) GetShardIds() []uint32 {
  2849. if x != nil {
  2850. return x.ShardIds
  2851. }
  2852. return nil
  2853. }
  2854. type VolumeEcShardsUnmountResponse struct {
  2855. state protoimpl.MessageState
  2856. sizeCache protoimpl.SizeCache
  2857. unknownFields protoimpl.UnknownFields
  2858. }
  2859. func (x *VolumeEcShardsUnmountResponse) Reset() {
  2860. *x = VolumeEcShardsUnmountResponse{}
  2861. if protoimpl.UnsafeEnabled {
  2862. mi := &file_volume_server_proto_msgTypes[61]
  2863. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2864. ms.StoreMessageInfo(mi)
  2865. }
  2866. }
  2867. func (x *VolumeEcShardsUnmountResponse) String() string {
  2868. return protoimpl.X.MessageStringOf(x)
  2869. }
  2870. func (*VolumeEcShardsUnmountResponse) ProtoMessage() {}
  2871. func (x *VolumeEcShardsUnmountResponse) ProtoReflect() protoreflect.Message {
  2872. mi := &file_volume_server_proto_msgTypes[61]
  2873. if protoimpl.UnsafeEnabled && x != nil {
  2874. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2875. if ms.LoadMessageInfo() == nil {
  2876. ms.StoreMessageInfo(mi)
  2877. }
  2878. return ms
  2879. }
  2880. return mi.MessageOf(x)
  2881. }
  2882. // Deprecated: Use VolumeEcShardsUnmountResponse.ProtoReflect.Descriptor instead.
  2883. func (*VolumeEcShardsUnmountResponse) Descriptor() ([]byte, []int) {
  2884. return file_volume_server_proto_rawDescGZIP(), []int{61}
  2885. }
  2886. type VolumeEcShardReadRequest struct {
  2887. state protoimpl.MessageState
  2888. sizeCache protoimpl.SizeCache
  2889. unknownFields protoimpl.UnknownFields
  2890. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2891. ShardId uint32 `protobuf:"varint,2,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"`
  2892. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
  2893. Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  2894. FileKey uint64 `protobuf:"varint,5,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2895. }
  2896. func (x *VolumeEcShardReadRequest) Reset() {
  2897. *x = VolumeEcShardReadRequest{}
  2898. if protoimpl.UnsafeEnabled {
  2899. mi := &file_volume_server_proto_msgTypes[62]
  2900. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2901. ms.StoreMessageInfo(mi)
  2902. }
  2903. }
  2904. func (x *VolumeEcShardReadRequest) String() string {
  2905. return protoimpl.X.MessageStringOf(x)
  2906. }
  2907. func (*VolumeEcShardReadRequest) ProtoMessage() {}
  2908. func (x *VolumeEcShardReadRequest) ProtoReflect() protoreflect.Message {
  2909. mi := &file_volume_server_proto_msgTypes[62]
  2910. if protoimpl.UnsafeEnabled && x != nil {
  2911. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2912. if ms.LoadMessageInfo() == nil {
  2913. ms.StoreMessageInfo(mi)
  2914. }
  2915. return ms
  2916. }
  2917. return mi.MessageOf(x)
  2918. }
  2919. // Deprecated: Use VolumeEcShardReadRequest.ProtoReflect.Descriptor instead.
  2920. func (*VolumeEcShardReadRequest) Descriptor() ([]byte, []int) {
  2921. return file_volume_server_proto_rawDescGZIP(), []int{62}
  2922. }
  2923. func (x *VolumeEcShardReadRequest) GetVolumeId() uint32 {
  2924. if x != nil {
  2925. return x.VolumeId
  2926. }
  2927. return 0
  2928. }
  2929. func (x *VolumeEcShardReadRequest) GetShardId() uint32 {
  2930. if x != nil {
  2931. return x.ShardId
  2932. }
  2933. return 0
  2934. }
  2935. func (x *VolumeEcShardReadRequest) GetOffset() int64 {
  2936. if x != nil {
  2937. return x.Offset
  2938. }
  2939. return 0
  2940. }
  2941. func (x *VolumeEcShardReadRequest) GetSize() int64 {
  2942. if x != nil {
  2943. return x.Size
  2944. }
  2945. return 0
  2946. }
  2947. func (x *VolumeEcShardReadRequest) GetFileKey() uint64 {
  2948. if x != nil {
  2949. return x.FileKey
  2950. }
  2951. return 0
  2952. }
  2953. type VolumeEcShardReadResponse struct {
  2954. state protoimpl.MessageState
  2955. sizeCache protoimpl.SizeCache
  2956. unknownFields protoimpl.UnknownFields
  2957. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  2958. IsDeleted bool `protobuf:"varint,2,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
  2959. }
  2960. func (x *VolumeEcShardReadResponse) Reset() {
  2961. *x = VolumeEcShardReadResponse{}
  2962. if protoimpl.UnsafeEnabled {
  2963. mi := &file_volume_server_proto_msgTypes[63]
  2964. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2965. ms.StoreMessageInfo(mi)
  2966. }
  2967. }
  2968. func (x *VolumeEcShardReadResponse) String() string {
  2969. return protoimpl.X.MessageStringOf(x)
  2970. }
  2971. func (*VolumeEcShardReadResponse) ProtoMessage() {}
  2972. func (x *VolumeEcShardReadResponse) ProtoReflect() protoreflect.Message {
  2973. mi := &file_volume_server_proto_msgTypes[63]
  2974. if protoimpl.UnsafeEnabled && x != nil {
  2975. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2976. if ms.LoadMessageInfo() == nil {
  2977. ms.StoreMessageInfo(mi)
  2978. }
  2979. return ms
  2980. }
  2981. return mi.MessageOf(x)
  2982. }
  2983. // Deprecated: Use VolumeEcShardReadResponse.ProtoReflect.Descriptor instead.
  2984. func (*VolumeEcShardReadResponse) Descriptor() ([]byte, []int) {
  2985. return file_volume_server_proto_rawDescGZIP(), []int{63}
  2986. }
  2987. func (x *VolumeEcShardReadResponse) GetData() []byte {
  2988. if x != nil {
  2989. return x.Data
  2990. }
  2991. return nil
  2992. }
  2993. func (x *VolumeEcShardReadResponse) GetIsDeleted() bool {
  2994. if x != nil {
  2995. return x.IsDeleted
  2996. }
  2997. return false
  2998. }
  2999. type VolumeEcBlobDeleteRequest struct {
  3000. state protoimpl.MessageState
  3001. sizeCache protoimpl.SizeCache
  3002. unknownFields protoimpl.UnknownFields
  3003. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3004. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3005. FileKey uint64 `protobuf:"varint,3,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  3006. Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
  3007. }
  3008. func (x *VolumeEcBlobDeleteRequest) Reset() {
  3009. *x = VolumeEcBlobDeleteRequest{}
  3010. if protoimpl.UnsafeEnabled {
  3011. mi := &file_volume_server_proto_msgTypes[64]
  3012. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3013. ms.StoreMessageInfo(mi)
  3014. }
  3015. }
  3016. func (x *VolumeEcBlobDeleteRequest) String() string {
  3017. return protoimpl.X.MessageStringOf(x)
  3018. }
  3019. func (*VolumeEcBlobDeleteRequest) ProtoMessage() {}
  3020. func (x *VolumeEcBlobDeleteRequest) ProtoReflect() protoreflect.Message {
  3021. mi := &file_volume_server_proto_msgTypes[64]
  3022. if protoimpl.UnsafeEnabled && x != nil {
  3023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3024. if ms.LoadMessageInfo() == nil {
  3025. ms.StoreMessageInfo(mi)
  3026. }
  3027. return ms
  3028. }
  3029. return mi.MessageOf(x)
  3030. }
  3031. // Deprecated: Use VolumeEcBlobDeleteRequest.ProtoReflect.Descriptor instead.
  3032. func (*VolumeEcBlobDeleteRequest) Descriptor() ([]byte, []int) {
  3033. return file_volume_server_proto_rawDescGZIP(), []int{64}
  3034. }
  3035. func (x *VolumeEcBlobDeleteRequest) GetVolumeId() uint32 {
  3036. if x != nil {
  3037. return x.VolumeId
  3038. }
  3039. return 0
  3040. }
  3041. func (x *VolumeEcBlobDeleteRequest) GetCollection() string {
  3042. if x != nil {
  3043. return x.Collection
  3044. }
  3045. return ""
  3046. }
  3047. func (x *VolumeEcBlobDeleteRequest) GetFileKey() uint64 {
  3048. if x != nil {
  3049. return x.FileKey
  3050. }
  3051. return 0
  3052. }
  3053. func (x *VolumeEcBlobDeleteRequest) GetVersion() uint32 {
  3054. if x != nil {
  3055. return x.Version
  3056. }
  3057. return 0
  3058. }
  3059. type VolumeEcBlobDeleteResponse struct {
  3060. state protoimpl.MessageState
  3061. sizeCache protoimpl.SizeCache
  3062. unknownFields protoimpl.UnknownFields
  3063. }
  3064. func (x *VolumeEcBlobDeleteResponse) Reset() {
  3065. *x = VolumeEcBlobDeleteResponse{}
  3066. if protoimpl.UnsafeEnabled {
  3067. mi := &file_volume_server_proto_msgTypes[65]
  3068. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3069. ms.StoreMessageInfo(mi)
  3070. }
  3071. }
  3072. func (x *VolumeEcBlobDeleteResponse) String() string {
  3073. return protoimpl.X.MessageStringOf(x)
  3074. }
  3075. func (*VolumeEcBlobDeleteResponse) ProtoMessage() {}
  3076. func (x *VolumeEcBlobDeleteResponse) ProtoReflect() protoreflect.Message {
  3077. mi := &file_volume_server_proto_msgTypes[65]
  3078. if protoimpl.UnsafeEnabled && x != nil {
  3079. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3080. if ms.LoadMessageInfo() == nil {
  3081. ms.StoreMessageInfo(mi)
  3082. }
  3083. return ms
  3084. }
  3085. return mi.MessageOf(x)
  3086. }
  3087. // Deprecated: Use VolumeEcBlobDeleteResponse.ProtoReflect.Descriptor instead.
  3088. func (*VolumeEcBlobDeleteResponse) Descriptor() ([]byte, []int) {
  3089. return file_volume_server_proto_rawDescGZIP(), []int{65}
  3090. }
  3091. type VolumeEcShardsToVolumeRequest struct {
  3092. state protoimpl.MessageState
  3093. sizeCache protoimpl.SizeCache
  3094. unknownFields protoimpl.UnknownFields
  3095. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3096. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3097. }
  3098. func (x *VolumeEcShardsToVolumeRequest) Reset() {
  3099. *x = VolumeEcShardsToVolumeRequest{}
  3100. if protoimpl.UnsafeEnabled {
  3101. mi := &file_volume_server_proto_msgTypes[66]
  3102. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3103. ms.StoreMessageInfo(mi)
  3104. }
  3105. }
  3106. func (x *VolumeEcShardsToVolumeRequest) String() string {
  3107. return protoimpl.X.MessageStringOf(x)
  3108. }
  3109. func (*VolumeEcShardsToVolumeRequest) ProtoMessage() {}
  3110. func (x *VolumeEcShardsToVolumeRequest) ProtoReflect() protoreflect.Message {
  3111. mi := &file_volume_server_proto_msgTypes[66]
  3112. if protoimpl.UnsafeEnabled && x != nil {
  3113. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3114. if ms.LoadMessageInfo() == nil {
  3115. ms.StoreMessageInfo(mi)
  3116. }
  3117. return ms
  3118. }
  3119. return mi.MessageOf(x)
  3120. }
  3121. // Deprecated: Use VolumeEcShardsToVolumeRequest.ProtoReflect.Descriptor instead.
  3122. func (*VolumeEcShardsToVolumeRequest) Descriptor() ([]byte, []int) {
  3123. return file_volume_server_proto_rawDescGZIP(), []int{66}
  3124. }
  3125. func (x *VolumeEcShardsToVolumeRequest) GetVolumeId() uint32 {
  3126. if x != nil {
  3127. return x.VolumeId
  3128. }
  3129. return 0
  3130. }
  3131. func (x *VolumeEcShardsToVolumeRequest) GetCollection() string {
  3132. if x != nil {
  3133. return x.Collection
  3134. }
  3135. return ""
  3136. }
  3137. type VolumeEcShardsToVolumeResponse struct {
  3138. state protoimpl.MessageState
  3139. sizeCache protoimpl.SizeCache
  3140. unknownFields protoimpl.UnknownFields
  3141. }
  3142. func (x *VolumeEcShardsToVolumeResponse) Reset() {
  3143. *x = VolumeEcShardsToVolumeResponse{}
  3144. if protoimpl.UnsafeEnabled {
  3145. mi := &file_volume_server_proto_msgTypes[67]
  3146. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3147. ms.StoreMessageInfo(mi)
  3148. }
  3149. }
  3150. func (x *VolumeEcShardsToVolumeResponse) String() string {
  3151. return protoimpl.X.MessageStringOf(x)
  3152. }
  3153. func (*VolumeEcShardsToVolumeResponse) ProtoMessage() {}
  3154. func (x *VolumeEcShardsToVolumeResponse) ProtoReflect() protoreflect.Message {
  3155. mi := &file_volume_server_proto_msgTypes[67]
  3156. if protoimpl.UnsafeEnabled && x != nil {
  3157. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3158. if ms.LoadMessageInfo() == nil {
  3159. ms.StoreMessageInfo(mi)
  3160. }
  3161. return ms
  3162. }
  3163. return mi.MessageOf(x)
  3164. }
  3165. // Deprecated: Use VolumeEcShardsToVolumeResponse.ProtoReflect.Descriptor instead.
  3166. func (*VolumeEcShardsToVolumeResponse) Descriptor() ([]byte, []int) {
  3167. return file_volume_server_proto_rawDescGZIP(), []int{67}
  3168. }
  3169. type ReadVolumeFileStatusRequest struct {
  3170. state protoimpl.MessageState
  3171. sizeCache protoimpl.SizeCache
  3172. unknownFields protoimpl.UnknownFields
  3173. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3174. }
  3175. func (x *ReadVolumeFileStatusRequest) Reset() {
  3176. *x = ReadVolumeFileStatusRequest{}
  3177. if protoimpl.UnsafeEnabled {
  3178. mi := &file_volume_server_proto_msgTypes[68]
  3179. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3180. ms.StoreMessageInfo(mi)
  3181. }
  3182. }
  3183. func (x *ReadVolumeFileStatusRequest) String() string {
  3184. return protoimpl.X.MessageStringOf(x)
  3185. }
  3186. func (*ReadVolumeFileStatusRequest) ProtoMessage() {}
  3187. func (x *ReadVolumeFileStatusRequest) ProtoReflect() protoreflect.Message {
  3188. mi := &file_volume_server_proto_msgTypes[68]
  3189. if protoimpl.UnsafeEnabled && x != nil {
  3190. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3191. if ms.LoadMessageInfo() == nil {
  3192. ms.StoreMessageInfo(mi)
  3193. }
  3194. return ms
  3195. }
  3196. return mi.MessageOf(x)
  3197. }
  3198. // Deprecated: Use ReadVolumeFileStatusRequest.ProtoReflect.Descriptor instead.
  3199. func (*ReadVolumeFileStatusRequest) Descriptor() ([]byte, []int) {
  3200. return file_volume_server_proto_rawDescGZIP(), []int{68}
  3201. }
  3202. func (x *ReadVolumeFileStatusRequest) GetVolumeId() uint32 {
  3203. if x != nil {
  3204. return x.VolumeId
  3205. }
  3206. return 0
  3207. }
  3208. type ReadVolumeFileStatusResponse struct {
  3209. state protoimpl.MessageState
  3210. sizeCache protoimpl.SizeCache
  3211. unknownFields protoimpl.UnknownFields
  3212. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3213. IdxFileTimestampSeconds uint64 `protobuf:"varint,2,opt,name=idx_file_timestamp_seconds,json=idxFileTimestampSeconds,proto3" json:"idx_file_timestamp_seconds,omitempty"`
  3214. IdxFileSize uint64 `protobuf:"varint,3,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  3215. DatFileTimestampSeconds uint64 `protobuf:"varint,4,opt,name=dat_file_timestamp_seconds,json=datFileTimestampSeconds,proto3" json:"dat_file_timestamp_seconds,omitempty"`
  3216. DatFileSize uint64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"`
  3217. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  3218. CompactionRevision uint32 `protobuf:"varint,7,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  3219. Collection string `protobuf:"bytes,8,opt,name=collection,proto3" json:"collection,omitempty"`
  3220. DiskType string `protobuf:"bytes,9,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3221. VolumeInfo *VolumeInfo `protobuf:"bytes,10,opt,name=volume_info,json=volumeInfo,proto3" json:"volume_info,omitempty"`
  3222. }
  3223. func (x *ReadVolumeFileStatusResponse) Reset() {
  3224. *x = ReadVolumeFileStatusResponse{}
  3225. if protoimpl.UnsafeEnabled {
  3226. mi := &file_volume_server_proto_msgTypes[69]
  3227. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3228. ms.StoreMessageInfo(mi)
  3229. }
  3230. }
  3231. func (x *ReadVolumeFileStatusResponse) String() string {
  3232. return protoimpl.X.MessageStringOf(x)
  3233. }
  3234. func (*ReadVolumeFileStatusResponse) ProtoMessage() {}
  3235. func (x *ReadVolumeFileStatusResponse) ProtoReflect() protoreflect.Message {
  3236. mi := &file_volume_server_proto_msgTypes[69]
  3237. if protoimpl.UnsafeEnabled && x != nil {
  3238. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3239. if ms.LoadMessageInfo() == nil {
  3240. ms.StoreMessageInfo(mi)
  3241. }
  3242. return ms
  3243. }
  3244. return mi.MessageOf(x)
  3245. }
  3246. // Deprecated: Use ReadVolumeFileStatusResponse.ProtoReflect.Descriptor instead.
  3247. func (*ReadVolumeFileStatusResponse) Descriptor() ([]byte, []int) {
  3248. return file_volume_server_proto_rawDescGZIP(), []int{69}
  3249. }
  3250. func (x *ReadVolumeFileStatusResponse) GetVolumeId() uint32 {
  3251. if x != nil {
  3252. return x.VolumeId
  3253. }
  3254. return 0
  3255. }
  3256. func (x *ReadVolumeFileStatusResponse) GetIdxFileTimestampSeconds() uint64 {
  3257. if x != nil {
  3258. return x.IdxFileTimestampSeconds
  3259. }
  3260. return 0
  3261. }
  3262. func (x *ReadVolumeFileStatusResponse) GetIdxFileSize() uint64 {
  3263. if x != nil {
  3264. return x.IdxFileSize
  3265. }
  3266. return 0
  3267. }
  3268. func (x *ReadVolumeFileStatusResponse) GetDatFileTimestampSeconds() uint64 {
  3269. if x != nil {
  3270. return x.DatFileTimestampSeconds
  3271. }
  3272. return 0
  3273. }
  3274. func (x *ReadVolumeFileStatusResponse) GetDatFileSize() uint64 {
  3275. if x != nil {
  3276. return x.DatFileSize
  3277. }
  3278. return 0
  3279. }
  3280. func (x *ReadVolumeFileStatusResponse) GetFileCount() uint64 {
  3281. if x != nil {
  3282. return x.FileCount
  3283. }
  3284. return 0
  3285. }
  3286. func (x *ReadVolumeFileStatusResponse) GetCompactionRevision() uint32 {
  3287. if x != nil {
  3288. return x.CompactionRevision
  3289. }
  3290. return 0
  3291. }
  3292. func (x *ReadVolumeFileStatusResponse) GetCollection() string {
  3293. if x != nil {
  3294. return x.Collection
  3295. }
  3296. return ""
  3297. }
  3298. func (x *ReadVolumeFileStatusResponse) GetDiskType() string {
  3299. if x != nil {
  3300. return x.DiskType
  3301. }
  3302. return ""
  3303. }
  3304. func (x *ReadVolumeFileStatusResponse) GetVolumeInfo() *VolumeInfo {
  3305. if x != nil {
  3306. return x.VolumeInfo
  3307. }
  3308. return nil
  3309. }
  3310. type DiskStatus struct {
  3311. state protoimpl.MessageState
  3312. sizeCache protoimpl.SizeCache
  3313. unknownFields protoimpl.UnknownFields
  3314. Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
  3315. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3316. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3317. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3318. PercentFree float32 `protobuf:"fixed32,5,opt,name=percent_free,json=percentFree,proto3" json:"percent_free,omitempty"`
  3319. PercentUsed float32 `protobuf:"fixed32,6,opt,name=percent_used,json=percentUsed,proto3" json:"percent_used,omitempty"`
  3320. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3321. }
  3322. func (x *DiskStatus) Reset() {
  3323. *x = DiskStatus{}
  3324. if protoimpl.UnsafeEnabled {
  3325. mi := &file_volume_server_proto_msgTypes[70]
  3326. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3327. ms.StoreMessageInfo(mi)
  3328. }
  3329. }
  3330. func (x *DiskStatus) String() string {
  3331. return protoimpl.X.MessageStringOf(x)
  3332. }
  3333. func (*DiskStatus) ProtoMessage() {}
  3334. func (x *DiskStatus) ProtoReflect() protoreflect.Message {
  3335. mi := &file_volume_server_proto_msgTypes[70]
  3336. if protoimpl.UnsafeEnabled && x != nil {
  3337. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3338. if ms.LoadMessageInfo() == nil {
  3339. ms.StoreMessageInfo(mi)
  3340. }
  3341. return ms
  3342. }
  3343. return mi.MessageOf(x)
  3344. }
  3345. // Deprecated: Use DiskStatus.ProtoReflect.Descriptor instead.
  3346. func (*DiskStatus) Descriptor() ([]byte, []int) {
  3347. return file_volume_server_proto_rawDescGZIP(), []int{70}
  3348. }
  3349. func (x *DiskStatus) GetDir() string {
  3350. if x != nil {
  3351. return x.Dir
  3352. }
  3353. return ""
  3354. }
  3355. func (x *DiskStatus) GetAll() uint64 {
  3356. if x != nil {
  3357. return x.All
  3358. }
  3359. return 0
  3360. }
  3361. func (x *DiskStatus) GetUsed() uint64 {
  3362. if x != nil {
  3363. return x.Used
  3364. }
  3365. return 0
  3366. }
  3367. func (x *DiskStatus) GetFree() uint64 {
  3368. if x != nil {
  3369. return x.Free
  3370. }
  3371. return 0
  3372. }
  3373. func (x *DiskStatus) GetPercentFree() float32 {
  3374. if x != nil {
  3375. return x.PercentFree
  3376. }
  3377. return 0
  3378. }
  3379. func (x *DiskStatus) GetPercentUsed() float32 {
  3380. if x != nil {
  3381. return x.PercentUsed
  3382. }
  3383. return 0
  3384. }
  3385. func (x *DiskStatus) GetDiskType() string {
  3386. if x != nil {
  3387. return x.DiskType
  3388. }
  3389. return ""
  3390. }
  3391. type MemStatus struct {
  3392. state protoimpl.MessageState
  3393. sizeCache protoimpl.SizeCache
  3394. unknownFields protoimpl.UnknownFields
  3395. Goroutines int32 `protobuf:"varint,1,opt,name=goroutines,proto3" json:"goroutines,omitempty"`
  3396. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3397. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3398. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3399. Self uint64 `protobuf:"varint,5,opt,name=self,proto3" json:"self,omitempty"`
  3400. Heap uint64 `protobuf:"varint,6,opt,name=heap,proto3" json:"heap,omitempty"`
  3401. Stack uint64 `protobuf:"varint,7,opt,name=stack,proto3" json:"stack,omitempty"`
  3402. }
  3403. func (x *MemStatus) Reset() {
  3404. *x = MemStatus{}
  3405. if protoimpl.UnsafeEnabled {
  3406. mi := &file_volume_server_proto_msgTypes[71]
  3407. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3408. ms.StoreMessageInfo(mi)
  3409. }
  3410. }
  3411. func (x *MemStatus) String() string {
  3412. return protoimpl.X.MessageStringOf(x)
  3413. }
  3414. func (*MemStatus) ProtoMessage() {}
  3415. func (x *MemStatus) ProtoReflect() protoreflect.Message {
  3416. mi := &file_volume_server_proto_msgTypes[71]
  3417. if protoimpl.UnsafeEnabled && x != nil {
  3418. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3419. if ms.LoadMessageInfo() == nil {
  3420. ms.StoreMessageInfo(mi)
  3421. }
  3422. return ms
  3423. }
  3424. return mi.MessageOf(x)
  3425. }
  3426. // Deprecated: Use MemStatus.ProtoReflect.Descriptor instead.
  3427. func (*MemStatus) Descriptor() ([]byte, []int) {
  3428. return file_volume_server_proto_rawDescGZIP(), []int{71}
  3429. }
  3430. func (x *MemStatus) GetGoroutines() int32 {
  3431. if x != nil {
  3432. return x.Goroutines
  3433. }
  3434. return 0
  3435. }
  3436. func (x *MemStatus) GetAll() uint64 {
  3437. if x != nil {
  3438. return x.All
  3439. }
  3440. return 0
  3441. }
  3442. func (x *MemStatus) GetUsed() uint64 {
  3443. if x != nil {
  3444. return x.Used
  3445. }
  3446. return 0
  3447. }
  3448. func (x *MemStatus) GetFree() uint64 {
  3449. if x != nil {
  3450. return x.Free
  3451. }
  3452. return 0
  3453. }
  3454. func (x *MemStatus) GetSelf() uint64 {
  3455. if x != nil {
  3456. return x.Self
  3457. }
  3458. return 0
  3459. }
  3460. func (x *MemStatus) GetHeap() uint64 {
  3461. if x != nil {
  3462. return x.Heap
  3463. }
  3464. return 0
  3465. }
  3466. func (x *MemStatus) GetStack() uint64 {
  3467. if x != nil {
  3468. return x.Stack
  3469. }
  3470. return 0
  3471. }
  3472. // tired storage on volume servers
  3473. type RemoteFile struct {
  3474. state protoimpl.MessageState
  3475. sizeCache protoimpl.SizeCache
  3476. unknownFields protoimpl.UnknownFields
  3477. BackendType string `protobuf:"bytes,1,opt,name=backend_type,json=backendType,proto3" json:"backend_type,omitempty"`
  3478. BackendId string `protobuf:"bytes,2,opt,name=backend_id,json=backendId,proto3" json:"backend_id,omitempty"`
  3479. Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
  3480. Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  3481. FileSize uint64 `protobuf:"varint,5,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
  3482. ModifiedTime uint64 `protobuf:"varint,6,opt,name=modified_time,json=modifiedTime,proto3" json:"modified_time,omitempty"`
  3483. Extension string `protobuf:"bytes,7,opt,name=extension,proto3" json:"extension,omitempty"`
  3484. }
  3485. func (x *RemoteFile) Reset() {
  3486. *x = RemoteFile{}
  3487. if protoimpl.UnsafeEnabled {
  3488. mi := &file_volume_server_proto_msgTypes[72]
  3489. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3490. ms.StoreMessageInfo(mi)
  3491. }
  3492. }
  3493. func (x *RemoteFile) String() string {
  3494. return protoimpl.X.MessageStringOf(x)
  3495. }
  3496. func (*RemoteFile) ProtoMessage() {}
  3497. func (x *RemoteFile) ProtoReflect() protoreflect.Message {
  3498. mi := &file_volume_server_proto_msgTypes[72]
  3499. if protoimpl.UnsafeEnabled && x != nil {
  3500. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3501. if ms.LoadMessageInfo() == nil {
  3502. ms.StoreMessageInfo(mi)
  3503. }
  3504. return ms
  3505. }
  3506. return mi.MessageOf(x)
  3507. }
  3508. // Deprecated: Use RemoteFile.ProtoReflect.Descriptor instead.
  3509. func (*RemoteFile) Descriptor() ([]byte, []int) {
  3510. return file_volume_server_proto_rawDescGZIP(), []int{72}
  3511. }
  3512. func (x *RemoteFile) GetBackendType() string {
  3513. if x != nil {
  3514. return x.BackendType
  3515. }
  3516. return ""
  3517. }
  3518. func (x *RemoteFile) GetBackendId() string {
  3519. if x != nil {
  3520. return x.BackendId
  3521. }
  3522. return ""
  3523. }
  3524. func (x *RemoteFile) GetKey() string {
  3525. if x != nil {
  3526. return x.Key
  3527. }
  3528. return ""
  3529. }
  3530. func (x *RemoteFile) GetOffset() uint64 {
  3531. if x != nil {
  3532. return x.Offset
  3533. }
  3534. return 0
  3535. }
  3536. func (x *RemoteFile) GetFileSize() uint64 {
  3537. if x != nil {
  3538. return x.FileSize
  3539. }
  3540. return 0
  3541. }
  3542. func (x *RemoteFile) GetModifiedTime() uint64 {
  3543. if x != nil {
  3544. return x.ModifiedTime
  3545. }
  3546. return 0
  3547. }
  3548. func (x *RemoteFile) GetExtension() string {
  3549. if x != nil {
  3550. return x.Extension
  3551. }
  3552. return ""
  3553. }
  3554. type VolumeInfo struct {
  3555. state protoimpl.MessageState
  3556. sizeCache protoimpl.SizeCache
  3557. unknownFields protoimpl.UnknownFields
  3558. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
  3559. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
  3560. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  3561. BytesOffset uint32 `protobuf:"varint,4,opt,name=BytesOffset,proto3" json:"BytesOffset,omitempty"`
  3562. }
  3563. func (x *VolumeInfo) Reset() {
  3564. *x = VolumeInfo{}
  3565. if protoimpl.UnsafeEnabled {
  3566. mi := &file_volume_server_proto_msgTypes[73]
  3567. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3568. ms.StoreMessageInfo(mi)
  3569. }
  3570. }
  3571. func (x *VolumeInfo) String() string {
  3572. return protoimpl.X.MessageStringOf(x)
  3573. }
  3574. func (*VolumeInfo) ProtoMessage() {}
  3575. func (x *VolumeInfo) ProtoReflect() protoreflect.Message {
  3576. mi := &file_volume_server_proto_msgTypes[73]
  3577. if protoimpl.UnsafeEnabled && x != nil {
  3578. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3579. if ms.LoadMessageInfo() == nil {
  3580. ms.StoreMessageInfo(mi)
  3581. }
  3582. return ms
  3583. }
  3584. return mi.MessageOf(x)
  3585. }
  3586. // Deprecated: Use VolumeInfo.ProtoReflect.Descriptor instead.
  3587. func (*VolumeInfo) Descriptor() ([]byte, []int) {
  3588. return file_volume_server_proto_rawDescGZIP(), []int{73}
  3589. }
  3590. func (x *VolumeInfo) GetFiles() []*RemoteFile {
  3591. if x != nil {
  3592. return x.Files
  3593. }
  3594. return nil
  3595. }
  3596. func (x *VolumeInfo) GetVersion() uint32 {
  3597. if x != nil {
  3598. return x.Version
  3599. }
  3600. return 0
  3601. }
  3602. func (x *VolumeInfo) GetReplication() string {
  3603. if x != nil {
  3604. return x.Replication
  3605. }
  3606. return ""
  3607. }
  3608. func (x *VolumeInfo) GetBytesOffset() uint32 {
  3609. if x != nil {
  3610. return x.BytesOffset
  3611. }
  3612. return 0
  3613. }
  3614. // tiered storage
  3615. type VolumeTierMoveDatToRemoteRequest struct {
  3616. state protoimpl.MessageState
  3617. sizeCache protoimpl.SizeCache
  3618. unknownFields protoimpl.UnknownFields
  3619. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3620. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3621. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName,proto3" json:"destination_backend_name,omitempty"`
  3622. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile,proto3" json:"keep_local_dat_file,omitempty"`
  3623. }
  3624. func (x *VolumeTierMoveDatToRemoteRequest) Reset() {
  3625. *x = VolumeTierMoveDatToRemoteRequest{}
  3626. if protoimpl.UnsafeEnabled {
  3627. mi := &file_volume_server_proto_msgTypes[74]
  3628. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3629. ms.StoreMessageInfo(mi)
  3630. }
  3631. }
  3632. func (x *VolumeTierMoveDatToRemoteRequest) String() string {
  3633. return protoimpl.X.MessageStringOf(x)
  3634. }
  3635. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  3636. func (x *VolumeTierMoveDatToRemoteRequest) ProtoReflect() protoreflect.Message {
  3637. mi := &file_volume_server_proto_msgTypes[74]
  3638. if protoimpl.UnsafeEnabled && x != nil {
  3639. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3640. if ms.LoadMessageInfo() == nil {
  3641. ms.StoreMessageInfo(mi)
  3642. }
  3643. return ms
  3644. }
  3645. return mi.MessageOf(x)
  3646. }
  3647. // Deprecated: Use VolumeTierMoveDatToRemoteRequest.ProtoReflect.Descriptor instead.
  3648. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  3649. return file_volume_server_proto_rawDescGZIP(), []int{74}
  3650. }
  3651. func (x *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  3652. if x != nil {
  3653. return x.VolumeId
  3654. }
  3655. return 0
  3656. }
  3657. func (x *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  3658. if x != nil {
  3659. return x.Collection
  3660. }
  3661. return ""
  3662. }
  3663. func (x *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  3664. if x != nil {
  3665. return x.DestinationBackendName
  3666. }
  3667. return ""
  3668. }
  3669. func (x *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  3670. if x != nil {
  3671. return x.KeepLocalDatFile
  3672. }
  3673. return false
  3674. }
  3675. type VolumeTierMoveDatToRemoteResponse struct {
  3676. state protoimpl.MessageState
  3677. sizeCache protoimpl.SizeCache
  3678. unknownFields protoimpl.UnknownFields
  3679. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3680. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3681. }
  3682. func (x *VolumeTierMoveDatToRemoteResponse) Reset() {
  3683. *x = VolumeTierMoveDatToRemoteResponse{}
  3684. if protoimpl.UnsafeEnabled {
  3685. mi := &file_volume_server_proto_msgTypes[75]
  3686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3687. ms.StoreMessageInfo(mi)
  3688. }
  3689. }
  3690. func (x *VolumeTierMoveDatToRemoteResponse) String() string {
  3691. return protoimpl.X.MessageStringOf(x)
  3692. }
  3693. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  3694. func (x *VolumeTierMoveDatToRemoteResponse) ProtoReflect() protoreflect.Message {
  3695. mi := &file_volume_server_proto_msgTypes[75]
  3696. if protoimpl.UnsafeEnabled && x != nil {
  3697. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3698. if ms.LoadMessageInfo() == nil {
  3699. ms.StoreMessageInfo(mi)
  3700. }
  3701. return ms
  3702. }
  3703. return mi.MessageOf(x)
  3704. }
  3705. // Deprecated: Use VolumeTierMoveDatToRemoteResponse.ProtoReflect.Descriptor instead.
  3706. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  3707. return file_volume_server_proto_rawDescGZIP(), []int{75}
  3708. }
  3709. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  3710. if x != nil {
  3711. return x.Processed
  3712. }
  3713. return 0
  3714. }
  3715. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  3716. if x != nil {
  3717. return x.ProcessedPercentage
  3718. }
  3719. return 0
  3720. }
  3721. type VolumeTierMoveDatFromRemoteRequest struct {
  3722. state protoimpl.MessageState
  3723. sizeCache protoimpl.SizeCache
  3724. unknownFields protoimpl.UnknownFields
  3725. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3726. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3727. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile,proto3" json:"keep_remote_dat_file,omitempty"`
  3728. }
  3729. func (x *VolumeTierMoveDatFromRemoteRequest) Reset() {
  3730. *x = VolumeTierMoveDatFromRemoteRequest{}
  3731. if protoimpl.UnsafeEnabled {
  3732. mi := &file_volume_server_proto_msgTypes[76]
  3733. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3734. ms.StoreMessageInfo(mi)
  3735. }
  3736. }
  3737. func (x *VolumeTierMoveDatFromRemoteRequest) String() string {
  3738. return protoimpl.X.MessageStringOf(x)
  3739. }
  3740. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  3741. func (x *VolumeTierMoveDatFromRemoteRequest) ProtoReflect() protoreflect.Message {
  3742. mi := &file_volume_server_proto_msgTypes[76]
  3743. if protoimpl.UnsafeEnabled && x != nil {
  3744. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3745. if ms.LoadMessageInfo() == nil {
  3746. ms.StoreMessageInfo(mi)
  3747. }
  3748. return ms
  3749. }
  3750. return mi.MessageOf(x)
  3751. }
  3752. // Deprecated: Use VolumeTierMoveDatFromRemoteRequest.ProtoReflect.Descriptor instead.
  3753. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  3754. return file_volume_server_proto_rawDescGZIP(), []int{76}
  3755. }
  3756. func (x *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  3757. if x != nil {
  3758. return x.VolumeId
  3759. }
  3760. return 0
  3761. }
  3762. func (x *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  3763. if x != nil {
  3764. return x.Collection
  3765. }
  3766. return ""
  3767. }
  3768. func (x *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  3769. if x != nil {
  3770. return x.KeepRemoteDatFile
  3771. }
  3772. return false
  3773. }
  3774. type VolumeTierMoveDatFromRemoteResponse struct {
  3775. state protoimpl.MessageState
  3776. sizeCache protoimpl.SizeCache
  3777. unknownFields protoimpl.UnknownFields
  3778. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3779. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3780. }
  3781. func (x *VolumeTierMoveDatFromRemoteResponse) Reset() {
  3782. *x = VolumeTierMoveDatFromRemoteResponse{}
  3783. if protoimpl.UnsafeEnabled {
  3784. mi := &file_volume_server_proto_msgTypes[77]
  3785. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3786. ms.StoreMessageInfo(mi)
  3787. }
  3788. }
  3789. func (x *VolumeTierMoveDatFromRemoteResponse) String() string {
  3790. return protoimpl.X.MessageStringOf(x)
  3791. }
  3792. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  3793. func (x *VolumeTierMoveDatFromRemoteResponse) ProtoReflect() protoreflect.Message {
  3794. mi := &file_volume_server_proto_msgTypes[77]
  3795. if protoimpl.UnsafeEnabled && x != nil {
  3796. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3797. if ms.LoadMessageInfo() == nil {
  3798. ms.StoreMessageInfo(mi)
  3799. }
  3800. return ms
  3801. }
  3802. return mi.MessageOf(x)
  3803. }
  3804. // Deprecated: Use VolumeTierMoveDatFromRemoteResponse.ProtoReflect.Descriptor instead.
  3805. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  3806. return file_volume_server_proto_rawDescGZIP(), []int{77}
  3807. }
  3808. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  3809. if x != nil {
  3810. return x.Processed
  3811. }
  3812. return 0
  3813. }
  3814. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  3815. if x != nil {
  3816. return x.ProcessedPercentage
  3817. }
  3818. return 0
  3819. }
  3820. type VolumeServerStatusRequest struct {
  3821. state protoimpl.MessageState
  3822. sizeCache protoimpl.SizeCache
  3823. unknownFields protoimpl.UnknownFields
  3824. }
  3825. func (x *VolumeServerStatusRequest) Reset() {
  3826. *x = VolumeServerStatusRequest{}
  3827. if protoimpl.UnsafeEnabled {
  3828. mi := &file_volume_server_proto_msgTypes[78]
  3829. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3830. ms.StoreMessageInfo(mi)
  3831. }
  3832. }
  3833. func (x *VolumeServerStatusRequest) String() string {
  3834. return protoimpl.X.MessageStringOf(x)
  3835. }
  3836. func (*VolumeServerStatusRequest) ProtoMessage() {}
  3837. func (x *VolumeServerStatusRequest) ProtoReflect() protoreflect.Message {
  3838. mi := &file_volume_server_proto_msgTypes[78]
  3839. if protoimpl.UnsafeEnabled && x != nil {
  3840. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3841. if ms.LoadMessageInfo() == nil {
  3842. ms.StoreMessageInfo(mi)
  3843. }
  3844. return ms
  3845. }
  3846. return mi.MessageOf(x)
  3847. }
  3848. // Deprecated: Use VolumeServerStatusRequest.ProtoReflect.Descriptor instead.
  3849. func (*VolumeServerStatusRequest) Descriptor() ([]byte, []int) {
  3850. return file_volume_server_proto_rawDescGZIP(), []int{78}
  3851. }
  3852. type VolumeServerStatusResponse struct {
  3853. state protoimpl.MessageState
  3854. sizeCache protoimpl.SizeCache
  3855. unknownFields protoimpl.UnknownFields
  3856. DiskStatuses []*DiskStatus `protobuf:"bytes,1,rep,name=disk_statuses,json=diskStatuses,proto3" json:"disk_statuses,omitempty"`
  3857. MemoryStatus *MemStatus `protobuf:"bytes,2,opt,name=memory_status,json=memoryStatus,proto3" json:"memory_status,omitempty"`
  3858. Version string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
  3859. DataCenter string `protobuf:"bytes,4,opt,name=data_center,json=dataCenter,proto3" json:"data_center,omitempty"`
  3860. Rack string `protobuf:"bytes,5,opt,name=rack,proto3" json:"rack,omitempty"`
  3861. }
  3862. func (x *VolumeServerStatusResponse) Reset() {
  3863. *x = VolumeServerStatusResponse{}
  3864. if protoimpl.UnsafeEnabled {
  3865. mi := &file_volume_server_proto_msgTypes[79]
  3866. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3867. ms.StoreMessageInfo(mi)
  3868. }
  3869. }
  3870. func (x *VolumeServerStatusResponse) String() string {
  3871. return protoimpl.X.MessageStringOf(x)
  3872. }
  3873. func (*VolumeServerStatusResponse) ProtoMessage() {}
  3874. func (x *VolumeServerStatusResponse) ProtoReflect() protoreflect.Message {
  3875. mi := &file_volume_server_proto_msgTypes[79]
  3876. if protoimpl.UnsafeEnabled && x != nil {
  3877. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3878. if ms.LoadMessageInfo() == nil {
  3879. ms.StoreMessageInfo(mi)
  3880. }
  3881. return ms
  3882. }
  3883. return mi.MessageOf(x)
  3884. }
  3885. // Deprecated: Use VolumeServerStatusResponse.ProtoReflect.Descriptor instead.
  3886. func (*VolumeServerStatusResponse) Descriptor() ([]byte, []int) {
  3887. return file_volume_server_proto_rawDescGZIP(), []int{79}
  3888. }
  3889. func (x *VolumeServerStatusResponse) GetDiskStatuses() []*DiskStatus {
  3890. if x != nil {
  3891. return x.DiskStatuses
  3892. }
  3893. return nil
  3894. }
  3895. func (x *VolumeServerStatusResponse) GetMemoryStatus() *MemStatus {
  3896. if x != nil {
  3897. return x.MemoryStatus
  3898. }
  3899. return nil
  3900. }
  3901. func (x *VolumeServerStatusResponse) GetVersion() string {
  3902. if x != nil {
  3903. return x.Version
  3904. }
  3905. return ""
  3906. }
  3907. func (x *VolumeServerStatusResponse) GetDataCenter() string {
  3908. if x != nil {
  3909. return x.DataCenter
  3910. }
  3911. return ""
  3912. }
  3913. func (x *VolumeServerStatusResponse) GetRack() string {
  3914. if x != nil {
  3915. return x.Rack
  3916. }
  3917. return ""
  3918. }
  3919. type VolumeServerLeaveRequest struct {
  3920. state protoimpl.MessageState
  3921. sizeCache protoimpl.SizeCache
  3922. unknownFields protoimpl.UnknownFields
  3923. }
  3924. func (x *VolumeServerLeaveRequest) Reset() {
  3925. *x = VolumeServerLeaveRequest{}
  3926. if protoimpl.UnsafeEnabled {
  3927. mi := &file_volume_server_proto_msgTypes[80]
  3928. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3929. ms.StoreMessageInfo(mi)
  3930. }
  3931. }
  3932. func (x *VolumeServerLeaveRequest) String() string {
  3933. return protoimpl.X.MessageStringOf(x)
  3934. }
  3935. func (*VolumeServerLeaveRequest) ProtoMessage() {}
  3936. func (x *VolumeServerLeaveRequest) ProtoReflect() protoreflect.Message {
  3937. mi := &file_volume_server_proto_msgTypes[80]
  3938. if protoimpl.UnsafeEnabled && x != nil {
  3939. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3940. if ms.LoadMessageInfo() == nil {
  3941. ms.StoreMessageInfo(mi)
  3942. }
  3943. return ms
  3944. }
  3945. return mi.MessageOf(x)
  3946. }
  3947. // Deprecated: Use VolumeServerLeaveRequest.ProtoReflect.Descriptor instead.
  3948. func (*VolumeServerLeaveRequest) Descriptor() ([]byte, []int) {
  3949. return file_volume_server_proto_rawDescGZIP(), []int{80}
  3950. }
  3951. type VolumeServerLeaveResponse struct {
  3952. state protoimpl.MessageState
  3953. sizeCache protoimpl.SizeCache
  3954. unknownFields protoimpl.UnknownFields
  3955. }
  3956. func (x *VolumeServerLeaveResponse) Reset() {
  3957. *x = VolumeServerLeaveResponse{}
  3958. if protoimpl.UnsafeEnabled {
  3959. mi := &file_volume_server_proto_msgTypes[81]
  3960. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3961. ms.StoreMessageInfo(mi)
  3962. }
  3963. }
  3964. func (x *VolumeServerLeaveResponse) String() string {
  3965. return protoimpl.X.MessageStringOf(x)
  3966. }
  3967. func (*VolumeServerLeaveResponse) ProtoMessage() {}
  3968. func (x *VolumeServerLeaveResponse) ProtoReflect() protoreflect.Message {
  3969. mi := &file_volume_server_proto_msgTypes[81]
  3970. if protoimpl.UnsafeEnabled && x != nil {
  3971. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3972. if ms.LoadMessageInfo() == nil {
  3973. ms.StoreMessageInfo(mi)
  3974. }
  3975. return ms
  3976. }
  3977. return mi.MessageOf(x)
  3978. }
  3979. // Deprecated: Use VolumeServerLeaveResponse.ProtoReflect.Descriptor instead.
  3980. func (*VolumeServerLeaveResponse) Descriptor() ([]byte, []int) {
  3981. return file_volume_server_proto_rawDescGZIP(), []int{81}
  3982. }
  3983. // remote storage
  3984. type FetchAndWriteNeedleRequest struct {
  3985. state protoimpl.MessageState
  3986. sizeCache protoimpl.SizeCache
  3987. unknownFields protoimpl.UnknownFields
  3988. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3989. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3990. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  3991. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  3992. Size int64 `protobuf:"varint,5,opt,name=size,proto3" json:"size,omitempty"`
  3993. Replicas []*FetchAndWriteNeedleRequest_Replica `protobuf:"bytes,6,rep,name=replicas,proto3" json:"replicas,omitempty"`
  3994. Auth string `protobuf:"bytes,7,opt,name=auth,proto3" json:"auth,omitempty"`
  3995. // remote conf
  3996. RemoteConf *remote_pb.RemoteConf `protobuf:"bytes,15,opt,name=remote_conf,json=remoteConf,proto3" json:"remote_conf,omitempty"`
  3997. RemoteLocation *remote_pb.RemoteStorageLocation `protobuf:"bytes,16,opt,name=remote_location,json=remoteLocation,proto3" json:"remote_location,omitempty"`
  3998. }
  3999. func (x *FetchAndWriteNeedleRequest) Reset() {
  4000. *x = FetchAndWriteNeedleRequest{}
  4001. if protoimpl.UnsafeEnabled {
  4002. mi := &file_volume_server_proto_msgTypes[82]
  4003. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4004. ms.StoreMessageInfo(mi)
  4005. }
  4006. }
  4007. func (x *FetchAndWriteNeedleRequest) String() string {
  4008. return protoimpl.X.MessageStringOf(x)
  4009. }
  4010. func (*FetchAndWriteNeedleRequest) ProtoMessage() {}
  4011. func (x *FetchAndWriteNeedleRequest) ProtoReflect() protoreflect.Message {
  4012. mi := &file_volume_server_proto_msgTypes[82]
  4013. if protoimpl.UnsafeEnabled && x != nil {
  4014. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4015. if ms.LoadMessageInfo() == nil {
  4016. ms.StoreMessageInfo(mi)
  4017. }
  4018. return ms
  4019. }
  4020. return mi.MessageOf(x)
  4021. }
  4022. // Deprecated: Use FetchAndWriteNeedleRequest.ProtoReflect.Descriptor instead.
  4023. func (*FetchAndWriteNeedleRequest) Descriptor() ([]byte, []int) {
  4024. return file_volume_server_proto_rawDescGZIP(), []int{82}
  4025. }
  4026. func (x *FetchAndWriteNeedleRequest) GetVolumeId() uint32 {
  4027. if x != nil {
  4028. return x.VolumeId
  4029. }
  4030. return 0
  4031. }
  4032. func (x *FetchAndWriteNeedleRequest) GetNeedleId() uint64 {
  4033. if x != nil {
  4034. return x.NeedleId
  4035. }
  4036. return 0
  4037. }
  4038. func (x *FetchAndWriteNeedleRequest) GetCookie() uint32 {
  4039. if x != nil {
  4040. return x.Cookie
  4041. }
  4042. return 0
  4043. }
  4044. func (x *FetchAndWriteNeedleRequest) GetOffset() int64 {
  4045. if x != nil {
  4046. return x.Offset
  4047. }
  4048. return 0
  4049. }
  4050. func (x *FetchAndWriteNeedleRequest) GetSize() int64 {
  4051. if x != nil {
  4052. return x.Size
  4053. }
  4054. return 0
  4055. }
  4056. func (x *FetchAndWriteNeedleRequest) GetReplicas() []*FetchAndWriteNeedleRequest_Replica {
  4057. if x != nil {
  4058. return x.Replicas
  4059. }
  4060. return nil
  4061. }
  4062. func (x *FetchAndWriteNeedleRequest) GetAuth() string {
  4063. if x != nil {
  4064. return x.Auth
  4065. }
  4066. return ""
  4067. }
  4068. func (x *FetchAndWriteNeedleRequest) GetRemoteConf() *remote_pb.RemoteConf {
  4069. if x != nil {
  4070. return x.RemoteConf
  4071. }
  4072. return nil
  4073. }
  4074. func (x *FetchAndWriteNeedleRequest) GetRemoteLocation() *remote_pb.RemoteStorageLocation {
  4075. if x != nil {
  4076. return x.RemoteLocation
  4077. }
  4078. return nil
  4079. }
  4080. type FetchAndWriteNeedleResponse struct {
  4081. state protoimpl.MessageState
  4082. sizeCache protoimpl.SizeCache
  4083. unknownFields protoimpl.UnknownFields
  4084. ETag string `protobuf:"bytes,1,opt,name=e_tag,json=eTag,proto3" json:"e_tag,omitempty"`
  4085. }
  4086. func (x *FetchAndWriteNeedleResponse) Reset() {
  4087. *x = FetchAndWriteNeedleResponse{}
  4088. if protoimpl.UnsafeEnabled {
  4089. mi := &file_volume_server_proto_msgTypes[83]
  4090. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4091. ms.StoreMessageInfo(mi)
  4092. }
  4093. }
  4094. func (x *FetchAndWriteNeedleResponse) String() string {
  4095. return protoimpl.X.MessageStringOf(x)
  4096. }
  4097. func (*FetchAndWriteNeedleResponse) ProtoMessage() {}
  4098. func (x *FetchAndWriteNeedleResponse) ProtoReflect() protoreflect.Message {
  4099. mi := &file_volume_server_proto_msgTypes[83]
  4100. if protoimpl.UnsafeEnabled && x != nil {
  4101. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4102. if ms.LoadMessageInfo() == nil {
  4103. ms.StoreMessageInfo(mi)
  4104. }
  4105. return ms
  4106. }
  4107. return mi.MessageOf(x)
  4108. }
  4109. // Deprecated: Use FetchAndWriteNeedleResponse.ProtoReflect.Descriptor instead.
  4110. func (*FetchAndWriteNeedleResponse) Descriptor() ([]byte, []int) {
  4111. return file_volume_server_proto_rawDescGZIP(), []int{83}
  4112. }
  4113. func (x *FetchAndWriteNeedleResponse) GetETag() string {
  4114. if x != nil {
  4115. return x.ETag
  4116. }
  4117. return ""
  4118. }
  4119. // select on volume servers
  4120. type QueryRequest struct {
  4121. state protoimpl.MessageState
  4122. sizeCache protoimpl.SizeCache
  4123. unknownFields protoimpl.UnknownFields
  4124. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  4125. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  4126. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  4127. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  4128. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  4129. }
  4130. func (x *QueryRequest) Reset() {
  4131. *x = QueryRequest{}
  4132. if protoimpl.UnsafeEnabled {
  4133. mi := &file_volume_server_proto_msgTypes[84]
  4134. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4135. ms.StoreMessageInfo(mi)
  4136. }
  4137. }
  4138. func (x *QueryRequest) String() string {
  4139. return protoimpl.X.MessageStringOf(x)
  4140. }
  4141. func (*QueryRequest) ProtoMessage() {}
  4142. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  4143. mi := &file_volume_server_proto_msgTypes[84]
  4144. if protoimpl.UnsafeEnabled && x != nil {
  4145. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4146. if ms.LoadMessageInfo() == nil {
  4147. ms.StoreMessageInfo(mi)
  4148. }
  4149. return ms
  4150. }
  4151. return mi.MessageOf(x)
  4152. }
  4153. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  4154. func (*QueryRequest) Descriptor() ([]byte, []int) {
  4155. return file_volume_server_proto_rawDescGZIP(), []int{84}
  4156. }
  4157. func (x *QueryRequest) GetSelections() []string {
  4158. if x != nil {
  4159. return x.Selections
  4160. }
  4161. return nil
  4162. }
  4163. func (x *QueryRequest) GetFromFileIds() []string {
  4164. if x != nil {
  4165. return x.FromFileIds
  4166. }
  4167. return nil
  4168. }
  4169. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  4170. if x != nil {
  4171. return x.Filter
  4172. }
  4173. return nil
  4174. }
  4175. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  4176. if x != nil {
  4177. return x.InputSerialization
  4178. }
  4179. return nil
  4180. }
  4181. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  4182. if x != nil {
  4183. return x.OutputSerialization
  4184. }
  4185. return nil
  4186. }
  4187. type QueriedStripe struct {
  4188. state protoimpl.MessageState
  4189. sizeCache protoimpl.SizeCache
  4190. unknownFields protoimpl.UnknownFields
  4191. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  4192. }
  4193. func (x *QueriedStripe) Reset() {
  4194. *x = QueriedStripe{}
  4195. if protoimpl.UnsafeEnabled {
  4196. mi := &file_volume_server_proto_msgTypes[85]
  4197. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4198. ms.StoreMessageInfo(mi)
  4199. }
  4200. }
  4201. func (x *QueriedStripe) String() string {
  4202. return protoimpl.X.MessageStringOf(x)
  4203. }
  4204. func (*QueriedStripe) ProtoMessage() {}
  4205. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  4206. mi := &file_volume_server_proto_msgTypes[85]
  4207. if protoimpl.UnsafeEnabled && x != nil {
  4208. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4209. if ms.LoadMessageInfo() == nil {
  4210. ms.StoreMessageInfo(mi)
  4211. }
  4212. return ms
  4213. }
  4214. return mi.MessageOf(x)
  4215. }
  4216. // Deprecated: Use QueriedStripe.ProtoReflect.Descriptor instead.
  4217. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  4218. return file_volume_server_proto_rawDescGZIP(), []int{85}
  4219. }
  4220. func (x *QueriedStripe) GetRecords() []byte {
  4221. if x != nil {
  4222. return x.Records
  4223. }
  4224. return nil
  4225. }
  4226. type VolumeNeedleStatusRequest struct {
  4227. state protoimpl.MessageState
  4228. sizeCache protoimpl.SizeCache
  4229. unknownFields protoimpl.UnknownFields
  4230. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  4231. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4232. }
  4233. func (x *VolumeNeedleStatusRequest) Reset() {
  4234. *x = VolumeNeedleStatusRequest{}
  4235. if protoimpl.UnsafeEnabled {
  4236. mi := &file_volume_server_proto_msgTypes[86]
  4237. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4238. ms.StoreMessageInfo(mi)
  4239. }
  4240. }
  4241. func (x *VolumeNeedleStatusRequest) String() string {
  4242. return protoimpl.X.MessageStringOf(x)
  4243. }
  4244. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  4245. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  4246. mi := &file_volume_server_proto_msgTypes[86]
  4247. if protoimpl.UnsafeEnabled && x != nil {
  4248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4249. if ms.LoadMessageInfo() == nil {
  4250. ms.StoreMessageInfo(mi)
  4251. }
  4252. return ms
  4253. }
  4254. return mi.MessageOf(x)
  4255. }
  4256. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  4257. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  4258. return file_volume_server_proto_rawDescGZIP(), []int{86}
  4259. }
  4260. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  4261. if x != nil {
  4262. return x.VolumeId
  4263. }
  4264. return 0
  4265. }
  4266. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  4267. if x != nil {
  4268. return x.NeedleId
  4269. }
  4270. return 0
  4271. }
  4272. type VolumeNeedleStatusResponse struct {
  4273. state protoimpl.MessageState
  4274. sizeCache protoimpl.SizeCache
  4275. unknownFields protoimpl.UnknownFields
  4276. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4277. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  4278. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  4279. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  4280. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  4281. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  4282. }
  4283. func (x *VolumeNeedleStatusResponse) Reset() {
  4284. *x = VolumeNeedleStatusResponse{}
  4285. if protoimpl.UnsafeEnabled {
  4286. mi := &file_volume_server_proto_msgTypes[87]
  4287. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4288. ms.StoreMessageInfo(mi)
  4289. }
  4290. }
  4291. func (x *VolumeNeedleStatusResponse) String() string {
  4292. return protoimpl.X.MessageStringOf(x)
  4293. }
  4294. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  4295. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  4296. mi := &file_volume_server_proto_msgTypes[87]
  4297. if protoimpl.UnsafeEnabled && x != nil {
  4298. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4299. if ms.LoadMessageInfo() == nil {
  4300. ms.StoreMessageInfo(mi)
  4301. }
  4302. return ms
  4303. }
  4304. return mi.MessageOf(x)
  4305. }
  4306. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  4307. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  4308. return file_volume_server_proto_rawDescGZIP(), []int{87}
  4309. }
  4310. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  4311. if x != nil {
  4312. return x.NeedleId
  4313. }
  4314. return 0
  4315. }
  4316. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  4317. if x != nil {
  4318. return x.Cookie
  4319. }
  4320. return 0
  4321. }
  4322. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  4323. if x != nil {
  4324. return x.Size
  4325. }
  4326. return 0
  4327. }
  4328. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  4329. if x != nil {
  4330. return x.LastModified
  4331. }
  4332. return 0
  4333. }
  4334. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  4335. if x != nil {
  4336. return x.Crc
  4337. }
  4338. return 0
  4339. }
  4340. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  4341. if x != nil {
  4342. return x.Ttl
  4343. }
  4344. return ""
  4345. }
  4346. type PingRequest struct {
  4347. state protoimpl.MessageState
  4348. sizeCache protoimpl.SizeCache
  4349. unknownFields protoimpl.UnknownFields
  4350. Target string `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"` // default to ping itself
  4351. TargetType string `protobuf:"bytes,2,opt,name=target_type,json=targetType,proto3" json:"target_type,omitempty"`
  4352. }
  4353. func (x *PingRequest) Reset() {
  4354. *x = PingRequest{}
  4355. if protoimpl.UnsafeEnabled {
  4356. mi := &file_volume_server_proto_msgTypes[88]
  4357. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4358. ms.StoreMessageInfo(mi)
  4359. }
  4360. }
  4361. func (x *PingRequest) String() string {
  4362. return protoimpl.X.MessageStringOf(x)
  4363. }
  4364. func (*PingRequest) ProtoMessage() {}
  4365. func (x *PingRequest) ProtoReflect() protoreflect.Message {
  4366. mi := &file_volume_server_proto_msgTypes[88]
  4367. if protoimpl.UnsafeEnabled && x != nil {
  4368. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4369. if ms.LoadMessageInfo() == nil {
  4370. ms.StoreMessageInfo(mi)
  4371. }
  4372. return ms
  4373. }
  4374. return mi.MessageOf(x)
  4375. }
  4376. // Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.
  4377. func (*PingRequest) Descriptor() ([]byte, []int) {
  4378. return file_volume_server_proto_rawDescGZIP(), []int{88}
  4379. }
  4380. func (x *PingRequest) GetTarget() string {
  4381. if x != nil {
  4382. return x.Target
  4383. }
  4384. return ""
  4385. }
  4386. func (x *PingRequest) GetTargetType() string {
  4387. if x != nil {
  4388. return x.TargetType
  4389. }
  4390. return ""
  4391. }
  4392. type PingResponse struct {
  4393. state protoimpl.MessageState
  4394. sizeCache protoimpl.SizeCache
  4395. unknownFields protoimpl.UnknownFields
  4396. StartTimeNs int64 `protobuf:"varint,1,opt,name=start_time_ns,json=startTimeNs,proto3" json:"start_time_ns,omitempty"`
  4397. RemoteTimeNs int64 `protobuf:"varint,2,opt,name=remote_time_ns,json=remoteTimeNs,proto3" json:"remote_time_ns,omitempty"`
  4398. StopTimeNs int64 `protobuf:"varint,3,opt,name=stop_time_ns,json=stopTimeNs,proto3" json:"stop_time_ns,omitempty"`
  4399. }
  4400. func (x *PingResponse) Reset() {
  4401. *x = PingResponse{}
  4402. if protoimpl.UnsafeEnabled {
  4403. mi := &file_volume_server_proto_msgTypes[89]
  4404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4405. ms.StoreMessageInfo(mi)
  4406. }
  4407. }
  4408. func (x *PingResponse) String() string {
  4409. return protoimpl.X.MessageStringOf(x)
  4410. }
  4411. func (*PingResponse) ProtoMessage() {}
  4412. func (x *PingResponse) ProtoReflect() protoreflect.Message {
  4413. mi := &file_volume_server_proto_msgTypes[89]
  4414. if protoimpl.UnsafeEnabled && x != nil {
  4415. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4416. if ms.LoadMessageInfo() == nil {
  4417. ms.StoreMessageInfo(mi)
  4418. }
  4419. return ms
  4420. }
  4421. return mi.MessageOf(x)
  4422. }
  4423. // Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.
  4424. func (*PingResponse) Descriptor() ([]byte, []int) {
  4425. return file_volume_server_proto_rawDescGZIP(), []int{89}
  4426. }
  4427. func (x *PingResponse) GetStartTimeNs() int64 {
  4428. if x != nil {
  4429. return x.StartTimeNs
  4430. }
  4431. return 0
  4432. }
  4433. func (x *PingResponse) GetRemoteTimeNs() int64 {
  4434. if x != nil {
  4435. return x.RemoteTimeNs
  4436. }
  4437. return 0
  4438. }
  4439. func (x *PingResponse) GetStopTimeNs() int64 {
  4440. if x != nil {
  4441. return x.StopTimeNs
  4442. }
  4443. return 0
  4444. }
  4445. type FetchAndWriteNeedleRequest_Replica struct {
  4446. state protoimpl.MessageState
  4447. sizeCache protoimpl.SizeCache
  4448. unknownFields protoimpl.UnknownFields
  4449. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  4450. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl,proto3" json:"public_url,omitempty"`
  4451. GrpcPort int32 `protobuf:"varint,3,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
  4452. }
  4453. func (x *FetchAndWriteNeedleRequest_Replica) Reset() {
  4454. *x = FetchAndWriteNeedleRequest_Replica{}
  4455. if protoimpl.UnsafeEnabled {
  4456. mi := &file_volume_server_proto_msgTypes[90]
  4457. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4458. ms.StoreMessageInfo(mi)
  4459. }
  4460. }
  4461. func (x *FetchAndWriteNeedleRequest_Replica) String() string {
  4462. return protoimpl.X.MessageStringOf(x)
  4463. }
  4464. func (*FetchAndWriteNeedleRequest_Replica) ProtoMessage() {}
  4465. func (x *FetchAndWriteNeedleRequest_Replica) ProtoReflect() protoreflect.Message {
  4466. mi := &file_volume_server_proto_msgTypes[90]
  4467. if protoimpl.UnsafeEnabled && x != nil {
  4468. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4469. if ms.LoadMessageInfo() == nil {
  4470. ms.StoreMessageInfo(mi)
  4471. }
  4472. return ms
  4473. }
  4474. return mi.MessageOf(x)
  4475. }
  4476. // Deprecated: Use FetchAndWriteNeedleRequest_Replica.ProtoReflect.Descriptor instead.
  4477. func (*FetchAndWriteNeedleRequest_Replica) Descriptor() ([]byte, []int) {
  4478. return file_volume_server_proto_rawDescGZIP(), []int{82, 0}
  4479. }
  4480. func (x *FetchAndWriteNeedleRequest_Replica) GetUrl() string {
  4481. if x != nil {
  4482. return x.Url
  4483. }
  4484. return ""
  4485. }
  4486. func (x *FetchAndWriteNeedleRequest_Replica) GetPublicUrl() string {
  4487. if x != nil {
  4488. return x.PublicUrl
  4489. }
  4490. return ""
  4491. }
  4492. func (x *FetchAndWriteNeedleRequest_Replica) GetGrpcPort() int32 {
  4493. if x != nil {
  4494. return x.GrpcPort
  4495. }
  4496. return 0
  4497. }
  4498. type QueryRequest_Filter struct {
  4499. state protoimpl.MessageState
  4500. sizeCache protoimpl.SizeCache
  4501. unknownFields protoimpl.UnknownFields
  4502. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  4503. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  4504. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  4505. }
  4506. func (x *QueryRequest_Filter) Reset() {
  4507. *x = QueryRequest_Filter{}
  4508. if protoimpl.UnsafeEnabled {
  4509. mi := &file_volume_server_proto_msgTypes[91]
  4510. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4511. ms.StoreMessageInfo(mi)
  4512. }
  4513. }
  4514. func (x *QueryRequest_Filter) String() string {
  4515. return protoimpl.X.MessageStringOf(x)
  4516. }
  4517. func (*QueryRequest_Filter) ProtoMessage() {}
  4518. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  4519. mi := &file_volume_server_proto_msgTypes[91]
  4520. if protoimpl.UnsafeEnabled && x != nil {
  4521. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4522. if ms.LoadMessageInfo() == nil {
  4523. ms.StoreMessageInfo(mi)
  4524. }
  4525. return ms
  4526. }
  4527. return mi.MessageOf(x)
  4528. }
  4529. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  4530. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  4531. return file_volume_server_proto_rawDescGZIP(), []int{84, 0}
  4532. }
  4533. func (x *QueryRequest_Filter) GetField() string {
  4534. if x != nil {
  4535. return x.Field
  4536. }
  4537. return ""
  4538. }
  4539. func (x *QueryRequest_Filter) GetOperand() string {
  4540. if x != nil {
  4541. return x.Operand
  4542. }
  4543. return ""
  4544. }
  4545. func (x *QueryRequest_Filter) GetValue() string {
  4546. if x != nil {
  4547. return x.Value
  4548. }
  4549. return ""
  4550. }
  4551. type QueryRequest_InputSerialization struct {
  4552. state protoimpl.MessageState
  4553. sizeCache protoimpl.SizeCache
  4554. unknownFields protoimpl.UnknownFields
  4555. // NONE | GZIP | BZIP2
  4556. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  4557. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  4558. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  4559. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  4560. }
  4561. func (x *QueryRequest_InputSerialization) Reset() {
  4562. *x = QueryRequest_InputSerialization{}
  4563. if protoimpl.UnsafeEnabled {
  4564. mi := &file_volume_server_proto_msgTypes[92]
  4565. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4566. ms.StoreMessageInfo(mi)
  4567. }
  4568. }
  4569. func (x *QueryRequest_InputSerialization) String() string {
  4570. return protoimpl.X.MessageStringOf(x)
  4571. }
  4572. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  4573. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  4574. mi := &file_volume_server_proto_msgTypes[92]
  4575. if protoimpl.UnsafeEnabled && x != nil {
  4576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4577. if ms.LoadMessageInfo() == nil {
  4578. ms.StoreMessageInfo(mi)
  4579. }
  4580. return ms
  4581. }
  4582. return mi.MessageOf(x)
  4583. }
  4584. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  4585. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  4586. return file_volume_server_proto_rawDescGZIP(), []int{84, 1}
  4587. }
  4588. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  4589. if x != nil {
  4590. return x.CompressionType
  4591. }
  4592. return ""
  4593. }
  4594. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  4595. if x != nil {
  4596. return x.CsvInput
  4597. }
  4598. return nil
  4599. }
  4600. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  4601. if x != nil {
  4602. return x.JsonInput
  4603. }
  4604. return nil
  4605. }
  4606. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  4607. if x != nil {
  4608. return x.ParquetInput
  4609. }
  4610. return nil
  4611. }
  4612. type QueryRequest_OutputSerialization struct {
  4613. state protoimpl.MessageState
  4614. sizeCache protoimpl.SizeCache
  4615. unknownFields protoimpl.UnknownFields
  4616. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  4617. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  4618. }
  4619. func (x *QueryRequest_OutputSerialization) Reset() {
  4620. *x = QueryRequest_OutputSerialization{}
  4621. if protoimpl.UnsafeEnabled {
  4622. mi := &file_volume_server_proto_msgTypes[93]
  4623. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4624. ms.StoreMessageInfo(mi)
  4625. }
  4626. }
  4627. func (x *QueryRequest_OutputSerialization) String() string {
  4628. return protoimpl.X.MessageStringOf(x)
  4629. }
  4630. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  4631. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  4632. mi := &file_volume_server_proto_msgTypes[93]
  4633. if protoimpl.UnsafeEnabled && x != nil {
  4634. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4635. if ms.LoadMessageInfo() == nil {
  4636. ms.StoreMessageInfo(mi)
  4637. }
  4638. return ms
  4639. }
  4640. return mi.MessageOf(x)
  4641. }
  4642. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  4643. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  4644. return file_volume_server_proto_rawDescGZIP(), []int{84, 2}
  4645. }
  4646. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  4647. if x != nil {
  4648. return x.CsvOutput
  4649. }
  4650. return nil
  4651. }
  4652. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  4653. if x != nil {
  4654. return x.JsonOutput
  4655. }
  4656. return nil
  4657. }
  4658. type QueryRequest_InputSerialization_CSVInput struct {
  4659. state protoimpl.MessageState
  4660. sizeCache protoimpl.SizeCache
  4661. unknownFields protoimpl.UnknownFields
  4662. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  4663. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4664. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4665. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4666. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4667. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  4668. // If true, records might contain record delimiters within quote characters
  4669. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  4670. }
  4671. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  4672. *x = QueryRequest_InputSerialization_CSVInput{}
  4673. if protoimpl.UnsafeEnabled {
  4674. mi := &file_volume_server_proto_msgTypes[94]
  4675. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4676. ms.StoreMessageInfo(mi)
  4677. }
  4678. }
  4679. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  4680. return protoimpl.X.MessageStringOf(x)
  4681. }
  4682. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  4683. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  4684. mi := &file_volume_server_proto_msgTypes[94]
  4685. if protoimpl.UnsafeEnabled && x != nil {
  4686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4687. if ms.LoadMessageInfo() == nil {
  4688. ms.StoreMessageInfo(mi)
  4689. }
  4690. return ms
  4691. }
  4692. return mi.MessageOf(x)
  4693. }
  4694. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  4695. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  4696. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 0}
  4697. }
  4698. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  4699. if x != nil {
  4700. return x.FileHeaderInfo
  4701. }
  4702. return ""
  4703. }
  4704. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  4705. if x != nil {
  4706. return x.RecordDelimiter
  4707. }
  4708. return ""
  4709. }
  4710. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  4711. if x != nil {
  4712. return x.FieldDelimiter
  4713. }
  4714. return ""
  4715. }
  4716. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharacter() string {
  4717. if x != nil {
  4718. return x.QuoteCharacter
  4719. }
  4720. return ""
  4721. }
  4722. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  4723. if x != nil {
  4724. return x.QuoteEscapeCharacter
  4725. }
  4726. return ""
  4727. }
  4728. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  4729. if x != nil {
  4730. return x.Comments
  4731. }
  4732. return ""
  4733. }
  4734. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  4735. if x != nil {
  4736. return x.AllowQuotedRecordDelimiter
  4737. }
  4738. return false
  4739. }
  4740. type QueryRequest_InputSerialization_JSONInput struct {
  4741. state protoimpl.MessageState
  4742. sizeCache protoimpl.SizeCache
  4743. unknownFields protoimpl.UnknownFields
  4744. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  4745. }
  4746. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  4747. *x = QueryRequest_InputSerialization_JSONInput{}
  4748. if protoimpl.UnsafeEnabled {
  4749. mi := &file_volume_server_proto_msgTypes[95]
  4750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4751. ms.StoreMessageInfo(mi)
  4752. }
  4753. }
  4754. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  4755. return protoimpl.X.MessageStringOf(x)
  4756. }
  4757. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  4758. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  4759. mi := &file_volume_server_proto_msgTypes[95]
  4760. if protoimpl.UnsafeEnabled && x != nil {
  4761. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4762. if ms.LoadMessageInfo() == nil {
  4763. ms.StoreMessageInfo(mi)
  4764. }
  4765. return ms
  4766. }
  4767. return mi.MessageOf(x)
  4768. }
  4769. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  4770. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  4771. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 1}
  4772. }
  4773. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  4774. if x != nil {
  4775. return x.Type
  4776. }
  4777. return ""
  4778. }
  4779. type QueryRequest_InputSerialization_ParquetInput struct {
  4780. state protoimpl.MessageState
  4781. sizeCache protoimpl.SizeCache
  4782. unknownFields protoimpl.UnknownFields
  4783. }
  4784. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  4785. *x = QueryRequest_InputSerialization_ParquetInput{}
  4786. if protoimpl.UnsafeEnabled {
  4787. mi := &file_volume_server_proto_msgTypes[96]
  4788. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4789. ms.StoreMessageInfo(mi)
  4790. }
  4791. }
  4792. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  4793. return protoimpl.X.MessageStringOf(x)
  4794. }
  4795. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  4796. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  4797. mi := &file_volume_server_proto_msgTypes[96]
  4798. if protoimpl.UnsafeEnabled && x != nil {
  4799. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4800. if ms.LoadMessageInfo() == nil {
  4801. ms.StoreMessageInfo(mi)
  4802. }
  4803. return ms
  4804. }
  4805. return mi.MessageOf(x)
  4806. }
  4807. // Deprecated: Use QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  4808. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  4809. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 2}
  4810. }
  4811. type QueryRequest_OutputSerialization_CSVOutput struct {
  4812. state protoimpl.MessageState
  4813. sizeCache protoimpl.SizeCache
  4814. unknownFields protoimpl.UnknownFields
  4815. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  4816. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4817. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4818. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4819. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4820. }
  4821. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  4822. *x = QueryRequest_OutputSerialization_CSVOutput{}
  4823. if protoimpl.UnsafeEnabled {
  4824. mi := &file_volume_server_proto_msgTypes[97]
  4825. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4826. ms.StoreMessageInfo(mi)
  4827. }
  4828. }
  4829. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  4830. return protoimpl.X.MessageStringOf(x)
  4831. }
  4832. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  4833. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  4834. mi := &file_volume_server_proto_msgTypes[97]
  4835. if protoimpl.UnsafeEnabled && x != nil {
  4836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4837. if ms.LoadMessageInfo() == nil {
  4838. ms.StoreMessageInfo(mi)
  4839. }
  4840. return ms
  4841. }
  4842. return mi.MessageOf(x)
  4843. }
  4844. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  4845. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  4846. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 0}
  4847. }
  4848. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  4849. if x != nil {
  4850. return x.QuoteFields
  4851. }
  4852. return ""
  4853. }
  4854. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  4855. if x != nil {
  4856. return x.RecordDelimiter
  4857. }
  4858. return ""
  4859. }
  4860. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  4861. if x != nil {
  4862. return x.FieldDelimiter
  4863. }
  4864. return ""
  4865. }
  4866. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharacter() string {
  4867. if x != nil {
  4868. return x.QuoteCharacter
  4869. }
  4870. return ""
  4871. }
  4872. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  4873. if x != nil {
  4874. return x.QuoteEscapeCharacter
  4875. }
  4876. return ""
  4877. }
  4878. type QueryRequest_OutputSerialization_JSONOutput struct {
  4879. state protoimpl.MessageState
  4880. sizeCache protoimpl.SizeCache
  4881. unknownFields protoimpl.UnknownFields
  4882. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  4883. }
  4884. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  4885. *x = QueryRequest_OutputSerialization_JSONOutput{}
  4886. if protoimpl.UnsafeEnabled {
  4887. mi := &file_volume_server_proto_msgTypes[98]
  4888. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4889. ms.StoreMessageInfo(mi)
  4890. }
  4891. }
  4892. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  4893. return protoimpl.X.MessageStringOf(x)
  4894. }
  4895. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  4896. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  4897. mi := &file_volume_server_proto_msgTypes[98]
  4898. if protoimpl.UnsafeEnabled && x != nil {
  4899. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4900. if ms.LoadMessageInfo() == nil {
  4901. ms.StoreMessageInfo(mi)
  4902. }
  4903. return ms
  4904. }
  4905. return mi.MessageOf(x)
  4906. }
  4907. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  4908. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  4909. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 1}
  4910. }
  4911. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  4912. if x != nil {
  4913. return x.RecordDelimiter
  4914. }
  4915. return ""
  4916. }
  4917. var File_volume_server_proto protoreflect.FileDescriptor
  4918. var file_volume_server_proto_rawDesc = []byte{
  4919. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  4920. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4921. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x1a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e,
  4922. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  4923. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66,
  4924. 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x66,
  4925. 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x63,
  4926. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28,
  4927. 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43, 0x68, 0x65,
  4928. 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4929. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72, 0x65, 0x73,
  4930. 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x6f, 0x6c,
  4931. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65,
  4932. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
  4933. 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4934. 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4935. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  4936. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73,
  4937. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03,
  4938. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73,
  4939. 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  4940. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  4941. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45, 0x6d, 0x70,
  4942. 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4943. 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4944. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4945. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x19, 0x56,
  4946. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b,
  4947. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61, 0x72, 0x62,
  4948. 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52,
  4949. 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x5b, 0x0a,
  4950. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d,
  4951. 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4952. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4953. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61,
  4954. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70,
  4955. 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x66, 0x0a, 0x1b, 0x56, 0x61,
  4956. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  4957. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f,
  4958. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01,
  4959. 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74,
  4960. 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x61, 0x76, 0x67, 0x5f, 0x31,
  4961. 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x76, 0x67,
  4962. 0x31, 0x6d, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4963. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4964. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4965. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x1a,
  4966. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d,
  4967. 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73,
  4968. 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  4969. 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1f, 0x0a, 0x0b,
  4970. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  4971. 0x04, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x39, 0x0a,
  4972. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65,
  4973. 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4974. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4975. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75,
  4976. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52,
  4977. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4978. 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  4979. 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4980. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4981. 0x6f, 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c,
  4982. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xfb,
  4983. 0x01, 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4984. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4985. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4986. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4987. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4988. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f,
  4989. 0x63, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61,
  4990. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  4991. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  4992. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c,
  4993. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d,
  4994. 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69,
  4995. 0x7a, 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d,
  4996. 0x6f, 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61, 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x12,
  4997. 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
  4998. 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x18, 0x0a, 0x16,
  4999. 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  5000. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5001. 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5002. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5003. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb,
  5004. 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61,
  5005. 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5006. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5007. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5008. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f,
  5009. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c,
  5010. 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72,
  5011. 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74,
  5012. 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b,
  5013. 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28,
  5014. 0x04, 0x52, 0x0a, 0x74, 0x61, 0x69, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a,
  5015. 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f,
  5016. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  5017. 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f,
  5018. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52,
  5019. 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c,
  5020. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61,
  5021. 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5022. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5023. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e,
  5024. 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e,
  5025. 0x63, 0x65, 0x4e, 0x73, 0x22, 0x42, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e,
  5026. 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73,
  5027. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f,
  5028. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c,
  5029. 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75,
  5030. 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5031. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5032. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56,
  5033. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5034. 0x73, 0x65, 0x22, 0x33, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f,
  5035. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5036. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5037. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5038. 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5039. 0x22, 0x51, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5040. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5041. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5042. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x65, 0x6d, 0x70,
  5043. 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x6f, 0x6e, 0x6c, 0x79, 0x45, 0x6d,
  5044. 0x70, 0x74, 0x79, 0x22, 0x16, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c,
  5045. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56,
  5046. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c,
  5047. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5048. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5049. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  5050. 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5051. 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72,
  5052. 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5053. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5054. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a,
  5055. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61,
  5056. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x16, 0x56,
  5057. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65,
  5058. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5059. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5060. 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  5061. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
  5062. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5063. 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  5064. 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  5065. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5066. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5067. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5068. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xa6, 0x01, 0x0a, 0x14, 0x56, 0x6f,
  5069. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5070. 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e,
  5071. 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64,
  5072. 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5073. 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5074. 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f,
  5075. 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43,
  5076. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c, 0x0a, 0x12, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x6c,
  5077. 0x65, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  5078. 0x52, 0x10, 0x66, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75,
  5079. 0x6e, 0x74, 0x22, 0xf8, 0x01, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70,
  5080. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5081. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5082. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5083. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  5084. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
  5085. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c,
  5086. 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04,
  5087. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75,
  5088. 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20,
  5089. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e,
  5090. 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65,
  5091. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65,
  5092. 0x12, 0x2b, 0x0a, 0x12, 0x69, 0x6f, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f,
  5093. 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x69, 0x6f,
  5094. 0x42, 0x79, 0x74, 0x65, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22, 0x68, 0x0a,
  5095. 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5096. 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x65,
  5097. 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e,
  5098. 0x6c, 0x61, 0x73, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x12, 0x27,
  5099. 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65,
  5100. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
  5101. 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f, 0x43, 0x6f, 0x70, 0x79,
  5102. 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5103. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5104. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x74, 0x18,
  5105. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f,
  5106. 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f,
  5107. 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  5108. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x73,
  5109. 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  5110. 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a,
  5111. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  5112. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0c,
  5113. 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01,
  5114. 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x3e,
  5115. 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f,
  5116. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x07,
  5117. 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x53, 0x6f, 0x75, 0x72,
  5118. 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x5b,
  5119. 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5120. 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65,
  5121. 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f,
  5122. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0e, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
  5123. 0x64, 0x5f, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d,
  5124. 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x73, 0x4e, 0x73, 0x22, 0x60, 0x0a, 0x15, 0x52,
  5125. 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71,
  5126. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5127. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5128. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  5129. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a,
  5130. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x39, 0x0a,
  5131. 0x16, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52,
  5132. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  5133. 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65,
  5134. 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x22, 0x7d, 0x0a, 0x15, 0x52, 0x65, 0x61, 0x64,
  5135. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5136. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5137. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b,
  5138. 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5139. 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  5140. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  5141. 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  5142. 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64,
  5143. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5144. 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x01, 0x20, 0x01,
  5145. 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61,
  5146. 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5147. 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12,
  5148. 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72,
  5149. 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  5150. 0x74, 0x74, 0x6c, 0x12, 0x20, 0x0a, 0x0c, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74,
  5151. 0x5f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x61, 0x70, 0x70, 0x65, 0x6e,
  5152. 0x64, 0x41, 0x74, 0x4e, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x16, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e,
  5153. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5154. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5155. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a,
  5156. 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  5157. 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69,
  5158. 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x1f,
  5159. 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x04, 0x20,
  5160. 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x22,
  5161. 0x19, 0x0a, 0x17, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c,
  5162. 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x15, 0x52, 0x65,
  5163. 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
  5164. 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  5165. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5166. 0x64, 0x73, 0x22, 0xa0, 0x02, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65,
  5167. 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a,
  5168. 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  5169. 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65,
  5170. 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e,
  5171. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69,
  5172. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12,
  5173. 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x05,
  5174. 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62,
  5175. 0x12, 0x34, 0x0a, 0x16, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x5f,
  5176. 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08,
  5177. 0x52, 0x14, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x43, 0x6f, 0x6d, 0x70,
  5178. 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d,
  5179. 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c,
  5180. 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63,
  5181. 0x72, 0x63, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x12, 0x0a,
  5182. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  5183. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c, 0x52,
  5184. 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x22, 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5185. 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5186. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5187. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19,
  5188. 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  5189. 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c,
  5190. 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  5191. 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d,
  5192. 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x18,
  5193. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72,
  5194. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x65, 0x64,
  5195. 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52,
  5196. 0x0c, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1f, 0x0a,
  5197. 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x02, 0x20, 0x01,
  5198. 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x22,
  5199. 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x18,
  5200. 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x68, 0x75,
  5201. 0x6e, 0x6b, 0x22, 0xb7, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69,
  5202. 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5203. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5204. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a,
  5205. 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
  5206. 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c, 0x65,
  5207. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73,
  5208. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65,
  5209. 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x6f,
  5210. 0x75, 0x72, 0x63, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5211. 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
  5212. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0x1c, 0x0a, 0x1a,
  5213. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76,
  5214. 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f,
  5215. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65,
  5216. 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5217. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5218. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5219. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f,
  5220. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75,
  5221. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61,
  5222. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0x0a, 0x1c, 0x56, 0x6f,
  5223. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75,
  5224. 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5225. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5226. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  5227. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  5228. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5229. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64,
  5230. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x72, 0x65, 0x62, 0x75,
  5231. 0x69, 0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20,
  5232. 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x53, 0x68, 0x61, 0x72,
  5233. 0x64, 0x49, 0x64, 0x73, 0x22, 0x8b, 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5234. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5235. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5236. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5237. 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  5238. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  5239. 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03,
  5240. 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d,
  5241. 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20,
  5242. 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78, 0x46, 0x69, 0x6c, 0x65,
  5243. 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f,
  5244. 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72,
  5245. 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f,
  5246. 0x70, 0x79, 0x5f, 0x65, 0x63, 0x6a, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  5247. 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x22,
  5248. 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18,
  5249. 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56, 0x69, 0x66, 0x46, 0x69,
  5250. 0x6c, 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5251. 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5252. 0x22, 0x77, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5253. 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5254. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5255. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  5256. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  5257. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09,
  5258. 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52,
  5259. 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a, 0x1c, 0x56, 0x6f, 0x6c,
  5260. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5261. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a, 0x1a, 0x56, 0x6f, 0x6c,
  5262. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74,
  5263. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5264. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5265. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5266. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5267. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64,
  5268. 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64,
  5269. 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5270. 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5271. 0x22, 0x58, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5272. 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5273. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5274. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a,
  5275. 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d,
  5276. 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f, 0x0a, 0x1d, 0x56, 0x6f,
  5277. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f,
  5278. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x99, 0x01, 0x0a, 0x18,
  5279. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61,
  5280. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5281. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5282. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69,
  5283. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64,
  5284. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  5285. 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65,
  5286. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x19, 0x0a, 0x08,
  5287. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07,
  5288. 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5289. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70,
  5290. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01,
  5291. 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64,
  5292. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73,
  5293. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75,
  5294. 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  5295. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5296. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5297. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5298. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5299. 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03,
  5300. 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x18, 0x0a,
  5301. 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07,
  5302. 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5303. 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73,
  5304. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5305. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52,
  5306. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5307. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5308. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5309. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5310. 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5311. 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73,
  5312. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c,
  5313. 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  5314. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5315. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5316. 0x64, 0x22, 0xc9, 0x03, 0x0a, 0x1c, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5317. 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5318. 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5319. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5320. 0x3b, 0x0a, 0x1a, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  5321. 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20,
  5322. 0x01, 0x28, 0x04, 0x52, 0x17, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65,
  5323. 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d,
  5324. 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20,
  5325. 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65,
  5326. 0x12, 0x3b, 0x0a, 0x1a, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d,
  5327. 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x04,
  5328. 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d,
  5329. 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a,
  5330. 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05,
  5331. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a,
  5332. 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
  5333. 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74,
  5334. 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72,
  5335. 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63,
  5336. 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f,
  5337. 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  5338. 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5339. 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09,
  5340. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x3d,
  5341. 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x0a, 0x20,
  5342. 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5343. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66,
  5344. 0x6f, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xbb, 0x01,
  5345. 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03,
  5346. 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x64, 0x69, 0x72, 0x12, 0x10,
  5347. 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c,
  5348. 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04,
  5349. 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01,
  5350. 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63,
  5351. 0x65, 0x6e, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b,
  5352. 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x46, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70,
  5353. 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
  5354. 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x64, 0x12, 0x1b,
  5355. 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  5356. 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa3, 0x01, 0x0a, 0x09,
  5357. 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x6f, 0x72,
  5358. 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x67,
  5359. 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c,
  5360. 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75,
  5361. 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12,
  5362. 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66,
  5363. 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28,
  5364. 0x04, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x65, 0x61, 0x70, 0x18,
  5365. 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x68, 0x65, 0x61, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x73,
  5366. 0x74, 0x61, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x74, 0x61, 0x63,
  5367. 0x6b, 0x22, 0xd8, 0x01, 0x0a, 0x0a, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65,
  5368. 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65,
  5369. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x54,
  5370. 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x69,
  5371. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  5372. 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  5373. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04,
  5374. 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5375. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  5376. 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f, 0x64,
  5377. 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  5378. 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c,
  5379. 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28,
  5380. 0x09, 0x52, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x9e, 0x01, 0x0a,
  5381. 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a, 0x05, 0x66,
  5382. 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c,
  5383. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65,
  5384. 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12,
  5385. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d,
  5386. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70,
  5387. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  5388. 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x42,
  5389. 0x79, 0x74, 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d,
  5390. 0x52, 0x0b, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0xc8, 0x01,
  5391. 0x0a, 0x20, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65,
  5392. 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  5393. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5394. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5395. 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  5396. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  5397. 0x38, 0x0a, 0x18, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62,
  5398. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  5399. 0x09, 0x52, 0x16, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61,
  5400. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b, 0x65, 0x65,
  5401. 0x70, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65,
  5402. 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f, 0x63, 0x61,
  5403. 0x6c, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f, 0x6c, 0x75,
  5404. 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52,
  5405. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a,
  5406. 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  5407. 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70,
  5408. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
  5409. 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
  5410. 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x92, 0x01,
  5411. 0x0a, 0x22, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65,
  5412. 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71,
  5413. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5414. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5415. 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  5416. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5417. 0x6e, 0x12, 0x2f, 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5418. 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
  5419. 0x11, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74, 0x46, 0x69,
  5420. 0x6c, 0x65, 0x22, 0x75, 0x0a, 0x23, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72,
  5421. 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74,
  5422. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f,
  5423. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72,
  5424. 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65,
  5425. 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x02,
  5426. 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50,
  5427. 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c,
  5428. 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5429. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xf0, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5430. 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
  5431. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73, 0x74,
  5432. 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76,
  5433. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5434. 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69, 0x73, 0x6b,
  5435. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65, 0x6d, 0x6f,
  5436. 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  5437. 0x1b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5438. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x6d, 0x65,
  5439. 0x6d, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65,
  5440. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72,
  5441. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63, 0x65, 0x6e,
  5442. 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x43,
  5443. 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x18, 0x05, 0x20,
  5444. 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x22, 0x1a, 0x0a, 0x18, 0x56, 0x6f, 0x6c,
  5445. 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65,
  5446. 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5447. 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5448. 0x73, 0x65, 0x22, 0xdc, 0x03, 0x0a, 0x1a, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57,
  5449. 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5450. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5451. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b,
  5452. 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5453. 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63,
  5454. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f,
  5455. 0x6b, 0x69, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20,
  5456. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73,
  5457. 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  5458. 0x50, 0x0a, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28,
  5459. 0x0b, 0x32, 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5460. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69,
  5461. 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  5462. 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
  5463. 0x73, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  5464. 0x04, 0x61, 0x75, 0x74, 0x68, 0x12, 0x36, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f,
  5465. 0x63, 0x6f, 0x6e, 0x66, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x72, 0x65, 0x6d,
  5466. 0x6f, 0x74, 0x65, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e,
  5467. 0x66, 0x52, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x49, 0x0a,
  5468. 0x0f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  5469. 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f,
  5470. 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65,
  5471. 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5472. 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x57, 0x0a, 0x07, 0x52, 0x65, 0x70, 0x6c,
  5473. 0x69, 0x63, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  5474. 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f,
  5475. 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69,
  5476. 0x63, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x70, 0x6f, 0x72,
  5477. 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x72, 0x70, 0x63, 0x50, 0x6f, 0x72,
  5478. 0x74, 0x22, 0x32, 0x0a, 0x1b, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69,
  5479. 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5480. 0x12, 0x13, 0x0a, 0x05, 0x65, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  5481. 0x04, 0x65, 0x54, 0x61, 0x67, 0x22, 0xf4, 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  5482. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
  5483. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x65,
  5484. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x66,
  5485. 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x66,
  5486. 0x72, 0x6f, 0x6d, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69,
  5487. 0x6c, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x6f, 0x6c,
  5488. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75,
  5489. 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65,
  5490. 0x72, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69, 0x6e, 0x70,
  5491. 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  5492. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5493. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  5494. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69,
  5495. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70, 0x75, 0x74,
  5496. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a,
  5497. 0x14, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  5498. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x6f,
  5499. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51,
  5500. 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70,
  5501. 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  5502. 0x13, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61,
  5503. 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x4e, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x14,
  5504. 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66,
  5505. 0x69, 0x65, 0x6c, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18,
  5506. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x14,
  5507. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76,
  5508. 0x61, 0x6c, 0x75, 0x65, 0x1a, 0xd3, 0x05, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65,
  5509. 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x63,
  5510. 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
  5511. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
  5512. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f, 0x69, 0x6e,
  5513. 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5514. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65,
  5515. 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53,
  5516. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56,
  5517. 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x08, 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12,
  5518. 0x5a, 0x0a, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20,
  5519. 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5520. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  5521. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  5522. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74,
  5523. 0x52, 0x09, 0x6a, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a, 0x0d, 0x70,
  5524. 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01,
  5525. 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5526. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5527. 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  5528. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70,
  5529. 0x75, 0x74, 0x52, 0x0c, 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74,
  5530. 0x1a, 0xc6, 0x02, 0x0a, 0x08, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x28, 0x0a,
  5531. 0x10, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66,
  5532. 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48, 0x65, 0x61,
  5533. 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72,
  5534. 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
  5535. 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  5536. 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69,
  5537. 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65,
  5538. 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x71,
  5539. 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x04,
  5540. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61,
  5541. 0x63, 0x74, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73,
  5542. 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05,
  5543. 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70,
  5544. 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f,
  5545. 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f,
  5546. 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f,
  5547. 0x71, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65,
  5548. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a, 0x61,
  5549. 0x6c, 0x6c, 0x6f, 0x77, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  5550. 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a, 0x53, 0x4f,
  5551. 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01,
  5552. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c, 0x50, 0x61,
  5553. 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xef, 0x03, 0x0a, 0x13, 0x4f,
  5554. 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  5555. 0x6f, 0x6e, 0x12, 0x5b, 0x0a, 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5556. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5557. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  5558. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72,
  5559. 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x4f, 0x75,
  5560. 0x74, 0x70, 0x75, 0x74, 0x52, 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12,
  5561. 0x5e, 0x0a, 0x0b, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x03,
  5562. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5563. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71,
  5564. 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  5565. 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74,
  5566. 0x70, 0x75, 0x74, 0x52, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x1a,
  5567. 0xe1, 0x01, 0x0a, 0x09, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21, 0x0a,
  5568. 0x0c, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20,
  5569. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73,
  5570. 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d,
  5571. 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f,
  5572. 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66,
  5573. 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03,
  5574. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d,
  5575. 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68,
  5576. 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x71,
  5577. 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x34, 0x0a,
  5578. 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68,
  5579. 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71,
  5580. 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63,
  5581. 0x74, 0x65, 0x72, 0x1a, 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75,
  5582. 0x74, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69,
  5583. 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63,
  5584. 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x22, 0x29, 0x0a, 0x0d,
  5585. 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x12, 0x18, 0x0a,
  5586. 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07,
  5587. 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5588. 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  5589. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5590. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5591. 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02,
  5592. 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x22, 0xae,
  5593. 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53,
  5594. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a,
  5595. 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
  5596. 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f,
  5597. 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b,
  5598. 0x69, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
  5599. 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d,
  5600. 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c,
  5601. 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63,
  5602. 0x72, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10, 0x0a,
  5603. 0x03, 0x74, 0x74, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x22,
  5604. 0x46, 0x0a, 0x0b, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  5605. 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  5606. 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
  5607. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x61, 0x72,
  5608. 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x7a, 0x0a, 0x0c, 0x50, 0x69, 0x6e, 0x67, 0x52,
  5609. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74,
  5610. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  5611. 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x72,
  5612. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20,
  5613. 0x01, 0x28, 0x03, 0x52, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x4e,
  5614. 0x73, 0x12, 0x20, 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e,
  5615. 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x69, 0x6d,
  5616. 0x65, 0x4e, 0x73, 0x32, 0xbc, 0x24, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  5617. 0x72, 0x76, 0x65, 0x72, 0x12, 0x5c, 0x0a, 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c,
  5618. 0x65, 0x74, 0x65, 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5619. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65,
  5620. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5621. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74,
  5622. 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5623. 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  5624. 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5625. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75,
  5626. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75,
  5627. 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5628. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  5629. 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5630. 0x22, 0x00, 0x12, 0x76, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  5631. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5632. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63,
  5633. 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  5634. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5635. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75,
  5636. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65,
  5637. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x61,
  5638. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
  5639. 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5640. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5641. 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e,
  5642. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5643. 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d,
  5644. 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a,
  5645. 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65,
  5646. 0x61, 0x6e, 0x75, 0x70, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5647. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  5648. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  5649. 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5650. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  5651. 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5652. 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c,
  5653. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5654. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5655. 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  5656. 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5657. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c,
  5658. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5659. 0x12, 0x65, 0x0a, 0x0e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75,
  5660. 0x6d, 0x65, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5661. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f,
  5662. 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f,
  5663. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41,
  5664. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73,
  5665. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5666. 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e, 0x76, 0x6f,
  5667. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5668. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5669. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5670. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5671. 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5672. 0x73, 0x65, 0x22, 0x00, 0x12, 0x7c, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e,
  5673. 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2e, 0x2e,
  5674. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5675. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74,
  5676. 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 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, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74,
  5679. 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5680. 0x30, 0x01, 0x12, 0x5c, 0x0a, 0x0b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e,
  5681. 0x74, 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5682. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74,
  5683. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5684. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5685. 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5686. 0x12, 0x62, 0x0a, 0x0d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e,
  5687. 0x74, 0x12, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5688. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75,
  5689. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5690. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5691. 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5692. 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65,
  5693. 0x6c, 0x65, 0x74, 0x65, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5694. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65,
  5695. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f,
  5696. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5697. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5698. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  5699. 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f,
  5700. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5701. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c,
  5702. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5703. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5704. 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65,
  5705. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75,
  5706. 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2b,
  5707. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5708. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74,
  5709. 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 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, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c,
  5712. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x56,
  5713. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12, 0x28,
  5714. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5715. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
  5716. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5717. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5718. 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5719. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5720. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5721. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5722. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76,
  5723. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5724. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70,
  5725. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5726. 0x43, 0x6f, 0x70, 0x79, 0x12, 0x23, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5727. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5728. 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5729. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5730. 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5731. 0x00, 0x30, 0x01, 0x12, 0x77, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5732. 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2d, 0x2e, 0x76, 0x6f,
  5733. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52,
  5734. 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61,
  5735. 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c,
  5736. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65,
  5737. 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74,
  5738. 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x08,
  5739. 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5740. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79,
  5741. 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x6f,
  5742. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43,
  5743. 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5744. 0x00, 0x30, 0x01, 0x12, 0x65, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c,
  5745. 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5746. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65,
  5747. 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28,
  5748. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5749. 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62,
  5750. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x52, 0x65,
  5751. 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x27, 0x2e, 0x76,
  5752. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5753. 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65,
  5754. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5755. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65,
  5756. 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5757. 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5758. 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5759. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65,
  5760. 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29,
  5761. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5762. 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f,
  5763. 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x0e, 0x52,
  5764. 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x12, 0x27, 0x2e,
  5765. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5766. 0x2e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52,
  5767. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5768. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c,
  5769. 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5770. 0x22, 0x00, 0x30, 0x01, 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61,
  5771. 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5772. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5773. 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
  5774. 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5775. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69,
  5776. 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5777. 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69,
  5778. 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5779. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5780. 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52,
  5781. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5782. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5783. 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
  5784. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5785. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65,
  5786. 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5787. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5788. 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5789. 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5790. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5791. 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5792. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5793. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x2e,
  5794. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5795. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5796. 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f,
  5797. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5798. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5799. 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5800. 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5801. 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5802. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5803. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71,
  5804. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5805. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5806. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5807. 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5808. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2d, 0x2e, 0x76,
  5809. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5810. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65,
  5811. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f,
  5812. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5813. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c,
  5814. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a,
  5815. 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d,
  5816. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5817. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5818. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  5819. 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5820. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5821. 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5822. 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5823. 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x76,
  5824. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5825. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e,
  5826. 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76,
  5827. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5828. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e,
  5829. 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5830. 0x70, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5831. 0x52, 0x65, 0x61, 0x64, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5832. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5833. 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5834. 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5835. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5836. 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30,
  5837. 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f,
  5838. 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2b, 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, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71,
  5841. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5842. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5843. 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5844. 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5845. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x2f,
  5846. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5847. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5848. 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5849. 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5850. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5851. 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5852. 0x65, 0x22, 0x00, 0x12, 0x88, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69,
  5853. 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74,
  5854. 0x65, 0x12, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5855. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d,
  5856. 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65,
  5857. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5858. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5859. 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f,
  5860. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x8e,
  5861. 0x01, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  5862. 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x34,
  5863. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5864. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65,
  5865. 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71,
  5866. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5867. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69,
  5868. 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d,
  5869. 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
  5870. 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53,
  5871. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5872. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5873. 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  5874. 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5875. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76,
  5876. 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5877. 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76,
  5878. 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5879. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5880. 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75,
  5881. 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5882. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72,
  5883. 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5884. 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72,
  5885. 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5886. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74,
  5887. 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5888. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5889. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68,
  5890. 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65,
  5891. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72,
  5892. 0x79, 0x12, 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5893. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5894. 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5895. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69,
  5896. 0x70, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5897. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76,
  5898. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5899. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74,
  5900. 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5901. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5902. 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5903. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x04, 0x50, 0x69, 0x6e,
  5904. 0x67, 0x12, 0x1d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5905. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5906. 0x1a, 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5907. 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5908. 0x22, 0x00, 0x42, 0x39, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,
  5909. 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65,
  5910. 0x65, 0x64, 0x66, 0x73, 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x6f, 0x6c,
  5911. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62, 0x06, 0x70,
  5912. 0x72, 0x6f, 0x74, 0x6f, 0x33,
  5913. }
  5914. var (
  5915. file_volume_server_proto_rawDescOnce sync.Once
  5916. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  5917. )
  5918. func file_volume_server_proto_rawDescGZIP() []byte {
  5919. file_volume_server_proto_rawDescOnce.Do(func() {
  5920. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  5921. })
  5922. return file_volume_server_proto_rawDescData
  5923. }
  5924. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 99)
  5925. var file_volume_server_proto_goTypes = []interface{}{
  5926. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  5927. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  5928. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  5929. (*Empty)(nil), // 3: volume_server_pb.Empty
  5930. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  5931. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  5932. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  5933. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  5934. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  5935. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  5936. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  5937. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  5938. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  5939. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  5940. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  5941. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  5942. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  5943. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  5944. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  5945. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  5946. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  5947. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  5948. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  5949. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  5950. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  5951. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  5952. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  5953. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  5954. (*VolumeMarkWritableRequest)(nil), // 28: volume_server_pb.VolumeMarkWritableRequest
  5955. (*VolumeMarkWritableResponse)(nil), // 29: volume_server_pb.VolumeMarkWritableResponse
  5956. (*VolumeConfigureRequest)(nil), // 30: volume_server_pb.VolumeConfigureRequest
  5957. (*VolumeConfigureResponse)(nil), // 31: volume_server_pb.VolumeConfigureResponse
  5958. (*VolumeStatusRequest)(nil), // 32: volume_server_pb.VolumeStatusRequest
  5959. (*VolumeStatusResponse)(nil), // 33: volume_server_pb.VolumeStatusResponse
  5960. (*VolumeCopyRequest)(nil), // 34: volume_server_pb.VolumeCopyRequest
  5961. (*VolumeCopyResponse)(nil), // 35: volume_server_pb.VolumeCopyResponse
  5962. (*CopyFileRequest)(nil), // 36: volume_server_pb.CopyFileRequest
  5963. (*CopyFileResponse)(nil), // 37: volume_server_pb.CopyFileResponse
  5964. (*ReadNeedleBlobRequest)(nil), // 38: volume_server_pb.ReadNeedleBlobRequest
  5965. (*ReadNeedleBlobResponse)(nil), // 39: volume_server_pb.ReadNeedleBlobResponse
  5966. (*ReadNeedleMetaRequest)(nil), // 40: volume_server_pb.ReadNeedleMetaRequest
  5967. (*ReadNeedleMetaResponse)(nil), // 41: volume_server_pb.ReadNeedleMetaResponse
  5968. (*WriteNeedleBlobRequest)(nil), // 42: volume_server_pb.WriteNeedleBlobRequest
  5969. (*WriteNeedleBlobResponse)(nil), // 43: volume_server_pb.WriteNeedleBlobResponse
  5970. (*ReadAllNeedlesRequest)(nil), // 44: volume_server_pb.ReadAllNeedlesRequest
  5971. (*ReadAllNeedlesResponse)(nil), // 45: volume_server_pb.ReadAllNeedlesResponse
  5972. (*VolumeTailSenderRequest)(nil), // 46: volume_server_pb.VolumeTailSenderRequest
  5973. (*VolumeTailSenderResponse)(nil), // 47: volume_server_pb.VolumeTailSenderResponse
  5974. (*VolumeTailReceiverRequest)(nil), // 48: volume_server_pb.VolumeTailReceiverRequest
  5975. (*VolumeTailReceiverResponse)(nil), // 49: volume_server_pb.VolumeTailReceiverResponse
  5976. (*VolumeEcShardsGenerateRequest)(nil), // 50: volume_server_pb.VolumeEcShardsGenerateRequest
  5977. (*VolumeEcShardsGenerateResponse)(nil), // 51: volume_server_pb.VolumeEcShardsGenerateResponse
  5978. (*VolumeEcShardsRebuildRequest)(nil), // 52: volume_server_pb.VolumeEcShardsRebuildRequest
  5979. (*VolumeEcShardsRebuildResponse)(nil), // 53: volume_server_pb.VolumeEcShardsRebuildResponse
  5980. (*VolumeEcShardsCopyRequest)(nil), // 54: volume_server_pb.VolumeEcShardsCopyRequest
  5981. (*VolumeEcShardsCopyResponse)(nil), // 55: volume_server_pb.VolumeEcShardsCopyResponse
  5982. (*VolumeEcShardsDeleteRequest)(nil), // 56: volume_server_pb.VolumeEcShardsDeleteRequest
  5983. (*VolumeEcShardsDeleteResponse)(nil), // 57: volume_server_pb.VolumeEcShardsDeleteResponse
  5984. (*VolumeEcShardsMountRequest)(nil), // 58: volume_server_pb.VolumeEcShardsMountRequest
  5985. (*VolumeEcShardsMountResponse)(nil), // 59: volume_server_pb.VolumeEcShardsMountResponse
  5986. (*VolumeEcShardsUnmountRequest)(nil), // 60: volume_server_pb.VolumeEcShardsUnmountRequest
  5987. (*VolumeEcShardsUnmountResponse)(nil), // 61: volume_server_pb.VolumeEcShardsUnmountResponse
  5988. (*VolumeEcShardReadRequest)(nil), // 62: volume_server_pb.VolumeEcShardReadRequest
  5989. (*VolumeEcShardReadResponse)(nil), // 63: volume_server_pb.VolumeEcShardReadResponse
  5990. (*VolumeEcBlobDeleteRequest)(nil), // 64: volume_server_pb.VolumeEcBlobDeleteRequest
  5991. (*VolumeEcBlobDeleteResponse)(nil), // 65: volume_server_pb.VolumeEcBlobDeleteResponse
  5992. (*VolumeEcShardsToVolumeRequest)(nil), // 66: volume_server_pb.VolumeEcShardsToVolumeRequest
  5993. (*VolumeEcShardsToVolumeResponse)(nil), // 67: volume_server_pb.VolumeEcShardsToVolumeResponse
  5994. (*ReadVolumeFileStatusRequest)(nil), // 68: volume_server_pb.ReadVolumeFileStatusRequest
  5995. (*ReadVolumeFileStatusResponse)(nil), // 69: volume_server_pb.ReadVolumeFileStatusResponse
  5996. (*DiskStatus)(nil), // 70: volume_server_pb.DiskStatus
  5997. (*MemStatus)(nil), // 71: volume_server_pb.MemStatus
  5998. (*RemoteFile)(nil), // 72: volume_server_pb.RemoteFile
  5999. (*VolumeInfo)(nil), // 73: volume_server_pb.VolumeInfo
  6000. (*VolumeTierMoveDatToRemoteRequest)(nil), // 74: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  6001. (*VolumeTierMoveDatToRemoteResponse)(nil), // 75: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  6002. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 76: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  6003. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 77: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  6004. (*VolumeServerStatusRequest)(nil), // 78: volume_server_pb.VolumeServerStatusRequest
  6005. (*VolumeServerStatusResponse)(nil), // 79: volume_server_pb.VolumeServerStatusResponse
  6006. (*VolumeServerLeaveRequest)(nil), // 80: volume_server_pb.VolumeServerLeaveRequest
  6007. (*VolumeServerLeaveResponse)(nil), // 81: volume_server_pb.VolumeServerLeaveResponse
  6008. (*FetchAndWriteNeedleRequest)(nil), // 82: volume_server_pb.FetchAndWriteNeedleRequest
  6009. (*FetchAndWriteNeedleResponse)(nil), // 83: volume_server_pb.FetchAndWriteNeedleResponse
  6010. (*QueryRequest)(nil), // 84: volume_server_pb.QueryRequest
  6011. (*QueriedStripe)(nil), // 85: volume_server_pb.QueriedStripe
  6012. (*VolumeNeedleStatusRequest)(nil), // 86: volume_server_pb.VolumeNeedleStatusRequest
  6013. (*VolumeNeedleStatusResponse)(nil), // 87: volume_server_pb.VolumeNeedleStatusResponse
  6014. (*PingRequest)(nil), // 88: volume_server_pb.PingRequest
  6015. (*PingResponse)(nil), // 89: volume_server_pb.PingResponse
  6016. (*FetchAndWriteNeedleRequest_Replica)(nil), // 90: volume_server_pb.FetchAndWriteNeedleRequest.Replica
  6017. (*QueryRequest_Filter)(nil), // 91: volume_server_pb.QueryRequest.Filter
  6018. (*QueryRequest_InputSerialization)(nil), // 92: volume_server_pb.QueryRequest.InputSerialization
  6019. (*QueryRequest_OutputSerialization)(nil), // 93: volume_server_pb.QueryRequest.OutputSerialization
  6020. (*QueryRequest_InputSerialization_CSVInput)(nil), // 94: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  6021. (*QueryRequest_InputSerialization_JSONInput)(nil), // 95: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  6022. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 96: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  6023. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 97: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  6024. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 98: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  6025. (*remote_pb.RemoteConf)(nil), // 99: remote_pb.RemoteConf
  6026. (*remote_pb.RemoteStorageLocation)(nil), // 100: remote_pb.RemoteStorageLocation
  6027. }
  6028. var file_volume_server_proto_depIdxs = []int32{
  6029. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  6030. 73, // 1: volume_server_pb.ReadVolumeFileStatusResponse.volume_info:type_name -> volume_server_pb.VolumeInfo
  6031. 72, // 2: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  6032. 70, // 3: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  6033. 71, // 4: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  6034. 90, // 5: volume_server_pb.FetchAndWriteNeedleRequest.replicas:type_name -> volume_server_pb.FetchAndWriteNeedleRequest.Replica
  6035. 99, // 6: volume_server_pb.FetchAndWriteNeedleRequest.remote_conf:type_name -> remote_pb.RemoteConf
  6036. 100, // 7: volume_server_pb.FetchAndWriteNeedleRequest.remote_location:type_name -> remote_pb.RemoteStorageLocation
  6037. 91, // 8: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  6038. 92, // 9: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  6039. 93, // 10: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  6040. 94, // 11: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  6041. 95, // 12: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  6042. 96, // 13: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  6043. 97, // 14: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  6044. 98, // 15: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  6045. 0, // 16: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  6046. 4, // 17: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  6047. 6, // 18: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  6048. 8, // 19: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  6049. 10, // 20: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  6050. 12, // 21: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  6051. 14, // 22: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  6052. 16, // 23: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  6053. 18, // 24: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  6054. 20, // 25: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  6055. 22, // 26: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  6056. 24, // 27: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  6057. 26, // 28: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  6058. 28, // 29: volume_server_pb.VolumeServer.VolumeMarkWritable:input_type -> volume_server_pb.VolumeMarkWritableRequest
  6059. 30, // 30: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  6060. 32, // 31: volume_server_pb.VolumeServer.VolumeStatus:input_type -> volume_server_pb.VolumeStatusRequest
  6061. 34, // 32: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  6062. 68, // 33: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  6063. 36, // 34: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  6064. 38, // 35: volume_server_pb.VolumeServer.ReadNeedleBlob:input_type -> volume_server_pb.ReadNeedleBlobRequest
  6065. 40, // 36: volume_server_pb.VolumeServer.ReadNeedleMeta:input_type -> volume_server_pb.ReadNeedleMetaRequest
  6066. 42, // 37: volume_server_pb.VolumeServer.WriteNeedleBlob:input_type -> volume_server_pb.WriteNeedleBlobRequest
  6067. 44, // 38: volume_server_pb.VolumeServer.ReadAllNeedles:input_type -> volume_server_pb.ReadAllNeedlesRequest
  6068. 46, // 39: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  6069. 48, // 40: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  6070. 50, // 41: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  6071. 52, // 42: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  6072. 54, // 43: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  6073. 56, // 44: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  6074. 58, // 45: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  6075. 60, // 46: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  6076. 62, // 47: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  6077. 64, // 48: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  6078. 66, // 49: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  6079. 74, // 50: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  6080. 76, // 51: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  6081. 78, // 52: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  6082. 80, // 53: volume_server_pb.VolumeServer.VolumeServerLeave:input_type -> volume_server_pb.VolumeServerLeaveRequest
  6083. 82, // 54: volume_server_pb.VolumeServer.FetchAndWriteNeedle:input_type -> volume_server_pb.FetchAndWriteNeedleRequest
  6084. 84, // 55: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  6085. 86, // 56: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  6086. 88, // 57: volume_server_pb.VolumeServer.Ping:input_type -> volume_server_pb.PingRequest
  6087. 1, // 58: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  6088. 5, // 59: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  6089. 7, // 60: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  6090. 9, // 61: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  6091. 11, // 62: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  6092. 13, // 63: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  6093. 15, // 64: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  6094. 17, // 65: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  6095. 19, // 66: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  6096. 21, // 67: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  6097. 23, // 68: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  6098. 25, // 69: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  6099. 27, // 70: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  6100. 29, // 71: volume_server_pb.VolumeServer.VolumeMarkWritable:output_type -> volume_server_pb.VolumeMarkWritableResponse
  6101. 31, // 72: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  6102. 33, // 73: volume_server_pb.VolumeServer.VolumeStatus:output_type -> volume_server_pb.VolumeStatusResponse
  6103. 35, // 74: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  6104. 69, // 75: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  6105. 37, // 76: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  6106. 39, // 77: volume_server_pb.VolumeServer.ReadNeedleBlob:output_type -> volume_server_pb.ReadNeedleBlobResponse
  6107. 41, // 78: volume_server_pb.VolumeServer.ReadNeedleMeta:output_type -> volume_server_pb.ReadNeedleMetaResponse
  6108. 43, // 79: volume_server_pb.VolumeServer.WriteNeedleBlob:output_type -> volume_server_pb.WriteNeedleBlobResponse
  6109. 45, // 80: volume_server_pb.VolumeServer.ReadAllNeedles:output_type -> volume_server_pb.ReadAllNeedlesResponse
  6110. 47, // 81: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  6111. 49, // 82: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  6112. 51, // 83: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  6113. 53, // 84: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  6114. 55, // 85: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  6115. 57, // 86: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  6116. 59, // 87: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  6117. 61, // 88: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  6118. 63, // 89: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  6119. 65, // 90: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  6120. 67, // 91: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  6121. 75, // 92: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  6122. 77, // 93: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  6123. 79, // 94: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  6124. 81, // 95: volume_server_pb.VolumeServer.VolumeServerLeave:output_type -> volume_server_pb.VolumeServerLeaveResponse
  6125. 83, // 96: volume_server_pb.VolumeServer.FetchAndWriteNeedle:output_type -> volume_server_pb.FetchAndWriteNeedleResponse
  6126. 85, // 97: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  6127. 87, // 98: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  6128. 89, // 99: volume_server_pb.VolumeServer.Ping:output_type -> volume_server_pb.PingResponse
  6129. 58, // [58:100] is the sub-list for method output_type
  6130. 16, // [16:58] is the sub-list for method input_type
  6131. 16, // [16:16] is the sub-list for extension type_name
  6132. 16, // [16:16] is the sub-list for extension extendee
  6133. 0, // [0:16] is the sub-list for field type_name
  6134. }
  6135. func init() { file_volume_server_proto_init() }
  6136. func file_volume_server_proto_init() {
  6137. if File_volume_server_proto != nil {
  6138. return
  6139. }
  6140. if !protoimpl.UnsafeEnabled {
  6141. file_volume_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  6142. switch v := v.(*BatchDeleteRequest); i {
  6143. case 0:
  6144. return &v.state
  6145. case 1:
  6146. return &v.sizeCache
  6147. case 2:
  6148. return &v.unknownFields
  6149. default:
  6150. return nil
  6151. }
  6152. }
  6153. file_volume_server_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  6154. switch v := v.(*BatchDeleteResponse); i {
  6155. case 0:
  6156. return &v.state
  6157. case 1:
  6158. return &v.sizeCache
  6159. case 2:
  6160. return &v.unknownFields
  6161. default:
  6162. return nil
  6163. }
  6164. }
  6165. file_volume_server_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  6166. switch v := v.(*DeleteResult); i {
  6167. case 0:
  6168. return &v.state
  6169. case 1:
  6170. return &v.sizeCache
  6171. case 2:
  6172. return &v.unknownFields
  6173. default:
  6174. return nil
  6175. }
  6176. }
  6177. file_volume_server_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  6178. switch v := v.(*Empty); i {
  6179. case 0:
  6180. return &v.state
  6181. case 1:
  6182. return &v.sizeCache
  6183. case 2:
  6184. return &v.unknownFields
  6185. default:
  6186. return nil
  6187. }
  6188. }
  6189. file_volume_server_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  6190. switch v := v.(*VacuumVolumeCheckRequest); i {
  6191. case 0:
  6192. return &v.state
  6193. case 1:
  6194. return &v.sizeCache
  6195. case 2:
  6196. return &v.unknownFields
  6197. default:
  6198. return nil
  6199. }
  6200. }
  6201. file_volume_server_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  6202. switch v := v.(*VacuumVolumeCheckResponse); i {
  6203. case 0:
  6204. return &v.state
  6205. case 1:
  6206. return &v.sizeCache
  6207. case 2:
  6208. return &v.unknownFields
  6209. default:
  6210. return nil
  6211. }
  6212. }
  6213. file_volume_server_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  6214. switch v := v.(*VacuumVolumeCompactRequest); i {
  6215. case 0:
  6216. return &v.state
  6217. case 1:
  6218. return &v.sizeCache
  6219. case 2:
  6220. return &v.unknownFields
  6221. default:
  6222. return nil
  6223. }
  6224. }
  6225. file_volume_server_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  6226. switch v := v.(*VacuumVolumeCompactResponse); i {
  6227. case 0:
  6228. return &v.state
  6229. case 1:
  6230. return &v.sizeCache
  6231. case 2:
  6232. return &v.unknownFields
  6233. default:
  6234. return nil
  6235. }
  6236. }
  6237. file_volume_server_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  6238. switch v := v.(*VacuumVolumeCommitRequest); i {
  6239. case 0:
  6240. return &v.state
  6241. case 1:
  6242. return &v.sizeCache
  6243. case 2:
  6244. return &v.unknownFields
  6245. default:
  6246. return nil
  6247. }
  6248. }
  6249. file_volume_server_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  6250. switch v := v.(*VacuumVolumeCommitResponse); i {
  6251. case 0:
  6252. return &v.state
  6253. case 1:
  6254. return &v.sizeCache
  6255. case 2:
  6256. return &v.unknownFields
  6257. default:
  6258. return nil
  6259. }
  6260. }
  6261. file_volume_server_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  6262. switch v := v.(*VacuumVolumeCleanupRequest); i {
  6263. case 0:
  6264. return &v.state
  6265. case 1:
  6266. return &v.sizeCache
  6267. case 2:
  6268. return &v.unknownFields
  6269. default:
  6270. return nil
  6271. }
  6272. }
  6273. file_volume_server_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  6274. switch v := v.(*VacuumVolumeCleanupResponse); i {
  6275. case 0:
  6276. return &v.state
  6277. case 1:
  6278. return &v.sizeCache
  6279. case 2:
  6280. return &v.unknownFields
  6281. default:
  6282. return nil
  6283. }
  6284. }
  6285. file_volume_server_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  6286. switch v := v.(*DeleteCollectionRequest); i {
  6287. case 0:
  6288. return &v.state
  6289. case 1:
  6290. return &v.sizeCache
  6291. case 2:
  6292. return &v.unknownFields
  6293. default:
  6294. return nil
  6295. }
  6296. }
  6297. file_volume_server_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  6298. switch v := v.(*DeleteCollectionResponse); i {
  6299. case 0:
  6300. return &v.state
  6301. case 1:
  6302. return &v.sizeCache
  6303. case 2:
  6304. return &v.unknownFields
  6305. default:
  6306. return nil
  6307. }
  6308. }
  6309. file_volume_server_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  6310. switch v := v.(*AllocateVolumeRequest); i {
  6311. case 0:
  6312. return &v.state
  6313. case 1:
  6314. return &v.sizeCache
  6315. case 2:
  6316. return &v.unknownFields
  6317. default:
  6318. return nil
  6319. }
  6320. }
  6321. file_volume_server_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  6322. switch v := v.(*AllocateVolumeResponse); i {
  6323. case 0:
  6324. return &v.state
  6325. case 1:
  6326. return &v.sizeCache
  6327. case 2:
  6328. return &v.unknownFields
  6329. default:
  6330. return nil
  6331. }
  6332. }
  6333. file_volume_server_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  6334. switch v := v.(*VolumeSyncStatusRequest); i {
  6335. case 0:
  6336. return &v.state
  6337. case 1:
  6338. return &v.sizeCache
  6339. case 2:
  6340. return &v.unknownFields
  6341. default:
  6342. return nil
  6343. }
  6344. }
  6345. file_volume_server_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  6346. switch v := v.(*VolumeSyncStatusResponse); i {
  6347. case 0:
  6348. return &v.state
  6349. case 1:
  6350. return &v.sizeCache
  6351. case 2:
  6352. return &v.unknownFields
  6353. default:
  6354. return nil
  6355. }
  6356. }
  6357. file_volume_server_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  6358. switch v := v.(*VolumeIncrementalCopyRequest); i {
  6359. case 0:
  6360. return &v.state
  6361. case 1:
  6362. return &v.sizeCache
  6363. case 2:
  6364. return &v.unknownFields
  6365. default:
  6366. return nil
  6367. }
  6368. }
  6369. file_volume_server_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  6370. switch v := v.(*VolumeIncrementalCopyResponse); i {
  6371. case 0:
  6372. return &v.state
  6373. case 1:
  6374. return &v.sizeCache
  6375. case 2:
  6376. return &v.unknownFields
  6377. default:
  6378. return nil
  6379. }
  6380. }
  6381. file_volume_server_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  6382. switch v := v.(*VolumeMountRequest); i {
  6383. case 0:
  6384. return &v.state
  6385. case 1:
  6386. return &v.sizeCache
  6387. case 2:
  6388. return &v.unknownFields
  6389. default:
  6390. return nil
  6391. }
  6392. }
  6393. file_volume_server_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  6394. switch v := v.(*VolumeMountResponse); i {
  6395. case 0:
  6396. return &v.state
  6397. case 1:
  6398. return &v.sizeCache
  6399. case 2:
  6400. return &v.unknownFields
  6401. default:
  6402. return nil
  6403. }
  6404. }
  6405. file_volume_server_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  6406. switch v := v.(*VolumeUnmountRequest); i {
  6407. case 0:
  6408. return &v.state
  6409. case 1:
  6410. return &v.sizeCache
  6411. case 2:
  6412. return &v.unknownFields
  6413. default:
  6414. return nil
  6415. }
  6416. }
  6417. file_volume_server_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  6418. switch v := v.(*VolumeUnmountResponse); i {
  6419. case 0:
  6420. return &v.state
  6421. case 1:
  6422. return &v.sizeCache
  6423. case 2:
  6424. return &v.unknownFields
  6425. default:
  6426. return nil
  6427. }
  6428. }
  6429. file_volume_server_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  6430. switch v := v.(*VolumeDeleteRequest); i {
  6431. case 0:
  6432. return &v.state
  6433. case 1:
  6434. return &v.sizeCache
  6435. case 2:
  6436. return &v.unknownFields
  6437. default:
  6438. return nil
  6439. }
  6440. }
  6441. file_volume_server_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  6442. switch v := v.(*VolumeDeleteResponse); i {
  6443. case 0:
  6444. return &v.state
  6445. case 1:
  6446. return &v.sizeCache
  6447. case 2:
  6448. return &v.unknownFields
  6449. default:
  6450. return nil
  6451. }
  6452. }
  6453. file_volume_server_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  6454. switch v := v.(*VolumeMarkReadonlyRequest); i {
  6455. case 0:
  6456. return &v.state
  6457. case 1:
  6458. return &v.sizeCache
  6459. case 2:
  6460. return &v.unknownFields
  6461. default:
  6462. return nil
  6463. }
  6464. }
  6465. file_volume_server_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  6466. switch v := v.(*VolumeMarkReadonlyResponse); i {
  6467. case 0:
  6468. return &v.state
  6469. case 1:
  6470. return &v.sizeCache
  6471. case 2:
  6472. return &v.unknownFields
  6473. default:
  6474. return nil
  6475. }
  6476. }
  6477. file_volume_server_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  6478. switch v := v.(*VolumeMarkWritableRequest); i {
  6479. case 0:
  6480. return &v.state
  6481. case 1:
  6482. return &v.sizeCache
  6483. case 2:
  6484. return &v.unknownFields
  6485. default:
  6486. return nil
  6487. }
  6488. }
  6489. file_volume_server_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  6490. switch v := v.(*VolumeMarkWritableResponse); i {
  6491. case 0:
  6492. return &v.state
  6493. case 1:
  6494. return &v.sizeCache
  6495. case 2:
  6496. return &v.unknownFields
  6497. default:
  6498. return nil
  6499. }
  6500. }
  6501. file_volume_server_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  6502. switch v := v.(*VolumeConfigureRequest); i {
  6503. case 0:
  6504. return &v.state
  6505. case 1:
  6506. return &v.sizeCache
  6507. case 2:
  6508. return &v.unknownFields
  6509. default:
  6510. return nil
  6511. }
  6512. }
  6513. file_volume_server_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  6514. switch v := v.(*VolumeConfigureResponse); i {
  6515. case 0:
  6516. return &v.state
  6517. case 1:
  6518. return &v.sizeCache
  6519. case 2:
  6520. return &v.unknownFields
  6521. default:
  6522. return nil
  6523. }
  6524. }
  6525. file_volume_server_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  6526. switch v := v.(*VolumeStatusRequest); i {
  6527. case 0:
  6528. return &v.state
  6529. case 1:
  6530. return &v.sizeCache
  6531. case 2:
  6532. return &v.unknownFields
  6533. default:
  6534. return nil
  6535. }
  6536. }
  6537. file_volume_server_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  6538. switch v := v.(*VolumeStatusResponse); i {
  6539. case 0:
  6540. return &v.state
  6541. case 1:
  6542. return &v.sizeCache
  6543. case 2:
  6544. return &v.unknownFields
  6545. default:
  6546. return nil
  6547. }
  6548. }
  6549. file_volume_server_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  6550. switch v := v.(*VolumeCopyRequest); i {
  6551. case 0:
  6552. return &v.state
  6553. case 1:
  6554. return &v.sizeCache
  6555. case 2:
  6556. return &v.unknownFields
  6557. default:
  6558. return nil
  6559. }
  6560. }
  6561. file_volume_server_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  6562. switch v := v.(*VolumeCopyResponse); i {
  6563. case 0:
  6564. return &v.state
  6565. case 1:
  6566. return &v.sizeCache
  6567. case 2:
  6568. return &v.unknownFields
  6569. default:
  6570. return nil
  6571. }
  6572. }
  6573. file_volume_server_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  6574. switch v := v.(*CopyFileRequest); i {
  6575. case 0:
  6576. return &v.state
  6577. case 1:
  6578. return &v.sizeCache
  6579. case 2:
  6580. return &v.unknownFields
  6581. default:
  6582. return nil
  6583. }
  6584. }
  6585. file_volume_server_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  6586. switch v := v.(*CopyFileResponse); i {
  6587. case 0:
  6588. return &v.state
  6589. case 1:
  6590. return &v.sizeCache
  6591. case 2:
  6592. return &v.unknownFields
  6593. default:
  6594. return nil
  6595. }
  6596. }
  6597. file_volume_server_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  6598. switch v := v.(*ReadNeedleBlobRequest); i {
  6599. case 0:
  6600. return &v.state
  6601. case 1:
  6602. return &v.sizeCache
  6603. case 2:
  6604. return &v.unknownFields
  6605. default:
  6606. return nil
  6607. }
  6608. }
  6609. file_volume_server_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  6610. switch v := v.(*ReadNeedleBlobResponse); i {
  6611. case 0:
  6612. return &v.state
  6613. case 1:
  6614. return &v.sizeCache
  6615. case 2:
  6616. return &v.unknownFields
  6617. default:
  6618. return nil
  6619. }
  6620. }
  6621. file_volume_server_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  6622. switch v := v.(*ReadNeedleMetaRequest); i {
  6623. case 0:
  6624. return &v.state
  6625. case 1:
  6626. return &v.sizeCache
  6627. case 2:
  6628. return &v.unknownFields
  6629. default:
  6630. return nil
  6631. }
  6632. }
  6633. file_volume_server_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  6634. switch v := v.(*ReadNeedleMetaResponse); i {
  6635. case 0:
  6636. return &v.state
  6637. case 1:
  6638. return &v.sizeCache
  6639. case 2:
  6640. return &v.unknownFields
  6641. default:
  6642. return nil
  6643. }
  6644. }
  6645. file_volume_server_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  6646. switch v := v.(*WriteNeedleBlobRequest); i {
  6647. case 0:
  6648. return &v.state
  6649. case 1:
  6650. return &v.sizeCache
  6651. case 2:
  6652. return &v.unknownFields
  6653. default:
  6654. return nil
  6655. }
  6656. }
  6657. file_volume_server_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  6658. switch v := v.(*WriteNeedleBlobResponse); i {
  6659. case 0:
  6660. return &v.state
  6661. case 1:
  6662. return &v.sizeCache
  6663. case 2:
  6664. return &v.unknownFields
  6665. default:
  6666. return nil
  6667. }
  6668. }
  6669. file_volume_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  6670. switch v := v.(*ReadAllNeedlesRequest); i {
  6671. case 0:
  6672. return &v.state
  6673. case 1:
  6674. return &v.sizeCache
  6675. case 2:
  6676. return &v.unknownFields
  6677. default:
  6678. return nil
  6679. }
  6680. }
  6681. file_volume_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  6682. switch v := v.(*ReadAllNeedlesResponse); i {
  6683. case 0:
  6684. return &v.state
  6685. case 1:
  6686. return &v.sizeCache
  6687. case 2:
  6688. return &v.unknownFields
  6689. default:
  6690. return nil
  6691. }
  6692. }
  6693. file_volume_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  6694. switch v := v.(*VolumeTailSenderRequest); i {
  6695. case 0:
  6696. return &v.state
  6697. case 1:
  6698. return &v.sizeCache
  6699. case 2:
  6700. return &v.unknownFields
  6701. default:
  6702. return nil
  6703. }
  6704. }
  6705. file_volume_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  6706. switch v := v.(*VolumeTailSenderResponse); i {
  6707. case 0:
  6708. return &v.state
  6709. case 1:
  6710. return &v.sizeCache
  6711. case 2:
  6712. return &v.unknownFields
  6713. default:
  6714. return nil
  6715. }
  6716. }
  6717. file_volume_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  6718. switch v := v.(*VolumeTailReceiverRequest); i {
  6719. case 0:
  6720. return &v.state
  6721. case 1:
  6722. return &v.sizeCache
  6723. case 2:
  6724. return &v.unknownFields
  6725. default:
  6726. return nil
  6727. }
  6728. }
  6729. file_volume_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  6730. switch v := v.(*VolumeTailReceiverResponse); i {
  6731. case 0:
  6732. return &v.state
  6733. case 1:
  6734. return &v.sizeCache
  6735. case 2:
  6736. return &v.unknownFields
  6737. default:
  6738. return nil
  6739. }
  6740. }
  6741. file_volume_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  6742. switch v := v.(*VolumeEcShardsGenerateRequest); i {
  6743. case 0:
  6744. return &v.state
  6745. case 1:
  6746. return &v.sizeCache
  6747. case 2:
  6748. return &v.unknownFields
  6749. default:
  6750. return nil
  6751. }
  6752. }
  6753. file_volume_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  6754. switch v := v.(*VolumeEcShardsGenerateResponse); i {
  6755. case 0:
  6756. return &v.state
  6757. case 1:
  6758. return &v.sizeCache
  6759. case 2:
  6760. return &v.unknownFields
  6761. default:
  6762. return nil
  6763. }
  6764. }
  6765. file_volume_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  6766. switch v := v.(*VolumeEcShardsRebuildRequest); i {
  6767. case 0:
  6768. return &v.state
  6769. case 1:
  6770. return &v.sizeCache
  6771. case 2:
  6772. return &v.unknownFields
  6773. default:
  6774. return nil
  6775. }
  6776. }
  6777. file_volume_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  6778. switch v := v.(*VolumeEcShardsRebuildResponse); i {
  6779. case 0:
  6780. return &v.state
  6781. case 1:
  6782. return &v.sizeCache
  6783. case 2:
  6784. return &v.unknownFields
  6785. default:
  6786. return nil
  6787. }
  6788. }
  6789. file_volume_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  6790. switch v := v.(*VolumeEcShardsCopyRequest); i {
  6791. case 0:
  6792. return &v.state
  6793. case 1:
  6794. return &v.sizeCache
  6795. case 2:
  6796. return &v.unknownFields
  6797. default:
  6798. return nil
  6799. }
  6800. }
  6801. file_volume_server_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  6802. switch v := v.(*VolumeEcShardsCopyResponse); i {
  6803. case 0:
  6804. return &v.state
  6805. case 1:
  6806. return &v.sizeCache
  6807. case 2:
  6808. return &v.unknownFields
  6809. default:
  6810. return nil
  6811. }
  6812. }
  6813. file_volume_server_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  6814. switch v := v.(*VolumeEcShardsDeleteRequest); i {
  6815. case 0:
  6816. return &v.state
  6817. case 1:
  6818. return &v.sizeCache
  6819. case 2:
  6820. return &v.unknownFields
  6821. default:
  6822. return nil
  6823. }
  6824. }
  6825. file_volume_server_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  6826. switch v := v.(*VolumeEcShardsDeleteResponse); i {
  6827. case 0:
  6828. return &v.state
  6829. case 1:
  6830. return &v.sizeCache
  6831. case 2:
  6832. return &v.unknownFields
  6833. default:
  6834. return nil
  6835. }
  6836. }
  6837. file_volume_server_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  6838. switch v := v.(*VolumeEcShardsMountRequest); i {
  6839. case 0:
  6840. return &v.state
  6841. case 1:
  6842. return &v.sizeCache
  6843. case 2:
  6844. return &v.unknownFields
  6845. default:
  6846. return nil
  6847. }
  6848. }
  6849. file_volume_server_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  6850. switch v := v.(*VolumeEcShardsMountResponse); i {
  6851. case 0:
  6852. return &v.state
  6853. case 1:
  6854. return &v.sizeCache
  6855. case 2:
  6856. return &v.unknownFields
  6857. default:
  6858. return nil
  6859. }
  6860. }
  6861. file_volume_server_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  6862. switch v := v.(*VolumeEcShardsUnmountRequest); i {
  6863. case 0:
  6864. return &v.state
  6865. case 1:
  6866. return &v.sizeCache
  6867. case 2:
  6868. return &v.unknownFields
  6869. default:
  6870. return nil
  6871. }
  6872. }
  6873. file_volume_server_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  6874. switch v := v.(*VolumeEcShardsUnmountResponse); i {
  6875. case 0:
  6876. return &v.state
  6877. case 1:
  6878. return &v.sizeCache
  6879. case 2:
  6880. return &v.unknownFields
  6881. default:
  6882. return nil
  6883. }
  6884. }
  6885. file_volume_server_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  6886. switch v := v.(*VolumeEcShardReadRequest); i {
  6887. case 0:
  6888. return &v.state
  6889. case 1:
  6890. return &v.sizeCache
  6891. case 2:
  6892. return &v.unknownFields
  6893. default:
  6894. return nil
  6895. }
  6896. }
  6897. file_volume_server_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  6898. switch v := v.(*VolumeEcShardReadResponse); i {
  6899. case 0:
  6900. return &v.state
  6901. case 1:
  6902. return &v.sizeCache
  6903. case 2:
  6904. return &v.unknownFields
  6905. default:
  6906. return nil
  6907. }
  6908. }
  6909. file_volume_server_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  6910. switch v := v.(*VolumeEcBlobDeleteRequest); i {
  6911. case 0:
  6912. return &v.state
  6913. case 1:
  6914. return &v.sizeCache
  6915. case 2:
  6916. return &v.unknownFields
  6917. default:
  6918. return nil
  6919. }
  6920. }
  6921. file_volume_server_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  6922. switch v := v.(*VolumeEcBlobDeleteResponse); i {
  6923. case 0:
  6924. return &v.state
  6925. case 1:
  6926. return &v.sizeCache
  6927. case 2:
  6928. return &v.unknownFields
  6929. default:
  6930. return nil
  6931. }
  6932. }
  6933. file_volume_server_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  6934. switch v := v.(*VolumeEcShardsToVolumeRequest); i {
  6935. case 0:
  6936. return &v.state
  6937. case 1:
  6938. return &v.sizeCache
  6939. case 2:
  6940. return &v.unknownFields
  6941. default:
  6942. return nil
  6943. }
  6944. }
  6945. file_volume_server_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  6946. switch v := v.(*VolumeEcShardsToVolumeResponse); i {
  6947. case 0:
  6948. return &v.state
  6949. case 1:
  6950. return &v.sizeCache
  6951. case 2:
  6952. return &v.unknownFields
  6953. default:
  6954. return nil
  6955. }
  6956. }
  6957. file_volume_server_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
  6958. switch v := v.(*ReadVolumeFileStatusRequest); i {
  6959. case 0:
  6960. return &v.state
  6961. case 1:
  6962. return &v.sizeCache
  6963. case 2:
  6964. return &v.unknownFields
  6965. default:
  6966. return nil
  6967. }
  6968. }
  6969. file_volume_server_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
  6970. switch v := v.(*ReadVolumeFileStatusResponse); i {
  6971. case 0:
  6972. return &v.state
  6973. case 1:
  6974. return &v.sizeCache
  6975. case 2:
  6976. return &v.unknownFields
  6977. default:
  6978. return nil
  6979. }
  6980. }
  6981. file_volume_server_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
  6982. switch v := v.(*DiskStatus); i {
  6983. case 0:
  6984. return &v.state
  6985. case 1:
  6986. return &v.sizeCache
  6987. case 2:
  6988. return &v.unknownFields
  6989. default:
  6990. return nil
  6991. }
  6992. }
  6993. file_volume_server_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
  6994. switch v := v.(*MemStatus); i {
  6995. case 0:
  6996. return &v.state
  6997. case 1:
  6998. return &v.sizeCache
  6999. case 2:
  7000. return &v.unknownFields
  7001. default:
  7002. return nil
  7003. }
  7004. }
  7005. file_volume_server_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
  7006. switch v := v.(*RemoteFile); i {
  7007. case 0:
  7008. return &v.state
  7009. case 1:
  7010. return &v.sizeCache
  7011. case 2:
  7012. return &v.unknownFields
  7013. default:
  7014. return nil
  7015. }
  7016. }
  7017. file_volume_server_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
  7018. switch v := v.(*VolumeInfo); i {
  7019. case 0:
  7020. return &v.state
  7021. case 1:
  7022. return &v.sizeCache
  7023. case 2:
  7024. return &v.unknownFields
  7025. default:
  7026. return nil
  7027. }
  7028. }
  7029. file_volume_server_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
  7030. switch v := v.(*VolumeTierMoveDatToRemoteRequest); i {
  7031. case 0:
  7032. return &v.state
  7033. case 1:
  7034. return &v.sizeCache
  7035. case 2:
  7036. return &v.unknownFields
  7037. default:
  7038. return nil
  7039. }
  7040. }
  7041. file_volume_server_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
  7042. switch v := v.(*VolumeTierMoveDatToRemoteResponse); i {
  7043. case 0:
  7044. return &v.state
  7045. case 1:
  7046. return &v.sizeCache
  7047. case 2:
  7048. return &v.unknownFields
  7049. default:
  7050. return nil
  7051. }
  7052. }
  7053. file_volume_server_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
  7054. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); i {
  7055. case 0:
  7056. return &v.state
  7057. case 1:
  7058. return &v.sizeCache
  7059. case 2:
  7060. return &v.unknownFields
  7061. default:
  7062. return nil
  7063. }
  7064. }
  7065. file_volume_server_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
  7066. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); i {
  7067. case 0:
  7068. return &v.state
  7069. case 1:
  7070. return &v.sizeCache
  7071. case 2:
  7072. return &v.unknownFields
  7073. default:
  7074. return nil
  7075. }
  7076. }
  7077. file_volume_server_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
  7078. switch v := v.(*VolumeServerStatusRequest); i {
  7079. case 0:
  7080. return &v.state
  7081. case 1:
  7082. return &v.sizeCache
  7083. case 2:
  7084. return &v.unknownFields
  7085. default:
  7086. return nil
  7087. }
  7088. }
  7089. file_volume_server_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
  7090. switch v := v.(*VolumeServerStatusResponse); i {
  7091. case 0:
  7092. return &v.state
  7093. case 1:
  7094. return &v.sizeCache
  7095. case 2:
  7096. return &v.unknownFields
  7097. default:
  7098. return nil
  7099. }
  7100. }
  7101. file_volume_server_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
  7102. switch v := v.(*VolumeServerLeaveRequest); i {
  7103. case 0:
  7104. return &v.state
  7105. case 1:
  7106. return &v.sizeCache
  7107. case 2:
  7108. return &v.unknownFields
  7109. default:
  7110. return nil
  7111. }
  7112. }
  7113. file_volume_server_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
  7114. switch v := v.(*VolumeServerLeaveResponse); i {
  7115. case 0:
  7116. return &v.state
  7117. case 1:
  7118. return &v.sizeCache
  7119. case 2:
  7120. return &v.unknownFields
  7121. default:
  7122. return nil
  7123. }
  7124. }
  7125. file_volume_server_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
  7126. switch v := v.(*FetchAndWriteNeedleRequest); i {
  7127. case 0:
  7128. return &v.state
  7129. case 1:
  7130. return &v.sizeCache
  7131. case 2:
  7132. return &v.unknownFields
  7133. default:
  7134. return nil
  7135. }
  7136. }
  7137. file_volume_server_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
  7138. switch v := v.(*FetchAndWriteNeedleResponse); i {
  7139. case 0:
  7140. return &v.state
  7141. case 1:
  7142. return &v.sizeCache
  7143. case 2:
  7144. return &v.unknownFields
  7145. default:
  7146. return nil
  7147. }
  7148. }
  7149. file_volume_server_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
  7150. switch v := v.(*QueryRequest); i {
  7151. case 0:
  7152. return &v.state
  7153. case 1:
  7154. return &v.sizeCache
  7155. case 2:
  7156. return &v.unknownFields
  7157. default:
  7158. return nil
  7159. }
  7160. }
  7161. file_volume_server_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
  7162. switch v := v.(*QueriedStripe); i {
  7163. case 0:
  7164. return &v.state
  7165. case 1:
  7166. return &v.sizeCache
  7167. case 2:
  7168. return &v.unknownFields
  7169. default:
  7170. return nil
  7171. }
  7172. }
  7173. file_volume_server_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
  7174. switch v := v.(*VolumeNeedleStatusRequest); i {
  7175. case 0:
  7176. return &v.state
  7177. case 1:
  7178. return &v.sizeCache
  7179. case 2:
  7180. return &v.unknownFields
  7181. default:
  7182. return nil
  7183. }
  7184. }
  7185. file_volume_server_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
  7186. switch v := v.(*VolumeNeedleStatusResponse); i {
  7187. case 0:
  7188. return &v.state
  7189. case 1:
  7190. return &v.sizeCache
  7191. case 2:
  7192. return &v.unknownFields
  7193. default:
  7194. return nil
  7195. }
  7196. }
  7197. file_volume_server_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
  7198. switch v := v.(*PingRequest); i {
  7199. case 0:
  7200. return &v.state
  7201. case 1:
  7202. return &v.sizeCache
  7203. case 2:
  7204. return &v.unknownFields
  7205. default:
  7206. return nil
  7207. }
  7208. }
  7209. file_volume_server_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
  7210. switch v := v.(*PingResponse); i {
  7211. case 0:
  7212. return &v.state
  7213. case 1:
  7214. return &v.sizeCache
  7215. case 2:
  7216. return &v.unknownFields
  7217. default:
  7218. return nil
  7219. }
  7220. }
  7221. file_volume_server_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} {
  7222. switch v := v.(*FetchAndWriteNeedleRequest_Replica); i {
  7223. case 0:
  7224. return &v.state
  7225. case 1:
  7226. return &v.sizeCache
  7227. case 2:
  7228. return &v.unknownFields
  7229. default:
  7230. return nil
  7231. }
  7232. }
  7233. file_volume_server_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} {
  7234. switch v := v.(*QueryRequest_Filter); i {
  7235. case 0:
  7236. return &v.state
  7237. case 1:
  7238. return &v.sizeCache
  7239. case 2:
  7240. return &v.unknownFields
  7241. default:
  7242. return nil
  7243. }
  7244. }
  7245. file_volume_server_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} {
  7246. switch v := v.(*QueryRequest_InputSerialization); i {
  7247. case 0:
  7248. return &v.state
  7249. case 1:
  7250. return &v.sizeCache
  7251. case 2:
  7252. return &v.unknownFields
  7253. default:
  7254. return nil
  7255. }
  7256. }
  7257. file_volume_server_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} {
  7258. switch v := v.(*QueryRequest_OutputSerialization); i {
  7259. case 0:
  7260. return &v.state
  7261. case 1:
  7262. return &v.sizeCache
  7263. case 2:
  7264. return &v.unknownFields
  7265. default:
  7266. return nil
  7267. }
  7268. }
  7269. file_volume_server_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} {
  7270. switch v := v.(*QueryRequest_InputSerialization_CSVInput); i {
  7271. case 0:
  7272. return &v.state
  7273. case 1:
  7274. return &v.sizeCache
  7275. case 2:
  7276. return &v.unknownFields
  7277. default:
  7278. return nil
  7279. }
  7280. }
  7281. file_volume_server_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} {
  7282. switch v := v.(*QueryRequest_InputSerialization_JSONInput); i {
  7283. case 0:
  7284. return &v.state
  7285. case 1:
  7286. return &v.sizeCache
  7287. case 2:
  7288. return &v.unknownFields
  7289. default:
  7290. return nil
  7291. }
  7292. }
  7293. file_volume_server_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} {
  7294. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  7295. case 0:
  7296. return &v.state
  7297. case 1:
  7298. return &v.sizeCache
  7299. case 2:
  7300. return &v.unknownFields
  7301. default:
  7302. return nil
  7303. }
  7304. }
  7305. file_volume_server_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} {
  7306. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  7307. case 0:
  7308. return &v.state
  7309. case 1:
  7310. return &v.sizeCache
  7311. case 2:
  7312. return &v.unknownFields
  7313. default:
  7314. return nil
  7315. }
  7316. }
  7317. file_volume_server_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} {
  7318. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  7319. case 0:
  7320. return &v.state
  7321. case 1:
  7322. return &v.sizeCache
  7323. case 2:
  7324. return &v.unknownFields
  7325. default:
  7326. return nil
  7327. }
  7328. }
  7329. }
  7330. type x struct{}
  7331. out := protoimpl.TypeBuilder{
  7332. File: protoimpl.DescBuilder{
  7333. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  7334. RawDescriptor: file_volume_server_proto_rawDesc,
  7335. NumEnums: 0,
  7336. NumMessages: 99,
  7337. NumExtensions: 0,
  7338. NumServices: 1,
  7339. },
  7340. GoTypes: file_volume_server_proto_goTypes,
  7341. DependencyIndexes: file_volume_server_proto_depIdxs,
  7342. MessageInfos: file_volume_server_proto_msgTypes,
  7343. }.Build()
  7344. File_volume_server_proto = out.File
  7345. file_volume_server_proto_rawDesc = nil
  7346. file_volume_server_proto_goTypes = nil
  7347. file_volume_server_proto_depIdxs = nil
  7348. }