volume_server.pb.go 317 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467
  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. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  598. }
  599. func (x *AllocateVolumeRequest) Reset() {
  600. *x = AllocateVolumeRequest{}
  601. if protoimpl.UnsafeEnabled {
  602. mi := &file_volume_server_proto_msgTypes[14]
  603. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  604. ms.StoreMessageInfo(mi)
  605. }
  606. }
  607. func (x *AllocateVolumeRequest) String() string {
  608. return protoimpl.X.MessageStringOf(x)
  609. }
  610. func (*AllocateVolumeRequest) ProtoMessage() {}
  611. func (x *AllocateVolumeRequest) ProtoReflect() protoreflect.Message {
  612. mi := &file_volume_server_proto_msgTypes[14]
  613. if protoimpl.UnsafeEnabled && x != nil {
  614. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  615. if ms.LoadMessageInfo() == nil {
  616. ms.StoreMessageInfo(mi)
  617. }
  618. return ms
  619. }
  620. return mi.MessageOf(x)
  621. }
  622. // Deprecated: Use AllocateVolumeRequest.ProtoReflect.Descriptor instead.
  623. func (*AllocateVolumeRequest) Descriptor() ([]byte, []int) {
  624. return file_volume_server_proto_rawDescGZIP(), []int{14}
  625. }
  626. func (x *AllocateVolumeRequest) GetVolumeId() uint32 {
  627. if x != nil {
  628. return x.VolumeId
  629. }
  630. return 0
  631. }
  632. func (x *AllocateVolumeRequest) GetCollection() string {
  633. if x != nil {
  634. return x.Collection
  635. }
  636. return ""
  637. }
  638. func (x *AllocateVolumeRequest) GetPreallocate() int64 {
  639. if x != nil {
  640. return x.Preallocate
  641. }
  642. return 0
  643. }
  644. func (x *AllocateVolumeRequest) GetReplication() string {
  645. if x != nil {
  646. return x.Replication
  647. }
  648. return ""
  649. }
  650. func (x *AllocateVolumeRequest) GetTtl() string {
  651. if x != nil {
  652. return x.Ttl
  653. }
  654. return ""
  655. }
  656. func (x *AllocateVolumeRequest) GetMemoryMapMaxSizeMb() uint32 {
  657. if x != nil {
  658. return x.MemoryMapMaxSizeMb
  659. }
  660. return 0
  661. }
  662. func (x *AllocateVolumeRequest) GetDiskType() string {
  663. if x != nil {
  664. return x.DiskType
  665. }
  666. return ""
  667. }
  668. type AllocateVolumeResponse struct {
  669. state protoimpl.MessageState
  670. sizeCache protoimpl.SizeCache
  671. unknownFields protoimpl.UnknownFields
  672. }
  673. func (x *AllocateVolumeResponse) Reset() {
  674. *x = AllocateVolumeResponse{}
  675. if protoimpl.UnsafeEnabled {
  676. mi := &file_volume_server_proto_msgTypes[15]
  677. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  678. ms.StoreMessageInfo(mi)
  679. }
  680. }
  681. func (x *AllocateVolumeResponse) String() string {
  682. return protoimpl.X.MessageStringOf(x)
  683. }
  684. func (*AllocateVolumeResponse) ProtoMessage() {}
  685. func (x *AllocateVolumeResponse) ProtoReflect() protoreflect.Message {
  686. mi := &file_volume_server_proto_msgTypes[15]
  687. if protoimpl.UnsafeEnabled && x != nil {
  688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  689. if ms.LoadMessageInfo() == nil {
  690. ms.StoreMessageInfo(mi)
  691. }
  692. return ms
  693. }
  694. return mi.MessageOf(x)
  695. }
  696. // Deprecated: Use AllocateVolumeResponse.ProtoReflect.Descriptor instead.
  697. func (*AllocateVolumeResponse) Descriptor() ([]byte, []int) {
  698. return file_volume_server_proto_rawDescGZIP(), []int{15}
  699. }
  700. type VolumeSyncStatusRequest struct {
  701. state protoimpl.MessageState
  702. sizeCache protoimpl.SizeCache
  703. unknownFields protoimpl.UnknownFields
  704. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  705. }
  706. func (x *VolumeSyncStatusRequest) Reset() {
  707. *x = VolumeSyncStatusRequest{}
  708. if protoimpl.UnsafeEnabled {
  709. mi := &file_volume_server_proto_msgTypes[16]
  710. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  711. ms.StoreMessageInfo(mi)
  712. }
  713. }
  714. func (x *VolumeSyncStatusRequest) String() string {
  715. return protoimpl.X.MessageStringOf(x)
  716. }
  717. func (*VolumeSyncStatusRequest) ProtoMessage() {}
  718. func (x *VolumeSyncStatusRequest) ProtoReflect() protoreflect.Message {
  719. mi := &file_volume_server_proto_msgTypes[16]
  720. if protoimpl.UnsafeEnabled && x != nil {
  721. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  722. if ms.LoadMessageInfo() == nil {
  723. ms.StoreMessageInfo(mi)
  724. }
  725. return ms
  726. }
  727. return mi.MessageOf(x)
  728. }
  729. // Deprecated: Use VolumeSyncStatusRequest.ProtoReflect.Descriptor instead.
  730. func (*VolumeSyncStatusRequest) Descriptor() ([]byte, []int) {
  731. return file_volume_server_proto_rawDescGZIP(), []int{16}
  732. }
  733. func (x *VolumeSyncStatusRequest) GetVolumeId() uint32 {
  734. if x != nil {
  735. return x.VolumeId
  736. }
  737. return 0
  738. }
  739. type VolumeSyncStatusResponse struct {
  740. state protoimpl.MessageState
  741. sizeCache protoimpl.SizeCache
  742. unknownFields protoimpl.UnknownFields
  743. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  744. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  745. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  746. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  747. TailOffset uint64 `protobuf:"varint,6,opt,name=tail_offset,json=tailOffset,proto3" json:"tail_offset,omitempty"`
  748. CompactRevision uint32 `protobuf:"varint,7,opt,name=compact_revision,json=compactRevision,proto3" json:"compact_revision,omitempty"`
  749. IdxFileSize uint64 `protobuf:"varint,8,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  750. }
  751. func (x *VolumeSyncStatusResponse) Reset() {
  752. *x = VolumeSyncStatusResponse{}
  753. if protoimpl.UnsafeEnabled {
  754. mi := &file_volume_server_proto_msgTypes[17]
  755. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  756. ms.StoreMessageInfo(mi)
  757. }
  758. }
  759. func (x *VolumeSyncStatusResponse) String() string {
  760. return protoimpl.X.MessageStringOf(x)
  761. }
  762. func (*VolumeSyncStatusResponse) ProtoMessage() {}
  763. func (x *VolumeSyncStatusResponse) ProtoReflect() protoreflect.Message {
  764. mi := &file_volume_server_proto_msgTypes[17]
  765. if protoimpl.UnsafeEnabled && x != nil {
  766. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  767. if ms.LoadMessageInfo() == nil {
  768. ms.StoreMessageInfo(mi)
  769. }
  770. return ms
  771. }
  772. return mi.MessageOf(x)
  773. }
  774. // Deprecated: Use VolumeSyncStatusResponse.ProtoReflect.Descriptor instead.
  775. func (*VolumeSyncStatusResponse) Descriptor() ([]byte, []int) {
  776. return file_volume_server_proto_rawDescGZIP(), []int{17}
  777. }
  778. func (x *VolumeSyncStatusResponse) GetVolumeId() uint32 {
  779. if x != nil {
  780. return x.VolumeId
  781. }
  782. return 0
  783. }
  784. func (x *VolumeSyncStatusResponse) GetCollection() string {
  785. if x != nil {
  786. return x.Collection
  787. }
  788. return ""
  789. }
  790. func (x *VolumeSyncStatusResponse) GetReplication() string {
  791. if x != nil {
  792. return x.Replication
  793. }
  794. return ""
  795. }
  796. func (x *VolumeSyncStatusResponse) GetTtl() string {
  797. if x != nil {
  798. return x.Ttl
  799. }
  800. return ""
  801. }
  802. func (x *VolumeSyncStatusResponse) GetTailOffset() uint64 {
  803. if x != nil {
  804. return x.TailOffset
  805. }
  806. return 0
  807. }
  808. func (x *VolumeSyncStatusResponse) GetCompactRevision() uint32 {
  809. if x != nil {
  810. return x.CompactRevision
  811. }
  812. return 0
  813. }
  814. func (x *VolumeSyncStatusResponse) GetIdxFileSize() uint64 {
  815. if x != nil {
  816. return x.IdxFileSize
  817. }
  818. return 0
  819. }
  820. type VolumeIncrementalCopyRequest struct {
  821. state protoimpl.MessageState
  822. sizeCache protoimpl.SizeCache
  823. unknownFields protoimpl.UnknownFields
  824. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  825. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  826. }
  827. func (x *VolumeIncrementalCopyRequest) Reset() {
  828. *x = VolumeIncrementalCopyRequest{}
  829. if protoimpl.UnsafeEnabled {
  830. mi := &file_volume_server_proto_msgTypes[18]
  831. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  832. ms.StoreMessageInfo(mi)
  833. }
  834. }
  835. func (x *VolumeIncrementalCopyRequest) String() string {
  836. return protoimpl.X.MessageStringOf(x)
  837. }
  838. func (*VolumeIncrementalCopyRequest) ProtoMessage() {}
  839. func (x *VolumeIncrementalCopyRequest) ProtoReflect() protoreflect.Message {
  840. mi := &file_volume_server_proto_msgTypes[18]
  841. if protoimpl.UnsafeEnabled && x != nil {
  842. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  843. if ms.LoadMessageInfo() == nil {
  844. ms.StoreMessageInfo(mi)
  845. }
  846. return ms
  847. }
  848. return mi.MessageOf(x)
  849. }
  850. // Deprecated: Use VolumeIncrementalCopyRequest.ProtoReflect.Descriptor instead.
  851. func (*VolumeIncrementalCopyRequest) Descriptor() ([]byte, []int) {
  852. return file_volume_server_proto_rawDescGZIP(), []int{18}
  853. }
  854. func (x *VolumeIncrementalCopyRequest) GetVolumeId() uint32 {
  855. if x != nil {
  856. return x.VolumeId
  857. }
  858. return 0
  859. }
  860. func (x *VolumeIncrementalCopyRequest) GetSinceNs() uint64 {
  861. if x != nil {
  862. return x.SinceNs
  863. }
  864. return 0
  865. }
  866. type VolumeIncrementalCopyResponse struct {
  867. state protoimpl.MessageState
  868. sizeCache protoimpl.SizeCache
  869. unknownFields protoimpl.UnknownFields
  870. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  871. }
  872. func (x *VolumeIncrementalCopyResponse) Reset() {
  873. *x = VolumeIncrementalCopyResponse{}
  874. if protoimpl.UnsafeEnabled {
  875. mi := &file_volume_server_proto_msgTypes[19]
  876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  877. ms.StoreMessageInfo(mi)
  878. }
  879. }
  880. func (x *VolumeIncrementalCopyResponse) String() string {
  881. return protoimpl.X.MessageStringOf(x)
  882. }
  883. func (*VolumeIncrementalCopyResponse) ProtoMessage() {}
  884. func (x *VolumeIncrementalCopyResponse) ProtoReflect() protoreflect.Message {
  885. mi := &file_volume_server_proto_msgTypes[19]
  886. if protoimpl.UnsafeEnabled && x != nil {
  887. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  888. if ms.LoadMessageInfo() == nil {
  889. ms.StoreMessageInfo(mi)
  890. }
  891. return ms
  892. }
  893. return mi.MessageOf(x)
  894. }
  895. // Deprecated: Use VolumeIncrementalCopyResponse.ProtoReflect.Descriptor instead.
  896. func (*VolumeIncrementalCopyResponse) Descriptor() ([]byte, []int) {
  897. return file_volume_server_proto_rawDescGZIP(), []int{19}
  898. }
  899. func (x *VolumeIncrementalCopyResponse) GetFileContent() []byte {
  900. if x != nil {
  901. return x.FileContent
  902. }
  903. return nil
  904. }
  905. type VolumeMountRequest struct {
  906. state protoimpl.MessageState
  907. sizeCache protoimpl.SizeCache
  908. unknownFields protoimpl.UnknownFields
  909. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  910. }
  911. func (x *VolumeMountRequest) Reset() {
  912. *x = VolumeMountRequest{}
  913. if protoimpl.UnsafeEnabled {
  914. mi := &file_volume_server_proto_msgTypes[20]
  915. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  916. ms.StoreMessageInfo(mi)
  917. }
  918. }
  919. func (x *VolumeMountRequest) String() string {
  920. return protoimpl.X.MessageStringOf(x)
  921. }
  922. func (*VolumeMountRequest) ProtoMessage() {}
  923. func (x *VolumeMountRequest) ProtoReflect() protoreflect.Message {
  924. mi := &file_volume_server_proto_msgTypes[20]
  925. if protoimpl.UnsafeEnabled && x != nil {
  926. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  927. if ms.LoadMessageInfo() == nil {
  928. ms.StoreMessageInfo(mi)
  929. }
  930. return ms
  931. }
  932. return mi.MessageOf(x)
  933. }
  934. // Deprecated: Use VolumeMountRequest.ProtoReflect.Descriptor instead.
  935. func (*VolumeMountRequest) Descriptor() ([]byte, []int) {
  936. return file_volume_server_proto_rawDescGZIP(), []int{20}
  937. }
  938. func (x *VolumeMountRequest) GetVolumeId() uint32 {
  939. if x != nil {
  940. return x.VolumeId
  941. }
  942. return 0
  943. }
  944. type VolumeMountResponse struct {
  945. state protoimpl.MessageState
  946. sizeCache protoimpl.SizeCache
  947. unknownFields protoimpl.UnknownFields
  948. }
  949. func (x *VolumeMountResponse) Reset() {
  950. *x = VolumeMountResponse{}
  951. if protoimpl.UnsafeEnabled {
  952. mi := &file_volume_server_proto_msgTypes[21]
  953. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  954. ms.StoreMessageInfo(mi)
  955. }
  956. }
  957. func (x *VolumeMountResponse) String() string {
  958. return protoimpl.X.MessageStringOf(x)
  959. }
  960. func (*VolumeMountResponse) ProtoMessage() {}
  961. func (x *VolumeMountResponse) ProtoReflect() protoreflect.Message {
  962. mi := &file_volume_server_proto_msgTypes[21]
  963. if protoimpl.UnsafeEnabled && x != nil {
  964. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  965. if ms.LoadMessageInfo() == nil {
  966. ms.StoreMessageInfo(mi)
  967. }
  968. return ms
  969. }
  970. return mi.MessageOf(x)
  971. }
  972. // Deprecated: Use VolumeMountResponse.ProtoReflect.Descriptor instead.
  973. func (*VolumeMountResponse) Descriptor() ([]byte, []int) {
  974. return file_volume_server_proto_rawDescGZIP(), []int{21}
  975. }
  976. type VolumeUnmountRequest struct {
  977. state protoimpl.MessageState
  978. sizeCache protoimpl.SizeCache
  979. unknownFields protoimpl.UnknownFields
  980. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  981. }
  982. func (x *VolumeUnmountRequest) Reset() {
  983. *x = VolumeUnmountRequest{}
  984. if protoimpl.UnsafeEnabled {
  985. mi := &file_volume_server_proto_msgTypes[22]
  986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  987. ms.StoreMessageInfo(mi)
  988. }
  989. }
  990. func (x *VolumeUnmountRequest) String() string {
  991. return protoimpl.X.MessageStringOf(x)
  992. }
  993. func (*VolumeUnmountRequest) ProtoMessage() {}
  994. func (x *VolumeUnmountRequest) ProtoReflect() protoreflect.Message {
  995. mi := &file_volume_server_proto_msgTypes[22]
  996. if protoimpl.UnsafeEnabled && x != nil {
  997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  998. if ms.LoadMessageInfo() == nil {
  999. ms.StoreMessageInfo(mi)
  1000. }
  1001. return ms
  1002. }
  1003. return mi.MessageOf(x)
  1004. }
  1005. // Deprecated: Use VolumeUnmountRequest.ProtoReflect.Descriptor instead.
  1006. func (*VolumeUnmountRequest) Descriptor() ([]byte, []int) {
  1007. return file_volume_server_proto_rawDescGZIP(), []int{22}
  1008. }
  1009. func (x *VolumeUnmountRequest) GetVolumeId() uint32 {
  1010. if x != nil {
  1011. return x.VolumeId
  1012. }
  1013. return 0
  1014. }
  1015. type VolumeUnmountResponse struct {
  1016. state protoimpl.MessageState
  1017. sizeCache protoimpl.SizeCache
  1018. unknownFields protoimpl.UnknownFields
  1019. }
  1020. func (x *VolumeUnmountResponse) Reset() {
  1021. *x = VolumeUnmountResponse{}
  1022. if protoimpl.UnsafeEnabled {
  1023. mi := &file_volume_server_proto_msgTypes[23]
  1024. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1025. ms.StoreMessageInfo(mi)
  1026. }
  1027. }
  1028. func (x *VolumeUnmountResponse) String() string {
  1029. return protoimpl.X.MessageStringOf(x)
  1030. }
  1031. func (*VolumeUnmountResponse) ProtoMessage() {}
  1032. func (x *VolumeUnmountResponse) ProtoReflect() protoreflect.Message {
  1033. mi := &file_volume_server_proto_msgTypes[23]
  1034. if protoimpl.UnsafeEnabled && x != nil {
  1035. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1036. if ms.LoadMessageInfo() == nil {
  1037. ms.StoreMessageInfo(mi)
  1038. }
  1039. return ms
  1040. }
  1041. return mi.MessageOf(x)
  1042. }
  1043. // Deprecated: Use VolumeUnmountResponse.ProtoReflect.Descriptor instead.
  1044. func (*VolumeUnmountResponse) Descriptor() ([]byte, []int) {
  1045. return file_volume_server_proto_rawDescGZIP(), []int{23}
  1046. }
  1047. type VolumeDeleteRequest struct {
  1048. state protoimpl.MessageState
  1049. sizeCache protoimpl.SizeCache
  1050. unknownFields protoimpl.UnknownFields
  1051. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1052. }
  1053. func (x *VolumeDeleteRequest) Reset() {
  1054. *x = VolumeDeleteRequest{}
  1055. if protoimpl.UnsafeEnabled {
  1056. mi := &file_volume_server_proto_msgTypes[24]
  1057. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1058. ms.StoreMessageInfo(mi)
  1059. }
  1060. }
  1061. func (x *VolumeDeleteRequest) String() string {
  1062. return protoimpl.X.MessageStringOf(x)
  1063. }
  1064. func (*VolumeDeleteRequest) ProtoMessage() {}
  1065. func (x *VolumeDeleteRequest) ProtoReflect() protoreflect.Message {
  1066. mi := &file_volume_server_proto_msgTypes[24]
  1067. if protoimpl.UnsafeEnabled && x != nil {
  1068. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1069. if ms.LoadMessageInfo() == nil {
  1070. ms.StoreMessageInfo(mi)
  1071. }
  1072. return ms
  1073. }
  1074. return mi.MessageOf(x)
  1075. }
  1076. // Deprecated: Use VolumeDeleteRequest.ProtoReflect.Descriptor instead.
  1077. func (*VolumeDeleteRequest) Descriptor() ([]byte, []int) {
  1078. return file_volume_server_proto_rawDescGZIP(), []int{24}
  1079. }
  1080. func (x *VolumeDeleteRequest) GetVolumeId() uint32 {
  1081. if x != nil {
  1082. return x.VolumeId
  1083. }
  1084. return 0
  1085. }
  1086. type VolumeDeleteResponse struct {
  1087. state protoimpl.MessageState
  1088. sizeCache protoimpl.SizeCache
  1089. unknownFields protoimpl.UnknownFields
  1090. }
  1091. func (x *VolumeDeleteResponse) Reset() {
  1092. *x = VolumeDeleteResponse{}
  1093. if protoimpl.UnsafeEnabled {
  1094. mi := &file_volume_server_proto_msgTypes[25]
  1095. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1096. ms.StoreMessageInfo(mi)
  1097. }
  1098. }
  1099. func (x *VolumeDeleteResponse) String() string {
  1100. return protoimpl.X.MessageStringOf(x)
  1101. }
  1102. func (*VolumeDeleteResponse) ProtoMessage() {}
  1103. func (x *VolumeDeleteResponse) ProtoReflect() protoreflect.Message {
  1104. mi := &file_volume_server_proto_msgTypes[25]
  1105. if protoimpl.UnsafeEnabled && x != nil {
  1106. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1107. if ms.LoadMessageInfo() == nil {
  1108. ms.StoreMessageInfo(mi)
  1109. }
  1110. return ms
  1111. }
  1112. return mi.MessageOf(x)
  1113. }
  1114. // Deprecated: Use VolumeDeleteResponse.ProtoReflect.Descriptor instead.
  1115. func (*VolumeDeleteResponse) Descriptor() ([]byte, []int) {
  1116. return file_volume_server_proto_rawDescGZIP(), []int{25}
  1117. }
  1118. type VolumeMarkReadonlyRequest struct {
  1119. state protoimpl.MessageState
  1120. sizeCache protoimpl.SizeCache
  1121. unknownFields protoimpl.UnknownFields
  1122. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1123. }
  1124. func (x *VolumeMarkReadonlyRequest) Reset() {
  1125. *x = VolumeMarkReadonlyRequest{}
  1126. if protoimpl.UnsafeEnabled {
  1127. mi := &file_volume_server_proto_msgTypes[26]
  1128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1129. ms.StoreMessageInfo(mi)
  1130. }
  1131. }
  1132. func (x *VolumeMarkReadonlyRequest) String() string {
  1133. return protoimpl.X.MessageStringOf(x)
  1134. }
  1135. func (*VolumeMarkReadonlyRequest) ProtoMessage() {}
  1136. func (x *VolumeMarkReadonlyRequest) ProtoReflect() protoreflect.Message {
  1137. mi := &file_volume_server_proto_msgTypes[26]
  1138. if protoimpl.UnsafeEnabled && x != nil {
  1139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1140. if ms.LoadMessageInfo() == nil {
  1141. ms.StoreMessageInfo(mi)
  1142. }
  1143. return ms
  1144. }
  1145. return mi.MessageOf(x)
  1146. }
  1147. // Deprecated: Use VolumeMarkReadonlyRequest.ProtoReflect.Descriptor instead.
  1148. func (*VolumeMarkReadonlyRequest) Descriptor() ([]byte, []int) {
  1149. return file_volume_server_proto_rawDescGZIP(), []int{26}
  1150. }
  1151. func (x *VolumeMarkReadonlyRequest) GetVolumeId() uint32 {
  1152. if x != nil {
  1153. return x.VolumeId
  1154. }
  1155. return 0
  1156. }
  1157. type VolumeMarkReadonlyResponse struct {
  1158. state protoimpl.MessageState
  1159. sizeCache protoimpl.SizeCache
  1160. unknownFields protoimpl.UnknownFields
  1161. }
  1162. func (x *VolumeMarkReadonlyResponse) Reset() {
  1163. *x = VolumeMarkReadonlyResponse{}
  1164. if protoimpl.UnsafeEnabled {
  1165. mi := &file_volume_server_proto_msgTypes[27]
  1166. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1167. ms.StoreMessageInfo(mi)
  1168. }
  1169. }
  1170. func (x *VolumeMarkReadonlyResponse) String() string {
  1171. return protoimpl.X.MessageStringOf(x)
  1172. }
  1173. func (*VolumeMarkReadonlyResponse) ProtoMessage() {}
  1174. func (x *VolumeMarkReadonlyResponse) ProtoReflect() protoreflect.Message {
  1175. mi := &file_volume_server_proto_msgTypes[27]
  1176. if protoimpl.UnsafeEnabled && x != nil {
  1177. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1178. if ms.LoadMessageInfo() == nil {
  1179. ms.StoreMessageInfo(mi)
  1180. }
  1181. return ms
  1182. }
  1183. return mi.MessageOf(x)
  1184. }
  1185. // Deprecated: Use VolumeMarkReadonlyResponse.ProtoReflect.Descriptor instead.
  1186. func (*VolumeMarkReadonlyResponse) Descriptor() ([]byte, []int) {
  1187. return file_volume_server_proto_rawDescGZIP(), []int{27}
  1188. }
  1189. type VolumeMarkWritableRequest struct {
  1190. state protoimpl.MessageState
  1191. sizeCache protoimpl.SizeCache
  1192. unknownFields protoimpl.UnknownFields
  1193. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1194. }
  1195. func (x *VolumeMarkWritableRequest) Reset() {
  1196. *x = VolumeMarkWritableRequest{}
  1197. if protoimpl.UnsafeEnabled {
  1198. mi := &file_volume_server_proto_msgTypes[28]
  1199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1200. ms.StoreMessageInfo(mi)
  1201. }
  1202. }
  1203. func (x *VolumeMarkWritableRequest) String() string {
  1204. return protoimpl.X.MessageStringOf(x)
  1205. }
  1206. func (*VolumeMarkWritableRequest) ProtoMessage() {}
  1207. func (x *VolumeMarkWritableRequest) ProtoReflect() protoreflect.Message {
  1208. mi := &file_volume_server_proto_msgTypes[28]
  1209. if protoimpl.UnsafeEnabled && x != nil {
  1210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1211. if ms.LoadMessageInfo() == nil {
  1212. ms.StoreMessageInfo(mi)
  1213. }
  1214. return ms
  1215. }
  1216. return mi.MessageOf(x)
  1217. }
  1218. // Deprecated: Use VolumeMarkWritableRequest.ProtoReflect.Descriptor instead.
  1219. func (*VolumeMarkWritableRequest) Descriptor() ([]byte, []int) {
  1220. return file_volume_server_proto_rawDescGZIP(), []int{28}
  1221. }
  1222. func (x *VolumeMarkWritableRequest) GetVolumeId() uint32 {
  1223. if x != nil {
  1224. return x.VolumeId
  1225. }
  1226. return 0
  1227. }
  1228. type VolumeMarkWritableResponse struct {
  1229. state protoimpl.MessageState
  1230. sizeCache protoimpl.SizeCache
  1231. unknownFields protoimpl.UnknownFields
  1232. }
  1233. func (x *VolumeMarkWritableResponse) Reset() {
  1234. *x = VolumeMarkWritableResponse{}
  1235. if protoimpl.UnsafeEnabled {
  1236. mi := &file_volume_server_proto_msgTypes[29]
  1237. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1238. ms.StoreMessageInfo(mi)
  1239. }
  1240. }
  1241. func (x *VolumeMarkWritableResponse) String() string {
  1242. return protoimpl.X.MessageStringOf(x)
  1243. }
  1244. func (*VolumeMarkWritableResponse) ProtoMessage() {}
  1245. func (x *VolumeMarkWritableResponse) ProtoReflect() protoreflect.Message {
  1246. mi := &file_volume_server_proto_msgTypes[29]
  1247. if protoimpl.UnsafeEnabled && x != nil {
  1248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1249. if ms.LoadMessageInfo() == nil {
  1250. ms.StoreMessageInfo(mi)
  1251. }
  1252. return ms
  1253. }
  1254. return mi.MessageOf(x)
  1255. }
  1256. // Deprecated: Use VolumeMarkWritableResponse.ProtoReflect.Descriptor instead.
  1257. func (*VolumeMarkWritableResponse) Descriptor() ([]byte, []int) {
  1258. return file_volume_server_proto_rawDescGZIP(), []int{29}
  1259. }
  1260. type VolumeConfigureRequest struct {
  1261. state protoimpl.MessageState
  1262. sizeCache protoimpl.SizeCache
  1263. unknownFields protoimpl.UnknownFields
  1264. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1265. Replication string `protobuf:"bytes,2,opt,name=replication,proto3" json:"replication,omitempty"`
  1266. }
  1267. func (x *VolumeConfigureRequest) Reset() {
  1268. *x = VolumeConfigureRequest{}
  1269. if protoimpl.UnsafeEnabled {
  1270. mi := &file_volume_server_proto_msgTypes[30]
  1271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1272. ms.StoreMessageInfo(mi)
  1273. }
  1274. }
  1275. func (x *VolumeConfigureRequest) String() string {
  1276. return protoimpl.X.MessageStringOf(x)
  1277. }
  1278. func (*VolumeConfigureRequest) ProtoMessage() {}
  1279. func (x *VolumeConfigureRequest) ProtoReflect() protoreflect.Message {
  1280. mi := &file_volume_server_proto_msgTypes[30]
  1281. if protoimpl.UnsafeEnabled && x != nil {
  1282. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1283. if ms.LoadMessageInfo() == nil {
  1284. ms.StoreMessageInfo(mi)
  1285. }
  1286. return ms
  1287. }
  1288. return mi.MessageOf(x)
  1289. }
  1290. // Deprecated: Use VolumeConfigureRequest.ProtoReflect.Descriptor instead.
  1291. func (*VolumeConfigureRequest) Descriptor() ([]byte, []int) {
  1292. return file_volume_server_proto_rawDescGZIP(), []int{30}
  1293. }
  1294. func (x *VolumeConfigureRequest) GetVolumeId() uint32 {
  1295. if x != nil {
  1296. return x.VolumeId
  1297. }
  1298. return 0
  1299. }
  1300. func (x *VolumeConfigureRequest) GetReplication() string {
  1301. if x != nil {
  1302. return x.Replication
  1303. }
  1304. return ""
  1305. }
  1306. type VolumeConfigureResponse struct {
  1307. state protoimpl.MessageState
  1308. sizeCache protoimpl.SizeCache
  1309. unknownFields protoimpl.UnknownFields
  1310. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  1311. }
  1312. func (x *VolumeConfigureResponse) Reset() {
  1313. *x = VolumeConfigureResponse{}
  1314. if protoimpl.UnsafeEnabled {
  1315. mi := &file_volume_server_proto_msgTypes[31]
  1316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1317. ms.StoreMessageInfo(mi)
  1318. }
  1319. }
  1320. func (x *VolumeConfigureResponse) String() string {
  1321. return protoimpl.X.MessageStringOf(x)
  1322. }
  1323. func (*VolumeConfigureResponse) ProtoMessage() {}
  1324. func (x *VolumeConfigureResponse) ProtoReflect() protoreflect.Message {
  1325. mi := &file_volume_server_proto_msgTypes[31]
  1326. if protoimpl.UnsafeEnabled && x != nil {
  1327. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1328. if ms.LoadMessageInfo() == nil {
  1329. ms.StoreMessageInfo(mi)
  1330. }
  1331. return ms
  1332. }
  1333. return mi.MessageOf(x)
  1334. }
  1335. // Deprecated: Use VolumeConfigureResponse.ProtoReflect.Descriptor instead.
  1336. func (*VolumeConfigureResponse) Descriptor() ([]byte, []int) {
  1337. return file_volume_server_proto_rawDescGZIP(), []int{31}
  1338. }
  1339. func (x *VolumeConfigureResponse) GetError() string {
  1340. if x != nil {
  1341. return x.Error
  1342. }
  1343. return ""
  1344. }
  1345. type VolumeStatusRequest struct {
  1346. state protoimpl.MessageState
  1347. sizeCache protoimpl.SizeCache
  1348. unknownFields protoimpl.UnknownFields
  1349. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1350. }
  1351. func (x *VolumeStatusRequest) Reset() {
  1352. *x = VolumeStatusRequest{}
  1353. if protoimpl.UnsafeEnabled {
  1354. mi := &file_volume_server_proto_msgTypes[32]
  1355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1356. ms.StoreMessageInfo(mi)
  1357. }
  1358. }
  1359. func (x *VolumeStatusRequest) String() string {
  1360. return protoimpl.X.MessageStringOf(x)
  1361. }
  1362. func (*VolumeStatusRequest) ProtoMessage() {}
  1363. func (x *VolumeStatusRequest) ProtoReflect() protoreflect.Message {
  1364. mi := &file_volume_server_proto_msgTypes[32]
  1365. if protoimpl.UnsafeEnabled && x != nil {
  1366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1367. if ms.LoadMessageInfo() == nil {
  1368. ms.StoreMessageInfo(mi)
  1369. }
  1370. return ms
  1371. }
  1372. return mi.MessageOf(x)
  1373. }
  1374. // Deprecated: Use VolumeStatusRequest.ProtoReflect.Descriptor instead.
  1375. func (*VolumeStatusRequest) Descriptor() ([]byte, []int) {
  1376. return file_volume_server_proto_rawDescGZIP(), []int{32}
  1377. }
  1378. func (x *VolumeStatusRequest) GetVolumeId() uint32 {
  1379. if x != nil {
  1380. return x.VolumeId
  1381. }
  1382. return 0
  1383. }
  1384. type VolumeStatusResponse struct {
  1385. state protoimpl.MessageState
  1386. sizeCache protoimpl.SizeCache
  1387. unknownFields protoimpl.UnknownFields
  1388. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  1389. }
  1390. func (x *VolumeStatusResponse) Reset() {
  1391. *x = VolumeStatusResponse{}
  1392. if protoimpl.UnsafeEnabled {
  1393. mi := &file_volume_server_proto_msgTypes[33]
  1394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1395. ms.StoreMessageInfo(mi)
  1396. }
  1397. }
  1398. func (x *VolumeStatusResponse) String() string {
  1399. return protoimpl.X.MessageStringOf(x)
  1400. }
  1401. func (*VolumeStatusResponse) ProtoMessage() {}
  1402. func (x *VolumeStatusResponse) ProtoReflect() protoreflect.Message {
  1403. mi := &file_volume_server_proto_msgTypes[33]
  1404. if protoimpl.UnsafeEnabled && x != nil {
  1405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1406. if ms.LoadMessageInfo() == nil {
  1407. ms.StoreMessageInfo(mi)
  1408. }
  1409. return ms
  1410. }
  1411. return mi.MessageOf(x)
  1412. }
  1413. // Deprecated: Use VolumeStatusResponse.ProtoReflect.Descriptor instead.
  1414. func (*VolumeStatusResponse) Descriptor() ([]byte, []int) {
  1415. return file_volume_server_proto_rawDescGZIP(), []int{33}
  1416. }
  1417. func (x *VolumeStatusResponse) GetIsReadOnly() bool {
  1418. if x != nil {
  1419. return x.IsReadOnly
  1420. }
  1421. return false
  1422. }
  1423. type VolumeCopyRequest struct {
  1424. state protoimpl.MessageState
  1425. sizeCache protoimpl.SizeCache
  1426. unknownFields protoimpl.UnknownFields
  1427. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1428. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1429. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  1430. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1431. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  1432. DiskType string `protobuf:"bytes,6,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  1433. }
  1434. func (x *VolumeCopyRequest) Reset() {
  1435. *x = VolumeCopyRequest{}
  1436. if protoimpl.UnsafeEnabled {
  1437. mi := &file_volume_server_proto_msgTypes[34]
  1438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1439. ms.StoreMessageInfo(mi)
  1440. }
  1441. }
  1442. func (x *VolumeCopyRequest) String() string {
  1443. return protoimpl.X.MessageStringOf(x)
  1444. }
  1445. func (*VolumeCopyRequest) ProtoMessage() {}
  1446. func (x *VolumeCopyRequest) ProtoReflect() protoreflect.Message {
  1447. mi := &file_volume_server_proto_msgTypes[34]
  1448. if protoimpl.UnsafeEnabled && x != nil {
  1449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1450. if ms.LoadMessageInfo() == nil {
  1451. ms.StoreMessageInfo(mi)
  1452. }
  1453. return ms
  1454. }
  1455. return mi.MessageOf(x)
  1456. }
  1457. // Deprecated: Use VolumeCopyRequest.ProtoReflect.Descriptor instead.
  1458. func (*VolumeCopyRequest) Descriptor() ([]byte, []int) {
  1459. return file_volume_server_proto_rawDescGZIP(), []int{34}
  1460. }
  1461. func (x *VolumeCopyRequest) GetVolumeId() uint32 {
  1462. if x != nil {
  1463. return x.VolumeId
  1464. }
  1465. return 0
  1466. }
  1467. func (x *VolumeCopyRequest) GetCollection() string {
  1468. if x != nil {
  1469. return x.Collection
  1470. }
  1471. return ""
  1472. }
  1473. func (x *VolumeCopyRequest) GetReplication() string {
  1474. if x != nil {
  1475. return x.Replication
  1476. }
  1477. return ""
  1478. }
  1479. func (x *VolumeCopyRequest) GetTtl() string {
  1480. if x != nil {
  1481. return x.Ttl
  1482. }
  1483. return ""
  1484. }
  1485. func (x *VolumeCopyRequest) GetSourceDataNode() string {
  1486. if x != nil {
  1487. return x.SourceDataNode
  1488. }
  1489. return ""
  1490. }
  1491. func (x *VolumeCopyRequest) GetDiskType() string {
  1492. if x != nil {
  1493. return x.DiskType
  1494. }
  1495. return ""
  1496. }
  1497. type VolumeCopyResponse struct {
  1498. state protoimpl.MessageState
  1499. sizeCache protoimpl.SizeCache
  1500. unknownFields protoimpl.UnknownFields
  1501. LastAppendAtNs uint64 `protobuf:"varint,1,opt,name=last_append_at_ns,json=lastAppendAtNs,proto3" json:"last_append_at_ns,omitempty"`
  1502. }
  1503. func (x *VolumeCopyResponse) Reset() {
  1504. *x = VolumeCopyResponse{}
  1505. if protoimpl.UnsafeEnabled {
  1506. mi := &file_volume_server_proto_msgTypes[35]
  1507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1508. ms.StoreMessageInfo(mi)
  1509. }
  1510. }
  1511. func (x *VolumeCopyResponse) String() string {
  1512. return protoimpl.X.MessageStringOf(x)
  1513. }
  1514. func (*VolumeCopyResponse) ProtoMessage() {}
  1515. func (x *VolumeCopyResponse) ProtoReflect() protoreflect.Message {
  1516. mi := &file_volume_server_proto_msgTypes[35]
  1517. if protoimpl.UnsafeEnabled && x != nil {
  1518. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1519. if ms.LoadMessageInfo() == nil {
  1520. ms.StoreMessageInfo(mi)
  1521. }
  1522. return ms
  1523. }
  1524. return mi.MessageOf(x)
  1525. }
  1526. // Deprecated: Use VolumeCopyResponse.ProtoReflect.Descriptor instead.
  1527. func (*VolumeCopyResponse) Descriptor() ([]byte, []int) {
  1528. return file_volume_server_proto_rawDescGZIP(), []int{35}
  1529. }
  1530. func (x *VolumeCopyResponse) GetLastAppendAtNs() uint64 {
  1531. if x != nil {
  1532. return x.LastAppendAtNs
  1533. }
  1534. return 0
  1535. }
  1536. type CopyFileRequest struct {
  1537. state protoimpl.MessageState
  1538. sizeCache protoimpl.SizeCache
  1539. unknownFields protoimpl.UnknownFields
  1540. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1541. Ext string `protobuf:"bytes,2,opt,name=ext,proto3" json:"ext,omitempty"`
  1542. CompactionRevision uint32 `protobuf:"varint,3,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  1543. StopOffset uint64 `protobuf:"varint,4,opt,name=stop_offset,json=stopOffset,proto3" json:"stop_offset,omitempty"`
  1544. Collection string `protobuf:"bytes,5,opt,name=collection,proto3" json:"collection,omitempty"`
  1545. IsEcVolume bool `protobuf:"varint,6,opt,name=is_ec_volume,json=isEcVolume,proto3" json:"is_ec_volume,omitempty"`
  1546. IgnoreSourceFileNotFound bool `protobuf:"varint,7,opt,name=ignore_source_file_not_found,json=ignoreSourceFileNotFound,proto3" json:"ignore_source_file_not_found,omitempty"`
  1547. }
  1548. func (x *CopyFileRequest) Reset() {
  1549. *x = CopyFileRequest{}
  1550. if protoimpl.UnsafeEnabled {
  1551. mi := &file_volume_server_proto_msgTypes[36]
  1552. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1553. ms.StoreMessageInfo(mi)
  1554. }
  1555. }
  1556. func (x *CopyFileRequest) String() string {
  1557. return protoimpl.X.MessageStringOf(x)
  1558. }
  1559. func (*CopyFileRequest) ProtoMessage() {}
  1560. func (x *CopyFileRequest) ProtoReflect() protoreflect.Message {
  1561. mi := &file_volume_server_proto_msgTypes[36]
  1562. if protoimpl.UnsafeEnabled && x != nil {
  1563. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1564. if ms.LoadMessageInfo() == nil {
  1565. ms.StoreMessageInfo(mi)
  1566. }
  1567. return ms
  1568. }
  1569. return mi.MessageOf(x)
  1570. }
  1571. // Deprecated: Use CopyFileRequest.ProtoReflect.Descriptor instead.
  1572. func (*CopyFileRequest) Descriptor() ([]byte, []int) {
  1573. return file_volume_server_proto_rawDescGZIP(), []int{36}
  1574. }
  1575. func (x *CopyFileRequest) GetVolumeId() uint32 {
  1576. if x != nil {
  1577. return x.VolumeId
  1578. }
  1579. return 0
  1580. }
  1581. func (x *CopyFileRequest) GetExt() string {
  1582. if x != nil {
  1583. return x.Ext
  1584. }
  1585. return ""
  1586. }
  1587. func (x *CopyFileRequest) GetCompactionRevision() uint32 {
  1588. if x != nil {
  1589. return x.CompactionRevision
  1590. }
  1591. return 0
  1592. }
  1593. func (x *CopyFileRequest) GetStopOffset() uint64 {
  1594. if x != nil {
  1595. return x.StopOffset
  1596. }
  1597. return 0
  1598. }
  1599. func (x *CopyFileRequest) GetCollection() string {
  1600. if x != nil {
  1601. return x.Collection
  1602. }
  1603. return ""
  1604. }
  1605. func (x *CopyFileRequest) GetIsEcVolume() bool {
  1606. if x != nil {
  1607. return x.IsEcVolume
  1608. }
  1609. return false
  1610. }
  1611. func (x *CopyFileRequest) GetIgnoreSourceFileNotFound() bool {
  1612. if x != nil {
  1613. return x.IgnoreSourceFileNotFound
  1614. }
  1615. return false
  1616. }
  1617. type CopyFileResponse struct {
  1618. state protoimpl.MessageState
  1619. sizeCache protoimpl.SizeCache
  1620. unknownFields protoimpl.UnknownFields
  1621. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  1622. }
  1623. func (x *CopyFileResponse) Reset() {
  1624. *x = CopyFileResponse{}
  1625. if protoimpl.UnsafeEnabled {
  1626. mi := &file_volume_server_proto_msgTypes[37]
  1627. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1628. ms.StoreMessageInfo(mi)
  1629. }
  1630. }
  1631. func (x *CopyFileResponse) String() string {
  1632. return protoimpl.X.MessageStringOf(x)
  1633. }
  1634. func (*CopyFileResponse) ProtoMessage() {}
  1635. func (x *CopyFileResponse) ProtoReflect() protoreflect.Message {
  1636. mi := &file_volume_server_proto_msgTypes[37]
  1637. if protoimpl.UnsafeEnabled && x != nil {
  1638. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1639. if ms.LoadMessageInfo() == nil {
  1640. ms.StoreMessageInfo(mi)
  1641. }
  1642. return ms
  1643. }
  1644. return mi.MessageOf(x)
  1645. }
  1646. // Deprecated: Use CopyFileResponse.ProtoReflect.Descriptor instead.
  1647. func (*CopyFileResponse) Descriptor() ([]byte, []int) {
  1648. return file_volume_server_proto_rawDescGZIP(), []int{37}
  1649. }
  1650. func (x *CopyFileResponse) GetFileContent() []byte {
  1651. if x != nil {
  1652. return x.FileContent
  1653. }
  1654. return nil
  1655. }
  1656. type VolumeTailSenderRequest struct {
  1657. state protoimpl.MessageState
  1658. sizeCache protoimpl.SizeCache
  1659. unknownFields protoimpl.UnknownFields
  1660. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1661. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  1662. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  1663. }
  1664. func (x *VolumeTailSenderRequest) Reset() {
  1665. *x = VolumeTailSenderRequest{}
  1666. if protoimpl.UnsafeEnabled {
  1667. mi := &file_volume_server_proto_msgTypes[38]
  1668. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1669. ms.StoreMessageInfo(mi)
  1670. }
  1671. }
  1672. func (x *VolumeTailSenderRequest) String() string {
  1673. return protoimpl.X.MessageStringOf(x)
  1674. }
  1675. func (*VolumeTailSenderRequest) ProtoMessage() {}
  1676. func (x *VolumeTailSenderRequest) ProtoReflect() protoreflect.Message {
  1677. mi := &file_volume_server_proto_msgTypes[38]
  1678. if protoimpl.UnsafeEnabled && x != nil {
  1679. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1680. if ms.LoadMessageInfo() == nil {
  1681. ms.StoreMessageInfo(mi)
  1682. }
  1683. return ms
  1684. }
  1685. return mi.MessageOf(x)
  1686. }
  1687. // Deprecated: Use VolumeTailSenderRequest.ProtoReflect.Descriptor instead.
  1688. func (*VolumeTailSenderRequest) Descriptor() ([]byte, []int) {
  1689. return file_volume_server_proto_rawDescGZIP(), []int{38}
  1690. }
  1691. func (x *VolumeTailSenderRequest) GetVolumeId() uint32 {
  1692. if x != nil {
  1693. return x.VolumeId
  1694. }
  1695. return 0
  1696. }
  1697. func (x *VolumeTailSenderRequest) GetSinceNs() uint64 {
  1698. if x != nil {
  1699. return x.SinceNs
  1700. }
  1701. return 0
  1702. }
  1703. func (x *VolumeTailSenderRequest) GetIdleTimeoutSeconds() uint32 {
  1704. if x != nil {
  1705. return x.IdleTimeoutSeconds
  1706. }
  1707. return 0
  1708. }
  1709. type VolumeTailSenderResponse struct {
  1710. state protoimpl.MessageState
  1711. sizeCache protoimpl.SizeCache
  1712. unknownFields protoimpl.UnknownFields
  1713. NeedleHeader []byte `protobuf:"bytes,1,opt,name=needle_header,json=needleHeader,proto3" json:"needle_header,omitempty"`
  1714. NeedleBody []byte `protobuf:"bytes,2,opt,name=needle_body,json=needleBody,proto3" json:"needle_body,omitempty"`
  1715. IsLastChunk bool `protobuf:"varint,3,opt,name=is_last_chunk,json=isLastChunk,proto3" json:"is_last_chunk,omitempty"`
  1716. }
  1717. func (x *VolumeTailSenderResponse) Reset() {
  1718. *x = VolumeTailSenderResponse{}
  1719. if protoimpl.UnsafeEnabled {
  1720. mi := &file_volume_server_proto_msgTypes[39]
  1721. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1722. ms.StoreMessageInfo(mi)
  1723. }
  1724. }
  1725. func (x *VolumeTailSenderResponse) String() string {
  1726. return protoimpl.X.MessageStringOf(x)
  1727. }
  1728. func (*VolumeTailSenderResponse) ProtoMessage() {}
  1729. func (x *VolumeTailSenderResponse) ProtoReflect() protoreflect.Message {
  1730. mi := &file_volume_server_proto_msgTypes[39]
  1731. if protoimpl.UnsafeEnabled && x != nil {
  1732. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1733. if ms.LoadMessageInfo() == nil {
  1734. ms.StoreMessageInfo(mi)
  1735. }
  1736. return ms
  1737. }
  1738. return mi.MessageOf(x)
  1739. }
  1740. // Deprecated: Use VolumeTailSenderResponse.ProtoReflect.Descriptor instead.
  1741. func (*VolumeTailSenderResponse) Descriptor() ([]byte, []int) {
  1742. return file_volume_server_proto_rawDescGZIP(), []int{39}
  1743. }
  1744. func (x *VolumeTailSenderResponse) GetNeedleHeader() []byte {
  1745. if x != nil {
  1746. return x.NeedleHeader
  1747. }
  1748. return nil
  1749. }
  1750. func (x *VolumeTailSenderResponse) GetNeedleBody() []byte {
  1751. if x != nil {
  1752. return x.NeedleBody
  1753. }
  1754. return nil
  1755. }
  1756. func (x *VolumeTailSenderResponse) GetIsLastChunk() bool {
  1757. if x != nil {
  1758. return x.IsLastChunk
  1759. }
  1760. return false
  1761. }
  1762. type VolumeTailReceiverRequest struct {
  1763. state protoimpl.MessageState
  1764. sizeCache protoimpl.SizeCache
  1765. unknownFields protoimpl.UnknownFields
  1766. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1767. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  1768. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  1769. SourceVolumeServer string `protobuf:"bytes,4,opt,name=source_volume_server,json=sourceVolumeServer,proto3" json:"source_volume_server,omitempty"`
  1770. }
  1771. func (x *VolumeTailReceiverRequest) Reset() {
  1772. *x = VolumeTailReceiverRequest{}
  1773. if protoimpl.UnsafeEnabled {
  1774. mi := &file_volume_server_proto_msgTypes[40]
  1775. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1776. ms.StoreMessageInfo(mi)
  1777. }
  1778. }
  1779. func (x *VolumeTailReceiverRequest) String() string {
  1780. return protoimpl.X.MessageStringOf(x)
  1781. }
  1782. func (*VolumeTailReceiverRequest) ProtoMessage() {}
  1783. func (x *VolumeTailReceiverRequest) ProtoReflect() protoreflect.Message {
  1784. mi := &file_volume_server_proto_msgTypes[40]
  1785. if protoimpl.UnsafeEnabled && x != nil {
  1786. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1787. if ms.LoadMessageInfo() == nil {
  1788. ms.StoreMessageInfo(mi)
  1789. }
  1790. return ms
  1791. }
  1792. return mi.MessageOf(x)
  1793. }
  1794. // Deprecated: Use VolumeTailReceiverRequest.ProtoReflect.Descriptor instead.
  1795. func (*VolumeTailReceiverRequest) Descriptor() ([]byte, []int) {
  1796. return file_volume_server_proto_rawDescGZIP(), []int{40}
  1797. }
  1798. func (x *VolumeTailReceiverRequest) GetVolumeId() uint32 {
  1799. if x != nil {
  1800. return x.VolumeId
  1801. }
  1802. return 0
  1803. }
  1804. func (x *VolumeTailReceiverRequest) GetSinceNs() uint64 {
  1805. if x != nil {
  1806. return x.SinceNs
  1807. }
  1808. return 0
  1809. }
  1810. func (x *VolumeTailReceiverRequest) GetIdleTimeoutSeconds() uint32 {
  1811. if x != nil {
  1812. return x.IdleTimeoutSeconds
  1813. }
  1814. return 0
  1815. }
  1816. func (x *VolumeTailReceiverRequest) GetSourceVolumeServer() string {
  1817. if x != nil {
  1818. return x.SourceVolumeServer
  1819. }
  1820. return ""
  1821. }
  1822. type VolumeTailReceiverResponse struct {
  1823. state protoimpl.MessageState
  1824. sizeCache protoimpl.SizeCache
  1825. unknownFields protoimpl.UnknownFields
  1826. }
  1827. func (x *VolumeTailReceiverResponse) Reset() {
  1828. *x = VolumeTailReceiverResponse{}
  1829. if protoimpl.UnsafeEnabled {
  1830. mi := &file_volume_server_proto_msgTypes[41]
  1831. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1832. ms.StoreMessageInfo(mi)
  1833. }
  1834. }
  1835. func (x *VolumeTailReceiverResponse) String() string {
  1836. return protoimpl.X.MessageStringOf(x)
  1837. }
  1838. func (*VolumeTailReceiverResponse) ProtoMessage() {}
  1839. func (x *VolumeTailReceiverResponse) ProtoReflect() protoreflect.Message {
  1840. mi := &file_volume_server_proto_msgTypes[41]
  1841. if protoimpl.UnsafeEnabled && x != nil {
  1842. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1843. if ms.LoadMessageInfo() == nil {
  1844. ms.StoreMessageInfo(mi)
  1845. }
  1846. return ms
  1847. }
  1848. return mi.MessageOf(x)
  1849. }
  1850. // Deprecated: Use VolumeTailReceiverResponse.ProtoReflect.Descriptor instead.
  1851. func (*VolumeTailReceiverResponse) Descriptor() ([]byte, []int) {
  1852. return file_volume_server_proto_rawDescGZIP(), []int{41}
  1853. }
  1854. type VolumeEcShardsGenerateRequest struct {
  1855. state protoimpl.MessageState
  1856. sizeCache protoimpl.SizeCache
  1857. unknownFields protoimpl.UnknownFields
  1858. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1859. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1860. }
  1861. func (x *VolumeEcShardsGenerateRequest) Reset() {
  1862. *x = VolumeEcShardsGenerateRequest{}
  1863. if protoimpl.UnsafeEnabled {
  1864. mi := &file_volume_server_proto_msgTypes[42]
  1865. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1866. ms.StoreMessageInfo(mi)
  1867. }
  1868. }
  1869. func (x *VolumeEcShardsGenerateRequest) String() string {
  1870. return protoimpl.X.MessageStringOf(x)
  1871. }
  1872. func (*VolumeEcShardsGenerateRequest) ProtoMessage() {}
  1873. func (x *VolumeEcShardsGenerateRequest) ProtoReflect() protoreflect.Message {
  1874. mi := &file_volume_server_proto_msgTypes[42]
  1875. if protoimpl.UnsafeEnabled && x != nil {
  1876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1877. if ms.LoadMessageInfo() == nil {
  1878. ms.StoreMessageInfo(mi)
  1879. }
  1880. return ms
  1881. }
  1882. return mi.MessageOf(x)
  1883. }
  1884. // Deprecated: Use VolumeEcShardsGenerateRequest.ProtoReflect.Descriptor instead.
  1885. func (*VolumeEcShardsGenerateRequest) Descriptor() ([]byte, []int) {
  1886. return file_volume_server_proto_rawDescGZIP(), []int{42}
  1887. }
  1888. func (x *VolumeEcShardsGenerateRequest) GetVolumeId() uint32 {
  1889. if x != nil {
  1890. return x.VolumeId
  1891. }
  1892. return 0
  1893. }
  1894. func (x *VolumeEcShardsGenerateRequest) GetCollection() string {
  1895. if x != nil {
  1896. return x.Collection
  1897. }
  1898. return ""
  1899. }
  1900. type VolumeEcShardsGenerateResponse struct {
  1901. state protoimpl.MessageState
  1902. sizeCache protoimpl.SizeCache
  1903. unknownFields protoimpl.UnknownFields
  1904. }
  1905. func (x *VolumeEcShardsGenerateResponse) Reset() {
  1906. *x = VolumeEcShardsGenerateResponse{}
  1907. if protoimpl.UnsafeEnabled {
  1908. mi := &file_volume_server_proto_msgTypes[43]
  1909. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1910. ms.StoreMessageInfo(mi)
  1911. }
  1912. }
  1913. func (x *VolumeEcShardsGenerateResponse) String() string {
  1914. return protoimpl.X.MessageStringOf(x)
  1915. }
  1916. func (*VolumeEcShardsGenerateResponse) ProtoMessage() {}
  1917. func (x *VolumeEcShardsGenerateResponse) ProtoReflect() protoreflect.Message {
  1918. mi := &file_volume_server_proto_msgTypes[43]
  1919. if protoimpl.UnsafeEnabled && x != nil {
  1920. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1921. if ms.LoadMessageInfo() == nil {
  1922. ms.StoreMessageInfo(mi)
  1923. }
  1924. return ms
  1925. }
  1926. return mi.MessageOf(x)
  1927. }
  1928. // Deprecated: Use VolumeEcShardsGenerateResponse.ProtoReflect.Descriptor instead.
  1929. func (*VolumeEcShardsGenerateResponse) Descriptor() ([]byte, []int) {
  1930. return file_volume_server_proto_rawDescGZIP(), []int{43}
  1931. }
  1932. type VolumeEcShardsRebuildRequest struct {
  1933. state protoimpl.MessageState
  1934. sizeCache protoimpl.SizeCache
  1935. unknownFields protoimpl.UnknownFields
  1936. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1937. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1938. }
  1939. func (x *VolumeEcShardsRebuildRequest) Reset() {
  1940. *x = VolumeEcShardsRebuildRequest{}
  1941. if protoimpl.UnsafeEnabled {
  1942. mi := &file_volume_server_proto_msgTypes[44]
  1943. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1944. ms.StoreMessageInfo(mi)
  1945. }
  1946. }
  1947. func (x *VolumeEcShardsRebuildRequest) String() string {
  1948. return protoimpl.X.MessageStringOf(x)
  1949. }
  1950. func (*VolumeEcShardsRebuildRequest) ProtoMessage() {}
  1951. func (x *VolumeEcShardsRebuildRequest) ProtoReflect() protoreflect.Message {
  1952. mi := &file_volume_server_proto_msgTypes[44]
  1953. if protoimpl.UnsafeEnabled && x != nil {
  1954. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1955. if ms.LoadMessageInfo() == nil {
  1956. ms.StoreMessageInfo(mi)
  1957. }
  1958. return ms
  1959. }
  1960. return mi.MessageOf(x)
  1961. }
  1962. // Deprecated: Use VolumeEcShardsRebuildRequest.ProtoReflect.Descriptor instead.
  1963. func (*VolumeEcShardsRebuildRequest) Descriptor() ([]byte, []int) {
  1964. return file_volume_server_proto_rawDescGZIP(), []int{44}
  1965. }
  1966. func (x *VolumeEcShardsRebuildRequest) GetVolumeId() uint32 {
  1967. if x != nil {
  1968. return x.VolumeId
  1969. }
  1970. return 0
  1971. }
  1972. func (x *VolumeEcShardsRebuildRequest) GetCollection() string {
  1973. if x != nil {
  1974. return x.Collection
  1975. }
  1976. return ""
  1977. }
  1978. type VolumeEcShardsRebuildResponse struct {
  1979. state protoimpl.MessageState
  1980. sizeCache protoimpl.SizeCache
  1981. unknownFields protoimpl.UnknownFields
  1982. RebuiltShardIds []uint32 `protobuf:"varint,1,rep,packed,name=rebuilt_shard_ids,json=rebuiltShardIds,proto3" json:"rebuilt_shard_ids,omitempty"`
  1983. }
  1984. func (x *VolumeEcShardsRebuildResponse) Reset() {
  1985. *x = VolumeEcShardsRebuildResponse{}
  1986. if protoimpl.UnsafeEnabled {
  1987. mi := &file_volume_server_proto_msgTypes[45]
  1988. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1989. ms.StoreMessageInfo(mi)
  1990. }
  1991. }
  1992. func (x *VolumeEcShardsRebuildResponse) String() string {
  1993. return protoimpl.X.MessageStringOf(x)
  1994. }
  1995. func (*VolumeEcShardsRebuildResponse) ProtoMessage() {}
  1996. func (x *VolumeEcShardsRebuildResponse) ProtoReflect() protoreflect.Message {
  1997. mi := &file_volume_server_proto_msgTypes[45]
  1998. if protoimpl.UnsafeEnabled && x != nil {
  1999. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2000. if ms.LoadMessageInfo() == nil {
  2001. ms.StoreMessageInfo(mi)
  2002. }
  2003. return ms
  2004. }
  2005. return mi.MessageOf(x)
  2006. }
  2007. // Deprecated: Use VolumeEcShardsRebuildResponse.ProtoReflect.Descriptor instead.
  2008. func (*VolumeEcShardsRebuildResponse) Descriptor() ([]byte, []int) {
  2009. return file_volume_server_proto_rawDescGZIP(), []int{45}
  2010. }
  2011. func (x *VolumeEcShardsRebuildResponse) GetRebuiltShardIds() []uint32 {
  2012. if x != nil {
  2013. return x.RebuiltShardIds
  2014. }
  2015. return nil
  2016. }
  2017. type VolumeEcShardsCopyRequest struct {
  2018. state protoimpl.MessageState
  2019. sizeCache protoimpl.SizeCache
  2020. unknownFields protoimpl.UnknownFields
  2021. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2022. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2023. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2024. CopyEcxFile bool `protobuf:"varint,4,opt,name=copy_ecx_file,json=copyEcxFile,proto3" json:"copy_ecx_file,omitempty"`
  2025. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  2026. CopyEcjFile bool `protobuf:"varint,6,opt,name=copy_ecj_file,json=copyEcjFile,proto3" json:"copy_ecj_file,omitempty"`
  2027. CopyVifFile bool `protobuf:"varint,7,opt,name=copy_vif_file,json=copyVifFile,proto3" json:"copy_vif_file,omitempty"`
  2028. }
  2029. func (x *VolumeEcShardsCopyRequest) Reset() {
  2030. *x = VolumeEcShardsCopyRequest{}
  2031. if protoimpl.UnsafeEnabled {
  2032. mi := &file_volume_server_proto_msgTypes[46]
  2033. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2034. ms.StoreMessageInfo(mi)
  2035. }
  2036. }
  2037. func (x *VolumeEcShardsCopyRequest) String() string {
  2038. return protoimpl.X.MessageStringOf(x)
  2039. }
  2040. func (*VolumeEcShardsCopyRequest) ProtoMessage() {}
  2041. func (x *VolumeEcShardsCopyRequest) ProtoReflect() protoreflect.Message {
  2042. mi := &file_volume_server_proto_msgTypes[46]
  2043. if protoimpl.UnsafeEnabled && x != nil {
  2044. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2045. if ms.LoadMessageInfo() == nil {
  2046. ms.StoreMessageInfo(mi)
  2047. }
  2048. return ms
  2049. }
  2050. return mi.MessageOf(x)
  2051. }
  2052. // Deprecated: Use VolumeEcShardsCopyRequest.ProtoReflect.Descriptor instead.
  2053. func (*VolumeEcShardsCopyRequest) Descriptor() ([]byte, []int) {
  2054. return file_volume_server_proto_rawDescGZIP(), []int{46}
  2055. }
  2056. func (x *VolumeEcShardsCopyRequest) GetVolumeId() uint32 {
  2057. if x != nil {
  2058. return x.VolumeId
  2059. }
  2060. return 0
  2061. }
  2062. func (x *VolumeEcShardsCopyRequest) GetCollection() string {
  2063. if x != nil {
  2064. return x.Collection
  2065. }
  2066. return ""
  2067. }
  2068. func (x *VolumeEcShardsCopyRequest) GetShardIds() []uint32 {
  2069. if x != nil {
  2070. return x.ShardIds
  2071. }
  2072. return nil
  2073. }
  2074. func (x *VolumeEcShardsCopyRequest) GetCopyEcxFile() bool {
  2075. if x != nil {
  2076. return x.CopyEcxFile
  2077. }
  2078. return false
  2079. }
  2080. func (x *VolumeEcShardsCopyRequest) GetSourceDataNode() string {
  2081. if x != nil {
  2082. return x.SourceDataNode
  2083. }
  2084. return ""
  2085. }
  2086. func (x *VolumeEcShardsCopyRequest) GetCopyEcjFile() bool {
  2087. if x != nil {
  2088. return x.CopyEcjFile
  2089. }
  2090. return false
  2091. }
  2092. func (x *VolumeEcShardsCopyRequest) GetCopyVifFile() bool {
  2093. if x != nil {
  2094. return x.CopyVifFile
  2095. }
  2096. return false
  2097. }
  2098. type VolumeEcShardsCopyResponse struct {
  2099. state protoimpl.MessageState
  2100. sizeCache protoimpl.SizeCache
  2101. unknownFields protoimpl.UnknownFields
  2102. }
  2103. func (x *VolumeEcShardsCopyResponse) Reset() {
  2104. *x = VolumeEcShardsCopyResponse{}
  2105. if protoimpl.UnsafeEnabled {
  2106. mi := &file_volume_server_proto_msgTypes[47]
  2107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2108. ms.StoreMessageInfo(mi)
  2109. }
  2110. }
  2111. func (x *VolumeEcShardsCopyResponse) String() string {
  2112. return protoimpl.X.MessageStringOf(x)
  2113. }
  2114. func (*VolumeEcShardsCopyResponse) ProtoMessage() {}
  2115. func (x *VolumeEcShardsCopyResponse) ProtoReflect() protoreflect.Message {
  2116. mi := &file_volume_server_proto_msgTypes[47]
  2117. if protoimpl.UnsafeEnabled && x != nil {
  2118. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2119. if ms.LoadMessageInfo() == nil {
  2120. ms.StoreMessageInfo(mi)
  2121. }
  2122. return ms
  2123. }
  2124. return mi.MessageOf(x)
  2125. }
  2126. // Deprecated: Use VolumeEcShardsCopyResponse.ProtoReflect.Descriptor instead.
  2127. func (*VolumeEcShardsCopyResponse) Descriptor() ([]byte, []int) {
  2128. return file_volume_server_proto_rawDescGZIP(), []int{47}
  2129. }
  2130. type VolumeEcShardsDeleteRequest struct {
  2131. state protoimpl.MessageState
  2132. sizeCache protoimpl.SizeCache
  2133. unknownFields protoimpl.UnknownFields
  2134. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2135. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2136. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2137. }
  2138. func (x *VolumeEcShardsDeleteRequest) Reset() {
  2139. *x = VolumeEcShardsDeleteRequest{}
  2140. if protoimpl.UnsafeEnabled {
  2141. mi := &file_volume_server_proto_msgTypes[48]
  2142. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2143. ms.StoreMessageInfo(mi)
  2144. }
  2145. }
  2146. func (x *VolumeEcShardsDeleteRequest) String() string {
  2147. return protoimpl.X.MessageStringOf(x)
  2148. }
  2149. func (*VolumeEcShardsDeleteRequest) ProtoMessage() {}
  2150. func (x *VolumeEcShardsDeleteRequest) ProtoReflect() protoreflect.Message {
  2151. mi := &file_volume_server_proto_msgTypes[48]
  2152. if protoimpl.UnsafeEnabled && x != nil {
  2153. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2154. if ms.LoadMessageInfo() == nil {
  2155. ms.StoreMessageInfo(mi)
  2156. }
  2157. return ms
  2158. }
  2159. return mi.MessageOf(x)
  2160. }
  2161. // Deprecated: Use VolumeEcShardsDeleteRequest.ProtoReflect.Descriptor instead.
  2162. func (*VolumeEcShardsDeleteRequest) Descriptor() ([]byte, []int) {
  2163. return file_volume_server_proto_rawDescGZIP(), []int{48}
  2164. }
  2165. func (x *VolumeEcShardsDeleteRequest) GetVolumeId() uint32 {
  2166. if x != nil {
  2167. return x.VolumeId
  2168. }
  2169. return 0
  2170. }
  2171. func (x *VolumeEcShardsDeleteRequest) GetCollection() string {
  2172. if x != nil {
  2173. return x.Collection
  2174. }
  2175. return ""
  2176. }
  2177. func (x *VolumeEcShardsDeleteRequest) GetShardIds() []uint32 {
  2178. if x != nil {
  2179. return x.ShardIds
  2180. }
  2181. return nil
  2182. }
  2183. type VolumeEcShardsDeleteResponse struct {
  2184. state protoimpl.MessageState
  2185. sizeCache protoimpl.SizeCache
  2186. unknownFields protoimpl.UnknownFields
  2187. }
  2188. func (x *VolumeEcShardsDeleteResponse) Reset() {
  2189. *x = VolumeEcShardsDeleteResponse{}
  2190. if protoimpl.UnsafeEnabled {
  2191. mi := &file_volume_server_proto_msgTypes[49]
  2192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2193. ms.StoreMessageInfo(mi)
  2194. }
  2195. }
  2196. func (x *VolumeEcShardsDeleteResponse) String() string {
  2197. return protoimpl.X.MessageStringOf(x)
  2198. }
  2199. func (*VolumeEcShardsDeleteResponse) ProtoMessage() {}
  2200. func (x *VolumeEcShardsDeleteResponse) ProtoReflect() protoreflect.Message {
  2201. mi := &file_volume_server_proto_msgTypes[49]
  2202. if protoimpl.UnsafeEnabled && x != nil {
  2203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2204. if ms.LoadMessageInfo() == nil {
  2205. ms.StoreMessageInfo(mi)
  2206. }
  2207. return ms
  2208. }
  2209. return mi.MessageOf(x)
  2210. }
  2211. // Deprecated: Use VolumeEcShardsDeleteResponse.ProtoReflect.Descriptor instead.
  2212. func (*VolumeEcShardsDeleteResponse) Descriptor() ([]byte, []int) {
  2213. return file_volume_server_proto_rawDescGZIP(), []int{49}
  2214. }
  2215. type VolumeEcShardsMountRequest struct {
  2216. state protoimpl.MessageState
  2217. sizeCache protoimpl.SizeCache
  2218. unknownFields protoimpl.UnknownFields
  2219. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2220. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2221. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2222. }
  2223. func (x *VolumeEcShardsMountRequest) Reset() {
  2224. *x = VolumeEcShardsMountRequest{}
  2225. if protoimpl.UnsafeEnabled {
  2226. mi := &file_volume_server_proto_msgTypes[50]
  2227. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2228. ms.StoreMessageInfo(mi)
  2229. }
  2230. }
  2231. func (x *VolumeEcShardsMountRequest) String() string {
  2232. return protoimpl.X.MessageStringOf(x)
  2233. }
  2234. func (*VolumeEcShardsMountRequest) ProtoMessage() {}
  2235. func (x *VolumeEcShardsMountRequest) ProtoReflect() protoreflect.Message {
  2236. mi := &file_volume_server_proto_msgTypes[50]
  2237. if protoimpl.UnsafeEnabled && x != nil {
  2238. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2239. if ms.LoadMessageInfo() == nil {
  2240. ms.StoreMessageInfo(mi)
  2241. }
  2242. return ms
  2243. }
  2244. return mi.MessageOf(x)
  2245. }
  2246. // Deprecated: Use VolumeEcShardsMountRequest.ProtoReflect.Descriptor instead.
  2247. func (*VolumeEcShardsMountRequest) Descriptor() ([]byte, []int) {
  2248. return file_volume_server_proto_rawDescGZIP(), []int{50}
  2249. }
  2250. func (x *VolumeEcShardsMountRequest) GetVolumeId() uint32 {
  2251. if x != nil {
  2252. return x.VolumeId
  2253. }
  2254. return 0
  2255. }
  2256. func (x *VolumeEcShardsMountRequest) GetCollection() string {
  2257. if x != nil {
  2258. return x.Collection
  2259. }
  2260. return ""
  2261. }
  2262. func (x *VolumeEcShardsMountRequest) GetShardIds() []uint32 {
  2263. if x != nil {
  2264. return x.ShardIds
  2265. }
  2266. return nil
  2267. }
  2268. type VolumeEcShardsMountResponse struct {
  2269. state protoimpl.MessageState
  2270. sizeCache protoimpl.SizeCache
  2271. unknownFields protoimpl.UnknownFields
  2272. }
  2273. func (x *VolumeEcShardsMountResponse) Reset() {
  2274. *x = VolumeEcShardsMountResponse{}
  2275. if protoimpl.UnsafeEnabled {
  2276. mi := &file_volume_server_proto_msgTypes[51]
  2277. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2278. ms.StoreMessageInfo(mi)
  2279. }
  2280. }
  2281. func (x *VolumeEcShardsMountResponse) String() string {
  2282. return protoimpl.X.MessageStringOf(x)
  2283. }
  2284. func (*VolumeEcShardsMountResponse) ProtoMessage() {}
  2285. func (x *VolumeEcShardsMountResponse) ProtoReflect() protoreflect.Message {
  2286. mi := &file_volume_server_proto_msgTypes[51]
  2287. if protoimpl.UnsafeEnabled && x != nil {
  2288. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2289. if ms.LoadMessageInfo() == nil {
  2290. ms.StoreMessageInfo(mi)
  2291. }
  2292. return ms
  2293. }
  2294. return mi.MessageOf(x)
  2295. }
  2296. // Deprecated: Use VolumeEcShardsMountResponse.ProtoReflect.Descriptor instead.
  2297. func (*VolumeEcShardsMountResponse) Descriptor() ([]byte, []int) {
  2298. return file_volume_server_proto_rawDescGZIP(), []int{51}
  2299. }
  2300. type VolumeEcShardsUnmountRequest struct {
  2301. state protoimpl.MessageState
  2302. sizeCache protoimpl.SizeCache
  2303. unknownFields protoimpl.UnknownFields
  2304. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2305. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2306. }
  2307. func (x *VolumeEcShardsUnmountRequest) Reset() {
  2308. *x = VolumeEcShardsUnmountRequest{}
  2309. if protoimpl.UnsafeEnabled {
  2310. mi := &file_volume_server_proto_msgTypes[52]
  2311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2312. ms.StoreMessageInfo(mi)
  2313. }
  2314. }
  2315. func (x *VolumeEcShardsUnmountRequest) String() string {
  2316. return protoimpl.X.MessageStringOf(x)
  2317. }
  2318. func (*VolumeEcShardsUnmountRequest) ProtoMessage() {}
  2319. func (x *VolumeEcShardsUnmountRequest) ProtoReflect() protoreflect.Message {
  2320. mi := &file_volume_server_proto_msgTypes[52]
  2321. if protoimpl.UnsafeEnabled && x != nil {
  2322. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2323. if ms.LoadMessageInfo() == nil {
  2324. ms.StoreMessageInfo(mi)
  2325. }
  2326. return ms
  2327. }
  2328. return mi.MessageOf(x)
  2329. }
  2330. // Deprecated: Use VolumeEcShardsUnmountRequest.ProtoReflect.Descriptor instead.
  2331. func (*VolumeEcShardsUnmountRequest) Descriptor() ([]byte, []int) {
  2332. return file_volume_server_proto_rawDescGZIP(), []int{52}
  2333. }
  2334. func (x *VolumeEcShardsUnmountRequest) GetVolumeId() uint32 {
  2335. if x != nil {
  2336. return x.VolumeId
  2337. }
  2338. return 0
  2339. }
  2340. func (x *VolumeEcShardsUnmountRequest) GetShardIds() []uint32 {
  2341. if x != nil {
  2342. return x.ShardIds
  2343. }
  2344. return nil
  2345. }
  2346. type VolumeEcShardsUnmountResponse struct {
  2347. state protoimpl.MessageState
  2348. sizeCache protoimpl.SizeCache
  2349. unknownFields protoimpl.UnknownFields
  2350. }
  2351. func (x *VolumeEcShardsUnmountResponse) Reset() {
  2352. *x = VolumeEcShardsUnmountResponse{}
  2353. if protoimpl.UnsafeEnabled {
  2354. mi := &file_volume_server_proto_msgTypes[53]
  2355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2356. ms.StoreMessageInfo(mi)
  2357. }
  2358. }
  2359. func (x *VolumeEcShardsUnmountResponse) String() string {
  2360. return protoimpl.X.MessageStringOf(x)
  2361. }
  2362. func (*VolumeEcShardsUnmountResponse) ProtoMessage() {}
  2363. func (x *VolumeEcShardsUnmountResponse) ProtoReflect() protoreflect.Message {
  2364. mi := &file_volume_server_proto_msgTypes[53]
  2365. if protoimpl.UnsafeEnabled && x != nil {
  2366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2367. if ms.LoadMessageInfo() == nil {
  2368. ms.StoreMessageInfo(mi)
  2369. }
  2370. return ms
  2371. }
  2372. return mi.MessageOf(x)
  2373. }
  2374. // Deprecated: Use VolumeEcShardsUnmountResponse.ProtoReflect.Descriptor instead.
  2375. func (*VolumeEcShardsUnmountResponse) Descriptor() ([]byte, []int) {
  2376. return file_volume_server_proto_rawDescGZIP(), []int{53}
  2377. }
  2378. type VolumeEcShardReadRequest struct {
  2379. state protoimpl.MessageState
  2380. sizeCache protoimpl.SizeCache
  2381. unknownFields protoimpl.UnknownFields
  2382. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2383. ShardId uint32 `protobuf:"varint,2,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"`
  2384. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
  2385. Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  2386. FileKey uint64 `protobuf:"varint,5,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2387. }
  2388. func (x *VolumeEcShardReadRequest) Reset() {
  2389. *x = VolumeEcShardReadRequest{}
  2390. if protoimpl.UnsafeEnabled {
  2391. mi := &file_volume_server_proto_msgTypes[54]
  2392. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2393. ms.StoreMessageInfo(mi)
  2394. }
  2395. }
  2396. func (x *VolumeEcShardReadRequest) String() string {
  2397. return protoimpl.X.MessageStringOf(x)
  2398. }
  2399. func (*VolumeEcShardReadRequest) ProtoMessage() {}
  2400. func (x *VolumeEcShardReadRequest) ProtoReflect() protoreflect.Message {
  2401. mi := &file_volume_server_proto_msgTypes[54]
  2402. if protoimpl.UnsafeEnabled && x != nil {
  2403. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2404. if ms.LoadMessageInfo() == nil {
  2405. ms.StoreMessageInfo(mi)
  2406. }
  2407. return ms
  2408. }
  2409. return mi.MessageOf(x)
  2410. }
  2411. // Deprecated: Use VolumeEcShardReadRequest.ProtoReflect.Descriptor instead.
  2412. func (*VolumeEcShardReadRequest) Descriptor() ([]byte, []int) {
  2413. return file_volume_server_proto_rawDescGZIP(), []int{54}
  2414. }
  2415. func (x *VolumeEcShardReadRequest) GetVolumeId() uint32 {
  2416. if x != nil {
  2417. return x.VolumeId
  2418. }
  2419. return 0
  2420. }
  2421. func (x *VolumeEcShardReadRequest) GetShardId() uint32 {
  2422. if x != nil {
  2423. return x.ShardId
  2424. }
  2425. return 0
  2426. }
  2427. func (x *VolumeEcShardReadRequest) GetOffset() int64 {
  2428. if x != nil {
  2429. return x.Offset
  2430. }
  2431. return 0
  2432. }
  2433. func (x *VolumeEcShardReadRequest) GetSize() int64 {
  2434. if x != nil {
  2435. return x.Size
  2436. }
  2437. return 0
  2438. }
  2439. func (x *VolumeEcShardReadRequest) GetFileKey() uint64 {
  2440. if x != nil {
  2441. return x.FileKey
  2442. }
  2443. return 0
  2444. }
  2445. type VolumeEcShardReadResponse struct {
  2446. state protoimpl.MessageState
  2447. sizeCache protoimpl.SizeCache
  2448. unknownFields protoimpl.UnknownFields
  2449. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  2450. IsDeleted bool `protobuf:"varint,2,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
  2451. }
  2452. func (x *VolumeEcShardReadResponse) Reset() {
  2453. *x = VolumeEcShardReadResponse{}
  2454. if protoimpl.UnsafeEnabled {
  2455. mi := &file_volume_server_proto_msgTypes[55]
  2456. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2457. ms.StoreMessageInfo(mi)
  2458. }
  2459. }
  2460. func (x *VolumeEcShardReadResponse) String() string {
  2461. return protoimpl.X.MessageStringOf(x)
  2462. }
  2463. func (*VolumeEcShardReadResponse) ProtoMessage() {}
  2464. func (x *VolumeEcShardReadResponse) ProtoReflect() protoreflect.Message {
  2465. mi := &file_volume_server_proto_msgTypes[55]
  2466. if protoimpl.UnsafeEnabled && x != nil {
  2467. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2468. if ms.LoadMessageInfo() == nil {
  2469. ms.StoreMessageInfo(mi)
  2470. }
  2471. return ms
  2472. }
  2473. return mi.MessageOf(x)
  2474. }
  2475. // Deprecated: Use VolumeEcShardReadResponse.ProtoReflect.Descriptor instead.
  2476. func (*VolumeEcShardReadResponse) Descriptor() ([]byte, []int) {
  2477. return file_volume_server_proto_rawDescGZIP(), []int{55}
  2478. }
  2479. func (x *VolumeEcShardReadResponse) GetData() []byte {
  2480. if x != nil {
  2481. return x.Data
  2482. }
  2483. return nil
  2484. }
  2485. func (x *VolumeEcShardReadResponse) GetIsDeleted() bool {
  2486. if x != nil {
  2487. return x.IsDeleted
  2488. }
  2489. return false
  2490. }
  2491. type VolumeEcBlobDeleteRequest struct {
  2492. state protoimpl.MessageState
  2493. sizeCache protoimpl.SizeCache
  2494. unknownFields protoimpl.UnknownFields
  2495. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2496. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2497. FileKey uint64 `protobuf:"varint,3,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2498. Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
  2499. }
  2500. func (x *VolumeEcBlobDeleteRequest) Reset() {
  2501. *x = VolumeEcBlobDeleteRequest{}
  2502. if protoimpl.UnsafeEnabled {
  2503. mi := &file_volume_server_proto_msgTypes[56]
  2504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2505. ms.StoreMessageInfo(mi)
  2506. }
  2507. }
  2508. func (x *VolumeEcBlobDeleteRequest) String() string {
  2509. return protoimpl.X.MessageStringOf(x)
  2510. }
  2511. func (*VolumeEcBlobDeleteRequest) ProtoMessage() {}
  2512. func (x *VolumeEcBlobDeleteRequest) ProtoReflect() protoreflect.Message {
  2513. mi := &file_volume_server_proto_msgTypes[56]
  2514. if protoimpl.UnsafeEnabled && x != nil {
  2515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2516. if ms.LoadMessageInfo() == nil {
  2517. ms.StoreMessageInfo(mi)
  2518. }
  2519. return ms
  2520. }
  2521. return mi.MessageOf(x)
  2522. }
  2523. // Deprecated: Use VolumeEcBlobDeleteRequest.ProtoReflect.Descriptor instead.
  2524. func (*VolumeEcBlobDeleteRequest) Descriptor() ([]byte, []int) {
  2525. return file_volume_server_proto_rawDescGZIP(), []int{56}
  2526. }
  2527. func (x *VolumeEcBlobDeleteRequest) GetVolumeId() uint32 {
  2528. if x != nil {
  2529. return x.VolumeId
  2530. }
  2531. return 0
  2532. }
  2533. func (x *VolumeEcBlobDeleteRequest) GetCollection() string {
  2534. if x != nil {
  2535. return x.Collection
  2536. }
  2537. return ""
  2538. }
  2539. func (x *VolumeEcBlobDeleteRequest) GetFileKey() uint64 {
  2540. if x != nil {
  2541. return x.FileKey
  2542. }
  2543. return 0
  2544. }
  2545. func (x *VolumeEcBlobDeleteRequest) GetVersion() uint32 {
  2546. if x != nil {
  2547. return x.Version
  2548. }
  2549. return 0
  2550. }
  2551. type VolumeEcBlobDeleteResponse struct {
  2552. state protoimpl.MessageState
  2553. sizeCache protoimpl.SizeCache
  2554. unknownFields protoimpl.UnknownFields
  2555. }
  2556. func (x *VolumeEcBlobDeleteResponse) Reset() {
  2557. *x = VolumeEcBlobDeleteResponse{}
  2558. if protoimpl.UnsafeEnabled {
  2559. mi := &file_volume_server_proto_msgTypes[57]
  2560. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2561. ms.StoreMessageInfo(mi)
  2562. }
  2563. }
  2564. func (x *VolumeEcBlobDeleteResponse) String() string {
  2565. return protoimpl.X.MessageStringOf(x)
  2566. }
  2567. func (*VolumeEcBlobDeleteResponse) ProtoMessage() {}
  2568. func (x *VolumeEcBlobDeleteResponse) ProtoReflect() protoreflect.Message {
  2569. mi := &file_volume_server_proto_msgTypes[57]
  2570. if protoimpl.UnsafeEnabled && x != nil {
  2571. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2572. if ms.LoadMessageInfo() == nil {
  2573. ms.StoreMessageInfo(mi)
  2574. }
  2575. return ms
  2576. }
  2577. return mi.MessageOf(x)
  2578. }
  2579. // Deprecated: Use VolumeEcBlobDeleteResponse.ProtoReflect.Descriptor instead.
  2580. func (*VolumeEcBlobDeleteResponse) Descriptor() ([]byte, []int) {
  2581. return file_volume_server_proto_rawDescGZIP(), []int{57}
  2582. }
  2583. type VolumeEcShardsToVolumeRequest struct {
  2584. state protoimpl.MessageState
  2585. sizeCache protoimpl.SizeCache
  2586. unknownFields protoimpl.UnknownFields
  2587. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2588. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2589. }
  2590. func (x *VolumeEcShardsToVolumeRequest) Reset() {
  2591. *x = VolumeEcShardsToVolumeRequest{}
  2592. if protoimpl.UnsafeEnabled {
  2593. mi := &file_volume_server_proto_msgTypes[58]
  2594. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2595. ms.StoreMessageInfo(mi)
  2596. }
  2597. }
  2598. func (x *VolumeEcShardsToVolumeRequest) String() string {
  2599. return protoimpl.X.MessageStringOf(x)
  2600. }
  2601. func (*VolumeEcShardsToVolumeRequest) ProtoMessage() {}
  2602. func (x *VolumeEcShardsToVolumeRequest) ProtoReflect() protoreflect.Message {
  2603. mi := &file_volume_server_proto_msgTypes[58]
  2604. if protoimpl.UnsafeEnabled && x != nil {
  2605. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2606. if ms.LoadMessageInfo() == nil {
  2607. ms.StoreMessageInfo(mi)
  2608. }
  2609. return ms
  2610. }
  2611. return mi.MessageOf(x)
  2612. }
  2613. // Deprecated: Use VolumeEcShardsToVolumeRequest.ProtoReflect.Descriptor instead.
  2614. func (*VolumeEcShardsToVolumeRequest) Descriptor() ([]byte, []int) {
  2615. return file_volume_server_proto_rawDescGZIP(), []int{58}
  2616. }
  2617. func (x *VolumeEcShardsToVolumeRequest) GetVolumeId() uint32 {
  2618. if x != nil {
  2619. return x.VolumeId
  2620. }
  2621. return 0
  2622. }
  2623. func (x *VolumeEcShardsToVolumeRequest) GetCollection() string {
  2624. if x != nil {
  2625. return x.Collection
  2626. }
  2627. return ""
  2628. }
  2629. type VolumeEcShardsToVolumeResponse struct {
  2630. state protoimpl.MessageState
  2631. sizeCache protoimpl.SizeCache
  2632. unknownFields protoimpl.UnknownFields
  2633. }
  2634. func (x *VolumeEcShardsToVolumeResponse) Reset() {
  2635. *x = VolumeEcShardsToVolumeResponse{}
  2636. if protoimpl.UnsafeEnabled {
  2637. mi := &file_volume_server_proto_msgTypes[59]
  2638. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2639. ms.StoreMessageInfo(mi)
  2640. }
  2641. }
  2642. func (x *VolumeEcShardsToVolumeResponse) String() string {
  2643. return protoimpl.X.MessageStringOf(x)
  2644. }
  2645. func (*VolumeEcShardsToVolumeResponse) ProtoMessage() {}
  2646. func (x *VolumeEcShardsToVolumeResponse) ProtoReflect() protoreflect.Message {
  2647. mi := &file_volume_server_proto_msgTypes[59]
  2648. if protoimpl.UnsafeEnabled && x != nil {
  2649. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2650. if ms.LoadMessageInfo() == nil {
  2651. ms.StoreMessageInfo(mi)
  2652. }
  2653. return ms
  2654. }
  2655. return mi.MessageOf(x)
  2656. }
  2657. // Deprecated: Use VolumeEcShardsToVolumeResponse.ProtoReflect.Descriptor instead.
  2658. func (*VolumeEcShardsToVolumeResponse) Descriptor() ([]byte, []int) {
  2659. return file_volume_server_proto_rawDescGZIP(), []int{59}
  2660. }
  2661. type ReadVolumeFileStatusRequest struct {
  2662. state protoimpl.MessageState
  2663. sizeCache protoimpl.SizeCache
  2664. unknownFields protoimpl.UnknownFields
  2665. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2666. }
  2667. func (x *ReadVolumeFileStatusRequest) Reset() {
  2668. *x = ReadVolumeFileStatusRequest{}
  2669. if protoimpl.UnsafeEnabled {
  2670. mi := &file_volume_server_proto_msgTypes[60]
  2671. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2672. ms.StoreMessageInfo(mi)
  2673. }
  2674. }
  2675. func (x *ReadVolumeFileStatusRequest) String() string {
  2676. return protoimpl.X.MessageStringOf(x)
  2677. }
  2678. func (*ReadVolumeFileStatusRequest) ProtoMessage() {}
  2679. func (x *ReadVolumeFileStatusRequest) ProtoReflect() protoreflect.Message {
  2680. mi := &file_volume_server_proto_msgTypes[60]
  2681. if protoimpl.UnsafeEnabled && x != nil {
  2682. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2683. if ms.LoadMessageInfo() == nil {
  2684. ms.StoreMessageInfo(mi)
  2685. }
  2686. return ms
  2687. }
  2688. return mi.MessageOf(x)
  2689. }
  2690. // Deprecated: Use ReadVolumeFileStatusRequest.ProtoReflect.Descriptor instead.
  2691. func (*ReadVolumeFileStatusRequest) Descriptor() ([]byte, []int) {
  2692. return file_volume_server_proto_rawDescGZIP(), []int{60}
  2693. }
  2694. func (x *ReadVolumeFileStatusRequest) GetVolumeId() uint32 {
  2695. if x != nil {
  2696. return x.VolumeId
  2697. }
  2698. return 0
  2699. }
  2700. type ReadVolumeFileStatusResponse struct {
  2701. state protoimpl.MessageState
  2702. sizeCache protoimpl.SizeCache
  2703. unknownFields protoimpl.UnknownFields
  2704. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2705. IdxFileTimestampSeconds uint64 `protobuf:"varint,2,opt,name=idx_file_timestamp_seconds,json=idxFileTimestampSeconds,proto3" json:"idx_file_timestamp_seconds,omitempty"`
  2706. IdxFileSize uint64 `protobuf:"varint,3,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  2707. DatFileTimestampSeconds uint64 `protobuf:"varint,4,opt,name=dat_file_timestamp_seconds,json=datFileTimestampSeconds,proto3" json:"dat_file_timestamp_seconds,omitempty"`
  2708. DatFileSize uint64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"`
  2709. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  2710. CompactionRevision uint32 `protobuf:"varint,7,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  2711. Collection string `protobuf:"bytes,8,opt,name=collection,proto3" json:"collection,omitempty"`
  2712. DiskType string `protobuf:"bytes,9,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  2713. }
  2714. func (x *ReadVolumeFileStatusResponse) Reset() {
  2715. *x = ReadVolumeFileStatusResponse{}
  2716. if protoimpl.UnsafeEnabled {
  2717. mi := &file_volume_server_proto_msgTypes[61]
  2718. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2719. ms.StoreMessageInfo(mi)
  2720. }
  2721. }
  2722. func (x *ReadVolumeFileStatusResponse) String() string {
  2723. return protoimpl.X.MessageStringOf(x)
  2724. }
  2725. func (*ReadVolumeFileStatusResponse) ProtoMessage() {}
  2726. func (x *ReadVolumeFileStatusResponse) ProtoReflect() protoreflect.Message {
  2727. mi := &file_volume_server_proto_msgTypes[61]
  2728. if protoimpl.UnsafeEnabled && x != nil {
  2729. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2730. if ms.LoadMessageInfo() == nil {
  2731. ms.StoreMessageInfo(mi)
  2732. }
  2733. return ms
  2734. }
  2735. return mi.MessageOf(x)
  2736. }
  2737. // Deprecated: Use ReadVolumeFileStatusResponse.ProtoReflect.Descriptor instead.
  2738. func (*ReadVolumeFileStatusResponse) Descriptor() ([]byte, []int) {
  2739. return file_volume_server_proto_rawDescGZIP(), []int{61}
  2740. }
  2741. func (x *ReadVolumeFileStatusResponse) GetVolumeId() uint32 {
  2742. if x != nil {
  2743. return x.VolumeId
  2744. }
  2745. return 0
  2746. }
  2747. func (x *ReadVolumeFileStatusResponse) GetIdxFileTimestampSeconds() uint64 {
  2748. if x != nil {
  2749. return x.IdxFileTimestampSeconds
  2750. }
  2751. return 0
  2752. }
  2753. func (x *ReadVolumeFileStatusResponse) GetIdxFileSize() uint64 {
  2754. if x != nil {
  2755. return x.IdxFileSize
  2756. }
  2757. return 0
  2758. }
  2759. func (x *ReadVolumeFileStatusResponse) GetDatFileTimestampSeconds() uint64 {
  2760. if x != nil {
  2761. return x.DatFileTimestampSeconds
  2762. }
  2763. return 0
  2764. }
  2765. func (x *ReadVolumeFileStatusResponse) GetDatFileSize() uint64 {
  2766. if x != nil {
  2767. return x.DatFileSize
  2768. }
  2769. return 0
  2770. }
  2771. func (x *ReadVolumeFileStatusResponse) GetFileCount() uint64 {
  2772. if x != nil {
  2773. return x.FileCount
  2774. }
  2775. return 0
  2776. }
  2777. func (x *ReadVolumeFileStatusResponse) GetCompactionRevision() uint32 {
  2778. if x != nil {
  2779. return x.CompactionRevision
  2780. }
  2781. return 0
  2782. }
  2783. func (x *ReadVolumeFileStatusResponse) GetCollection() string {
  2784. if x != nil {
  2785. return x.Collection
  2786. }
  2787. return ""
  2788. }
  2789. func (x *ReadVolumeFileStatusResponse) GetDiskType() string {
  2790. if x != nil {
  2791. return x.DiskType
  2792. }
  2793. return ""
  2794. }
  2795. type DiskStatus struct {
  2796. state protoimpl.MessageState
  2797. sizeCache protoimpl.SizeCache
  2798. unknownFields protoimpl.UnknownFields
  2799. Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
  2800. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  2801. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  2802. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  2803. PercentFree float32 `protobuf:"fixed32,5,opt,name=percent_free,json=percentFree,proto3" json:"percent_free,omitempty"`
  2804. PercentUsed float32 `protobuf:"fixed32,6,opt,name=percent_used,json=percentUsed,proto3" json:"percent_used,omitempty"`
  2805. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  2806. }
  2807. func (x *DiskStatus) Reset() {
  2808. *x = DiskStatus{}
  2809. if protoimpl.UnsafeEnabled {
  2810. mi := &file_volume_server_proto_msgTypes[62]
  2811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2812. ms.StoreMessageInfo(mi)
  2813. }
  2814. }
  2815. func (x *DiskStatus) String() string {
  2816. return protoimpl.X.MessageStringOf(x)
  2817. }
  2818. func (*DiskStatus) ProtoMessage() {}
  2819. func (x *DiskStatus) ProtoReflect() protoreflect.Message {
  2820. mi := &file_volume_server_proto_msgTypes[62]
  2821. if protoimpl.UnsafeEnabled && x != nil {
  2822. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2823. if ms.LoadMessageInfo() == nil {
  2824. ms.StoreMessageInfo(mi)
  2825. }
  2826. return ms
  2827. }
  2828. return mi.MessageOf(x)
  2829. }
  2830. // Deprecated: Use DiskStatus.ProtoReflect.Descriptor instead.
  2831. func (*DiskStatus) Descriptor() ([]byte, []int) {
  2832. return file_volume_server_proto_rawDescGZIP(), []int{62}
  2833. }
  2834. func (x *DiskStatus) GetDir() string {
  2835. if x != nil {
  2836. return x.Dir
  2837. }
  2838. return ""
  2839. }
  2840. func (x *DiskStatus) GetAll() uint64 {
  2841. if x != nil {
  2842. return x.All
  2843. }
  2844. return 0
  2845. }
  2846. func (x *DiskStatus) GetUsed() uint64 {
  2847. if x != nil {
  2848. return x.Used
  2849. }
  2850. return 0
  2851. }
  2852. func (x *DiskStatus) GetFree() uint64 {
  2853. if x != nil {
  2854. return x.Free
  2855. }
  2856. return 0
  2857. }
  2858. func (x *DiskStatus) GetPercentFree() float32 {
  2859. if x != nil {
  2860. return x.PercentFree
  2861. }
  2862. return 0
  2863. }
  2864. func (x *DiskStatus) GetPercentUsed() float32 {
  2865. if x != nil {
  2866. return x.PercentUsed
  2867. }
  2868. return 0
  2869. }
  2870. func (x *DiskStatus) GetDiskType() string {
  2871. if x != nil {
  2872. return x.DiskType
  2873. }
  2874. return ""
  2875. }
  2876. type MemStatus struct {
  2877. state protoimpl.MessageState
  2878. sizeCache protoimpl.SizeCache
  2879. unknownFields protoimpl.UnknownFields
  2880. Goroutines int32 `protobuf:"varint,1,opt,name=goroutines,proto3" json:"goroutines,omitempty"`
  2881. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  2882. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  2883. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  2884. Self uint64 `protobuf:"varint,5,opt,name=self,proto3" json:"self,omitempty"`
  2885. Heap uint64 `protobuf:"varint,6,opt,name=heap,proto3" json:"heap,omitempty"`
  2886. Stack uint64 `protobuf:"varint,7,opt,name=stack,proto3" json:"stack,omitempty"`
  2887. }
  2888. func (x *MemStatus) Reset() {
  2889. *x = MemStatus{}
  2890. if protoimpl.UnsafeEnabled {
  2891. mi := &file_volume_server_proto_msgTypes[63]
  2892. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2893. ms.StoreMessageInfo(mi)
  2894. }
  2895. }
  2896. func (x *MemStatus) String() string {
  2897. return protoimpl.X.MessageStringOf(x)
  2898. }
  2899. func (*MemStatus) ProtoMessage() {}
  2900. func (x *MemStatus) ProtoReflect() protoreflect.Message {
  2901. mi := &file_volume_server_proto_msgTypes[63]
  2902. if protoimpl.UnsafeEnabled && x != nil {
  2903. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2904. if ms.LoadMessageInfo() == nil {
  2905. ms.StoreMessageInfo(mi)
  2906. }
  2907. return ms
  2908. }
  2909. return mi.MessageOf(x)
  2910. }
  2911. // Deprecated: Use MemStatus.ProtoReflect.Descriptor instead.
  2912. func (*MemStatus) Descriptor() ([]byte, []int) {
  2913. return file_volume_server_proto_rawDescGZIP(), []int{63}
  2914. }
  2915. func (x *MemStatus) GetGoroutines() int32 {
  2916. if x != nil {
  2917. return x.Goroutines
  2918. }
  2919. return 0
  2920. }
  2921. func (x *MemStatus) GetAll() uint64 {
  2922. if x != nil {
  2923. return x.All
  2924. }
  2925. return 0
  2926. }
  2927. func (x *MemStatus) GetUsed() uint64 {
  2928. if x != nil {
  2929. return x.Used
  2930. }
  2931. return 0
  2932. }
  2933. func (x *MemStatus) GetFree() uint64 {
  2934. if x != nil {
  2935. return x.Free
  2936. }
  2937. return 0
  2938. }
  2939. func (x *MemStatus) GetSelf() uint64 {
  2940. if x != nil {
  2941. return x.Self
  2942. }
  2943. return 0
  2944. }
  2945. func (x *MemStatus) GetHeap() uint64 {
  2946. if x != nil {
  2947. return x.Heap
  2948. }
  2949. return 0
  2950. }
  2951. func (x *MemStatus) GetStack() uint64 {
  2952. if x != nil {
  2953. return x.Stack
  2954. }
  2955. return 0
  2956. }
  2957. // tired storage on volume servers
  2958. type RemoteFile struct {
  2959. state protoimpl.MessageState
  2960. sizeCache protoimpl.SizeCache
  2961. unknownFields protoimpl.UnknownFields
  2962. BackendType string `protobuf:"bytes,1,opt,name=backend_type,json=backendType,proto3" json:"backend_type,omitempty"`
  2963. BackendId string `protobuf:"bytes,2,opt,name=backend_id,json=backendId,proto3" json:"backend_id,omitempty"`
  2964. Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
  2965. Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  2966. FileSize uint64 `protobuf:"varint,5,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
  2967. ModifiedTime uint64 `protobuf:"varint,6,opt,name=modified_time,json=modifiedTime,proto3" json:"modified_time,omitempty"`
  2968. Extension string `protobuf:"bytes,7,opt,name=extension,proto3" json:"extension,omitempty"`
  2969. }
  2970. func (x *RemoteFile) Reset() {
  2971. *x = RemoteFile{}
  2972. if protoimpl.UnsafeEnabled {
  2973. mi := &file_volume_server_proto_msgTypes[64]
  2974. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2975. ms.StoreMessageInfo(mi)
  2976. }
  2977. }
  2978. func (x *RemoteFile) String() string {
  2979. return protoimpl.X.MessageStringOf(x)
  2980. }
  2981. func (*RemoteFile) ProtoMessage() {}
  2982. func (x *RemoteFile) ProtoReflect() protoreflect.Message {
  2983. mi := &file_volume_server_proto_msgTypes[64]
  2984. if protoimpl.UnsafeEnabled && x != nil {
  2985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2986. if ms.LoadMessageInfo() == nil {
  2987. ms.StoreMessageInfo(mi)
  2988. }
  2989. return ms
  2990. }
  2991. return mi.MessageOf(x)
  2992. }
  2993. // Deprecated: Use RemoteFile.ProtoReflect.Descriptor instead.
  2994. func (*RemoteFile) Descriptor() ([]byte, []int) {
  2995. return file_volume_server_proto_rawDescGZIP(), []int{64}
  2996. }
  2997. func (x *RemoteFile) GetBackendType() string {
  2998. if x != nil {
  2999. return x.BackendType
  3000. }
  3001. return ""
  3002. }
  3003. func (x *RemoteFile) GetBackendId() string {
  3004. if x != nil {
  3005. return x.BackendId
  3006. }
  3007. return ""
  3008. }
  3009. func (x *RemoteFile) GetKey() string {
  3010. if x != nil {
  3011. return x.Key
  3012. }
  3013. return ""
  3014. }
  3015. func (x *RemoteFile) GetOffset() uint64 {
  3016. if x != nil {
  3017. return x.Offset
  3018. }
  3019. return 0
  3020. }
  3021. func (x *RemoteFile) GetFileSize() uint64 {
  3022. if x != nil {
  3023. return x.FileSize
  3024. }
  3025. return 0
  3026. }
  3027. func (x *RemoteFile) GetModifiedTime() uint64 {
  3028. if x != nil {
  3029. return x.ModifiedTime
  3030. }
  3031. return 0
  3032. }
  3033. func (x *RemoteFile) GetExtension() string {
  3034. if x != nil {
  3035. return x.Extension
  3036. }
  3037. return ""
  3038. }
  3039. type VolumeInfo struct {
  3040. state protoimpl.MessageState
  3041. sizeCache protoimpl.SizeCache
  3042. unknownFields protoimpl.UnknownFields
  3043. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
  3044. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
  3045. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  3046. }
  3047. func (x *VolumeInfo) Reset() {
  3048. *x = VolumeInfo{}
  3049. if protoimpl.UnsafeEnabled {
  3050. mi := &file_volume_server_proto_msgTypes[65]
  3051. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3052. ms.StoreMessageInfo(mi)
  3053. }
  3054. }
  3055. func (x *VolumeInfo) String() string {
  3056. return protoimpl.X.MessageStringOf(x)
  3057. }
  3058. func (*VolumeInfo) ProtoMessage() {}
  3059. func (x *VolumeInfo) ProtoReflect() protoreflect.Message {
  3060. mi := &file_volume_server_proto_msgTypes[65]
  3061. if protoimpl.UnsafeEnabled && x != nil {
  3062. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3063. if ms.LoadMessageInfo() == nil {
  3064. ms.StoreMessageInfo(mi)
  3065. }
  3066. return ms
  3067. }
  3068. return mi.MessageOf(x)
  3069. }
  3070. // Deprecated: Use VolumeInfo.ProtoReflect.Descriptor instead.
  3071. func (*VolumeInfo) Descriptor() ([]byte, []int) {
  3072. return file_volume_server_proto_rawDescGZIP(), []int{65}
  3073. }
  3074. func (x *VolumeInfo) GetFiles() []*RemoteFile {
  3075. if x != nil {
  3076. return x.Files
  3077. }
  3078. return nil
  3079. }
  3080. func (x *VolumeInfo) GetVersion() uint32 {
  3081. if x != nil {
  3082. return x.Version
  3083. }
  3084. return 0
  3085. }
  3086. func (x *VolumeInfo) GetReplication() string {
  3087. if x != nil {
  3088. return x.Replication
  3089. }
  3090. return ""
  3091. }
  3092. type VolumeTierMoveDatToRemoteRequest struct {
  3093. state protoimpl.MessageState
  3094. sizeCache protoimpl.SizeCache
  3095. unknownFields protoimpl.UnknownFields
  3096. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3097. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3098. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName,proto3" json:"destination_backend_name,omitempty"`
  3099. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile,proto3" json:"keep_local_dat_file,omitempty"`
  3100. }
  3101. func (x *VolumeTierMoveDatToRemoteRequest) Reset() {
  3102. *x = VolumeTierMoveDatToRemoteRequest{}
  3103. if protoimpl.UnsafeEnabled {
  3104. mi := &file_volume_server_proto_msgTypes[66]
  3105. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3106. ms.StoreMessageInfo(mi)
  3107. }
  3108. }
  3109. func (x *VolumeTierMoveDatToRemoteRequest) String() string {
  3110. return protoimpl.X.MessageStringOf(x)
  3111. }
  3112. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  3113. func (x *VolumeTierMoveDatToRemoteRequest) ProtoReflect() protoreflect.Message {
  3114. mi := &file_volume_server_proto_msgTypes[66]
  3115. if protoimpl.UnsafeEnabled && x != nil {
  3116. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3117. if ms.LoadMessageInfo() == nil {
  3118. ms.StoreMessageInfo(mi)
  3119. }
  3120. return ms
  3121. }
  3122. return mi.MessageOf(x)
  3123. }
  3124. // Deprecated: Use VolumeTierMoveDatToRemoteRequest.ProtoReflect.Descriptor instead.
  3125. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  3126. return file_volume_server_proto_rawDescGZIP(), []int{66}
  3127. }
  3128. func (x *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  3129. if x != nil {
  3130. return x.VolumeId
  3131. }
  3132. return 0
  3133. }
  3134. func (x *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  3135. if x != nil {
  3136. return x.Collection
  3137. }
  3138. return ""
  3139. }
  3140. func (x *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  3141. if x != nil {
  3142. return x.DestinationBackendName
  3143. }
  3144. return ""
  3145. }
  3146. func (x *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  3147. if x != nil {
  3148. return x.KeepLocalDatFile
  3149. }
  3150. return false
  3151. }
  3152. type VolumeTierMoveDatToRemoteResponse struct {
  3153. state protoimpl.MessageState
  3154. sizeCache protoimpl.SizeCache
  3155. unknownFields protoimpl.UnknownFields
  3156. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3157. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3158. }
  3159. func (x *VolumeTierMoveDatToRemoteResponse) Reset() {
  3160. *x = VolumeTierMoveDatToRemoteResponse{}
  3161. if protoimpl.UnsafeEnabled {
  3162. mi := &file_volume_server_proto_msgTypes[67]
  3163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3164. ms.StoreMessageInfo(mi)
  3165. }
  3166. }
  3167. func (x *VolumeTierMoveDatToRemoteResponse) String() string {
  3168. return protoimpl.X.MessageStringOf(x)
  3169. }
  3170. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  3171. func (x *VolumeTierMoveDatToRemoteResponse) ProtoReflect() protoreflect.Message {
  3172. mi := &file_volume_server_proto_msgTypes[67]
  3173. if protoimpl.UnsafeEnabled && x != nil {
  3174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3175. if ms.LoadMessageInfo() == nil {
  3176. ms.StoreMessageInfo(mi)
  3177. }
  3178. return ms
  3179. }
  3180. return mi.MessageOf(x)
  3181. }
  3182. // Deprecated: Use VolumeTierMoveDatToRemoteResponse.ProtoReflect.Descriptor instead.
  3183. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  3184. return file_volume_server_proto_rawDescGZIP(), []int{67}
  3185. }
  3186. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  3187. if x != nil {
  3188. return x.Processed
  3189. }
  3190. return 0
  3191. }
  3192. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  3193. if x != nil {
  3194. return x.ProcessedPercentage
  3195. }
  3196. return 0
  3197. }
  3198. type VolumeTierMoveDatFromRemoteRequest struct {
  3199. state protoimpl.MessageState
  3200. sizeCache protoimpl.SizeCache
  3201. unknownFields protoimpl.UnknownFields
  3202. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3203. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3204. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile,proto3" json:"keep_remote_dat_file,omitempty"`
  3205. }
  3206. func (x *VolumeTierMoveDatFromRemoteRequest) Reset() {
  3207. *x = VolumeTierMoveDatFromRemoteRequest{}
  3208. if protoimpl.UnsafeEnabled {
  3209. mi := &file_volume_server_proto_msgTypes[68]
  3210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3211. ms.StoreMessageInfo(mi)
  3212. }
  3213. }
  3214. func (x *VolumeTierMoveDatFromRemoteRequest) String() string {
  3215. return protoimpl.X.MessageStringOf(x)
  3216. }
  3217. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  3218. func (x *VolumeTierMoveDatFromRemoteRequest) ProtoReflect() protoreflect.Message {
  3219. mi := &file_volume_server_proto_msgTypes[68]
  3220. if protoimpl.UnsafeEnabled && x != nil {
  3221. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3222. if ms.LoadMessageInfo() == nil {
  3223. ms.StoreMessageInfo(mi)
  3224. }
  3225. return ms
  3226. }
  3227. return mi.MessageOf(x)
  3228. }
  3229. // Deprecated: Use VolumeTierMoveDatFromRemoteRequest.ProtoReflect.Descriptor instead.
  3230. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  3231. return file_volume_server_proto_rawDescGZIP(), []int{68}
  3232. }
  3233. func (x *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  3234. if x != nil {
  3235. return x.VolumeId
  3236. }
  3237. return 0
  3238. }
  3239. func (x *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  3240. if x != nil {
  3241. return x.Collection
  3242. }
  3243. return ""
  3244. }
  3245. func (x *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  3246. if x != nil {
  3247. return x.KeepRemoteDatFile
  3248. }
  3249. return false
  3250. }
  3251. type VolumeTierMoveDatFromRemoteResponse struct {
  3252. state protoimpl.MessageState
  3253. sizeCache protoimpl.SizeCache
  3254. unknownFields protoimpl.UnknownFields
  3255. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3256. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3257. }
  3258. func (x *VolumeTierMoveDatFromRemoteResponse) Reset() {
  3259. *x = VolumeTierMoveDatFromRemoteResponse{}
  3260. if protoimpl.UnsafeEnabled {
  3261. mi := &file_volume_server_proto_msgTypes[69]
  3262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3263. ms.StoreMessageInfo(mi)
  3264. }
  3265. }
  3266. func (x *VolumeTierMoveDatFromRemoteResponse) String() string {
  3267. return protoimpl.X.MessageStringOf(x)
  3268. }
  3269. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  3270. func (x *VolumeTierMoveDatFromRemoteResponse) ProtoReflect() protoreflect.Message {
  3271. mi := &file_volume_server_proto_msgTypes[69]
  3272. if protoimpl.UnsafeEnabled && x != nil {
  3273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3274. if ms.LoadMessageInfo() == nil {
  3275. ms.StoreMessageInfo(mi)
  3276. }
  3277. return ms
  3278. }
  3279. return mi.MessageOf(x)
  3280. }
  3281. // Deprecated: Use VolumeTierMoveDatFromRemoteResponse.ProtoReflect.Descriptor instead.
  3282. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  3283. return file_volume_server_proto_rawDescGZIP(), []int{69}
  3284. }
  3285. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  3286. if x != nil {
  3287. return x.Processed
  3288. }
  3289. return 0
  3290. }
  3291. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  3292. if x != nil {
  3293. return x.ProcessedPercentage
  3294. }
  3295. return 0
  3296. }
  3297. type VolumeServerStatusRequest struct {
  3298. state protoimpl.MessageState
  3299. sizeCache protoimpl.SizeCache
  3300. unknownFields protoimpl.UnknownFields
  3301. }
  3302. func (x *VolumeServerStatusRequest) Reset() {
  3303. *x = VolumeServerStatusRequest{}
  3304. if protoimpl.UnsafeEnabled {
  3305. mi := &file_volume_server_proto_msgTypes[70]
  3306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3307. ms.StoreMessageInfo(mi)
  3308. }
  3309. }
  3310. func (x *VolumeServerStatusRequest) String() string {
  3311. return protoimpl.X.MessageStringOf(x)
  3312. }
  3313. func (*VolumeServerStatusRequest) ProtoMessage() {}
  3314. func (x *VolumeServerStatusRequest) ProtoReflect() protoreflect.Message {
  3315. mi := &file_volume_server_proto_msgTypes[70]
  3316. if protoimpl.UnsafeEnabled && x != nil {
  3317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3318. if ms.LoadMessageInfo() == nil {
  3319. ms.StoreMessageInfo(mi)
  3320. }
  3321. return ms
  3322. }
  3323. return mi.MessageOf(x)
  3324. }
  3325. // Deprecated: Use VolumeServerStatusRequest.ProtoReflect.Descriptor instead.
  3326. func (*VolumeServerStatusRequest) Descriptor() ([]byte, []int) {
  3327. return file_volume_server_proto_rawDescGZIP(), []int{70}
  3328. }
  3329. type VolumeServerStatusResponse struct {
  3330. state protoimpl.MessageState
  3331. sizeCache protoimpl.SizeCache
  3332. unknownFields protoimpl.UnknownFields
  3333. DiskStatuses []*DiskStatus `protobuf:"bytes,1,rep,name=disk_statuses,json=diskStatuses,proto3" json:"disk_statuses,omitempty"`
  3334. MemoryStatus *MemStatus `protobuf:"bytes,2,opt,name=memory_status,json=memoryStatus,proto3" json:"memory_status,omitempty"`
  3335. }
  3336. func (x *VolumeServerStatusResponse) Reset() {
  3337. *x = VolumeServerStatusResponse{}
  3338. if protoimpl.UnsafeEnabled {
  3339. mi := &file_volume_server_proto_msgTypes[71]
  3340. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3341. ms.StoreMessageInfo(mi)
  3342. }
  3343. }
  3344. func (x *VolumeServerStatusResponse) String() string {
  3345. return protoimpl.X.MessageStringOf(x)
  3346. }
  3347. func (*VolumeServerStatusResponse) ProtoMessage() {}
  3348. func (x *VolumeServerStatusResponse) ProtoReflect() protoreflect.Message {
  3349. mi := &file_volume_server_proto_msgTypes[71]
  3350. if protoimpl.UnsafeEnabled && x != nil {
  3351. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3352. if ms.LoadMessageInfo() == nil {
  3353. ms.StoreMessageInfo(mi)
  3354. }
  3355. return ms
  3356. }
  3357. return mi.MessageOf(x)
  3358. }
  3359. // Deprecated: Use VolumeServerStatusResponse.ProtoReflect.Descriptor instead.
  3360. func (*VolumeServerStatusResponse) Descriptor() ([]byte, []int) {
  3361. return file_volume_server_proto_rawDescGZIP(), []int{71}
  3362. }
  3363. func (x *VolumeServerStatusResponse) GetDiskStatuses() []*DiskStatus {
  3364. if x != nil {
  3365. return x.DiskStatuses
  3366. }
  3367. return nil
  3368. }
  3369. func (x *VolumeServerStatusResponse) GetMemoryStatus() *MemStatus {
  3370. if x != nil {
  3371. return x.MemoryStatus
  3372. }
  3373. return nil
  3374. }
  3375. type VolumeServerLeaveRequest struct {
  3376. state protoimpl.MessageState
  3377. sizeCache protoimpl.SizeCache
  3378. unknownFields protoimpl.UnknownFields
  3379. }
  3380. func (x *VolumeServerLeaveRequest) Reset() {
  3381. *x = VolumeServerLeaveRequest{}
  3382. if protoimpl.UnsafeEnabled {
  3383. mi := &file_volume_server_proto_msgTypes[72]
  3384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3385. ms.StoreMessageInfo(mi)
  3386. }
  3387. }
  3388. func (x *VolumeServerLeaveRequest) String() string {
  3389. return protoimpl.X.MessageStringOf(x)
  3390. }
  3391. func (*VolumeServerLeaveRequest) ProtoMessage() {}
  3392. func (x *VolumeServerLeaveRequest) ProtoReflect() protoreflect.Message {
  3393. mi := &file_volume_server_proto_msgTypes[72]
  3394. if protoimpl.UnsafeEnabled && x != nil {
  3395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3396. if ms.LoadMessageInfo() == nil {
  3397. ms.StoreMessageInfo(mi)
  3398. }
  3399. return ms
  3400. }
  3401. return mi.MessageOf(x)
  3402. }
  3403. // Deprecated: Use VolumeServerLeaveRequest.ProtoReflect.Descriptor instead.
  3404. func (*VolumeServerLeaveRequest) Descriptor() ([]byte, []int) {
  3405. return file_volume_server_proto_rawDescGZIP(), []int{72}
  3406. }
  3407. type VolumeServerLeaveResponse struct {
  3408. state protoimpl.MessageState
  3409. sizeCache protoimpl.SizeCache
  3410. unknownFields protoimpl.UnknownFields
  3411. }
  3412. func (x *VolumeServerLeaveResponse) Reset() {
  3413. *x = VolumeServerLeaveResponse{}
  3414. if protoimpl.UnsafeEnabled {
  3415. mi := &file_volume_server_proto_msgTypes[73]
  3416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3417. ms.StoreMessageInfo(mi)
  3418. }
  3419. }
  3420. func (x *VolumeServerLeaveResponse) String() string {
  3421. return protoimpl.X.MessageStringOf(x)
  3422. }
  3423. func (*VolumeServerLeaveResponse) ProtoMessage() {}
  3424. func (x *VolumeServerLeaveResponse) ProtoReflect() protoreflect.Message {
  3425. mi := &file_volume_server_proto_msgTypes[73]
  3426. if protoimpl.UnsafeEnabled && x != nil {
  3427. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3428. if ms.LoadMessageInfo() == nil {
  3429. ms.StoreMessageInfo(mi)
  3430. }
  3431. return ms
  3432. }
  3433. return mi.MessageOf(x)
  3434. }
  3435. // Deprecated: Use VolumeServerLeaveResponse.ProtoReflect.Descriptor instead.
  3436. func (*VolumeServerLeaveResponse) Descriptor() ([]byte, []int) {
  3437. return file_volume_server_proto_rawDescGZIP(), []int{73}
  3438. }
  3439. // select on volume servers
  3440. type QueryRequest struct {
  3441. state protoimpl.MessageState
  3442. sizeCache protoimpl.SizeCache
  3443. unknownFields protoimpl.UnknownFields
  3444. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  3445. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  3446. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  3447. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  3448. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  3449. }
  3450. func (x *QueryRequest) Reset() {
  3451. *x = QueryRequest{}
  3452. if protoimpl.UnsafeEnabled {
  3453. mi := &file_volume_server_proto_msgTypes[74]
  3454. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3455. ms.StoreMessageInfo(mi)
  3456. }
  3457. }
  3458. func (x *QueryRequest) String() string {
  3459. return protoimpl.X.MessageStringOf(x)
  3460. }
  3461. func (*QueryRequest) ProtoMessage() {}
  3462. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  3463. mi := &file_volume_server_proto_msgTypes[74]
  3464. if protoimpl.UnsafeEnabled && x != nil {
  3465. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3466. if ms.LoadMessageInfo() == nil {
  3467. ms.StoreMessageInfo(mi)
  3468. }
  3469. return ms
  3470. }
  3471. return mi.MessageOf(x)
  3472. }
  3473. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  3474. func (*QueryRequest) Descriptor() ([]byte, []int) {
  3475. return file_volume_server_proto_rawDescGZIP(), []int{74}
  3476. }
  3477. func (x *QueryRequest) GetSelections() []string {
  3478. if x != nil {
  3479. return x.Selections
  3480. }
  3481. return nil
  3482. }
  3483. func (x *QueryRequest) GetFromFileIds() []string {
  3484. if x != nil {
  3485. return x.FromFileIds
  3486. }
  3487. return nil
  3488. }
  3489. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  3490. if x != nil {
  3491. return x.Filter
  3492. }
  3493. return nil
  3494. }
  3495. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  3496. if x != nil {
  3497. return x.InputSerialization
  3498. }
  3499. return nil
  3500. }
  3501. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  3502. if x != nil {
  3503. return x.OutputSerialization
  3504. }
  3505. return nil
  3506. }
  3507. type QueriedStripe struct {
  3508. state protoimpl.MessageState
  3509. sizeCache protoimpl.SizeCache
  3510. unknownFields protoimpl.UnknownFields
  3511. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  3512. }
  3513. func (x *QueriedStripe) Reset() {
  3514. *x = QueriedStripe{}
  3515. if protoimpl.UnsafeEnabled {
  3516. mi := &file_volume_server_proto_msgTypes[75]
  3517. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3518. ms.StoreMessageInfo(mi)
  3519. }
  3520. }
  3521. func (x *QueriedStripe) String() string {
  3522. return protoimpl.X.MessageStringOf(x)
  3523. }
  3524. func (*QueriedStripe) ProtoMessage() {}
  3525. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  3526. mi := &file_volume_server_proto_msgTypes[75]
  3527. if protoimpl.UnsafeEnabled && x != nil {
  3528. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3529. if ms.LoadMessageInfo() == nil {
  3530. ms.StoreMessageInfo(mi)
  3531. }
  3532. return ms
  3533. }
  3534. return mi.MessageOf(x)
  3535. }
  3536. // Deprecated: Use QueriedStripe.ProtoReflect.Descriptor instead.
  3537. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  3538. return file_volume_server_proto_rawDescGZIP(), []int{75}
  3539. }
  3540. func (x *QueriedStripe) GetRecords() []byte {
  3541. if x != nil {
  3542. return x.Records
  3543. }
  3544. return nil
  3545. }
  3546. type VolumeNeedleStatusRequest struct {
  3547. state protoimpl.MessageState
  3548. sizeCache protoimpl.SizeCache
  3549. unknownFields protoimpl.UnknownFields
  3550. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3551. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3552. }
  3553. func (x *VolumeNeedleStatusRequest) Reset() {
  3554. *x = VolumeNeedleStatusRequest{}
  3555. if protoimpl.UnsafeEnabled {
  3556. mi := &file_volume_server_proto_msgTypes[76]
  3557. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3558. ms.StoreMessageInfo(mi)
  3559. }
  3560. }
  3561. func (x *VolumeNeedleStatusRequest) String() string {
  3562. return protoimpl.X.MessageStringOf(x)
  3563. }
  3564. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  3565. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  3566. mi := &file_volume_server_proto_msgTypes[76]
  3567. if protoimpl.UnsafeEnabled && x != nil {
  3568. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3569. if ms.LoadMessageInfo() == nil {
  3570. ms.StoreMessageInfo(mi)
  3571. }
  3572. return ms
  3573. }
  3574. return mi.MessageOf(x)
  3575. }
  3576. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  3577. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  3578. return file_volume_server_proto_rawDescGZIP(), []int{76}
  3579. }
  3580. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  3581. if x != nil {
  3582. return x.VolumeId
  3583. }
  3584. return 0
  3585. }
  3586. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  3587. if x != nil {
  3588. return x.NeedleId
  3589. }
  3590. return 0
  3591. }
  3592. type VolumeNeedleStatusResponse struct {
  3593. state protoimpl.MessageState
  3594. sizeCache protoimpl.SizeCache
  3595. unknownFields protoimpl.UnknownFields
  3596. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3597. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  3598. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  3599. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  3600. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  3601. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  3602. }
  3603. func (x *VolumeNeedleStatusResponse) Reset() {
  3604. *x = VolumeNeedleStatusResponse{}
  3605. if protoimpl.UnsafeEnabled {
  3606. mi := &file_volume_server_proto_msgTypes[77]
  3607. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3608. ms.StoreMessageInfo(mi)
  3609. }
  3610. }
  3611. func (x *VolumeNeedleStatusResponse) String() string {
  3612. return protoimpl.X.MessageStringOf(x)
  3613. }
  3614. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  3615. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  3616. mi := &file_volume_server_proto_msgTypes[77]
  3617. if protoimpl.UnsafeEnabled && x != nil {
  3618. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3619. if ms.LoadMessageInfo() == nil {
  3620. ms.StoreMessageInfo(mi)
  3621. }
  3622. return ms
  3623. }
  3624. return mi.MessageOf(x)
  3625. }
  3626. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  3627. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  3628. return file_volume_server_proto_rawDescGZIP(), []int{77}
  3629. }
  3630. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  3631. if x != nil {
  3632. return x.NeedleId
  3633. }
  3634. return 0
  3635. }
  3636. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  3637. if x != nil {
  3638. return x.Cookie
  3639. }
  3640. return 0
  3641. }
  3642. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  3643. if x != nil {
  3644. return x.Size
  3645. }
  3646. return 0
  3647. }
  3648. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  3649. if x != nil {
  3650. return x.LastModified
  3651. }
  3652. return 0
  3653. }
  3654. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  3655. if x != nil {
  3656. return x.Crc
  3657. }
  3658. return 0
  3659. }
  3660. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  3661. if x != nil {
  3662. return x.Ttl
  3663. }
  3664. return ""
  3665. }
  3666. type QueryRequest_Filter struct {
  3667. state protoimpl.MessageState
  3668. sizeCache protoimpl.SizeCache
  3669. unknownFields protoimpl.UnknownFields
  3670. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  3671. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  3672. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  3673. }
  3674. func (x *QueryRequest_Filter) Reset() {
  3675. *x = QueryRequest_Filter{}
  3676. if protoimpl.UnsafeEnabled {
  3677. mi := &file_volume_server_proto_msgTypes[78]
  3678. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3679. ms.StoreMessageInfo(mi)
  3680. }
  3681. }
  3682. func (x *QueryRequest_Filter) String() string {
  3683. return protoimpl.X.MessageStringOf(x)
  3684. }
  3685. func (*QueryRequest_Filter) ProtoMessage() {}
  3686. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  3687. mi := &file_volume_server_proto_msgTypes[78]
  3688. if protoimpl.UnsafeEnabled && x != nil {
  3689. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3690. if ms.LoadMessageInfo() == nil {
  3691. ms.StoreMessageInfo(mi)
  3692. }
  3693. return ms
  3694. }
  3695. return mi.MessageOf(x)
  3696. }
  3697. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  3698. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  3699. return file_volume_server_proto_rawDescGZIP(), []int{74, 0}
  3700. }
  3701. func (x *QueryRequest_Filter) GetField() string {
  3702. if x != nil {
  3703. return x.Field
  3704. }
  3705. return ""
  3706. }
  3707. func (x *QueryRequest_Filter) GetOperand() string {
  3708. if x != nil {
  3709. return x.Operand
  3710. }
  3711. return ""
  3712. }
  3713. func (x *QueryRequest_Filter) GetValue() string {
  3714. if x != nil {
  3715. return x.Value
  3716. }
  3717. return ""
  3718. }
  3719. type QueryRequest_InputSerialization struct {
  3720. state protoimpl.MessageState
  3721. sizeCache protoimpl.SizeCache
  3722. unknownFields protoimpl.UnknownFields
  3723. // NONE | GZIP | BZIP2
  3724. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  3725. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  3726. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  3727. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  3728. }
  3729. func (x *QueryRequest_InputSerialization) Reset() {
  3730. *x = QueryRequest_InputSerialization{}
  3731. if protoimpl.UnsafeEnabled {
  3732. mi := &file_volume_server_proto_msgTypes[79]
  3733. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3734. ms.StoreMessageInfo(mi)
  3735. }
  3736. }
  3737. func (x *QueryRequest_InputSerialization) String() string {
  3738. return protoimpl.X.MessageStringOf(x)
  3739. }
  3740. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  3741. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  3742. mi := &file_volume_server_proto_msgTypes[79]
  3743. if protoimpl.UnsafeEnabled && x != nil {
  3744. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3745. if ms.LoadMessageInfo() == nil {
  3746. ms.StoreMessageInfo(mi)
  3747. }
  3748. return ms
  3749. }
  3750. return mi.MessageOf(x)
  3751. }
  3752. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  3753. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  3754. return file_volume_server_proto_rawDescGZIP(), []int{74, 1}
  3755. }
  3756. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  3757. if x != nil {
  3758. return x.CompressionType
  3759. }
  3760. return ""
  3761. }
  3762. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  3763. if x != nil {
  3764. return x.CsvInput
  3765. }
  3766. return nil
  3767. }
  3768. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  3769. if x != nil {
  3770. return x.JsonInput
  3771. }
  3772. return nil
  3773. }
  3774. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  3775. if x != nil {
  3776. return x.ParquetInput
  3777. }
  3778. return nil
  3779. }
  3780. type QueryRequest_OutputSerialization struct {
  3781. state protoimpl.MessageState
  3782. sizeCache protoimpl.SizeCache
  3783. unknownFields protoimpl.UnknownFields
  3784. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  3785. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  3786. }
  3787. func (x *QueryRequest_OutputSerialization) Reset() {
  3788. *x = QueryRequest_OutputSerialization{}
  3789. if protoimpl.UnsafeEnabled {
  3790. mi := &file_volume_server_proto_msgTypes[80]
  3791. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3792. ms.StoreMessageInfo(mi)
  3793. }
  3794. }
  3795. func (x *QueryRequest_OutputSerialization) String() string {
  3796. return protoimpl.X.MessageStringOf(x)
  3797. }
  3798. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  3799. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  3800. mi := &file_volume_server_proto_msgTypes[80]
  3801. if protoimpl.UnsafeEnabled && x != nil {
  3802. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3803. if ms.LoadMessageInfo() == nil {
  3804. ms.StoreMessageInfo(mi)
  3805. }
  3806. return ms
  3807. }
  3808. return mi.MessageOf(x)
  3809. }
  3810. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  3811. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  3812. return file_volume_server_proto_rawDescGZIP(), []int{74, 2}
  3813. }
  3814. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  3815. if x != nil {
  3816. return x.CsvOutput
  3817. }
  3818. return nil
  3819. }
  3820. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  3821. if x != nil {
  3822. return x.JsonOutput
  3823. }
  3824. return nil
  3825. }
  3826. type QueryRequest_InputSerialization_CSVInput struct {
  3827. state protoimpl.MessageState
  3828. sizeCache protoimpl.SizeCache
  3829. unknownFields protoimpl.UnknownFields
  3830. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  3831. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  3832. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  3833. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer,proto3" json:"quote_charactoer,omitempty"` // Default: "
  3834. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  3835. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  3836. // If true, records might contain record delimiters within quote characters
  3837. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  3838. }
  3839. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  3840. *x = QueryRequest_InputSerialization_CSVInput{}
  3841. if protoimpl.UnsafeEnabled {
  3842. mi := &file_volume_server_proto_msgTypes[81]
  3843. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3844. ms.StoreMessageInfo(mi)
  3845. }
  3846. }
  3847. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  3848. return protoimpl.X.MessageStringOf(x)
  3849. }
  3850. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  3851. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  3852. mi := &file_volume_server_proto_msgTypes[81]
  3853. if protoimpl.UnsafeEnabled && x != nil {
  3854. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3855. if ms.LoadMessageInfo() == nil {
  3856. ms.StoreMessageInfo(mi)
  3857. }
  3858. return ms
  3859. }
  3860. return mi.MessageOf(x)
  3861. }
  3862. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  3863. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  3864. return file_volume_server_proto_rawDescGZIP(), []int{74, 1, 0}
  3865. }
  3866. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  3867. if x != nil {
  3868. return x.FileHeaderInfo
  3869. }
  3870. return ""
  3871. }
  3872. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  3873. if x != nil {
  3874. return x.RecordDelimiter
  3875. }
  3876. return ""
  3877. }
  3878. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  3879. if x != nil {
  3880. return x.FieldDelimiter
  3881. }
  3882. return ""
  3883. }
  3884. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharactoer() string {
  3885. if x != nil {
  3886. return x.QuoteCharactoer
  3887. }
  3888. return ""
  3889. }
  3890. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  3891. if x != nil {
  3892. return x.QuoteEscapeCharacter
  3893. }
  3894. return ""
  3895. }
  3896. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  3897. if x != nil {
  3898. return x.Comments
  3899. }
  3900. return ""
  3901. }
  3902. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  3903. if x != nil {
  3904. return x.AllowQuotedRecordDelimiter
  3905. }
  3906. return false
  3907. }
  3908. type QueryRequest_InputSerialization_JSONInput struct {
  3909. state protoimpl.MessageState
  3910. sizeCache protoimpl.SizeCache
  3911. unknownFields protoimpl.UnknownFields
  3912. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  3913. }
  3914. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  3915. *x = QueryRequest_InputSerialization_JSONInput{}
  3916. if protoimpl.UnsafeEnabled {
  3917. mi := &file_volume_server_proto_msgTypes[82]
  3918. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3919. ms.StoreMessageInfo(mi)
  3920. }
  3921. }
  3922. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  3923. return protoimpl.X.MessageStringOf(x)
  3924. }
  3925. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  3926. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  3927. mi := &file_volume_server_proto_msgTypes[82]
  3928. if protoimpl.UnsafeEnabled && x != nil {
  3929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3930. if ms.LoadMessageInfo() == nil {
  3931. ms.StoreMessageInfo(mi)
  3932. }
  3933. return ms
  3934. }
  3935. return mi.MessageOf(x)
  3936. }
  3937. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  3938. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  3939. return file_volume_server_proto_rawDescGZIP(), []int{74, 1, 1}
  3940. }
  3941. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  3942. if x != nil {
  3943. return x.Type
  3944. }
  3945. return ""
  3946. }
  3947. type QueryRequest_InputSerialization_ParquetInput struct {
  3948. state protoimpl.MessageState
  3949. sizeCache protoimpl.SizeCache
  3950. unknownFields protoimpl.UnknownFields
  3951. }
  3952. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  3953. *x = QueryRequest_InputSerialization_ParquetInput{}
  3954. if protoimpl.UnsafeEnabled {
  3955. mi := &file_volume_server_proto_msgTypes[83]
  3956. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3957. ms.StoreMessageInfo(mi)
  3958. }
  3959. }
  3960. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  3961. return protoimpl.X.MessageStringOf(x)
  3962. }
  3963. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  3964. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  3965. mi := &file_volume_server_proto_msgTypes[83]
  3966. if protoimpl.UnsafeEnabled && x != nil {
  3967. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3968. if ms.LoadMessageInfo() == nil {
  3969. ms.StoreMessageInfo(mi)
  3970. }
  3971. return ms
  3972. }
  3973. return mi.MessageOf(x)
  3974. }
  3975. // Deprecated: Use QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  3976. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  3977. return file_volume_server_proto_rawDescGZIP(), []int{74, 1, 2}
  3978. }
  3979. type QueryRequest_OutputSerialization_CSVOutput struct {
  3980. state protoimpl.MessageState
  3981. sizeCache protoimpl.SizeCache
  3982. unknownFields protoimpl.UnknownFields
  3983. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  3984. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  3985. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  3986. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer,proto3" json:"quote_charactoer,omitempty"` // Default: "
  3987. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  3988. }
  3989. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  3990. *x = QueryRequest_OutputSerialization_CSVOutput{}
  3991. if protoimpl.UnsafeEnabled {
  3992. mi := &file_volume_server_proto_msgTypes[84]
  3993. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3994. ms.StoreMessageInfo(mi)
  3995. }
  3996. }
  3997. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  3998. return protoimpl.X.MessageStringOf(x)
  3999. }
  4000. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  4001. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  4002. mi := &file_volume_server_proto_msgTypes[84]
  4003. if protoimpl.UnsafeEnabled && x != nil {
  4004. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4005. if ms.LoadMessageInfo() == nil {
  4006. ms.StoreMessageInfo(mi)
  4007. }
  4008. return ms
  4009. }
  4010. return mi.MessageOf(x)
  4011. }
  4012. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  4013. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  4014. return file_volume_server_proto_rawDescGZIP(), []int{74, 2, 0}
  4015. }
  4016. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  4017. if x != nil {
  4018. return x.QuoteFields
  4019. }
  4020. return ""
  4021. }
  4022. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  4023. if x != nil {
  4024. return x.RecordDelimiter
  4025. }
  4026. return ""
  4027. }
  4028. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  4029. if x != nil {
  4030. return x.FieldDelimiter
  4031. }
  4032. return ""
  4033. }
  4034. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharactoer() string {
  4035. if x != nil {
  4036. return x.QuoteCharactoer
  4037. }
  4038. return ""
  4039. }
  4040. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  4041. if x != nil {
  4042. return x.QuoteEscapeCharacter
  4043. }
  4044. return ""
  4045. }
  4046. type QueryRequest_OutputSerialization_JSONOutput struct {
  4047. state protoimpl.MessageState
  4048. sizeCache protoimpl.SizeCache
  4049. unknownFields protoimpl.UnknownFields
  4050. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  4051. }
  4052. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  4053. *x = QueryRequest_OutputSerialization_JSONOutput{}
  4054. if protoimpl.UnsafeEnabled {
  4055. mi := &file_volume_server_proto_msgTypes[85]
  4056. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4057. ms.StoreMessageInfo(mi)
  4058. }
  4059. }
  4060. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  4061. return protoimpl.X.MessageStringOf(x)
  4062. }
  4063. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  4064. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  4065. mi := &file_volume_server_proto_msgTypes[85]
  4066. if protoimpl.UnsafeEnabled && x != nil {
  4067. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4068. if ms.LoadMessageInfo() == nil {
  4069. ms.StoreMessageInfo(mi)
  4070. }
  4071. return ms
  4072. }
  4073. return mi.MessageOf(x)
  4074. }
  4075. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  4076. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  4077. return file_volume_server_proto_rawDescGZIP(), []int{74, 2, 1}
  4078. }
  4079. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  4080. if x != nil {
  4081. return x.RecordDelimiter
  4082. }
  4083. return ""
  4084. }
  4085. var File_volume_server_proto protoreflect.FileDescriptor
  4086. var file_volume_server_proto_rawDesc = []byte{
  4087. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  4088. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4089. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68,
  4090. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a,
  4091. 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
  4092. 0x07, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70,
  4093. 0x5f, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20,
  4094. 0x01, 0x28, 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43,
  4095. 0x68, 0x65, 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c,
  4096. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72,
  4097. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76,
  4098. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4099. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65,
  4100. 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  4101. 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69,
  4102. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12,
  4103. 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  4104. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72,
  4105. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a,
  4106. 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a,
  4107. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
  4108. 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45,
  4109. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  4110. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4111. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4112. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a,
  4113. 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65,
  4114. 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61,
  4115. 0x72, 0x62, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28,
  4116. 0x01, 0x52, 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22,
  4117. 0x5b, 0x0a, 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  4118. 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a,
  4119. 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  4120. 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72,
  4121. 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  4122. 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x1d, 0x0a, 0x1b,
  4123. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70,
  4124. 0x61, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56,
  4125. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69,
  4126. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4127. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4128. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  4129. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4130. 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f,
  4131. 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61,
  4132. 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x39, 0x0a, 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  4133. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75,
  4134. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  4135. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  4136. 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4137. 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4138. 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4139. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f,
  4140. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  4141. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65,
  4142. 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
  4143. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xfb, 0x01, 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63,
  4144. 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4145. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4146. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  4147. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  4148. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a,
  4149. 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01,
  4150. 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12,
  4151. 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04,
  4152. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  4153. 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  4154. 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61,
  4155. 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20,
  4156. 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61,
  4157. 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f,
  4158. 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b,
  4159. 0x54, 0x79, 0x70, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65,
  4160. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36,
  4161. 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74,
  4162. 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4163. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4164. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4165. 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4166. 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  4167. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  4168. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  4169. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4170. 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  4171. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
  4172. 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  4173. 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x6f, 0x66, 0x66,
  4174. 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x74, 0x61, 0x69, 0x6c, 0x4f,
  4175. 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  4176. 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4177. 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e,
  4178. 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a,
  4179. 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65,
  4180. 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e,
  4181. 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71,
  4182. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4183. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4184. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20,
  4185. 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x22, 0x42, 0x0a, 0x1d,
  4186. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61,
  4187. 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a,
  4188. 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20,
  4189. 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  4190. 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52,
  4191. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4192. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4193. 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75,
  4194. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x33, 0x0a, 0x14, 0x56, 0x6f,
  4195. 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  4196. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4197. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22,
  4198. 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
  4199. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75,
  4200. 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4201. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4202. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x16, 0x0a, 0x14,
  4203. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  4204. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61,
  4205. 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4206. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  4207. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c,
  4208. 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64,
  4209. 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19,
  4210. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62,
  4211. 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4212. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4213. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4214. 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70,
  4215. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  4216. 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4217. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4218. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x72,
  4219. 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  4220. 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f, 0x0a,
  4221. 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65,
  4222. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f,
  4223. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x32,
  4224. 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  4225. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4226. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4227. 0x49, 0x64, 0x22, 0x38, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74,
  4228. 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73,
  4229. 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  4230. 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0xcb, 0x01, 0x0a,
  4231. 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  4232. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4233. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  4234. 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  4235. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  4236. 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03,
  4237. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  4238. 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  4239. 0x74, 0x74, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61,
  4240. 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73,
  4241. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  4242. 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  4243. 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x3f, 0x0a, 0x12, 0x56, 0x6f,
  4244. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  4245. 0x12, 0x29, 0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f,
  4246. 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x6c, 0x61, 0x73,
  4247. 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f,
  4248. 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4249. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4250. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03,
  4251. 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f,
  4252. 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76,
  4253. 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d,
  4254. 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  4255. 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04,
  4256. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74,
  4257. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05,
  4258. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4259. 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4260. 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75,
  4261. 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75,
  4262. 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75,
  4263. 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65,
  4264. 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75,
  4265. 0x6e, 0x64, 0x22, 0x35, 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65,
  4266. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63,
  4267. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69,
  4268. 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f,
  4269. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65,
  4270. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4271. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4272. 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02,
  4273. 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a,
  4274. 0x14, 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65,
  4275. 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c,
  4276. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22,
  4277. 0x84, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65,
  4278. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d,
  4279. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  4280. 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65,
  4281. 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79,
  4282. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f,
  4283. 0x64, 0x79, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68,
  4284. 0x75, 0x6e, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73,
  4285. 0x74, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x22, 0xb7, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4286. 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71,
  4287. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4288. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4289. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20,
  4290. 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14,
  4291. 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63,
  4292. 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65,
  4293. 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30,
  4294. 0x0a, 0x14, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4295. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f,
  4296. 0x75, 0x72, 0x63, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
  4297. 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65,
  4298. 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c,
  4299. 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  4300. 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4301. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4302. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  4303. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  4304. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e,
  4305. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65,
  4306. 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b,
  4307. 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  4308. 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4309. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4310. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  4311. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4312. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56,
  4313. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62,
  4314. 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11,
  4315. 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64,
  4316. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74,
  4317. 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x8b, 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c,
  4318. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52,
  4319. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4320. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4321. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4322. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4323. 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73,
  4324. 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73,
  4325. 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c,
  4326. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78,
  4327. 0x46, 0x69, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64,
  4328. 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  4329. 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22,
  4330. 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x6a, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18,
  4331. 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69,
  4332. 0x6c, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66,
  4333. 0x69, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56,
  4334. 0x69, 0x66, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4335. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70,
  4336. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x77, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4337. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
  4338. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  4339. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  4340. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  4341. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4342. 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20,
  4343. 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a,
  4344. 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44,
  4345. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a,
  4346. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d,
  4347. 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4348. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4349. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  4350. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f,
  4351. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72,
  4352. 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61,
  4353. 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  4354. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70,
  4355. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4356. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71,
  4357. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4358. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4359. 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03,
  4360. 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f,
  4361. 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  4362. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4363. 0x99, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  4364. 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  4365. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4366. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61,
  4367. 0x72, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61,
  4368. 0x72, 0x64, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03,
  4369. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04,
  4370. 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65,
  4371. 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x05, 0x20, 0x01,
  4372. 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56,
  4373. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64,
  4374. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  4375. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a,
  4376. 0x69, 0x73, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
  4377. 0x52, 0x09, 0x69, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19,
  4378. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65,
  4379. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4380. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4381. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4382. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  4383. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b,
  4384. 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65,
  4385. 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
  4386. 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56,
  4387. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4388. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c,
  4389. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c,
  4390. 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4391. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4392. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4393. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  4394. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4395. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4396. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61,
  4397. 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  4398. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4399. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4400. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x8a, 0x03, 0x0a, 0x1c, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f,
  4401. 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  4402. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4403. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4404. 0x65, 0x49, 0x64, 0x12, 0x3b, 0x0a, 0x1a, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f,
  4405. 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  4406. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65,
  4407. 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73,
  4408. 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a,
  4409. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65,
  4410. 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3b, 0x0a, 0x1a, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65,
  4411. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e,
  4412. 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c,
  4413. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  4414. 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69,
  4415. 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c,
  4416. 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f,
  4417. 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43,
  4418. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69,
  4419. 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28,
  4420. 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76,
  4421. 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4422. 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4423. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79,
  4424. 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79,
  4425. 0x70, 0x65, 0x22, 0xbb, 0x01, 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75,
  4426. 0x73, 0x12, 0x10, 0x0a, 0x03, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  4427. 0x64, 0x69, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  4428. 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20,
  4429. 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65,
  4430. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a,
  4431. 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x18, 0x05, 0x20,
  4432. 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x46, 0x72, 0x65, 0x65,
  4433. 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x64,
  4434. 0x18, 0x06, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x55,
  4435. 0x73, 0x65, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65,
  4436. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65,
  4437. 0x22, 0xa3, 0x01, 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e,
  4438. 0x0a, 0x0a, 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01,
  4439. 0x28, 0x05, 0x52, 0x0a, 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x10,
  4440. 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c,
  4441. 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04,
  4442. 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01,
  4443. 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x6c, 0x66,
  4444. 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x12, 0x0a, 0x04,
  4445. 0x68, 0x65, 0x61, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x68, 0x65, 0x61, 0x70,
  4446. 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52,
  4447. 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x22, 0xd8, 0x01, 0x0a, 0x0a, 0x52, 0x65, 0x6d, 0x6f, 0x74,
  4448. 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  4449. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x61, 0x63,
  4450. 0x6b, 0x65, 0x6e, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x61, 0x63, 0x6b,
  4451. 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x61,
  4452. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x03,
  4453. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
  4454. 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
  4455. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05,
  4456. 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23,
  4457. 0x0a, 0x0d, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  4458. 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54,
  4459. 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  4460. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  4461. 0x6e, 0x22, 0x7c, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  4462. 0x32, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c,
  4463. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4464. 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69,
  4465. 0x6c, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  4466. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a,
  4467. 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01,
  4468. 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
  4469. 0xc8, 0x01, 0x0a, 0x20, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  4470. 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71,
  4471. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4472. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4473. 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  4474. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4475. 0x6e, 0x12, 0x38, 0x0a, 0x18, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  4476. 0x5f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
  4477. 0x01, 0x28, 0x09, 0x52, 0x16, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  4478. 0x42, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b,
  4479. 0x65, 0x65, 0x70, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69,
  4480. 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f,
  4481. 0x63, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f,
  4482. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54,
  4483. 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  4484. 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01,
  4485. 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a,
  4486. 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e,
  4487. 0x74, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63,
  4488. 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22,
  4489. 0x92, 0x01, 0x0a, 0x22, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  4490. 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52,
  4491. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4492. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4493. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4494. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4495. 0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f,
  4496. 0x74, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  4497. 0x08, 0x52, 0x11, 0x6b, 0x65, 0x65, 0x70, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74,
  4498. 0x46, 0x69, 0x6c, 0x65, 0x22, 0x75, 0x0a, 0x23, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69,
  4499. 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d,
  4500. 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70,
  4501. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  4502. 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f,
  4503. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
  4504. 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65,
  4505. 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56,
  4506. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75,
  4507. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xa1, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c,
  4508. 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  4509. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f,
  4510. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c,
  4511. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4512. 0x62, 0x2e, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69,
  4513. 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65,
  4514. 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  4515. 0x0b, 0x32, 0x1b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  4516. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c,
  4517. 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x1a, 0x0a, 0x18,
  4518. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76,
  4519. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75,
  4520. 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73,
  4521. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xf8, 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  4522. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
  4523. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x65,
  4524. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x66,
  4525. 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x66,
  4526. 0x72, 0x6f, 0x6d, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69,
  4527. 0x6c, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x6f, 0x6c,
  4528. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75,
  4529. 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65,
  4530. 0x72, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69, 0x6e, 0x70,
  4531. 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  4532. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4533. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  4534. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69,
  4535. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70, 0x75, 0x74,
  4536. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a,
  4537. 0x14, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  4538. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x6f,
  4539. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51,
  4540. 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70,
  4541. 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  4542. 0x13, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61,
  4543. 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x4e, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x14,
  4544. 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66,
  4545. 0x69, 0x65, 0x6c, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18,
  4546. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x14,
  4547. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76,
  4548. 0x61, 0x6c, 0x75, 0x65, 0x1a, 0xd5, 0x05, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65,
  4549. 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x63,
  4550. 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
  4551. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
  4552. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f, 0x69, 0x6e,
  4553. 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4554. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65,
  4555. 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53,
  4556. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56,
  4557. 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x08, 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12,
  4558. 0x5a, 0x0a, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20,
  4559. 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4560. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  4561. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  4562. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74,
  4563. 0x52, 0x09, 0x6a, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a, 0x0d, 0x70,
  4564. 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01,
  4565. 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4566. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  4567. 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  4568. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70,
  4569. 0x75, 0x74, 0x52, 0x0c, 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74,
  4570. 0x1a, 0xc8, 0x02, 0x0a, 0x08, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x28, 0x0a,
  4571. 0x10, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66,
  4572. 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48, 0x65, 0x61,
  4573. 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72,
  4574. 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
  4575. 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  4576. 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69,
  4577. 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65,
  4578. 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x71,
  4579. 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x18,
  4580. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72,
  4581. 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f,
  4582. 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
  4583. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63,
  4584. 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08,
  4585. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  4586. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f,
  4587. 0x77, 0x5f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f,
  4588. 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52,
  4589. 0x1a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f,
  4590. 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a,
  4591. 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
  4592. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c,
  4593. 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xf1, 0x03, 0x0a,
  4594. 0x13, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61,
  4595. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5b, 0x0a, 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70,
  4596. 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4597. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72,
  4598. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53,
  4599. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56,
  4600. 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x52, 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75,
  4601. 0x74, 0x12, 0x5e, 0x0a, 0x0b, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,
  4602. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4603. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  4604. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72,
  4605. 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f,
  4606. 0x75, 0x74, 0x70, 0x75, 0x74, 0x52, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75,
  4607. 0x74, 0x1a, 0xe3, 0x01, 0x0a, 0x09, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12,
  4608. 0x21, 0x0a, 0x0c, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18,
  4609. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c,
  4610. 0x64, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c,
  4611. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65,
  4612. 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a,
  4613. 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72,
  4614. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c,
  4615. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f,
  4616. 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  4617. 0x52, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65,
  4618. 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70,
  4619. 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28,
  4620. 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68,
  4621. 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x1a, 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f,
  4622. 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f,
  4623. 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  4624. 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72,
  4625. 0x22, 0x29, 0x0a, 0x0d, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70,
  4626. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01,
  4627. 0x28, 0x0c, 0x52, 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56,
  4628. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  4629. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4630. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4631. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f,
  4632. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  4633. 0x49, 0x64, 0x22, 0xae, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65,
  4634. 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4635. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  4636. 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16,
  4637. 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
  4638. 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03,
  4639. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61,
  4640. 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
  4641. 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12,
  4642. 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72,
  4643. 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  4644. 0x74, 0x74, 0x6c, 0x32, 0xd8, 0x1f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  4645. 0x72, 0x76, 0x65, 0x72, 0x12, 0x5c, 0x0a, 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c,
  4646. 0x65, 0x74, 0x65, 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4647. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65,
  4648. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4649. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74,
  4650. 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  4651. 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4652. 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4653. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75,
  4654. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75,
  4655. 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4656. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  4657. 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  4658. 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4659. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4660. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63,
  4661. 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  4662. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4663. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75,
  4664. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65,
  4665. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x61, 0x63, 0x75,
  4666. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x2b,
  4667. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4668. 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  4669. 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f,
  4670. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4671. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69,
  4672. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56,
  4673. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e,
  4674. 0x75, 0x70, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4675. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4676. 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4677. 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4678. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4679. 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4680. 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
  4681. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4682. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43,
  4683. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4684. 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4685. 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4686. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65,
  4687. 0x0a, 0x0e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4688. 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4689. 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75,
  4690. 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4691. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c,
  4692. 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4693. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  4694. 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4695. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4696. 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  4697. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4698. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79,
  4699. 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  4700. 0x22, 0x00, 0x12, 0x7c, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72,
  4701. 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2e, 0x2e, 0x76, 0x6f,
  4702. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4703. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
  4704. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f,
  4705. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4706. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
  4707. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
  4708. 0x12, 0x5c, 0x0a, 0x0b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  4709. 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4710. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
  4711. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  4712. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  4713. 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x62,
  4714. 0x0a, 0x0d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  4715. 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4716. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
  4717. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4718. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4719. 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  4720. 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65,
  4721. 0x74, 0x65, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4722. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65,
  4723. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4724. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4725. 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4726. 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72,
  4727. 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4728. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4729. 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52,
  4730. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4731. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4732. 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70,
  4733. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4734. 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2b, 0x2e, 0x76,
  4735. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4736. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62,
  4737. 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4738. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4739. 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52,
  4740. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x56, 0x6f, 0x6c,
  4741. 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12, 0x28, 0x2e, 0x76,
  4742. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4743. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52,
  4744. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4745. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4746. 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4747. 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61,
  4748. 0x74, 0x75, 0x73, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4749. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61,
  4750. 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c,
  4751. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  4752. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  4753. 0x73, 0x65, 0x22, 0x00, 0x12, 0x59, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  4754. 0x70, 0x79, 0x12, 0x23, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4755. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79,
  4756. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4757. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4758. 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  4759. 0x77, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c,
  4760. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4761. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56,
  4762. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  4763. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4764. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f,
  4765. 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  4766. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x08, 0x43, 0x6f, 0x70, 0x79,
  4767. 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4768. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65,
  4769. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4770. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46,
  4771. 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
  4772. 0x6d, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e,
  4773. 0x64, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  4774. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69,
  4775. 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a,
  4776. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4777. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64,
  4778. 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71,
  4779. 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65,
  4780. 0x69, 0x76, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4781. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61,
  4782. 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4783. 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  4784. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52,
  4785. 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4786. 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  4787. 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f,
  4788. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4789. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e,
  4790. 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76,
  4791. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4792. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65,
  4793. 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  4794. 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  4795. 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4796. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4797. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69,
  4798. 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4799. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4800. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69,
  4801. 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12,
  4802. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f,
  4803. 0x70, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4804. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  4805. 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  4806. 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4807. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4808. 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  4809. 0x77, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4810. 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4811. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4812. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  4813. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4814. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4815. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4816. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75,
  4817. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  4818. 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4819. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4820. 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e,
  4821. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4822. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d,
  4823. 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a,
  4824. 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  4825. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4826. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4827. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
  4828. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4829. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4830. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
  4831. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x70, 0x0a, 0x11, 0x56, 0x6f,
  4832. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x12,
  4833. 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4834. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4835. 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f,
  4836. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  4837. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64,
  4838. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12,
  4839. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65,
  4840. 0x74, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4841. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c,
  4842. 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  4843. 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4844. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44,
  4845. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  4846. 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4847. 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4848. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4849. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c,
  4850. 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c,
  4851. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  4852. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f,
  4853. 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x88,
  4854. 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  4855. 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x32, 0x2e, 0x76,
  4856. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  4857. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61,
  4858. 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4859. 0x1a, 0x33, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4860. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  4861. 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73,
  4862. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x8e, 0x01, 0x0a, 0x1b, 0x56, 0x6f,
  4863. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46,
  4864. 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4865. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  4866. 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72,
  4867. 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  4868. 0x35, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  4869. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  4870. 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65,
  4871. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f,
  4872. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  4873. 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  4874. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
  4875. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e,
  4876. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  4877. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61,
  4878. 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a,
  4879. 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61,
  4880. 0x76, 0x65, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  4881. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76,
  4882. 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b,
  4883. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4884. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65,
  4885. 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a,
  4886. 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4887. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  4888. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4889. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65,
  4890. 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56,
  4891. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  4892. 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  4893. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c,
  4894. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c,
  4895. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  4896. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74,
  4897. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x39,
  4898. 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x68, 0x72,
  4899. 0x69, 0x73, 0x6c, 0x75, 0x73, 0x66, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73,
  4900. 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4901. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  4902. 0x33,
  4903. }
  4904. var (
  4905. file_volume_server_proto_rawDescOnce sync.Once
  4906. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  4907. )
  4908. func file_volume_server_proto_rawDescGZIP() []byte {
  4909. file_volume_server_proto_rawDescOnce.Do(func() {
  4910. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  4911. })
  4912. return file_volume_server_proto_rawDescData
  4913. }
  4914. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 86)
  4915. var file_volume_server_proto_goTypes = []interface{}{
  4916. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  4917. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  4918. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  4919. (*Empty)(nil), // 3: volume_server_pb.Empty
  4920. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  4921. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  4922. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  4923. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  4924. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  4925. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  4926. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  4927. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  4928. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  4929. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  4930. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  4931. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  4932. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  4933. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  4934. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  4935. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  4936. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  4937. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  4938. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  4939. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  4940. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  4941. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  4942. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  4943. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  4944. (*VolumeMarkWritableRequest)(nil), // 28: volume_server_pb.VolumeMarkWritableRequest
  4945. (*VolumeMarkWritableResponse)(nil), // 29: volume_server_pb.VolumeMarkWritableResponse
  4946. (*VolumeConfigureRequest)(nil), // 30: volume_server_pb.VolumeConfigureRequest
  4947. (*VolumeConfigureResponse)(nil), // 31: volume_server_pb.VolumeConfigureResponse
  4948. (*VolumeStatusRequest)(nil), // 32: volume_server_pb.VolumeStatusRequest
  4949. (*VolumeStatusResponse)(nil), // 33: volume_server_pb.VolumeStatusResponse
  4950. (*VolumeCopyRequest)(nil), // 34: volume_server_pb.VolumeCopyRequest
  4951. (*VolumeCopyResponse)(nil), // 35: volume_server_pb.VolumeCopyResponse
  4952. (*CopyFileRequest)(nil), // 36: volume_server_pb.CopyFileRequest
  4953. (*CopyFileResponse)(nil), // 37: volume_server_pb.CopyFileResponse
  4954. (*VolumeTailSenderRequest)(nil), // 38: volume_server_pb.VolumeTailSenderRequest
  4955. (*VolumeTailSenderResponse)(nil), // 39: volume_server_pb.VolumeTailSenderResponse
  4956. (*VolumeTailReceiverRequest)(nil), // 40: volume_server_pb.VolumeTailReceiverRequest
  4957. (*VolumeTailReceiverResponse)(nil), // 41: volume_server_pb.VolumeTailReceiverResponse
  4958. (*VolumeEcShardsGenerateRequest)(nil), // 42: volume_server_pb.VolumeEcShardsGenerateRequest
  4959. (*VolumeEcShardsGenerateResponse)(nil), // 43: volume_server_pb.VolumeEcShardsGenerateResponse
  4960. (*VolumeEcShardsRebuildRequest)(nil), // 44: volume_server_pb.VolumeEcShardsRebuildRequest
  4961. (*VolumeEcShardsRebuildResponse)(nil), // 45: volume_server_pb.VolumeEcShardsRebuildResponse
  4962. (*VolumeEcShardsCopyRequest)(nil), // 46: volume_server_pb.VolumeEcShardsCopyRequest
  4963. (*VolumeEcShardsCopyResponse)(nil), // 47: volume_server_pb.VolumeEcShardsCopyResponse
  4964. (*VolumeEcShardsDeleteRequest)(nil), // 48: volume_server_pb.VolumeEcShardsDeleteRequest
  4965. (*VolumeEcShardsDeleteResponse)(nil), // 49: volume_server_pb.VolumeEcShardsDeleteResponse
  4966. (*VolumeEcShardsMountRequest)(nil), // 50: volume_server_pb.VolumeEcShardsMountRequest
  4967. (*VolumeEcShardsMountResponse)(nil), // 51: volume_server_pb.VolumeEcShardsMountResponse
  4968. (*VolumeEcShardsUnmountRequest)(nil), // 52: volume_server_pb.VolumeEcShardsUnmountRequest
  4969. (*VolumeEcShardsUnmountResponse)(nil), // 53: volume_server_pb.VolumeEcShardsUnmountResponse
  4970. (*VolumeEcShardReadRequest)(nil), // 54: volume_server_pb.VolumeEcShardReadRequest
  4971. (*VolumeEcShardReadResponse)(nil), // 55: volume_server_pb.VolumeEcShardReadResponse
  4972. (*VolumeEcBlobDeleteRequest)(nil), // 56: volume_server_pb.VolumeEcBlobDeleteRequest
  4973. (*VolumeEcBlobDeleteResponse)(nil), // 57: volume_server_pb.VolumeEcBlobDeleteResponse
  4974. (*VolumeEcShardsToVolumeRequest)(nil), // 58: volume_server_pb.VolumeEcShardsToVolumeRequest
  4975. (*VolumeEcShardsToVolumeResponse)(nil), // 59: volume_server_pb.VolumeEcShardsToVolumeResponse
  4976. (*ReadVolumeFileStatusRequest)(nil), // 60: volume_server_pb.ReadVolumeFileStatusRequest
  4977. (*ReadVolumeFileStatusResponse)(nil), // 61: volume_server_pb.ReadVolumeFileStatusResponse
  4978. (*DiskStatus)(nil), // 62: volume_server_pb.DiskStatus
  4979. (*MemStatus)(nil), // 63: volume_server_pb.MemStatus
  4980. (*RemoteFile)(nil), // 64: volume_server_pb.RemoteFile
  4981. (*VolumeInfo)(nil), // 65: volume_server_pb.VolumeInfo
  4982. (*VolumeTierMoveDatToRemoteRequest)(nil), // 66: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  4983. (*VolumeTierMoveDatToRemoteResponse)(nil), // 67: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  4984. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 68: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  4985. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 69: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  4986. (*VolumeServerStatusRequest)(nil), // 70: volume_server_pb.VolumeServerStatusRequest
  4987. (*VolumeServerStatusResponse)(nil), // 71: volume_server_pb.VolumeServerStatusResponse
  4988. (*VolumeServerLeaveRequest)(nil), // 72: volume_server_pb.VolumeServerLeaveRequest
  4989. (*VolumeServerLeaveResponse)(nil), // 73: volume_server_pb.VolumeServerLeaveResponse
  4990. (*QueryRequest)(nil), // 74: volume_server_pb.QueryRequest
  4991. (*QueriedStripe)(nil), // 75: volume_server_pb.QueriedStripe
  4992. (*VolumeNeedleStatusRequest)(nil), // 76: volume_server_pb.VolumeNeedleStatusRequest
  4993. (*VolumeNeedleStatusResponse)(nil), // 77: volume_server_pb.VolumeNeedleStatusResponse
  4994. (*QueryRequest_Filter)(nil), // 78: volume_server_pb.QueryRequest.Filter
  4995. (*QueryRequest_InputSerialization)(nil), // 79: volume_server_pb.QueryRequest.InputSerialization
  4996. (*QueryRequest_OutputSerialization)(nil), // 80: volume_server_pb.QueryRequest.OutputSerialization
  4997. (*QueryRequest_InputSerialization_CSVInput)(nil), // 81: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  4998. (*QueryRequest_InputSerialization_JSONInput)(nil), // 82: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  4999. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 83: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  5000. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 84: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  5001. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 85: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  5002. }
  5003. var file_volume_server_proto_depIdxs = []int32{
  5004. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  5005. 64, // 1: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  5006. 62, // 2: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  5007. 63, // 3: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  5008. 78, // 4: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  5009. 79, // 5: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  5010. 80, // 6: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  5011. 81, // 7: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  5012. 82, // 8: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  5013. 83, // 9: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  5014. 84, // 10: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  5015. 85, // 11: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  5016. 0, // 12: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  5017. 4, // 13: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  5018. 6, // 14: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  5019. 8, // 15: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  5020. 10, // 16: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  5021. 12, // 17: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  5022. 14, // 18: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  5023. 16, // 19: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  5024. 18, // 20: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  5025. 20, // 21: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  5026. 22, // 22: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  5027. 24, // 23: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  5028. 26, // 24: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  5029. 28, // 25: volume_server_pb.VolumeServer.VolumeMarkWritable:input_type -> volume_server_pb.VolumeMarkWritableRequest
  5030. 30, // 26: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  5031. 32, // 27: volume_server_pb.VolumeServer.VolumeStatus:input_type -> volume_server_pb.VolumeStatusRequest
  5032. 34, // 28: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  5033. 60, // 29: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  5034. 36, // 30: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  5035. 38, // 31: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  5036. 40, // 32: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  5037. 42, // 33: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  5038. 44, // 34: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  5039. 46, // 35: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  5040. 48, // 36: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  5041. 50, // 37: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  5042. 52, // 38: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  5043. 54, // 39: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  5044. 56, // 40: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  5045. 58, // 41: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  5046. 66, // 42: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  5047. 68, // 43: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  5048. 70, // 44: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  5049. 72, // 45: volume_server_pb.VolumeServer.VolumeServerLeave:input_type -> volume_server_pb.VolumeServerLeaveRequest
  5050. 74, // 46: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  5051. 76, // 47: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  5052. 1, // 48: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  5053. 5, // 49: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  5054. 7, // 50: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  5055. 9, // 51: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  5056. 11, // 52: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  5057. 13, // 53: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  5058. 15, // 54: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  5059. 17, // 55: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  5060. 19, // 56: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  5061. 21, // 57: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  5062. 23, // 58: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  5063. 25, // 59: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  5064. 27, // 60: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  5065. 29, // 61: volume_server_pb.VolumeServer.VolumeMarkWritable:output_type -> volume_server_pb.VolumeMarkWritableResponse
  5066. 31, // 62: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  5067. 33, // 63: volume_server_pb.VolumeServer.VolumeStatus:output_type -> volume_server_pb.VolumeStatusResponse
  5068. 35, // 64: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  5069. 61, // 65: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  5070. 37, // 66: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  5071. 39, // 67: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  5072. 41, // 68: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  5073. 43, // 69: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  5074. 45, // 70: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  5075. 47, // 71: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  5076. 49, // 72: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  5077. 51, // 73: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  5078. 53, // 74: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  5079. 55, // 75: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  5080. 57, // 76: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  5081. 59, // 77: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  5082. 67, // 78: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  5083. 69, // 79: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  5084. 71, // 80: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  5085. 73, // 81: volume_server_pb.VolumeServer.VolumeServerLeave:output_type -> volume_server_pb.VolumeServerLeaveResponse
  5086. 75, // 82: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  5087. 77, // 83: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  5088. 48, // [48:84] is the sub-list for method output_type
  5089. 12, // [12:48] is the sub-list for method input_type
  5090. 12, // [12:12] is the sub-list for extension type_name
  5091. 12, // [12:12] is the sub-list for extension extendee
  5092. 0, // [0:12] is the sub-list for field type_name
  5093. }
  5094. func init() { file_volume_server_proto_init() }
  5095. func file_volume_server_proto_init() {
  5096. if File_volume_server_proto != nil {
  5097. return
  5098. }
  5099. if !protoimpl.UnsafeEnabled {
  5100. file_volume_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  5101. switch v := v.(*BatchDeleteRequest); 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[1].Exporter = func(v interface{}, i int) interface{} {
  5113. switch v := v.(*BatchDeleteResponse); 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[2].Exporter = func(v interface{}, i int) interface{} {
  5125. switch v := v.(*DeleteResult); 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[3].Exporter = func(v interface{}, i int) interface{} {
  5137. switch v := v.(*Empty); 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[4].Exporter = func(v interface{}, i int) interface{} {
  5149. switch v := v.(*VacuumVolumeCheckRequest); 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[5].Exporter = func(v interface{}, i int) interface{} {
  5161. switch v := v.(*VacuumVolumeCheckResponse); 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[6].Exporter = func(v interface{}, i int) interface{} {
  5173. switch v := v.(*VacuumVolumeCompactRequest); 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[7].Exporter = func(v interface{}, i int) interface{} {
  5185. switch v := v.(*VacuumVolumeCompactResponse); 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[8].Exporter = func(v interface{}, i int) interface{} {
  5197. switch v := v.(*VacuumVolumeCommitRequest); 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[9].Exporter = func(v interface{}, i int) interface{} {
  5209. switch v := v.(*VacuumVolumeCommitResponse); 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[10].Exporter = func(v interface{}, i int) interface{} {
  5221. switch v := v.(*VacuumVolumeCleanupRequest); 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[11].Exporter = func(v interface{}, i int) interface{} {
  5233. switch v := v.(*VacuumVolumeCleanupResponse); 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[12].Exporter = func(v interface{}, i int) interface{} {
  5245. switch v := v.(*DeleteCollectionRequest); 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[13].Exporter = func(v interface{}, i int) interface{} {
  5257. switch v := v.(*DeleteCollectionResponse); 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[14].Exporter = func(v interface{}, i int) interface{} {
  5269. switch v := v.(*AllocateVolumeRequest); 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[15].Exporter = func(v interface{}, i int) interface{} {
  5281. switch v := v.(*AllocateVolumeResponse); 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[16].Exporter = func(v interface{}, i int) interface{} {
  5293. switch v := v.(*VolumeSyncStatusRequest); 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[17].Exporter = func(v interface{}, i int) interface{} {
  5305. switch v := v.(*VolumeSyncStatusResponse); 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[18].Exporter = func(v interface{}, i int) interface{} {
  5317. switch v := v.(*VolumeIncrementalCopyRequest); 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[19].Exporter = func(v interface{}, i int) interface{} {
  5329. switch v := v.(*VolumeIncrementalCopyResponse); 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[20].Exporter = func(v interface{}, i int) interface{} {
  5341. switch v := v.(*VolumeMountRequest); 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[21].Exporter = func(v interface{}, i int) interface{} {
  5353. switch v := v.(*VolumeMountResponse); 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[22].Exporter = func(v interface{}, i int) interface{} {
  5365. switch v := v.(*VolumeUnmountRequest); 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[23].Exporter = func(v interface{}, i int) interface{} {
  5377. switch v := v.(*VolumeUnmountResponse); 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[24].Exporter = func(v interface{}, i int) interface{} {
  5389. switch v := v.(*VolumeDeleteRequest); 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[25].Exporter = func(v interface{}, i int) interface{} {
  5401. switch v := v.(*VolumeDeleteResponse); 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[26].Exporter = func(v interface{}, i int) interface{} {
  5413. switch v := v.(*VolumeMarkReadonlyRequest); 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[27].Exporter = func(v interface{}, i int) interface{} {
  5425. switch v := v.(*VolumeMarkReadonlyResponse); 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[28].Exporter = func(v interface{}, i int) interface{} {
  5437. switch v := v.(*VolumeMarkWritableRequest); 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[29].Exporter = func(v interface{}, i int) interface{} {
  5449. switch v := v.(*VolumeMarkWritableResponse); 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[30].Exporter = func(v interface{}, i int) interface{} {
  5461. switch v := v.(*VolumeConfigureRequest); 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[31].Exporter = func(v interface{}, i int) interface{} {
  5473. switch v := v.(*VolumeConfigureResponse); 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[32].Exporter = func(v interface{}, i int) interface{} {
  5485. switch v := v.(*VolumeStatusRequest); 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[33].Exporter = func(v interface{}, i int) interface{} {
  5497. switch v := v.(*VolumeStatusResponse); 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[34].Exporter = func(v interface{}, i int) interface{} {
  5509. switch v := v.(*VolumeCopyRequest); 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[35].Exporter = func(v interface{}, i int) interface{} {
  5521. switch v := v.(*VolumeCopyResponse); 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[36].Exporter = func(v interface{}, i int) interface{} {
  5533. switch v := v.(*CopyFileRequest); 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[37].Exporter = func(v interface{}, i int) interface{} {
  5545. switch v := v.(*CopyFileResponse); 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[38].Exporter = func(v interface{}, i int) interface{} {
  5557. switch v := v.(*VolumeTailSenderRequest); 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[39].Exporter = func(v interface{}, i int) interface{} {
  5569. switch v := v.(*VolumeTailSenderResponse); 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[40].Exporter = func(v interface{}, i int) interface{} {
  5581. switch v := v.(*VolumeTailReceiverRequest); 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[41].Exporter = func(v interface{}, i int) interface{} {
  5593. switch v := v.(*VolumeTailReceiverResponse); 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[42].Exporter = func(v interface{}, i int) interface{} {
  5605. switch v := v.(*VolumeEcShardsGenerateRequest); 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[43].Exporter = func(v interface{}, i int) interface{} {
  5617. switch v := v.(*VolumeEcShardsGenerateResponse); 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[44].Exporter = func(v interface{}, i int) interface{} {
  5629. switch v := v.(*VolumeEcShardsRebuildRequest); 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[45].Exporter = func(v interface{}, i int) interface{} {
  5641. switch v := v.(*VolumeEcShardsRebuildResponse); 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[46].Exporter = func(v interface{}, i int) interface{} {
  5653. switch v := v.(*VolumeEcShardsCopyRequest); 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[47].Exporter = func(v interface{}, i int) interface{} {
  5665. switch v := v.(*VolumeEcShardsCopyResponse); 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[48].Exporter = func(v interface{}, i int) interface{} {
  5677. switch v := v.(*VolumeEcShardsDeleteRequest); 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[49].Exporter = func(v interface{}, i int) interface{} {
  5689. switch v := v.(*VolumeEcShardsDeleteResponse); 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[50].Exporter = func(v interface{}, i int) interface{} {
  5701. switch v := v.(*VolumeEcShardsMountRequest); 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[51].Exporter = func(v interface{}, i int) interface{} {
  5713. switch v := v.(*VolumeEcShardsMountResponse); 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[52].Exporter = func(v interface{}, i int) interface{} {
  5725. switch v := v.(*VolumeEcShardsUnmountRequest); 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[53].Exporter = func(v interface{}, i int) interface{} {
  5737. switch v := v.(*VolumeEcShardsUnmountResponse); 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[54].Exporter = func(v interface{}, i int) interface{} {
  5749. switch v := v.(*VolumeEcShardReadRequest); 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[55].Exporter = func(v interface{}, i int) interface{} {
  5761. switch v := v.(*VolumeEcShardReadResponse); 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[56].Exporter = func(v interface{}, i int) interface{} {
  5773. switch v := v.(*VolumeEcBlobDeleteRequest); 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[57].Exporter = func(v interface{}, i int) interface{} {
  5785. switch v := v.(*VolumeEcBlobDeleteResponse); 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[58].Exporter = func(v interface{}, i int) interface{} {
  5797. switch v := v.(*VolumeEcShardsToVolumeRequest); 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[59].Exporter = func(v interface{}, i int) interface{} {
  5809. switch v := v.(*VolumeEcShardsToVolumeResponse); 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[60].Exporter = func(v interface{}, i int) interface{} {
  5821. switch v := v.(*ReadVolumeFileStatusRequest); 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[61].Exporter = func(v interface{}, i int) interface{} {
  5833. switch v := v.(*ReadVolumeFileStatusResponse); 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[62].Exporter = func(v interface{}, i int) interface{} {
  5845. switch v := v.(*DiskStatus); 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[63].Exporter = func(v interface{}, i int) interface{} {
  5857. switch v := v.(*MemStatus); 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[64].Exporter = func(v interface{}, i int) interface{} {
  5869. switch v := v.(*RemoteFile); 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[65].Exporter = func(v interface{}, i int) interface{} {
  5881. switch v := v.(*VolumeInfo); 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[66].Exporter = func(v interface{}, i int) interface{} {
  5893. switch v := v.(*VolumeTierMoveDatToRemoteRequest); 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[67].Exporter = func(v interface{}, i int) interface{} {
  5905. switch v := v.(*VolumeTierMoveDatToRemoteResponse); 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[68].Exporter = func(v interface{}, i int) interface{} {
  5917. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); 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[69].Exporter = func(v interface{}, i int) interface{} {
  5929. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); 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[70].Exporter = func(v interface{}, i int) interface{} {
  5941. switch v := v.(*VolumeServerStatusRequest); 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[71].Exporter = func(v interface{}, i int) interface{} {
  5953. switch v := v.(*VolumeServerStatusResponse); 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[72].Exporter = func(v interface{}, i int) interface{} {
  5965. switch v := v.(*VolumeServerLeaveRequest); 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[73].Exporter = func(v interface{}, i int) interface{} {
  5977. switch v := v.(*VolumeServerLeaveResponse); 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[74].Exporter = func(v interface{}, i int) interface{} {
  5989. switch v := v.(*QueryRequest); 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[75].Exporter = func(v interface{}, i int) interface{} {
  6001. switch v := v.(*QueriedStripe); 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[76].Exporter = func(v interface{}, i int) interface{} {
  6013. switch v := v.(*VolumeNeedleStatusRequest); 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[77].Exporter = func(v interface{}, i int) interface{} {
  6025. switch v := v.(*VolumeNeedleStatusResponse); 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[78].Exporter = func(v interface{}, i int) interface{} {
  6037. switch v := v.(*QueryRequest_Filter); 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[79].Exporter = func(v interface{}, i int) interface{} {
  6049. switch v := v.(*QueryRequest_InputSerialization); 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[80].Exporter = func(v interface{}, i int) interface{} {
  6061. switch v := v.(*QueryRequest_OutputSerialization); 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[81].Exporter = func(v interface{}, i int) interface{} {
  6073. switch v := v.(*QueryRequest_InputSerialization_CSVInput); 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[82].Exporter = func(v interface{}, i int) interface{} {
  6085. switch v := v.(*QueryRequest_InputSerialization_JSONInput); 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. file_volume_server_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
  6097. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  6098. case 0:
  6099. return &v.state
  6100. case 1:
  6101. return &v.sizeCache
  6102. case 2:
  6103. return &v.unknownFields
  6104. default:
  6105. return nil
  6106. }
  6107. }
  6108. file_volume_server_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
  6109. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  6110. case 0:
  6111. return &v.state
  6112. case 1:
  6113. return &v.sizeCache
  6114. case 2:
  6115. return &v.unknownFields
  6116. default:
  6117. return nil
  6118. }
  6119. }
  6120. file_volume_server_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
  6121. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  6122. case 0:
  6123. return &v.state
  6124. case 1:
  6125. return &v.sizeCache
  6126. case 2:
  6127. return &v.unknownFields
  6128. default:
  6129. return nil
  6130. }
  6131. }
  6132. }
  6133. type x struct{}
  6134. out := protoimpl.TypeBuilder{
  6135. File: protoimpl.DescBuilder{
  6136. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  6137. RawDescriptor: file_volume_server_proto_rawDesc,
  6138. NumEnums: 0,
  6139. NumMessages: 86,
  6140. NumExtensions: 0,
  6141. NumServices: 1,
  6142. },
  6143. GoTypes: file_volume_server_proto_goTypes,
  6144. DependencyIndexes: file_volume_server_proto_depIdxs,
  6145. MessageInfos: file_volume_server_proto_msgTypes,
  6146. }.Build()
  6147. File_volume_server_proto = out.File
  6148. file_volume_server_proto_rawDesc = nil
  6149. file_volume_server_proto_goTypes = nil
  6150. file_volume_server_proto_depIdxs = nil
  6151. }
  6152. // Reference imports to suppress errors if they are not otherwise used.
  6153. var _ context.Context
  6154. var _ grpc.ClientConnInterface
  6155. // This is a compile-time assertion to ensure that this generated file
  6156. // is compatible with the grpc package it is being compiled against.
  6157. const _ = grpc.SupportPackageIsVersion6
  6158. // VolumeServerClient is the client API for VolumeServer service.
  6159. //
  6160. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  6161. type VolumeServerClient interface {
  6162. //Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  6163. BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error)
  6164. VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error)
  6165. VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error)
  6166. VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error)
  6167. VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error)
  6168. DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error)
  6169. AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error)
  6170. VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error)
  6171. VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error)
  6172. VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error)
  6173. VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error)
  6174. VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error)
  6175. VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error)
  6176. VolumeMarkWritable(ctx context.Context, in *VolumeMarkWritableRequest, opts ...grpc.CallOption) (*VolumeMarkWritableResponse, error)
  6177. VolumeConfigure(ctx context.Context, in *VolumeConfigureRequest, opts ...grpc.CallOption) (*VolumeConfigureResponse, error)
  6178. VolumeStatus(ctx context.Context, in *VolumeStatusRequest, opts ...grpc.CallOption) (*VolumeStatusResponse, error)
  6179. // copy the .idx .dat files, and mount this volume
  6180. VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error)
  6181. ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error)
  6182. CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error)
  6183. VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error)
  6184. VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error)
  6185. // erasure coding
  6186. VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error)
  6187. VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error)
  6188. VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error)
  6189. VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error)
  6190. VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error)
  6191. VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error)
  6192. VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error)
  6193. VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error)
  6194. VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error)
  6195. // tiered storage
  6196. VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error)
  6197. VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error)
  6198. VolumeServerStatus(ctx context.Context, in *VolumeServerStatusRequest, opts ...grpc.CallOption) (*VolumeServerStatusResponse, error)
  6199. VolumeServerLeave(ctx context.Context, in *VolumeServerLeaveRequest, opts ...grpc.CallOption) (*VolumeServerLeaveResponse, error)
  6200. // <experimental> query
  6201. Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error)
  6202. VolumeNeedleStatus(ctx context.Context, in *VolumeNeedleStatusRequest, opts ...grpc.CallOption) (*VolumeNeedleStatusResponse, error)
  6203. }
  6204. type volumeServerClient struct {
  6205. cc grpc.ClientConnInterface
  6206. }
  6207. func NewVolumeServerClient(cc grpc.ClientConnInterface) VolumeServerClient {
  6208. return &volumeServerClient{cc}
  6209. }
  6210. func (c *volumeServerClient) BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error) {
  6211. out := new(BatchDeleteResponse)
  6212. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/BatchDelete", in, out, opts...)
  6213. if err != nil {
  6214. return nil, err
  6215. }
  6216. return out, nil
  6217. }
  6218. func (c *volumeServerClient) VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error) {
  6219. out := new(VacuumVolumeCheckResponse)
  6220. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCheck", in, out, opts...)
  6221. if err != nil {
  6222. return nil, err
  6223. }
  6224. return out, nil
  6225. }
  6226. func (c *volumeServerClient) VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error) {
  6227. out := new(VacuumVolumeCompactResponse)
  6228. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCompact", in, out, opts...)
  6229. if err != nil {
  6230. return nil, err
  6231. }
  6232. return out, nil
  6233. }
  6234. func (c *volumeServerClient) VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error) {
  6235. out := new(VacuumVolumeCommitResponse)
  6236. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCommit", in, out, opts...)
  6237. if err != nil {
  6238. return nil, err
  6239. }
  6240. return out, nil
  6241. }
  6242. func (c *volumeServerClient) VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error) {
  6243. out := new(VacuumVolumeCleanupResponse)
  6244. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCleanup", in, out, opts...)
  6245. if err != nil {
  6246. return nil, err
  6247. }
  6248. return out, nil
  6249. }
  6250. func (c *volumeServerClient) DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error) {
  6251. out := new(DeleteCollectionResponse)
  6252. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/DeleteCollection", in, out, opts...)
  6253. if err != nil {
  6254. return nil, err
  6255. }
  6256. return out, nil
  6257. }
  6258. func (c *volumeServerClient) AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error) {
  6259. out := new(AllocateVolumeResponse)
  6260. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/AllocateVolume", in, out, opts...)
  6261. if err != nil {
  6262. return nil, err
  6263. }
  6264. return out, nil
  6265. }
  6266. func (c *volumeServerClient) VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error) {
  6267. out := new(VolumeSyncStatusResponse)
  6268. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeSyncStatus", in, out, opts...)
  6269. if err != nil {
  6270. return nil, err
  6271. }
  6272. return out, nil
  6273. }
  6274. func (c *volumeServerClient) VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error) {
  6275. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[0], "/volume_server_pb.VolumeServer/VolumeIncrementalCopy", opts...)
  6276. if err != nil {
  6277. return nil, err
  6278. }
  6279. x := &volumeServerVolumeIncrementalCopyClient{stream}
  6280. if err := x.ClientStream.SendMsg(in); err != nil {
  6281. return nil, err
  6282. }
  6283. if err := x.ClientStream.CloseSend(); err != nil {
  6284. return nil, err
  6285. }
  6286. return x, nil
  6287. }
  6288. type VolumeServer_VolumeIncrementalCopyClient interface {
  6289. Recv() (*VolumeIncrementalCopyResponse, error)
  6290. grpc.ClientStream
  6291. }
  6292. type volumeServerVolumeIncrementalCopyClient struct {
  6293. grpc.ClientStream
  6294. }
  6295. func (x *volumeServerVolumeIncrementalCopyClient) Recv() (*VolumeIncrementalCopyResponse, error) {
  6296. m := new(VolumeIncrementalCopyResponse)
  6297. if err := x.ClientStream.RecvMsg(m); err != nil {
  6298. return nil, err
  6299. }
  6300. return m, nil
  6301. }
  6302. func (c *volumeServerClient) VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error) {
  6303. out := new(VolumeMountResponse)
  6304. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMount", in, out, opts...)
  6305. if err != nil {
  6306. return nil, err
  6307. }
  6308. return out, nil
  6309. }
  6310. func (c *volumeServerClient) VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error) {
  6311. out := new(VolumeUnmountResponse)
  6312. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeUnmount", in, out, opts...)
  6313. if err != nil {
  6314. return nil, err
  6315. }
  6316. return out, nil
  6317. }
  6318. func (c *volumeServerClient) VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error) {
  6319. out := new(VolumeDeleteResponse)
  6320. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeDelete", in, out, opts...)
  6321. if err != nil {
  6322. return nil, err
  6323. }
  6324. return out, nil
  6325. }
  6326. func (c *volumeServerClient) VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error) {
  6327. out := new(VolumeMarkReadonlyResponse)
  6328. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMarkReadonly", in, out, opts...)
  6329. if err != nil {
  6330. return nil, err
  6331. }
  6332. return out, nil
  6333. }
  6334. func (c *volumeServerClient) VolumeMarkWritable(ctx context.Context, in *VolumeMarkWritableRequest, opts ...grpc.CallOption) (*VolumeMarkWritableResponse, error) {
  6335. out := new(VolumeMarkWritableResponse)
  6336. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMarkWritable", in, out, opts...)
  6337. if err != nil {
  6338. return nil, err
  6339. }
  6340. return out, nil
  6341. }
  6342. func (c *volumeServerClient) VolumeConfigure(ctx context.Context, in *VolumeConfigureRequest, opts ...grpc.CallOption) (*VolumeConfigureResponse, error) {
  6343. out := new(VolumeConfigureResponse)
  6344. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeConfigure", in, out, opts...)
  6345. if err != nil {
  6346. return nil, err
  6347. }
  6348. return out, nil
  6349. }
  6350. func (c *volumeServerClient) VolumeStatus(ctx context.Context, in *VolumeStatusRequest, opts ...grpc.CallOption) (*VolumeStatusResponse, error) {
  6351. out := new(VolumeStatusResponse)
  6352. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeStatus", in, out, opts...)
  6353. if err != nil {
  6354. return nil, err
  6355. }
  6356. return out, nil
  6357. }
  6358. func (c *volumeServerClient) VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error) {
  6359. out := new(VolumeCopyResponse)
  6360. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeCopy", in, out, opts...)
  6361. if err != nil {
  6362. return nil, err
  6363. }
  6364. return out, nil
  6365. }
  6366. func (c *volumeServerClient) ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error) {
  6367. out := new(ReadVolumeFileStatusResponse)
  6368. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/ReadVolumeFileStatus", in, out, opts...)
  6369. if err != nil {
  6370. return nil, err
  6371. }
  6372. return out, nil
  6373. }
  6374. func (c *volumeServerClient) CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error) {
  6375. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[1], "/volume_server_pb.VolumeServer/CopyFile", opts...)
  6376. if err != nil {
  6377. return nil, err
  6378. }
  6379. x := &volumeServerCopyFileClient{stream}
  6380. if err := x.ClientStream.SendMsg(in); err != nil {
  6381. return nil, err
  6382. }
  6383. if err := x.ClientStream.CloseSend(); err != nil {
  6384. return nil, err
  6385. }
  6386. return x, nil
  6387. }
  6388. type VolumeServer_CopyFileClient interface {
  6389. Recv() (*CopyFileResponse, error)
  6390. grpc.ClientStream
  6391. }
  6392. type volumeServerCopyFileClient struct {
  6393. grpc.ClientStream
  6394. }
  6395. func (x *volumeServerCopyFileClient) Recv() (*CopyFileResponse, error) {
  6396. m := new(CopyFileResponse)
  6397. if err := x.ClientStream.RecvMsg(m); err != nil {
  6398. return nil, err
  6399. }
  6400. return m, nil
  6401. }
  6402. func (c *volumeServerClient) VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error) {
  6403. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[2], "/volume_server_pb.VolumeServer/VolumeTailSender", opts...)
  6404. if err != nil {
  6405. return nil, err
  6406. }
  6407. x := &volumeServerVolumeTailSenderClient{stream}
  6408. if err := x.ClientStream.SendMsg(in); err != nil {
  6409. return nil, err
  6410. }
  6411. if err := x.ClientStream.CloseSend(); err != nil {
  6412. return nil, err
  6413. }
  6414. return x, nil
  6415. }
  6416. type VolumeServer_VolumeTailSenderClient interface {
  6417. Recv() (*VolumeTailSenderResponse, error)
  6418. grpc.ClientStream
  6419. }
  6420. type volumeServerVolumeTailSenderClient struct {
  6421. grpc.ClientStream
  6422. }
  6423. func (x *volumeServerVolumeTailSenderClient) Recv() (*VolumeTailSenderResponse, error) {
  6424. m := new(VolumeTailSenderResponse)
  6425. if err := x.ClientStream.RecvMsg(m); err != nil {
  6426. return nil, err
  6427. }
  6428. return m, nil
  6429. }
  6430. func (c *volumeServerClient) VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error) {
  6431. out := new(VolumeTailReceiverResponse)
  6432. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeTailReceiver", in, out, opts...)
  6433. if err != nil {
  6434. return nil, err
  6435. }
  6436. return out, nil
  6437. }
  6438. func (c *volumeServerClient) VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error) {
  6439. out := new(VolumeEcShardsGenerateResponse)
  6440. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate", in, out, opts...)
  6441. if err != nil {
  6442. return nil, err
  6443. }
  6444. return out, nil
  6445. }
  6446. func (c *volumeServerClient) VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error) {
  6447. out := new(VolumeEcShardsRebuildResponse)
  6448. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild", in, out, opts...)
  6449. if err != nil {
  6450. return nil, err
  6451. }
  6452. return out, nil
  6453. }
  6454. func (c *volumeServerClient) VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error) {
  6455. out := new(VolumeEcShardsCopyResponse)
  6456. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsCopy", in, out, opts...)
  6457. if err != nil {
  6458. return nil, err
  6459. }
  6460. return out, nil
  6461. }
  6462. func (c *volumeServerClient) VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error) {
  6463. out := new(VolumeEcShardsDeleteResponse)
  6464. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsDelete", in, out, opts...)
  6465. if err != nil {
  6466. return nil, err
  6467. }
  6468. return out, nil
  6469. }
  6470. func (c *volumeServerClient) VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error) {
  6471. out := new(VolumeEcShardsMountResponse)
  6472. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsMount", in, out, opts...)
  6473. if err != nil {
  6474. return nil, err
  6475. }
  6476. return out, nil
  6477. }
  6478. func (c *volumeServerClient) VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error) {
  6479. out := new(VolumeEcShardsUnmountResponse)
  6480. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount", in, out, opts...)
  6481. if err != nil {
  6482. return nil, err
  6483. }
  6484. return out, nil
  6485. }
  6486. func (c *volumeServerClient) VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error) {
  6487. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[3], "/volume_server_pb.VolumeServer/VolumeEcShardRead", opts...)
  6488. if err != nil {
  6489. return nil, err
  6490. }
  6491. x := &volumeServerVolumeEcShardReadClient{stream}
  6492. if err := x.ClientStream.SendMsg(in); err != nil {
  6493. return nil, err
  6494. }
  6495. if err := x.ClientStream.CloseSend(); err != nil {
  6496. return nil, err
  6497. }
  6498. return x, nil
  6499. }
  6500. type VolumeServer_VolumeEcShardReadClient interface {
  6501. Recv() (*VolumeEcShardReadResponse, error)
  6502. grpc.ClientStream
  6503. }
  6504. type volumeServerVolumeEcShardReadClient struct {
  6505. grpc.ClientStream
  6506. }
  6507. func (x *volumeServerVolumeEcShardReadClient) Recv() (*VolumeEcShardReadResponse, error) {
  6508. m := new(VolumeEcShardReadResponse)
  6509. if err := x.ClientStream.RecvMsg(m); err != nil {
  6510. return nil, err
  6511. }
  6512. return m, nil
  6513. }
  6514. func (c *volumeServerClient) VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error) {
  6515. out := new(VolumeEcBlobDeleteResponse)
  6516. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcBlobDelete", in, out, opts...)
  6517. if err != nil {
  6518. return nil, err
  6519. }
  6520. return out, nil
  6521. }
  6522. func (c *volumeServerClient) VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error) {
  6523. out := new(VolumeEcShardsToVolumeResponse)
  6524. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume", in, out, opts...)
  6525. if err != nil {
  6526. return nil, err
  6527. }
  6528. return out, nil
  6529. }
  6530. func (c *volumeServerClient) VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error) {
  6531. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[4], "/volume_server_pb.VolumeServer/VolumeTierMoveDatToRemote", opts...)
  6532. if err != nil {
  6533. return nil, err
  6534. }
  6535. x := &volumeServerVolumeTierMoveDatToRemoteClient{stream}
  6536. if err := x.ClientStream.SendMsg(in); err != nil {
  6537. return nil, err
  6538. }
  6539. if err := x.ClientStream.CloseSend(); err != nil {
  6540. return nil, err
  6541. }
  6542. return x, nil
  6543. }
  6544. type VolumeServer_VolumeTierMoveDatToRemoteClient interface {
  6545. Recv() (*VolumeTierMoveDatToRemoteResponse, error)
  6546. grpc.ClientStream
  6547. }
  6548. type volumeServerVolumeTierMoveDatToRemoteClient struct {
  6549. grpc.ClientStream
  6550. }
  6551. func (x *volumeServerVolumeTierMoveDatToRemoteClient) Recv() (*VolumeTierMoveDatToRemoteResponse, error) {
  6552. m := new(VolumeTierMoveDatToRemoteResponse)
  6553. if err := x.ClientStream.RecvMsg(m); err != nil {
  6554. return nil, err
  6555. }
  6556. return m, nil
  6557. }
  6558. func (c *volumeServerClient) VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error) {
  6559. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[5], "/volume_server_pb.VolumeServer/VolumeTierMoveDatFromRemote", opts...)
  6560. if err != nil {
  6561. return nil, err
  6562. }
  6563. x := &volumeServerVolumeTierMoveDatFromRemoteClient{stream}
  6564. if err := x.ClientStream.SendMsg(in); err != nil {
  6565. return nil, err
  6566. }
  6567. if err := x.ClientStream.CloseSend(); err != nil {
  6568. return nil, err
  6569. }
  6570. return x, nil
  6571. }
  6572. type VolumeServer_VolumeTierMoveDatFromRemoteClient interface {
  6573. Recv() (*VolumeTierMoveDatFromRemoteResponse, error)
  6574. grpc.ClientStream
  6575. }
  6576. type volumeServerVolumeTierMoveDatFromRemoteClient struct {
  6577. grpc.ClientStream
  6578. }
  6579. func (x *volumeServerVolumeTierMoveDatFromRemoteClient) Recv() (*VolumeTierMoveDatFromRemoteResponse, error) {
  6580. m := new(VolumeTierMoveDatFromRemoteResponse)
  6581. if err := x.ClientStream.RecvMsg(m); err != nil {
  6582. return nil, err
  6583. }
  6584. return m, nil
  6585. }
  6586. func (c *volumeServerClient) VolumeServerStatus(ctx context.Context, in *VolumeServerStatusRequest, opts ...grpc.CallOption) (*VolumeServerStatusResponse, error) {
  6587. out := new(VolumeServerStatusResponse)
  6588. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeServerStatus", in, out, opts...)
  6589. if err != nil {
  6590. return nil, err
  6591. }
  6592. return out, nil
  6593. }
  6594. func (c *volumeServerClient) VolumeServerLeave(ctx context.Context, in *VolumeServerLeaveRequest, opts ...grpc.CallOption) (*VolumeServerLeaveResponse, error) {
  6595. out := new(VolumeServerLeaveResponse)
  6596. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeServerLeave", in, out, opts...)
  6597. if err != nil {
  6598. return nil, err
  6599. }
  6600. return out, nil
  6601. }
  6602. func (c *volumeServerClient) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error) {
  6603. stream, err := c.cc.NewStream(ctx, &_VolumeServer_serviceDesc.Streams[6], "/volume_server_pb.VolumeServer/Query", opts...)
  6604. if err != nil {
  6605. return nil, err
  6606. }
  6607. x := &volumeServerQueryClient{stream}
  6608. if err := x.ClientStream.SendMsg(in); err != nil {
  6609. return nil, err
  6610. }
  6611. if err := x.ClientStream.CloseSend(); err != nil {
  6612. return nil, err
  6613. }
  6614. return x, nil
  6615. }
  6616. type VolumeServer_QueryClient interface {
  6617. Recv() (*QueriedStripe, error)
  6618. grpc.ClientStream
  6619. }
  6620. type volumeServerQueryClient struct {
  6621. grpc.ClientStream
  6622. }
  6623. func (x *volumeServerQueryClient) Recv() (*QueriedStripe, error) {
  6624. m := new(QueriedStripe)
  6625. if err := x.ClientStream.RecvMsg(m); err != nil {
  6626. return nil, err
  6627. }
  6628. return m, nil
  6629. }
  6630. func (c *volumeServerClient) VolumeNeedleStatus(ctx context.Context, in *VolumeNeedleStatusRequest, opts ...grpc.CallOption) (*VolumeNeedleStatusResponse, error) {
  6631. out := new(VolumeNeedleStatusResponse)
  6632. err := c.cc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeNeedleStatus", in, out, opts...)
  6633. if err != nil {
  6634. return nil, err
  6635. }
  6636. return out, nil
  6637. }
  6638. // VolumeServerServer is the server API for VolumeServer service.
  6639. type VolumeServerServer interface {
  6640. //Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  6641. BatchDelete(context.Context, *BatchDeleteRequest) (*BatchDeleteResponse, error)
  6642. VacuumVolumeCheck(context.Context, *VacuumVolumeCheckRequest) (*VacuumVolumeCheckResponse, error)
  6643. VacuumVolumeCompact(context.Context, *VacuumVolumeCompactRequest) (*VacuumVolumeCompactResponse, error)
  6644. VacuumVolumeCommit(context.Context, *VacuumVolumeCommitRequest) (*VacuumVolumeCommitResponse, error)
  6645. VacuumVolumeCleanup(context.Context, *VacuumVolumeCleanupRequest) (*VacuumVolumeCleanupResponse, error)
  6646. DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error)
  6647. AllocateVolume(context.Context, *AllocateVolumeRequest) (*AllocateVolumeResponse, error)
  6648. VolumeSyncStatus(context.Context, *VolumeSyncStatusRequest) (*VolumeSyncStatusResponse, error)
  6649. VolumeIncrementalCopy(*VolumeIncrementalCopyRequest, VolumeServer_VolumeIncrementalCopyServer) error
  6650. VolumeMount(context.Context, *VolumeMountRequest) (*VolumeMountResponse, error)
  6651. VolumeUnmount(context.Context, *VolumeUnmountRequest) (*VolumeUnmountResponse, error)
  6652. VolumeDelete(context.Context, *VolumeDeleteRequest) (*VolumeDeleteResponse, error)
  6653. VolumeMarkReadonly(context.Context, *VolumeMarkReadonlyRequest) (*VolumeMarkReadonlyResponse, error)
  6654. VolumeMarkWritable(context.Context, *VolumeMarkWritableRequest) (*VolumeMarkWritableResponse, error)
  6655. VolumeConfigure(context.Context, *VolumeConfigureRequest) (*VolumeConfigureResponse, error)
  6656. VolumeStatus(context.Context, *VolumeStatusRequest) (*VolumeStatusResponse, error)
  6657. // copy the .idx .dat files, and mount this volume
  6658. VolumeCopy(context.Context, *VolumeCopyRequest) (*VolumeCopyResponse, error)
  6659. ReadVolumeFileStatus(context.Context, *ReadVolumeFileStatusRequest) (*ReadVolumeFileStatusResponse, error)
  6660. CopyFile(*CopyFileRequest, VolumeServer_CopyFileServer) error
  6661. VolumeTailSender(*VolumeTailSenderRequest, VolumeServer_VolumeTailSenderServer) error
  6662. VolumeTailReceiver(context.Context, *VolumeTailReceiverRequest) (*VolumeTailReceiverResponse, error)
  6663. // erasure coding
  6664. VolumeEcShardsGenerate(context.Context, *VolumeEcShardsGenerateRequest) (*VolumeEcShardsGenerateResponse, error)
  6665. VolumeEcShardsRebuild(context.Context, *VolumeEcShardsRebuildRequest) (*VolumeEcShardsRebuildResponse, error)
  6666. VolumeEcShardsCopy(context.Context, *VolumeEcShardsCopyRequest) (*VolumeEcShardsCopyResponse, error)
  6667. VolumeEcShardsDelete(context.Context, *VolumeEcShardsDeleteRequest) (*VolumeEcShardsDeleteResponse, error)
  6668. VolumeEcShardsMount(context.Context, *VolumeEcShardsMountRequest) (*VolumeEcShardsMountResponse, error)
  6669. VolumeEcShardsUnmount(context.Context, *VolumeEcShardsUnmountRequest) (*VolumeEcShardsUnmountResponse, error)
  6670. VolumeEcShardRead(*VolumeEcShardReadRequest, VolumeServer_VolumeEcShardReadServer) error
  6671. VolumeEcBlobDelete(context.Context, *VolumeEcBlobDeleteRequest) (*VolumeEcBlobDeleteResponse, error)
  6672. VolumeEcShardsToVolume(context.Context, *VolumeEcShardsToVolumeRequest) (*VolumeEcShardsToVolumeResponse, error)
  6673. // tiered storage
  6674. VolumeTierMoveDatToRemote(*VolumeTierMoveDatToRemoteRequest, VolumeServer_VolumeTierMoveDatToRemoteServer) error
  6675. VolumeTierMoveDatFromRemote(*VolumeTierMoveDatFromRemoteRequest, VolumeServer_VolumeTierMoveDatFromRemoteServer) error
  6676. VolumeServerStatus(context.Context, *VolumeServerStatusRequest) (*VolumeServerStatusResponse, error)
  6677. VolumeServerLeave(context.Context, *VolumeServerLeaveRequest) (*VolumeServerLeaveResponse, error)
  6678. // <experimental> query
  6679. Query(*QueryRequest, VolumeServer_QueryServer) error
  6680. VolumeNeedleStatus(context.Context, *VolumeNeedleStatusRequest) (*VolumeNeedleStatusResponse, error)
  6681. }
  6682. // UnimplementedVolumeServerServer can be embedded to have forward compatible implementations.
  6683. type UnimplementedVolumeServerServer struct {
  6684. }
  6685. func (*UnimplementedVolumeServerServer) BatchDelete(context.Context, *BatchDeleteRequest) (*BatchDeleteResponse, error) {
  6686. return nil, status.Errorf(codes.Unimplemented, "method BatchDelete not implemented")
  6687. }
  6688. func (*UnimplementedVolumeServerServer) VacuumVolumeCheck(context.Context, *VacuumVolumeCheckRequest) (*VacuumVolumeCheckResponse, error) {
  6689. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCheck not implemented")
  6690. }
  6691. func (*UnimplementedVolumeServerServer) VacuumVolumeCompact(context.Context, *VacuumVolumeCompactRequest) (*VacuumVolumeCompactResponse, error) {
  6692. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCompact not implemented")
  6693. }
  6694. func (*UnimplementedVolumeServerServer) VacuumVolumeCommit(context.Context, *VacuumVolumeCommitRequest) (*VacuumVolumeCommitResponse, error) {
  6695. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCommit not implemented")
  6696. }
  6697. func (*UnimplementedVolumeServerServer) VacuumVolumeCleanup(context.Context, *VacuumVolumeCleanupRequest) (*VacuumVolumeCleanupResponse, error) {
  6698. return nil, status.Errorf(codes.Unimplemented, "method VacuumVolumeCleanup not implemented")
  6699. }
  6700. func (*UnimplementedVolumeServerServer) DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error) {
  6701. return nil, status.Errorf(codes.Unimplemented, "method DeleteCollection not implemented")
  6702. }
  6703. func (*UnimplementedVolumeServerServer) AllocateVolume(context.Context, *AllocateVolumeRequest) (*AllocateVolumeResponse, error) {
  6704. return nil, status.Errorf(codes.Unimplemented, "method AllocateVolume not implemented")
  6705. }
  6706. func (*UnimplementedVolumeServerServer) VolumeSyncStatus(context.Context, *VolumeSyncStatusRequest) (*VolumeSyncStatusResponse, error) {
  6707. return nil, status.Errorf(codes.Unimplemented, "method VolumeSyncStatus not implemented")
  6708. }
  6709. func (*UnimplementedVolumeServerServer) VolumeIncrementalCopy(*VolumeIncrementalCopyRequest, VolumeServer_VolumeIncrementalCopyServer) error {
  6710. return status.Errorf(codes.Unimplemented, "method VolumeIncrementalCopy not implemented")
  6711. }
  6712. func (*UnimplementedVolumeServerServer) VolumeMount(context.Context, *VolumeMountRequest) (*VolumeMountResponse, error) {
  6713. return nil, status.Errorf(codes.Unimplemented, "method VolumeMount not implemented")
  6714. }
  6715. func (*UnimplementedVolumeServerServer) VolumeUnmount(context.Context, *VolumeUnmountRequest) (*VolumeUnmountResponse, error) {
  6716. return nil, status.Errorf(codes.Unimplemented, "method VolumeUnmount not implemented")
  6717. }
  6718. func (*UnimplementedVolumeServerServer) VolumeDelete(context.Context, *VolumeDeleteRequest) (*VolumeDeleteResponse, error) {
  6719. return nil, status.Errorf(codes.Unimplemented, "method VolumeDelete not implemented")
  6720. }
  6721. func (*UnimplementedVolumeServerServer) VolumeMarkReadonly(context.Context, *VolumeMarkReadonlyRequest) (*VolumeMarkReadonlyResponse, error) {
  6722. return nil, status.Errorf(codes.Unimplemented, "method VolumeMarkReadonly not implemented")
  6723. }
  6724. func (*UnimplementedVolumeServerServer) VolumeMarkWritable(context.Context, *VolumeMarkWritableRequest) (*VolumeMarkWritableResponse, error) {
  6725. return nil, status.Errorf(codes.Unimplemented, "method VolumeMarkWritable not implemented")
  6726. }
  6727. func (*UnimplementedVolumeServerServer) VolumeConfigure(context.Context, *VolumeConfigureRequest) (*VolumeConfigureResponse, error) {
  6728. return nil, status.Errorf(codes.Unimplemented, "method VolumeConfigure not implemented")
  6729. }
  6730. func (*UnimplementedVolumeServerServer) VolumeStatus(context.Context, *VolumeStatusRequest) (*VolumeStatusResponse, error) {
  6731. return nil, status.Errorf(codes.Unimplemented, "method VolumeStatus not implemented")
  6732. }
  6733. func (*UnimplementedVolumeServerServer) VolumeCopy(context.Context, *VolumeCopyRequest) (*VolumeCopyResponse, error) {
  6734. return nil, status.Errorf(codes.Unimplemented, "method VolumeCopy not implemented")
  6735. }
  6736. func (*UnimplementedVolumeServerServer) ReadVolumeFileStatus(context.Context, *ReadVolumeFileStatusRequest) (*ReadVolumeFileStatusResponse, error) {
  6737. return nil, status.Errorf(codes.Unimplemented, "method ReadVolumeFileStatus not implemented")
  6738. }
  6739. func (*UnimplementedVolumeServerServer) CopyFile(*CopyFileRequest, VolumeServer_CopyFileServer) error {
  6740. return status.Errorf(codes.Unimplemented, "method CopyFile not implemented")
  6741. }
  6742. func (*UnimplementedVolumeServerServer) VolumeTailSender(*VolumeTailSenderRequest, VolumeServer_VolumeTailSenderServer) error {
  6743. return status.Errorf(codes.Unimplemented, "method VolumeTailSender not implemented")
  6744. }
  6745. func (*UnimplementedVolumeServerServer) VolumeTailReceiver(context.Context, *VolumeTailReceiverRequest) (*VolumeTailReceiverResponse, error) {
  6746. return nil, status.Errorf(codes.Unimplemented, "method VolumeTailReceiver not implemented")
  6747. }
  6748. func (*UnimplementedVolumeServerServer) VolumeEcShardsGenerate(context.Context, *VolumeEcShardsGenerateRequest) (*VolumeEcShardsGenerateResponse, error) {
  6749. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsGenerate not implemented")
  6750. }
  6751. func (*UnimplementedVolumeServerServer) VolumeEcShardsRebuild(context.Context, *VolumeEcShardsRebuildRequest) (*VolumeEcShardsRebuildResponse, error) {
  6752. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsRebuild not implemented")
  6753. }
  6754. func (*UnimplementedVolumeServerServer) VolumeEcShardsCopy(context.Context, *VolumeEcShardsCopyRequest) (*VolumeEcShardsCopyResponse, error) {
  6755. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsCopy not implemented")
  6756. }
  6757. func (*UnimplementedVolumeServerServer) VolumeEcShardsDelete(context.Context, *VolumeEcShardsDeleteRequest) (*VolumeEcShardsDeleteResponse, error) {
  6758. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsDelete not implemented")
  6759. }
  6760. func (*UnimplementedVolumeServerServer) VolumeEcShardsMount(context.Context, *VolumeEcShardsMountRequest) (*VolumeEcShardsMountResponse, error) {
  6761. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsMount not implemented")
  6762. }
  6763. func (*UnimplementedVolumeServerServer) VolumeEcShardsUnmount(context.Context, *VolumeEcShardsUnmountRequest) (*VolumeEcShardsUnmountResponse, error) {
  6764. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsUnmount not implemented")
  6765. }
  6766. func (*UnimplementedVolumeServerServer) VolumeEcShardRead(*VolumeEcShardReadRequest, VolumeServer_VolumeEcShardReadServer) error {
  6767. return status.Errorf(codes.Unimplemented, "method VolumeEcShardRead not implemented")
  6768. }
  6769. func (*UnimplementedVolumeServerServer) VolumeEcBlobDelete(context.Context, *VolumeEcBlobDeleteRequest) (*VolumeEcBlobDeleteResponse, error) {
  6770. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcBlobDelete not implemented")
  6771. }
  6772. func (*UnimplementedVolumeServerServer) VolumeEcShardsToVolume(context.Context, *VolumeEcShardsToVolumeRequest) (*VolumeEcShardsToVolumeResponse, error) {
  6773. return nil, status.Errorf(codes.Unimplemented, "method VolumeEcShardsToVolume not implemented")
  6774. }
  6775. func (*UnimplementedVolumeServerServer) VolumeTierMoveDatToRemote(*VolumeTierMoveDatToRemoteRequest, VolumeServer_VolumeTierMoveDatToRemoteServer) error {
  6776. return status.Errorf(codes.Unimplemented, "method VolumeTierMoveDatToRemote not implemented")
  6777. }
  6778. func (*UnimplementedVolumeServerServer) VolumeTierMoveDatFromRemote(*VolumeTierMoveDatFromRemoteRequest, VolumeServer_VolumeTierMoveDatFromRemoteServer) error {
  6779. return status.Errorf(codes.Unimplemented, "method VolumeTierMoveDatFromRemote not implemented")
  6780. }
  6781. func (*UnimplementedVolumeServerServer) VolumeServerStatus(context.Context, *VolumeServerStatusRequest) (*VolumeServerStatusResponse, error) {
  6782. return nil, status.Errorf(codes.Unimplemented, "method VolumeServerStatus not implemented")
  6783. }
  6784. func (*UnimplementedVolumeServerServer) VolumeServerLeave(context.Context, *VolumeServerLeaveRequest) (*VolumeServerLeaveResponse, error) {
  6785. return nil, status.Errorf(codes.Unimplemented, "method VolumeServerLeave not implemented")
  6786. }
  6787. func (*UnimplementedVolumeServerServer) Query(*QueryRequest, VolumeServer_QueryServer) error {
  6788. return status.Errorf(codes.Unimplemented, "method Query not implemented")
  6789. }
  6790. func (*UnimplementedVolumeServerServer) VolumeNeedleStatus(context.Context, *VolumeNeedleStatusRequest) (*VolumeNeedleStatusResponse, error) {
  6791. return nil, status.Errorf(codes.Unimplemented, "method VolumeNeedleStatus not implemented")
  6792. }
  6793. func RegisterVolumeServerServer(s *grpc.Server, srv VolumeServerServer) {
  6794. s.RegisterService(&_VolumeServer_serviceDesc, srv)
  6795. }
  6796. func _VolumeServer_BatchDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6797. in := new(BatchDeleteRequest)
  6798. if err := dec(in); err != nil {
  6799. return nil, err
  6800. }
  6801. if interceptor == nil {
  6802. return srv.(VolumeServerServer).BatchDelete(ctx, in)
  6803. }
  6804. info := &grpc.UnaryServerInfo{
  6805. Server: srv,
  6806. FullMethod: "/volume_server_pb.VolumeServer/BatchDelete",
  6807. }
  6808. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6809. return srv.(VolumeServerServer).BatchDelete(ctx, req.(*BatchDeleteRequest))
  6810. }
  6811. return interceptor(ctx, in, info, handler)
  6812. }
  6813. func _VolumeServer_VacuumVolumeCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6814. in := new(VacuumVolumeCheckRequest)
  6815. if err := dec(in); err != nil {
  6816. return nil, err
  6817. }
  6818. if interceptor == nil {
  6819. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, in)
  6820. }
  6821. info := &grpc.UnaryServerInfo{
  6822. Server: srv,
  6823. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCheck",
  6824. }
  6825. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6826. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, req.(*VacuumVolumeCheckRequest))
  6827. }
  6828. return interceptor(ctx, in, info, handler)
  6829. }
  6830. func _VolumeServer_VacuumVolumeCompact_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6831. in := new(VacuumVolumeCompactRequest)
  6832. if err := dec(in); err != nil {
  6833. return nil, err
  6834. }
  6835. if interceptor == nil {
  6836. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, in)
  6837. }
  6838. info := &grpc.UnaryServerInfo{
  6839. Server: srv,
  6840. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCompact",
  6841. }
  6842. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6843. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, req.(*VacuumVolumeCompactRequest))
  6844. }
  6845. return interceptor(ctx, in, info, handler)
  6846. }
  6847. func _VolumeServer_VacuumVolumeCommit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6848. in := new(VacuumVolumeCommitRequest)
  6849. if err := dec(in); err != nil {
  6850. return nil, err
  6851. }
  6852. if interceptor == nil {
  6853. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, in)
  6854. }
  6855. info := &grpc.UnaryServerInfo{
  6856. Server: srv,
  6857. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCommit",
  6858. }
  6859. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6860. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, req.(*VacuumVolumeCommitRequest))
  6861. }
  6862. return interceptor(ctx, in, info, handler)
  6863. }
  6864. func _VolumeServer_VacuumVolumeCleanup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6865. in := new(VacuumVolumeCleanupRequest)
  6866. if err := dec(in); err != nil {
  6867. return nil, err
  6868. }
  6869. if interceptor == nil {
  6870. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, in)
  6871. }
  6872. info := &grpc.UnaryServerInfo{
  6873. Server: srv,
  6874. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCleanup",
  6875. }
  6876. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6877. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, req.(*VacuumVolumeCleanupRequest))
  6878. }
  6879. return interceptor(ctx, in, info, handler)
  6880. }
  6881. func _VolumeServer_DeleteCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6882. in := new(DeleteCollectionRequest)
  6883. if err := dec(in); err != nil {
  6884. return nil, err
  6885. }
  6886. if interceptor == nil {
  6887. return srv.(VolumeServerServer).DeleteCollection(ctx, in)
  6888. }
  6889. info := &grpc.UnaryServerInfo{
  6890. Server: srv,
  6891. FullMethod: "/volume_server_pb.VolumeServer/DeleteCollection",
  6892. }
  6893. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6894. return srv.(VolumeServerServer).DeleteCollection(ctx, req.(*DeleteCollectionRequest))
  6895. }
  6896. return interceptor(ctx, in, info, handler)
  6897. }
  6898. func _VolumeServer_AllocateVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6899. in := new(AllocateVolumeRequest)
  6900. if err := dec(in); err != nil {
  6901. return nil, err
  6902. }
  6903. if interceptor == nil {
  6904. return srv.(VolumeServerServer).AllocateVolume(ctx, in)
  6905. }
  6906. info := &grpc.UnaryServerInfo{
  6907. Server: srv,
  6908. FullMethod: "/volume_server_pb.VolumeServer/AllocateVolume",
  6909. }
  6910. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6911. return srv.(VolumeServerServer).AllocateVolume(ctx, req.(*AllocateVolumeRequest))
  6912. }
  6913. return interceptor(ctx, in, info, handler)
  6914. }
  6915. func _VolumeServer_VolumeSyncStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6916. in := new(VolumeSyncStatusRequest)
  6917. if err := dec(in); err != nil {
  6918. return nil, err
  6919. }
  6920. if interceptor == nil {
  6921. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, in)
  6922. }
  6923. info := &grpc.UnaryServerInfo{
  6924. Server: srv,
  6925. FullMethod: "/volume_server_pb.VolumeServer/VolumeSyncStatus",
  6926. }
  6927. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6928. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, req.(*VolumeSyncStatusRequest))
  6929. }
  6930. return interceptor(ctx, in, info, handler)
  6931. }
  6932. func _VolumeServer_VolumeIncrementalCopy_Handler(srv interface{}, stream grpc.ServerStream) error {
  6933. m := new(VolumeIncrementalCopyRequest)
  6934. if err := stream.RecvMsg(m); err != nil {
  6935. return err
  6936. }
  6937. return srv.(VolumeServerServer).VolumeIncrementalCopy(m, &volumeServerVolumeIncrementalCopyServer{stream})
  6938. }
  6939. type VolumeServer_VolumeIncrementalCopyServer interface {
  6940. Send(*VolumeIncrementalCopyResponse) error
  6941. grpc.ServerStream
  6942. }
  6943. type volumeServerVolumeIncrementalCopyServer struct {
  6944. grpc.ServerStream
  6945. }
  6946. func (x *volumeServerVolumeIncrementalCopyServer) Send(m *VolumeIncrementalCopyResponse) error {
  6947. return x.ServerStream.SendMsg(m)
  6948. }
  6949. func _VolumeServer_VolumeMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6950. in := new(VolumeMountRequest)
  6951. if err := dec(in); err != nil {
  6952. return nil, err
  6953. }
  6954. if interceptor == nil {
  6955. return srv.(VolumeServerServer).VolumeMount(ctx, in)
  6956. }
  6957. info := &grpc.UnaryServerInfo{
  6958. Server: srv,
  6959. FullMethod: "/volume_server_pb.VolumeServer/VolumeMount",
  6960. }
  6961. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6962. return srv.(VolumeServerServer).VolumeMount(ctx, req.(*VolumeMountRequest))
  6963. }
  6964. return interceptor(ctx, in, info, handler)
  6965. }
  6966. func _VolumeServer_VolumeUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6967. in := new(VolumeUnmountRequest)
  6968. if err := dec(in); err != nil {
  6969. return nil, err
  6970. }
  6971. if interceptor == nil {
  6972. return srv.(VolumeServerServer).VolumeUnmount(ctx, in)
  6973. }
  6974. info := &grpc.UnaryServerInfo{
  6975. Server: srv,
  6976. FullMethod: "/volume_server_pb.VolumeServer/VolumeUnmount",
  6977. }
  6978. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6979. return srv.(VolumeServerServer).VolumeUnmount(ctx, req.(*VolumeUnmountRequest))
  6980. }
  6981. return interceptor(ctx, in, info, handler)
  6982. }
  6983. func _VolumeServer_VolumeDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6984. in := new(VolumeDeleteRequest)
  6985. if err := dec(in); err != nil {
  6986. return nil, err
  6987. }
  6988. if interceptor == nil {
  6989. return srv.(VolumeServerServer).VolumeDelete(ctx, in)
  6990. }
  6991. info := &grpc.UnaryServerInfo{
  6992. Server: srv,
  6993. FullMethod: "/volume_server_pb.VolumeServer/VolumeDelete",
  6994. }
  6995. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6996. return srv.(VolumeServerServer).VolumeDelete(ctx, req.(*VolumeDeleteRequest))
  6997. }
  6998. return interceptor(ctx, in, info, handler)
  6999. }
  7000. func _VolumeServer_VolumeMarkReadonly_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7001. in := new(VolumeMarkReadonlyRequest)
  7002. if err := dec(in); err != nil {
  7003. return nil, err
  7004. }
  7005. if interceptor == nil {
  7006. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, in)
  7007. }
  7008. info := &grpc.UnaryServerInfo{
  7009. Server: srv,
  7010. FullMethod: "/volume_server_pb.VolumeServer/VolumeMarkReadonly",
  7011. }
  7012. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7013. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, req.(*VolumeMarkReadonlyRequest))
  7014. }
  7015. return interceptor(ctx, in, info, handler)
  7016. }
  7017. func _VolumeServer_VolumeMarkWritable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7018. in := new(VolumeMarkWritableRequest)
  7019. if err := dec(in); err != nil {
  7020. return nil, err
  7021. }
  7022. if interceptor == nil {
  7023. return srv.(VolumeServerServer).VolumeMarkWritable(ctx, in)
  7024. }
  7025. info := &grpc.UnaryServerInfo{
  7026. Server: srv,
  7027. FullMethod: "/volume_server_pb.VolumeServer/VolumeMarkWritable",
  7028. }
  7029. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7030. return srv.(VolumeServerServer).VolumeMarkWritable(ctx, req.(*VolumeMarkWritableRequest))
  7031. }
  7032. return interceptor(ctx, in, info, handler)
  7033. }
  7034. func _VolumeServer_VolumeConfigure_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7035. in := new(VolumeConfigureRequest)
  7036. if err := dec(in); err != nil {
  7037. return nil, err
  7038. }
  7039. if interceptor == nil {
  7040. return srv.(VolumeServerServer).VolumeConfigure(ctx, in)
  7041. }
  7042. info := &grpc.UnaryServerInfo{
  7043. Server: srv,
  7044. FullMethod: "/volume_server_pb.VolumeServer/VolumeConfigure",
  7045. }
  7046. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7047. return srv.(VolumeServerServer).VolumeConfigure(ctx, req.(*VolumeConfigureRequest))
  7048. }
  7049. return interceptor(ctx, in, info, handler)
  7050. }
  7051. func _VolumeServer_VolumeStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7052. in := new(VolumeStatusRequest)
  7053. if err := dec(in); err != nil {
  7054. return nil, err
  7055. }
  7056. if interceptor == nil {
  7057. return srv.(VolumeServerServer).VolumeStatus(ctx, in)
  7058. }
  7059. info := &grpc.UnaryServerInfo{
  7060. Server: srv,
  7061. FullMethod: "/volume_server_pb.VolumeServer/VolumeStatus",
  7062. }
  7063. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7064. return srv.(VolumeServerServer).VolumeStatus(ctx, req.(*VolumeStatusRequest))
  7065. }
  7066. return interceptor(ctx, in, info, handler)
  7067. }
  7068. func _VolumeServer_VolumeCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7069. in := new(VolumeCopyRequest)
  7070. if err := dec(in); err != nil {
  7071. return nil, err
  7072. }
  7073. if interceptor == nil {
  7074. return srv.(VolumeServerServer).VolumeCopy(ctx, in)
  7075. }
  7076. info := &grpc.UnaryServerInfo{
  7077. Server: srv,
  7078. FullMethod: "/volume_server_pb.VolumeServer/VolumeCopy",
  7079. }
  7080. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7081. return srv.(VolumeServerServer).VolumeCopy(ctx, req.(*VolumeCopyRequest))
  7082. }
  7083. return interceptor(ctx, in, info, handler)
  7084. }
  7085. func _VolumeServer_ReadVolumeFileStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7086. in := new(ReadVolumeFileStatusRequest)
  7087. if err := dec(in); err != nil {
  7088. return nil, err
  7089. }
  7090. if interceptor == nil {
  7091. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, in)
  7092. }
  7093. info := &grpc.UnaryServerInfo{
  7094. Server: srv,
  7095. FullMethod: "/volume_server_pb.VolumeServer/ReadVolumeFileStatus",
  7096. }
  7097. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7098. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, req.(*ReadVolumeFileStatusRequest))
  7099. }
  7100. return interceptor(ctx, in, info, handler)
  7101. }
  7102. func _VolumeServer_CopyFile_Handler(srv interface{}, stream grpc.ServerStream) error {
  7103. m := new(CopyFileRequest)
  7104. if err := stream.RecvMsg(m); err != nil {
  7105. return err
  7106. }
  7107. return srv.(VolumeServerServer).CopyFile(m, &volumeServerCopyFileServer{stream})
  7108. }
  7109. type VolumeServer_CopyFileServer interface {
  7110. Send(*CopyFileResponse) error
  7111. grpc.ServerStream
  7112. }
  7113. type volumeServerCopyFileServer struct {
  7114. grpc.ServerStream
  7115. }
  7116. func (x *volumeServerCopyFileServer) Send(m *CopyFileResponse) error {
  7117. return x.ServerStream.SendMsg(m)
  7118. }
  7119. func _VolumeServer_VolumeTailSender_Handler(srv interface{}, stream grpc.ServerStream) error {
  7120. m := new(VolumeTailSenderRequest)
  7121. if err := stream.RecvMsg(m); err != nil {
  7122. return err
  7123. }
  7124. return srv.(VolumeServerServer).VolumeTailSender(m, &volumeServerVolumeTailSenderServer{stream})
  7125. }
  7126. type VolumeServer_VolumeTailSenderServer interface {
  7127. Send(*VolumeTailSenderResponse) error
  7128. grpc.ServerStream
  7129. }
  7130. type volumeServerVolumeTailSenderServer struct {
  7131. grpc.ServerStream
  7132. }
  7133. func (x *volumeServerVolumeTailSenderServer) Send(m *VolumeTailSenderResponse) error {
  7134. return x.ServerStream.SendMsg(m)
  7135. }
  7136. func _VolumeServer_VolumeTailReceiver_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7137. in := new(VolumeTailReceiverRequest)
  7138. if err := dec(in); err != nil {
  7139. return nil, err
  7140. }
  7141. if interceptor == nil {
  7142. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, in)
  7143. }
  7144. info := &grpc.UnaryServerInfo{
  7145. Server: srv,
  7146. FullMethod: "/volume_server_pb.VolumeServer/VolumeTailReceiver",
  7147. }
  7148. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7149. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, req.(*VolumeTailReceiverRequest))
  7150. }
  7151. return interceptor(ctx, in, info, handler)
  7152. }
  7153. func _VolumeServer_VolumeEcShardsGenerate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7154. in := new(VolumeEcShardsGenerateRequest)
  7155. if err := dec(in); err != nil {
  7156. return nil, err
  7157. }
  7158. if interceptor == nil {
  7159. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, in)
  7160. }
  7161. info := &grpc.UnaryServerInfo{
  7162. Server: srv,
  7163. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate",
  7164. }
  7165. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7166. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, req.(*VolumeEcShardsGenerateRequest))
  7167. }
  7168. return interceptor(ctx, in, info, handler)
  7169. }
  7170. func _VolumeServer_VolumeEcShardsRebuild_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7171. in := new(VolumeEcShardsRebuildRequest)
  7172. if err := dec(in); err != nil {
  7173. return nil, err
  7174. }
  7175. if interceptor == nil {
  7176. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, in)
  7177. }
  7178. info := &grpc.UnaryServerInfo{
  7179. Server: srv,
  7180. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild",
  7181. }
  7182. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7183. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, req.(*VolumeEcShardsRebuildRequest))
  7184. }
  7185. return interceptor(ctx, in, info, handler)
  7186. }
  7187. func _VolumeServer_VolumeEcShardsCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7188. in := new(VolumeEcShardsCopyRequest)
  7189. if err := dec(in); err != nil {
  7190. return nil, err
  7191. }
  7192. if interceptor == nil {
  7193. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, in)
  7194. }
  7195. info := &grpc.UnaryServerInfo{
  7196. Server: srv,
  7197. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsCopy",
  7198. }
  7199. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7200. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, req.(*VolumeEcShardsCopyRequest))
  7201. }
  7202. return interceptor(ctx, in, info, handler)
  7203. }
  7204. func _VolumeServer_VolumeEcShardsDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7205. in := new(VolumeEcShardsDeleteRequest)
  7206. if err := dec(in); err != nil {
  7207. return nil, err
  7208. }
  7209. if interceptor == nil {
  7210. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, in)
  7211. }
  7212. info := &grpc.UnaryServerInfo{
  7213. Server: srv,
  7214. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsDelete",
  7215. }
  7216. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7217. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, req.(*VolumeEcShardsDeleteRequest))
  7218. }
  7219. return interceptor(ctx, in, info, handler)
  7220. }
  7221. func _VolumeServer_VolumeEcShardsMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7222. in := new(VolumeEcShardsMountRequest)
  7223. if err := dec(in); err != nil {
  7224. return nil, err
  7225. }
  7226. if interceptor == nil {
  7227. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, in)
  7228. }
  7229. info := &grpc.UnaryServerInfo{
  7230. Server: srv,
  7231. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsMount",
  7232. }
  7233. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7234. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, req.(*VolumeEcShardsMountRequest))
  7235. }
  7236. return interceptor(ctx, in, info, handler)
  7237. }
  7238. func _VolumeServer_VolumeEcShardsUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7239. in := new(VolumeEcShardsUnmountRequest)
  7240. if err := dec(in); err != nil {
  7241. return nil, err
  7242. }
  7243. if interceptor == nil {
  7244. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, in)
  7245. }
  7246. info := &grpc.UnaryServerInfo{
  7247. Server: srv,
  7248. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount",
  7249. }
  7250. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7251. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, req.(*VolumeEcShardsUnmountRequest))
  7252. }
  7253. return interceptor(ctx, in, info, handler)
  7254. }
  7255. func _VolumeServer_VolumeEcShardRead_Handler(srv interface{}, stream grpc.ServerStream) error {
  7256. m := new(VolumeEcShardReadRequest)
  7257. if err := stream.RecvMsg(m); err != nil {
  7258. return err
  7259. }
  7260. return srv.(VolumeServerServer).VolumeEcShardRead(m, &volumeServerVolumeEcShardReadServer{stream})
  7261. }
  7262. type VolumeServer_VolumeEcShardReadServer interface {
  7263. Send(*VolumeEcShardReadResponse) error
  7264. grpc.ServerStream
  7265. }
  7266. type volumeServerVolumeEcShardReadServer struct {
  7267. grpc.ServerStream
  7268. }
  7269. func (x *volumeServerVolumeEcShardReadServer) Send(m *VolumeEcShardReadResponse) error {
  7270. return x.ServerStream.SendMsg(m)
  7271. }
  7272. func _VolumeServer_VolumeEcBlobDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7273. in := new(VolumeEcBlobDeleteRequest)
  7274. if err := dec(in); err != nil {
  7275. return nil, err
  7276. }
  7277. if interceptor == nil {
  7278. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, in)
  7279. }
  7280. info := &grpc.UnaryServerInfo{
  7281. Server: srv,
  7282. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcBlobDelete",
  7283. }
  7284. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7285. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, req.(*VolumeEcBlobDeleteRequest))
  7286. }
  7287. return interceptor(ctx, in, info, handler)
  7288. }
  7289. func _VolumeServer_VolumeEcShardsToVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7290. in := new(VolumeEcShardsToVolumeRequest)
  7291. if err := dec(in); err != nil {
  7292. return nil, err
  7293. }
  7294. if interceptor == nil {
  7295. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, in)
  7296. }
  7297. info := &grpc.UnaryServerInfo{
  7298. Server: srv,
  7299. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume",
  7300. }
  7301. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7302. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, req.(*VolumeEcShardsToVolumeRequest))
  7303. }
  7304. return interceptor(ctx, in, info, handler)
  7305. }
  7306. func _VolumeServer_VolumeTierMoveDatToRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  7307. m := new(VolumeTierMoveDatToRemoteRequest)
  7308. if err := stream.RecvMsg(m); err != nil {
  7309. return err
  7310. }
  7311. return srv.(VolumeServerServer).VolumeTierMoveDatToRemote(m, &volumeServerVolumeTierMoveDatToRemoteServer{stream})
  7312. }
  7313. type VolumeServer_VolumeTierMoveDatToRemoteServer interface {
  7314. Send(*VolumeTierMoveDatToRemoteResponse) error
  7315. grpc.ServerStream
  7316. }
  7317. type volumeServerVolumeTierMoveDatToRemoteServer struct {
  7318. grpc.ServerStream
  7319. }
  7320. func (x *volumeServerVolumeTierMoveDatToRemoteServer) Send(m *VolumeTierMoveDatToRemoteResponse) error {
  7321. return x.ServerStream.SendMsg(m)
  7322. }
  7323. func _VolumeServer_VolumeTierMoveDatFromRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  7324. m := new(VolumeTierMoveDatFromRemoteRequest)
  7325. if err := stream.RecvMsg(m); err != nil {
  7326. return err
  7327. }
  7328. return srv.(VolumeServerServer).VolumeTierMoveDatFromRemote(m, &volumeServerVolumeTierMoveDatFromRemoteServer{stream})
  7329. }
  7330. type VolumeServer_VolumeTierMoveDatFromRemoteServer interface {
  7331. Send(*VolumeTierMoveDatFromRemoteResponse) error
  7332. grpc.ServerStream
  7333. }
  7334. type volumeServerVolumeTierMoveDatFromRemoteServer struct {
  7335. grpc.ServerStream
  7336. }
  7337. func (x *volumeServerVolumeTierMoveDatFromRemoteServer) Send(m *VolumeTierMoveDatFromRemoteResponse) error {
  7338. return x.ServerStream.SendMsg(m)
  7339. }
  7340. func _VolumeServer_VolumeServerStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7341. in := new(VolumeServerStatusRequest)
  7342. if err := dec(in); err != nil {
  7343. return nil, err
  7344. }
  7345. if interceptor == nil {
  7346. return srv.(VolumeServerServer).VolumeServerStatus(ctx, in)
  7347. }
  7348. info := &grpc.UnaryServerInfo{
  7349. Server: srv,
  7350. FullMethod: "/volume_server_pb.VolumeServer/VolumeServerStatus",
  7351. }
  7352. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7353. return srv.(VolumeServerServer).VolumeServerStatus(ctx, req.(*VolumeServerStatusRequest))
  7354. }
  7355. return interceptor(ctx, in, info, handler)
  7356. }
  7357. func _VolumeServer_VolumeServerLeave_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7358. in := new(VolumeServerLeaveRequest)
  7359. if err := dec(in); err != nil {
  7360. return nil, err
  7361. }
  7362. if interceptor == nil {
  7363. return srv.(VolumeServerServer).VolumeServerLeave(ctx, in)
  7364. }
  7365. info := &grpc.UnaryServerInfo{
  7366. Server: srv,
  7367. FullMethod: "/volume_server_pb.VolumeServer/VolumeServerLeave",
  7368. }
  7369. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7370. return srv.(VolumeServerServer).VolumeServerLeave(ctx, req.(*VolumeServerLeaveRequest))
  7371. }
  7372. return interceptor(ctx, in, info, handler)
  7373. }
  7374. func _VolumeServer_Query_Handler(srv interface{}, stream grpc.ServerStream) error {
  7375. m := new(QueryRequest)
  7376. if err := stream.RecvMsg(m); err != nil {
  7377. return err
  7378. }
  7379. return srv.(VolumeServerServer).Query(m, &volumeServerQueryServer{stream})
  7380. }
  7381. type VolumeServer_QueryServer interface {
  7382. Send(*QueriedStripe) error
  7383. grpc.ServerStream
  7384. }
  7385. type volumeServerQueryServer struct {
  7386. grpc.ServerStream
  7387. }
  7388. func (x *volumeServerQueryServer) Send(m *QueriedStripe) error {
  7389. return x.ServerStream.SendMsg(m)
  7390. }
  7391. func _VolumeServer_VolumeNeedleStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7392. in := new(VolumeNeedleStatusRequest)
  7393. if err := dec(in); err != nil {
  7394. return nil, err
  7395. }
  7396. if interceptor == nil {
  7397. return srv.(VolumeServerServer).VolumeNeedleStatus(ctx, in)
  7398. }
  7399. info := &grpc.UnaryServerInfo{
  7400. Server: srv,
  7401. FullMethod: "/volume_server_pb.VolumeServer/VolumeNeedleStatus",
  7402. }
  7403. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7404. return srv.(VolumeServerServer).VolumeNeedleStatus(ctx, req.(*VolumeNeedleStatusRequest))
  7405. }
  7406. return interceptor(ctx, in, info, handler)
  7407. }
  7408. var _VolumeServer_serviceDesc = grpc.ServiceDesc{
  7409. ServiceName: "volume_server_pb.VolumeServer",
  7410. HandlerType: (*VolumeServerServer)(nil),
  7411. Methods: []grpc.MethodDesc{
  7412. {
  7413. MethodName: "BatchDelete",
  7414. Handler: _VolumeServer_BatchDelete_Handler,
  7415. },
  7416. {
  7417. MethodName: "VacuumVolumeCheck",
  7418. Handler: _VolumeServer_VacuumVolumeCheck_Handler,
  7419. },
  7420. {
  7421. MethodName: "VacuumVolumeCompact",
  7422. Handler: _VolumeServer_VacuumVolumeCompact_Handler,
  7423. },
  7424. {
  7425. MethodName: "VacuumVolumeCommit",
  7426. Handler: _VolumeServer_VacuumVolumeCommit_Handler,
  7427. },
  7428. {
  7429. MethodName: "VacuumVolumeCleanup",
  7430. Handler: _VolumeServer_VacuumVolumeCleanup_Handler,
  7431. },
  7432. {
  7433. MethodName: "DeleteCollection",
  7434. Handler: _VolumeServer_DeleteCollection_Handler,
  7435. },
  7436. {
  7437. MethodName: "AllocateVolume",
  7438. Handler: _VolumeServer_AllocateVolume_Handler,
  7439. },
  7440. {
  7441. MethodName: "VolumeSyncStatus",
  7442. Handler: _VolumeServer_VolumeSyncStatus_Handler,
  7443. },
  7444. {
  7445. MethodName: "VolumeMount",
  7446. Handler: _VolumeServer_VolumeMount_Handler,
  7447. },
  7448. {
  7449. MethodName: "VolumeUnmount",
  7450. Handler: _VolumeServer_VolumeUnmount_Handler,
  7451. },
  7452. {
  7453. MethodName: "VolumeDelete",
  7454. Handler: _VolumeServer_VolumeDelete_Handler,
  7455. },
  7456. {
  7457. MethodName: "VolumeMarkReadonly",
  7458. Handler: _VolumeServer_VolumeMarkReadonly_Handler,
  7459. },
  7460. {
  7461. MethodName: "VolumeMarkWritable",
  7462. Handler: _VolumeServer_VolumeMarkWritable_Handler,
  7463. },
  7464. {
  7465. MethodName: "VolumeConfigure",
  7466. Handler: _VolumeServer_VolumeConfigure_Handler,
  7467. },
  7468. {
  7469. MethodName: "VolumeStatus",
  7470. Handler: _VolumeServer_VolumeStatus_Handler,
  7471. },
  7472. {
  7473. MethodName: "VolumeCopy",
  7474. Handler: _VolumeServer_VolumeCopy_Handler,
  7475. },
  7476. {
  7477. MethodName: "ReadVolumeFileStatus",
  7478. Handler: _VolumeServer_ReadVolumeFileStatus_Handler,
  7479. },
  7480. {
  7481. MethodName: "VolumeTailReceiver",
  7482. Handler: _VolumeServer_VolumeTailReceiver_Handler,
  7483. },
  7484. {
  7485. MethodName: "VolumeEcShardsGenerate",
  7486. Handler: _VolumeServer_VolumeEcShardsGenerate_Handler,
  7487. },
  7488. {
  7489. MethodName: "VolumeEcShardsRebuild",
  7490. Handler: _VolumeServer_VolumeEcShardsRebuild_Handler,
  7491. },
  7492. {
  7493. MethodName: "VolumeEcShardsCopy",
  7494. Handler: _VolumeServer_VolumeEcShardsCopy_Handler,
  7495. },
  7496. {
  7497. MethodName: "VolumeEcShardsDelete",
  7498. Handler: _VolumeServer_VolumeEcShardsDelete_Handler,
  7499. },
  7500. {
  7501. MethodName: "VolumeEcShardsMount",
  7502. Handler: _VolumeServer_VolumeEcShardsMount_Handler,
  7503. },
  7504. {
  7505. MethodName: "VolumeEcShardsUnmount",
  7506. Handler: _VolumeServer_VolumeEcShardsUnmount_Handler,
  7507. },
  7508. {
  7509. MethodName: "VolumeEcBlobDelete",
  7510. Handler: _VolumeServer_VolumeEcBlobDelete_Handler,
  7511. },
  7512. {
  7513. MethodName: "VolumeEcShardsToVolume",
  7514. Handler: _VolumeServer_VolumeEcShardsToVolume_Handler,
  7515. },
  7516. {
  7517. MethodName: "VolumeServerStatus",
  7518. Handler: _VolumeServer_VolumeServerStatus_Handler,
  7519. },
  7520. {
  7521. MethodName: "VolumeServerLeave",
  7522. Handler: _VolumeServer_VolumeServerLeave_Handler,
  7523. },
  7524. {
  7525. MethodName: "VolumeNeedleStatus",
  7526. Handler: _VolumeServer_VolumeNeedleStatus_Handler,
  7527. },
  7528. },
  7529. Streams: []grpc.StreamDesc{
  7530. {
  7531. StreamName: "VolumeIncrementalCopy",
  7532. Handler: _VolumeServer_VolumeIncrementalCopy_Handler,
  7533. ServerStreams: true,
  7534. },
  7535. {
  7536. StreamName: "CopyFile",
  7537. Handler: _VolumeServer_CopyFile_Handler,
  7538. ServerStreams: true,
  7539. },
  7540. {
  7541. StreamName: "VolumeTailSender",
  7542. Handler: _VolumeServer_VolumeTailSender_Handler,
  7543. ServerStreams: true,
  7544. },
  7545. {
  7546. StreamName: "VolumeEcShardRead",
  7547. Handler: _VolumeServer_VolumeEcShardRead_Handler,
  7548. ServerStreams: true,
  7549. },
  7550. {
  7551. StreamName: "VolumeTierMoveDatToRemote",
  7552. Handler: _VolumeServer_VolumeTierMoveDatToRemote_Handler,
  7553. ServerStreams: true,
  7554. },
  7555. {
  7556. StreamName: "VolumeTierMoveDatFromRemote",
  7557. Handler: _VolumeServer_VolumeTierMoveDatFromRemote_Handler,
  7558. ServerStreams: true,
  7559. },
  7560. {
  7561. StreamName: "Query",
  7562. Handler: _VolumeServer_Query_Handler,
  7563. ServerStreams: true,
  7564. },
  7565. },
  7566. Metadata: "volume_server.proto",
  7567. }