volume_server.pb.go 315 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.24.0
  4. // protoc v3.12.3
  5. // source: volume_server.proto
  6. package volume_server_pb
  7. import (
  8. context "context"
  9. proto "github.com/golang/protobuf/proto"
  10. grpc "google.golang.org/grpc"
  11. codes "google.golang.org/grpc/codes"
  12. status "google.golang.org/grpc/status"
  13. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  14. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  15. reflect "reflect"
  16. sync "sync"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. // This is a compile-time assertion that a sufficiently up-to-date version
  25. // of the legacy proto package is being used.
  26. const _ = proto.ProtoPackageIsVersion4
  27. type BatchDeleteRequest struct {
  28. state protoimpl.MessageState
  29. sizeCache protoimpl.SizeCache
  30. unknownFields protoimpl.UnknownFields
  31. FileIds []string `protobuf:"bytes,1,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
  32. SkipCookieCheck bool `protobuf:"varint,2,opt,name=skip_cookie_check,json=skipCookieCheck,proto3" json:"skip_cookie_check,omitempty"`
  33. }
  34. func (x *BatchDeleteRequest) Reset() {
  35. *x = BatchDeleteRequest{}
  36. if protoimpl.UnsafeEnabled {
  37. mi := &file_volume_server_proto_msgTypes[0]
  38. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  39. ms.StoreMessageInfo(mi)
  40. }
  41. }
  42. func (x *BatchDeleteRequest) String() string {
  43. return protoimpl.X.MessageStringOf(x)
  44. }
  45. func (*BatchDeleteRequest) ProtoMessage() {}
  46. func (x *BatchDeleteRequest) ProtoReflect() protoreflect.Message {
  47. mi := &file_volume_server_proto_msgTypes[0]
  48. if protoimpl.UnsafeEnabled && x != nil {
  49. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  50. if ms.LoadMessageInfo() == nil {
  51. ms.StoreMessageInfo(mi)
  52. }
  53. return ms
  54. }
  55. return mi.MessageOf(x)
  56. }
  57. // Deprecated: Use BatchDeleteRequest.ProtoReflect.Descriptor instead.
  58. func (*BatchDeleteRequest) Descriptor() ([]byte, []int) {
  59. return file_volume_server_proto_rawDescGZIP(), []int{0}
  60. }
  61. func (x *BatchDeleteRequest) GetFileIds() []string {
  62. if x != nil {
  63. return x.FileIds
  64. }
  65. return nil
  66. }
  67. func (x *BatchDeleteRequest) GetSkipCookieCheck() bool {
  68. if x != nil {
  69. return x.SkipCookieCheck
  70. }
  71. return false
  72. }
  73. type BatchDeleteResponse struct {
  74. state protoimpl.MessageState
  75. sizeCache protoimpl.SizeCache
  76. unknownFields protoimpl.UnknownFields
  77. Results []*DeleteResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
  78. }
  79. func (x *BatchDeleteResponse) Reset() {
  80. *x = BatchDeleteResponse{}
  81. if protoimpl.UnsafeEnabled {
  82. mi := &file_volume_server_proto_msgTypes[1]
  83. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  84. ms.StoreMessageInfo(mi)
  85. }
  86. }
  87. func (x *BatchDeleteResponse) String() string {
  88. return protoimpl.X.MessageStringOf(x)
  89. }
  90. func (*BatchDeleteResponse) ProtoMessage() {}
  91. func (x *BatchDeleteResponse) ProtoReflect() protoreflect.Message {
  92. mi := &file_volume_server_proto_msgTypes[1]
  93. if protoimpl.UnsafeEnabled && x != nil {
  94. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  95. if ms.LoadMessageInfo() == nil {
  96. ms.StoreMessageInfo(mi)
  97. }
  98. return ms
  99. }
  100. return mi.MessageOf(x)
  101. }
  102. // Deprecated: Use BatchDeleteResponse.ProtoReflect.Descriptor instead.
  103. func (*BatchDeleteResponse) Descriptor() ([]byte, []int) {
  104. return file_volume_server_proto_rawDescGZIP(), []int{1}
  105. }
  106. func (x *BatchDeleteResponse) GetResults() []*DeleteResult {
  107. if x != nil {
  108. return x.Results
  109. }
  110. return nil
  111. }
  112. type DeleteResult struct {
  113. state protoimpl.MessageState
  114. sizeCache protoimpl.SizeCache
  115. unknownFields protoimpl.UnknownFields
  116. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
  117. Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
  118. Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
  119. Size uint32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  120. Version uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"`
  121. }
  122. func (x *DeleteResult) Reset() {
  123. *x = DeleteResult{}
  124. if protoimpl.UnsafeEnabled {
  125. mi := &file_volume_server_proto_msgTypes[2]
  126. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  127. ms.StoreMessageInfo(mi)
  128. }
  129. }
  130. func (x *DeleteResult) String() string {
  131. return protoimpl.X.MessageStringOf(x)
  132. }
  133. func (*DeleteResult) ProtoMessage() {}
  134. func (x *DeleteResult) ProtoReflect() protoreflect.Message {
  135. mi := &file_volume_server_proto_msgTypes[2]
  136. if protoimpl.UnsafeEnabled && x != nil {
  137. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  138. if ms.LoadMessageInfo() == nil {
  139. ms.StoreMessageInfo(mi)
  140. }
  141. return ms
  142. }
  143. return mi.MessageOf(x)
  144. }
  145. // Deprecated: Use DeleteResult.ProtoReflect.Descriptor instead.
  146. func (*DeleteResult) Descriptor() ([]byte, []int) {
  147. return file_volume_server_proto_rawDescGZIP(), []int{2}
  148. }
  149. func (x *DeleteResult) GetFileId() string {
  150. if x != nil {
  151. return x.FileId
  152. }
  153. return ""
  154. }
  155. func (x *DeleteResult) GetStatus() int32 {
  156. if x != nil {
  157. return x.Status
  158. }
  159. return 0
  160. }
  161. func (x *DeleteResult) GetError() string {
  162. if x != nil {
  163. return x.Error
  164. }
  165. return ""
  166. }
  167. func (x *DeleteResult) GetSize() uint32 {
  168. if x != nil {
  169. return x.Size
  170. }
  171. return 0
  172. }
  173. func (x *DeleteResult) GetVersion() uint32 {
  174. if x != nil {
  175. return x.Version
  176. }
  177. return 0
  178. }
  179. type Empty struct {
  180. state protoimpl.MessageState
  181. sizeCache protoimpl.SizeCache
  182. unknownFields protoimpl.UnknownFields
  183. }
  184. func (x *Empty) Reset() {
  185. *x = Empty{}
  186. if protoimpl.UnsafeEnabled {
  187. mi := &file_volume_server_proto_msgTypes[3]
  188. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  189. ms.StoreMessageInfo(mi)
  190. }
  191. }
  192. func (x *Empty) String() string {
  193. return protoimpl.X.MessageStringOf(x)
  194. }
  195. func (*Empty) ProtoMessage() {}
  196. func (x *Empty) ProtoReflect() protoreflect.Message {
  197. mi := &file_volume_server_proto_msgTypes[3]
  198. if protoimpl.UnsafeEnabled && x != nil {
  199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  200. if ms.LoadMessageInfo() == nil {
  201. ms.StoreMessageInfo(mi)
  202. }
  203. return ms
  204. }
  205. return mi.MessageOf(x)
  206. }
  207. // Deprecated: Use Empty.ProtoReflect.Descriptor instead.
  208. func (*Empty) Descriptor() ([]byte, []int) {
  209. return file_volume_server_proto_rawDescGZIP(), []int{3}
  210. }
  211. type VacuumVolumeCheckRequest struct {
  212. state protoimpl.MessageState
  213. sizeCache protoimpl.SizeCache
  214. unknownFields protoimpl.UnknownFields
  215. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  216. }
  217. func (x *VacuumVolumeCheckRequest) Reset() {
  218. *x = VacuumVolumeCheckRequest{}
  219. if protoimpl.UnsafeEnabled {
  220. mi := &file_volume_server_proto_msgTypes[4]
  221. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  222. ms.StoreMessageInfo(mi)
  223. }
  224. }
  225. func (x *VacuumVolumeCheckRequest) String() string {
  226. return protoimpl.X.MessageStringOf(x)
  227. }
  228. func (*VacuumVolumeCheckRequest) ProtoMessage() {}
  229. func (x *VacuumVolumeCheckRequest) ProtoReflect() protoreflect.Message {
  230. mi := &file_volume_server_proto_msgTypes[4]
  231. if protoimpl.UnsafeEnabled && x != nil {
  232. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  233. if ms.LoadMessageInfo() == nil {
  234. ms.StoreMessageInfo(mi)
  235. }
  236. return ms
  237. }
  238. return mi.MessageOf(x)
  239. }
  240. // Deprecated: Use VacuumVolumeCheckRequest.ProtoReflect.Descriptor instead.
  241. func (*VacuumVolumeCheckRequest) Descriptor() ([]byte, []int) {
  242. return file_volume_server_proto_rawDescGZIP(), []int{4}
  243. }
  244. func (x *VacuumVolumeCheckRequest) GetVolumeId() uint32 {
  245. if x != nil {
  246. return x.VolumeId
  247. }
  248. return 0
  249. }
  250. type VacuumVolumeCheckResponse struct {
  251. state protoimpl.MessageState
  252. sizeCache protoimpl.SizeCache
  253. unknownFields protoimpl.UnknownFields
  254. GarbageRatio float64 `protobuf:"fixed64,1,opt,name=garbage_ratio,json=garbageRatio,proto3" json:"garbage_ratio,omitempty"`
  255. }
  256. func (x *VacuumVolumeCheckResponse) Reset() {
  257. *x = VacuumVolumeCheckResponse{}
  258. if protoimpl.UnsafeEnabled {
  259. mi := &file_volume_server_proto_msgTypes[5]
  260. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  261. ms.StoreMessageInfo(mi)
  262. }
  263. }
  264. func (x *VacuumVolumeCheckResponse) String() string {
  265. return protoimpl.X.MessageStringOf(x)
  266. }
  267. func (*VacuumVolumeCheckResponse) ProtoMessage() {}
  268. func (x *VacuumVolumeCheckResponse) ProtoReflect() protoreflect.Message {
  269. mi := &file_volume_server_proto_msgTypes[5]
  270. if protoimpl.UnsafeEnabled && x != nil {
  271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  272. if ms.LoadMessageInfo() == nil {
  273. ms.StoreMessageInfo(mi)
  274. }
  275. return ms
  276. }
  277. return mi.MessageOf(x)
  278. }
  279. // Deprecated: Use VacuumVolumeCheckResponse.ProtoReflect.Descriptor instead.
  280. func (*VacuumVolumeCheckResponse) Descriptor() ([]byte, []int) {
  281. return file_volume_server_proto_rawDescGZIP(), []int{5}
  282. }
  283. func (x *VacuumVolumeCheckResponse) GetGarbageRatio() float64 {
  284. if x != nil {
  285. return x.GarbageRatio
  286. }
  287. return 0
  288. }
  289. type VacuumVolumeCompactRequest struct {
  290. state protoimpl.MessageState
  291. sizeCache protoimpl.SizeCache
  292. unknownFields protoimpl.UnknownFields
  293. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  294. Preallocate int64 `protobuf:"varint,2,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  295. }
  296. func (x *VacuumVolumeCompactRequest) Reset() {
  297. *x = VacuumVolumeCompactRequest{}
  298. if protoimpl.UnsafeEnabled {
  299. mi := &file_volume_server_proto_msgTypes[6]
  300. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  301. ms.StoreMessageInfo(mi)
  302. }
  303. }
  304. func (x *VacuumVolumeCompactRequest) String() string {
  305. return protoimpl.X.MessageStringOf(x)
  306. }
  307. func (*VacuumVolumeCompactRequest) ProtoMessage() {}
  308. func (x *VacuumVolumeCompactRequest) ProtoReflect() protoreflect.Message {
  309. mi := &file_volume_server_proto_msgTypes[6]
  310. if protoimpl.UnsafeEnabled && x != nil {
  311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  312. if ms.LoadMessageInfo() == nil {
  313. ms.StoreMessageInfo(mi)
  314. }
  315. return ms
  316. }
  317. return mi.MessageOf(x)
  318. }
  319. // Deprecated: Use VacuumVolumeCompactRequest.ProtoReflect.Descriptor instead.
  320. func (*VacuumVolumeCompactRequest) Descriptor() ([]byte, []int) {
  321. return file_volume_server_proto_rawDescGZIP(), []int{6}
  322. }
  323. func (x *VacuumVolumeCompactRequest) GetVolumeId() uint32 {
  324. if x != nil {
  325. return x.VolumeId
  326. }
  327. return 0
  328. }
  329. func (x *VacuumVolumeCompactRequest) GetPreallocate() int64 {
  330. if x != nil {
  331. return x.Preallocate
  332. }
  333. return 0
  334. }
  335. type VacuumVolumeCompactResponse struct {
  336. state protoimpl.MessageState
  337. sizeCache protoimpl.SizeCache
  338. unknownFields protoimpl.UnknownFields
  339. }
  340. func (x *VacuumVolumeCompactResponse) Reset() {
  341. *x = VacuumVolumeCompactResponse{}
  342. if protoimpl.UnsafeEnabled {
  343. mi := &file_volume_server_proto_msgTypes[7]
  344. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  345. ms.StoreMessageInfo(mi)
  346. }
  347. }
  348. func (x *VacuumVolumeCompactResponse) String() string {
  349. return protoimpl.X.MessageStringOf(x)
  350. }
  351. func (*VacuumVolumeCompactResponse) ProtoMessage() {}
  352. func (x *VacuumVolumeCompactResponse) ProtoReflect() protoreflect.Message {
  353. mi := &file_volume_server_proto_msgTypes[7]
  354. if protoimpl.UnsafeEnabled && x != nil {
  355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  356. if ms.LoadMessageInfo() == nil {
  357. ms.StoreMessageInfo(mi)
  358. }
  359. return ms
  360. }
  361. return mi.MessageOf(x)
  362. }
  363. // Deprecated: Use VacuumVolumeCompactResponse.ProtoReflect.Descriptor instead.
  364. func (*VacuumVolumeCompactResponse) Descriptor() ([]byte, []int) {
  365. return file_volume_server_proto_rawDescGZIP(), []int{7}
  366. }
  367. type VacuumVolumeCommitRequest struct {
  368. state protoimpl.MessageState
  369. sizeCache protoimpl.SizeCache
  370. unknownFields protoimpl.UnknownFields
  371. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  372. }
  373. func (x *VacuumVolumeCommitRequest) Reset() {
  374. *x = VacuumVolumeCommitRequest{}
  375. if protoimpl.UnsafeEnabled {
  376. mi := &file_volume_server_proto_msgTypes[8]
  377. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  378. ms.StoreMessageInfo(mi)
  379. }
  380. }
  381. func (x *VacuumVolumeCommitRequest) String() string {
  382. return protoimpl.X.MessageStringOf(x)
  383. }
  384. func (*VacuumVolumeCommitRequest) ProtoMessage() {}
  385. func (x *VacuumVolumeCommitRequest) ProtoReflect() protoreflect.Message {
  386. mi := &file_volume_server_proto_msgTypes[8]
  387. if protoimpl.UnsafeEnabled && x != nil {
  388. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  389. if ms.LoadMessageInfo() == nil {
  390. ms.StoreMessageInfo(mi)
  391. }
  392. return ms
  393. }
  394. return mi.MessageOf(x)
  395. }
  396. // Deprecated: Use VacuumVolumeCommitRequest.ProtoReflect.Descriptor instead.
  397. func (*VacuumVolumeCommitRequest) Descriptor() ([]byte, []int) {
  398. return file_volume_server_proto_rawDescGZIP(), []int{8}
  399. }
  400. func (x *VacuumVolumeCommitRequest) GetVolumeId() uint32 {
  401. if x != nil {
  402. return x.VolumeId
  403. }
  404. return 0
  405. }
  406. type VacuumVolumeCommitResponse struct {
  407. state protoimpl.MessageState
  408. sizeCache protoimpl.SizeCache
  409. unknownFields protoimpl.UnknownFields
  410. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  411. }
  412. func (x *VacuumVolumeCommitResponse) Reset() {
  413. *x = VacuumVolumeCommitResponse{}
  414. if protoimpl.UnsafeEnabled {
  415. mi := &file_volume_server_proto_msgTypes[9]
  416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  417. ms.StoreMessageInfo(mi)
  418. }
  419. }
  420. func (x *VacuumVolumeCommitResponse) String() string {
  421. return protoimpl.X.MessageStringOf(x)
  422. }
  423. func (*VacuumVolumeCommitResponse) ProtoMessage() {}
  424. func (x *VacuumVolumeCommitResponse) ProtoReflect() protoreflect.Message {
  425. mi := &file_volume_server_proto_msgTypes[9]
  426. if protoimpl.UnsafeEnabled && x != nil {
  427. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  428. if ms.LoadMessageInfo() == nil {
  429. ms.StoreMessageInfo(mi)
  430. }
  431. return ms
  432. }
  433. return mi.MessageOf(x)
  434. }
  435. // Deprecated: Use VacuumVolumeCommitResponse.ProtoReflect.Descriptor instead.
  436. func (*VacuumVolumeCommitResponse) Descriptor() ([]byte, []int) {
  437. return file_volume_server_proto_rawDescGZIP(), []int{9}
  438. }
  439. func (x *VacuumVolumeCommitResponse) GetIsReadOnly() bool {
  440. if x != nil {
  441. return x.IsReadOnly
  442. }
  443. return false
  444. }
  445. type VacuumVolumeCleanupRequest struct {
  446. state protoimpl.MessageState
  447. sizeCache protoimpl.SizeCache
  448. unknownFields protoimpl.UnknownFields
  449. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  450. }
  451. func (x *VacuumVolumeCleanupRequest) Reset() {
  452. *x = VacuumVolumeCleanupRequest{}
  453. if protoimpl.UnsafeEnabled {
  454. mi := &file_volume_server_proto_msgTypes[10]
  455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  456. ms.StoreMessageInfo(mi)
  457. }
  458. }
  459. func (x *VacuumVolumeCleanupRequest) String() string {
  460. return protoimpl.X.MessageStringOf(x)
  461. }
  462. func (*VacuumVolumeCleanupRequest) ProtoMessage() {}
  463. func (x *VacuumVolumeCleanupRequest) ProtoReflect() protoreflect.Message {
  464. mi := &file_volume_server_proto_msgTypes[10]
  465. if protoimpl.UnsafeEnabled && x != nil {
  466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  467. if ms.LoadMessageInfo() == nil {
  468. ms.StoreMessageInfo(mi)
  469. }
  470. return ms
  471. }
  472. return mi.MessageOf(x)
  473. }
  474. // Deprecated: Use VacuumVolumeCleanupRequest.ProtoReflect.Descriptor instead.
  475. func (*VacuumVolumeCleanupRequest) Descriptor() ([]byte, []int) {
  476. return file_volume_server_proto_rawDescGZIP(), []int{10}
  477. }
  478. func (x *VacuumVolumeCleanupRequest) GetVolumeId() uint32 {
  479. if x != nil {
  480. return x.VolumeId
  481. }
  482. return 0
  483. }
  484. type VacuumVolumeCleanupResponse struct {
  485. state protoimpl.MessageState
  486. sizeCache protoimpl.SizeCache
  487. unknownFields protoimpl.UnknownFields
  488. }
  489. func (x *VacuumVolumeCleanupResponse) Reset() {
  490. *x = VacuumVolumeCleanupResponse{}
  491. if protoimpl.UnsafeEnabled {
  492. mi := &file_volume_server_proto_msgTypes[11]
  493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  494. ms.StoreMessageInfo(mi)
  495. }
  496. }
  497. func (x *VacuumVolumeCleanupResponse) String() string {
  498. return protoimpl.X.MessageStringOf(x)
  499. }
  500. func (*VacuumVolumeCleanupResponse) ProtoMessage() {}
  501. func (x *VacuumVolumeCleanupResponse) ProtoReflect() protoreflect.Message {
  502. mi := &file_volume_server_proto_msgTypes[11]
  503. if protoimpl.UnsafeEnabled && x != nil {
  504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  505. if ms.LoadMessageInfo() == nil {
  506. ms.StoreMessageInfo(mi)
  507. }
  508. return ms
  509. }
  510. return mi.MessageOf(x)
  511. }
  512. // Deprecated: Use VacuumVolumeCleanupResponse.ProtoReflect.Descriptor instead.
  513. func (*VacuumVolumeCleanupResponse) Descriptor() ([]byte, []int) {
  514. return file_volume_server_proto_rawDescGZIP(), []int{11}
  515. }
  516. type DeleteCollectionRequest struct {
  517. state protoimpl.MessageState
  518. sizeCache protoimpl.SizeCache
  519. unknownFields protoimpl.UnknownFields
  520. Collection string `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty"`
  521. }
  522. func (x *DeleteCollectionRequest) Reset() {
  523. *x = DeleteCollectionRequest{}
  524. if protoimpl.UnsafeEnabled {
  525. mi := &file_volume_server_proto_msgTypes[12]
  526. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  527. ms.StoreMessageInfo(mi)
  528. }
  529. }
  530. func (x *DeleteCollectionRequest) String() string {
  531. return protoimpl.X.MessageStringOf(x)
  532. }
  533. func (*DeleteCollectionRequest) ProtoMessage() {}
  534. func (x *DeleteCollectionRequest) ProtoReflect() protoreflect.Message {
  535. mi := &file_volume_server_proto_msgTypes[12]
  536. if protoimpl.UnsafeEnabled && x != nil {
  537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  538. if ms.LoadMessageInfo() == nil {
  539. ms.StoreMessageInfo(mi)
  540. }
  541. return ms
  542. }
  543. return mi.MessageOf(x)
  544. }
  545. // Deprecated: Use DeleteCollectionRequest.ProtoReflect.Descriptor instead.
  546. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) {
  547. return file_volume_server_proto_rawDescGZIP(), []int{12}
  548. }
  549. func (x *DeleteCollectionRequest) GetCollection() string {
  550. if x != nil {
  551. return x.Collection
  552. }
  553. return ""
  554. }
  555. type DeleteCollectionResponse struct {
  556. state protoimpl.MessageState
  557. sizeCache protoimpl.SizeCache
  558. unknownFields protoimpl.UnknownFields
  559. }
  560. func (x *DeleteCollectionResponse) Reset() {
  561. *x = DeleteCollectionResponse{}
  562. if protoimpl.UnsafeEnabled {
  563. mi := &file_volume_server_proto_msgTypes[13]
  564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  565. ms.StoreMessageInfo(mi)
  566. }
  567. }
  568. func (x *DeleteCollectionResponse) String() string {
  569. return protoimpl.X.MessageStringOf(x)
  570. }
  571. func (*DeleteCollectionResponse) ProtoMessage() {}
  572. func (x *DeleteCollectionResponse) ProtoReflect() protoreflect.Message {
  573. mi := &file_volume_server_proto_msgTypes[13]
  574. if protoimpl.UnsafeEnabled && x != nil {
  575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  576. if ms.LoadMessageInfo() == nil {
  577. ms.StoreMessageInfo(mi)
  578. }
  579. return ms
  580. }
  581. return mi.MessageOf(x)
  582. }
  583. // Deprecated: Use DeleteCollectionResponse.ProtoReflect.Descriptor instead.
  584. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) {
  585. return file_volume_server_proto_rawDescGZIP(), []int{13}
  586. }
  587. type AllocateVolumeRequest struct {
  588. state protoimpl.MessageState
  589. sizeCache protoimpl.SizeCache
  590. unknownFields protoimpl.UnknownFields
  591. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  592. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  593. Preallocate int64 `protobuf:"varint,3,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  594. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  595. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  596. MemoryMapMaxSizeMb uint32 `protobuf:"varint,6,opt,name=memory_map_max_size_mb,json=memoryMapMaxSizeMb,proto3" json:"memory_map_max_size_mb,omitempty"`
  597. }
  598. func (x *AllocateVolumeRequest) Reset() {
  599. *x = AllocateVolumeRequest{}
  600. if protoimpl.UnsafeEnabled {
  601. mi := &file_volume_server_proto_msgTypes[14]
  602. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  603. ms.StoreMessageInfo(mi)
  604. }
  605. }
  606. func (x *AllocateVolumeRequest) String() string {
  607. return protoimpl.X.MessageStringOf(x)
  608. }
  609. func (*AllocateVolumeRequest) ProtoMessage() {}
  610. func (x *AllocateVolumeRequest) ProtoReflect() protoreflect.Message {
  611. mi := &file_volume_server_proto_msgTypes[14]
  612. if protoimpl.UnsafeEnabled && x != nil {
  613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  614. if ms.LoadMessageInfo() == nil {
  615. ms.StoreMessageInfo(mi)
  616. }
  617. return ms
  618. }
  619. return mi.MessageOf(x)
  620. }
  621. // Deprecated: Use AllocateVolumeRequest.ProtoReflect.Descriptor instead.
  622. func (*AllocateVolumeRequest) Descriptor() ([]byte, []int) {
  623. return file_volume_server_proto_rawDescGZIP(), []int{14}
  624. }
  625. func (x *AllocateVolumeRequest) GetVolumeId() uint32 {
  626. if x != nil {
  627. return x.VolumeId
  628. }
  629. return 0
  630. }
  631. func (x *AllocateVolumeRequest) GetCollection() string {
  632. if x != nil {
  633. return x.Collection
  634. }
  635. return ""
  636. }
  637. func (x *AllocateVolumeRequest) GetPreallocate() int64 {
  638. if x != nil {
  639. return x.Preallocate
  640. }
  641. return 0
  642. }
  643. func (x *AllocateVolumeRequest) GetReplication() string {
  644. if x != nil {
  645. return x.Replication
  646. }
  647. return ""
  648. }
  649. func (x *AllocateVolumeRequest) GetTtl() string {
  650. if x != nil {
  651. return x.Ttl
  652. }
  653. return ""
  654. }
  655. func (x *AllocateVolumeRequest) GetMemoryMapMaxSizeMb() uint32 {
  656. if x != nil {
  657. return x.MemoryMapMaxSizeMb
  658. }
  659. return 0
  660. }
  661. type AllocateVolumeResponse struct {
  662. state protoimpl.MessageState
  663. sizeCache protoimpl.SizeCache
  664. unknownFields protoimpl.UnknownFields
  665. }
  666. func (x *AllocateVolumeResponse) Reset() {
  667. *x = AllocateVolumeResponse{}
  668. if protoimpl.UnsafeEnabled {
  669. mi := &file_volume_server_proto_msgTypes[15]
  670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  671. ms.StoreMessageInfo(mi)
  672. }
  673. }
  674. func (x *AllocateVolumeResponse) String() string {
  675. return protoimpl.X.MessageStringOf(x)
  676. }
  677. func (*AllocateVolumeResponse) ProtoMessage() {}
  678. func (x *AllocateVolumeResponse) ProtoReflect() protoreflect.Message {
  679. mi := &file_volume_server_proto_msgTypes[15]
  680. if protoimpl.UnsafeEnabled && x != nil {
  681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  682. if ms.LoadMessageInfo() == nil {
  683. ms.StoreMessageInfo(mi)
  684. }
  685. return ms
  686. }
  687. return mi.MessageOf(x)
  688. }
  689. // Deprecated: Use AllocateVolumeResponse.ProtoReflect.Descriptor instead.
  690. func (*AllocateVolumeResponse) Descriptor() ([]byte, []int) {
  691. return file_volume_server_proto_rawDescGZIP(), []int{15}
  692. }
  693. type VolumeSyncStatusRequest struct {
  694. state protoimpl.MessageState
  695. sizeCache protoimpl.SizeCache
  696. unknownFields protoimpl.UnknownFields
  697. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  698. }
  699. func (x *VolumeSyncStatusRequest) Reset() {
  700. *x = VolumeSyncStatusRequest{}
  701. if protoimpl.UnsafeEnabled {
  702. mi := &file_volume_server_proto_msgTypes[16]
  703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  704. ms.StoreMessageInfo(mi)
  705. }
  706. }
  707. func (x *VolumeSyncStatusRequest) String() string {
  708. return protoimpl.X.MessageStringOf(x)
  709. }
  710. func (*VolumeSyncStatusRequest) ProtoMessage() {}
  711. func (x *VolumeSyncStatusRequest) ProtoReflect() protoreflect.Message {
  712. mi := &file_volume_server_proto_msgTypes[16]
  713. if protoimpl.UnsafeEnabled && x != nil {
  714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  715. if ms.LoadMessageInfo() == nil {
  716. ms.StoreMessageInfo(mi)
  717. }
  718. return ms
  719. }
  720. return mi.MessageOf(x)
  721. }
  722. // Deprecated: Use VolumeSyncStatusRequest.ProtoReflect.Descriptor instead.
  723. func (*VolumeSyncStatusRequest) Descriptor() ([]byte, []int) {
  724. return file_volume_server_proto_rawDescGZIP(), []int{16}
  725. }
  726. func (x *VolumeSyncStatusRequest) GetVolumeId() uint32 {
  727. if x != nil {
  728. return x.VolumeId
  729. }
  730. return 0
  731. }
  732. type VolumeSyncStatusResponse struct {
  733. state protoimpl.MessageState
  734. sizeCache protoimpl.SizeCache
  735. unknownFields protoimpl.UnknownFields
  736. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  737. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  738. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  739. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  740. TailOffset uint64 `protobuf:"varint,6,opt,name=tail_offset,json=tailOffset,proto3" json:"tail_offset,omitempty"`
  741. CompactRevision uint32 `protobuf:"varint,7,opt,name=compact_revision,json=compactRevision,proto3" json:"compact_revision,omitempty"`
  742. IdxFileSize uint64 `protobuf:"varint,8,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  743. }
  744. func (x *VolumeSyncStatusResponse) Reset() {
  745. *x = VolumeSyncStatusResponse{}
  746. if protoimpl.UnsafeEnabled {
  747. mi := &file_volume_server_proto_msgTypes[17]
  748. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  749. ms.StoreMessageInfo(mi)
  750. }
  751. }
  752. func (x *VolumeSyncStatusResponse) String() string {
  753. return protoimpl.X.MessageStringOf(x)
  754. }
  755. func (*VolumeSyncStatusResponse) ProtoMessage() {}
  756. func (x *VolumeSyncStatusResponse) ProtoReflect() protoreflect.Message {
  757. mi := &file_volume_server_proto_msgTypes[17]
  758. if protoimpl.UnsafeEnabled && x != nil {
  759. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  760. if ms.LoadMessageInfo() == nil {
  761. ms.StoreMessageInfo(mi)
  762. }
  763. return ms
  764. }
  765. return mi.MessageOf(x)
  766. }
  767. // Deprecated: Use VolumeSyncStatusResponse.ProtoReflect.Descriptor instead.
  768. func (*VolumeSyncStatusResponse) Descriptor() ([]byte, []int) {
  769. return file_volume_server_proto_rawDescGZIP(), []int{17}
  770. }
  771. func (x *VolumeSyncStatusResponse) GetVolumeId() uint32 {
  772. if x != nil {
  773. return x.VolumeId
  774. }
  775. return 0
  776. }
  777. func (x *VolumeSyncStatusResponse) GetCollection() string {
  778. if x != nil {
  779. return x.Collection
  780. }
  781. return ""
  782. }
  783. func (x *VolumeSyncStatusResponse) GetReplication() string {
  784. if x != nil {
  785. return x.Replication
  786. }
  787. return ""
  788. }
  789. func (x *VolumeSyncStatusResponse) GetTtl() string {
  790. if x != nil {
  791. return x.Ttl
  792. }
  793. return ""
  794. }
  795. func (x *VolumeSyncStatusResponse) GetTailOffset() uint64 {
  796. if x != nil {
  797. return x.TailOffset
  798. }
  799. return 0
  800. }
  801. func (x *VolumeSyncStatusResponse) GetCompactRevision() uint32 {
  802. if x != nil {
  803. return x.CompactRevision
  804. }
  805. return 0
  806. }
  807. func (x *VolumeSyncStatusResponse) GetIdxFileSize() uint64 {
  808. if x != nil {
  809. return x.IdxFileSize
  810. }
  811. return 0
  812. }
  813. type VolumeIncrementalCopyRequest struct {
  814. state protoimpl.MessageState
  815. sizeCache protoimpl.SizeCache
  816. unknownFields protoimpl.UnknownFields
  817. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  818. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  819. }
  820. func (x *VolumeIncrementalCopyRequest) Reset() {
  821. *x = VolumeIncrementalCopyRequest{}
  822. if protoimpl.UnsafeEnabled {
  823. mi := &file_volume_server_proto_msgTypes[18]
  824. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  825. ms.StoreMessageInfo(mi)
  826. }
  827. }
  828. func (x *VolumeIncrementalCopyRequest) String() string {
  829. return protoimpl.X.MessageStringOf(x)
  830. }
  831. func (*VolumeIncrementalCopyRequest) ProtoMessage() {}
  832. func (x *VolumeIncrementalCopyRequest) ProtoReflect() protoreflect.Message {
  833. mi := &file_volume_server_proto_msgTypes[18]
  834. if protoimpl.UnsafeEnabled && x != nil {
  835. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  836. if ms.LoadMessageInfo() == nil {
  837. ms.StoreMessageInfo(mi)
  838. }
  839. return ms
  840. }
  841. return mi.MessageOf(x)
  842. }
  843. // Deprecated: Use VolumeIncrementalCopyRequest.ProtoReflect.Descriptor instead.
  844. func (*VolumeIncrementalCopyRequest) Descriptor() ([]byte, []int) {
  845. return file_volume_server_proto_rawDescGZIP(), []int{18}
  846. }
  847. func (x *VolumeIncrementalCopyRequest) GetVolumeId() uint32 {
  848. if x != nil {
  849. return x.VolumeId
  850. }
  851. return 0
  852. }
  853. func (x *VolumeIncrementalCopyRequest) GetSinceNs() uint64 {
  854. if x != nil {
  855. return x.SinceNs
  856. }
  857. return 0
  858. }
  859. type VolumeIncrementalCopyResponse struct {
  860. state protoimpl.MessageState
  861. sizeCache protoimpl.SizeCache
  862. unknownFields protoimpl.UnknownFields
  863. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  864. }
  865. func (x *VolumeIncrementalCopyResponse) Reset() {
  866. *x = VolumeIncrementalCopyResponse{}
  867. if protoimpl.UnsafeEnabled {
  868. mi := &file_volume_server_proto_msgTypes[19]
  869. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  870. ms.StoreMessageInfo(mi)
  871. }
  872. }
  873. func (x *VolumeIncrementalCopyResponse) String() string {
  874. return protoimpl.X.MessageStringOf(x)
  875. }
  876. func (*VolumeIncrementalCopyResponse) ProtoMessage() {}
  877. func (x *VolumeIncrementalCopyResponse) ProtoReflect() protoreflect.Message {
  878. mi := &file_volume_server_proto_msgTypes[19]
  879. if protoimpl.UnsafeEnabled && x != nil {
  880. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  881. if ms.LoadMessageInfo() == nil {
  882. ms.StoreMessageInfo(mi)
  883. }
  884. return ms
  885. }
  886. return mi.MessageOf(x)
  887. }
  888. // Deprecated: Use VolumeIncrementalCopyResponse.ProtoReflect.Descriptor instead.
  889. func (*VolumeIncrementalCopyResponse) Descriptor() ([]byte, []int) {
  890. return file_volume_server_proto_rawDescGZIP(), []int{19}
  891. }
  892. func (x *VolumeIncrementalCopyResponse) GetFileContent() []byte {
  893. if x != nil {
  894. return x.FileContent
  895. }
  896. return nil
  897. }
  898. type VolumeMountRequest struct {
  899. state protoimpl.MessageState
  900. sizeCache protoimpl.SizeCache
  901. unknownFields protoimpl.UnknownFields
  902. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  903. }
  904. func (x *VolumeMountRequest) Reset() {
  905. *x = VolumeMountRequest{}
  906. if protoimpl.UnsafeEnabled {
  907. mi := &file_volume_server_proto_msgTypes[20]
  908. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  909. ms.StoreMessageInfo(mi)
  910. }
  911. }
  912. func (x *VolumeMountRequest) String() string {
  913. return protoimpl.X.MessageStringOf(x)
  914. }
  915. func (*VolumeMountRequest) ProtoMessage() {}
  916. func (x *VolumeMountRequest) ProtoReflect() protoreflect.Message {
  917. mi := &file_volume_server_proto_msgTypes[20]
  918. if protoimpl.UnsafeEnabled && x != nil {
  919. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  920. if ms.LoadMessageInfo() == nil {
  921. ms.StoreMessageInfo(mi)
  922. }
  923. return ms
  924. }
  925. return mi.MessageOf(x)
  926. }
  927. // Deprecated: Use VolumeMountRequest.ProtoReflect.Descriptor instead.
  928. func (*VolumeMountRequest) Descriptor() ([]byte, []int) {
  929. return file_volume_server_proto_rawDescGZIP(), []int{20}
  930. }
  931. func (x *VolumeMountRequest) GetVolumeId() uint32 {
  932. if x != nil {
  933. return x.VolumeId
  934. }
  935. return 0
  936. }
  937. type VolumeMountResponse struct {
  938. state protoimpl.MessageState
  939. sizeCache protoimpl.SizeCache
  940. unknownFields protoimpl.UnknownFields
  941. }
  942. func (x *VolumeMountResponse) Reset() {
  943. *x = VolumeMountResponse{}
  944. if protoimpl.UnsafeEnabled {
  945. mi := &file_volume_server_proto_msgTypes[21]
  946. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  947. ms.StoreMessageInfo(mi)
  948. }
  949. }
  950. func (x *VolumeMountResponse) String() string {
  951. return protoimpl.X.MessageStringOf(x)
  952. }
  953. func (*VolumeMountResponse) ProtoMessage() {}
  954. func (x *VolumeMountResponse) ProtoReflect() protoreflect.Message {
  955. mi := &file_volume_server_proto_msgTypes[21]
  956. if protoimpl.UnsafeEnabled && x != nil {
  957. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  958. if ms.LoadMessageInfo() == nil {
  959. ms.StoreMessageInfo(mi)
  960. }
  961. return ms
  962. }
  963. return mi.MessageOf(x)
  964. }
  965. // Deprecated: Use VolumeMountResponse.ProtoReflect.Descriptor instead.
  966. func (*VolumeMountResponse) Descriptor() ([]byte, []int) {
  967. return file_volume_server_proto_rawDescGZIP(), []int{21}
  968. }
  969. type VolumeUnmountRequest struct {
  970. state protoimpl.MessageState
  971. sizeCache protoimpl.SizeCache
  972. unknownFields protoimpl.UnknownFields
  973. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  974. }
  975. func (x *VolumeUnmountRequest) Reset() {
  976. *x = VolumeUnmountRequest{}
  977. if protoimpl.UnsafeEnabled {
  978. mi := &file_volume_server_proto_msgTypes[22]
  979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  980. ms.StoreMessageInfo(mi)
  981. }
  982. }
  983. func (x *VolumeUnmountRequest) String() string {
  984. return protoimpl.X.MessageStringOf(x)
  985. }
  986. func (*VolumeUnmountRequest) ProtoMessage() {}
  987. func (x *VolumeUnmountRequest) ProtoReflect() protoreflect.Message {
  988. mi := &file_volume_server_proto_msgTypes[22]
  989. if protoimpl.UnsafeEnabled && x != nil {
  990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  991. if ms.LoadMessageInfo() == nil {
  992. ms.StoreMessageInfo(mi)
  993. }
  994. return ms
  995. }
  996. return mi.MessageOf(x)
  997. }
  998. // Deprecated: Use VolumeUnmountRequest.ProtoReflect.Descriptor instead.
  999. func (*VolumeUnmountRequest) Descriptor() ([]byte, []int) {
  1000. return file_volume_server_proto_rawDescGZIP(), []int{22}
  1001. }
  1002. func (x *VolumeUnmountRequest) GetVolumeId() uint32 {
  1003. if x != nil {
  1004. return x.VolumeId
  1005. }
  1006. return 0
  1007. }
  1008. type VolumeUnmountResponse struct {
  1009. state protoimpl.MessageState
  1010. sizeCache protoimpl.SizeCache
  1011. unknownFields protoimpl.UnknownFields
  1012. }
  1013. func (x *VolumeUnmountResponse) Reset() {
  1014. *x = VolumeUnmountResponse{}
  1015. if protoimpl.UnsafeEnabled {
  1016. mi := &file_volume_server_proto_msgTypes[23]
  1017. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1018. ms.StoreMessageInfo(mi)
  1019. }
  1020. }
  1021. func (x *VolumeUnmountResponse) String() string {
  1022. return protoimpl.X.MessageStringOf(x)
  1023. }
  1024. func (*VolumeUnmountResponse) ProtoMessage() {}
  1025. func (x *VolumeUnmountResponse) ProtoReflect() protoreflect.Message {
  1026. mi := &file_volume_server_proto_msgTypes[23]
  1027. if protoimpl.UnsafeEnabled && x != nil {
  1028. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1029. if ms.LoadMessageInfo() == nil {
  1030. ms.StoreMessageInfo(mi)
  1031. }
  1032. return ms
  1033. }
  1034. return mi.MessageOf(x)
  1035. }
  1036. // Deprecated: Use VolumeUnmountResponse.ProtoReflect.Descriptor instead.
  1037. func (*VolumeUnmountResponse) Descriptor() ([]byte, []int) {
  1038. return file_volume_server_proto_rawDescGZIP(), []int{23}
  1039. }
  1040. type VolumeDeleteRequest struct {
  1041. state protoimpl.MessageState
  1042. sizeCache protoimpl.SizeCache
  1043. unknownFields protoimpl.UnknownFields
  1044. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1045. }
  1046. func (x *VolumeDeleteRequest) Reset() {
  1047. *x = VolumeDeleteRequest{}
  1048. if protoimpl.UnsafeEnabled {
  1049. mi := &file_volume_server_proto_msgTypes[24]
  1050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1051. ms.StoreMessageInfo(mi)
  1052. }
  1053. }
  1054. func (x *VolumeDeleteRequest) String() string {
  1055. return protoimpl.X.MessageStringOf(x)
  1056. }
  1057. func (*VolumeDeleteRequest) ProtoMessage() {}
  1058. func (x *VolumeDeleteRequest) ProtoReflect() protoreflect.Message {
  1059. mi := &file_volume_server_proto_msgTypes[24]
  1060. if protoimpl.UnsafeEnabled && x != nil {
  1061. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1062. if ms.LoadMessageInfo() == nil {
  1063. ms.StoreMessageInfo(mi)
  1064. }
  1065. return ms
  1066. }
  1067. return mi.MessageOf(x)
  1068. }
  1069. // Deprecated: Use VolumeDeleteRequest.ProtoReflect.Descriptor instead.
  1070. func (*VolumeDeleteRequest) Descriptor() ([]byte, []int) {
  1071. return file_volume_server_proto_rawDescGZIP(), []int{24}
  1072. }
  1073. func (x *VolumeDeleteRequest) GetVolumeId() uint32 {
  1074. if x != nil {
  1075. return x.VolumeId
  1076. }
  1077. return 0
  1078. }
  1079. type VolumeDeleteResponse struct {
  1080. state protoimpl.MessageState
  1081. sizeCache protoimpl.SizeCache
  1082. unknownFields protoimpl.UnknownFields
  1083. }
  1084. func (x *VolumeDeleteResponse) Reset() {
  1085. *x = VolumeDeleteResponse{}
  1086. if protoimpl.UnsafeEnabled {
  1087. mi := &file_volume_server_proto_msgTypes[25]
  1088. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1089. ms.StoreMessageInfo(mi)
  1090. }
  1091. }
  1092. func (x *VolumeDeleteResponse) String() string {
  1093. return protoimpl.X.MessageStringOf(x)
  1094. }
  1095. func (*VolumeDeleteResponse) ProtoMessage() {}
  1096. func (x *VolumeDeleteResponse) ProtoReflect() protoreflect.Message {
  1097. mi := &file_volume_server_proto_msgTypes[25]
  1098. if protoimpl.UnsafeEnabled && x != nil {
  1099. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1100. if ms.LoadMessageInfo() == nil {
  1101. ms.StoreMessageInfo(mi)
  1102. }
  1103. return ms
  1104. }
  1105. return mi.MessageOf(x)
  1106. }
  1107. // Deprecated: Use VolumeDeleteResponse.ProtoReflect.Descriptor instead.
  1108. func (*VolumeDeleteResponse) Descriptor() ([]byte, []int) {
  1109. return file_volume_server_proto_rawDescGZIP(), []int{25}
  1110. }
  1111. type VolumeMarkReadonlyRequest struct {
  1112. state protoimpl.MessageState
  1113. sizeCache protoimpl.SizeCache
  1114. unknownFields protoimpl.UnknownFields
  1115. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1116. }
  1117. func (x *VolumeMarkReadonlyRequest) Reset() {
  1118. *x = VolumeMarkReadonlyRequest{}
  1119. if protoimpl.UnsafeEnabled {
  1120. mi := &file_volume_server_proto_msgTypes[26]
  1121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1122. ms.StoreMessageInfo(mi)
  1123. }
  1124. }
  1125. func (x *VolumeMarkReadonlyRequest) String() string {
  1126. return protoimpl.X.MessageStringOf(x)
  1127. }
  1128. func (*VolumeMarkReadonlyRequest) ProtoMessage() {}
  1129. func (x *VolumeMarkReadonlyRequest) ProtoReflect() protoreflect.Message {
  1130. mi := &file_volume_server_proto_msgTypes[26]
  1131. if protoimpl.UnsafeEnabled && x != nil {
  1132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1133. if ms.LoadMessageInfo() == nil {
  1134. ms.StoreMessageInfo(mi)
  1135. }
  1136. return ms
  1137. }
  1138. return mi.MessageOf(x)
  1139. }
  1140. // Deprecated: Use VolumeMarkReadonlyRequest.ProtoReflect.Descriptor instead.
  1141. func (*VolumeMarkReadonlyRequest) Descriptor() ([]byte, []int) {
  1142. return file_volume_server_proto_rawDescGZIP(), []int{26}
  1143. }
  1144. func (x *VolumeMarkReadonlyRequest) GetVolumeId() uint32 {
  1145. if x != nil {
  1146. return x.VolumeId
  1147. }
  1148. return 0
  1149. }
  1150. type VolumeMarkReadonlyResponse struct {
  1151. state protoimpl.MessageState
  1152. sizeCache protoimpl.SizeCache
  1153. unknownFields protoimpl.UnknownFields
  1154. }
  1155. func (x *VolumeMarkReadonlyResponse) Reset() {
  1156. *x = VolumeMarkReadonlyResponse{}
  1157. if protoimpl.UnsafeEnabled {
  1158. mi := &file_volume_server_proto_msgTypes[27]
  1159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1160. ms.StoreMessageInfo(mi)
  1161. }
  1162. }
  1163. func (x *VolumeMarkReadonlyResponse) String() string {
  1164. return protoimpl.X.MessageStringOf(x)
  1165. }
  1166. func (*VolumeMarkReadonlyResponse) ProtoMessage() {}
  1167. func (x *VolumeMarkReadonlyResponse) ProtoReflect() protoreflect.Message {
  1168. mi := &file_volume_server_proto_msgTypes[27]
  1169. if protoimpl.UnsafeEnabled && x != nil {
  1170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1171. if ms.LoadMessageInfo() == nil {
  1172. ms.StoreMessageInfo(mi)
  1173. }
  1174. return ms
  1175. }
  1176. return mi.MessageOf(x)
  1177. }
  1178. // Deprecated: Use VolumeMarkReadonlyResponse.ProtoReflect.Descriptor instead.
  1179. func (*VolumeMarkReadonlyResponse) Descriptor() ([]byte, []int) {
  1180. return file_volume_server_proto_rawDescGZIP(), []int{27}
  1181. }
  1182. type VolumeMarkWritableRequest struct {
  1183. state protoimpl.MessageState
  1184. sizeCache protoimpl.SizeCache
  1185. unknownFields protoimpl.UnknownFields
  1186. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1187. }
  1188. func (x *VolumeMarkWritableRequest) Reset() {
  1189. *x = VolumeMarkWritableRequest{}
  1190. if protoimpl.UnsafeEnabled {
  1191. mi := &file_volume_server_proto_msgTypes[28]
  1192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1193. ms.StoreMessageInfo(mi)
  1194. }
  1195. }
  1196. func (x *VolumeMarkWritableRequest) String() string {
  1197. return protoimpl.X.MessageStringOf(x)
  1198. }
  1199. func (*VolumeMarkWritableRequest) ProtoMessage() {}
  1200. func (x *VolumeMarkWritableRequest) ProtoReflect() protoreflect.Message {
  1201. mi := &file_volume_server_proto_msgTypes[28]
  1202. if protoimpl.UnsafeEnabled && x != nil {
  1203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1204. if ms.LoadMessageInfo() == nil {
  1205. ms.StoreMessageInfo(mi)
  1206. }
  1207. return ms
  1208. }
  1209. return mi.MessageOf(x)
  1210. }
  1211. // Deprecated: Use VolumeMarkWritableRequest.ProtoReflect.Descriptor instead.
  1212. func (*VolumeMarkWritableRequest) Descriptor() ([]byte, []int) {
  1213. return file_volume_server_proto_rawDescGZIP(), []int{28}
  1214. }
  1215. func (x *VolumeMarkWritableRequest) GetVolumeId() uint32 {
  1216. if x != nil {
  1217. return x.VolumeId
  1218. }
  1219. return 0
  1220. }
  1221. type VolumeMarkWritableResponse struct {
  1222. state protoimpl.MessageState
  1223. sizeCache protoimpl.SizeCache
  1224. unknownFields protoimpl.UnknownFields
  1225. }
  1226. func (x *VolumeMarkWritableResponse) Reset() {
  1227. *x = VolumeMarkWritableResponse{}
  1228. if protoimpl.UnsafeEnabled {
  1229. mi := &file_volume_server_proto_msgTypes[29]
  1230. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1231. ms.StoreMessageInfo(mi)
  1232. }
  1233. }
  1234. func (x *VolumeMarkWritableResponse) String() string {
  1235. return protoimpl.X.MessageStringOf(x)
  1236. }
  1237. func (*VolumeMarkWritableResponse) ProtoMessage() {}
  1238. func (x *VolumeMarkWritableResponse) ProtoReflect() protoreflect.Message {
  1239. mi := &file_volume_server_proto_msgTypes[29]
  1240. if protoimpl.UnsafeEnabled && x != nil {
  1241. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1242. if ms.LoadMessageInfo() == nil {
  1243. ms.StoreMessageInfo(mi)
  1244. }
  1245. return ms
  1246. }
  1247. return mi.MessageOf(x)
  1248. }
  1249. // Deprecated: Use VolumeMarkWritableResponse.ProtoReflect.Descriptor instead.
  1250. func (*VolumeMarkWritableResponse) Descriptor() ([]byte, []int) {
  1251. return file_volume_server_proto_rawDescGZIP(), []int{29}
  1252. }
  1253. type VolumeConfigureRequest struct {
  1254. state protoimpl.MessageState
  1255. sizeCache protoimpl.SizeCache
  1256. unknownFields protoimpl.UnknownFields
  1257. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1258. Replication string `protobuf:"bytes,2,opt,name=replication,proto3" json:"replication,omitempty"`
  1259. }
  1260. func (x *VolumeConfigureRequest) Reset() {
  1261. *x = VolumeConfigureRequest{}
  1262. if protoimpl.UnsafeEnabled {
  1263. mi := &file_volume_server_proto_msgTypes[30]
  1264. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1265. ms.StoreMessageInfo(mi)
  1266. }
  1267. }
  1268. func (x *VolumeConfigureRequest) String() string {
  1269. return protoimpl.X.MessageStringOf(x)
  1270. }
  1271. func (*VolumeConfigureRequest) ProtoMessage() {}
  1272. func (x *VolumeConfigureRequest) ProtoReflect() protoreflect.Message {
  1273. mi := &file_volume_server_proto_msgTypes[30]
  1274. if protoimpl.UnsafeEnabled && x != nil {
  1275. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1276. if ms.LoadMessageInfo() == nil {
  1277. ms.StoreMessageInfo(mi)
  1278. }
  1279. return ms
  1280. }
  1281. return mi.MessageOf(x)
  1282. }
  1283. // Deprecated: Use VolumeConfigureRequest.ProtoReflect.Descriptor instead.
  1284. func (*VolumeConfigureRequest) Descriptor() ([]byte, []int) {
  1285. return file_volume_server_proto_rawDescGZIP(), []int{30}
  1286. }
  1287. func (x *VolumeConfigureRequest) GetVolumeId() uint32 {
  1288. if x != nil {
  1289. return x.VolumeId
  1290. }
  1291. return 0
  1292. }
  1293. func (x *VolumeConfigureRequest) GetReplication() string {
  1294. if x != nil {
  1295. return x.Replication
  1296. }
  1297. return ""
  1298. }
  1299. type VolumeConfigureResponse struct {
  1300. state protoimpl.MessageState
  1301. sizeCache protoimpl.SizeCache
  1302. unknownFields protoimpl.UnknownFields
  1303. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  1304. }
  1305. func (x *VolumeConfigureResponse) Reset() {
  1306. *x = VolumeConfigureResponse{}
  1307. if protoimpl.UnsafeEnabled {
  1308. mi := &file_volume_server_proto_msgTypes[31]
  1309. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1310. ms.StoreMessageInfo(mi)
  1311. }
  1312. }
  1313. func (x *VolumeConfigureResponse) String() string {
  1314. return protoimpl.X.MessageStringOf(x)
  1315. }
  1316. func (*VolumeConfigureResponse) ProtoMessage() {}
  1317. func (x *VolumeConfigureResponse) ProtoReflect() protoreflect.Message {
  1318. mi := &file_volume_server_proto_msgTypes[31]
  1319. if protoimpl.UnsafeEnabled && x != nil {
  1320. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1321. if ms.LoadMessageInfo() == nil {
  1322. ms.StoreMessageInfo(mi)
  1323. }
  1324. return ms
  1325. }
  1326. return mi.MessageOf(x)
  1327. }
  1328. // Deprecated: Use VolumeConfigureResponse.ProtoReflect.Descriptor instead.
  1329. func (*VolumeConfigureResponse) Descriptor() ([]byte, []int) {
  1330. return file_volume_server_proto_rawDescGZIP(), []int{31}
  1331. }
  1332. func (x *VolumeConfigureResponse) GetError() string {
  1333. if x != nil {
  1334. return x.Error
  1335. }
  1336. return ""
  1337. }
  1338. type VolumeStatusRequest struct {
  1339. state protoimpl.MessageState
  1340. sizeCache protoimpl.SizeCache
  1341. unknownFields protoimpl.UnknownFields
  1342. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1343. }
  1344. func (x *VolumeStatusRequest) Reset() {
  1345. *x = VolumeStatusRequest{}
  1346. if protoimpl.UnsafeEnabled {
  1347. mi := &file_volume_server_proto_msgTypes[32]
  1348. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1349. ms.StoreMessageInfo(mi)
  1350. }
  1351. }
  1352. func (x *VolumeStatusRequest) String() string {
  1353. return protoimpl.X.MessageStringOf(x)
  1354. }
  1355. func (*VolumeStatusRequest) ProtoMessage() {}
  1356. func (x *VolumeStatusRequest) ProtoReflect() protoreflect.Message {
  1357. mi := &file_volume_server_proto_msgTypes[32]
  1358. if protoimpl.UnsafeEnabled && x != nil {
  1359. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1360. if ms.LoadMessageInfo() == nil {
  1361. ms.StoreMessageInfo(mi)
  1362. }
  1363. return ms
  1364. }
  1365. return mi.MessageOf(x)
  1366. }
  1367. // Deprecated: Use VolumeStatusRequest.ProtoReflect.Descriptor instead.
  1368. func (*VolumeStatusRequest) Descriptor() ([]byte, []int) {
  1369. return file_volume_server_proto_rawDescGZIP(), []int{32}
  1370. }
  1371. func (x *VolumeStatusRequest) GetVolumeId() uint32 {
  1372. if x != nil {
  1373. return x.VolumeId
  1374. }
  1375. return 0
  1376. }
  1377. type VolumeStatusResponse struct {
  1378. state protoimpl.MessageState
  1379. sizeCache protoimpl.SizeCache
  1380. unknownFields protoimpl.UnknownFields
  1381. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  1382. }
  1383. func (x *VolumeStatusResponse) Reset() {
  1384. *x = VolumeStatusResponse{}
  1385. if protoimpl.UnsafeEnabled {
  1386. mi := &file_volume_server_proto_msgTypes[33]
  1387. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1388. ms.StoreMessageInfo(mi)
  1389. }
  1390. }
  1391. func (x *VolumeStatusResponse) String() string {
  1392. return protoimpl.X.MessageStringOf(x)
  1393. }
  1394. func (*VolumeStatusResponse) ProtoMessage() {}
  1395. func (x *VolumeStatusResponse) ProtoReflect() protoreflect.Message {
  1396. mi := &file_volume_server_proto_msgTypes[33]
  1397. if protoimpl.UnsafeEnabled && x != nil {
  1398. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1399. if ms.LoadMessageInfo() == nil {
  1400. ms.StoreMessageInfo(mi)
  1401. }
  1402. return ms
  1403. }
  1404. return mi.MessageOf(x)
  1405. }
  1406. // Deprecated: Use VolumeStatusResponse.ProtoReflect.Descriptor instead.
  1407. func (*VolumeStatusResponse) Descriptor() ([]byte, []int) {
  1408. return file_volume_server_proto_rawDescGZIP(), []int{33}
  1409. }
  1410. func (x *VolumeStatusResponse) GetIsReadOnly() bool {
  1411. if x != nil {
  1412. return x.IsReadOnly
  1413. }
  1414. return false
  1415. }
  1416. type VolumeCopyRequest struct {
  1417. state protoimpl.MessageState
  1418. sizeCache protoimpl.SizeCache
  1419. unknownFields protoimpl.UnknownFields
  1420. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1421. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1422. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  1423. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1424. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  1425. }
  1426. func (x *VolumeCopyRequest) Reset() {
  1427. *x = VolumeCopyRequest{}
  1428. if protoimpl.UnsafeEnabled {
  1429. mi := &file_volume_server_proto_msgTypes[34]
  1430. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1431. ms.StoreMessageInfo(mi)
  1432. }
  1433. }
  1434. func (x *VolumeCopyRequest) String() string {
  1435. return protoimpl.X.MessageStringOf(x)
  1436. }
  1437. func (*VolumeCopyRequest) ProtoMessage() {}
  1438. func (x *VolumeCopyRequest) ProtoReflect() protoreflect.Message {
  1439. mi := &file_volume_server_proto_msgTypes[34]
  1440. if protoimpl.UnsafeEnabled && x != nil {
  1441. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1442. if ms.LoadMessageInfo() == nil {
  1443. ms.StoreMessageInfo(mi)
  1444. }
  1445. return ms
  1446. }
  1447. return mi.MessageOf(x)
  1448. }
  1449. // Deprecated: Use VolumeCopyRequest.ProtoReflect.Descriptor instead.
  1450. func (*VolumeCopyRequest) Descriptor() ([]byte, []int) {
  1451. return file_volume_server_proto_rawDescGZIP(), []int{34}
  1452. }
  1453. func (x *VolumeCopyRequest) GetVolumeId() uint32 {
  1454. if x != nil {
  1455. return x.VolumeId
  1456. }
  1457. return 0
  1458. }
  1459. func (x *VolumeCopyRequest) GetCollection() string {
  1460. if x != nil {
  1461. return x.Collection
  1462. }
  1463. return ""
  1464. }
  1465. func (x *VolumeCopyRequest) GetReplication() string {
  1466. if x != nil {
  1467. return x.Replication
  1468. }
  1469. return ""
  1470. }
  1471. func (x *VolumeCopyRequest) GetTtl() string {
  1472. if x != nil {
  1473. return x.Ttl
  1474. }
  1475. return ""
  1476. }
  1477. func (x *VolumeCopyRequest) GetSourceDataNode() string {
  1478. if x != nil {
  1479. return x.SourceDataNode
  1480. }
  1481. return ""
  1482. }
  1483. type VolumeCopyResponse struct {
  1484. state protoimpl.MessageState
  1485. sizeCache protoimpl.SizeCache
  1486. unknownFields protoimpl.UnknownFields
  1487. LastAppendAtNs uint64 `protobuf:"varint,1,opt,name=last_append_at_ns,json=lastAppendAtNs,proto3" json:"last_append_at_ns,omitempty"`
  1488. }
  1489. func (x *VolumeCopyResponse) Reset() {
  1490. *x = VolumeCopyResponse{}
  1491. if protoimpl.UnsafeEnabled {
  1492. mi := &file_volume_server_proto_msgTypes[35]
  1493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1494. ms.StoreMessageInfo(mi)
  1495. }
  1496. }
  1497. func (x *VolumeCopyResponse) String() string {
  1498. return protoimpl.X.MessageStringOf(x)
  1499. }
  1500. func (*VolumeCopyResponse) ProtoMessage() {}
  1501. func (x *VolumeCopyResponse) ProtoReflect() protoreflect.Message {
  1502. mi := &file_volume_server_proto_msgTypes[35]
  1503. if protoimpl.UnsafeEnabled && x != nil {
  1504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1505. if ms.LoadMessageInfo() == nil {
  1506. ms.StoreMessageInfo(mi)
  1507. }
  1508. return ms
  1509. }
  1510. return mi.MessageOf(x)
  1511. }
  1512. // Deprecated: Use VolumeCopyResponse.ProtoReflect.Descriptor instead.
  1513. func (*VolumeCopyResponse) Descriptor() ([]byte, []int) {
  1514. return file_volume_server_proto_rawDescGZIP(), []int{35}
  1515. }
  1516. func (x *VolumeCopyResponse) GetLastAppendAtNs() uint64 {
  1517. if x != nil {
  1518. return x.LastAppendAtNs
  1519. }
  1520. return 0
  1521. }
  1522. type CopyFileRequest struct {
  1523. state protoimpl.MessageState
  1524. sizeCache protoimpl.SizeCache
  1525. unknownFields protoimpl.UnknownFields
  1526. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1527. Ext string `protobuf:"bytes,2,opt,name=ext,proto3" json:"ext,omitempty"`
  1528. CompactionRevision uint32 `protobuf:"varint,3,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  1529. StopOffset uint64 `protobuf:"varint,4,opt,name=stop_offset,json=stopOffset,proto3" json:"stop_offset,omitempty"`
  1530. Collection string `protobuf:"bytes,5,opt,name=collection,proto3" json:"collection,omitempty"`
  1531. IsEcVolume bool `protobuf:"varint,6,opt,name=is_ec_volume,json=isEcVolume,proto3" json:"is_ec_volume,omitempty"`
  1532. IgnoreSourceFileNotFound bool `protobuf:"varint,7,opt,name=ignore_source_file_not_found,json=ignoreSourceFileNotFound,proto3" json:"ignore_source_file_not_found,omitempty"`
  1533. }
  1534. func (x *CopyFileRequest) Reset() {
  1535. *x = CopyFileRequest{}
  1536. if protoimpl.UnsafeEnabled {
  1537. mi := &file_volume_server_proto_msgTypes[36]
  1538. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1539. ms.StoreMessageInfo(mi)
  1540. }
  1541. }
  1542. func (x *CopyFileRequest) String() string {
  1543. return protoimpl.X.MessageStringOf(x)
  1544. }
  1545. func (*CopyFileRequest) ProtoMessage() {}
  1546. func (x *CopyFileRequest) ProtoReflect() protoreflect.Message {
  1547. mi := &file_volume_server_proto_msgTypes[36]
  1548. if protoimpl.UnsafeEnabled && x != nil {
  1549. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1550. if ms.LoadMessageInfo() == nil {
  1551. ms.StoreMessageInfo(mi)
  1552. }
  1553. return ms
  1554. }
  1555. return mi.MessageOf(x)
  1556. }
  1557. // Deprecated: Use CopyFileRequest.ProtoReflect.Descriptor instead.
  1558. func (*CopyFileRequest) Descriptor() ([]byte, []int) {
  1559. return file_volume_server_proto_rawDescGZIP(), []int{36}
  1560. }
  1561. func (x *CopyFileRequest) GetVolumeId() uint32 {
  1562. if x != nil {
  1563. return x.VolumeId
  1564. }
  1565. return 0
  1566. }
  1567. func (x *CopyFileRequest) GetExt() string {
  1568. if x != nil {
  1569. return x.Ext
  1570. }
  1571. return ""
  1572. }
  1573. func (x *CopyFileRequest) GetCompactionRevision() uint32 {
  1574. if x != nil {
  1575. return x.CompactionRevision
  1576. }
  1577. return 0
  1578. }
  1579. func (x *CopyFileRequest) GetStopOffset() uint64 {
  1580. if x != nil {
  1581. return x.StopOffset
  1582. }
  1583. return 0
  1584. }
  1585. func (x *CopyFileRequest) GetCollection() string {
  1586. if x != nil {
  1587. return x.Collection
  1588. }
  1589. return ""
  1590. }
  1591. func (x *CopyFileRequest) GetIsEcVolume() bool {
  1592. if x != nil {
  1593. return x.IsEcVolume
  1594. }
  1595. return false
  1596. }
  1597. func (x *CopyFileRequest) GetIgnoreSourceFileNotFound() bool {
  1598. if x != nil {
  1599. return x.IgnoreSourceFileNotFound
  1600. }
  1601. return false
  1602. }
  1603. type CopyFileResponse struct {
  1604. state protoimpl.MessageState
  1605. sizeCache protoimpl.SizeCache
  1606. unknownFields protoimpl.UnknownFields
  1607. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  1608. }
  1609. func (x *CopyFileResponse) Reset() {
  1610. *x = CopyFileResponse{}
  1611. if protoimpl.UnsafeEnabled {
  1612. mi := &file_volume_server_proto_msgTypes[37]
  1613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1614. ms.StoreMessageInfo(mi)
  1615. }
  1616. }
  1617. func (x *CopyFileResponse) String() string {
  1618. return protoimpl.X.MessageStringOf(x)
  1619. }
  1620. func (*CopyFileResponse) ProtoMessage() {}
  1621. func (x *CopyFileResponse) ProtoReflect() protoreflect.Message {
  1622. mi := &file_volume_server_proto_msgTypes[37]
  1623. if protoimpl.UnsafeEnabled && x != nil {
  1624. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1625. if ms.LoadMessageInfo() == nil {
  1626. ms.StoreMessageInfo(mi)
  1627. }
  1628. return ms
  1629. }
  1630. return mi.MessageOf(x)
  1631. }
  1632. // Deprecated: Use CopyFileResponse.ProtoReflect.Descriptor instead.
  1633. func (*CopyFileResponse) Descriptor() ([]byte, []int) {
  1634. return file_volume_server_proto_rawDescGZIP(), []int{37}
  1635. }
  1636. func (x *CopyFileResponse) GetFileContent() []byte {
  1637. if x != nil {
  1638. return x.FileContent
  1639. }
  1640. return nil
  1641. }
  1642. type VolumeTailSenderRequest struct {
  1643. state protoimpl.MessageState
  1644. sizeCache protoimpl.SizeCache
  1645. unknownFields protoimpl.UnknownFields
  1646. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1647. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  1648. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  1649. }
  1650. func (x *VolumeTailSenderRequest) Reset() {
  1651. *x = VolumeTailSenderRequest{}
  1652. if protoimpl.UnsafeEnabled {
  1653. mi := &file_volume_server_proto_msgTypes[38]
  1654. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1655. ms.StoreMessageInfo(mi)
  1656. }
  1657. }
  1658. func (x *VolumeTailSenderRequest) String() string {
  1659. return protoimpl.X.MessageStringOf(x)
  1660. }
  1661. func (*VolumeTailSenderRequest) ProtoMessage() {}
  1662. func (x *VolumeTailSenderRequest) ProtoReflect() protoreflect.Message {
  1663. mi := &file_volume_server_proto_msgTypes[38]
  1664. if protoimpl.UnsafeEnabled && x != nil {
  1665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1666. if ms.LoadMessageInfo() == nil {
  1667. ms.StoreMessageInfo(mi)
  1668. }
  1669. return ms
  1670. }
  1671. return mi.MessageOf(x)
  1672. }
  1673. // Deprecated: Use VolumeTailSenderRequest.ProtoReflect.Descriptor instead.
  1674. func (*VolumeTailSenderRequest) Descriptor() ([]byte, []int) {
  1675. return file_volume_server_proto_rawDescGZIP(), []int{38}
  1676. }
  1677. func (x *VolumeTailSenderRequest) GetVolumeId() uint32 {
  1678. if x != nil {
  1679. return x.VolumeId
  1680. }
  1681. return 0
  1682. }
  1683. func (x *VolumeTailSenderRequest) GetSinceNs() uint64 {
  1684. if x != nil {
  1685. return x.SinceNs
  1686. }
  1687. return 0
  1688. }
  1689. func (x *VolumeTailSenderRequest) GetIdleTimeoutSeconds() uint32 {
  1690. if x != nil {
  1691. return x.IdleTimeoutSeconds
  1692. }
  1693. return 0
  1694. }
  1695. type VolumeTailSenderResponse struct {
  1696. state protoimpl.MessageState
  1697. sizeCache protoimpl.SizeCache
  1698. unknownFields protoimpl.UnknownFields
  1699. NeedleHeader []byte `protobuf:"bytes,1,opt,name=needle_header,json=needleHeader,proto3" json:"needle_header,omitempty"`
  1700. NeedleBody []byte `protobuf:"bytes,2,opt,name=needle_body,json=needleBody,proto3" json:"needle_body,omitempty"`
  1701. IsLastChunk bool `protobuf:"varint,3,opt,name=is_last_chunk,json=isLastChunk,proto3" json:"is_last_chunk,omitempty"`
  1702. }
  1703. func (x *VolumeTailSenderResponse) Reset() {
  1704. *x = VolumeTailSenderResponse{}
  1705. if protoimpl.UnsafeEnabled {
  1706. mi := &file_volume_server_proto_msgTypes[39]
  1707. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1708. ms.StoreMessageInfo(mi)
  1709. }
  1710. }
  1711. func (x *VolumeTailSenderResponse) String() string {
  1712. return protoimpl.X.MessageStringOf(x)
  1713. }
  1714. func (*VolumeTailSenderResponse) ProtoMessage() {}
  1715. func (x *VolumeTailSenderResponse) ProtoReflect() protoreflect.Message {
  1716. mi := &file_volume_server_proto_msgTypes[39]
  1717. if protoimpl.UnsafeEnabled && x != nil {
  1718. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1719. if ms.LoadMessageInfo() == nil {
  1720. ms.StoreMessageInfo(mi)
  1721. }
  1722. return ms
  1723. }
  1724. return mi.MessageOf(x)
  1725. }
  1726. // Deprecated: Use VolumeTailSenderResponse.ProtoReflect.Descriptor instead.
  1727. func (*VolumeTailSenderResponse) Descriptor() ([]byte, []int) {
  1728. return file_volume_server_proto_rawDescGZIP(), []int{39}
  1729. }
  1730. func (x *VolumeTailSenderResponse) GetNeedleHeader() []byte {
  1731. if x != nil {
  1732. return x.NeedleHeader
  1733. }
  1734. return nil
  1735. }
  1736. func (x *VolumeTailSenderResponse) GetNeedleBody() []byte {
  1737. if x != nil {
  1738. return x.NeedleBody
  1739. }
  1740. return nil
  1741. }
  1742. func (x *VolumeTailSenderResponse) GetIsLastChunk() bool {
  1743. if x != nil {
  1744. return x.IsLastChunk
  1745. }
  1746. return false
  1747. }
  1748. type VolumeTailReceiverRequest struct {
  1749. state protoimpl.MessageState
  1750. sizeCache protoimpl.SizeCache
  1751. unknownFields protoimpl.UnknownFields
  1752. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1753. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  1754. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  1755. SourceVolumeServer string `protobuf:"bytes,4,opt,name=source_volume_server,json=sourceVolumeServer,proto3" json:"source_volume_server,omitempty"`
  1756. }
  1757. func (x *VolumeTailReceiverRequest) Reset() {
  1758. *x = VolumeTailReceiverRequest{}
  1759. if protoimpl.UnsafeEnabled {
  1760. mi := &file_volume_server_proto_msgTypes[40]
  1761. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1762. ms.StoreMessageInfo(mi)
  1763. }
  1764. }
  1765. func (x *VolumeTailReceiverRequest) String() string {
  1766. return protoimpl.X.MessageStringOf(x)
  1767. }
  1768. func (*VolumeTailReceiverRequest) ProtoMessage() {}
  1769. func (x *VolumeTailReceiverRequest) ProtoReflect() protoreflect.Message {
  1770. mi := &file_volume_server_proto_msgTypes[40]
  1771. if protoimpl.UnsafeEnabled && x != nil {
  1772. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1773. if ms.LoadMessageInfo() == nil {
  1774. ms.StoreMessageInfo(mi)
  1775. }
  1776. return ms
  1777. }
  1778. return mi.MessageOf(x)
  1779. }
  1780. // Deprecated: Use VolumeTailReceiverRequest.ProtoReflect.Descriptor instead.
  1781. func (*VolumeTailReceiverRequest) Descriptor() ([]byte, []int) {
  1782. return file_volume_server_proto_rawDescGZIP(), []int{40}
  1783. }
  1784. func (x *VolumeTailReceiverRequest) GetVolumeId() uint32 {
  1785. if x != nil {
  1786. return x.VolumeId
  1787. }
  1788. return 0
  1789. }
  1790. func (x *VolumeTailReceiverRequest) GetSinceNs() uint64 {
  1791. if x != nil {
  1792. return x.SinceNs
  1793. }
  1794. return 0
  1795. }
  1796. func (x *VolumeTailReceiverRequest) GetIdleTimeoutSeconds() uint32 {
  1797. if x != nil {
  1798. return x.IdleTimeoutSeconds
  1799. }
  1800. return 0
  1801. }
  1802. func (x *VolumeTailReceiverRequest) GetSourceVolumeServer() string {
  1803. if x != nil {
  1804. return x.SourceVolumeServer
  1805. }
  1806. return ""
  1807. }
  1808. type VolumeTailReceiverResponse struct {
  1809. state protoimpl.MessageState
  1810. sizeCache protoimpl.SizeCache
  1811. unknownFields protoimpl.UnknownFields
  1812. }
  1813. func (x *VolumeTailReceiverResponse) Reset() {
  1814. *x = VolumeTailReceiverResponse{}
  1815. if protoimpl.UnsafeEnabled {
  1816. mi := &file_volume_server_proto_msgTypes[41]
  1817. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1818. ms.StoreMessageInfo(mi)
  1819. }
  1820. }
  1821. func (x *VolumeTailReceiverResponse) String() string {
  1822. return protoimpl.X.MessageStringOf(x)
  1823. }
  1824. func (*VolumeTailReceiverResponse) ProtoMessage() {}
  1825. func (x *VolumeTailReceiverResponse) ProtoReflect() protoreflect.Message {
  1826. mi := &file_volume_server_proto_msgTypes[41]
  1827. if protoimpl.UnsafeEnabled && x != nil {
  1828. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1829. if ms.LoadMessageInfo() == nil {
  1830. ms.StoreMessageInfo(mi)
  1831. }
  1832. return ms
  1833. }
  1834. return mi.MessageOf(x)
  1835. }
  1836. // Deprecated: Use VolumeTailReceiverResponse.ProtoReflect.Descriptor instead.
  1837. func (*VolumeTailReceiverResponse) Descriptor() ([]byte, []int) {
  1838. return file_volume_server_proto_rawDescGZIP(), []int{41}
  1839. }
  1840. type VolumeEcShardsGenerateRequest struct {
  1841. state protoimpl.MessageState
  1842. sizeCache protoimpl.SizeCache
  1843. unknownFields protoimpl.UnknownFields
  1844. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1845. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1846. }
  1847. func (x *VolumeEcShardsGenerateRequest) Reset() {
  1848. *x = VolumeEcShardsGenerateRequest{}
  1849. if protoimpl.UnsafeEnabled {
  1850. mi := &file_volume_server_proto_msgTypes[42]
  1851. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1852. ms.StoreMessageInfo(mi)
  1853. }
  1854. }
  1855. func (x *VolumeEcShardsGenerateRequest) String() string {
  1856. return protoimpl.X.MessageStringOf(x)
  1857. }
  1858. func (*VolumeEcShardsGenerateRequest) ProtoMessage() {}
  1859. func (x *VolumeEcShardsGenerateRequest) ProtoReflect() protoreflect.Message {
  1860. mi := &file_volume_server_proto_msgTypes[42]
  1861. if protoimpl.UnsafeEnabled && x != nil {
  1862. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1863. if ms.LoadMessageInfo() == nil {
  1864. ms.StoreMessageInfo(mi)
  1865. }
  1866. return ms
  1867. }
  1868. return mi.MessageOf(x)
  1869. }
  1870. // Deprecated: Use VolumeEcShardsGenerateRequest.ProtoReflect.Descriptor instead.
  1871. func (*VolumeEcShardsGenerateRequest) Descriptor() ([]byte, []int) {
  1872. return file_volume_server_proto_rawDescGZIP(), []int{42}
  1873. }
  1874. func (x *VolumeEcShardsGenerateRequest) GetVolumeId() uint32 {
  1875. if x != nil {
  1876. return x.VolumeId
  1877. }
  1878. return 0
  1879. }
  1880. func (x *VolumeEcShardsGenerateRequest) GetCollection() string {
  1881. if x != nil {
  1882. return x.Collection
  1883. }
  1884. return ""
  1885. }
  1886. type VolumeEcShardsGenerateResponse struct {
  1887. state protoimpl.MessageState
  1888. sizeCache protoimpl.SizeCache
  1889. unknownFields protoimpl.UnknownFields
  1890. }
  1891. func (x *VolumeEcShardsGenerateResponse) Reset() {
  1892. *x = VolumeEcShardsGenerateResponse{}
  1893. if protoimpl.UnsafeEnabled {
  1894. mi := &file_volume_server_proto_msgTypes[43]
  1895. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1896. ms.StoreMessageInfo(mi)
  1897. }
  1898. }
  1899. func (x *VolumeEcShardsGenerateResponse) String() string {
  1900. return protoimpl.X.MessageStringOf(x)
  1901. }
  1902. func (*VolumeEcShardsGenerateResponse) ProtoMessage() {}
  1903. func (x *VolumeEcShardsGenerateResponse) ProtoReflect() protoreflect.Message {
  1904. mi := &file_volume_server_proto_msgTypes[43]
  1905. if protoimpl.UnsafeEnabled && x != nil {
  1906. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1907. if ms.LoadMessageInfo() == nil {
  1908. ms.StoreMessageInfo(mi)
  1909. }
  1910. return ms
  1911. }
  1912. return mi.MessageOf(x)
  1913. }
  1914. // Deprecated: Use VolumeEcShardsGenerateResponse.ProtoReflect.Descriptor instead.
  1915. func (*VolumeEcShardsGenerateResponse) Descriptor() ([]byte, []int) {
  1916. return file_volume_server_proto_rawDescGZIP(), []int{43}
  1917. }
  1918. type VolumeEcShardsRebuildRequest struct {
  1919. state protoimpl.MessageState
  1920. sizeCache protoimpl.SizeCache
  1921. unknownFields protoimpl.UnknownFields
  1922. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1923. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1924. }
  1925. func (x *VolumeEcShardsRebuildRequest) Reset() {
  1926. *x = VolumeEcShardsRebuildRequest{}
  1927. if protoimpl.UnsafeEnabled {
  1928. mi := &file_volume_server_proto_msgTypes[44]
  1929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1930. ms.StoreMessageInfo(mi)
  1931. }
  1932. }
  1933. func (x *VolumeEcShardsRebuildRequest) String() string {
  1934. return protoimpl.X.MessageStringOf(x)
  1935. }
  1936. func (*VolumeEcShardsRebuildRequest) ProtoMessage() {}
  1937. func (x *VolumeEcShardsRebuildRequest) ProtoReflect() protoreflect.Message {
  1938. mi := &file_volume_server_proto_msgTypes[44]
  1939. if protoimpl.UnsafeEnabled && x != nil {
  1940. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1941. if ms.LoadMessageInfo() == nil {
  1942. ms.StoreMessageInfo(mi)
  1943. }
  1944. return ms
  1945. }
  1946. return mi.MessageOf(x)
  1947. }
  1948. // Deprecated: Use VolumeEcShardsRebuildRequest.ProtoReflect.Descriptor instead.
  1949. func (*VolumeEcShardsRebuildRequest) Descriptor() ([]byte, []int) {
  1950. return file_volume_server_proto_rawDescGZIP(), []int{44}
  1951. }
  1952. func (x *VolumeEcShardsRebuildRequest) GetVolumeId() uint32 {
  1953. if x != nil {
  1954. return x.VolumeId
  1955. }
  1956. return 0
  1957. }
  1958. func (x *VolumeEcShardsRebuildRequest) GetCollection() string {
  1959. if x != nil {
  1960. return x.Collection
  1961. }
  1962. return ""
  1963. }
  1964. type VolumeEcShardsRebuildResponse struct {
  1965. state protoimpl.MessageState
  1966. sizeCache protoimpl.SizeCache
  1967. unknownFields protoimpl.UnknownFields
  1968. RebuiltShardIds []uint32 `protobuf:"varint,1,rep,packed,name=rebuilt_shard_ids,json=rebuiltShardIds,proto3" json:"rebuilt_shard_ids,omitempty"`
  1969. }
  1970. func (x *VolumeEcShardsRebuildResponse) Reset() {
  1971. *x = VolumeEcShardsRebuildResponse{}
  1972. if protoimpl.UnsafeEnabled {
  1973. mi := &file_volume_server_proto_msgTypes[45]
  1974. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1975. ms.StoreMessageInfo(mi)
  1976. }
  1977. }
  1978. func (x *VolumeEcShardsRebuildResponse) String() string {
  1979. return protoimpl.X.MessageStringOf(x)
  1980. }
  1981. func (*VolumeEcShardsRebuildResponse) ProtoMessage() {}
  1982. func (x *VolumeEcShardsRebuildResponse) ProtoReflect() protoreflect.Message {
  1983. mi := &file_volume_server_proto_msgTypes[45]
  1984. if protoimpl.UnsafeEnabled && x != nil {
  1985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1986. if ms.LoadMessageInfo() == nil {
  1987. ms.StoreMessageInfo(mi)
  1988. }
  1989. return ms
  1990. }
  1991. return mi.MessageOf(x)
  1992. }
  1993. // Deprecated: Use VolumeEcShardsRebuildResponse.ProtoReflect.Descriptor instead.
  1994. func (*VolumeEcShardsRebuildResponse) Descriptor() ([]byte, []int) {
  1995. return file_volume_server_proto_rawDescGZIP(), []int{45}
  1996. }
  1997. func (x *VolumeEcShardsRebuildResponse) GetRebuiltShardIds() []uint32 {
  1998. if x != nil {
  1999. return x.RebuiltShardIds
  2000. }
  2001. return nil
  2002. }
  2003. type VolumeEcShardsCopyRequest struct {
  2004. state protoimpl.MessageState
  2005. sizeCache protoimpl.SizeCache
  2006. unknownFields protoimpl.UnknownFields
  2007. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2008. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2009. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2010. CopyEcxFile bool `protobuf:"varint,4,opt,name=copy_ecx_file,json=copyEcxFile,proto3" json:"copy_ecx_file,omitempty"`
  2011. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  2012. CopyEcjFile bool `protobuf:"varint,6,opt,name=copy_ecj_file,json=copyEcjFile,proto3" json:"copy_ecj_file,omitempty"`
  2013. CopyVifFile bool `protobuf:"varint,7,opt,name=copy_vif_file,json=copyVifFile,proto3" json:"copy_vif_file,omitempty"`
  2014. }
  2015. func (x *VolumeEcShardsCopyRequest) Reset() {
  2016. *x = VolumeEcShardsCopyRequest{}
  2017. if protoimpl.UnsafeEnabled {
  2018. mi := &file_volume_server_proto_msgTypes[46]
  2019. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2020. ms.StoreMessageInfo(mi)
  2021. }
  2022. }
  2023. func (x *VolumeEcShardsCopyRequest) String() string {
  2024. return protoimpl.X.MessageStringOf(x)
  2025. }
  2026. func (*VolumeEcShardsCopyRequest) ProtoMessage() {}
  2027. func (x *VolumeEcShardsCopyRequest) ProtoReflect() protoreflect.Message {
  2028. mi := &file_volume_server_proto_msgTypes[46]
  2029. if protoimpl.UnsafeEnabled && x != nil {
  2030. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2031. if ms.LoadMessageInfo() == nil {
  2032. ms.StoreMessageInfo(mi)
  2033. }
  2034. return ms
  2035. }
  2036. return mi.MessageOf(x)
  2037. }
  2038. // Deprecated: Use VolumeEcShardsCopyRequest.ProtoReflect.Descriptor instead.
  2039. func (*VolumeEcShardsCopyRequest) Descriptor() ([]byte, []int) {
  2040. return file_volume_server_proto_rawDescGZIP(), []int{46}
  2041. }
  2042. func (x *VolumeEcShardsCopyRequest) GetVolumeId() uint32 {
  2043. if x != nil {
  2044. return x.VolumeId
  2045. }
  2046. return 0
  2047. }
  2048. func (x *VolumeEcShardsCopyRequest) GetCollection() string {
  2049. if x != nil {
  2050. return x.Collection
  2051. }
  2052. return ""
  2053. }
  2054. func (x *VolumeEcShardsCopyRequest) GetShardIds() []uint32 {
  2055. if x != nil {
  2056. return x.ShardIds
  2057. }
  2058. return nil
  2059. }
  2060. func (x *VolumeEcShardsCopyRequest) GetCopyEcxFile() bool {
  2061. if x != nil {
  2062. return x.CopyEcxFile
  2063. }
  2064. return false
  2065. }
  2066. func (x *VolumeEcShardsCopyRequest) GetSourceDataNode() string {
  2067. if x != nil {
  2068. return x.SourceDataNode
  2069. }
  2070. return ""
  2071. }
  2072. func (x *VolumeEcShardsCopyRequest) GetCopyEcjFile() bool {
  2073. if x != nil {
  2074. return x.CopyEcjFile
  2075. }
  2076. return false
  2077. }
  2078. func (x *VolumeEcShardsCopyRequest) GetCopyVifFile() bool {
  2079. if x != nil {
  2080. return x.CopyVifFile
  2081. }
  2082. return false
  2083. }
  2084. type VolumeEcShardsCopyResponse struct {
  2085. state protoimpl.MessageState
  2086. sizeCache protoimpl.SizeCache
  2087. unknownFields protoimpl.UnknownFields
  2088. }
  2089. func (x *VolumeEcShardsCopyResponse) Reset() {
  2090. *x = VolumeEcShardsCopyResponse{}
  2091. if protoimpl.UnsafeEnabled {
  2092. mi := &file_volume_server_proto_msgTypes[47]
  2093. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2094. ms.StoreMessageInfo(mi)
  2095. }
  2096. }
  2097. func (x *VolumeEcShardsCopyResponse) String() string {
  2098. return protoimpl.X.MessageStringOf(x)
  2099. }
  2100. func (*VolumeEcShardsCopyResponse) ProtoMessage() {}
  2101. func (x *VolumeEcShardsCopyResponse) ProtoReflect() protoreflect.Message {
  2102. mi := &file_volume_server_proto_msgTypes[47]
  2103. if protoimpl.UnsafeEnabled && x != nil {
  2104. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2105. if ms.LoadMessageInfo() == nil {
  2106. ms.StoreMessageInfo(mi)
  2107. }
  2108. return ms
  2109. }
  2110. return mi.MessageOf(x)
  2111. }
  2112. // Deprecated: Use VolumeEcShardsCopyResponse.ProtoReflect.Descriptor instead.
  2113. func (*VolumeEcShardsCopyResponse) Descriptor() ([]byte, []int) {
  2114. return file_volume_server_proto_rawDescGZIP(), []int{47}
  2115. }
  2116. type VolumeEcShardsDeleteRequest struct {
  2117. state protoimpl.MessageState
  2118. sizeCache protoimpl.SizeCache
  2119. unknownFields protoimpl.UnknownFields
  2120. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2121. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2122. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2123. }
  2124. func (x *VolumeEcShardsDeleteRequest) Reset() {
  2125. *x = VolumeEcShardsDeleteRequest{}
  2126. if protoimpl.UnsafeEnabled {
  2127. mi := &file_volume_server_proto_msgTypes[48]
  2128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2129. ms.StoreMessageInfo(mi)
  2130. }
  2131. }
  2132. func (x *VolumeEcShardsDeleteRequest) String() string {
  2133. return protoimpl.X.MessageStringOf(x)
  2134. }
  2135. func (*VolumeEcShardsDeleteRequest) ProtoMessage() {}
  2136. func (x *VolumeEcShardsDeleteRequest) ProtoReflect() protoreflect.Message {
  2137. mi := &file_volume_server_proto_msgTypes[48]
  2138. if protoimpl.UnsafeEnabled && x != nil {
  2139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2140. if ms.LoadMessageInfo() == nil {
  2141. ms.StoreMessageInfo(mi)
  2142. }
  2143. return ms
  2144. }
  2145. return mi.MessageOf(x)
  2146. }
  2147. // Deprecated: Use VolumeEcShardsDeleteRequest.ProtoReflect.Descriptor instead.
  2148. func (*VolumeEcShardsDeleteRequest) Descriptor() ([]byte, []int) {
  2149. return file_volume_server_proto_rawDescGZIP(), []int{48}
  2150. }
  2151. func (x *VolumeEcShardsDeleteRequest) GetVolumeId() uint32 {
  2152. if x != nil {
  2153. return x.VolumeId
  2154. }
  2155. return 0
  2156. }
  2157. func (x *VolumeEcShardsDeleteRequest) GetCollection() string {
  2158. if x != nil {
  2159. return x.Collection
  2160. }
  2161. return ""
  2162. }
  2163. func (x *VolumeEcShardsDeleteRequest) GetShardIds() []uint32 {
  2164. if x != nil {
  2165. return x.ShardIds
  2166. }
  2167. return nil
  2168. }
  2169. type VolumeEcShardsDeleteResponse struct {
  2170. state protoimpl.MessageState
  2171. sizeCache protoimpl.SizeCache
  2172. unknownFields protoimpl.UnknownFields
  2173. }
  2174. func (x *VolumeEcShardsDeleteResponse) Reset() {
  2175. *x = VolumeEcShardsDeleteResponse{}
  2176. if protoimpl.UnsafeEnabled {
  2177. mi := &file_volume_server_proto_msgTypes[49]
  2178. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2179. ms.StoreMessageInfo(mi)
  2180. }
  2181. }
  2182. func (x *VolumeEcShardsDeleteResponse) String() string {
  2183. return protoimpl.X.MessageStringOf(x)
  2184. }
  2185. func (*VolumeEcShardsDeleteResponse) ProtoMessage() {}
  2186. func (x *VolumeEcShardsDeleteResponse) ProtoReflect() protoreflect.Message {
  2187. mi := &file_volume_server_proto_msgTypes[49]
  2188. if protoimpl.UnsafeEnabled && x != nil {
  2189. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2190. if ms.LoadMessageInfo() == nil {
  2191. ms.StoreMessageInfo(mi)
  2192. }
  2193. return ms
  2194. }
  2195. return mi.MessageOf(x)
  2196. }
  2197. // Deprecated: Use VolumeEcShardsDeleteResponse.ProtoReflect.Descriptor instead.
  2198. func (*VolumeEcShardsDeleteResponse) Descriptor() ([]byte, []int) {
  2199. return file_volume_server_proto_rawDescGZIP(), []int{49}
  2200. }
  2201. type VolumeEcShardsMountRequest struct {
  2202. state protoimpl.MessageState
  2203. sizeCache protoimpl.SizeCache
  2204. unknownFields protoimpl.UnknownFields
  2205. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2206. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2207. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2208. }
  2209. func (x *VolumeEcShardsMountRequest) Reset() {
  2210. *x = VolumeEcShardsMountRequest{}
  2211. if protoimpl.UnsafeEnabled {
  2212. mi := &file_volume_server_proto_msgTypes[50]
  2213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2214. ms.StoreMessageInfo(mi)
  2215. }
  2216. }
  2217. func (x *VolumeEcShardsMountRequest) String() string {
  2218. return protoimpl.X.MessageStringOf(x)
  2219. }
  2220. func (*VolumeEcShardsMountRequest) ProtoMessage() {}
  2221. func (x *VolumeEcShardsMountRequest) ProtoReflect() protoreflect.Message {
  2222. mi := &file_volume_server_proto_msgTypes[50]
  2223. if protoimpl.UnsafeEnabled && x != nil {
  2224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2225. if ms.LoadMessageInfo() == nil {
  2226. ms.StoreMessageInfo(mi)
  2227. }
  2228. return ms
  2229. }
  2230. return mi.MessageOf(x)
  2231. }
  2232. // Deprecated: Use VolumeEcShardsMountRequest.ProtoReflect.Descriptor instead.
  2233. func (*VolumeEcShardsMountRequest) Descriptor() ([]byte, []int) {
  2234. return file_volume_server_proto_rawDescGZIP(), []int{50}
  2235. }
  2236. func (x *VolumeEcShardsMountRequest) GetVolumeId() uint32 {
  2237. if x != nil {
  2238. return x.VolumeId
  2239. }
  2240. return 0
  2241. }
  2242. func (x *VolumeEcShardsMountRequest) GetCollection() string {
  2243. if x != nil {
  2244. return x.Collection
  2245. }
  2246. return ""
  2247. }
  2248. func (x *VolumeEcShardsMountRequest) GetShardIds() []uint32 {
  2249. if x != nil {
  2250. return x.ShardIds
  2251. }
  2252. return nil
  2253. }
  2254. type VolumeEcShardsMountResponse struct {
  2255. state protoimpl.MessageState
  2256. sizeCache protoimpl.SizeCache
  2257. unknownFields protoimpl.UnknownFields
  2258. }
  2259. func (x *VolumeEcShardsMountResponse) Reset() {
  2260. *x = VolumeEcShardsMountResponse{}
  2261. if protoimpl.UnsafeEnabled {
  2262. mi := &file_volume_server_proto_msgTypes[51]
  2263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2264. ms.StoreMessageInfo(mi)
  2265. }
  2266. }
  2267. func (x *VolumeEcShardsMountResponse) String() string {
  2268. return protoimpl.X.MessageStringOf(x)
  2269. }
  2270. func (*VolumeEcShardsMountResponse) ProtoMessage() {}
  2271. func (x *VolumeEcShardsMountResponse) ProtoReflect() protoreflect.Message {
  2272. mi := &file_volume_server_proto_msgTypes[51]
  2273. if protoimpl.UnsafeEnabled && x != nil {
  2274. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2275. if ms.LoadMessageInfo() == nil {
  2276. ms.StoreMessageInfo(mi)
  2277. }
  2278. return ms
  2279. }
  2280. return mi.MessageOf(x)
  2281. }
  2282. // Deprecated: Use VolumeEcShardsMountResponse.ProtoReflect.Descriptor instead.
  2283. func (*VolumeEcShardsMountResponse) Descriptor() ([]byte, []int) {
  2284. return file_volume_server_proto_rawDescGZIP(), []int{51}
  2285. }
  2286. type VolumeEcShardsUnmountRequest struct {
  2287. state protoimpl.MessageState
  2288. sizeCache protoimpl.SizeCache
  2289. unknownFields protoimpl.UnknownFields
  2290. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2291. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2292. }
  2293. func (x *VolumeEcShardsUnmountRequest) Reset() {
  2294. *x = VolumeEcShardsUnmountRequest{}
  2295. if protoimpl.UnsafeEnabled {
  2296. mi := &file_volume_server_proto_msgTypes[52]
  2297. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2298. ms.StoreMessageInfo(mi)
  2299. }
  2300. }
  2301. func (x *VolumeEcShardsUnmountRequest) String() string {
  2302. return protoimpl.X.MessageStringOf(x)
  2303. }
  2304. func (*VolumeEcShardsUnmountRequest) ProtoMessage() {}
  2305. func (x *VolumeEcShardsUnmountRequest) ProtoReflect() protoreflect.Message {
  2306. mi := &file_volume_server_proto_msgTypes[52]
  2307. if protoimpl.UnsafeEnabled && x != nil {
  2308. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2309. if ms.LoadMessageInfo() == nil {
  2310. ms.StoreMessageInfo(mi)
  2311. }
  2312. return ms
  2313. }
  2314. return mi.MessageOf(x)
  2315. }
  2316. // Deprecated: Use VolumeEcShardsUnmountRequest.ProtoReflect.Descriptor instead.
  2317. func (*VolumeEcShardsUnmountRequest) Descriptor() ([]byte, []int) {
  2318. return file_volume_server_proto_rawDescGZIP(), []int{52}
  2319. }
  2320. func (x *VolumeEcShardsUnmountRequest) GetVolumeId() uint32 {
  2321. if x != nil {
  2322. return x.VolumeId
  2323. }
  2324. return 0
  2325. }
  2326. func (x *VolumeEcShardsUnmountRequest) GetShardIds() []uint32 {
  2327. if x != nil {
  2328. return x.ShardIds
  2329. }
  2330. return nil
  2331. }
  2332. type VolumeEcShardsUnmountResponse struct {
  2333. state protoimpl.MessageState
  2334. sizeCache protoimpl.SizeCache
  2335. unknownFields protoimpl.UnknownFields
  2336. }
  2337. func (x *VolumeEcShardsUnmountResponse) Reset() {
  2338. *x = VolumeEcShardsUnmountResponse{}
  2339. if protoimpl.UnsafeEnabled {
  2340. mi := &file_volume_server_proto_msgTypes[53]
  2341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2342. ms.StoreMessageInfo(mi)
  2343. }
  2344. }
  2345. func (x *VolumeEcShardsUnmountResponse) String() string {
  2346. return protoimpl.X.MessageStringOf(x)
  2347. }
  2348. func (*VolumeEcShardsUnmountResponse) ProtoMessage() {}
  2349. func (x *VolumeEcShardsUnmountResponse) ProtoReflect() protoreflect.Message {
  2350. mi := &file_volume_server_proto_msgTypes[53]
  2351. if protoimpl.UnsafeEnabled && x != nil {
  2352. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2353. if ms.LoadMessageInfo() == nil {
  2354. ms.StoreMessageInfo(mi)
  2355. }
  2356. return ms
  2357. }
  2358. return mi.MessageOf(x)
  2359. }
  2360. // Deprecated: Use VolumeEcShardsUnmountResponse.ProtoReflect.Descriptor instead.
  2361. func (*VolumeEcShardsUnmountResponse) Descriptor() ([]byte, []int) {
  2362. return file_volume_server_proto_rawDescGZIP(), []int{53}
  2363. }
  2364. type VolumeEcShardReadRequest struct {
  2365. state protoimpl.MessageState
  2366. sizeCache protoimpl.SizeCache
  2367. unknownFields protoimpl.UnknownFields
  2368. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2369. ShardId uint32 `protobuf:"varint,2,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"`
  2370. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
  2371. Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  2372. FileKey uint64 `protobuf:"varint,5,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2373. }
  2374. func (x *VolumeEcShardReadRequest) Reset() {
  2375. *x = VolumeEcShardReadRequest{}
  2376. if protoimpl.UnsafeEnabled {
  2377. mi := &file_volume_server_proto_msgTypes[54]
  2378. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2379. ms.StoreMessageInfo(mi)
  2380. }
  2381. }
  2382. func (x *VolumeEcShardReadRequest) String() string {
  2383. return protoimpl.X.MessageStringOf(x)
  2384. }
  2385. func (*VolumeEcShardReadRequest) ProtoMessage() {}
  2386. func (x *VolumeEcShardReadRequest) ProtoReflect() protoreflect.Message {
  2387. mi := &file_volume_server_proto_msgTypes[54]
  2388. if protoimpl.UnsafeEnabled && x != nil {
  2389. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2390. if ms.LoadMessageInfo() == nil {
  2391. ms.StoreMessageInfo(mi)
  2392. }
  2393. return ms
  2394. }
  2395. return mi.MessageOf(x)
  2396. }
  2397. // Deprecated: Use VolumeEcShardReadRequest.ProtoReflect.Descriptor instead.
  2398. func (*VolumeEcShardReadRequest) Descriptor() ([]byte, []int) {
  2399. return file_volume_server_proto_rawDescGZIP(), []int{54}
  2400. }
  2401. func (x *VolumeEcShardReadRequest) GetVolumeId() uint32 {
  2402. if x != nil {
  2403. return x.VolumeId
  2404. }
  2405. return 0
  2406. }
  2407. func (x *VolumeEcShardReadRequest) GetShardId() uint32 {
  2408. if x != nil {
  2409. return x.ShardId
  2410. }
  2411. return 0
  2412. }
  2413. func (x *VolumeEcShardReadRequest) GetOffset() int64 {
  2414. if x != nil {
  2415. return x.Offset
  2416. }
  2417. return 0
  2418. }
  2419. func (x *VolumeEcShardReadRequest) GetSize() int64 {
  2420. if x != nil {
  2421. return x.Size
  2422. }
  2423. return 0
  2424. }
  2425. func (x *VolumeEcShardReadRequest) GetFileKey() uint64 {
  2426. if x != nil {
  2427. return x.FileKey
  2428. }
  2429. return 0
  2430. }
  2431. type VolumeEcShardReadResponse struct {
  2432. state protoimpl.MessageState
  2433. sizeCache protoimpl.SizeCache
  2434. unknownFields protoimpl.UnknownFields
  2435. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  2436. IsDeleted bool `protobuf:"varint,2,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
  2437. }
  2438. func (x *VolumeEcShardReadResponse) Reset() {
  2439. *x = VolumeEcShardReadResponse{}
  2440. if protoimpl.UnsafeEnabled {
  2441. mi := &file_volume_server_proto_msgTypes[55]
  2442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2443. ms.StoreMessageInfo(mi)
  2444. }
  2445. }
  2446. func (x *VolumeEcShardReadResponse) String() string {
  2447. return protoimpl.X.MessageStringOf(x)
  2448. }
  2449. func (*VolumeEcShardReadResponse) ProtoMessage() {}
  2450. func (x *VolumeEcShardReadResponse) ProtoReflect() protoreflect.Message {
  2451. mi := &file_volume_server_proto_msgTypes[55]
  2452. if protoimpl.UnsafeEnabled && x != nil {
  2453. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2454. if ms.LoadMessageInfo() == nil {
  2455. ms.StoreMessageInfo(mi)
  2456. }
  2457. return ms
  2458. }
  2459. return mi.MessageOf(x)
  2460. }
  2461. // Deprecated: Use VolumeEcShardReadResponse.ProtoReflect.Descriptor instead.
  2462. func (*VolumeEcShardReadResponse) Descriptor() ([]byte, []int) {
  2463. return file_volume_server_proto_rawDescGZIP(), []int{55}
  2464. }
  2465. func (x *VolumeEcShardReadResponse) GetData() []byte {
  2466. if x != nil {
  2467. return x.Data
  2468. }
  2469. return nil
  2470. }
  2471. func (x *VolumeEcShardReadResponse) GetIsDeleted() bool {
  2472. if x != nil {
  2473. return x.IsDeleted
  2474. }
  2475. return false
  2476. }
  2477. type VolumeEcBlobDeleteRequest struct {
  2478. state protoimpl.MessageState
  2479. sizeCache protoimpl.SizeCache
  2480. unknownFields protoimpl.UnknownFields
  2481. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2482. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2483. FileKey uint64 `protobuf:"varint,3,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2484. Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
  2485. }
  2486. func (x *VolumeEcBlobDeleteRequest) Reset() {
  2487. *x = VolumeEcBlobDeleteRequest{}
  2488. if protoimpl.UnsafeEnabled {
  2489. mi := &file_volume_server_proto_msgTypes[56]
  2490. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2491. ms.StoreMessageInfo(mi)
  2492. }
  2493. }
  2494. func (x *VolumeEcBlobDeleteRequest) String() string {
  2495. return protoimpl.X.MessageStringOf(x)
  2496. }
  2497. func (*VolumeEcBlobDeleteRequest) ProtoMessage() {}
  2498. func (x *VolumeEcBlobDeleteRequest) ProtoReflect() protoreflect.Message {
  2499. mi := &file_volume_server_proto_msgTypes[56]
  2500. if protoimpl.UnsafeEnabled && x != nil {
  2501. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2502. if ms.LoadMessageInfo() == nil {
  2503. ms.StoreMessageInfo(mi)
  2504. }
  2505. return ms
  2506. }
  2507. return mi.MessageOf(x)
  2508. }
  2509. // Deprecated: Use VolumeEcBlobDeleteRequest.ProtoReflect.Descriptor instead.
  2510. func (*VolumeEcBlobDeleteRequest) Descriptor() ([]byte, []int) {
  2511. return file_volume_server_proto_rawDescGZIP(), []int{56}
  2512. }
  2513. func (x *VolumeEcBlobDeleteRequest) GetVolumeId() uint32 {
  2514. if x != nil {
  2515. return x.VolumeId
  2516. }
  2517. return 0
  2518. }
  2519. func (x *VolumeEcBlobDeleteRequest) GetCollection() string {
  2520. if x != nil {
  2521. return x.Collection
  2522. }
  2523. return ""
  2524. }
  2525. func (x *VolumeEcBlobDeleteRequest) GetFileKey() uint64 {
  2526. if x != nil {
  2527. return x.FileKey
  2528. }
  2529. return 0
  2530. }
  2531. func (x *VolumeEcBlobDeleteRequest) GetVersion() uint32 {
  2532. if x != nil {
  2533. return x.Version
  2534. }
  2535. return 0
  2536. }
  2537. type VolumeEcBlobDeleteResponse struct {
  2538. state protoimpl.MessageState
  2539. sizeCache protoimpl.SizeCache
  2540. unknownFields protoimpl.UnknownFields
  2541. }
  2542. func (x *VolumeEcBlobDeleteResponse) Reset() {
  2543. *x = VolumeEcBlobDeleteResponse{}
  2544. if protoimpl.UnsafeEnabled {
  2545. mi := &file_volume_server_proto_msgTypes[57]
  2546. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2547. ms.StoreMessageInfo(mi)
  2548. }
  2549. }
  2550. func (x *VolumeEcBlobDeleteResponse) String() string {
  2551. return protoimpl.X.MessageStringOf(x)
  2552. }
  2553. func (*VolumeEcBlobDeleteResponse) ProtoMessage() {}
  2554. func (x *VolumeEcBlobDeleteResponse) ProtoReflect() protoreflect.Message {
  2555. mi := &file_volume_server_proto_msgTypes[57]
  2556. if protoimpl.UnsafeEnabled && x != nil {
  2557. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2558. if ms.LoadMessageInfo() == nil {
  2559. ms.StoreMessageInfo(mi)
  2560. }
  2561. return ms
  2562. }
  2563. return mi.MessageOf(x)
  2564. }
  2565. // Deprecated: Use VolumeEcBlobDeleteResponse.ProtoReflect.Descriptor instead.
  2566. func (*VolumeEcBlobDeleteResponse) Descriptor() ([]byte, []int) {
  2567. return file_volume_server_proto_rawDescGZIP(), []int{57}
  2568. }
  2569. type VolumeEcShardsToVolumeRequest struct {
  2570. state protoimpl.MessageState
  2571. sizeCache protoimpl.SizeCache
  2572. unknownFields protoimpl.UnknownFields
  2573. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2574. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2575. }
  2576. func (x *VolumeEcShardsToVolumeRequest) Reset() {
  2577. *x = VolumeEcShardsToVolumeRequest{}
  2578. if protoimpl.UnsafeEnabled {
  2579. mi := &file_volume_server_proto_msgTypes[58]
  2580. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2581. ms.StoreMessageInfo(mi)
  2582. }
  2583. }
  2584. func (x *VolumeEcShardsToVolumeRequest) String() string {
  2585. return protoimpl.X.MessageStringOf(x)
  2586. }
  2587. func (*VolumeEcShardsToVolumeRequest) ProtoMessage() {}
  2588. func (x *VolumeEcShardsToVolumeRequest) ProtoReflect() protoreflect.Message {
  2589. mi := &file_volume_server_proto_msgTypes[58]
  2590. if protoimpl.UnsafeEnabled && x != nil {
  2591. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2592. if ms.LoadMessageInfo() == nil {
  2593. ms.StoreMessageInfo(mi)
  2594. }
  2595. return ms
  2596. }
  2597. return mi.MessageOf(x)
  2598. }
  2599. // Deprecated: Use VolumeEcShardsToVolumeRequest.ProtoReflect.Descriptor instead.
  2600. func (*VolumeEcShardsToVolumeRequest) Descriptor() ([]byte, []int) {
  2601. return file_volume_server_proto_rawDescGZIP(), []int{58}
  2602. }
  2603. func (x *VolumeEcShardsToVolumeRequest) GetVolumeId() uint32 {
  2604. if x != nil {
  2605. return x.VolumeId
  2606. }
  2607. return 0
  2608. }
  2609. func (x *VolumeEcShardsToVolumeRequest) GetCollection() string {
  2610. if x != nil {
  2611. return x.Collection
  2612. }
  2613. return ""
  2614. }
  2615. type VolumeEcShardsToVolumeResponse struct {
  2616. state protoimpl.MessageState
  2617. sizeCache protoimpl.SizeCache
  2618. unknownFields protoimpl.UnknownFields
  2619. }
  2620. func (x *VolumeEcShardsToVolumeResponse) Reset() {
  2621. *x = VolumeEcShardsToVolumeResponse{}
  2622. if protoimpl.UnsafeEnabled {
  2623. mi := &file_volume_server_proto_msgTypes[59]
  2624. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2625. ms.StoreMessageInfo(mi)
  2626. }
  2627. }
  2628. func (x *VolumeEcShardsToVolumeResponse) String() string {
  2629. return protoimpl.X.MessageStringOf(x)
  2630. }
  2631. func (*VolumeEcShardsToVolumeResponse) ProtoMessage() {}
  2632. func (x *VolumeEcShardsToVolumeResponse) ProtoReflect() protoreflect.Message {
  2633. mi := &file_volume_server_proto_msgTypes[59]
  2634. if protoimpl.UnsafeEnabled && x != nil {
  2635. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2636. if ms.LoadMessageInfo() == nil {
  2637. ms.StoreMessageInfo(mi)
  2638. }
  2639. return ms
  2640. }
  2641. return mi.MessageOf(x)
  2642. }
  2643. // Deprecated: Use VolumeEcShardsToVolumeResponse.ProtoReflect.Descriptor instead.
  2644. func (*VolumeEcShardsToVolumeResponse) Descriptor() ([]byte, []int) {
  2645. return file_volume_server_proto_rawDescGZIP(), []int{59}
  2646. }
  2647. type ReadVolumeFileStatusRequest struct {
  2648. state protoimpl.MessageState
  2649. sizeCache protoimpl.SizeCache
  2650. unknownFields protoimpl.UnknownFields
  2651. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2652. }
  2653. func (x *ReadVolumeFileStatusRequest) Reset() {
  2654. *x = ReadVolumeFileStatusRequest{}
  2655. if protoimpl.UnsafeEnabled {
  2656. mi := &file_volume_server_proto_msgTypes[60]
  2657. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2658. ms.StoreMessageInfo(mi)
  2659. }
  2660. }
  2661. func (x *ReadVolumeFileStatusRequest) String() string {
  2662. return protoimpl.X.MessageStringOf(x)
  2663. }
  2664. func (*ReadVolumeFileStatusRequest) ProtoMessage() {}
  2665. func (x *ReadVolumeFileStatusRequest) ProtoReflect() protoreflect.Message {
  2666. mi := &file_volume_server_proto_msgTypes[60]
  2667. if protoimpl.UnsafeEnabled && x != nil {
  2668. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2669. if ms.LoadMessageInfo() == nil {
  2670. ms.StoreMessageInfo(mi)
  2671. }
  2672. return ms
  2673. }
  2674. return mi.MessageOf(x)
  2675. }
  2676. // Deprecated: Use ReadVolumeFileStatusRequest.ProtoReflect.Descriptor instead.
  2677. func (*ReadVolumeFileStatusRequest) Descriptor() ([]byte, []int) {
  2678. return file_volume_server_proto_rawDescGZIP(), []int{60}
  2679. }
  2680. func (x *ReadVolumeFileStatusRequest) GetVolumeId() uint32 {
  2681. if x != nil {
  2682. return x.VolumeId
  2683. }
  2684. return 0
  2685. }
  2686. type ReadVolumeFileStatusResponse struct {
  2687. state protoimpl.MessageState
  2688. sizeCache protoimpl.SizeCache
  2689. unknownFields protoimpl.UnknownFields
  2690. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2691. IdxFileTimestampSeconds uint64 `protobuf:"varint,2,opt,name=idx_file_timestamp_seconds,json=idxFileTimestampSeconds,proto3" json:"idx_file_timestamp_seconds,omitempty"`
  2692. IdxFileSize uint64 `protobuf:"varint,3,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  2693. DatFileTimestampSeconds uint64 `protobuf:"varint,4,opt,name=dat_file_timestamp_seconds,json=datFileTimestampSeconds,proto3" json:"dat_file_timestamp_seconds,omitempty"`
  2694. DatFileSize uint64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"`
  2695. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  2696. CompactionRevision uint32 `protobuf:"varint,7,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  2697. Collection string `protobuf:"bytes,8,opt,name=collection,proto3" json:"collection,omitempty"`
  2698. }
  2699. func (x *ReadVolumeFileStatusResponse) Reset() {
  2700. *x = ReadVolumeFileStatusResponse{}
  2701. if protoimpl.UnsafeEnabled {
  2702. mi := &file_volume_server_proto_msgTypes[61]
  2703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2704. ms.StoreMessageInfo(mi)
  2705. }
  2706. }
  2707. func (x *ReadVolumeFileStatusResponse) String() string {
  2708. return protoimpl.X.MessageStringOf(x)
  2709. }
  2710. func (*ReadVolumeFileStatusResponse) ProtoMessage() {}
  2711. func (x *ReadVolumeFileStatusResponse) ProtoReflect() protoreflect.Message {
  2712. mi := &file_volume_server_proto_msgTypes[61]
  2713. if protoimpl.UnsafeEnabled && x != nil {
  2714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2715. if ms.LoadMessageInfo() == nil {
  2716. ms.StoreMessageInfo(mi)
  2717. }
  2718. return ms
  2719. }
  2720. return mi.MessageOf(x)
  2721. }
  2722. // Deprecated: Use ReadVolumeFileStatusResponse.ProtoReflect.Descriptor instead.
  2723. func (*ReadVolumeFileStatusResponse) Descriptor() ([]byte, []int) {
  2724. return file_volume_server_proto_rawDescGZIP(), []int{61}
  2725. }
  2726. func (x *ReadVolumeFileStatusResponse) GetVolumeId() uint32 {
  2727. if x != nil {
  2728. return x.VolumeId
  2729. }
  2730. return 0
  2731. }
  2732. func (x *ReadVolumeFileStatusResponse) GetIdxFileTimestampSeconds() uint64 {
  2733. if x != nil {
  2734. return x.IdxFileTimestampSeconds
  2735. }
  2736. return 0
  2737. }
  2738. func (x *ReadVolumeFileStatusResponse) GetIdxFileSize() uint64 {
  2739. if x != nil {
  2740. return x.IdxFileSize
  2741. }
  2742. return 0
  2743. }
  2744. func (x *ReadVolumeFileStatusResponse) GetDatFileTimestampSeconds() uint64 {
  2745. if x != nil {
  2746. return x.DatFileTimestampSeconds
  2747. }
  2748. return 0
  2749. }
  2750. func (x *ReadVolumeFileStatusResponse) GetDatFileSize() uint64 {
  2751. if x != nil {
  2752. return x.DatFileSize
  2753. }
  2754. return 0
  2755. }
  2756. func (x *ReadVolumeFileStatusResponse) GetFileCount() uint64 {
  2757. if x != nil {
  2758. return x.FileCount
  2759. }
  2760. return 0
  2761. }
  2762. func (x *ReadVolumeFileStatusResponse) GetCompactionRevision() uint32 {
  2763. if x != nil {
  2764. return x.CompactionRevision
  2765. }
  2766. return 0
  2767. }
  2768. func (x *ReadVolumeFileStatusResponse) GetCollection() string {
  2769. if x != nil {
  2770. return x.Collection
  2771. }
  2772. return ""
  2773. }
  2774. type DiskStatus struct {
  2775. state protoimpl.MessageState
  2776. sizeCache protoimpl.SizeCache
  2777. unknownFields protoimpl.UnknownFields
  2778. Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
  2779. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  2780. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  2781. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  2782. PercentFree float32 `protobuf:"fixed32,5,opt,name=percent_free,json=percentFree,proto3" json:"percent_free,omitempty"`
  2783. PercentUsed float32 `protobuf:"fixed32,6,opt,name=percent_used,json=percentUsed,proto3" json:"percent_used,omitempty"`
  2784. }
  2785. func (x *DiskStatus) Reset() {
  2786. *x = DiskStatus{}
  2787. if protoimpl.UnsafeEnabled {
  2788. mi := &file_volume_server_proto_msgTypes[62]
  2789. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2790. ms.StoreMessageInfo(mi)
  2791. }
  2792. }
  2793. func (x *DiskStatus) String() string {
  2794. return protoimpl.X.MessageStringOf(x)
  2795. }
  2796. func (*DiskStatus) ProtoMessage() {}
  2797. func (x *DiskStatus) ProtoReflect() protoreflect.Message {
  2798. mi := &file_volume_server_proto_msgTypes[62]
  2799. if protoimpl.UnsafeEnabled && x != nil {
  2800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2801. if ms.LoadMessageInfo() == nil {
  2802. ms.StoreMessageInfo(mi)
  2803. }
  2804. return ms
  2805. }
  2806. return mi.MessageOf(x)
  2807. }
  2808. // Deprecated: Use DiskStatus.ProtoReflect.Descriptor instead.
  2809. func (*DiskStatus) Descriptor() ([]byte, []int) {
  2810. return file_volume_server_proto_rawDescGZIP(), []int{62}
  2811. }
  2812. func (x *DiskStatus) GetDir() string {
  2813. if x != nil {
  2814. return x.Dir
  2815. }
  2816. return ""
  2817. }
  2818. func (x *DiskStatus) GetAll() uint64 {
  2819. if x != nil {
  2820. return x.All
  2821. }
  2822. return 0
  2823. }
  2824. func (x *DiskStatus) GetUsed() uint64 {
  2825. if x != nil {
  2826. return x.Used
  2827. }
  2828. return 0
  2829. }
  2830. func (x *DiskStatus) GetFree() uint64 {
  2831. if x != nil {
  2832. return x.Free
  2833. }
  2834. return 0
  2835. }
  2836. func (x *DiskStatus) GetPercentFree() float32 {
  2837. if x != nil {
  2838. return x.PercentFree
  2839. }
  2840. return 0
  2841. }
  2842. func (x *DiskStatus) GetPercentUsed() float32 {
  2843. if x != nil {
  2844. return x.PercentUsed
  2845. }
  2846. return 0
  2847. }
  2848. type MemStatus struct {
  2849. state protoimpl.MessageState
  2850. sizeCache protoimpl.SizeCache
  2851. unknownFields protoimpl.UnknownFields
  2852. Goroutines int32 `protobuf:"varint,1,opt,name=goroutines,proto3" json:"goroutines,omitempty"`
  2853. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  2854. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  2855. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  2856. Self uint64 `protobuf:"varint,5,opt,name=self,proto3" json:"self,omitempty"`
  2857. Heap uint64 `protobuf:"varint,6,opt,name=heap,proto3" json:"heap,omitempty"`
  2858. Stack uint64 `protobuf:"varint,7,opt,name=stack,proto3" json:"stack,omitempty"`
  2859. }
  2860. func (x *MemStatus) Reset() {
  2861. *x = MemStatus{}
  2862. if protoimpl.UnsafeEnabled {
  2863. mi := &file_volume_server_proto_msgTypes[63]
  2864. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2865. ms.StoreMessageInfo(mi)
  2866. }
  2867. }
  2868. func (x *MemStatus) String() string {
  2869. return protoimpl.X.MessageStringOf(x)
  2870. }
  2871. func (*MemStatus) ProtoMessage() {}
  2872. func (x *MemStatus) ProtoReflect() protoreflect.Message {
  2873. mi := &file_volume_server_proto_msgTypes[63]
  2874. if protoimpl.UnsafeEnabled && x != nil {
  2875. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2876. if ms.LoadMessageInfo() == nil {
  2877. ms.StoreMessageInfo(mi)
  2878. }
  2879. return ms
  2880. }
  2881. return mi.MessageOf(x)
  2882. }
  2883. // Deprecated: Use MemStatus.ProtoReflect.Descriptor instead.
  2884. func (*MemStatus) Descriptor() ([]byte, []int) {
  2885. return file_volume_server_proto_rawDescGZIP(), []int{63}
  2886. }
  2887. func (x *MemStatus) GetGoroutines() int32 {
  2888. if x != nil {
  2889. return x.Goroutines
  2890. }
  2891. return 0
  2892. }
  2893. func (x *MemStatus) GetAll() uint64 {
  2894. if x != nil {
  2895. return x.All
  2896. }
  2897. return 0
  2898. }
  2899. func (x *MemStatus) GetUsed() uint64 {
  2900. if x != nil {
  2901. return x.Used
  2902. }
  2903. return 0
  2904. }
  2905. func (x *MemStatus) GetFree() uint64 {
  2906. if x != nil {
  2907. return x.Free
  2908. }
  2909. return 0
  2910. }
  2911. func (x *MemStatus) GetSelf() uint64 {
  2912. if x != nil {
  2913. return x.Self
  2914. }
  2915. return 0
  2916. }
  2917. func (x *MemStatus) GetHeap() uint64 {
  2918. if x != nil {
  2919. return x.Heap
  2920. }
  2921. return 0
  2922. }
  2923. func (x *MemStatus) GetStack() uint64 {
  2924. if x != nil {
  2925. return x.Stack
  2926. }
  2927. return 0
  2928. }
  2929. // tired storage on volume servers
  2930. type RemoteFile struct {
  2931. state protoimpl.MessageState
  2932. sizeCache protoimpl.SizeCache
  2933. unknownFields protoimpl.UnknownFields
  2934. BackendType string `protobuf:"bytes,1,opt,name=backend_type,json=backendType,proto3" json:"backend_type,omitempty"`
  2935. BackendId string `protobuf:"bytes,2,opt,name=backend_id,json=backendId,proto3" json:"backend_id,omitempty"`
  2936. Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
  2937. Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  2938. FileSize uint64 `protobuf:"varint,5,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
  2939. ModifiedTime uint64 `protobuf:"varint,6,opt,name=modified_time,json=modifiedTime,proto3" json:"modified_time,omitempty"`
  2940. Extension string `protobuf:"bytes,7,opt,name=extension,proto3" json:"extension,omitempty"`
  2941. }
  2942. func (x *RemoteFile) Reset() {
  2943. *x = RemoteFile{}
  2944. if protoimpl.UnsafeEnabled {
  2945. mi := &file_volume_server_proto_msgTypes[64]
  2946. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2947. ms.StoreMessageInfo(mi)
  2948. }
  2949. }
  2950. func (x *RemoteFile) String() string {
  2951. return protoimpl.X.MessageStringOf(x)
  2952. }
  2953. func (*RemoteFile) ProtoMessage() {}
  2954. func (x *RemoteFile) ProtoReflect() protoreflect.Message {
  2955. mi := &file_volume_server_proto_msgTypes[64]
  2956. if protoimpl.UnsafeEnabled && x != nil {
  2957. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2958. if ms.LoadMessageInfo() == nil {
  2959. ms.StoreMessageInfo(mi)
  2960. }
  2961. return ms
  2962. }
  2963. return mi.MessageOf(x)
  2964. }
  2965. // Deprecated: Use RemoteFile.ProtoReflect.Descriptor instead.
  2966. func (*RemoteFile) Descriptor() ([]byte, []int) {
  2967. return file_volume_server_proto_rawDescGZIP(), []int{64}
  2968. }
  2969. func (x *RemoteFile) GetBackendType() string {
  2970. if x != nil {
  2971. return x.BackendType
  2972. }
  2973. return ""
  2974. }
  2975. func (x *RemoteFile) GetBackendId() string {
  2976. if x != nil {
  2977. return x.BackendId
  2978. }
  2979. return ""
  2980. }
  2981. func (x *RemoteFile) GetKey() string {
  2982. if x != nil {
  2983. return x.Key
  2984. }
  2985. return ""
  2986. }
  2987. func (x *RemoteFile) GetOffset() uint64 {
  2988. if x != nil {
  2989. return x.Offset
  2990. }
  2991. return 0
  2992. }
  2993. func (x *RemoteFile) GetFileSize() uint64 {
  2994. if x != nil {
  2995. return x.FileSize
  2996. }
  2997. return 0
  2998. }
  2999. func (x *RemoteFile) GetModifiedTime() uint64 {
  3000. if x != nil {
  3001. return x.ModifiedTime
  3002. }
  3003. return 0
  3004. }
  3005. func (x *RemoteFile) GetExtension() string {
  3006. if x != nil {
  3007. return x.Extension
  3008. }
  3009. return ""
  3010. }
  3011. type VolumeInfo struct {
  3012. state protoimpl.MessageState
  3013. sizeCache protoimpl.SizeCache
  3014. unknownFields protoimpl.UnknownFields
  3015. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
  3016. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
  3017. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  3018. }
  3019. func (x *VolumeInfo) Reset() {
  3020. *x = VolumeInfo{}
  3021. if protoimpl.UnsafeEnabled {
  3022. mi := &file_volume_server_proto_msgTypes[65]
  3023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3024. ms.StoreMessageInfo(mi)
  3025. }
  3026. }
  3027. func (x *VolumeInfo) String() string {
  3028. return protoimpl.X.MessageStringOf(x)
  3029. }
  3030. func (*VolumeInfo) ProtoMessage() {}
  3031. func (x *VolumeInfo) ProtoReflect() protoreflect.Message {
  3032. mi := &file_volume_server_proto_msgTypes[65]
  3033. if protoimpl.UnsafeEnabled && x != nil {
  3034. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3035. if ms.LoadMessageInfo() == nil {
  3036. ms.StoreMessageInfo(mi)
  3037. }
  3038. return ms
  3039. }
  3040. return mi.MessageOf(x)
  3041. }
  3042. // Deprecated: Use VolumeInfo.ProtoReflect.Descriptor instead.
  3043. func (*VolumeInfo) Descriptor() ([]byte, []int) {
  3044. return file_volume_server_proto_rawDescGZIP(), []int{65}
  3045. }
  3046. func (x *VolumeInfo) GetFiles() []*RemoteFile {
  3047. if x != nil {
  3048. return x.Files
  3049. }
  3050. return nil
  3051. }
  3052. func (x *VolumeInfo) GetVersion() uint32 {
  3053. if x != nil {
  3054. return x.Version
  3055. }
  3056. return 0
  3057. }
  3058. func (x *VolumeInfo) GetReplication() string {
  3059. if x != nil {
  3060. return x.Replication
  3061. }
  3062. return ""
  3063. }
  3064. type VolumeTierMoveDatToRemoteRequest struct {
  3065. state protoimpl.MessageState
  3066. sizeCache protoimpl.SizeCache
  3067. unknownFields protoimpl.UnknownFields
  3068. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3069. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3070. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName,proto3" json:"destination_backend_name,omitempty"`
  3071. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile,proto3" json:"keep_local_dat_file,omitempty"`
  3072. }
  3073. func (x *VolumeTierMoveDatToRemoteRequest) Reset() {
  3074. *x = VolumeTierMoveDatToRemoteRequest{}
  3075. if protoimpl.UnsafeEnabled {
  3076. mi := &file_volume_server_proto_msgTypes[66]
  3077. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3078. ms.StoreMessageInfo(mi)
  3079. }
  3080. }
  3081. func (x *VolumeTierMoveDatToRemoteRequest) String() string {
  3082. return protoimpl.X.MessageStringOf(x)
  3083. }
  3084. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  3085. func (x *VolumeTierMoveDatToRemoteRequest) ProtoReflect() protoreflect.Message {
  3086. mi := &file_volume_server_proto_msgTypes[66]
  3087. if protoimpl.UnsafeEnabled && x != nil {
  3088. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3089. if ms.LoadMessageInfo() == nil {
  3090. ms.StoreMessageInfo(mi)
  3091. }
  3092. return ms
  3093. }
  3094. return mi.MessageOf(x)
  3095. }
  3096. // Deprecated: Use VolumeTierMoveDatToRemoteRequest.ProtoReflect.Descriptor instead.
  3097. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  3098. return file_volume_server_proto_rawDescGZIP(), []int{66}
  3099. }
  3100. func (x *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  3101. if x != nil {
  3102. return x.VolumeId
  3103. }
  3104. return 0
  3105. }
  3106. func (x *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  3107. if x != nil {
  3108. return x.Collection
  3109. }
  3110. return ""
  3111. }
  3112. func (x *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  3113. if x != nil {
  3114. return x.DestinationBackendName
  3115. }
  3116. return ""
  3117. }
  3118. func (x *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  3119. if x != nil {
  3120. return x.KeepLocalDatFile
  3121. }
  3122. return false
  3123. }
  3124. type VolumeTierMoveDatToRemoteResponse struct {
  3125. state protoimpl.MessageState
  3126. sizeCache protoimpl.SizeCache
  3127. unknownFields protoimpl.UnknownFields
  3128. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3129. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3130. }
  3131. func (x *VolumeTierMoveDatToRemoteResponse) Reset() {
  3132. *x = VolumeTierMoveDatToRemoteResponse{}
  3133. if protoimpl.UnsafeEnabled {
  3134. mi := &file_volume_server_proto_msgTypes[67]
  3135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3136. ms.StoreMessageInfo(mi)
  3137. }
  3138. }
  3139. func (x *VolumeTierMoveDatToRemoteResponse) String() string {
  3140. return protoimpl.X.MessageStringOf(x)
  3141. }
  3142. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  3143. func (x *VolumeTierMoveDatToRemoteResponse) ProtoReflect() protoreflect.Message {
  3144. mi := &file_volume_server_proto_msgTypes[67]
  3145. if protoimpl.UnsafeEnabled && x != nil {
  3146. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3147. if ms.LoadMessageInfo() == nil {
  3148. ms.StoreMessageInfo(mi)
  3149. }
  3150. return ms
  3151. }
  3152. return mi.MessageOf(x)
  3153. }
  3154. // Deprecated: Use VolumeTierMoveDatToRemoteResponse.ProtoReflect.Descriptor instead.
  3155. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  3156. return file_volume_server_proto_rawDescGZIP(), []int{67}
  3157. }
  3158. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  3159. if x != nil {
  3160. return x.Processed
  3161. }
  3162. return 0
  3163. }
  3164. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  3165. if x != nil {
  3166. return x.ProcessedPercentage
  3167. }
  3168. return 0
  3169. }
  3170. type VolumeTierMoveDatFromRemoteRequest struct {
  3171. state protoimpl.MessageState
  3172. sizeCache protoimpl.SizeCache
  3173. unknownFields protoimpl.UnknownFields
  3174. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3175. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3176. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile,proto3" json:"keep_remote_dat_file,omitempty"`
  3177. }
  3178. func (x *VolumeTierMoveDatFromRemoteRequest) Reset() {
  3179. *x = VolumeTierMoveDatFromRemoteRequest{}
  3180. if protoimpl.UnsafeEnabled {
  3181. mi := &file_volume_server_proto_msgTypes[68]
  3182. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3183. ms.StoreMessageInfo(mi)
  3184. }
  3185. }
  3186. func (x *VolumeTierMoveDatFromRemoteRequest) String() string {
  3187. return protoimpl.X.MessageStringOf(x)
  3188. }
  3189. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  3190. func (x *VolumeTierMoveDatFromRemoteRequest) ProtoReflect() protoreflect.Message {
  3191. mi := &file_volume_server_proto_msgTypes[68]
  3192. if protoimpl.UnsafeEnabled && x != nil {
  3193. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3194. if ms.LoadMessageInfo() == nil {
  3195. ms.StoreMessageInfo(mi)
  3196. }
  3197. return ms
  3198. }
  3199. return mi.MessageOf(x)
  3200. }
  3201. // Deprecated: Use VolumeTierMoveDatFromRemoteRequest.ProtoReflect.Descriptor instead.
  3202. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  3203. return file_volume_server_proto_rawDescGZIP(), []int{68}
  3204. }
  3205. func (x *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  3206. if x != nil {
  3207. return x.VolumeId
  3208. }
  3209. return 0
  3210. }
  3211. func (x *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  3212. if x != nil {
  3213. return x.Collection
  3214. }
  3215. return ""
  3216. }
  3217. func (x *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  3218. if x != nil {
  3219. return x.KeepRemoteDatFile
  3220. }
  3221. return false
  3222. }
  3223. type VolumeTierMoveDatFromRemoteResponse struct {
  3224. state protoimpl.MessageState
  3225. sizeCache protoimpl.SizeCache
  3226. unknownFields protoimpl.UnknownFields
  3227. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3228. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3229. }
  3230. func (x *VolumeTierMoveDatFromRemoteResponse) Reset() {
  3231. *x = VolumeTierMoveDatFromRemoteResponse{}
  3232. if protoimpl.UnsafeEnabled {
  3233. mi := &file_volume_server_proto_msgTypes[69]
  3234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3235. ms.StoreMessageInfo(mi)
  3236. }
  3237. }
  3238. func (x *VolumeTierMoveDatFromRemoteResponse) String() string {
  3239. return protoimpl.X.MessageStringOf(x)
  3240. }
  3241. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  3242. func (x *VolumeTierMoveDatFromRemoteResponse) ProtoReflect() protoreflect.Message {
  3243. mi := &file_volume_server_proto_msgTypes[69]
  3244. if protoimpl.UnsafeEnabled && x != nil {
  3245. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3246. if ms.LoadMessageInfo() == nil {
  3247. ms.StoreMessageInfo(mi)
  3248. }
  3249. return ms
  3250. }
  3251. return mi.MessageOf(x)
  3252. }
  3253. // Deprecated: Use VolumeTierMoveDatFromRemoteResponse.ProtoReflect.Descriptor instead.
  3254. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  3255. return file_volume_server_proto_rawDescGZIP(), []int{69}
  3256. }
  3257. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  3258. if x != nil {
  3259. return x.Processed
  3260. }
  3261. return 0
  3262. }
  3263. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  3264. if x != nil {
  3265. return x.ProcessedPercentage
  3266. }
  3267. return 0
  3268. }
  3269. type VolumeServerStatusRequest struct {
  3270. state protoimpl.MessageState
  3271. sizeCache protoimpl.SizeCache
  3272. unknownFields protoimpl.UnknownFields
  3273. }
  3274. func (x *VolumeServerStatusRequest) Reset() {
  3275. *x = VolumeServerStatusRequest{}
  3276. if protoimpl.UnsafeEnabled {
  3277. mi := &file_volume_server_proto_msgTypes[70]
  3278. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3279. ms.StoreMessageInfo(mi)
  3280. }
  3281. }
  3282. func (x *VolumeServerStatusRequest) String() string {
  3283. return protoimpl.X.MessageStringOf(x)
  3284. }
  3285. func (*VolumeServerStatusRequest) ProtoMessage() {}
  3286. func (x *VolumeServerStatusRequest) ProtoReflect() protoreflect.Message {
  3287. mi := &file_volume_server_proto_msgTypes[70]
  3288. if protoimpl.UnsafeEnabled && x != nil {
  3289. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3290. if ms.LoadMessageInfo() == nil {
  3291. ms.StoreMessageInfo(mi)
  3292. }
  3293. return ms
  3294. }
  3295. return mi.MessageOf(x)
  3296. }
  3297. // Deprecated: Use VolumeServerStatusRequest.ProtoReflect.Descriptor instead.
  3298. func (*VolumeServerStatusRequest) Descriptor() ([]byte, []int) {
  3299. return file_volume_server_proto_rawDescGZIP(), []int{70}
  3300. }
  3301. type VolumeServerStatusResponse struct {
  3302. state protoimpl.MessageState
  3303. sizeCache protoimpl.SizeCache
  3304. unknownFields protoimpl.UnknownFields
  3305. DiskStatuses []*DiskStatus `protobuf:"bytes,1,rep,name=disk_statuses,json=diskStatuses,proto3" json:"disk_statuses,omitempty"`
  3306. MemoryStatus *MemStatus `protobuf:"bytes,2,opt,name=memory_status,json=memoryStatus,proto3" json:"memory_status,omitempty"`
  3307. }
  3308. func (x *VolumeServerStatusResponse) Reset() {
  3309. *x = VolumeServerStatusResponse{}
  3310. if protoimpl.UnsafeEnabled {
  3311. mi := &file_volume_server_proto_msgTypes[71]
  3312. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3313. ms.StoreMessageInfo(mi)
  3314. }
  3315. }
  3316. func (x *VolumeServerStatusResponse) String() string {
  3317. return protoimpl.X.MessageStringOf(x)
  3318. }
  3319. func (*VolumeServerStatusResponse) ProtoMessage() {}
  3320. func (x *VolumeServerStatusResponse) ProtoReflect() protoreflect.Message {
  3321. mi := &file_volume_server_proto_msgTypes[71]
  3322. if protoimpl.UnsafeEnabled && x != nil {
  3323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3324. if ms.LoadMessageInfo() == nil {
  3325. ms.StoreMessageInfo(mi)
  3326. }
  3327. return ms
  3328. }
  3329. return mi.MessageOf(x)
  3330. }
  3331. // Deprecated: Use VolumeServerStatusResponse.ProtoReflect.Descriptor instead.
  3332. func (*VolumeServerStatusResponse) Descriptor() ([]byte, []int) {
  3333. return file_volume_server_proto_rawDescGZIP(), []int{71}
  3334. }
  3335. func (x *VolumeServerStatusResponse) GetDiskStatuses() []*DiskStatus {
  3336. if x != nil {
  3337. return x.DiskStatuses
  3338. }
  3339. return nil
  3340. }
  3341. func (x *VolumeServerStatusResponse) GetMemoryStatus() *MemStatus {
  3342. if x != nil {
  3343. return x.MemoryStatus
  3344. }
  3345. return nil
  3346. }
  3347. type VolumeServerLeaveRequest struct {
  3348. state protoimpl.MessageState
  3349. sizeCache protoimpl.SizeCache
  3350. unknownFields protoimpl.UnknownFields
  3351. }
  3352. func (x *VolumeServerLeaveRequest) Reset() {
  3353. *x = VolumeServerLeaveRequest{}
  3354. if protoimpl.UnsafeEnabled {
  3355. mi := &file_volume_server_proto_msgTypes[72]
  3356. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3357. ms.StoreMessageInfo(mi)
  3358. }
  3359. }
  3360. func (x *VolumeServerLeaveRequest) String() string {
  3361. return protoimpl.X.MessageStringOf(x)
  3362. }
  3363. func (*VolumeServerLeaveRequest) ProtoMessage() {}
  3364. func (x *VolumeServerLeaveRequest) ProtoReflect() protoreflect.Message {
  3365. mi := &file_volume_server_proto_msgTypes[72]
  3366. if protoimpl.UnsafeEnabled && x != nil {
  3367. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3368. if ms.LoadMessageInfo() == nil {
  3369. ms.StoreMessageInfo(mi)
  3370. }
  3371. return ms
  3372. }
  3373. return mi.MessageOf(x)
  3374. }
  3375. // Deprecated: Use VolumeServerLeaveRequest.ProtoReflect.Descriptor instead.
  3376. func (*VolumeServerLeaveRequest) Descriptor() ([]byte, []int) {
  3377. return file_volume_server_proto_rawDescGZIP(), []int{72}
  3378. }
  3379. type VolumeServerLeaveResponse struct {
  3380. state protoimpl.MessageState
  3381. sizeCache protoimpl.SizeCache
  3382. unknownFields protoimpl.UnknownFields
  3383. }
  3384. func (x *VolumeServerLeaveResponse) Reset() {
  3385. *x = VolumeServerLeaveResponse{}
  3386. if protoimpl.UnsafeEnabled {
  3387. mi := &file_volume_server_proto_msgTypes[73]
  3388. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3389. ms.StoreMessageInfo(mi)
  3390. }
  3391. }
  3392. func (x *VolumeServerLeaveResponse) String() string {
  3393. return protoimpl.X.MessageStringOf(x)
  3394. }
  3395. func (*VolumeServerLeaveResponse) ProtoMessage() {}
  3396. func (x *VolumeServerLeaveResponse) ProtoReflect() protoreflect.Message {
  3397. mi := &file_volume_server_proto_msgTypes[73]
  3398. if protoimpl.UnsafeEnabled && x != nil {
  3399. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3400. if ms.LoadMessageInfo() == nil {
  3401. ms.StoreMessageInfo(mi)
  3402. }
  3403. return ms
  3404. }
  3405. return mi.MessageOf(x)
  3406. }
  3407. // Deprecated: Use VolumeServerLeaveResponse.ProtoReflect.Descriptor instead.
  3408. func (*VolumeServerLeaveResponse) Descriptor() ([]byte, []int) {
  3409. return file_volume_server_proto_rawDescGZIP(), []int{73}
  3410. }
  3411. // select on volume servers
  3412. type QueryRequest struct {
  3413. state protoimpl.MessageState
  3414. sizeCache protoimpl.SizeCache
  3415. unknownFields protoimpl.UnknownFields
  3416. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  3417. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  3418. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  3419. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  3420. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  3421. }
  3422. func (x *QueryRequest) Reset() {
  3423. *x = QueryRequest{}
  3424. if protoimpl.UnsafeEnabled {
  3425. mi := &file_volume_server_proto_msgTypes[74]
  3426. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3427. ms.StoreMessageInfo(mi)
  3428. }
  3429. }
  3430. func (x *QueryRequest) String() string {
  3431. return protoimpl.X.MessageStringOf(x)
  3432. }
  3433. func (*QueryRequest) ProtoMessage() {}
  3434. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  3435. mi := &file_volume_server_proto_msgTypes[74]
  3436. if protoimpl.UnsafeEnabled && x != nil {
  3437. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3438. if ms.LoadMessageInfo() == nil {
  3439. ms.StoreMessageInfo(mi)
  3440. }
  3441. return ms
  3442. }
  3443. return mi.MessageOf(x)
  3444. }
  3445. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  3446. func (*QueryRequest) Descriptor() ([]byte, []int) {
  3447. return file_volume_server_proto_rawDescGZIP(), []int{74}
  3448. }
  3449. func (x *QueryRequest) GetSelections() []string {
  3450. if x != nil {
  3451. return x.Selections
  3452. }
  3453. return nil
  3454. }
  3455. func (x *QueryRequest) GetFromFileIds() []string {
  3456. if x != nil {
  3457. return x.FromFileIds
  3458. }
  3459. return nil
  3460. }
  3461. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  3462. if x != nil {
  3463. return x.Filter
  3464. }
  3465. return nil
  3466. }
  3467. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  3468. if x != nil {
  3469. return x.InputSerialization
  3470. }
  3471. return nil
  3472. }
  3473. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  3474. if x != nil {
  3475. return x.OutputSerialization
  3476. }
  3477. return nil
  3478. }
  3479. type QueriedStripe struct {
  3480. state protoimpl.MessageState
  3481. sizeCache protoimpl.SizeCache
  3482. unknownFields protoimpl.UnknownFields
  3483. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  3484. }
  3485. func (x *QueriedStripe) Reset() {
  3486. *x = QueriedStripe{}
  3487. if protoimpl.UnsafeEnabled {
  3488. mi := &file_volume_server_proto_msgTypes[75]
  3489. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3490. ms.StoreMessageInfo(mi)
  3491. }
  3492. }
  3493. func (x *QueriedStripe) String() string {
  3494. return protoimpl.X.MessageStringOf(x)
  3495. }
  3496. func (*QueriedStripe) ProtoMessage() {}
  3497. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  3498. mi := &file_volume_server_proto_msgTypes[75]
  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 QueriedStripe.ProtoReflect.Descriptor instead.
  3509. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  3510. return file_volume_server_proto_rawDescGZIP(), []int{75}
  3511. }
  3512. func (x *QueriedStripe) GetRecords() []byte {
  3513. if x != nil {
  3514. return x.Records
  3515. }
  3516. return nil
  3517. }
  3518. type VolumeNeedleStatusRequest struct {
  3519. state protoimpl.MessageState
  3520. sizeCache protoimpl.SizeCache
  3521. unknownFields protoimpl.UnknownFields
  3522. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3523. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3524. }
  3525. func (x *VolumeNeedleStatusRequest) Reset() {
  3526. *x = VolumeNeedleStatusRequest{}
  3527. if protoimpl.UnsafeEnabled {
  3528. mi := &file_volume_server_proto_msgTypes[76]
  3529. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3530. ms.StoreMessageInfo(mi)
  3531. }
  3532. }
  3533. func (x *VolumeNeedleStatusRequest) String() string {
  3534. return protoimpl.X.MessageStringOf(x)
  3535. }
  3536. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  3537. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  3538. mi := &file_volume_server_proto_msgTypes[76]
  3539. if protoimpl.UnsafeEnabled && x != nil {
  3540. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3541. if ms.LoadMessageInfo() == nil {
  3542. ms.StoreMessageInfo(mi)
  3543. }
  3544. return ms
  3545. }
  3546. return mi.MessageOf(x)
  3547. }
  3548. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  3549. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  3550. return file_volume_server_proto_rawDescGZIP(), []int{76}
  3551. }
  3552. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  3553. if x != nil {
  3554. return x.VolumeId
  3555. }
  3556. return 0
  3557. }
  3558. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  3559. if x != nil {
  3560. return x.NeedleId
  3561. }
  3562. return 0
  3563. }
  3564. type VolumeNeedleStatusResponse struct {
  3565. state protoimpl.MessageState
  3566. sizeCache protoimpl.SizeCache
  3567. unknownFields protoimpl.UnknownFields
  3568. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3569. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  3570. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  3571. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  3572. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  3573. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  3574. }
  3575. func (x *VolumeNeedleStatusResponse) Reset() {
  3576. *x = VolumeNeedleStatusResponse{}
  3577. if protoimpl.UnsafeEnabled {
  3578. mi := &file_volume_server_proto_msgTypes[77]
  3579. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3580. ms.StoreMessageInfo(mi)
  3581. }
  3582. }
  3583. func (x *VolumeNeedleStatusResponse) String() string {
  3584. return protoimpl.X.MessageStringOf(x)
  3585. }
  3586. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  3587. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  3588. mi := &file_volume_server_proto_msgTypes[77]
  3589. if protoimpl.UnsafeEnabled && x != nil {
  3590. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3591. if ms.LoadMessageInfo() == nil {
  3592. ms.StoreMessageInfo(mi)
  3593. }
  3594. return ms
  3595. }
  3596. return mi.MessageOf(x)
  3597. }
  3598. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  3599. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  3600. return file_volume_server_proto_rawDescGZIP(), []int{77}
  3601. }
  3602. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  3603. if x != nil {
  3604. return x.NeedleId
  3605. }
  3606. return 0
  3607. }
  3608. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  3609. if x != nil {
  3610. return x.Cookie
  3611. }
  3612. return 0
  3613. }
  3614. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  3615. if x != nil {
  3616. return x.Size
  3617. }
  3618. return 0
  3619. }
  3620. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  3621. if x != nil {
  3622. return x.LastModified
  3623. }
  3624. return 0
  3625. }
  3626. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  3627. if x != nil {
  3628. return x.Crc
  3629. }
  3630. return 0
  3631. }
  3632. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  3633. if x != nil {
  3634. return x.Ttl
  3635. }
  3636. return ""
  3637. }
  3638. type QueryRequest_Filter struct {
  3639. state protoimpl.MessageState
  3640. sizeCache protoimpl.SizeCache
  3641. unknownFields protoimpl.UnknownFields
  3642. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  3643. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  3644. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  3645. }
  3646. func (x *QueryRequest_Filter) Reset() {
  3647. *x = QueryRequest_Filter{}
  3648. if protoimpl.UnsafeEnabled {
  3649. mi := &file_volume_server_proto_msgTypes[78]
  3650. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3651. ms.StoreMessageInfo(mi)
  3652. }
  3653. }
  3654. func (x *QueryRequest_Filter) String() string {
  3655. return protoimpl.X.MessageStringOf(x)
  3656. }
  3657. func (*QueryRequest_Filter) ProtoMessage() {}
  3658. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  3659. mi := &file_volume_server_proto_msgTypes[78]
  3660. if protoimpl.UnsafeEnabled && x != nil {
  3661. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3662. if ms.LoadMessageInfo() == nil {
  3663. ms.StoreMessageInfo(mi)
  3664. }
  3665. return ms
  3666. }
  3667. return mi.MessageOf(x)
  3668. }
  3669. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  3670. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  3671. return file_volume_server_proto_rawDescGZIP(), []int{74, 0}
  3672. }
  3673. func (x *QueryRequest_Filter) GetField() string {
  3674. if x != nil {
  3675. return x.Field
  3676. }
  3677. return ""
  3678. }
  3679. func (x *QueryRequest_Filter) GetOperand() string {
  3680. if x != nil {
  3681. return x.Operand
  3682. }
  3683. return ""
  3684. }
  3685. func (x *QueryRequest_Filter) GetValue() string {
  3686. if x != nil {
  3687. return x.Value
  3688. }
  3689. return ""
  3690. }
  3691. type QueryRequest_InputSerialization struct {
  3692. state protoimpl.MessageState
  3693. sizeCache protoimpl.SizeCache
  3694. unknownFields protoimpl.UnknownFields
  3695. // NONE | GZIP | BZIP2
  3696. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  3697. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  3698. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  3699. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  3700. }
  3701. func (x *QueryRequest_InputSerialization) Reset() {
  3702. *x = QueryRequest_InputSerialization{}
  3703. if protoimpl.UnsafeEnabled {
  3704. mi := &file_volume_server_proto_msgTypes[79]
  3705. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3706. ms.StoreMessageInfo(mi)
  3707. }
  3708. }
  3709. func (x *QueryRequest_InputSerialization) String() string {
  3710. return protoimpl.X.MessageStringOf(x)
  3711. }
  3712. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  3713. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  3714. mi := &file_volume_server_proto_msgTypes[79]
  3715. if protoimpl.UnsafeEnabled && x != nil {
  3716. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3717. if ms.LoadMessageInfo() == nil {
  3718. ms.StoreMessageInfo(mi)
  3719. }
  3720. return ms
  3721. }
  3722. return mi.MessageOf(x)
  3723. }
  3724. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  3725. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  3726. return file_volume_server_proto_rawDescGZIP(), []int{74, 1}
  3727. }
  3728. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  3729. if x != nil {
  3730. return x.CompressionType
  3731. }
  3732. return ""
  3733. }
  3734. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  3735. if x != nil {
  3736. return x.CsvInput
  3737. }
  3738. return nil
  3739. }
  3740. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  3741. if x != nil {
  3742. return x.JsonInput
  3743. }
  3744. return nil
  3745. }
  3746. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  3747. if x != nil {
  3748. return x.ParquetInput
  3749. }
  3750. return nil
  3751. }
  3752. type QueryRequest_OutputSerialization struct {
  3753. state protoimpl.MessageState
  3754. sizeCache protoimpl.SizeCache
  3755. unknownFields protoimpl.UnknownFields
  3756. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  3757. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  3758. }
  3759. func (x *QueryRequest_OutputSerialization) Reset() {
  3760. *x = QueryRequest_OutputSerialization{}
  3761. if protoimpl.UnsafeEnabled {
  3762. mi := &file_volume_server_proto_msgTypes[80]
  3763. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3764. ms.StoreMessageInfo(mi)
  3765. }
  3766. }
  3767. func (x *QueryRequest_OutputSerialization) String() string {
  3768. return protoimpl.X.MessageStringOf(x)
  3769. }
  3770. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  3771. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  3772. mi := &file_volume_server_proto_msgTypes[80]
  3773. if protoimpl.UnsafeEnabled && x != nil {
  3774. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3775. if ms.LoadMessageInfo() == nil {
  3776. ms.StoreMessageInfo(mi)
  3777. }
  3778. return ms
  3779. }
  3780. return mi.MessageOf(x)
  3781. }
  3782. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  3783. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  3784. return file_volume_server_proto_rawDescGZIP(), []int{74, 2}
  3785. }
  3786. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  3787. if x != nil {
  3788. return x.CsvOutput
  3789. }
  3790. return nil
  3791. }
  3792. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  3793. if x != nil {
  3794. return x.JsonOutput
  3795. }
  3796. return nil
  3797. }
  3798. type QueryRequest_InputSerialization_CSVInput struct {
  3799. state protoimpl.MessageState
  3800. sizeCache protoimpl.SizeCache
  3801. unknownFields protoimpl.UnknownFields
  3802. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  3803. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  3804. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  3805. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer,proto3" json:"quote_charactoer,omitempty"` // Default: "
  3806. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  3807. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  3808. // If true, records might contain record delimiters within quote characters
  3809. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  3810. }
  3811. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  3812. *x = QueryRequest_InputSerialization_CSVInput{}
  3813. if protoimpl.UnsafeEnabled {
  3814. mi := &file_volume_server_proto_msgTypes[81]
  3815. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3816. ms.StoreMessageInfo(mi)
  3817. }
  3818. }
  3819. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  3820. return protoimpl.X.MessageStringOf(x)
  3821. }
  3822. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  3823. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  3824. mi := &file_volume_server_proto_msgTypes[81]
  3825. if protoimpl.UnsafeEnabled && x != nil {
  3826. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3827. if ms.LoadMessageInfo() == nil {
  3828. ms.StoreMessageInfo(mi)
  3829. }
  3830. return ms
  3831. }
  3832. return mi.MessageOf(x)
  3833. }
  3834. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  3835. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  3836. return file_volume_server_proto_rawDescGZIP(), []int{74, 1, 0}
  3837. }
  3838. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  3839. if x != nil {
  3840. return x.FileHeaderInfo
  3841. }
  3842. return ""
  3843. }
  3844. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  3845. if x != nil {
  3846. return x.RecordDelimiter
  3847. }
  3848. return ""
  3849. }
  3850. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  3851. if x != nil {
  3852. return x.FieldDelimiter
  3853. }
  3854. return ""
  3855. }
  3856. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharactoer() string {
  3857. if x != nil {
  3858. return x.QuoteCharactoer
  3859. }
  3860. return ""
  3861. }
  3862. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  3863. if x != nil {
  3864. return x.QuoteEscapeCharacter
  3865. }
  3866. return ""
  3867. }
  3868. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  3869. if x != nil {
  3870. return x.Comments
  3871. }
  3872. return ""
  3873. }
  3874. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  3875. if x != nil {
  3876. return x.AllowQuotedRecordDelimiter
  3877. }
  3878. return false
  3879. }
  3880. type QueryRequest_InputSerialization_JSONInput struct {
  3881. state protoimpl.MessageState
  3882. sizeCache protoimpl.SizeCache
  3883. unknownFields protoimpl.UnknownFields
  3884. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  3885. }
  3886. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  3887. *x = QueryRequest_InputSerialization_JSONInput{}
  3888. if protoimpl.UnsafeEnabled {
  3889. mi := &file_volume_server_proto_msgTypes[82]
  3890. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3891. ms.StoreMessageInfo(mi)
  3892. }
  3893. }
  3894. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  3895. return protoimpl.X.MessageStringOf(x)
  3896. }
  3897. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  3898. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  3899. mi := &file_volume_server_proto_msgTypes[82]
  3900. if protoimpl.UnsafeEnabled && x != nil {
  3901. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3902. if ms.LoadMessageInfo() == nil {
  3903. ms.StoreMessageInfo(mi)
  3904. }
  3905. return ms
  3906. }
  3907. return mi.MessageOf(x)
  3908. }
  3909. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  3910. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  3911. return file_volume_server_proto_rawDescGZIP(), []int{74, 1, 1}
  3912. }
  3913. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  3914. if x != nil {
  3915. return x.Type
  3916. }
  3917. return ""
  3918. }
  3919. type QueryRequest_InputSerialization_ParquetInput struct {
  3920. state protoimpl.MessageState
  3921. sizeCache protoimpl.SizeCache
  3922. unknownFields protoimpl.UnknownFields
  3923. }
  3924. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  3925. *x = QueryRequest_InputSerialization_ParquetInput{}
  3926. if protoimpl.UnsafeEnabled {
  3927. mi := &file_volume_server_proto_msgTypes[83]
  3928. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3929. ms.StoreMessageInfo(mi)
  3930. }
  3931. }
  3932. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  3933. return protoimpl.X.MessageStringOf(x)
  3934. }
  3935. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  3936. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  3937. mi := &file_volume_server_proto_msgTypes[83]
  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 QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  3948. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  3949. return file_volume_server_proto_rawDescGZIP(), []int{74, 1, 2}
  3950. }
  3951. type QueryRequest_OutputSerialization_CSVOutput struct {
  3952. state protoimpl.MessageState
  3953. sizeCache protoimpl.SizeCache
  3954. unknownFields protoimpl.UnknownFields
  3955. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  3956. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  3957. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  3958. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer,proto3" json:"quote_charactoer,omitempty"` // Default: "
  3959. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  3960. }
  3961. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  3962. *x = QueryRequest_OutputSerialization_CSVOutput{}
  3963. if protoimpl.UnsafeEnabled {
  3964. mi := &file_volume_server_proto_msgTypes[84]
  3965. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3966. ms.StoreMessageInfo(mi)
  3967. }
  3968. }
  3969. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  3970. return protoimpl.X.MessageStringOf(x)
  3971. }
  3972. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  3973. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  3974. mi := &file_volume_server_proto_msgTypes[84]
  3975. if protoimpl.UnsafeEnabled && x != nil {
  3976. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3977. if ms.LoadMessageInfo() == nil {
  3978. ms.StoreMessageInfo(mi)
  3979. }
  3980. return ms
  3981. }
  3982. return mi.MessageOf(x)
  3983. }
  3984. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  3985. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  3986. return file_volume_server_proto_rawDescGZIP(), []int{74, 2, 0}
  3987. }
  3988. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  3989. if x != nil {
  3990. return x.QuoteFields
  3991. }
  3992. return ""
  3993. }
  3994. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  3995. if x != nil {
  3996. return x.RecordDelimiter
  3997. }
  3998. return ""
  3999. }
  4000. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  4001. if x != nil {
  4002. return x.FieldDelimiter
  4003. }
  4004. return ""
  4005. }
  4006. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharactoer() string {
  4007. if x != nil {
  4008. return x.QuoteCharactoer
  4009. }
  4010. return ""
  4011. }
  4012. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  4013. if x != nil {
  4014. return x.QuoteEscapeCharacter
  4015. }
  4016. return ""
  4017. }
  4018. type QueryRequest_OutputSerialization_JSONOutput struct {
  4019. state protoimpl.MessageState
  4020. sizeCache protoimpl.SizeCache
  4021. unknownFields protoimpl.UnknownFields
  4022. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  4023. }
  4024. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  4025. *x = QueryRequest_OutputSerialization_JSONOutput{}
  4026. if protoimpl.UnsafeEnabled {
  4027. mi := &file_volume_server_proto_msgTypes[85]
  4028. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4029. ms.StoreMessageInfo(mi)
  4030. }
  4031. }
  4032. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  4033. return protoimpl.X.MessageStringOf(x)
  4034. }
  4035. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  4036. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  4037. mi := &file_volume_server_proto_msgTypes[85]
  4038. if protoimpl.UnsafeEnabled && x != nil {
  4039. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4040. if ms.LoadMessageInfo() == nil {
  4041. ms.StoreMessageInfo(mi)
  4042. }
  4043. return ms
  4044. }
  4045. return mi.MessageOf(x)
  4046. }
  4047. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  4048. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  4049. return file_volume_server_proto_rawDescGZIP(), []int{74, 2, 1}
  4050. }
  4051. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  4052. if x != nil {
  4053. return x.RecordDelimiter
  4054. }
  4055. return ""
  4056. }
  4057. var File_volume_server_proto protoreflect.FileDescriptor
  4058. var file_volume_server_proto_rawDesc = []byte{
  4059. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  4060. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4061. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68,
  4062. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a,
  4063. 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
  4064. 0x07, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70,
  4065. 0x5f, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20,
  4066. 0x01, 0x28, 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43,
  4067. 0x68, 0x65, 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c,
  4068. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72,
  4069. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76,
  4070. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4071. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65,
  4072. 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  4073. 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69,
  4074. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12,
  4075. 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  4076. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72,
  4077. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a,
  4078. 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a,
  4079. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
  4080. 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45,
  4081. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  4082. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4083. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4084. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a,
  4085. 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65,
  4086. 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61,
  4087. 0x72, 0x62, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28,
  4088. 0x01, 0x52, 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22,
  4089. 0x5b, 0x0a, 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  4090. 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a,
  4091. 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  4092. 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72,
  4093. 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  4094. 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x1d, 0x0a, 0x1b,
  4095. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70,
  4096. 0x61, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56,
  4097. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69,
  4098. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4099. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4100. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  4101. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4102. 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f,
  4103. 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61,
  4104. 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x39, 0x0a, 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  4105. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75,
  4106. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  4107. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  4108. 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4109. 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4110. 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4111. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f,
  4112. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  4113. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65,
  4114. 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
  4115. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xde, 0x01, 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63,
  4116. 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4117. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4118. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  4119. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  4120. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a,
  4121. 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01,
  4122. 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12,
  4123. 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04,
  4124. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  4125. 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  4126. 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61,
  4127. 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20,
  4128. 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61,
  4129. 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x22, 0x18, 0x0a, 0x16, 0x41, 0x6c, 0x6c, 0x6f, 0x63,
  4130. 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4131. 0x65, 0x22, 0x36, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53,
  4132. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  4133. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4134. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb, 0x01, 0x0a, 0x18, 0x56, 0x6f,
  4135. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  4136. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4137. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4138. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4139. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4140. 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
  4141. 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  4142. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x05, 0x20, 0x01,
  4143. 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x69, 0x6c, 0x5f,
  4144. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x74, 0x61,
  4145. 0x69, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70,
  4146. 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01,
  4147. 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x76, 0x69, 0x73,
  4148. 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f,
  4149. 0x73, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46,
  4150. 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4151. 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79,
  4152. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4153. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  4154. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73,
  4155. 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x22,
  4156. 0x42, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65,
  4157. 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  4158. 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  4159. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74,
  4160. 0x65, 0x6e, 0x74, 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75,
  4161. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4162. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4163. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4164. 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x33, 0x0a,
  4165. 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
  4166. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4167. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4168. 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f,
  4169. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x32, 0x0a, 0x13, 0x56,
  4170. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  4171. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4172. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22,
  4173. 0x16, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  4174. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4175. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x71,
  4176. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4177. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4178. 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52,
  4179. 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4180. 0x38, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69,
  4181. 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  4182. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4183. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c,
  4184. 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52,
  4185. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4186. 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4187. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  4188. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20,
  4189. 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  4190. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  4191. 0x22, 0x2f, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  4192. 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65,
  4193. 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f,
  4194. 0x72, 0x22, 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  4195. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4196. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4197. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  4198. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a,
  4199. 0x0c, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20,
  4200. 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22,
  4201. 0xae, 0x01, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65,
  4202. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4203. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4204. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4205. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4206. 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  4207. 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
  4208. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28,
  4209. 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
  4210. 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  4211. 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65,
  4212. 0x22, 0x3f, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65,
  4213. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x61,
  4214. 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
  4215. 0x04, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e,
  4216. 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65,
  4217. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4218. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4219. 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4220. 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69,
  4221. 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
  4222. 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76,
  4223. 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66,
  4224. 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70,
  4225. 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4226. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  4227. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f,
  4228. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73,
  4229. 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f,
  4230. 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e,
  4231. 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18,
  4232. 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65,
  4233. 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x35, 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79,
  4234. 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c,
  4235. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
  4236. 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22,
  4237. 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65,
  4238. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4239. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4240. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63,
  4241. 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63,
  4242. 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  4243. 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  4244. 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65,
  4245. 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4246. 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  4247. 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61,
  4248. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  4249. 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  4250. 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65,
  4251. 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x6c,
  4252. 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
  4253. 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x22, 0xb7, 0x01, 0x0a,
  4254. 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69,
  4255. 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4256. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4257. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65,
  4258. 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65,
  4259. 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f,
  4260. 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
  4261. 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63,
  4262. 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x76,
  4263. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01,
  4264. 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4265. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4266. 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
  4267. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4268. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65,
  4269. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4270. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4271. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4272. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4273. 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  4274. 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  4275. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4276. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71,
  4277. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4278. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4279. 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  4280. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4281. 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  4282. 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  4283. 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x73, 0x68,
  4284. 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72,
  4285. 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x8b,
  4286. 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4287. 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  4288. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4289. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c,
  4290. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  4291. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61,
  4292. 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68,
  4293. 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65,
  4294. 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63,
  4295. 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f,
  4296. 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05,
  4297. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61,
  4298. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x6a,
  4299. 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70,
  4300. 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79,
  4301. 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52,
  4302. 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56, 0x69, 0x66, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x1c, 0x0a, 0x1a,
  4303. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f,
  4304. 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x77, 0x0a, 0x1b, 0x56, 0x6f,
  4305. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65,
  4306. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4307. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4308. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4309. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  4310. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f,
  4311. 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64,
  4312. 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  4313. 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4314. 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  4315. 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4316. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  4317. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e,
  4318. 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  4319. 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b,
  4320. 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  4321. 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x56,
  4322. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75,
  4323. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0x0a, 0x1c, 0x56, 0x6f,
  4324. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f,
  4325. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4326. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4327. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64,
  4328. 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72,
  4329. 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4330. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
  4331. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x99, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4332. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  4333. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4334. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  4335. 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  4336. 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
  4337. 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
  4338. 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  4339. 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b,
  4340. 0x65, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65,
  4341. 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  4342. 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12,
  4343. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61,
  4344. 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64,
  4345. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  4346. 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c,
  4347. 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4348. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4349. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  4350. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  4351. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08,
  4352. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07,
  4353. 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
  4354. 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
  4355. 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f,
  4356. 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4357. 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4358. 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4359. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4360. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  4361. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  4362. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a,
  4363. 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54,
  4364. 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4365. 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c,
  4366. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4367. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4368. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xed, 0x02, 0x0a, 0x1c,
  4369. 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74,
  4370. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  4371. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4372. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x3b, 0x0a, 0x1a, 0x69, 0x64, 0x78,
  4373. 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f,
  4374. 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x69,
  4375. 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53,
  4376. 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69,
  4377. 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69,
  4378. 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3b, 0x0a, 0x1a, 0x64, 0x61,
  4379. 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
  4380. 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17,
  4381. 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
  4382. 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66,
  4383. 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
  4384. 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66,
  4385. 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52,
  4386. 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f,
  4387. 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f,
  4388. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  4389. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  4390. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
  4391. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x9e, 0x01, 0x0a, 0x0a,
  4392. 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x64, 0x69,
  4393. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x64, 0x69, 0x72, 0x12, 0x10, 0x0a, 0x03,
  4394. 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12,
  4395. 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73,
  4396. 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  4397. 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
  4398. 0x74, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65,
  4399. 0x72, 0x63, 0x65, 0x6e, 0x74, 0x46, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72,
  4400. 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x02, 0x52,
  4401. 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x64, 0x22, 0xa3, 0x01, 0x0a,
  4402. 0x09, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x6f,
  4403. 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a,
  4404. 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c,
  4405. 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04,
  4406. 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64,
  4407. 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04,
  4408. 0x66, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01,
  4409. 0x28, 0x04, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x65, 0x61, 0x70,
  4410. 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x68, 0x65, 0x61, 0x70, 0x12, 0x14, 0x0a, 0x05,
  4411. 0x73, 0x74, 0x61, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x74, 0x61,
  4412. 0x63, 0x6b, 0x22, 0xd8, 0x01, 0x0a, 0x0a, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c,
  4413. 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70,
  4414. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  4415. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f,
  4416. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  4417. 0x64, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  4418. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  4419. 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1b, 0x0a,
  4420. 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  4421. 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f,
  4422. 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  4423. 0x04, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12,
  4424. 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01,
  4425. 0x28, 0x09, 0x52, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x7c, 0x0a,
  4426. 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a, 0x05, 0x66,
  4427. 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c,
  4428. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65,
  4429. 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12,
  4430. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d,
  4431. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70,
  4432. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  4433. 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xc8, 0x01, 0x0a, 0x20,
  4434. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61,
  4435. 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4436. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4437. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  4438. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  4439. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x0a,
  4440. 0x18, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x63,
  4441. 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  4442. 0x16, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x63, 0x6b,
  4443. 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b, 0x65, 0x65, 0x70, 0x5f,
  4444. 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04,
  4445. 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x44,
  4446. 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4447. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d,
  4448. 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70,
  4449. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  4450. 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f,
  4451. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
  4452. 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65,
  4453. 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x92, 0x01, 0x0a, 0x22,
  4454. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61,
  4455. 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  4456. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4457. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  4458. 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  4459. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  4460. 0x2f, 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x64,
  4461. 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x6b,
  4462. 0x65, 0x65, 0x70, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65,
  4463. 0x22, 0x75, 0x0a, 0x23, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  4464. 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52,
  4465. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65,
  4466. 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63,
  4467. 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
  4468. 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
  4469. 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72,
  4470. 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4471. 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  4472. 0x75, 0x65, 0x73, 0x74, 0x22, 0xa1, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  4473. 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4474. 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74,
  4475. 0x75, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c,
  4476. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x69,
  4477. 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69, 0x73, 0x6b, 0x53, 0x74,
  4478. 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79,
  4479. 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e,
  4480. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4481. 0x2e, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x6d, 0x65, 0x6d, 0x6f,
  4482. 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x1a, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75,
  4483. 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71,
  4484. 0x75, 0x65, 0x73, 0x74, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  4485. 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4486. 0x65, 0x22, 0xf8, 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  4487. 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  4488. 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4489. 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f,
  4490. 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x66, 0x72, 0x6f, 0x6d, 0x46,
  4491. 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
  4492. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4493. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  4494. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06, 0x66,
  4495. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f, 0x73,
  4496. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
  4497. 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4498. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  4499. 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  4500. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69,
  4501. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x14, 0x6f, 0x75, 0x74,
  4502. 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  4503. 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4504. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79,
  4505. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65,
  4506. 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6f, 0x75, 0x74,
  4507. 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  4508. 0x1a, 0x4e, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69,
  4509. 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64,
  4510. 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  4511. 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
  4512. 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  4513. 0x1a, 0xd5, 0x05, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  4514. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x72,
  4515. 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  4516. 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79,
  4517. 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18,
  4518. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4519. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65,
  4520. 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  4521. 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75,
  4522. 0x74, 0x52, 0x08, 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x5a, 0x0a, 0x0a, 0x6a,
  4523. 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  4524. 0x3b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4525. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  4526. 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  4527. 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x09, 0x6a, 0x73,
  4528. 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x71, 0x75,
  4529. 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e,
  4530. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4531. 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49,
  4532. 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  4533. 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x0c,
  4534. 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xc8, 0x02, 0x0a,
  4535. 0x08, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x69, 0x6c,
  4536. 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20,
  4537. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x49,
  4538. 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65,
  4539. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72,
  4540. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27,
  4541. 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65,
  4542. 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65,
  4543. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x71, 0x75, 0x6f, 0x74, 0x65,
  4544. 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28,
  4545. 0x09, 0x52, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f,
  4546. 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61,
  4547. 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01,
  4548. 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43,
  4549. 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d,
  4550. 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d,
  4551. 0x65, 0x6e, 0x74, 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x71, 0x75,
  4552. 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69,
  4553. 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a, 0x61, 0x6c, 0x6c,
  4554. 0x6f, 0x77, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65,
  4555. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a, 0x53, 0x4f, 0x4e, 0x49,
  4556. 0x6e, 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
  4557. 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c, 0x50, 0x61, 0x72, 0x71,
  4558. 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xf1, 0x03, 0x0a, 0x13, 0x4f, 0x75, 0x74,
  4559. 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  4560. 0x12, 0x5b, 0x0a, 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x02,
  4561. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4562. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71,
  4563. 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  4564. 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70,
  4565. 0x75, 0x74, 0x52, 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x5e, 0x0a,
  4566. 0x0b, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01,
  4567. 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4568. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  4569. 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  4570. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75,
  4571. 0x74, 0x52, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x1a, 0xe3, 0x01,
  4572. 0x0a, 0x09, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x71,
  4573. 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
  4574. 0x09, 0x52, 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x29,
  4575. 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  4576. 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64,
  4577. 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65,
  4578. 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
  4579. 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  4580. 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72,
  4581. 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x71, 0x75,
  4582. 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x12, 0x34, 0x0a,
  4583. 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68,
  4584. 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71,
  4585. 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63,
  4586. 0x74, 0x65, 0x72, 0x1a, 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75,
  4587. 0x74, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69,
  4588. 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63,
  4589. 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x22, 0x29, 0x0a, 0x0d,
  4590. 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x12, 0x18, 0x0a,
  4591. 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07,
  4592. 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4593. 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  4594. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4595. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4596. 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02,
  4597. 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x22, 0xae,
  4598. 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53,
  4599. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a,
  4600. 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
  4601. 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f,
  4602. 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b,
  4603. 0x69, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
  4604. 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d,
  4605. 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c,
  4606. 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63,
  4607. 0x72, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10, 0x0a,
  4608. 0x03, 0x74, 0x74, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x32,
  4609. 0xd8, 0x1f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
  4610. 0x12, 0x5c, 0x0a, 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12,
  4611. 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4612. 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4613. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4614. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  4615. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e,
  4616. 0x0a, 0x11, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68,
  4617. 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4618. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  4619. 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  4620. 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4621. 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  4622. 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
  4623. 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  4624. 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4625. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  4626. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75,
  4627. 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4628. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  4629. 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  4630. 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  4631. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c,
  4632. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61,
  4633. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
  4634. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4635. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75,
  4636. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73,
  4637. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75,
  4638. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x12, 0x2c,
  4639. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4640. 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c,
  4641. 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76,
  4642. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4643. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61,
  4644. 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a,
  4645. 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4646. 0x6e, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  4647. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
  4648. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76,
  4649. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4650. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4651. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x41, 0x6c,
  4652. 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x27, 0x2e, 0x76,
  4653. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4654. 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  4655. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4656. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74,
  4657. 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4658. 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53,
  4659. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4660. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  4661. 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4662. 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4663. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74,
  4664. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7c,
  4665. 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e,
  4666. 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4667. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4668. 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79,
  4669. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4670. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4671. 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79,
  4672. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x5c, 0x0a, 0x0b,
  4673. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24, 0x2e, 0x76, 0x6f,
  4674. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4675. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4676. 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  4677. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74,
  4678. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x62, 0x0a, 0x0d, 0x56, 0x6f,
  4679. 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x2e, 0x76, 0x6f,
  4680. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4681. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75,
  4682. 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4683. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d,
  4684. 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f,
  4685. 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x25,
  4686. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4687. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4688. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4689. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44,
  4690. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  4691. 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61,
  4692. 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4693. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  4694. 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  4695. 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4696. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b,
  4697. 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  4698. 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b,
  4699. 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4700. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4701. 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,
  4702. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4703. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  4704. 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4705. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  4706. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4707. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4708. 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  4709. 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4710. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66,
  4711. 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  4712. 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  4713. 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4714. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  4715. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4716. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4717. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  4718. 0x12, 0x59, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x23,
  4719. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4720. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75,
  4721. 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4722. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70,
  4723. 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x14, 0x52,
  4724. 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61,
  4725. 0x74, 0x75, 0x73, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4726. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4727. 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  4728. 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4729. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4730. 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  4731. 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x08, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65,
  4732. 0x12, 0x21, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4733. 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75,
  4734. 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4735. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52,
  4736. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x6d, 0x0a, 0x10, 0x56,
  4737. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12,
  4738. 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4739. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e,
  4740. 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c,
  4741. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  4742. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65,
  4743. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f,
  4744. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72,
  4745. 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4746. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65,
  4747. 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e,
  4748. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4749. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69,
  4750. 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a,
  4751. 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47,
  4752. 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4753. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4754. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74,
  4755. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4756. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4757. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61,
  4758. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15,
  4759. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65,
  4760. 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4761. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  4762. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65,
  4763. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4764. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  4765. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65,
  4766. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75,
  4767. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2b,
  4768. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4769. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  4770. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f,
  4771. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4772. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70,
  4773. 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x14, 0x56,
  4774. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c,
  4775. 0x65, 0x74, 0x65, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4776. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  4777. 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  4778. 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4779. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  4780. 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  4781. 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4782. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f,
  4783. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4784. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75,
  4785. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4786. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4787. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74,
  4788. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f,
  4789. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f,
  4790. 0x75, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4791. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  4792. 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75,
  4793. 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4794. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  4795. 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
  4796. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x70, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4797. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x12, 0x2a, 0x2e, 0x76, 0x6f,
  4798. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4799. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64,
  4800. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4801. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4802. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70,
  4803. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75,
  4804. 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2b,
  4805. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4806. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65,
  4807. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f,
  4808. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4809. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4810. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56,
  4811. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56,
  4812. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4813. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  4814. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52,
  4815. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4816. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4817. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4818. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x88, 0x01, 0x0a, 0x19, 0x56,
  4819. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74,
  4820. 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4821. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  4822. 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52,
  4823. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x76,
  4824. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4825. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61,
  4826. 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4827. 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x8e, 0x01, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4828. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52,
  4829. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4830. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  4831. 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65,
  4832. 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x76, 0x6f,
  4833. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4834. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74,
  4835. 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  4836. 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4837. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76,
  4838. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4839. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74,
  4840. 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4841. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4842. 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  4843. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x6f, 0x6c,
  4844. 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x12, 0x2a,
  4845. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4846. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65,
  4847. 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c,
  4848. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  4849. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52,
  4850. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x51, 0x75, 0x65,
  4851. 0x72, 0x79, 0x12, 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4852. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  4853. 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4854. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72,
  4855. 0x69, 0x70, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4856. 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e,
  4857. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4858. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61,
  4859. 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c,
  4860. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  4861. 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  4862. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x39, 0x5a, 0x37, 0x67, 0x69,
  4863. 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x68, 0x72, 0x69, 0x73, 0x6c, 0x75,
  4864. 0x73, 0x66, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x77, 0x65, 0x65,
  4865. 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4866. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  4867. }
  4868. var (
  4869. file_volume_server_proto_rawDescOnce sync.Once
  4870. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  4871. )
  4872. func file_volume_server_proto_rawDescGZIP() []byte {
  4873. file_volume_server_proto_rawDescOnce.Do(func() {
  4874. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  4875. })
  4876. return file_volume_server_proto_rawDescData
  4877. }
  4878. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 86)
  4879. var file_volume_server_proto_goTypes = []interface{}{
  4880. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  4881. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  4882. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  4883. (*Empty)(nil), // 3: volume_server_pb.Empty
  4884. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  4885. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  4886. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  4887. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  4888. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  4889. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  4890. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  4891. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  4892. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  4893. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  4894. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  4895. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  4896. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  4897. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  4898. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  4899. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  4900. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  4901. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  4902. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  4903. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  4904. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  4905. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  4906. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  4907. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  4908. (*VolumeMarkWritableRequest)(nil), // 28: volume_server_pb.VolumeMarkWritableRequest
  4909. (*VolumeMarkWritableResponse)(nil), // 29: volume_server_pb.VolumeMarkWritableResponse
  4910. (*VolumeConfigureRequest)(nil), // 30: volume_server_pb.VolumeConfigureRequest
  4911. (*VolumeConfigureResponse)(nil), // 31: volume_server_pb.VolumeConfigureResponse
  4912. (*VolumeStatusRequest)(nil), // 32: volume_server_pb.VolumeStatusRequest
  4913. (*VolumeStatusResponse)(nil), // 33: volume_server_pb.VolumeStatusResponse
  4914. (*VolumeCopyRequest)(nil), // 34: volume_server_pb.VolumeCopyRequest
  4915. (*VolumeCopyResponse)(nil), // 35: volume_server_pb.VolumeCopyResponse
  4916. (*CopyFileRequest)(nil), // 36: volume_server_pb.CopyFileRequest
  4917. (*CopyFileResponse)(nil), // 37: volume_server_pb.CopyFileResponse
  4918. (*VolumeTailSenderRequest)(nil), // 38: volume_server_pb.VolumeTailSenderRequest
  4919. (*VolumeTailSenderResponse)(nil), // 39: volume_server_pb.VolumeTailSenderResponse
  4920. (*VolumeTailReceiverRequest)(nil), // 40: volume_server_pb.VolumeTailReceiverRequest
  4921. (*VolumeTailReceiverResponse)(nil), // 41: volume_server_pb.VolumeTailReceiverResponse
  4922. (*VolumeEcShardsGenerateRequest)(nil), // 42: volume_server_pb.VolumeEcShardsGenerateRequest
  4923. (*VolumeEcShardsGenerateResponse)(nil), // 43: volume_server_pb.VolumeEcShardsGenerateResponse
  4924. (*VolumeEcShardsRebuildRequest)(nil), // 44: volume_server_pb.VolumeEcShardsRebuildRequest
  4925. (*VolumeEcShardsRebuildResponse)(nil), // 45: volume_server_pb.VolumeEcShardsRebuildResponse
  4926. (*VolumeEcShardsCopyRequest)(nil), // 46: volume_server_pb.VolumeEcShardsCopyRequest
  4927. (*VolumeEcShardsCopyResponse)(nil), // 47: volume_server_pb.VolumeEcShardsCopyResponse
  4928. (*VolumeEcShardsDeleteRequest)(nil), // 48: volume_server_pb.VolumeEcShardsDeleteRequest
  4929. (*VolumeEcShardsDeleteResponse)(nil), // 49: volume_server_pb.VolumeEcShardsDeleteResponse
  4930. (*VolumeEcShardsMountRequest)(nil), // 50: volume_server_pb.VolumeEcShardsMountRequest
  4931. (*VolumeEcShardsMountResponse)(nil), // 51: volume_server_pb.VolumeEcShardsMountResponse
  4932. (*VolumeEcShardsUnmountRequest)(nil), // 52: volume_server_pb.VolumeEcShardsUnmountRequest
  4933. (*VolumeEcShardsUnmountResponse)(nil), // 53: volume_server_pb.VolumeEcShardsUnmountResponse
  4934. (*VolumeEcShardReadRequest)(nil), // 54: volume_server_pb.VolumeEcShardReadRequest
  4935. (*VolumeEcShardReadResponse)(nil), // 55: volume_server_pb.VolumeEcShardReadResponse
  4936. (*VolumeEcBlobDeleteRequest)(nil), // 56: volume_server_pb.VolumeEcBlobDeleteRequest
  4937. (*VolumeEcBlobDeleteResponse)(nil), // 57: volume_server_pb.VolumeEcBlobDeleteResponse
  4938. (*VolumeEcShardsToVolumeRequest)(nil), // 58: volume_server_pb.VolumeEcShardsToVolumeRequest
  4939. (*VolumeEcShardsToVolumeResponse)(nil), // 59: volume_server_pb.VolumeEcShardsToVolumeResponse
  4940. (*ReadVolumeFileStatusRequest)(nil), // 60: volume_server_pb.ReadVolumeFileStatusRequest
  4941. (*ReadVolumeFileStatusResponse)(nil), // 61: volume_server_pb.ReadVolumeFileStatusResponse
  4942. (*DiskStatus)(nil), // 62: volume_server_pb.DiskStatus
  4943. (*MemStatus)(nil), // 63: volume_server_pb.MemStatus
  4944. (*RemoteFile)(nil), // 64: volume_server_pb.RemoteFile
  4945. (*VolumeInfo)(nil), // 65: volume_server_pb.VolumeInfo
  4946. (*VolumeTierMoveDatToRemoteRequest)(nil), // 66: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  4947. (*VolumeTierMoveDatToRemoteResponse)(nil), // 67: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  4948. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 68: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  4949. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 69: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  4950. (*VolumeServerStatusRequest)(nil), // 70: volume_server_pb.VolumeServerStatusRequest
  4951. (*VolumeServerStatusResponse)(nil), // 71: volume_server_pb.VolumeServerStatusResponse
  4952. (*VolumeServerLeaveRequest)(nil), // 72: volume_server_pb.VolumeServerLeaveRequest
  4953. (*VolumeServerLeaveResponse)(nil), // 73: volume_server_pb.VolumeServerLeaveResponse
  4954. (*QueryRequest)(nil), // 74: volume_server_pb.QueryRequest
  4955. (*QueriedStripe)(nil), // 75: volume_server_pb.QueriedStripe
  4956. (*VolumeNeedleStatusRequest)(nil), // 76: volume_server_pb.VolumeNeedleStatusRequest
  4957. (*VolumeNeedleStatusResponse)(nil), // 77: volume_server_pb.VolumeNeedleStatusResponse
  4958. (*QueryRequest_Filter)(nil), // 78: volume_server_pb.QueryRequest.Filter
  4959. (*QueryRequest_InputSerialization)(nil), // 79: volume_server_pb.QueryRequest.InputSerialization
  4960. (*QueryRequest_OutputSerialization)(nil), // 80: volume_server_pb.QueryRequest.OutputSerialization
  4961. (*QueryRequest_InputSerialization_CSVInput)(nil), // 81: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  4962. (*QueryRequest_InputSerialization_JSONInput)(nil), // 82: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  4963. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 83: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  4964. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 84: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  4965. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 85: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  4966. }
  4967. var file_volume_server_proto_depIdxs = []int32{
  4968. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  4969. 64, // 1: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  4970. 62, // 2: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  4971. 63, // 3: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  4972. 78, // 4: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  4973. 79, // 5: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  4974. 80, // 6: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  4975. 81, // 7: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  4976. 82, // 8: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  4977. 83, // 9: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  4978. 84, // 10: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  4979. 85, // 11: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  4980. 0, // 12: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  4981. 4, // 13: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  4982. 6, // 14: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  4983. 8, // 15: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  4984. 10, // 16: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  4985. 12, // 17: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  4986. 14, // 18: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  4987. 16, // 19: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  4988. 18, // 20: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  4989. 20, // 21: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  4990. 22, // 22: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  4991. 24, // 23: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  4992. 26, // 24: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  4993. 28, // 25: volume_server_pb.VolumeServer.VolumeMarkWritable:input_type -> volume_server_pb.VolumeMarkWritableRequest
  4994. 30, // 26: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  4995. 32, // 27: volume_server_pb.VolumeServer.VolumeStatus:input_type -> volume_server_pb.VolumeStatusRequest
  4996. 34, // 28: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  4997. 60, // 29: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  4998. 36, // 30: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  4999. 38, // 31: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  5000. 40, // 32: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  5001. 42, // 33: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  5002. 44, // 34: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  5003. 46, // 35: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  5004. 48, // 36: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  5005. 50, // 37: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  5006. 52, // 38: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  5007. 54, // 39: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  5008. 56, // 40: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  5009. 58, // 41: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  5010. 66, // 42: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  5011. 68, // 43: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  5012. 70, // 44: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  5013. 72, // 45: volume_server_pb.VolumeServer.VolumeServerLeave:input_type -> volume_server_pb.VolumeServerLeaveRequest
  5014. 74, // 46: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  5015. 76, // 47: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  5016. 1, // 48: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  5017. 5, // 49: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  5018. 7, // 50: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  5019. 9, // 51: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  5020. 11, // 52: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  5021. 13, // 53: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  5022. 15, // 54: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  5023. 17, // 55: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  5024. 19, // 56: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  5025. 21, // 57: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  5026. 23, // 58: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  5027. 25, // 59: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  5028. 27, // 60: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  5029. 29, // 61: volume_server_pb.VolumeServer.VolumeMarkWritable:output_type -> volume_server_pb.VolumeMarkWritableResponse
  5030. 31, // 62: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  5031. 33, // 63: volume_server_pb.VolumeServer.VolumeStatus:output_type -> volume_server_pb.VolumeStatusResponse
  5032. 35, // 64: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  5033. 61, // 65: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  5034. 37, // 66: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  5035. 39, // 67: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  5036. 41, // 68: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  5037. 43, // 69: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  5038. 45, // 70: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  5039. 47, // 71: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  5040. 49, // 72: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  5041. 51, // 73: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  5042. 53, // 74: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  5043. 55, // 75: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  5044. 57, // 76: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  5045. 59, // 77: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  5046. 67, // 78: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  5047. 69, // 79: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  5048. 71, // 80: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  5049. 73, // 81: volume_server_pb.VolumeServer.VolumeServerLeave:output_type -> volume_server_pb.VolumeServerLeaveResponse
  5050. 75, // 82: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  5051. 77, // 83: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  5052. 48, // [48:84] is the sub-list for method output_type
  5053. 12, // [12:48] is the sub-list for method input_type
  5054. 12, // [12:12] is the sub-list for extension type_name
  5055. 12, // [12:12] is the sub-list for extension extendee
  5056. 0, // [0:12] is the sub-list for field type_name
  5057. }
  5058. func init() { file_volume_server_proto_init() }
  5059. func file_volume_server_proto_init() {
  5060. if File_volume_server_proto != nil {
  5061. return
  5062. }
  5063. if !protoimpl.UnsafeEnabled {
  5064. file_volume_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  5065. switch v := v.(*BatchDeleteRequest); i {
  5066. case 0:
  5067. return &v.state
  5068. case 1:
  5069. return &v.sizeCache
  5070. case 2:
  5071. return &v.unknownFields
  5072. default:
  5073. return nil
  5074. }
  5075. }
  5076. file_volume_server_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  5077. switch v := v.(*BatchDeleteResponse); i {
  5078. case 0:
  5079. return &v.state
  5080. case 1:
  5081. return &v.sizeCache
  5082. case 2:
  5083. return &v.unknownFields
  5084. default:
  5085. return nil
  5086. }
  5087. }
  5088. file_volume_server_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  5089. switch v := v.(*DeleteResult); i {
  5090. case 0:
  5091. return &v.state
  5092. case 1:
  5093. return &v.sizeCache
  5094. case 2:
  5095. return &v.unknownFields
  5096. default:
  5097. return nil
  5098. }
  5099. }
  5100. file_volume_server_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  5101. switch v := v.(*Empty); i {
  5102. case 0:
  5103. return &v.state
  5104. case 1:
  5105. return &v.sizeCache
  5106. case 2:
  5107. return &v.unknownFields
  5108. default:
  5109. return nil
  5110. }
  5111. }
  5112. file_volume_server_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  5113. switch v := v.(*VacuumVolumeCheckRequest); i {
  5114. case 0:
  5115. return &v.state
  5116. case 1:
  5117. return &v.sizeCache
  5118. case 2:
  5119. return &v.unknownFields
  5120. default:
  5121. return nil
  5122. }
  5123. }
  5124. file_volume_server_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  5125. switch v := v.(*VacuumVolumeCheckResponse); i {
  5126. case 0:
  5127. return &v.state
  5128. case 1:
  5129. return &v.sizeCache
  5130. case 2:
  5131. return &v.unknownFields
  5132. default:
  5133. return nil
  5134. }
  5135. }
  5136. file_volume_server_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  5137. switch v := v.(*VacuumVolumeCompactRequest); i {
  5138. case 0:
  5139. return &v.state
  5140. case 1:
  5141. return &v.sizeCache
  5142. case 2:
  5143. return &v.unknownFields
  5144. default:
  5145. return nil
  5146. }
  5147. }
  5148. file_volume_server_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  5149. switch v := v.(*VacuumVolumeCompactResponse); i {
  5150. case 0:
  5151. return &v.state
  5152. case 1:
  5153. return &v.sizeCache
  5154. case 2:
  5155. return &v.unknownFields
  5156. default:
  5157. return nil
  5158. }
  5159. }
  5160. file_volume_server_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  5161. switch v := v.(*VacuumVolumeCommitRequest); i {
  5162. case 0:
  5163. return &v.state
  5164. case 1:
  5165. return &v.sizeCache
  5166. case 2:
  5167. return &v.unknownFields
  5168. default:
  5169. return nil
  5170. }
  5171. }
  5172. file_volume_server_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  5173. switch v := v.(*VacuumVolumeCommitResponse); i {
  5174. case 0:
  5175. return &v.state
  5176. case 1:
  5177. return &v.sizeCache
  5178. case 2:
  5179. return &v.unknownFields
  5180. default:
  5181. return nil
  5182. }
  5183. }
  5184. file_volume_server_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  5185. switch v := v.(*VacuumVolumeCleanupRequest); i {
  5186. case 0:
  5187. return &v.state
  5188. case 1:
  5189. return &v.sizeCache
  5190. case 2:
  5191. return &v.unknownFields
  5192. default:
  5193. return nil
  5194. }
  5195. }
  5196. file_volume_server_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  5197. switch v := v.(*VacuumVolumeCleanupResponse); i {
  5198. case 0:
  5199. return &v.state
  5200. case 1:
  5201. return &v.sizeCache
  5202. case 2:
  5203. return &v.unknownFields
  5204. default:
  5205. return nil
  5206. }
  5207. }
  5208. file_volume_server_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  5209. switch v := v.(*DeleteCollectionRequest); i {
  5210. case 0:
  5211. return &v.state
  5212. case 1:
  5213. return &v.sizeCache
  5214. case 2:
  5215. return &v.unknownFields
  5216. default:
  5217. return nil
  5218. }
  5219. }
  5220. file_volume_server_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  5221. switch v := v.(*DeleteCollectionResponse); i {
  5222. case 0:
  5223. return &v.state
  5224. case 1:
  5225. return &v.sizeCache
  5226. case 2:
  5227. return &v.unknownFields
  5228. default:
  5229. return nil
  5230. }
  5231. }
  5232. file_volume_server_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  5233. switch v := v.(*AllocateVolumeRequest); i {
  5234. case 0:
  5235. return &v.state
  5236. case 1:
  5237. return &v.sizeCache
  5238. case 2:
  5239. return &v.unknownFields
  5240. default:
  5241. return nil
  5242. }
  5243. }
  5244. file_volume_server_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  5245. switch v := v.(*AllocateVolumeResponse); i {
  5246. case 0:
  5247. return &v.state
  5248. case 1:
  5249. return &v.sizeCache
  5250. case 2:
  5251. return &v.unknownFields
  5252. default:
  5253. return nil
  5254. }
  5255. }
  5256. file_volume_server_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  5257. switch v := v.(*VolumeSyncStatusRequest); i {
  5258. case 0:
  5259. return &v.state
  5260. case 1:
  5261. return &v.sizeCache
  5262. case 2:
  5263. return &v.unknownFields
  5264. default:
  5265. return nil
  5266. }
  5267. }
  5268. file_volume_server_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  5269. switch v := v.(*VolumeSyncStatusResponse); i {
  5270. case 0:
  5271. return &v.state
  5272. case 1:
  5273. return &v.sizeCache
  5274. case 2:
  5275. return &v.unknownFields
  5276. default:
  5277. return nil
  5278. }
  5279. }
  5280. file_volume_server_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  5281. switch v := v.(*VolumeIncrementalCopyRequest); i {
  5282. case 0:
  5283. return &v.state
  5284. case 1:
  5285. return &v.sizeCache
  5286. case 2:
  5287. return &v.unknownFields
  5288. default:
  5289. return nil
  5290. }
  5291. }
  5292. file_volume_server_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  5293. switch v := v.(*VolumeIncrementalCopyResponse); i {
  5294. case 0:
  5295. return &v.state
  5296. case 1:
  5297. return &v.sizeCache
  5298. case 2:
  5299. return &v.unknownFields
  5300. default:
  5301. return nil
  5302. }
  5303. }
  5304. file_volume_server_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  5305. switch v := v.(*VolumeMountRequest); i {
  5306. case 0:
  5307. return &v.state
  5308. case 1:
  5309. return &v.sizeCache
  5310. case 2:
  5311. return &v.unknownFields
  5312. default:
  5313. return nil
  5314. }
  5315. }
  5316. file_volume_server_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  5317. switch v := v.(*VolumeMountResponse); i {
  5318. case 0:
  5319. return &v.state
  5320. case 1:
  5321. return &v.sizeCache
  5322. case 2:
  5323. return &v.unknownFields
  5324. default:
  5325. return nil
  5326. }
  5327. }
  5328. file_volume_server_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  5329. switch v := v.(*VolumeUnmountRequest); i {
  5330. case 0:
  5331. return &v.state
  5332. case 1:
  5333. return &v.sizeCache
  5334. case 2:
  5335. return &v.unknownFields
  5336. default:
  5337. return nil
  5338. }
  5339. }
  5340. file_volume_server_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  5341. switch v := v.(*VolumeUnmountResponse); i {
  5342. case 0:
  5343. return &v.state
  5344. case 1:
  5345. return &v.sizeCache
  5346. case 2:
  5347. return &v.unknownFields
  5348. default:
  5349. return nil
  5350. }
  5351. }
  5352. file_volume_server_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  5353. switch v := v.(*VolumeDeleteRequest); i {
  5354. case 0:
  5355. return &v.state
  5356. case 1:
  5357. return &v.sizeCache
  5358. case 2:
  5359. return &v.unknownFields
  5360. default:
  5361. return nil
  5362. }
  5363. }
  5364. file_volume_server_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  5365. switch v := v.(*VolumeDeleteResponse); i {
  5366. case 0:
  5367. return &v.state
  5368. case 1:
  5369. return &v.sizeCache
  5370. case 2:
  5371. return &v.unknownFields
  5372. default:
  5373. return nil
  5374. }
  5375. }
  5376. file_volume_server_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  5377. switch v := v.(*VolumeMarkReadonlyRequest); i {
  5378. case 0:
  5379. return &v.state
  5380. case 1:
  5381. return &v.sizeCache
  5382. case 2:
  5383. return &v.unknownFields
  5384. default:
  5385. return nil
  5386. }
  5387. }
  5388. file_volume_server_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  5389. switch v := v.(*VolumeMarkReadonlyResponse); i {
  5390. case 0:
  5391. return &v.state
  5392. case 1:
  5393. return &v.sizeCache
  5394. case 2:
  5395. return &v.unknownFields
  5396. default:
  5397. return nil
  5398. }
  5399. }
  5400. file_volume_server_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  5401. switch v := v.(*VolumeMarkWritableRequest); i {
  5402. case 0:
  5403. return &v.state
  5404. case 1:
  5405. return &v.sizeCache
  5406. case 2:
  5407. return &v.unknownFields
  5408. default:
  5409. return nil
  5410. }
  5411. }
  5412. file_volume_server_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  5413. switch v := v.(*VolumeMarkWritableResponse); i {
  5414. case 0:
  5415. return &v.state
  5416. case 1:
  5417. return &v.sizeCache
  5418. case 2:
  5419. return &v.unknownFields
  5420. default:
  5421. return nil
  5422. }
  5423. }
  5424. file_volume_server_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  5425. switch v := v.(*VolumeConfigureRequest); i {
  5426. case 0:
  5427. return &v.state
  5428. case 1:
  5429. return &v.sizeCache
  5430. case 2:
  5431. return &v.unknownFields
  5432. default:
  5433. return nil
  5434. }
  5435. }
  5436. file_volume_server_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  5437. switch v := v.(*VolumeConfigureResponse); i {
  5438. case 0:
  5439. return &v.state
  5440. case 1:
  5441. return &v.sizeCache
  5442. case 2:
  5443. return &v.unknownFields
  5444. default:
  5445. return nil
  5446. }
  5447. }
  5448. file_volume_server_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  5449. switch v := v.(*VolumeStatusRequest); i {
  5450. case 0:
  5451. return &v.state
  5452. case 1:
  5453. return &v.sizeCache
  5454. case 2:
  5455. return &v.unknownFields
  5456. default:
  5457. return nil
  5458. }
  5459. }
  5460. file_volume_server_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  5461. switch v := v.(*VolumeStatusResponse); i {
  5462. case 0:
  5463. return &v.state
  5464. case 1:
  5465. return &v.sizeCache
  5466. case 2:
  5467. return &v.unknownFields
  5468. default:
  5469. return nil
  5470. }
  5471. }
  5472. file_volume_server_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  5473. switch v := v.(*VolumeCopyRequest); i {
  5474. case 0:
  5475. return &v.state
  5476. case 1:
  5477. return &v.sizeCache
  5478. case 2:
  5479. return &v.unknownFields
  5480. default:
  5481. return nil
  5482. }
  5483. }
  5484. file_volume_server_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  5485. switch v := v.(*VolumeCopyResponse); i {
  5486. case 0:
  5487. return &v.state
  5488. case 1:
  5489. return &v.sizeCache
  5490. case 2:
  5491. return &v.unknownFields
  5492. default:
  5493. return nil
  5494. }
  5495. }
  5496. file_volume_server_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  5497. switch v := v.(*CopyFileRequest); i {
  5498. case 0:
  5499. return &v.state
  5500. case 1:
  5501. return &v.sizeCache
  5502. case 2:
  5503. return &v.unknownFields
  5504. default:
  5505. return nil
  5506. }
  5507. }
  5508. file_volume_server_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  5509. switch v := v.(*CopyFileResponse); i {
  5510. case 0:
  5511. return &v.state
  5512. case 1:
  5513. return &v.sizeCache
  5514. case 2:
  5515. return &v.unknownFields
  5516. default:
  5517. return nil
  5518. }
  5519. }
  5520. file_volume_server_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  5521. switch v := v.(*VolumeTailSenderRequest); i {
  5522. case 0:
  5523. return &v.state
  5524. case 1:
  5525. return &v.sizeCache
  5526. case 2:
  5527. return &v.unknownFields
  5528. default:
  5529. return nil
  5530. }
  5531. }
  5532. file_volume_server_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  5533. switch v := v.(*VolumeTailSenderResponse); i {
  5534. case 0:
  5535. return &v.state
  5536. case 1:
  5537. return &v.sizeCache
  5538. case 2:
  5539. return &v.unknownFields
  5540. default:
  5541. return nil
  5542. }
  5543. }
  5544. file_volume_server_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  5545. switch v := v.(*VolumeTailReceiverRequest); i {
  5546. case 0:
  5547. return &v.state
  5548. case 1:
  5549. return &v.sizeCache
  5550. case 2:
  5551. return &v.unknownFields
  5552. default:
  5553. return nil
  5554. }
  5555. }
  5556. file_volume_server_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  5557. switch v := v.(*VolumeTailReceiverResponse); i {
  5558. case 0:
  5559. return &v.state
  5560. case 1:
  5561. return &v.sizeCache
  5562. case 2:
  5563. return &v.unknownFields
  5564. default:
  5565. return nil
  5566. }
  5567. }
  5568. file_volume_server_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  5569. switch v := v.(*VolumeEcShardsGenerateRequest); i {
  5570. case 0:
  5571. return &v.state
  5572. case 1:
  5573. return &v.sizeCache
  5574. case 2:
  5575. return &v.unknownFields
  5576. default:
  5577. return nil
  5578. }
  5579. }
  5580. file_volume_server_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  5581. switch v := v.(*VolumeEcShardsGenerateResponse); i {
  5582. case 0:
  5583. return &v.state
  5584. case 1:
  5585. return &v.sizeCache
  5586. case 2:
  5587. return &v.unknownFields
  5588. default:
  5589. return nil
  5590. }
  5591. }
  5592. file_volume_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  5593. switch v := v.(*VolumeEcShardsRebuildRequest); i {
  5594. case 0:
  5595. return &v.state
  5596. case 1:
  5597. return &v.sizeCache
  5598. case 2:
  5599. return &v.unknownFields
  5600. default:
  5601. return nil
  5602. }
  5603. }
  5604. file_volume_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  5605. switch v := v.(*VolumeEcShardsRebuildResponse); i {
  5606. case 0:
  5607. return &v.state
  5608. case 1:
  5609. return &v.sizeCache
  5610. case 2:
  5611. return &v.unknownFields
  5612. default:
  5613. return nil
  5614. }
  5615. }
  5616. file_volume_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  5617. switch v := v.(*VolumeEcShardsCopyRequest); i {
  5618. case 0:
  5619. return &v.state
  5620. case 1:
  5621. return &v.sizeCache
  5622. case 2:
  5623. return &v.unknownFields
  5624. default:
  5625. return nil
  5626. }
  5627. }
  5628. file_volume_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  5629. switch v := v.(*VolumeEcShardsCopyResponse); i {
  5630. case 0:
  5631. return &v.state
  5632. case 1:
  5633. return &v.sizeCache
  5634. case 2:
  5635. return &v.unknownFields
  5636. default:
  5637. return nil
  5638. }
  5639. }
  5640. file_volume_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  5641. switch v := v.(*VolumeEcShardsDeleteRequest); i {
  5642. case 0:
  5643. return &v.state
  5644. case 1:
  5645. return &v.sizeCache
  5646. case 2:
  5647. return &v.unknownFields
  5648. default:
  5649. return nil
  5650. }
  5651. }
  5652. file_volume_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  5653. switch v := v.(*VolumeEcShardsDeleteResponse); i {
  5654. case 0:
  5655. return &v.state
  5656. case 1:
  5657. return &v.sizeCache
  5658. case 2:
  5659. return &v.unknownFields
  5660. default:
  5661. return nil
  5662. }
  5663. }
  5664. file_volume_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  5665. switch v := v.(*VolumeEcShardsMountRequest); i {
  5666. case 0:
  5667. return &v.state
  5668. case 1:
  5669. return &v.sizeCache
  5670. case 2:
  5671. return &v.unknownFields
  5672. default:
  5673. return nil
  5674. }
  5675. }
  5676. file_volume_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  5677. switch v := v.(*VolumeEcShardsMountResponse); i {
  5678. case 0:
  5679. return &v.state
  5680. case 1:
  5681. return &v.sizeCache
  5682. case 2:
  5683. return &v.unknownFields
  5684. default:
  5685. return nil
  5686. }
  5687. }
  5688. file_volume_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  5689. switch v := v.(*VolumeEcShardsUnmountRequest); i {
  5690. case 0:
  5691. return &v.state
  5692. case 1:
  5693. return &v.sizeCache
  5694. case 2:
  5695. return &v.unknownFields
  5696. default:
  5697. return nil
  5698. }
  5699. }
  5700. file_volume_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  5701. switch v := v.(*VolumeEcShardsUnmountResponse); i {
  5702. case 0:
  5703. return &v.state
  5704. case 1:
  5705. return &v.sizeCache
  5706. case 2:
  5707. return &v.unknownFields
  5708. default:
  5709. return nil
  5710. }
  5711. }
  5712. file_volume_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  5713. switch v := v.(*VolumeEcShardReadRequest); i {
  5714. case 0:
  5715. return &v.state
  5716. case 1:
  5717. return &v.sizeCache
  5718. case 2:
  5719. return &v.unknownFields
  5720. default:
  5721. return nil
  5722. }
  5723. }
  5724. file_volume_server_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  5725. switch v := v.(*VolumeEcShardReadResponse); i {
  5726. case 0:
  5727. return &v.state
  5728. case 1:
  5729. return &v.sizeCache
  5730. case 2:
  5731. return &v.unknownFields
  5732. default:
  5733. return nil
  5734. }
  5735. }
  5736. file_volume_server_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  5737. switch v := v.(*VolumeEcBlobDeleteRequest); i {
  5738. case 0:
  5739. return &v.state
  5740. case 1:
  5741. return &v.sizeCache
  5742. case 2:
  5743. return &v.unknownFields
  5744. default:
  5745. return nil
  5746. }
  5747. }
  5748. file_volume_server_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  5749. switch v := v.(*VolumeEcBlobDeleteResponse); i {
  5750. case 0:
  5751. return &v.state
  5752. case 1:
  5753. return &v.sizeCache
  5754. case 2:
  5755. return &v.unknownFields
  5756. default:
  5757. return nil
  5758. }
  5759. }
  5760. file_volume_server_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  5761. switch v := v.(*VolumeEcShardsToVolumeRequest); i {
  5762. case 0:
  5763. return &v.state
  5764. case 1:
  5765. return &v.sizeCache
  5766. case 2:
  5767. return &v.unknownFields
  5768. default:
  5769. return nil
  5770. }
  5771. }
  5772. file_volume_server_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  5773. switch v := v.(*VolumeEcShardsToVolumeResponse); i {
  5774. case 0:
  5775. return &v.state
  5776. case 1:
  5777. return &v.sizeCache
  5778. case 2:
  5779. return &v.unknownFields
  5780. default:
  5781. return nil
  5782. }
  5783. }
  5784. file_volume_server_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  5785. switch v := v.(*ReadVolumeFileStatusRequest); i {
  5786. case 0:
  5787. return &v.state
  5788. case 1:
  5789. return &v.sizeCache
  5790. case 2:
  5791. return &v.unknownFields
  5792. default:
  5793. return nil
  5794. }
  5795. }
  5796. file_volume_server_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  5797. switch v := v.(*ReadVolumeFileStatusResponse); i {
  5798. case 0:
  5799. return &v.state
  5800. case 1:
  5801. return &v.sizeCache
  5802. case 2:
  5803. return &v.unknownFields
  5804. default:
  5805. return nil
  5806. }
  5807. }
  5808. file_volume_server_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  5809. switch v := v.(*DiskStatus); i {
  5810. case 0:
  5811. return &v.state
  5812. case 1:
  5813. return &v.sizeCache
  5814. case 2:
  5815. return &v.unknownFields
  5816. default:
  5817. return nil
  5818. }
  5819. }
  5820. file_volume_server_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  5821. switch v := v.(*MemStatus); i {
  5822. case 0:
  5823. return &v.state
  5824. case 1:
  5825. return &v.sizeCache
  5826. case 2:
  5827. return &v.unknownFields
  5828. default:
  5829. return nil
  5830. }
  5831. }
  5832. file_volume_server_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  5833. switch v := v.(*RemoteFile); i {
  5834. case 0:
  5835. return &v.state
  5836. case 1:
  5837. return &v.sizeCache
  5838. case 2:
  5839. return &v.unknownFields
  5840. default:
  5841. return nil
  5842. }
  5843. }
  5844. file_volume_server_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  5845. switch v := v.(*VolumeInfo); i {
  5846. case 0:
  5847. return &v.state
  5848. case 1:
  5849. return &v.sizeCache
  5850. case 2:
  5851. return &v.unknownFields
  5852. default:
  5853. return nil
  5854. }
  5855. }
  5856. file_volume_server_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  5857. switch v := v.(*VolumeTierMoveDatToRemoteRequest); i {
  5858. case 0:
  5859. return &v.state
  5860. case 1:
  5861. return &v.sizeCache
  5862. case 2:
  5863. return &v.unknownFields
  5864. default:
  5865. return nil
  5866. }
  5867. }
  5868. file_volume_server_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  5869. switch v := v.(*VolumeTierMoveDatToRemoteResponse); i {
  5870. case 0:
  5871. return &v.state
  5872. case 1:
  5873. return &v.sizeCache
  5874. case 2:
  5875. return &v.unknownFields
  5876. default:
  5877. return nil
  5878. }
  5879. }
  5880. file_volume_server_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
  5881. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); i {
  5882. case 0:
  5883. return &v.state
  5884. case 1:
  5885. return &v.sizeCache
  5886. case 2:
  5887. return &v.unknownFields
  5888. default:
  5889. return nil
  5890. }
  5891. }
  5892. file_volume_server_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
  5893. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); i {
  5894. case 0:
  5895. return &v.state
  5896. case 1:
  5897. return &v.sizeCache
  5898. case 2:
  5899. return &v.unknownFields
  5900. default:
  5901. return nil
  5902. }
  5903. }
  5904. file_volume_server_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
  5905. switch v := v.(*VolumeServerStatusRequest); i {
  5906. case 0:
  5907. return &v.state
  5908. case 1:
  5909. return &v.sizeCache
  5910. case 2:
  5911. return &v.unknownFields
  5912. default:
  5913. return nil
  5914. }
  5915. }
  5916. file_volume_server_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
  5917. switch v := v.(*VolumeServerStatusResponse); i {
  5918. case 0:
  5919. return &v.state
  5920. case 1:
  5921. return &v.sizeCache
  5922. case 2:
  5923. return &v.unknownFields
  5924. default:
  5925. return nil
  5926. }
  5927. }
  5928. file_volume_server_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
  5929. switch v := v.(*VolumeServerLeaveRequest); i {
  5930. case 0:
  5931. return &v.state
  5932. case 1:
  5933. return &v.sizeCache
  5934. case 2:
  5935. return &v.unknownFields
  5936. default:
  5937. return nil
  5938. }
  5939. }
  5940. file_volume_server_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
  5941. switch v := v.(*VolumeServerLeaveResponse); i {
  5942. case 0:
  5943. return &v.state
  5944. case 1:
  5945. return &v.sizeCache
  5946. case 2:
  5947. return &v.unknownFields
  5948. default:
  5949. return nil
  5950. }
  5951. }
  5952. file_volume_server_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
  5953. switch v := v.(*QueryRequest); i {
  5954. case 0:
  5955. return &v.state
  5956. case 1:
  5957. return &v.sizeCache
  5958. case 2:
  5959. return &v.unknownFields
  5960. default:
  5961. return nil
  5962. }
  5963. }
  5964. file_volume_server_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
  5965. switch v := v.(*QueriedStripe); i {
  5966. case 0:
  5967. return &v.state
  5968. case 1:
  5969. return &v.sizeCache
  5970. case 2:
  5971. return &v.unknownFields
  5972. default:
  5973. return nil
  5974. }
  5975. }
  5976. file_volume_server_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
  5977. switch v := v.(*VolumeNeedleStatusRequest); i {
  5978. case 0:
  5979. return &v.state
  5980. case 1:
  5981. return &v.sizeCache
  5982. case 2:
  5983. return &v.unknownFields
  5984. default:
  5985. return nil
  5986. }
  5987. }
  5988. file_volume_server_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
  5989. switch v := v.(*VolumeNeedleStatusResponse); i {
  5990. case 0:
  5991. return &v.state
  5992. case 1:
  5993. return &v.sizeCache
  5994. case 2:
  5995. return &v.unknownFields
  5996. default:
  5997. return nil
  5998. }
  5999. }
  6000. file_volume_server_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
  6001. switch v := v.(*QueryRequest_Filter); i {
  6002. case 0:
  6003. return &v.state
  6004. case 1:
  6005. return &v.sizeCache
  6006. case 2:
  6007. return &v.unknownFields
  6008. default:
  6009. return nil
  6010. }
  6011. }
  6012. file_volume_server_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
  6013. switch v := v.(*QueryRequest_InputSerialization); i {
  6014. case 0:
  6015. return &v.state
  6016. case 1:
  6017. return &v.sizeCache
  6018. case 2:
  6019. return &v.unknownFields
  6020. default:
  6021. return nil
  6022. }
  6023. }
  6024. file_volume_server_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
  6025. switch v := v.(*QueryRequest_OutputSerialization); i {
  6026. case 0:
  6027. return &v.state
  6028. case 1:
  6029. return &v.sizeCache
  6030. case 2:
  6031. return &v.unknownFields
  6032. default:
  6033. return nil
  6034. }
  6035. }
  6036. file_volume_server_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
  6037. switch v := v.(*QueryRequest_InputSerialization_CSVInput); i {
  6038. case 0:
  6039. return &v.state
  6040. case 1:
  6041. return &v.sizeCache
  6042. case 2:
  6043. return &v.unknownFields
  6044. default:
  6045. return nil
  6046. }
  6047. }
  6048. file_volume_server_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
  6049. switch v := v.(*QueryRequest_InputSerialization_JSONInput); i {
  6050. case 0:
  6051. return &v.state
  6052. case 1:
  6053. return &v.sizeCache
  6054. case 2:
  6055. return &v.unknownFields
  6056. default:
  6057. return nil
  6058. }
  6059. }
  6060. file_volume_server_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
  6061. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  6062. case 0:
  6063. return &v.state
  6064. case 1:
  6065. return &v.sizeCache
  6066. case 2:
  6067. return &v.unknownFields
  6068. default:
  6069. return nil
  6070. }
  6071. }
  6072. file_volume_server_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
  6073. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  6074. case 0:
  6075. return &v.state
  6076. case 1:
  6077. return &v.sizeCache
  6078. case 2:
  6079. return &v.unknownFields
  6080. default:
  6081. return nil
  6082. }
  6083. }
  6084. file_volume_server_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
  6085. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  6086. case 0:
  6087. return &v.state
  6088. case 1:
  6089. return &v.sizeCache
  6090. case 2:
  6091. return &v.unknownFields
  6092. default:
  6093. return nil
  6094. }
  6095. }
  6096. }
  6097. type x struct{}
  6098. out := protoimpl.TypeBuilder{
  6099. File: protoimpl.DescBuilder{
  6100. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  6101. RawDescriptor: file_volume_server_proto_rawDesc,
  6102. NumEnums: 0,
  6103. NumMessages: 86,
  6104. NumExtensions: 0,
  6105. NumServices: 1,
  6106. },
  6107. GoTypes: file_volume_server_proto_goTypes,
  6108. DependencyIndexes: file_volume_server_proto_depIdxs,
  6109. MessageInfos: file_volume_server_proto_msgTypes,
  6110. }.Build()
  6111. File_volume_server_proto = out.File
  6112. file_volume_server_proto_rawDesc = nil
  6113. file_volume_server_proto_goTypes = nil
  6114. file_volume_server_proto_depIdxs = nil
  6115. }
  6116. // Reference imports to suppress errors if they are not otherwise used.
  6117. var _ context.Context
  6118. var _ grpc.ClientConnInterface
  6119. // This is a compile-time assertion to ensure that this generated file
  6120. // is compatible with the grpc package it is being compiled against.
  6121. const _ = grpc.SupportPackageIsVersion6
  6122. // VolumeServerClient is the client API for VolumeServer service.
  6123. //
  6124. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  6125. type VolumeServerClient interface {
  6126. //Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  6127. BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error)
  6128. VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error)
  6129. VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error)
  6130. VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error)
  6131. VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error)
  6132. DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error)
  6133. AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error)
  6134. VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error)
  6135. VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error)
  6136. VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error)
  6137. VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error)
  6138. VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error)
  6139. VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error)
  6140. VolumeMarkWritable(ctx context.Context, in *VolumeMarkWritableRequest, opts ...grpc.CallOption) (*VolumeMarkWritableResponse, error)
  6141. VolumeConfigure(ctx context.Context, in *VolumeConfigureRequest, opts ...grpc.CallOption) (*VolumeConfigureResponse, error)
  6142. VolumeStatus(ctx context.Context, in *VolumeStatusRequest, opts ...grpc.CallOption) (*VolumeStatusResponse, error)
  6143. // copy the .idx .dat files, and mount this volume
  6144. VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error)
  6145. ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error)
  6146. CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error)
  6147. VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error)
  6148. VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error)
  6149. // erasure coding
  6150. VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error)
  6151. VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error)
  6152. VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error)
  6153. VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error)
  6154. VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error)
  6155. VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error)
  6156. VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error)
  6157. VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error)
  6158. VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error)
  6159. // tiered storage
  6160. VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error)
  6161. VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error)
  6162. VolumeServerStatus(ctx context.Context, in *VolumeServerStatusRequest, opts ...grpc.CallOption) (*VolumeServerStatusResponse, error)
  6163. VolumeServerLeave(ctx context.Context, in *VolumeServerLeaveRequest, opts ...grpc.CallOption) (*VolumeServerLeaveResponse, error)
  6164. // <experimental> query
  6165. Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error)
  6166. VolumeNeedleStatus(ctx context.Context, in *VolumeNeedleStatusRequest, opts ...grpc.CallOption) (*VolumeNeedleStatusResponse, error)
  6167. }
  6168. type volumeServerClient struct {
  6169. cc grpc.ClientConnInterface
  6170. }
  6171. func NewVolumeServerClient(cc grpc.ClientConnInterface) VolumeServerClient {
  6172. return &volumeServerClient{cc}
  6173. }
  6174. func (c *volumeServerClient) BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error) {
  6175. out := new(BatchDeleteResponse)
  6176. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/BatchDelete", in, out, opts...)
  6177. if err != nil {
  6178. return nil, err
  6179. }
  6180. return out, nil
  6181. }
  6182. func (c *volumeServerClient) VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error) {
  6183. out := new(VacuumVolumeCheckResponse)
  6184. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCheck", in, out, opts...)
  6185. if err != nil {
  6186. return nil, err
  6187. }
  6188. return out, nil
  6189. }
  6190. func (c *volumeServerClient) VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error) {
  6191. out := new(VacuumVolumeCompactResponse)
  6192. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCompact", in, out, opts...)
  6193. if err != nil {
  6194. return nil, err
  6195. }
  6196. return out, nil
  6197. }
  6198. func (c *volumeServerClient) VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error) {
  6199. out := new(VacuumVolumeCommitResponse)
  6200. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCommit", in, out, opts...)
  6201. if err != nil {
  6202. return nil, err
  6203. }
  6204. return out, nil
  6205. }
  6206. func (c *volumeServerClient) VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error) {
  6207. out := new(VacuumVolumeCleanupResponse)
  6208. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCleanup", in, out, opts...)
  6209. if err != nil {
  6210. return nil, err
  6211. }
  6212. return out, nil
  6213. }
  6214. func (c *volumeServerClient) DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error) {
  6215. out := new(DeleteCollectionResponse)
  6216. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/DeleteCollection", in, out, opts...)
  6217. if err != nil {
  6218. return nil, err
  6219. }
  6220. return out, nil
  6221. }
  6222. func (c *volumeServerClient) AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error) {
  6223. out := new(AllocateVolumeResponse)
  6224. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/AllocateVolume", in, out, opts...)
  6225. if err != nil {
  6226. return nil, err
  6227. }
  6228. return out, nil
  6229. }
  6230. func (c *volumeServerClient) VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error) {
  6231. out := new(VolumeSyncStatusResponse)
  6232. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeSyncStatus", in, out, opts...)
  6233. if err != nil {
  6234. return nil, err
  6235. }
  6236. return out, nil
  6237. }
  6238. func (c *volumeServerClient) VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error) {
  6239. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[0], "/volume_server_pb.VolumeServer/VolumeIncrementalCopy", opts...)
  6240. if err != nil {
  6241. return nil, err
  6242. }
  6243. x := &volumeServerVolumeIncrementalCopyClient{stream}
  6244. if err := x.ClientStream.SendMsg(in); err != nil {
  6245. return nil, err
  6246. }
  6247. if err := x.ClientStream.CloseSend(); err != nil {
  6248. return nil, err
  6249. }
  6250. return x, nil
  6251. }
  6252. type VolumeServer_VolumeIncrementalCopyClient interface {
  6253. Recv() (*VolumeIncrementalCopyResponse, error)
  6254. grpc.ClientStream
  6255. }
  6256. type volumeServerVolumeIncrementalCopyClient struct {
  6257. grpc.ClientStream
  6258. }
  6259. func (x *volumeServerVolumeIncrementalCopyClient) Recv() (*VolumeIncrementalCopyResponse, error) {
  6260. m := new(VolumeIncrementalCopyResponse)
  6261. if err := x.ClientStream.RecvMsg(m); err != nil {
  6262. return nil, err
  6263. }
  6264. return m, nil
  6265. }
  6266. func (c *volumeServerClient) VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error) {
  6267. out := new(VolumeMountResponse)
  6268. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMount", in, out, opts...)
  6269. if err != nil {
  6270. return nil, err
  6271. }
  6272. return out, nil
  6273. }
  6274. func (c *volumeServerClient) VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error) {
  6275. out := new(VolumeUnmountResponse)
  6276. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeUnmount", in, out, opts...)
  6277. if err != nil {
  6278. return nil, err
  6279. }
  6280. return out, nil
  6281. }
  6282. func (c *volumeServerClient) VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error) {
  6283. out := new(VolumeDeleteResponse)
  6284. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeDelete", in, out, opts...)
  6285. if err != nil {
  6286. return nil, err
  6287. }
  6288. return out, nil
  6289. }
  6290. func (c *volumeServerClient) VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error) {
  6291. out := new(VolumeMarkReadonlyResponse)
  6292. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMarkReadonly", in, out, opts...)
  6293. if err != nil {
  6294. return nil, err
  6295. }
  6296. return out, nil
  6297. }
  6298. func (c *volumeServerClient) VolumeMarkWritable(ctx context.Context, in *VolumeMarkWritableRequest, opts ...grpc.CallOption) (*VolumeMarkWritableResponse, error) {
  6299. out := new(VolumeMarkWritableResponse)
  6300. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMarkWritable", in, out, opts...)
  6301. if err != nil {
  6302. return nil, err
  6303. }
  6304. return out, nil
  6305. }
  6306. func (c *volumeServerClient) VolumeConfigure(ctx context.Context, in *VolumeConfigureRequest, opts ...grpc.CallOption) (*VolumeConfigureResponse, error) {
  6307. out := new(VolumeConfigureResponse)
  6308. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeConfigure", in, out, opts...)
  6309. if err != nil {
  6310. return nil, err
  6311. }
  6312. return out, nil
  6313. }
  6314. func (c *volumeServerClient) VolumeStatus(ctx context.Context, in *VolumeStatusRequest, opts ...grpc.CallOption) (*VolumeStatusResponse, error) {
  6315. out := new(VolumeStatusResponse)
  6316. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeStatus", in, out, opts...)
  6317. if err != nil {
  6318. return nil, err
  6319. }
  6320. return out, nil
  6321. }
  6322. func (c *volumeServerClient) VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error) {
  6323. out := new(VolumeCopyResponse)
  6324. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeCopy", in, out, opts...)
  6325. if err != nil {
  6326. return nil, err
  6327. }
  6328. return out, nil
  6329. }
  6330. func (c *volumeServerClient) ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error) {
  6331. out := new(ReadVolumeFileStatusResponse)
  6332. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/ReadVolumeFileStatus", in, out, opts...)
  6333. if err != nil {
  6334. return nil, err
  6335. }
  6336. return out, nil
  6337. }
  6338. func (c *volumeServerClient) CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error) {
  6339. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[1], "/volume_server_pb.VolumeServer/CopyFile", opts...)
  6340. if err != nil {
  6341. return nil, err
  6342. }
  6343. x := &volumeServerCopyFileClient{stream}
  6344. if err := x.ClientStream.SendMsg(in); err != nil {
  6345. return nil, err
  6346. }
  6347. if err := x.ClientStream.CloseSend(); err != nil {
  6348. return nil, err
  6349. }
  6350. return x, nil
  6351. }
  6352. type VolumeServer_CopyFileClient interface {
  6353. Recv() (*CopyFileResponse, error)
  6354. grpc.ClientStream
  6355. }
  6356. type volumeServerCopyFileClient struct {
  6357. grpc.ClientStream
  6358. }
  6359. func (x *volumeServerCopyFileClient) Recv() (*CopyFileResponse, error) {
  6360. m := new(CopyFileResponse)
  6361. if err := x.ClientStream.RecvMsg(m); err != nil {
  6362. return nil, err
  6363. }
  6364. return m, nil
  6365. }
  6366. func (c *volumeServerClient) VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error) {
  6367. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[2], "/volume_server_pb.VolumeServer/VolumeTailSender", opts...)
  6368. if err != nil {
  6369. return nil, err
  6370. }
  6371. x := &volumeServerVolumeTailSenderClient{stream}
  6372. if err := x.ClientStream.SendMsg(in); err != nil {
  6373. return nil, err
  6374. }
  6375. if err := x.ClientStream.CloseSend(); err != nil {
  6376. return nil, err
  6377. }
  6378. return x, nil
  6379. }
  6380. type VolumeServer_VolumeTailSenderClient interface {
  6381. Recv() (*VolumeTailSenderResponse, error)
  6382. grpc.ClientStream
  6383. }
  6384. type volumeServerVolumeTailSenderClient struct {
  6385. grpc.ClientStream
  6386. }
  6387. func (x *volumeServerVolumeTailSenderClient) Recv() (*VolumeTailSenderResponse, error) {
  6388. m := new(VolumeTailSenderResponse)
  6389. if err := x.ClientStream.RecvMsg(m); err != nil {
  6390. return nil, err
  6391. }
  6392. return m, nil
  6393. }
  6394. func (c *volumeServerClient) VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error) {
  6395. out := new(VolumeTailReceiverResponse)
  6396. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeTailReceiver", in, out, opts...)
  6397. if err != nil {
  6398. return nil, err
  6399. }
  6400. return out, nil
  6401. }
  6402. func (c *volumeServerClient) VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error) {
  6403. out := new(VolumeEcShardsGenerateResponse)
  6404. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate", in, out, opts...)
  6405. if err != nil {
  6406. return nil, err
  6407. }
  6408. return out, nil
  6409. }
  6410. func (c *volumeServerClient) VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error) {
  6411. out := new(VolumeEcShardsRebuildResponse)
  6412. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild", in, out, opts...)
  6413. if err != nil {
  6414. return nil, err
  6415. }
  6416. return out, nil
  6417. }
  6418. func (c *volumeServerClient) VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error) {
  6419. out := new(VolumeEcShardsCopyResponse)
  6420. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsCopy", in, out, opts...)
  6421. if err != nil {
  6422. return nil, err
  6423. }
  6424. return out, nil
  6425. }
  6426. func (c *volumeServerClient) VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error) {
  6427. out := new(VolumeEcShardsDeleteResponse)
  6428. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsDelete", in, out, opts...)
  6429. if err != nil {
  6430. return nil, err
  6431. }
  6432. return out, nil
  6433. }
  6434. func (c *volumeServerClient) VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error) {
  6435. out := new(VolumeEcShardsMountResponse)
  6436. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsMount", in, out, opts...)
  6437. if err != nil {
  6438. return nil, err
  6439. }
  6440. return out, nil
  6441. }
  6442. func (c *volumeServerClient) VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error) {
  6443. out := new(VolumeEcShardsUnmountResponse)
  6444. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount", in, out, opts...)
  6445. if err != nil {
  6446. return nil, err
  6447. }
  6448. return out, nil
  6449. }
  6450. func (c *volumeServerClient) VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error) {
  6451. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[3], "/volume_server_pb.VolumeServer/VolumeEcShardRead", opts...)
  6452. if err != nil {
  6453. return nil, err
  6454. }
  6455. x := &volumeServerVolumeEcShardReadClient{stream}
  6456. if err := x.ClientStream.SendMsg(in); err != nil {
  6457. return nil, err
  6458. }
  6459. if err := x.ClientStream.CloseSend(); err != nil {
  6460. return nil, err
  6461. }
  6462. return x, nil
  6463. }
  6464. type VolumeServer_VolumeEcShardReadClient interface {
  6465. Recv() (*VolumeEcShardReadResponse, error)
  6466. grpc.ClientStream
  6467. }
  6468. type volumeServerVolumeEcShardReadClient struct {
  6469. grpc.ClientStream
  6470. }
  6471. func (x *volumeServerVolumeEcShardReadClient) Recv() (*VolumeEcShardReadResponse, error) {
  6472. m := new(VolumeEcShardReadResponse)
  6473. if err := x.ClientStream.RecvMsg(m); err != nil {
  6474. return nil, err
  6475. }
  6476. return m, nil
  6477. }
  6478. func (c *volumeServerClient) VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error) {
  6479. out := new(VolumeEcBlobDeleteResponse)
  6480. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcBlobDelete", in, out, opts...)
  6481. if err != nil {
  6482. return nil, err
  6483. }
  6484. return out, nil
  6485. }
  6486. func (c *volumeServerClient) VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error) {
  6487. out := new(VolumeEcShardsToVolumeResponse)
  6488. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume", in, out, opts...)
  6489. if err != nil {
  6490. return nil, err
  6491. }
  6492. return out, nil
  6493. }
  6494. func (c *volumeServerClient) VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error) {
  6495. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[4], "/volume_server_pb.VolumeServer/VolumeTierMoveDatToRemote", opts...)
  6496. if err != nil {
  6497. return nil, err
  6498. }
  6499. x := &volumeServerVolumeTierMoveDatToRemoteClient{stream}
  6500. if err := x.ClientStream.SendMsg(in); err != nil {
  6501. return nil, err
  6502. }
  6503. if err := x.ClientStream.CloseSend(); err != nil {
  6504. return nil, err
  6505. }
  6506. return x, nil
  6507. }
  6508. type VolumeServer_VolumeTierMoveDatToRemoteClient interface {
  6509. Recv() (*VolumeTierMoveDatToRemoteResponse, error)
  6510. grpc.ClientStream
  6511. }
  6512. type volumeServerVolumeTierMoveDatToRemoteClient struct {
  6513. grpc.ClientStream
  6514. }
  6515. func (x *volumeServerVolumeTierMoveDatToRemoteClient) Recv() (*VolumeTierMoveDatToRemoteResponse, error) {
  6516. m := new(VolumeTierMoveDatToRemoteResponse)
  6517. if err := x.ClientStream.RecvMsg(m); err != nil {
  6518. return nil, err
  6519. }
  6520. return m, nil
  6521. }
  6522. func (c *volumeServerClient) VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error) {
  6523. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[5], "/volume_server_pb.VolumeServer/VolumeTierMoveDatFromRemote", opts...)
  6524. if err != nil {
  6525. return nil, err
  6526. }
  6527. x := &volumeServerVolumeTierMoveDatFromRemoteClient{stream}
  6528. if err := x.ClientStream.SendMsg(in); err != nil {
  6529. return nil, err
  6530. }
  6531. if err := x.ClientStream.CloseSend(); err != nil {
  6532. return nil, err
  6533. }
  6534. return x, nil
  6535. }
  6536. type VolumeServer_VolumeTierMoveDatFromRemoteClient interface {
  6537. Recv() (*VolumeTierMoveDatFromRemoteResponse, error)
  6538. grpc.ClientStream
  6539. }
  6540. type volumeServerVolumeTierMoveDatFromRemoteClient struct {
  6541. grpc.ClientStream
  6542. }
  6543. func (x *volumeServerVolumeTierMoveDatFromRemoteClient) Recv() (*VolumeTierMoveDatFromRemoteResponse, error) {
  6544. m := new(VolumeTierMoveDatFromRemoteResponse)
  6545. if err := x.ClientStream.RecvMsg(m); err != nil {
  6546. return nil, err
  6547. }
  6548. return m, nil
  6549. }
  6550. func (c *volumeServerClient) VolumeServerStatus(ctx context.Context, in *VolumeServerStatusRequest, opts ...grpc.CallOption) (*VolumeServerStatusResponse, error) {
  6551. out := new(VolumeServerStatusResponse)
  6552. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeServerStatus", in, out, opts...)
  6553. if err != nil {
  6554. return nil, err
  6555. }
  6556. return out, nil
  6557. }
  6558. func (c *volumeServerClient) VolumeServerLeave(ctx context.Context, in *VolumeServerLeaveRequest, opts ...grpc.CallOption) (*VolumeServerLeaveResponse, error) {
  6559. out := new(VolumeServerLeaveResponse)
  6560. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeServerLeave", in, out, opts...)
  6561. if err != nil {
  6562. return nil, err
  6563. }
  6564. return out, nil
  6565. }
  6566. func (c *volumeServerClient) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error) {
  6567. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[6], "/volume_server_pb.VolumeServer/Query", opts...)
  6568. if err != nil {
  6569. return nil, err
  6570. }
  6571. x := &volumeServerQueryClient{stream}
  6572. if err := x.ClientStream.SendMsg(in); err != nil {
  6573. return nil, err
  6574. }
  6575. if err := x.ClientStream.CloseSend(); err != nil {
  6576. return nil, err
  6577. }
  6578. return x, nil
  6579. }
  6580. type VolumeServer_QueryClient interface {
  6581. Recv() (*QueriedStripe, error)
  6582. grpc.ClientStream
  6583. }
  6584. type volumeServerQueryClient struct {
  6585. grpc.ClientStream
  6586. }
  6587. func (x *volumeServerQueryClient) Recv() (*QueriedStripe, error) {
  6588. m := new(QueriedStripe)
  6589. if err := x.ClientStream.RecvMsg(m); err != nil {
  6590. return nil, err
  6591. }
  6592. return m, nil
  6593. }
  6594. func (c *volumeServerClient) VolumeNeedleStatus(ctx context.Context, in *VolumeNeedleStatusRequest, opts ...grpc.CallOption) (*VolumeNeedleStatusResponse, error) {
  6595. out := new(VolumeNeedleStatusResponse)
  6596. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeNeedleStatus", in, out, opts...)
  6597. if err != nil {
  6598. return nil, err
  6599. }
  6600. return out, nil
  6601. }
  6602. // VolumeServerServer is the server API for VolumeServer service.
  6603. type VolumeServerServer interface {
  6604. //Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  6605. BatchDelete(context.Context, *BatchDeleteRequest) (*BatchDeleteResponse, error)
  6606. VacuumVolumeCheck(context.Context, *VacuumVolumeCheckRequest) (*VacuumVolumeCheckResponse, error)
  6607. VacuumVolumeCompact(context.Context, *VacuumVolumeCompactRequest) (*VacuumVolumeCompactResponse, error)
  6608. VacuumVolumeCommit(context.Context, *VacuumVolumeCommitRequest) (*VacuumVolumeCommitResponse, error)
  6609. VacuumVolumeCleanup(context.Context, *VacuumVolumeCleanupRequest) (*VacuumVolumeCleanupResponse, error)
  6610. DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error)
  6611. AllocateVolume(context.Context, *AllocateVolumeRequest) (*AllocateVolumeResponse, error)
  6612. VolumeSyncStatus(context.Context, *VolumeSyncStatusRequest) (*VolumeSyncStatusResponse, error)
  6613. VolumeIncrementalCopy(*VolumeIncrementalCopyRequest, VolumeServer_VolumeIncrementalCopyServer) error
  6614. VolumeMount(context.Context, *VolumeMountRequest) (*VolumeMountResponse, error)
  6615. VolumeUnmount(context.Context, *VolumeUnmountRequest) (*VolumeUnmountResponse, error)
  6616. VolumeDelete(context.Context, *VolumeDeleteRequest) (*VolumeDeleteResponse, error)
  6617. VolumeMarkReadonly(context.Context, *VolumeMarkReadonlyRequest) (*VolumeMarkReadonlyResponse, error)
  6618. VolumeMarkWritable(context.Context, *VolumeMarkWritableRequest) (*VolumeMarkWritableResponse, error)
  6619. VolumeConfigure(context.Context, *VolumeConfigureRequest) (*VolumeConfigureResponse, error)
  6620. VolumeStatus(context.Context, *VolumeStatusRequest) (*VolumeStatusResponse, error)
  6621. // copy the .idx .dat files, and mount this volume
  6622. VolumeCopy(context.Context, *VolumeCopyRequest) (*VolumeCopyResponse, error)
  6623. ReadVolumeFileStatus(context.Context, *ReadVolumeFileStatusRequest) (*ReadVolumeFileStatusResponse, error)
  6624. CopyFile(*CopyFileRequest, VolumeServer_CopyFileServer) error
  6625. VolumeTailSender(*VolumeTailSenderRequest, VolumeServer_VolumeTailSenderServer) error
  6626. VolumeTailReceiver(context.Context, *VolumeTailReceiverRequest) (*VolumeTailReceiverResponse, error)
  6627. // erasure coding
  6628. VolumeEcShardsGenerate(context.Context, *VolumeEcShardsGenerateRequest) (*VolumeEcShardsGenerateResponse, error)
  6629. VolumeEcShardsRebuild(context.Context, *VolumeEcShardsRebuildRequest) (*VolumeEcShardsRebuildResponse, error)
  6630. VolumeEcShardsCopy(context.Context, *VolumeEcShardsCopyRequest) (*VolumeEcShardsCopyResponse, error)
  6631. VolumeEcShardsDelete(context.Context, *VolumeEcShardsDeleteRequest) (*VolumeEcShardsDeleteResponse, error)
  6632. VolumeEcShardsMount(context.Context, *VolumeEcShardsMountRequest) (*VolumeEcShardsMountResponse, error)
  6633. VolumeEcShardsUnmount(context.Context, *VolumeEcShardsUnmountRequest) (*VolumeEcShardsUnmountResponse, error)
  6634. VolumeEcShardRead(*VolumeEcShardReadRequest, VolumeServer_VolumeEcShardReadServer) error
  6635. VolumeEcBlobDelete(context.Context, *VolumeEcBlobDeleteRequest) (*VolumeEcBlobDeleteResponse, error)
  6636. VolumeEcShardsToVolume(context.Context, *VolumeEcShardsToVolumeRequest) (*VolumeEcShardsToVolumeResponse, error)
  6637. // tiered storage
  6638. VolumeTierMoveDatToRemote(*VolumeTierMoveDatToRemoteRequest, VolumeServer_VolumeTierMoveDatToRemoteServer) error
  6639. VolumeTierMoveDatFromRemote(*VolumeTierMoveDatFromRemoteRequest, VolumeServer_VolumeTierMoveDatFromRemoteServer) error
  6640. VolumeServerStatus(context.Context, *VolumeServerStatusRequest) (*VolumeServerStatusResponse, error)
  6641. VolumeServerLeave(context.Context, *VolumeServerLeaveRequest) (*VolumeServerLeaveResponse, error)
  6642. // <experimental> query
  6643. Query(*QueryRequest, VolumeServer_QueryServer) error
  6644. VolumeNeedleStatus(context.Context, *VolumeNeedleStatusRequest) (*VolumeNeedleStatusResponse, error)
  6645. }
  6646. // UnimplementedVolumeServerServer can be embedded to have forward compatible implementations.
  6647. type UnimplementedVolumeServerServer struct {
  6648. }
  6649. func (*UnimplementedVolumeServerServer) BatchDelete(context.Context, *BatchDeleteRequest) (*BatchDeleteResponse, error) {
  6650. return nil, status.Errorf(codes.Unimplemented, "method BatchDelete not implemented")
  6651. }
  6652. func (*UnimplementedVolumeServerServer) VacuumVolumeCheck(context.Context, *VacuumVolumeCheckRequest) (*VacuumVolumeCheckResponse, error) {
  6653. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCheck not implemented")
  6654. }
  6655. func (*UnimplementedVolumeServerServer) VacuumVolumeCompact(context.Context, *VacuumVolumeCompactRequest) (*VacuumVolumeCompactResponse, error) {
  6656. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCompact not implemented")
  6657. }
  6658. func (*UnimplementedVolumeServerServer) VacuumVolumeCommit(context.Context, *VacuumVolumeCommitRequest) (*VacuumVolumeCommitResponse, error) {
  6659. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCommit not implemented")
  6660. }
  6661. func (*UnimplementedVolumeServerServer) VacuumVolumeCleanup(context.Context, *VacuumVolumeCleanupRequest) (*VacuumVolumeCleanupResponse, error) {
  6662. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCleanup not implemented")
  6663. }
  6664. func (*UnimplementedVolumeServerServer) DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error) {
  6665. return nil, status.Errorf(codes.Unimplemented, "method DeleteCollection not implemented")
  6666. }
  6667. func (*UnimplementedVolumeServerServer) AllocateVolume(context.Context, *AllocateVolumeRequest) (*AllocateVolumeResponse, error) {
  6668. return nil, status.Errorf(codes.Unimplemented, "method AllocateVolume not implemented")
  6669. }
  6670. func (*UnimplementedVolumeServerServer) VolumeSyncStatus(context.Context, *VolumeSyncStatusRequest) (*VolumeSyncStatusResponse, error) {
  6671. return nil, status.Errorf(codes.Unimplemented, "method VolumeSyncStatus not implemented")
  6672. }
  6673. func (*UnimplementedVolumeServerServer) VolumeIncrementalCopy(*VolumeIncrementalCopyRequest, VolumeServer_VolumeIncrementalCopyServer) error {
  6674. return status.Errorf(codes.Unimplemented, "method VolumeIncrementalCopy not implemented")
  6675. }
  6676. func (*UnimplementedVolumeServerServer) VolumeMount(context.Context, *VolumeMountRequest) (*VolumeMountResponse, error) {
  6677. return nil, status.Errorf(codes.Unimplemented, "method VolumeMount not implemented")
  6678. }
  6679. func (*UnimplementedVolumeServerServer) VolumeUnmount(context.Context, *VolumeUnmountRequest) (*VolumeUnmountResponse, error) {
  6680. return nil, status.Errorf(codes.Unimplemented, "method VolumeUnmount not implemented")
  6681. }
  6682. func (*UnimplementedVolumeServerServer) VolumeDelete(context.Context, *VolumeDeleteRequest) (*VolumeDeleteResponse, error) {
  6683. return nil, status.Errorf(codes.Unimplemented, "method VolumeDelete not implemented")
  6684. }
  6685. func (*UnimplementedVolumeServerServer) VolumeMarkReadonly(context.Context, *VolumeMarkReadonlyRequest) (*VolumeMarkReadonlyResponse, error) {
  6686. return nil, status.Errorf(codes.Unimplemented, "method VolumeMarkReadonly not implemented")
  6687. }
  6688. func (*UnimplementedVolumeServerServer) VolumeMarkWritable(context.Context, *VolumeMarkWritableRequest) (*VolumeMarkWritableResponse, error) {
  6689. return nil, status.Errorf(codes.Unimplemented, "method VolumeMarkWritable not implemented")
  6690. }
  6691. func (*UnimplementedVolumeServerServer) VolumeConfigure(context.Context, *VolumeConfigureRequest) (*VolumeConfigureResponse, error) {
  6692. return nil, status.Errorf(codes.Unimplemented, "method VolumeConfigure not implemented")
  6693. }
  6694. func (*UnimplementedVolumeServerServer) VolumeStatus(context.Context, *VolumeStatusRequest) (*VolumeStatusResponse, error) {
  6695. return nil, status.Errorf(codes.Unimplemented, "method VolumeStatus not implemented")
  6696. }
  6697. func (*UnimplementedVolumeServerServer) VolumeCopy(context.Context, *VolumeCopyRequest) (*VolumeCopyResponse, error) {
  6698. return nil, status.Errorf(codes.Unimplemented, "method VolumeCopy not implemented")
  6699. }
  6700. func (*UnimplementedVolumeServerServer) ReadVolumeFileStatus(context.Context, *ReadVolumeFileStatusRequest) (*ReadVolumeFileStatusResponse, error) {
  6701. return nil, status.Errorf(codes.Unimplemented, "method ReadVolumeFileStatus not implemented")
  6702. }
  6703. func (*UnimplementedVolumeServerServer) CopyFile(*CopyFileRequest, VolumeServer_CopyFileServer) error {
  6704. return status.Errorf(codes.Unimplemented, "method CopyFile not implemented")
  6705. }
  6706. func (*UnimplementedVolumeServerServer) VolumeTailSender(*VolumeTailSenderRequest, VolumeServer_VolumeTailSenderServer) error {
  6707. return status.Errorf(codes.Unimplemented, "method VolumeTailSender not implemented")
  6708. }
  6709. func (*UnimplementedVolumeServerServer) VolumeTailReceiver(context.Context, *VolumeTailReceiverRequest) (*VolumeTailReceiverResponse, error) {
  6710. return nil, status.Errorf(codes.Unimplemented, "method VolumeTailReceiver not implemented")
  6711. }
  6712. func (*UnimplementedVolumeServerServer) VolumeEcShardsGenerate(context.Context, *VolumeEcShardsGenerateRequest) (*VolumeEcShardsGenerateResponse, error) {
  6713. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsGenerate not implemented")
  6714. }
  6715. func (*UnimplementedVolumeServerServer) VolumeEcShardsRebuild(context.Context, *VolumeEcShardsRebuildRequest) (*VolumeEcShardsRebuildResponse, error) {
  6716. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsRebuild not implemented")
  6717. }
  6718. func (*UnimplementedVolumeServerServer) VolumeEcShardsCopy(context.Context, *VolumeEcShardsCopyRequest) (*VolumeEcShardsCopyResponse, error) {
  6719. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsCopy not implemented")
  6720. }
  6721. func (*UnimplementedVolumeServerServer) VolumeEcShardsDelete(context.Context, *VolumeEcShardsDeleteRequest) (*VolumeEcShardsDeleteResponse, error) {
  6722. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsDelete not implemented")
  6723. }
  6724. func (*UnimplementedVolumeServerServer) VolumeEcShardsMount(context.Context, *VolumeEcShardsMountRequest) (*VolumeEcShardsMountResponse, error) {
  6725. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsMount not implemented")
  6726. }
  6727. func (*UnimplementedVolumeServerServer) VolumeEcShardsUnmount(context.Context, *VolumeEcShardsUnmountRequest) (*VolumeEcShardsUnmountResponse, error) {
  6728. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsUnmount not implemented")
  6729. }
  6730. func (*UnimplementedVolumeServerServer) VolumeEcShardRead(*VolumeEcShardReadRequest, VolumeServer_VolumeEcShardReadServer) error {
  6731. return status.Errorf(codes.Unimplemented, "method VolumeEcShardRead not implemented")
  6732. }
  6733. func (*UnimplementedVolumeServerServer) VolumeEcBlobDelete(context.Context, *VolumeEcBlobDeleteRequest) (*VolumeEcBlobDeleteResponse, error) {
  6734. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcBlobDelete not implemented")
  6735. }
  6736. func (*UnimplementedVolumeServerServer) VolumeEcShardsToVolume(context.Context, *VolumeEcShardsToVolumeRequest) (*VolumeEcShardsToVolumeResponse, error) {
  6737. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsToVolume not implemented")
  6738. }
  6739. func (*UnimplementedVolumeServerServer) VolumeTierMoveDatToRemote(*VolumeTierMoveDatToRemoteRequest, VolumeServer_VolumeTierMoveDatToRemoteServer) error {
  6740. return status.Errorf(codes.Unimplemented, "method VolumeTierMoveDatToRemote not implemented")
  6741. }
  6742. func (*UnimplementedVolumeServerServer) VolumeTierMoveDatFromRemote(*VolumeTierMoveDatFromRemoteRequest, VolumeServer_VolumeTierMoveDatFromRemoteServer) error {
  6743. return status.Errorf(codes.Unimplemented, "method VolumeTierMoveDatFromRemote not implemented")
  6744. }
  6745. func (*UnimplementedVolumeServerServer) VolumeServerStatus(context.Context, *VolumeServerStatusRequest) (*VolumeServerStatusResponse, error) {
  6746. return nil, status.Errorf(codes.Unimplemented, "method VolumeServerStatus not implemented")
  6747. }
  6748. func (*UnimplementedVolumeServerServer) VolumeServerLeave(context.Context, *VolumeServerLeaveRequest) (*VolumeServerLeaveResponse, error) {
  6749. return nil, status.Errorf(codes.Unimplemented, "method VolumeServerLeave not implemented")
  6750. }
  6751. func (*UnimplementedVolumeServerServer) Query(*QueryRequest, VolumeServer_QueryServer) error {
  6752. return status.Errorf(codes.Unimplemented, "method Query not implemented")
  6753. }
  6754. func (*UnimplementedVolumeServerServer) VolumeNeedleStatus(context.Context, *VolumeNeedleStatusRequest) (*VolumeNeedleStatusResponse, error) {
  6755. return nil, status.Errorf(codes.Unimplemented, "method VolumeNeedleStatus not implemented")
  6756. }
  6757. func RegisterVolumeServerServer(s *grpc.Server, srv VolumeServerServer) {
  6758. s.RegisterService(&_VolumeServer_serviceDesc, srv)
  6759. }
  6760. func _VolumeServer_BatchDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6761. in := new(BatchDeleteRequest)
  6762. if err := dec(in); err != nil {
  6763. return nil, err
  6764. }
  6765. if interceptor == nil {
  6766. return srv.(VolumeServerServer).BatchDelete(ctx, in)
  6767. }
  6768. info := &grpc.UnaryServerInfo{
  6769. Server: srv,
  6770. FullMethod: "/volume_server_pb.VolumeServer/BatchDelete",
  6771. }
  6772. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6773. return srv.(VolumeServerServer).BatchDelete(ctx, req.(*BatchDeleteRequest))
  6774. }
  6775. return interceptor(ctx, in, info, handler)
  6776. }
  6777. func _VolumeServer_VacuumVolumeCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6778. in := new(VacuumVolumeCheckRequest)
  6779. if err := dec(in); err != nil {
  6780. return nil, err
  6781. }
  6782. if interceptor == nil {
  6783. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, in)
  6784. }
  6785. info := &grpc.UnaryServerInfo{
  6786. Server: srv,
  6787. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCheck",
  6788. }
  6789. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6790. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, req.(*VacuumVolumeCheckRequest))
  6791. }
  6792. return interceptor(ctx, in, info, handler)
  6793. }
  6794. func _VolumeServer_VacuumVolumeCompact_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6795. in := new(VacuumVolumeCompactRequest)
  6796. if err := dec(in); err != nil {
  6797. return nil, err
  6798. }
  6799. if interceptor == nil {
  6800. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, in)
  6801. }
  6802. info := &grpc.UnaryServerInfo{
  6803. Server: srv,
  6804. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCompact",
  6805. }
  6806. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6807. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, req.(*VacuumVolumeCompactRequest))
  6808. }
  6809. return interceptor(ctx, in, info, handler)
  6810. }
  6811. func _VolumeServer_VacuumVolumeCommit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6812. in := new(VacuumVolumeCommitRequest)
  6813. if err := dec(in); err != nil {
  6814. return nil, err
  6815. }
  6816. if interceptor == nil {
  6817. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, in)
  6818. }
  6819. info := &grpc.UnaryServerInfo{
  6820. Server: srv,
  6821. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCommit",
  6822. }
  6823. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6824. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, req.(*VacuumVolumeCommitRequest))
  6825. }
  6826. return interceptor(ctx, in, info, handler)
  6827. }
  6828. func _VolumeServer_VacuumVolumeCleanup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6829. in := new(VacuumVolumeCleanupRequest)
  6830. if err := dec(in); err != nil {
  6831. return nil, err
  6832. }
  6833. if interceptor == nil {
  6834. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, in)
  6835. }
  6836. info := &grpc.UnaryServerInfo{
  6837. Server: srv,
  6838. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCleanup",
  6839. }
  6840. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6841. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, req.(*VacuumVolumeCleanupRequest))
  6842. }
  6843. return interceptor(ctx, in, info, handler)
  6844. }
  6845. func _VolumeServer_DeleteCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6846. in := new(DeleteCollectionRequest)
  6847. if err := dec(in); err != nil {
  6848. return nil, err
  6849. }
  6850. if interceptor == nil {
  6851. return srv.(VolumeServerServer).DeleteCollection(ctx, in)
  6852. }
  6853. info := &grpc.UnaryServerInfo{
  6854. Server: srv,
  6855. FullMethod: "/volume_server_pb.VolumeServer/DeleteCollection",
  6856. }
  6857. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6858. return srv.(VolumeServerServer).DeleteCollection(ctx, req.(*DeleteCollectionRequest))
  6859. }
  6860. return interceptor(ctx, in, info, handler)
  6861. }
  6862. func _VolumeServer_AllocateVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6863. in := new(AllocateVolumeRequest)
  6864. if err := dec(in); err != nil {
  6865. return nil, err
  6866. }
  6867. if interceptor == nil {
  6868. return srv.(VolumeServerServer).AllocateVolume(ctx, in)
  6869. }
  6870. info := &grpc.UnaryServerInfo{
  6871. Server: srv,
  6872. FullMethod: "/volume_server_pb.VolumeServer/AllocateVolume",
  6873. }
  6874. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6875. return srv.(VolumeServerServer).AllocateVolume(ctx, req.(*AllocateVolumeRequest))
  6876. }
  6877. return interceptor(ctx, in, info, handler)
  6878. }
  6879. func _VolumeServer_VolumeSyncStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6880. in := new(VolumeSyncStatusRequest)
  6881. if err := dec(in); err != nil {
  6882. return nil, err
  6883. }
  6884. if interceptor == nil {
  6885. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, in)
  6886. }
  6887. info := &grpc.UnaryServerInfo{
  6888. Server: srv,
  6889. FullMethod: "/volume_server_pb.VolumeServer/VolumeSyncStatus",
  6890. }
  6891. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6892. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, req.(*VolumeSyncStatusRequest))
  6893. }
  6894. return interceptor(ctx, in, info, handler)
  6895. }
  6896. func _VolumeServer_VolumeIncrementalCopy_Handler(srv interface{}, stream grpc.ServerStream) error {
  6897. m := new(VolumeIncrementalCopyRequest)
  6898. if err := stream.RecvMsg(m); err != nil {
  6899. return err
  6900. }
  6901. return srv.(VolumeServerServer).VolumeIncrementalCopy(m, &volumeServerVolumeIncrementalCopyServer{stream})
  6902. }
  6903. type VolumeServer_VolumeIncrementalCopyServer interface {
  6904. Send(*VolumeIncrementalCopyResponse) error
  6905. grpc.ServerStream
  6906. }
  6907. type volumeServerVolumeIncrementalCopyServer struct {
  6908. grpc.ServerStream
  6909. }
  6910. func (x *volumeServerVolumeIncrementalCopyServer) Send(m *VolumeIncrementalCopyResponse) error {
  6911. return x.ServerStream.SendMsg(m)
  6912. }
  6913. func _VolumeServer_VolumeMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6914. in := new(VolumeMountRequest)
  6915. if err := dec(in); err != nil {
  6916. return nil, err
  6917. }
  6918. if interceptor == nil {
  6919. return srv.(VolumeServerServer).VolumeMount(ctx, in)
  6920. }
  6921. info := &grpc.UnaryServerInfo{
  6922. Server: srv,
  6923. FullMethod: "/volume_server_pb.VolumeServer/VolumeMount",
  6924. }
  6925. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6926. return srv.(VolumeServerServer).VolumeMount(ctx, req.(*VolumeMountRequest))
  6927. }
  6928. return interceptor(ctx, in, info, handler)
  6929. }
  6930. func _VolumeServer_VolumeUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6931. in := new(VolumeUnmountRequest)
  6932. if err := dec(in); err != nil {
  6933. return nil, err
  6934. }
  6935. if interceptor == nil {
  6936. return srv.(VolumeServerServer).VolumeUnmount(ctx, in)
  6937. }
  6938. info := &grpc.UnaryServerInfo{
  6939. Server: srv,
  6940. FullMethod: "/volume_server_pb.VolumeServer/VolumeUnmount",
  6941. }
  6942. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6943. return srv.(VolumeServerServer).VolumeUnmount(ctx, req.(*VolumeUnmountRequest))
  6944. }
  6945. return interceptor(ctx, in, info, handler)
  6946. }
  6947. func _VolumeServer_VolumeDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6948. in := new(VolumeDeleteRequest)
  6949. if err := dec(in); err != nil {
  6950. return nil, err
  6951. }
  6952. if interceptor == nil {
  6953. return srv.(VolumeServerServer).VolumeDelete(ctx, in)
  6954. }
  6955. info := &grpc.UnaryServerInfo{
  6956. Server: srv,
  6957. FullMethod: "/volume_server_pb.VolumeServer/VolumeDelete",
  6958. }
  6959. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6960. return srv.(VolumeServerServer).VolumeDelete(ctx, req.(*VolumeDeleteRequest))
  6961. }
  6962. return interceptor(ctx, in, info, handler)
  6963. }
  6964. func _VolumeServer_VolumeMarkReadonly_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6965. in := new(VolumeMarkReadonlyRequest)
  6966. if err := dec(in); err != nil {
  6967. return nil, err
  6968. }
  6969. if interceptor == nil {
  6970. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, in)
  6971. }
  6972. info := &grpc.UnaryServerInfo{
  6973. Server: srv,
  6974. FullMethod: "/volume_server_pb.VolumeServer/VolumeMarkReadonly",
  6975. }
  6976. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6977. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, req.(*VolumeMarkReadonlyRequest))
  6978. }
  6979. return interceptor(ctx, in, info, handler)
  6980. }
  6981. func _VolumeServer_VolumeMarkWritable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6982. in := new(VolumeMarkWritableRequest)
  6983. if err := dec(in); err != nil {
  6984. return nil, err
  6985. }
  6986. if interceptor == nil {
  6987. return srv.(VolumeServerServer).VolumeMarkWritable(ctx, in)
  6988. }
  6989. info := &grpc.UnaryServerInfo{
  6990. Server: srv,
  6991. FullMethod: "/volume_server_pb.VolumeServer/VolumeMarkWritable",
  6992. }
  6993. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6994. return srv.(VolumeServerServer).VolumeMarkWritable(ctx, req.(*VolumeMarkWritableRequest))
  6995. }
  6996. return interceptor(ctx, in, info, handler)
  6997. }
  6998. func _VolumeServer_VolumeConfigure_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6999. in := new(VolumeConfigureRequest)
  7000. if err := dec(in); err != nil {
  7001. return nil, err
  7002. }
  7003. if interceptor == nil {
  7004. return srv.(VolumeServerServer).VolumeConfigure(ctx, in)
  7005. }
  7006. info := &grpc.UnaryServerInfo{
  7007. Server: srv,
  7008. FullMethod: "/volume_server_pb.VolumeServer/VolumeConfigure",
  7009. }
  7010. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7011. return srv.(VolumeServerServer).VolumeConfigure(ctx, req.(*VolumeConfigureRequest))
  7012. }
  7013. return interceptor(ctx, in, info, handler)
  7014. }
  7015. func _VolumeServer_VolumeStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7016. in := new(VolumeStatusRequest)
  7017. if err := dec(in); err != nil {
  7018. return nil, err
  7019. }
  7020. if interceptor == nil {
  7021. return srv.(VolumeServerServer).VolumeStatus(ctx, in)
  7022. }
  7023. info := &grpc.UnaryServerInfo{
  7024. Server: srv,
  7025. FullMethod: "/volume_server_pb.VolumeServer/VolumeStatus",
  7026. }
  7027. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7028. return srv.(VolumeServerServer).VolumeStatus(ctx, req.(*VolumeStatusRequest))
  7029. }
  7030. return interceptor(ctx, in, info, handler)
  7031. }
  7032. func _VolumeServer_VolumeCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7033. in := new(VolumeCopyRequest)
  7034. if err := dec(in); err != nil {
  7035. return nil, err
  7036. }
  7037. if interceptor == nil {
  7038. return srv.(VolumeServerServer).VolumeCopy(ctx, in)
  7039. }
  7040. info := &grpc.UnaryServerInfo{
  7041. Server: srv,
  7042. FullMethod: "/volume_server_pb.VolumeServer/VolumeCopy",
  7043. }
  7044. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7045. return srv.(VolumeServerServer).VolumeCopy(ctx, req.(*VolumeCopyRequest))
  7046. }
  7047. return interceptor(ctx, in, info, handler)
  7048. }
  7049. func _VolumeServer_ReadVolumeFileStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7050. in := new(ReadVolumeFileStatusRequest)
  7051. if err := dec(in); err != nil {
  7052. return nil, err
  7053. }
  7054. if interceptor == nil {
  7055. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, in)
  7056. }
  7057. info := &grpc.UnaryServerInfo{
  7058. Server: srv,
  7059. FullMethod: "/volume_server_pb.VolumeServer/ReadVolumeFileStatus",
  7060. }
  7061. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7062. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, req.(*ReadVolumeFileStatusRequest))
  7063. }
  7064. return interceptor(ctx, in, info, handler)
  7065. }
  7066. func _VolumeServer_CopyFile_Handler(srv interface{}, stream grpc.ServerStream) error {
  7067. m := new(CopyFileRequest)
  7068. if err := stream.RecvMsg(m); err != nil {
  7069. return err
  7070. }
  7071. return srv.(VolumeServerServer).CopyFile(m, &volumeServerCopyFileServer{stream})
  7072. }
  7073. type VolumeServer_CopyFileServer interface {
  7074. Send(*CopyFileResponse) error
  7075. grpc.ServerStream
  7076. }
  7077. type volumeServerCopyFileServer struct {
  7078. grpc.ServerStream
  7079. }
  7080. func (x *volumeServerCopyFileServer) Send(m *CopyFileResponse) error {
  7081. return x.ServerStream.SendMsg(m)
  7082. }
  7083. func _VolumeServer_VolumeTailSender_Handler(srv interface{}, stream grpc.ServerStream) error {
  7084. m := new(VolumeTailSenderRequest)
  7085. if err := stream.RecvMsg(m); err != nil {
  7086. return err
  7087. }
  7088. return srv.(VolumeServerServer).VolumeTailSender(m, &volumeServerVolumeTailSenderServer{stream})
  7089. }
  7090. type VolumeServer_VolumeTailSenderServer interface {
  7091. Send(*VolumeTailSenderResponse) error
  7092. grpc.ServerStream
  7093. }
  7094. type volumeServerVolumeTailSenderServer struct {
  7095. grpc.ServerStream
  7096. }
  7097. func (x *volumeServerVolumeTailSenderServer) Send(m *VolumeTailSenderResponse) error {
  7098. return x.ServerStream.SendMsg(m)
  7099. }
  7100. func _VolumeServer_VolumeTailReceiver_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7101. in := new(VolumeTailReceiverRequest)
  7102. if err := dec(in); err != nil {
  7103. return nil, err
  7104. }
  7105. if interceptor == nil {
  7106. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, in)
  7107. }
  7108. info := &grpc.UnaryServerInfo{
  7109. Server: srv,
  7110. FullMethod: "/volume_server_pb.VolumeServer/VolumeTailReceiver",
  7111. }
  7112. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7113. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, req.(*VolumeTailReceiverRequest))
  7114. }
  7115. return interceptor(ctx, in, info, handler)
  7116. }
  7117. func _VolumeServer_VolumeEcShardsGenerate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7118. in := new(VolumeEcShardsGenerateRequest)
  7119. if err := dec(in); err != nil {
  7120. return nil, err
  7121. }
  7122. if interceptor == nil {
  7123. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, in)
  7124. }
  7125. info := &grpc.UnaryServerInfo{
  7126. Server: srv,
  7127. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate",
  7128. }
  7129. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7130. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, req.(*VolumeEcShardsGenerateRequest))
  7131. }
  7132. return interceptor(ctx, in, info, handler)
  7133. }
  7134. func _VolumeServer_VolumeEcShardsRebuild_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7135. in := new(VolumeEcShardsRebuildRequest)
  7136. if err := dec(in); err != nil {
  7137. return nil, err
  7138. }
  7139. if interceptor == nil {
  7140. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, in)
  7141. }
  7142. info := &grpc.UnaryServerInfo{
  7143. Server: srv,
  7144. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild",
  7145. }
  7146. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7147. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, req.(*VolumeEcShardsRebuildRequest))
  7148. }
  7149. return interceptor(ctx, in, info, handler)
  7150. }
  7151. func _VolumeServer_VolumeEcShardsCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7152. in := new(VolumeEcShardsCopyRequest)
  7153. if err := dec(in); err != nil {
  7154. return nil, err
  7155. }
  7156. if interceptor == nil {
  7157. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, in)
  7158. }
  7159. info := &grpc.UnaryServerInfo{
  7160. Server: srv,
  7161. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsCopy",
  7162. }
  7163. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7164. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, req.(*VolumeEcShardsCopyRequest))
  7165. }
  7166. return interceptor(ctx, in, info, handler)
  7167. }
  7168. func _VolumeServer_VolumeEcShardsDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7169. in := new(VolumeEcShardsDeleteRequest)
  7170. if err := dec(in); err != nil {
  7171. return nil, err
  7172. }
  7173. if interceptor == nil {
  7174. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, in)
  7175. }
  7176. info := &grpc.UnaryServerInfo{
  7177. Server: srv,
  7178. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsDelete",
  7179. }
  7180. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7181. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, req.(*VolumeEcShardsDeleteRequest))
  7182. }
  7183. return interceptor(ctx, in, info, handler)
  7184. }
  7185. func _VolumeServer_VolumeEcShardsMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7186. in := new(VolumeEcShardsMountRequest)
  7187. if err := dec(in); err != nil {
  7188. return nil, err
  7189. }
  7190. if interceptor == nil {
  7191. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, in)
  7192. }
  7193. info := &grpc.UnaryServerInfo{
  7194. Server: srv,
  7195. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsMount",
  7196. }
  7197. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7198. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, req.(*VolumeEcShardsMountRequest))
  7199. }
  7200. return interceptor(ctx, in, info, handler)
  7201. }
  7202. func _VolumeServer_VolumeEcShardsUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7203. in := new(VolumeEcShardsUnmountRequest)
  7204. if err := dec(in); err != nil {
  7205. return nil, err
  7206. }
  7207. if interceptor == nil {
  7208. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, in)
  7209. }
  7210. info := &grpc.UnaryServerInfo{
  7211. Server: srv,
  7212. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount",
  7213. }
  7214. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7215. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, req.(*VolumeEcShardsUnmountRequest))
  7216. }
  7217. return interceptor(ctx, in, info, handler)
  7218. }
  7219. func _VolumeServer_VolumeEcShardRead_Handler(srv interface{}, stream grpc.ServerStream) error {
  7220. m := new(VolumeEcShardReadRequest)
  7221. if err := stream.RecvMsg(m); err != nil {
  7222. return err
  7223. }
  7224. return srv.(VolumeServerServer).VolumeEcShardRead(m, &volumeServerVolumeEcShardReadServer{stream})
  7225. }
  7226. type VolumeServer_VolumeEcShardReadServer interface {
  7227. Send(*VolumeEcShardReadResponse) error
  7228. grpc.ServerStream
  7229. }
  7230. type volumeServerVolumeEcShardReadServer struct {
  7231. grpc.ServerStream
  7232. }
  7233. func (x *volumeServerVolumeEcShardReadServer) Send(m *VolumeEcShardReadResponse) error {
  7234. return x.ServerStream.SendMsg(m)
  7235. }
  7236. func _VolumeServer_VolumeEcBlobDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7237. in := new(VolumeEcBlobDeleteRequest)
  7238. if err := dec(in); err != nil {
  7239. return nil, err
  7240. }
  7241. if interceptor == nil {
  7242. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, in)
  7243. }
  7244. info := &grpc.UnaryServerInfo{
  7245. Server: srv,
  7246. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcBlobDelete",
  7247. }
  7248. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7249. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, req.(*VolumeEcBlobDeleteRequest))
  7250. }
  7251. return interceptor(ctx, in, info, handler)
  7252. }
  7253. func _VolumeServer_VolumeEcShardsToVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7254. in := new(VolumeEcShardsToVolumeRequest)
  7255. if err := dec(in); err != nil {
  7256. return nil, err
  7257. }
  7258. if interceptor == nil {
  7259. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, in)
  7260. }
  7261. info := &grpc.UnaryServerInfo{
  7262. Server: srv,
  7263. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume",
  7264. }
  7265. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7266. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, req.(*VolumeEcShardsToVolumeRequest))
  7267. }
  7268. return interceptor(ctx, in, info, handler)
  7269. }
  7270. func _VolumeServer_VolumeTierMoveDatToRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  7271. m := new(VolumeTierMoveDatToRemoteRequest)
  7272. if err := stream.RecvMsg(m); err != nil {
  7273. return err
  7274. }
  7275. return srv.(VolumeServerServer).VolumeTierMoveDatToRemote(m, &volumeServerVolumeTierMoveDatToRemoteServer{stream})
  7276. }
  7277. type VolumeServer_VolumeTierMoveDatToRemoteServer interface {
  7278. Send(*VolumeTierMoveDatToRemoteResponse) error
  7279. grpc.ServerStream
  7280. }
  7281. type volumeServerVolumeTierMoveDatToRemoteServer struct {
  7282. grpc.ServerStream
  7283. }
  7284. func (x *volumeServerVolumeTierMoveDatToRemoteServer) Send(m *VolumeTierMoveDatToRemoteResponse) error {
  7285. return x.ServerStream.SendMsg(m)
  7286. }
  7287. func _VolumeServer_VolumeTierMoveDatFromRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  7288. m := new(VolumeTierMoveDatFromRemoteRequest)
  7289. if err := stream.RecvMsg(m); err != nil {
  7290. return err
  7291. }
  7292. return srv.(VolumeServerServer).VolumeTierMoveDatFromRemote(m, &volumeServerVolumeTierMoveDatFromRemoteServer{stream})
  7293. }
  7294. type VolumeServer_VolumeTierMoveDatFromRemoteServer interface {
  7295. Send(*VolumeTierMoveDatFromRemoteResponse) error
  7296. grpc.ServerStream
  7297. }
  7298. type volumeServerVolumeTierMoveDatFromRemoteServer struct {
  7299. grpc.ServerStream
  7300. }
  7301. func (x *volumeServerVolumeTierMoveDatFromRemoteServer) Send(m *VolumeTierMoveDatFromRemoteResponse) error {
  7302. return x.ServerStream.SendMsg(m)
  7303. }
  7304. func _VolumeServer_VolumeServerStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7305. in := new(VolumeServerStatusRequest)
  7306. if err := dec(in); err != nil {
  7307. return nil, err
  7308. }
  7309. if interceptor == nil {
  7310. return srv.(VolumeServerServer).VolumeServerStatus(ctx, in)
  7311. }
  7312. info := &grpc.UnaryServerInfo{
  7313. Server: srv,
  7314. FullMethod: "/volume_server_pb.VolumeServer/VolumeServerStatus",
  7315. }
  7316. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7317. return srv.(VolumeServerServer).VolumeServerStatus(ctx, req.(*VolumeServerStatusRequest))
  7318. }
  7319. return interceptor(ctx, in, info, handler)
  7320. }
  7321. func _VolumeServer_VolumeServerLeave_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7322. in := new(VolumeServerLeaveRequest)
  7323. if err := dec(in); err != nil {
  7324. return nil, err
  7325. }
  7326. if interceptor == nil {
  7327. return srv.(VolumeServerServer).VolumeServerLeave(ctx, in)
  7328. }
  7329. info := &grpc.UnaryServerInfo{
  7330. Server: srv,
  7331. FullMethod: "/volume_server_pb.VolumeServer/VolumeServerLeave",
  7332. }
  7333. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7334. return srv.(VolumeServerServer).VolumeServerLeave(ctx, req.(*VolumeServerLeaveRequest))
  7335. }
  7336. return interceptor(ctx, in, info, handler)
  7337. }
  7338. func _VolumeServer_Query_Handler(srv interface{}, stream grpc.ServerStream) error {
  7339. m := new(QueryRequest)
  7340. if err := stream.RecvMsg(m); err != nil {
  7341. return err
  7342. }
  7343. return srv.(VolumeServerServer).Query(m, &volumeServerQueryServer{stream})
  7344. }
  7345. type VolumeServer_QueryServer interface {
  7346. Send(*QueriedStripe) error
  7347. grpc.ServerStream
  7348. }
  7349. type volumeServerQueryServer struct {
  7350. grpc.ServerStream
  7351. }
  7352. func (x *volumeServerQueryServer) Send(m *QueriedStripe) error {
  7353. return x.ServerStream.SendMsg(m)
  7354. }
  7355. func _VolumeServer_VolumeNeedleStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7356. in := new(VolumeNeedleStatusRequest)
  7357. if err := dec(in); err != nil {
  7358. return nil, err
  7359. }
  7360. if interceptor == nil {
  7361. return srv.(VolumeServerServer).VolumeNeedleStatus(ctx, in)
  7362. }
  7363. info := &grpc.UnaryServerInfo{
  7364. Server: srv,
  7365. FullMethod: "/volume_server_pb.VolumeServer/VolumeNeedleStatus",
  7366. }
  7367. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7368. return srv.(VolumeServerServer).VolumeNeedleStatus(ctx, req.(*VolumeNeedleStatusRequest))
  7369. }
  7370. return interceptor(ctx, in, info, handler)
  7371. }
  7372. var _VolumeServer_serviceDesc = grpc.ServiceDesc{
  7373. ServiceName: "volume_server_pb.VolumeServer",
  7374. HandlerType: (*VolumeServerServer)(nil),
  7375. Methods: []grpc.MethodDesc{
  7376. {
  7377. MethodName: "BatchDelete",
  7378. Handler: _VolumeServer_BatchDelete_Handler,
  7379. },
  7380. {
  7381. MethodName: "VacuumVolumeCheck",
  7382. Handler: _VolumeServer_VacuumVolumeCheck_Handler,
  7383. },
  7384. {
  7385. MethodName: "VacuumVolumeCompact",
  7386. Handler: _VolumeServer_VacuumVolumeCompact_Handler,
  7387. },
  7388. {
  7389. MethodName: "VacuumVolumeCommit",
  7390. Handler: _VolumeServer_VacuumVolumeCommit_Handler,
  7391. },
  7392. {
  7393. MethodName: "VacuumVolumeCleanup",
  7394. Handler: _VolumeServer_VacuumVolumeCleanup_Handler,
  7395. },
  7396. {
  7397. MethodName: "DeleteCollection",
  7398. Handler: _VolumeServer_DeleteCollection_Handler,
  7399. },
  7400. {
  7401. MethodName: "AllocateVolume",
  7402. Handler: _VolumeServer_AllocateVolume_Handler,
  7403. },
  7404. {
  7405. MethodName: "VolumeSyncStatus",
  7406. Handler: _VolumeServer_VolumeSyncStatus_Handler,
  7407. },
  7408. {
  7409. MethodName: "VolumeMount",
  7410. Handler: _VolumeServer_VolumeMount_Handler,
  7411. },
  7412. {
  7413. MethodName: "VolumeUnmount",
  7414. Handler: _VolumeServer_VolumeUnmount_Handler,
  7415. },
  7416. {
  7417. MethodName: "VolumeDelete",
  7418. Handler: _VolumeServer_VolumeDelete_Handler,
  7419. },
  7420. {
  7421. MethodName: "VolumeMarkReadonly",
  7422. Handler: _VolumeServer_VolumeMarkReadonly_Handler,
  7423. },
  7424. {
  7425. MethodName: "VolumeMarkWritable",
  7426. Handler: _VolumeServer_VolumeMarkWritable_Handler,
  7427. },
  7428. {
  7429. MethodName: "VolumeConfigure",
  7430. Handler: _VolumeServer_VolumeConfigure_Handler,
  7431. },
  7432. {
  7433. MethodName: "VolumeStatus",
  7434. Handler: _VolumeServer_VolumeStatus_Handler,
  7435. },
  7436. {
  7437. MethodName: "VolumeCopy",
  7438. Handler: _VolumeServer_VolumeCopy_Handler,
  7439. },
  7440. {
  7441. MethodName: "ReadVolumeFileStatus",
  7442. Handler: _VolumeServer_ReadVolumeFileStatus_Handler,
  7443. },
  7444. {
  7445. MethodName: "VolumeTailReceiver",
  7446. Handler: _VolumeServer_VolumeTailReceiver_Handler,
  7447. },
  7448. {
  7449. MethodName: "VolumeEcShardsGenerate",
  7450. Handler: _VolumeServer_VolumeEcShardsGenerate_Handler,
  7451. },
  7452. {
  7453. MethodName: "VolumeEcShardsRebuild",
  7454. Handler: _VolumeServer_VolumeEcShardsRebuild_Handler,
  7455. },
  7456. {
  7457. MethodName: "VolumeEcShardsCopy",
  7458. Handler: _VolumeServer_VolumeEcShardsCopy_Handler,
  7459. },
  7460. {
  7461. MethodName: "VolumeEcShardsDelete",
  7462. Handler: _VolumeServer_VolumeEcShardsDelete_Handler,
  7463. },
  7464. {
  7465. MethodName: "VolumeEcShardsMount",
  7466. Handler: _VolumeServer_VolumeEcShardsMount_Handler,
  7467. },
  7468. {
  7469. MethodName: "VolumeEcShardsUnmount",
  7470. Handler: _VolumeServer_VolumeEcShardsUnmount_Handler,
  7471. },
  7472. {
  7473. MethodName: "VolumeEcBlobDelete",
  7474. Handler: _VolumeServer_VolumeEcBlobDelete_Handler,
  7475. },
  7476. {
  7477. MethodName: "VolumeEcShardsToVolume",
  7478. Handler: _VolumeServer_VolumeEcShardsToVolume_Handler,
  7479. },
  7480. {
  7481. MethodName: "VolumeServerStatus",
  7482. Handler: _VolumeServer_VolumeServerStatus_Handler,
  7483. },
  7484. {
  7485. MethodName: "VolumeServerLeave",
  7486. Handler: _VolumeServer_VolumeServerLeave_Handler,
  7487. },
  7488. {
  7489. MethodName: "VolumeNeedleStatus",
  7490. Handler: _VolumeServer_VolumeNeedleStatus_Handler,
  7491. },
  7492. },
  7493. Streams: []grpc.StreamDesc{
  7494. {
  7495. StreamName: "VolumeIncrementalCopy",
  7496. Handler: _VolumeServer_VolumeIncrementalCopy_Handler,
  7497. ServerStreams: true,
  7498. },
  7499. {
  7500. StreamName: "CopyFile",
  7501. Handler: _VolumeServer_CopyFile_Handler,
  7502. ServerStreams: true,
  7503. },
  7504. {
  7505. StreamName: "VolumeTailSender",
  7506. Handler: _VolumeServer_VolumeTailSender_Handler,
  7507. ServerStreams: true,
  7508. },
  7509. {
  7510. StreamName: "VolumeEcShardRead",
  7511. Handler: _VolumeServer_VolumeEcShardRead_Handler,
  7512. ServerStreams: true,
  7513. },
  7514. {
  7515. StreamName: "VolumeTierMoveDatToRemote",
  7516. Handler: _VolumeServer_VolumeTierMoveDatToRemote_Handler,
  7517. ServerStreams: true,
  7518. },
  7519. {
  7520. StreamName: "VolumeTierMoveDatFromRemote",
  7521. Handler: _VolumeServer_VolumeTierMoveDatFromRemote_Handler,
  7522. ServerStreams: true,
  7523. },
  7524. {
  7525. StreamName: "Query",
  7526. Handler: _VolumeServer_Query_Handler,
  7527. ServerStreams: true,
  7528. },
  7529. },
  7530. Metadata: "volume_server.proto",
  7531. }