volume_server.pb.go 306 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.32.0
  4. // protoc v4.25.3
  5. // source: volume_server.proto
  6. package volume_server_pb
  7. import (
  8. remote_pb "github.com/seaweedfs/seaweedfs/weed/pb/remote_pb"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type BatchDeleteRequest struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. FileIds []string `protobuf:"bytes,1,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
  25. SkipCookieCheck bool `protobuf:"varint,2,opt,name=skip_cookie_check,json=skipCookieCheck,proto3" json:"skip_cookie_check,omitempty"`
  26. }
  27. func (x *BatchDeleteRequest) Reset() {
  28. *x = BatchDeleteRequest{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_volume_server_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *BatchDeleteRequest) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*BatchDeleteRequest) ProtoMessage() {}
  39. func (x *BatchDeleteRequest) ProtoReflect() protoreflect.Message {
  40. mi := &file_volume_server_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use BatchDeleteRequest.ProtoReflect.Descriptor instead.
  51. func (*BatchDeleteRequest) Descriptor() ([]byte, []int) {
  52. return file_volume_server_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *BatchDeleteRequest) GetFileIds() []string {
  55. if x != nil {
  56. return x.FileIds
  57. }
  58. return nil
  59. }
  60. func (x *BatchDeleteRequest) GetSkipCookieCheck() bool {
  61. if x != nil {
  62. return x.SkipCookieCheck
  63. }
  64. return false
  65. }
  66. type BatchDeleteResponse struct {
  67. state protoimpl.MessageState
  68. sizeCache protoimpl.SizeCache
  69. unknownFields protoimpl.UnknownFields
  70. Results []*DeleteResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
  71. }
  72. func (x *BatchDeleteResponse) Reset() {
  73. *x = BatchDeleteResponse{}
  74. if protoimpl.UnsafeEnabled {
  75. mi := &file_volume_server_proto_msgTypes[1]
  76. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  77. ms.StoreMessageInfo(mi)
  78. }
  79. }
  80. func (x *BatchDeleteResponse) String() string {
  81. return protoimpl.X.MessageStringOf(x)
  82. }
  83. func (*BatchDeleteResponse) ProtoMessage() {}
  84. func (x *BatchDeleteResponse) ProtoReflect() protoreflect.Message {
  85. mi := &file_volume_server_proto_msgTypes[1]
  86. if protoimpl.UnsafeEnabled && x != nil {
  87. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  88. if ms.LoadMessageInfo() == nil {
  89. ms.StoreMessageInfo(mi)
  90. }
  91. return ms
  92. }
  93. return mi.MessageOf(x)
  94. }
  95. // Deprecated: Use BatchDeleteResponse.ProtoReflect.Descriptor instead.
  96. func (*BatchDeleteResponse) Descriptor() ([]byte, []int) {
  97. return file_volume_server_proto_rawDescGZIP(), []int{1}
  98. }
  99. func (x *BatchDeleteResponse) GetResults() []*DeleteResult {
  100. if x != nil {
  101. return x.Results
  102. }
  103. return nil
  104. }
  105. type DeleteResult struct {
  106. state protoimpl.MessageState
  107. sizeCache protoimpl.SizeCache
  108. unknownFields protoimpl.UnknownFields
  109. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
  110. Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
  111. Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
  112. Size uint32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  113. Version uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"`
  114. }
  115. func (x *DeleteResult) Reset() {
  116. *x = DeleteResult{}
  117. if protoimpl.UnsafeEnabled {
  118. mi := &file_volume_server_proto_msgTypes[2]
  119. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  120. ms.StoreMessageInfo(mi)
  121. }
  122. }
  123. func (x *DeleteResult) String() string {
  124. return protoimpl.X.MessageStringOf(x)
  125. }
  126. func (*DeleteResult) ProtoMessage() {}
  127. func (x *DeleteResult) ProtoReflect() protoreflect.Message {
  128. mi := &file_volume_server_proto_msgTypes[2]
  129. if protoimpl.UnsafeEnabled && x != nil {
  130. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  131. if ms.LoadMessageInfo() == nil {
  132. ms.StoreMessageInfo(mi)
  133. }
  134. return ms
  135. }
  136. return mi.MessageOf(x)
  137. }
  138. // Deprecated: Use DeleteResult.ProtoReflect.Descriptor instead.
  139. func (*DeleteResult) Descriptor() ([]byte, []int) {
  140. return file_volume_server_proto_rawDescGZIP(), []int{2}
  141. }
  142. func (x *DeleteResult) GetFileId() string {
  143. if x != nil {
  144. return x.FileId
  145. }
  146. return ""
  147. }
  148. func (x *DeleteResult) GetStatus() int32 {
  149. if x != nil {
  150. return x.Status
  151. }
  152. return 0
  153. }
  154. func (x *DeleteResult) GetError() string {
  155. if x != nil {
  156. return x.Error
  157. }
  158. return ""
  159. }
  160. func (x *DeleteResult) GetSize() uint32 {
  161. if x != nil {
  162. return x.Size
  163. }
  164. return 0
  165. }
  166. func (x *DeleteResult) GetVersion() uint32 {
  167. if x != nil {
  168. return x.Version
  169. }
  170. return 0
  171. }
  172. type Empty struct {
  173. state protoimpl.MessageState
  174. sizeCache protoimpl.SizeCache
  175. unknownFields protoimpl.UnknownFields
  176. }
  177. func (x *Empty) Reset() {
  178. *x = Empty{}
  179. if protoimpl.UnsafeEnabled {
  180. mi := &file_volume_server_proto_msgTypes[3]
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. ms.StoreMessageInfo(mi)
  183. }
  184. }
  185. func (x *Empty) String() string {
  186. return protoimpl.X.MessageStringOf(x)
  187. }
  188. func (*Empty) ProtoMessage() {}
  189. func (x *Empty) ProtoReflect() protoreflect.Message {
  190. mi := &file_volume_server_proto_msgTypes[3]
  191. if protoimpl.UnsafeEnabled && x != nil {
  192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  193. if ms.LoadMessageInfo() == nil {
  194. ms.StoreMessageInfo(mi)
  195. }
  196. return ms
  197. }
  198. return mi.MessageOf(x)
  199. }
  200. // Deprecated: Use Empty.ProtoReflect.Descriptor instead.
  201. func (*Empty) Descriptor() ([]byte, []int) {
  202. return file_volume_server_proto_rawDescGZIP(), []int{3}
  203. }
  204. type VacuumVolumeCheckRequest struct {
  205. state protoimpl.MessageState
  206. sizeCache protoimpl.SizeCache
  207. unknownFields protoimpl.UnknownFields
  208. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  209. }
  210. func (x *VacuumVolumeCheckRequest) Reset() {
  211. *x = VacuumVolumeCheckRequest{}
  212. if protoimpl.UnsafeEnabled {
  213. mi := &file_volume_server_proto_msgTypes[4]
  214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  215. ms.StoreMessageInfo(mi)
  216. }
  217. }
  218. func (x *VacuumVolumeCheckRequest) String() string {
  219. return protoimpl.X.MessageStringOf(x)
  220. }
  221. func (*VacuumVolumeCheckRequest) ProtoMessage() {}
  222. func (x *VacuumVolumeCheckRequest) ProtoReflect() protoreflect.Message {
  223. mi := &file_volume_server_proto_msgTypes[4]
  224. if protoimpl.UnsafeEnabled && x != nil {
  225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  226. if ms.LoadMessageInfo() == nil {
  227. ms.StoreMessageInfo(mi)
  228. }
  229. return ms
  230. }
  231. return mi.MessageOf(x)
  232. }
  233. // Deprecated: Use VacuumVolumeCheckRequest.ProtoReflect.Descriptor instead.
  234. func (*VacuumVolumeCheckRequest) Descriptor() ([]byte, []int) {
  235. return file_volume_server_proto_rawDescGZIP(), []int{4}
  236. }
  237. func (x *VacuumVolumeCheckRequest) GetVolumeId() uint32 {
  238. if x != nil {
  239. return x.VolumeId
  240. }
  241. return 0
  242. }
  243. type VacuumVolumeCheckResponse struct {
  244. state protoimpl.MessageState
  245. sizeCache protoimpl.SizeCache
  246. unknownFields protoimpl.UnknownFields
  247. GarbageRatio float64 `protobuf:"fixed64,1,opt,name=garbage_ratio,json=garbageRatio,proto3" json:"garbage_ratio,omitempty"`
  248. }
  249. func (x *VacuumVolumeCheckResponse) Reset() {
  250. *x = VacuumVolumeCheckResponse{}
  251. if protoimpl.UnsafeEnabled {
  252. mi := &file_volume_server_proto_msgTypes[5]
  253. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  254. ms.StoreMessageInfo(mi)
  255. }
  256. }
  257. func (x *VacuumVolumeCheckResponse) String() string {
  258. return protoimpl.X.MessageStringOf(x)
  259. }
  260. func (*VacuumVolumeCheckResponse) ProtoMessage() {}
  261. func (x *VacuumVolumeCheckResponse) ProtoReflect() protoreflect.Message {
  262. mi := &file_volume_server_proto_msgTypes[5]
  263. if protoimpl.UnsafeEnabled && x != nil {
  264. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  265. if ms.LoadMessageInfo() == nil {
  266. ms.StoreMessageInfo(mi)
  267. }
  268. return ms
  269. }
  270. return mi.MessageOf(x)
  271. }
  272. // Deprecated: Use VacuumVolumeCheckResponse.ProtoReflect.Descriptor instead.
  273. func (*VacuumVolumeCheckResponse) Descriptor() ([]byte, []int) {
  274. return file_volume_server_proto_rawDescGZIP(), []int{5}
  275. }
  276. func (x *VacuumVolumeCheckResponse) GetGarbageRatio() float64 {
  277. if x != nil {
  278. return x.GarbageRatio
  279. }
  280. return 0
  281. }
  282. type VacuumVolumeCompactRequest struct {
  283. state protoimpl.MessageState
  284. sizeCache protoimpl.SizeCache
  285. unknownFields protoimpl.UnknownFields
  286. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  287. Preallocate int64 `protobuf:"varint,2,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  288. }
  289. func (x *VacuumVolumeCompactRequest) Reset() {
  290. *x = VacuumVolumeCompactRequest{}
  291. if protoimpl.UnsafeEnabled {
  292. mi := &file_volume_server_proto_msgTypes[6]
  293. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  294. ms.StoreMessageInfo(mi)
  295. }
  296. }
  297. func (x *VacuumVolumeCompactRequest) String() string {
  298. return protoimpl.X.MessageStringOf(x)
  299. }
  300. func (*VacuumVolumeCompactRequest) ProtoMessage() {}
  301. func (x *VacuumVolumeCompactRequest) ProtoReflect() protoreflect.Message {
  302. mi := &file_volume_server_proto_msgTypes[6]
  303. if protoimpl.UnsafeEnabled && x != nil {
  304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  305. if ms.LoadMessageInfo() == nil {
  306. ms.StoreMessageInfo(mi)
  307. }
  308. return ms
  309. }
  310. return mi.MessageOf(x)
  311. }
  312. // Deprecated: Use VacuumVolumeCompactRequest.ProtoReflect.Descriptor instead.
  313. func (*VacuumVolumeCompactRequest) Descriptor() ([]byte, []int) {
  314. return file_volume_server_proto_rawDescGZIP(), []int{6}
  315. }
  316. func (x *VacuumVolumeCompactRequest) GetVolumeId() uint32 {
  317. if x != nil {
  318. return x.VolumeId
  319. }
  320. return 0
  321. }
  322. func (x *VacuumVolumeCompactRequest) GetPreallocate() int64 {
  323. if x != nil {
  324. return x.Preallocate
  325. }
  326. return 0
  327. }
  328. type VacuumVolumeCompactResponse struct {
  329. state protoimpl.MessageState
  330. sizeCache protoimpl.SizeCache
  331. unknownFields protoimpl.UnknownFields
  332. ProcessedBytes int64 `protobuf:"varint,1,opt,name=processed_bytes,json=processedBytes,proto3" json:"processed_bytes,omitempty"`
  333. LoadAvg_1M float32 `protobuf:"fixed32,2,opt,name=load_avg_1m,json=loadAvg1m,proto3" json:"load_avg_1m,omitempty"`
  334. }
  335. func (x *VacuumVolumeCompactResponse) Reset() {
  336. *x = VacuumVolumeCompactResponse{}
  337. if protoimpl.UnsafeEnabled {
  338. mi := &file_volume_server_proto_msgTypes[7]
  339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  340. ms.StoreMessageInfo(mi)
  341. }
  342. }
  343. func (x *VacuumVolumeCompactResponse) String() string {
  344. return protoimpl.X.MessageStringOf(x)
  345. }
  346. func (*VacuumVolumeCompactResponse) ProtoMessage() {}
  347. func (x *VacuumVolumeCompactResponse) ProtoReflect() protoreflect.Message {
  348. mi := &file_volume_server_proto_msgTypes[7]
  349. if protoimpl.UnsafeEnabled && x != nil {
  350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  351. if ms.LoadMessageInfo() == nil {
  352. ms.StoreMessageInfo(mi)
  353. }
  354. return ms
  355. }
  356. return mi.MessageOf(x)
  357. }
  358. // Deprecated: Use VacuumVolumeCompactResponse.ProtoReflect.Descriptor instead.
  359. func (*VacuumVolumeCompactResponse) Descriptor() ([]byte, []int) {
  360. return file_volume_server_proto_rawDescGZIP(), []int{7}
  361. }
  362. func (x *VacuumVolumeCompactResponse) GetProcessedBytes() int64 {
  363. if x != nil {
  364. return x.ProcessedBytes
  365. }
  366. return 0
  367. }
  368. func (x *VacuumVolumeCompactResponse) GetLoadAvg_1M() float32 {
  369. if x != nil {
  370. return x.LoadAvg_1M
  371. }
  372. return 0
  373. }
  374. type VacuumVolumeCommitRequest struct {
  375. state protoimpl.MessageState
  376. sizeCache protoimpl.SizeCache
  377. unknownFields protoimpl.UnknownFields
  378. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  379. }
  380. func (x *VacuumVolumeCommitRequest) Reset() {
  381. *x = VacuumVolumeCommitRequest{}
  382. if protoimpl.UnsafeEnabled {
  383. mi := &file_volume_server_proto_msgTypes[8]
  384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  385. ms.StoreMessageInfo(mi)
  386. }
  387. }
  388. func (x *VacuumVolumeCommitRequest) String() string {
  389. return protoimpl.X.MessageStringOf(x)
  390. }
  391. func (*VacuumVolumeCommitRequest) ProtoMessage() {}
  392. func (x *VacuumVolumeCommitRequest) ProtoReflect() protoreflect.Message {
  393. mi := &file_volume_server_proto_msgTypes[8]
  394. if protoimpl.UnsafeEnabled && x != nil {
  395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  396. if ms.LoadMessageInfo() == nil {
  397. ms.StoreMessageInfo(mi)
  398. }
  399. return ms
  400. }
  401. return mi.MessageOf(x)
  402. }
  403. // Deprecated: Use VacuumVolumeCommitRequest.ProtoReflect.Descriptor instead.
  404. func (*VacuumVolumeCommitRequest) Descriptor() ([]byte, []int) {
  405. return file_volume_server_proto_rawDescGZIP(), []int{8}
  406. }
  407. func (x *VacuumVolumeCommitRequest) GetVolumeId() uint32 {
  408. if x != nil {
  409. return x.VolumeId
  410. }
  411. return 0
  412. }
  413. type VacuumVolumeCommitResponse struct {
  414. state protoimpl.MessageState
  415. sizeCache protoimpl.SizeCache
  416. unknownFields protoimpl.UnknownFields
  417. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  418. VolumeSize uint64 `protobuf:"varint,2,opt,name=volume_size,json=volumeSize,proto3" json:"volume_size,omitempty"`
  419. }
  420. func (x *VacuumVolumeCommitResponse) Reset() {
  421. *x = VacuumVolumeCommitResponse{}
  422. if protoimpl.UnsafeEnabled {
  423. mi := &file_volume_server_proto_msgTypes[9]
  424. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  425. ms.StoreMessageInfo(mi)
  426. }
  427. }
  428. func (x *VacuumVolumeCommitResponse) String() string {
  429. return protoimpl.X.MessageStringOf(x)
  430. }
  431. func (*VacuumVolumeCommitResponse) ProtoMessage() {}
  432. func (x *VacuumVolumeCommitResponse) ProtoReflect() protoreflect.Message {
  433. mi := &file_volume_server_proto_msgTypes[9]
  434. if protoimpl.UnsafeEnabled && x != nil {
  435. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  436. if ms.LoadMessageInfo() == nil {
  437. ms.StoreMessageInfo(mi)
  438. }
  439. return ms
  440. }
  441. return mi.MessageOf(x)
  442. }
  443. // Deprecated: Use VacuumVolumeCommitResponse.ProtoReflect.Descriptor instead.
  444. func (*VacuumVolumeCommitResponse) Descriptor() ([]byte, []int) {
  445. return file_volume_server_proto_rawDescGZIP(), []int{9}
  446. }
  447. func (x *VacuumVolumeCommitResponse) GetIsReadOnly() bool {
  448. if x != nil {
  449. return x.IsReadOnly
  450. }
  451. return false
  452. }
  453. func (x *VacuumVolumeCommitResponse) GetVolumeSize() uint64 {
  454. if x != nil {
  455. return x.VolumeSize
  456. }
  457. return 0
  458. }
  459. type VacuumVolumeCleanupRequest struct {
  460. state protoimpl.MessageState
  461. sizeCache protoimpl.SizeCache
  462. unknownFields protoimpl.UnknownFields
  463. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  464. }
  465. func (x *VacuumVolumeCleanupRequest) Reset() {
  466. *x = VacuumVolumeCleanupRequest{}
  467. if protoimpl.UnsafeEnabled {
  468. mi := &file_volume_server_proto_msgTypes[10]
  469. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  470. ms.StoreMessageInfo(mi)
  471. }
  472. }
  473. func (x *VacuumVolumeCleanupRequest) String() string {
  474. return protoimpl.X.MessageStringOf(x)
  475. }
  476. func (*VacuumVolumeCleanupRequest) ProtoMessage() {}
  477. func (x *VacuumVolumeCleanupRequest) ProtoReflect() protoreflect.Message {
  478. mi := &file_volume_server_proto_msgTypes[10]
  479. if protoimpl.UnsafeEnabled && x != nil {
  480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  481. if ms.LoadMessageInfo() == nil {
  482. ms.StoreMessageInfo(mi)
  483. }
  484. return ms
  485. }
  486. return mi.MessageOf(x)
  487. }
  488. // Deprecated: Use VacuumVolumeCleanupRequest.ProtoReflect.Descriptor instead.
  489. func (*VacuumVolumeCleanupRequest) Descriptor() ([]byte, []int) {
  490. return file_volume_server_proto_rawDescGZIP(), []int{10}
  491. }
  492. func (x *VacuumVolumeCleanupRequest) GetVolumeId() uint32 {
  493. if x != nil {
  494. return x.VolumeId
  495. }
  496. return 0
  497. }
  498. type VacuumVolumeCleanupResponse struct {
  499. state protoimpl.MessageState
  500. sizeCache protoimpl.SizeCache
  501. unknownFields protoimpl.UnknownFields
  502. }
  503. func (x *VacuumVolumeCleanupResponse) Reset() {
  504. *x = VacuumVolumeCleanupResponse{}
  505. if protoimpl.UnsafeEnabled {
  506. mi := &file_volume_server_proto_msgTypes[11]
  507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  508. ms.StoreMessageInfo(mi)
  509. }
  510. }
  511. func (x *VacuumVolumeCleanupResponse) String() string {
  512. return protoimpl.X.MessageStringOf(x)
  513. }
  514. func (*VacuumVolumeCleanupResponse) ProtoMessage() {}
  515. func (x *VacuumVolumeCleanupResponse) ProtoReflect() protoreflect.Message {
  516. mi := &file_volume_server_proto_msgTypes[11]
  517. if protoimpl.UnsafeEnabled && x != nil {
  518. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  519. if ms.LoadMessageInfo() == nil {
  520. ms.StoreMessageInfo(mi)
  521. }
  522. return ms
  523. }
  524. return mi.MessageOf(x)
  525. }
  526. // Deprecated: Use VacuumVolumeCleanupResponse.ProtoReflect.Descriptor instead.
  527. func (*VacuumVolumeCleanupResponse) Descriptor() ([]byte, []int) {
  528. return file_volume_server_proto_rawDescGZIP(), []int{11}
  529. }
  530. type DeleteCollectionRequest struct {
  531. state protoimpl.MessageState
  532. sizeCache protoimpl.SizeCache
  533. unknownFields protoimpl.UnknownFields
  534. Collection string `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty"`
  535. }
  536. func (x *DeleteCollectionRequest) Reset() {
  537. *x = DeleteCollectionRequest{}
  538. if protoimpl.UnsafeEnabled {
  539. mi := &file_volume_server_proto_msgTypes[12]
  540. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  541. ms.StoreMessageInfo(mi)
  542. }
  543. }
  544. func (x *DeleteCollectionRequest) String() string {
  545. return protoimpl.X.MessageStringOf(x)
  546. }
  547. func (*DeleteCollectionRequest) ProtoMessage() {}
  548. func (x *DeleteCollectionRequest) ProtoReflect() protoreflect.Message {
  549. mi := &file_volume_server_proto_msgTypes[12]
  550. if protoimpl.UnsafeEnabled && x != nil {
  551. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  552. if ms.LoadMessageInfo() == nil {
  553. ms.StoreMessageInfo(mi)
  554. }
  555. return ms
  556. }
  557. return mi.MessageOf(x)
  558. }
  559. // Deprecated: Use DeleteCollectionRequest.ProtoReflect.Descriptor instead.
  560. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) {
  561. return file_volume_server_proto_rawDescGZIP(), []int{12}
  562. }
  563. func (x *DeleteCollectionRequest) GetCollection() string {
  564. if x != nil {
  565. return x.Collection
  566. }
  567. return ""
  568. }
  569. type DeleteCollectionResponse struct {
  570. state protoimpl.MessageState
  571. sizeCache protoimpl.SizeCache
  572. unknownFields protoimpl.UnknownFields
  573. }
  574. func (x *DeleteCollectionResponse) Reset() {
  575. *x = DeleteCollectionResponse{}
  576. if protoimpl.UnsafeEnabled {
  577. mi := &file_volume_server_proto_msgTypes[13]
  578. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  579. ms.StoreMessageInfo(mi)
  580. }
  581. }
  582. func (x *DeleteCollectionResponse) String() string {
  583. return protoimpl.X.MessageStringOf(x)
  584. }
  585. func (*DeleteCollectionResponse) ProtoMessage() {}
  586. func (x *DeleteCollectionResponse) ProtoReflect() protoreflect.Message {
  587. mi := &file_volume_server_proto_msgTypes[13]
  588. if protoimpl.UnsafeEnabled && x != nil {
  589. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  590. if ms.LoadMessageInfo() == nil {
  591. ms.StoreMessageInfo(mi)
  592. }
  593. return ms
  594. }
  595. return mi.MessageOf(x)
  596. }
  597. // Deprecated: Use DeleteCollectionResponse.ProtoReflect.Descriptor instead.
  598. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) {
  599. return file_volume_server_proto_rawDescGZIP(), []int{13}
  600. }
  601. type AllocateVolumeRequest struct {
  602. state protoimpl.MessageState
  603. sizeCache protoimpl.SizeCache
  604. unknownFields protoimpl.UnknownFields
  605. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  606. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  607. Preallocate int64 `protobuf:"varint,3,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  608. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  609. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  610. MemoryMapMaxSizeMb uint32 `protobuf:"varint,6,opt,name=memory_map_max_size_mb,json=memoryMapMaxSizeMb,proto3" json:"memory_map_max_size_mb,omitempty"`
  611. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  612. }
  613. func (x *AllocateVolumeRequest) Reset() {
  614. *x = AllocateVolumeRequest{}
  615. if protoimpl.UnsafeEnabled {
  616. mi := &file_volume_server_proto_msgTypes[14]
  617. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  618. ms.StoreMessageInfo(mi)
  619. }
  620. }
  621. func (x *AllocateVolumeRequest) String() string {
  622. return protoimpl.X.MessageStringOf(x)
  623. }
  624. func (*AllocateVolumeRequest) ProtoMessage() {}
  625. func (x *AllocateVolumeRequest) ProtoReflect() protoreflect.Message {
  626. mi := &file_volume_server_proto_msgTypes[14]
  627. if protoimpl.UnsafeEnabled && x != nil {
  628. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  629. if ms.LoadMessageInfo() == nil {
  630. ms.StoreMessageInfo(mi)
  631. }
  632. return ms
  633. }
  634. return mi.MessageOf(x)
  635. }
  636. // Deprecated: Use AllocateVolumeRequest.ProtoReflect.Descriptor instead.
  637. func (*AllocateVolumeRequest) Descriptor() ([]byte, []int) {
  638. return file_volume_server_proto_rawDescGZIP(), []int{14}
  639. }
  640. func (x *AllocateVolumeRequest) GetVolumeId() uint32 {
  641. if x != nil {
  642. return x.VolumeId
  643. }
  644. return 0
  645. }
  646. func (x *AllocateVolumeRequest) GetCollection() string {
  647. if x != nil {
  648. return x.Collection
  649. }
  650. return ""
  651. }
  652. func (x *AllocateVolumeRequest) GetPreallocate() int64 {
  653. if x != nil {
  654. return x.Preallocate
  655. }
  656. return 0
  657. }
  658. func (x *AllocateVolumeRequest) GetReplication() string {
  659. if x != nil {
  660. return x.Replication
  661. }
  662. return ""
  663. }
  664. func (x *AllocateVolumeRequest) GetTtl() string {
  665. if x != nil {
  666. return x.Ttl
  667. }
  668. return ""
  669. }
  670. func (x *AllocateVolumeRequest) GetMemoryMapMaxSizeMb() uint32 {
  671. if x != nil {
  672. return x.MemoryMapMaxSizeMb
  673. }
  674. return 0
  675. }
  676. func (x *AllocateVolumeRequest) GetDiskType() string {
  677. if x != nil {
  678. return x.DiskType
  679. }
  680. return ""
  681. }
  682. type AllocateVolumeResponse struct {
  683. state protoimpl.MessageState
  684. sizeCache protoimpl.SizeCache
  685. unknownFields protoimpl.UnknownFields
  686. }
  687. func (x *AllocateVolumeResponse) Reset() {
  688. *x = AllocateVolumeResponse{}
  689. if protoimpl.UnsafeEnabled {
  690. mi := &file_volume_server_proto_msgTypes[15]
  691. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  692. ms.StoreMessageInfo(mi)
  693. }
  694. }
  695. func (x *AllocateVolumeResponse) String() string {
  696. return protoimpl.X.MessageStringOf(x)
  697. }
  698. func (*AllocateVolumeResponse) ProtoMessage() {}
  699. func (x *AllocateVolumeResponse) ProtoReflect() protoreflect.Message {
  700. mi := &file_volume_server_proto_msgTypes[15]
  701. if protoimpl.UnsafeEnabled && x != nil {
  702. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  703. if ms.LoadMessageInfo() == nil {
  704. ms.StoreMessageInfo(mi)
  705. }
  706. return ms
  707. }
  708. return mi.MessageOf(x)
  709. }
  710. // Deprecated: Use AllocateVolumeResponse.ProtoReflect.Descriptor instead.
  711. func (*AllocateVolumeResponse) Descriptor() ([]byte, []int) {
  712. return file_volume_server_proto_rawDescGZIP(), []int{15}
  713. }
  714. type VolumeSyncStatusRequest struct {
  715. state protoimpl.MessageState
  716. sizeCache protoimpl.SizeCache
  717. unknownFields protoimpl.UnknownFields
  718. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  719. }
  720. func (x *VolumeSyncStatusRequest) Reset() {
  721. *x = VolumeSyncStatusRequest{}
  722. if protoimpl.UnsafeEnabled {
  723. mi := &file_volume_server_proto_msgTypes[16]
  724. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  725. ms.StoreMessageInfo(mi)
  726. }
  727. }
  728. func (x *VolumeSyncStatusRequest) String() string {
  729. return protoimpl.X.MessageStringOf(x)
  730. }
  731. func (*VolumeSyncStatusRequest) ProtoMessage() {}
  732. func (x *VolumeSyncStatusRequest) ProtoReflect() protoreflect.Message {
  733. mi := &file_volume_server_proto_msgTypes[16]
  734. if protoimpl.UnsafeEnabled && x != nil {
  735. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  736. if ms.LoadMessageInfo() == nil {
  737. ms.StoreMessageInfo(mi)
  738. }
  739. return ms
  740. }
  741. return mi.MessageOf(x)
  742. }
  743. // Deprecated: Use VolumeSyncStatusRequest.ProtoReflect.Descriptor instead.
  744. func (*VolumeSyncStatusRequest) Descriptor() ([]byte, []int) {
  745. return file_volume_server_proto_rawDescGZIP(), []int{16}
  746. }
  747. func (x *VolumeSyncStatusRequest) GetVolumeId() uint32 {
  748. if x != nil {
  749. return x.VolumeId
  750. }
  751. return 0
  752. }
  753. type VolumeSyncStatusResponse struct {
  754. state protoimpl.MessageState
  755. sizeCache protoimpl.SizeCache
  756. unknownFields protoimpl.UnknownFields
  757. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  758. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  759. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  760. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  761. TailOffset uint64 `protobuf:"varint,6,opt,name=tail_offset,json=tailOffset,proto3" json:"tail_offset,omitempty"`
  762. CompactRevision uint32 `protobuf:"varint,7,opt,name=compact_revision,json=compactRevision,proto3" json:"compact_revision,omitempty"`
  763. IdxFileSize uint64 `protobuf:"varint,8,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  764. }
  765. func (x *VolumeSyncStatusResponse) Reset() {
  766. *x = VolumeSyncStatusResponse{}
  767. if protoimpl.UnsafeEnabled {
  768. mi := &file_volume_server_proto_msgTypes[17]
  769. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  770. ms.StoreMessageInfo(mi)
  771. }
  772. }
  773. func (x *VolumeSyncStatusResponse) String() string {
  774. return protoimpl.X.MessageStringOf(x)
  775. }
  776. func (*VolumeSyncStatusResponse) ProtoMessage() {}
  777. func (x *VolumeSyncStatusResponse) ProtoReflect() protoreflect.Message {
  778. mi := &file_volume_server_proto_msgTypes[17]
  779. if protoimpl.UnsafeEnabled && x != nil {
  780. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  781. if ms.LoadMessageInfo() == nil {
  782. ms.StoreMessageInfo(mi)
  783. }
  784. return ms
  785. }
  786. return mi.MessageOf(x)
  787. }
  788. // Deprecated: Use VolumeSyncStatusResponse.ProtoReflect.Descriptor instead.
  789. func (*VolumeSyncStatusResponse) Descriptor() ([]byte, []int) {
  790. return file_volume_server_proto_rawDescGZIP(), []int{17}
  791. }
  792. func (x *VolumeSyncStatusResponse) GetVolumeId() uint32 {
  793. if x != nil {
  794. return x.VolumeId
  795. }
  796. return 0
  797. }
  798. func (x *VolumeSyncStatusResponse) GetCollection() string {
  799. if x != nil {
  800. return x.Collection
  801. }
  802. return ""
  803. }
  804. func (x *VolumeSyncStatusResponse) GetReplication() string {
  805. if x != nil {
  806. return x.Replication
  807. }
  808. return ""
  809. }
  810. func (x *VolumeSyncStatusResponse) GetTtl() string {
  811. if x != nil {
  812. return x.Ttl
  813. }
  814. return ""
  815. }
  816. func (x *VolumeSyncStatusResponse) GetTailOffset() uint64 {
  817. if x != nil {
  818. return x.TailOffset
  819. }
  820. return 0
  821. }
  822. func (x *VolumeSyncStatusResponse) GetCompactRevision() uint32 {
  823. if x != nil {
  824. return x.CompactRevision
  825. }
  826. return 0
  827. }
  828. func (x *VolumeSyncStatusResponse) GetIdxFileSize() uint64 {
  829. if x != nil {
  830. return x.IdxFileSize
  831. }
  832. return 0
  833. }
  834. type VolumeIncrementalCopyRequest struct {
  835. state protoimpl.MessageState
  836. sizeCache protoimpl.SizeCache
  837. unknownFields protoimpl.UnknownFields
  838. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  839. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  840. }
  841. func (x *VolumeIncrementalCopyRequest) Reset() {
  842. *x = VolumeIncrementalCopyRequest{}
  843. if protoimpl.UnsafeEnabled {
  844. mi := &file_volume_server_proto_msgTypes[18]
  845. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  846. ms.StoreMessageInfo(mi)
  847. }
  848. }
  849. func (x *VolumeIncrementalCopyRequest) String() string {
  850. return protoimpl.X.MessageStringOf(x)
  851. }
  852. func (*VolumeIncrementalCopyRequest) ProtoMessage() {}
  853. func (x *VolumeIncrementalCopyRequest) ProtoReflect() protoreflect.Message {
  854. mi := &file_volume_server_proto_msgTypes[18]
  855. if protoimpl.UnsafeEnabled && x != nil {
  856. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  857. if ms.LoadMessageInfo() == nil {
  858. ms.StoreMessageInfo(mi)
  859. }
  860. return ms
  861. }
  862. return mi.MessageOf(x)
  863. }
  864. // Deprecated: Use VolumeIncrementalCopyRequest.ProtoReflect.Descriptor instead.
  865. func (*VolumeIncrementalCopyRequest) Descriptor() ([]byte, []int) {
  866. return file_volume_server_proto_rawDescGZIP(), []int{18}
  867. }
  868. func (x *VolumeIncrementalCopyRequest) GetVolumeId() uint32 {
  869. if x != nil {
  870. return x.VolumeId
  871. }
  872. return 0
  873. }
  874. func (x *VolumeIncrementalCopyRequest) GetSinceNs() uint64 {
  875. if x != nil {
  876. return x.SinceNs
  877. }
  878. return 0
  879. }
  880. type VolumeIncrementalCopyResponse struct {
  881. state protoimpl.MessageState
  882. sizeCache protoimpl.SizeCache
  883. unknownFields protoimpl.UnknownFields
  884. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  885. }
  886. func (x *VolumeIncrementalCopyResponse) Reset() {
  887. *x = VolumeIncrementalCopyResponse{}
  888. if protoimpl.UnsafeEnabled {
  889. mi := &file_volume_server_proto_msgTypes[19]
  890. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  891. ms.StoreMessageInfo(mi)
  892. }
  893. }
  894. func (x *VolumeIncrementalCopyResponse) String() string {
  895. return protoimpl.X.MessageStringOf(x)
  896. }
  897. func (*VolumeIncrementalCopyResponse) ProtoMessage() {}
  898. func (x *VolumeIncrementalCopyResponse) ProtoReflect() protoreflect.Message {
  899. mi := &file_volume_server_proto_msgTypes[19]
  900. if protoimpl.UnsafeEnabled && x != nil {
  901. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  902. if ms.LoadMessageInfo() == nil {
  903. ms.StoreMessageInfo(mi)
  904. }
  905. return ms
  906. }
  907. return mi.MessageOf(x)
  908. }
  909. // Deprecated: Use VolumeIncrementalCopyResponse.ProtoReflect.Descriptor instead.
  910. func (*VolumeIncrementalCopyResponse) Descriptor() ([]byte, []int) {
  911. return file_volume_server_proto_rawDescGZIP(), []int{19}
  912. }
  913. func (x *VolumeIncrementalCopyResponse) GetFileContent() []byte {
  914. if x != nil {
  915. return x.FileContent
  916. }
  917. return nil
  918. }
  919. type VolumeMountRequest struct {
  920. state protoimpl.MessageState
  921. sizeCache protoimpl.SizeCache
  922. unknownFields protoimpl.UnknownFields
  923. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  924. }
  925. func (x *VolumeMountRequest) Reset() {
  926. *x = VolumeMountRequest{}
  927. if protoimpl.UnsafeEnabled {
  928. mi := &file_volume_server_proto_msgTypes[20]
  929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  930. ms.StoreMessageInfo(mi)
  931. }
  932. }
  933. func (x *VolumeMountRequest) String() string {
  934. return protoimpl.X.MessageStringOf(x)
  935. }
  936. func (*VolumeMountRequest) ProtoMessage() {}
  937. func (x *VolumeMountRequest) ProtoReflect() protoreflect.Message {
  938. mi := &file_volume_server_proto_msgTypes[20]
  939. if protoimpl.UnsafeEnabled && x != nil {
  940. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  941. if ms.LoadMessageInfo() == nil {
  942. ms.StoreMessageInfo(mi)
  943. }
  944. return ms
  945. }
  946. return mi.MessageOf(x)
  947. }
  948. // Deprecated: Use VolumeMountRequest.ProtoReflect.Descriptor instead.
  949. func (*VolumeMountRequest) Descriptor() ([]byte, []int) {
  950. return file_volume_server_proto_rawDescGZIP(), []int{20}
  951. }
  952. func (x *VolumeMountRequest) GetVolumeId() uint32 {
  953. if x != nil {
  954. return x.VolumeId
  955. }
  956. return 0
  957. }
  958. type VolumeMountResponse struct {
  959. state protoimpl.MessageState
  960. sizeCache protoimpl.SizeCache
  961. unknownFields protoimpl.UnknownFields
  962. }
  963. func (x *VolumeMountResponse) Reset() {
  964. *x = VolumeMountResponse{}
  965. if protoimpl.UnsafeEnabled {
  966. mi := &file_volume_server_proto_msgTypes[21]
  967. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  968. ms.StoreMessageInfo(mi)
  969. }
  970. }
  971. func (x *VolumeMountResponse) String() string {
  972. return protoimpl.X.MessageStringOf(x)
  973. }
  974. func (*VolumeMountResponse) ProtoMessage() {}
  975. func (x *VolumeMountResponse) ProtoReflect() protoreflect.Message {
  976. mi := &file_volume_server_proto_msgTypes[21]
  977. if protoimpl.UnsafeEnabled && x != nil {
  978. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  979. if ms.LoadMessageInfo() == nil {
  980. ms.StoreMessageInfo(mi)
  981. }
  982. return ms
  983. }
  984. return mi.MessageOf(x)
  985. }
  986. // Deprecated: Use VolumeMountResponse.ProtoReflect.Descriptor instead.
  987. func (*VolumeMountResponse) Descriptor() ([]byte, []int) {
  988. return file_volume_server_proto_rawDescGZIP(), []int{21}
  989. }
  990. type VolumeUnmountRequest struct {
  991. state protoimpl.MessageState
  992. sizeCache protoimpl.SizeCache
  993. unknownFields protoimpl.UnknownFields
  994. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  995. }
  996. func (x *VolumeUnmountRequest) Reset() {
  997. *x = VolumeUnmountRequest{}
  998. if protoimpl.UnsafeEnabled {
  999. mi := &file_volume_server_proto_msgTypes[22]
  1000. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1001. ms.StoreMessageInfo(mi)
  1002. }
  1003. }
  1004. func (x *VolumeUnmountRequest) String() string {
  1005. return protoimpl.X.MessageStringOf(x)
  1006. }
  1007. func (*VolumeUnmountRequest) ProtoMessage() {}
  1008. func (x *VolumeUnmountRequest) ProtoReflect() protoreflect.Message {
  1009. mi := &file_volume_server_proto_msgTypes[22]
  1010. if protoimpl.UnsafeEnabled && x != nil {
  1011. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1012. if ms.LoadMessageInfo() == nil {
  1013. ms.StoreMessageInfo(mi)
  1014. }
  1015. return ms
  1016. }
  1017. return mi.MessageOf(x)
  1018. }
  1019. // Deprecated: Use VolumeUnmountRequest.ProtoReflect.Descriptor instead.
  1020. func (*VolumeUnmountRequest) Descriptor() ([]byte, []int) {
  1021. return file_volume_server_proto_rawDescGZIP(), []int{22}
  1022. }
  1023. func (x *VolumeUnmountRequest) GetVolumeId() uint32 {
  1024. if x != nil {
  1025. return x.VolumeId
  1026. }
  1027. return 0
  1028. }
  1029. type VolumeUnmountResponse struct {
  1030. state protoimpl.MessageState
  1031. sizeCache protoimpl.SizeCache
  1032. unknownFields protoimpl.UnknownFields
  1033. }
  1034. func (x *VolumeUnmountResponse) Reset() {
  1035. *x = VolumeUnmountResponse{}
  1036. if protoimpl.UnsafeEnabled {
  1037. mi := &file_volume_server_proto_msgTypes[23]
  1038. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1039. ms.StoreMessageInfo(mi)
  1040. }
  1041. }
  1042. func (x *VolumeUnmountResponse) String() string {
  1043. return protoimpl.X.MessageStringOf(x)
  1044. }
  1045. func (*VolumeUnmountResponse) ProtoMessage() {}
  1046. func (x *VolumeUnmountResponse) ProtoReflect() protoreflect.Message {
  1047. mi := &file_volume_server_proto_msgTypes[23]
  1048. if protoimpl.UnsafeEnabled && x != nil {
  1049. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1050. if ms.LoadMessageInfo() == nil {
  1051. ms.StoreMessageInfo(mi)
  1052. }
  1053. return ms
  1054. }
  1055. return mi.MessageOf(x)
  1056. }
  1057. // Deprecated: Use VolumeUnmountResponse.ProtoReflect.Descriptor instead.
  1058. func (*VolumeUnmountResponse) Descriptor() ([]byte, []int) {
  1059. return file_volume_server_proto_rawDescGZIP(), []int{23}
  1060. }
  1061. type VolumeDeleteRequest struct {
  1062. state protoimpl.MessageState
  1063. sizeCache protoimpl.SizeCache
  1064. unknownFields protoimpl.UnknownFields
  1065. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1066. OnlyEmpty bool `protobuf:"varint,2,opt,name=only_empty,json=onlyEmpty,proto3" json:"only_empty,omitempty"`
  1067. }
  1068. func (x *VolumeDeleteRequest) Reset() {
  1069. *x = VolumeDeleteRequest{}
  1070. if protoimpl.UnsafeEnabled {
  1071. mi := &file_volume_server_proto_msgTypes[24]
  1072. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1073. ms.StoreMessageInfo(mi)
  1074. }
  1075. }
  1076. func (x *VolumeDeleteRequest) String() string {
  1077. return protoimpl.X.MessageStringOf(x)
  1078. }
  1079. func (*VolumeDeleteRequest) ProtoMessage() {}
  1080. func (x *VolumeDeleteRequest) ProtoReflect() protoreflect.Message {
  1081. mi := &file_volume_server_proto_msgTypes[24]
  1082. if protoimpl.UnsafeEnabled && x != nil {
  1083. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1084. if ms.LoadMessageInfo() == nil {
  1085. ms.StoreMessageInfo(mi)
  1086. }
  1087. return ms
  1088. }
  1089. return mi.MessageOf(x)
  1090. }
  1091. // Deprecated: Use VolumeDeleteRequest.ProtoReflect.Descriptor instead.
  1092. func (*VolumeDeleteRequest) Descriptor() ([]byte, []int) {
  1093. return file_volume_server_proto_rawDescGZIP(), []int{24}
  1094. }
  1095. func (x *VolumeDeleteRequest) GetVolumeId() uint32 {
  1096. if x != nil {
  1097. return x.VolumeId
  1098. }
  1099. return 0
  1100. }
  1101. func (x *VolumeDeleteRequest) GetOnlyEmpty() bool {
  1102. if x != nil {
  1103. return x.OnlyEmpty
  1104. }
  1105. return false
  1106. }
  1107. type VolumeDeleteResponse struct {
  1108. state protoimpl.MessageState
  1109. sizeCache protoimpl.SizeCache
  1110. unknownFields protoimpl.UnknownFields
  1111. }
  1112. func (x *VolumeDeleteResponse) Reset() {
  1113. *x = VolumeDeleteResponse{}
  1114. if protoimpl.UnsafeEnabled {
  1115. mi := &file_volume_server_proto_msgTypes[25]
  1116. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1117. ms.StoreMessageInfo(mi)
  1118. }
  1119. }
  1120. func (x *VolumeDeleteResponse) String() string {
  1121. return protoimpl.X.MessageStringOf(x)
  1122. }
  1123. func (*VolumeDeleteResponse) ProtoMessage() {}
  1124. func (x *VolumeDeleteResponse) ProtoReflect() protoreflect.Message {
  1125. mi := &file_volume_server_proto_msgTypes[25]
  1126. if protoimpl.UnsafeEnabled && x != nil {
  1127. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1128. if ms.LoadMessageInfo() == nil {
  1129. ms.StoreMessageInfo(mi)
  1130. }
  1131. return ms
  1132. }
  1133. return mi.MessageOf(x)
  1134. }
  1135. // Deprecated: Use VolumeDeleteResponse.ProtoReflect.Descriptor instead.
  1136. func (*VolumeDeleteResponse) Descriptor() ([]byte, []int) {
  1137. return file_volume_server_proto_rawDescGZIP(), []int{25}
  1138. }
  1139. type VolumeMarkReadonlyRequest struct {
  1140. state protoimpl.MessageState
  1141. sizeCache protoimpl.SizeCache
  1142. unknownFields protoimpl.UnknownFields
  1143. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1144. Persist bool `protobuf:"varint,2,opt,name=persist,proto3" json:"persist,omitempty"`
  1145. }
  1146. func (x *VolumeMarkReadonlyRequest) Reset() {
  1147. *x = VolumeMarkReadonlyRequest{}
  1148. if protoimpl.UnsafeEnabled {
  1149. mi := &file_volume_server_proto_msgTypes[26]
  1150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1151. ms.StoreMessageInfo(mi)
  1152. }
  1153. }
  1154. func (x *VolumeMarkReadonlyRequest) String() string {
  1155. return protoimpl.X.MessageStringOf(x)
  1156. }
  1157. func (*VolumeMarkReadonlyRequest) ProtoMessage() {}
  1158. func (x *VolumeMarkReadonlyRequest) ProtoReflect() protoreflect.Message {
  1159. mi := &file_volume_server_proto_msgTypes[26]
  1160. if protoimpl.UnsafeEnabled && x != nil {
  1161. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1162. if ms.LoadMessageInfo() == nil {
  1163. ms.StoreMessageInfo(mi)
  1164. }
  1165. return ms
  1166. }
  1167. return mi.MessageOf(x)
  1168. }
  1169. // Deprecated: Use VolumeMarkReadonlyRequest.ProtoReflect.Descriptor instead.
  1170. func (*VolumeMarkReadonlyRequest) Descriptor() ([]byte, []int) {
  1171. return file_volume_server_proto_rawDescGZIP(), []int{26}
  1172. }
  1173. func (x *VolumeMarkReadonlyRequest) GetVolumeId() uint32 {
  1174. if x != nil {
  1175. return x.VolumeId
  1176. }
  1177. return 0
  1178. }
  1179. func (x *VolumeMarkReadonlyRequest) GetPersist() bool {
  1180. if x != nil {
  1181. return x.Persist
  1182. }
  1183. return false
  1184. }
  1185. type VolumeMarkReadonlyResponse struct {
  1186. state protoimpl.MessageState
  1187. sizeCache protoimpl.SizeCache
  1188. unknownFields protoimpl.UnknownFields
  1189. }
  1190. func (x *VolumeMarkReadonlyResponse) Reset() {
  1191. *x = VolumeMarkReadonlyResponse{}
  1192. if protoimpl.UnsafeEnabled {
  1193. mi := &file_volume_server_proto_msgTypes[27]
  1194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1195. ms.StoreMessageInfo(mi)
  1196. }
  1197. }
  1198. func (x *VolumeMarkReadonlyResponse) String() string {
  1199. return protoimpl.X.MessageStringOf(x)
  1200. }
  1201. func (*VolumeMarkReadonlyResponse) ProtoMessage() {}
  1202. func (x *VolumeMarkReadonlyResponse) ProtoReflect() protoreflect.Message {
  1203. mi := &file_volume_server_proto_msgTypes[27]
  1204. if protoimpl.UnsafeEnabled && x != nil {
  1205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1206. if ms.LoadMessageInfo() == nil {
  1207. ms.StoreMessageInfo(mi)
  1208. }
  1209. return ms
  1210. }
  1211. return mi.MessageOf(x)
  1212. }
  1213. // Deprecated: Use VolumeMarkReadonlyResponse.ProtoReflect.Descriptor instead.
  1214. func (*VolumeMarkReadonlyResponse) Descriptor() ([]byte, []int) {
  1215. return file_volume_server_proto_rawDescGZIP(), []int{27}
  1216. }
  1217. type VolumeMarkWritableRequest struct {
  1218. state protoimpl.MessageState
  1219. sizeCache protoimpl.SizeCache
  1220. unknownFields protoimpl.UnknownFields
  1221. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1222. }
  1223. func (x *VolumeMarkWritableRequest) Reset() {
  1224. *x = VolumeMarkWritableRequest{}
  1225. if protoimpl.UnsafeEnabled {
  1226. mi := &file_volume_server_proto_msgTypes[28]
  1227. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1228. ms.StoreMessageInfo(mi)
  1229. }
  1230. }
  1231. func (x *VolumeMarkWritableRequest) String() string {
  1232. return protoimpl.X.MessageStringOf(x)
  1233. }
  1234. func (*VolumeMarkWritableRequest) ProtoMessage() {}
  1235. func (x *VolumeMarkWritableRequest) ProtoReflect() protoreflect.Message {
  1236. mi := &file_volume_server_proto_msgTypes[28]
  1237. if protoimpl.UnsafeEnabled && x != nil {
  1238. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1239. if ms.LoadMessageInfo() == nil {
  1240. ms.StoreMessageInfo(mi)
  1241. }
  1242. return ms
  1243. }
  1244. return mi.MessageOf(x)
  1245. }
  1246. // Deprecated: Use VolumeMarkWritableRequest.ProtoReflect.Descriptor instead.
  1247. func (*VolumeMarkWritableRequest) Descriptor() ([]byte, []int) {
  1248. return file_volume_server_proto_rawDescGZIP(), []int{28}
  1249. }
  1250. func (x *VolumeMarkWritableRequest) GetVolumeId() uint32 {
  1251. if x != nil {
  1252. return x.VolumeId
  1253. }
  1254. return 0
  1255. }
  1256. type VolumeMarkWritableResponse struct {
  1257. state protoimpl.MessageState
  1258. sizeCache protoimpl.SizeCache
  1259. unknownFields protoimpl.UnknownFields
  1260. }
  1261. func (x *VolumeMarkWritableResponse) Reset() {
  1262. *x = VolumeMarkWritableResponse{}
  1263. if protoimpl.UnsafeEnabled {
  1264. mi := &file_volume_server_proto_msgTypes[29]
  1265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1266. ms.StoreMessageInfo(mi)
  1267. }
  1268. }
  1269. func (x *VolumeMarkWritableResponse) String() string {
  1270. return protoimpl.X.MessageStringOf(x)
  1271. }
  1272. func (*VolumeMarkWritableResponse) ProtoMessage() {}
  1273. func (x *VolumeMarkWritableResponse) ProtoReflect() protoreflect.Message {
  1274. mi := &file_volume_server_proto_msgTypes[29]
  1275. if protoimpl.UnsafeEnabled && x != nil {
  1276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1277. if ms.LoadMessageInfo() == nil {
  1278. ms.StoreMessageInfo(mi)
  1279. }
  1280. return ms
  1281. }
  1282. return mi.MessageOf(x)
  1283. }
  1284. // Deprecated: Use VolumeMarkWritableResponse.ProtoReflect.Descriptor instead.
  1285. func (*VolumeMarkWritableResponse) Descriptor() ([]byte, []int) {
  1286. return file_volume_server_proto_rawDescGZIP(), []int{29}
  1287. }
  1288. type VolumeConfigureRequest struct {
  1289. state protoimpl.MessageState
  1290. sizeCache protoimpl.SizeCache
  1291. unknownFields protoimpl.UnknownFields
  1292. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1293. Replication string `protobuf:"bytes,2,opt,name=replication,proto3" json:"replication,omitempty"`
  1294. }
  1295. func (x *VolumeConfigureRequest) Reset() {
  1296. *x = VolumeConfigureRequest{}
  1297. if protoimpl.UnsafeEnabled {
  1298. mi := &file_volume_server_proto_msgTypes[30]
  1299. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1300. ms.StoreMessageInfo(mi)
  1301. }
  1302. }
  1303. func (x *VolumeConfigureRequest) String() string {
  1304. return protoimpl.X.MessageStringOf(x)
  1305. }
  1306. func (*VolumeConfigureRequest) ProtoMessage() {}
  1307. func (x *VolumeConfigureRequest) ProtoReflect() protoreflect.Message {
  1308. mi := &file_volume_server_proto_msgTypes[30]
  1309. if protoimpl.UnsafeEnabled && x != nil {
  1310. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1311. if ms.LoadMessageInfo() == nil {
  1312. ms.StoreMessageInfo(mi)
  1313. }
  1314. return ms
  1315. }
  1316. return mi.MessageOf(x)
  1317. }
  1318. // Deprecated: Use VolumeConfigureRequest.ProtoReflect.Descriptor instead.
  1319. func (*VolumeConfigureRequest) Descriptor() ([]byte, []int) {
  1320. return file_volume_server_proto_rawDescGZIP(), []int{30}
  1321. }
  1322. func (x *VolumeConfigureRequest) GetVolumeId() uint32 {
  1323. if x != nil {
  1324. return x.VolumeId
  1325. }
  1326. return 0
  1327. }
  1328. func (x *VolumeConfigureRequest) GetReplication() string {
  1329. if x != nil {
  1330. return x.Replication
  1331. }
  1332. return ""
  1333. }
  1334. type VolumeConfigureResponse struct {
  1335. state protoimpl.MessageState
  1336. sizeCache protoimpl.SizeCache
  1337. unknownFields protoimpl.UnknownFields
  1338. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  1339. }
  1340. func (x *VolumeConfigureResponse) Reset() {
  1341. *x = VolumeConfigureResponse{}
  1342. if protoimpl.UnsafeEnabled {
  1343. mi := &file_volume_server_proto_msgTypes[31]
  1344. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1345. ms.StoreMessageInfo(mi)
  1346. }
  1347. }
  1348. func (x *VolumeConfigureResponse) String() string {
  1349. return protoimpl.X.MessageStringOf(x)
  1350. }
  1351. func (*VolumeConfigureResponse) ProtoMessage() {}
  1352. func (x *VolumeConfigureResponse) ProtoReflect() protoreflect.Message {
  1353. mi := &file_volume_server_proto_msgTypes[31]
  1354. if protoimpl.UnsafeEnabled && x != nil {
  1355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1356. if ms.LoadMessageInfo() == nil {
  1357. ms.StoreMessageInfo(mi)
  1358. }
  1359. return ms
  1360. }
  1361. return mi.MessageOf(x)
  1362. }
  1363. // Deprecated: Use VolumeConfigureResponse.ProtoReflect.Descriptor instead.
  1364. func (*VolumeConfigureResponse) Descriptor() ([]byte, []int) {
  1365. return file_volume_server_proto_rawDescGZIP(), []int{31}
  1366. }
  1367. func (x *VolumeConfigureResponse) GetError() string {
  1368. if x != nil {
  1369. return x.Error
  1370. }
  1371. return ""
  1372. }
  1373. type VolumeStatusRequest struct {
  1374. state protoimpl.MessageState
  1375. sizeCache protoimpl.SizeCache
  1376. unknownFields protoimpl.UnknownFields
  1377. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1378. }
  1379. func (x *VolumeStatusRequest) Reset() {
  1380. *x = VolumeStatusRequest{}
  1381. if protoimpl.UnsafeEnabled {
  1382. mi := &file_volume_server_proto_msgTypes[32]
  1383. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1384. ms.StoreMessageInfo(mi)
  1385. }
  1386. }
  1387. func (x *VolumeStatusRequest) String() string {
  1388. return protoimpl.X.MessageStringOf(x)
  1389. }
  1390. func (*VolumeStatusRequest) ProtoMessage() {}
  1391. func (x *VolumeStatusRequest) ProtoReflect() protoreflect.Message {
  1392. mi := &file_volume_server_proto_msgTypes[32]
  1393. if protoimpl.UnsafeEnabled && x != nil {
  1394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1395. if ms.LoadMessageInfo() == nil {
  1396. ms.StoreMessageInfo(mi)
  1397. }
  1398. return ms
  1399. }
  1400. return mi.MessageOf(x)
  1401. }
  1402. // Deprecated: Use VolumeStatusRequest.ProtoReflect.Descriptor instead.
  1403. func (*VolumeStatusRequest) Descriptor() ([]byte, []int) {
  1404. return file_volume_server_proto_rawDescGZIP(), []int{32}
  1405. }
  1406. func (x *VolumeStatusRequest) GetVolumeId() uint32 {
  1407. if x != nil {
  1408. return x.VolumeId
  1409. }
  1410. return 0
  1411. }
  1412. type VolumeStatusResponse struct {
  1413. state protoimpl.MessageState
  1414. sizeCache protoimpl.SizeCache
  1415. unknownFields protoimpl.UnknownFields
  1416. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  1417. VolumeSize uint64 `protobuf:"varint,2,opt,name=volume_size,json=volumeSize,proto3" json:"volume_size,omitempty"`
  1418. FileCount uint64 `protobuf:"varint,3,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  1419. FileDeletedCount uint64 `protobuf:"varint,4,opt,name=file_deleted_count,json=fileDeletedCount,proto3" json:"file_deleted_count,omitempty"`
  1420. }
  1421. func (x *VolumeStatusResponse) Reset() {
  1422. *x = VolumeStatusResponse{}
  1423. if protoimpl.UnsafeEnabled {
  1424. mi := &file_volume_server_proto_msgTypes[33]
  1425. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1426. ms.StoreMessageInfo(mi)
  1427. }
  1428. }
  1429. func (x *VolumeStatusResponse) String() string {
  1430. return protoimpl.X.MessageStringOf(x)
  1431. }
  1432. func (*VolumeStatusResponse) ProtoMessage() {}
  1433. func (x *VolumeStatusResponse) ProtoReflect() protoreflect.Message {
  1434. mi := &file_volume_server_proto_msgTypes[33]
  1435. if protoimpl.UnsafeEnabled && x != nil {
  1436. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1437. if ms.LoadMessageInfo() == nil {
  1438. ms.StoreMessageInfo(mi)
  1439. }
  1440. return ms
  1441. }
  1442. return mi.MessageOf(x)
  1443. }
  1444. // Deprecated: Use VolumeStatusResponse.ProtoReflect.Descriptor instead.
  1445. func (*VolumeStatusResponse) Descriptor() ([]byte, []int) {
  1446. return file_volume_server_proto_rawDescGZIP(), []int{33}
  1447. }
  1448. func (x *VolumeStatusResponse) GetIsReadOnly() bool {
  1449. if x != nil {
  1450. return x.IsReadOnly
  1451. }
  1452. return false
  1453. }
  1454. func (x *VolumeStatusResponse) GetVolumeSize() uint64 {
  1455. if x != nil {
  1456. return x.VolumeSize
  1457. }
  1458. return 0
  1459. }
  1460. func (x *VolumeStatusResponse) GetFileCount() uint64 {
  1461. if x != nil {
  1462. return x.FileCount
  1463. }
  1464. return 0
  1465. }
  1466. func (x *VolumeStatusResponse) GetFileDeletedCount() uint64 {
  1467. if x != nil {
  1468. return x.FileDeletedCount
  1469. }
  1470. return 0
  1471. }
  1472. type VolumeCopyRequest struct {
  1473. state protoimpl.MessageState
  1474. sizeCache protoimpl.SizeCache
  1475. unknownFields protoimpl.UnknownFields
  1476. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1477. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1478. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  1479. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1480. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  1481. DiskType string `protobuf:"bytes,6,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  1482. IoBytePerSecond int64 `protobuf:"varint,7,opt,name=io_byte_per_second,json=ioBytePerSecond,proto3" json:"io_byte_per_second,omitempty"`
  1483. }
  1484. func (x *VolumeCopyRequest) Reset() {
  1485. *x = VolumeCopyRequest{}
  1486. if protoimpl.UnsafeEnabled {
  1487. mi := &file_volume_server_proto_msgTypes[34]
  1488. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1489. ms.StoreMessageInfo(mi)
  1490. }
  1491. }
  1492. func (x *VolumeCopyRequest) String() string {
  1493. return protoimpl.X.MessageStringOf(x)
  1494. }
  1495. func (*VolumeCopyRequest) ProtoMessage() {}
  1496. func (x *VolumeCopyRequest) ProtoReflect() protoreflect.Message {
  1497. mi := &file_volume_server_proto_msgTypes[34]
  1498. if protoimpl.UnsafeEnabled && x != nil {
  1499. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1500. if ms.LoadMessageInfo() == nil {
  1501. ms.StoreMessageInfo(mi)
  1502. }
  1503. return ms
  1504. }
  1505. return mi.MessageOf(x)
  1506. }
  1507. // Deprecated: Use VolumeCopyRequest.ProtoReflect.Descriptor instead.
  1508. func (*VolumeCopyRequest) Descriptor() ([]byte, []int) {
  1509. return file_volume_server_proto_rawDescGZIP(), []int{34}
  1510. }
  1511. func (x *VolumeCopyRequest) GetVolumeId() uint32 {
  1512. if x != nil {
  1513. return x.VolumeId
  1514. }
  1515. return 0
  1516. }
  1517. func (x *VolumeCopyRequest) GetCollection() string {
  1518. if x != nil {
  1519. return x.Collection
  1520. }
  1521. return ""
  1522. }
  1523. func (x *VolumeCopyRequest) GetReplication() string {
  1524. if x != nil {
  1525. return x.Replication
  1526. }
  1527. return ""
  1528. }
  1529. func (x *VolumeCopyRequest) GetTtl() string {
  1530. if x != nil {
  1531. return x.Ttl
  1532. }
  1533. return ""
  1534. }
  1535. func (x *VolumeCopyRequest) GetSourceDataNode() string {
  1536. if x != nil {
  1537. return x.SourceDataNode
  1538. }
  1539. return ""
  1540. }
  1541. func (x *VolumeCopyRequest) GetDiskType() string {
  1542. if x != nil {
  1543. return x.DiskType
  1544. }
  1545. return ""
  1546. }
  1547. func (x *VolumeCopyRequest) GetIoBytePerSecond() int64 {
  1548. if x != nil {
  1549. return x.IoBytePerSecond
  1550. }
  1551. return 0
  1552. }
  1553. type VolumeCopyResponse struct {
  1554. state protoimpl.MessageState
  1555. sizeCache protoimpl.SizeCache
  1556. unknownFields protoimpl.UnknownFields
  1557. LastAppendAtNs uint64 `protobuf:"varint,1,opt,name=last_append_at_ns,json=lastAppendAtNs,proto3" json:"last_append_at_ns,omitempty"`
  1558. ProcessedBytes int64 `protobuf:"varint,2,opt,name=processed_bytes,json=processedBytes,proto3" json:"processed_bytes,omitempty"`
  1559. }
  1560. func (x *VolumeCopyResponse) Reset() {
  1561. *x = VolumeCopyResponse{}
  1562. if protoimpl.UnsafeEnabled {
  1563. mi := &file_volume_server_proto_msgTypes[35]
  1564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1565. ms.StoreMessageInfo(mi)
  1566. }
  1567. }
  1568. func (x *VolumeCopyResponse) String() string {
  1569. return protoimpl.X.MessageStringOf(x)
  1570. }
  1571. func (*VolumeCopyResponse) ProtoMessage() {}
  1572. func (x *VolumeCopyResponse) ProtoReflect() protoreflect.Message {
  1573. mi := &file_volume_server_proto_msgTypes[35]
  1574. if protoimpl.UnsafeEnabled && x != nil {
  1575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1576. if ms.LoadMessageInfo() == nil {
  1577. ms.StoreMessageInfo(mi)
  1578. }
  1579. return ms
  1580. }
  1581. return mi.MessageOf(x)
  1582. }
  1583. // Deprecated: Use VolumeCopyResponse.ProtoReflect.Descriptor instead.
  1584. func (*VolumeCopyResponse) Descriptor() ([]byte, []int) {
  1585. return file_volume_server_proto_rawDescGZIP(), []int{35}
  1586. }
  1587. func (x *VolumeCopyResponse) GetLastAppendAtNs() uint64 {
  1588. if x != nil {
  1589. return x.LastAppendAtNs
  1590. }
  1591. return 0
  1592. }
  1593. func (x *VolumeCopyResponse) GetProcessedBytes() int64 {
  1594. if x != nil {
  1595. return x.ProcessedBytes
  1596. }
  1597. return 0
  1598. }
  1599. type CopyFileRequest struct {
  1600. state protoimpl.MessageState
  1601. sizeCache protoimpl.SizeCache
  1602. unknownFields protoimpl.UnknownFields
  1603. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1604. Ext string `protobuf:"bytes,2,opt,name=ext,proto3" json:"ext,omitempty"`
  1605. CompactionRevision uint32 `protobuf:"varint,3,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  1606. StopOffset uint64 `protobuf:"varint,4,opt,name=stop_offset,json=stopOffset,proto3" json:"stop_offset,omitempty"`
  1607. Collection string `protobuf:"bytes,5,opt,name=collection,proto3" json:"collection,omitempty"`
  1608. IsEcVolume bool `protobuf:"varint,6,opt,name=is_ec_volume,json=isEcVolume,proto3" json:"is_ec_volume,omitempty"`
  1609. IgnoreSourceFileNotFound bool `protobuf:"varint,7,opt,name=ignore_source_file_not_found,json=ignoreSourceFileNotFound,proto3" json:"ignore_source_file_not_found,omitempty"`
  1610. }
  1611. func (x *CopyFileRequest) Reset() {
  1612. *x = CopyFileRequest{}
  1613. if protoimpl.UnsafeEnabled {
  1614. mi := &file_volume_server_proto_msgTypes[36]
  1615. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1616. ms.StoreMessageInfo(mi)
  1617. }
  1618. }
  1619. func (x *CopyFileRequest) String() string {
  1620. return protoimpl.X.MessageStringOf(x)
  1621. }
  1622. func (*CopyFileRequest) ProtoMessage() {}
  1623. func (x *CopyFileRequest) ProtoReflect() protoreflect.Message {
  1624. mi := &file_volume_server_proto_msgTypes[36]
  1625. if protoimpl.UnsafeEnabled && x != nil {
  1626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1627. if ms.LoadMessageInfo() == nil {
  1628. ms.StoreMessageInfo(mi)
  1629. }
  1630. return ms
  1631. }
  1632. return mi.MessageOf(x)
  1633. }
  1634. // Deprecated: Use CopyFileRequest.ProtoReflect.Descriptor instead.
  1635. func (*CopyFileRequest) Descriptor() ([]byte, []int) {
  1636. return file_volume_server_proto_rawDescGZIP(), []int{36}
  1637. }
  1638. func (x *CopyFileRequest) GetVolumeId() uint32 {
  1639. if x != nil {
  1640. return x.VolumeId
  1641. }
  1642. return 0
  1643. }
  1644. func (x *CopyFileRequest) GetExt() string {
  1645. if x != nil {
  1646. return x.Ext
  1647. }
  1648. return ""
  1649. }
  1650. func (x *CopyFileRequest) GetCompactionRevision() uint32 {
  1651. if x != nil {
  1652. return x.CompactionRevision
  1653. }
  1654. return 0
  1655. }
  1656. func (x *CopyFileRequest) GetStopOffset() uint64 {
  1657. if x != nil {
  1658. return x.StopOffset
  1659. }
  1660. return 0
  1661. }
  1662. func (x *CopyFileRequest) GetCollection() string {
  1663. if x != nil {
  1664. return x.Collection
  1665. }
  1666. return ""
  1667. }
  1668. func (x *CopyFileRequest) GetIsEcVolume() bool {
  1669. if x != nil {
  1670. return x.IsEcVolume
  1671. }
  1672. return false
  1673. }
  1674. func (x *CopyFileRequest) GetIgnoreSourceFileNotFound() bool {
  1675. if x != nil {
  1676. return x.IgnoreSourceFileNotFound
  1677. }
  1678. return false
  1679. }
  1680. type CopyFileResponse struct {
  1681. state protoimpl.MessageState
  1682. sizeCache protoimpl.SizeCache
  1683. unknownFields protoimpl.UnknownFields
  1684. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  1685. ModifiedTsNs int64 `protobuf:"varint,2,opt,name=modified_ts_ns,json=modifiedTsNs,proto3" json:"modified_ts_ns,omitempty"`
  1686. }
  1687. func (x *CopyFileResponse) Reset() {
  1688. *x = CopyFileResponse{}
  1689. if protoimpl.UnsafeEnabled {
  1690. mi := &file_volume_server_proto_msgTypes[37]
  1691. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1692. ms.StoreMessageInfo(mi)
  1693. }
  1694. }
  1695. func (x *CopyFileResponse) String() string {
  1696. return protoimpl.X.MessageStringOf(x)
  1697. }
  1698. func (*CopyFileResponse) ProtoMessage() {}
  1699. func (x *CopyFileResponse) ProtoReflect() protoreflect.Message {
  1700. mi := &file_volume_server_proto_msgTypes[37]
  1701. if protoimpl.UnsafeEnabled && x != nil {
  1702. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1703. if ms.LoadMessageInfo() == nil {
  1704. ms.StoreMessageInfo(mi)
  1705. }
  1706. return ms
  1707. }
  1708. return mi.MessageOf(x)
  1709. }
  1710. // Deprecated: Use CopyFileResponse.ProtoReflect.Descriptor instead.
  1711. func (*CopyFileResponse) Descriptor() ([]byte, []int) {
  1712. return file_volume_server_proto_rawDescGZIP(), []int{37}
  1713. }
  1714. func (x *CopyFileResponse) GetFileContent() []byte {
  1715. if x != nil {
  1716. return x.FileContent
  1717. }
  1718. return nil
  1719. }
  1720. func (x *CopyFileResponse) GetModifiedTsNs() int64 {
  1721. if x != nil {
  1722. return x.ModifiedTsNs
  1723. }
  1724. return 0
  1725. }
  1726. type ReadNeedleBlobRequest struct {
  1727. state protoimpl.MessageState
  1728. sizeCache protoimpl.SizeCache
  1729. unknownFields protoimpl.UnknownFields
  1730. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1731. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"` // actual offset
  1732. Size int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  1733. }
  1734. func (x *ReadNeedleBlobRequest) Reset() {
  1735. *x = ReadNeedleBlobRequest{}
  1736. if protoimpl.UnsafeEnabled {
  1737. mi := &file_volume_server_proto_msgTypes[38]
  1738. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1739. ms.StoreMessageInfo(mi)
  1740. }
  1741. }
  1742. func (x *ReadNeedleBlobRequest) String() string {
  1743. return protoimpl.X.MessageStringOf(x)
  1744. }
  1745. func (*ReadNeedleBlobRequest) ProtoMessage() {}
  1746. func (x *ReadNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1747. mi := &file_volume_server_proto_msgTypes[38]
  1748. if protoimpl.UnsafeEnabled && x != nil {
  1749. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1750. if ms.LoadMessageInfo() == nil {
  1751. ms.StoreMessageInfo(mi)
  1752. }
  1753. return ms
  1754. }
  1755. return mi.MessageOf(x)
  1756. }
  1757. // Deprecated: Use ReadNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1758. func (*ReadNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1759. return file_volume_server_proto_rawDescGZIP(), []int{38}
  1760. }
  1761. func (x *ReadNeedleBlobRequest) GetVolumeId() uint32 {
  1762. if x != nil {
  1763. return x.VolumeId
  1764. }
  1765. return 0
  1766. }
  1767. func (x *ReadNeedleBlobRequest) GetOffset() int64 {
  1768. if x != nil {
  1769. return x.Offset
  1770. }
  1771. return 0
  1772. }
  1773. func (x *ReadNeedleBlobRequest) GetSize() int32 {
  1774. if x != nil {
  1775. return x.Size
  1776. }
  1777. return 0
  1778. }
  1779. type ReadNeedleBlobResponse struct {
  1780. state protoimpl.MessageState
  1781. sizeCache protoimpl.SizeCache
  1782. unknownFields protoimpl.UnknownFields
  1783. NeedleBlob []byte `protobuf:"bytes,1,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1784. }
  1785. func (x *ReadNeedleBlobResponse) Reset() {
  1786. *x = ReadNeedleBlobResponse{}
  1787. if protoimpl.UnsafeEnabled {
  1788. mi := &file_volume_server_proto_msgTypes[39]
  1789. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1790. ms.StoreMessageInfo(mi)
  1791. }
  1792. }
  1793. func (x *ReadNeedleBlobResponse) String() string {
  1794. return protoimpl.X.MessageStringOf(x)
  1795. }
  1796. func (*ReadNeedleBlobResponse) ProtoMessage() {}
  1797. func (x *ReadNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  1798. mi := &file_volume_server_proto_msgTypes[39]
  1799. if protoimpl.UnsafeEnabled && x != nil {
  1800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1801. if ms.LoadMessageInfo() == nil {
  1802. ms.StoreMessageInfo(mi)
  1803. }
  1804. return ms
  1805. }
  1806. return mi.MessageOf(x)
  1807. }
  1808. // Deprecated: Use ReadNeedleBlobResponse.ProtoReflect.Descriptor instead.
  1809. func (*ReadNeedleBlobResponse) Descriptor() ([]byte, []int) {
  1810. return file_volume_server_proto_rawDescGZIP(), []int{39}
  1811. }
  1812. func (x *ReadNeedleBlobResponse) GetNeedleBlob() []byte {
  1813. if x != nil {
  1814. return x.NeedleBlob
  1815. }
  1816. return nil
  1817. }
  1818. type ReadNeedleMetaRequest struct {
  1819. state protoimpl.MessageState
  1820. sizeCache protoimpl.SizeCache
  1821. unknownFields protoimpl.UnknownFields
  1822. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1823. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1824. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"` // actual offset
  1825. Size int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  1826. }
  1827. func (x *ReadNeedleMetaRequest) Reset() {
  1828. *x = ReadNeedleMetaRequest{}
  1829. if protoimpl.UnsafeEnabled {
  1830. mi := &file_volume_server_proto_msgTypes[40]
  1831. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1832. ms.StoreMessageInfo(mi)
  1833. }
  1834. }
  1835. func (x *ReadNeedleMetaRequest) String() string {
  1836. return protoimpl.X.MessageStringOf(x)
  1837. }
  1838. func (*ReadNeedleMetaRequest) ProtoMessage() {}
  1839. func (x *ReadNeedleMetaRequest) ProtoReflect() protoreflect.Message {
  1840. mi := &file_volume_server_proto_msgTypes[40]
  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 ReadNeedleMetaRequest.ProtoReflect.Descriptor instead.
  1851. func (*ReadNeedleMetaRequest) Descriptor() ([]byte, []int) {
  1852. return file_volume_server_proto_rawDescGZIP(), []int{40}
  1853. }
  1854. func (x *ReadNeedleMetaRequest) GetVolumeId() uint32 {
  1855. if x != nil {
  1856. return x.VolumeId
  1857. }
  1858. return 0
  1859. }
  1860. func (x *ReadNeedleMetaRequest) GetNeedleId() uint64 {
  1861. if x != nil {
  1862. return x.NeedleId
  1863. }
  1864. return 0
  1865. }
  1866. func (x *ReadNeedleMetaRequest) GetOffset() int64 {
  1867. if x != nil {
  1868. return x.Offset
  1869. }
  1870. return 0
  1871. }
  1872. func (x *ReadNeedleMetaRequest) GetSize() int32 {
  1873. if x != nil {
  1874. return x.Size
  1875. }
  1876. return 0
  1877. }
  1878. type ReadNeedleMetaResponse struct {
  1879. state protoimpl.MessageState
  1880. sizeCache protoimpl.SizeCache
  1881. unknownFields protoimpl.UnknownFields
  1882. Cookie uint32 `protobuf:"varint,1,opt,name=cookie,proto3" json:"cookie,omitempty"`
  1883. LastModified uint64 `protobuf:"varint,2,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  1884. Crc uint32 `protobuf:"varint,3,opt,name=crc,proto3" json:"crc,omitempty"`
  1885. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1886. AppendAtNs uint64 `protobuf:"varint,5,opt,name=append_at_ns,json=appendAtNs,proto3" json:"append_at_ns,omitempty"`
  1887. }
  1888. func (x *ReadNeedleMetaResponse) Reset() {
  1889. *x = ReadNeedleMetaResponse{}
  1890. if protoimpl.UnsafeEnabled {
  1891. mi := &file_volume_server_proto_msgTypes[41]
  1892. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1893. ms.StoreMessageInfo(mi)
  1894. }
  1895. }
  1896. func (x *ReadNeedleMetaResponse) String() string {
  1897. return protoimpl.X.MessageStringOf(x)
  1898. }
  1899. func (*ReadNeedleMetaResponse) ProtoMessage() {}
  1900. func (x *ReadNeedleMetaResponse) ProtoReflect() protoreflect.Message {
  1901. mi := &file_volume_server_proto_msgTypes[41]
  1902. if protoimpl.UnsafeEnabled && x != nil {
  1903. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1904. if ms.LoadMessageInfo() == nil {
  1905. ms.StoreMessageInfo(mi)
  1906. }
  1907. return ms
  1908. }
  1909. return mi.MessageOf(x)
  1910. }
  1911. // Deprecated: Use ReadNeedleMetaResponse.ProtoReflect.Descriptor instead.
  1912. func (*ReadNeedleMetaResponse) Descriptor() ([]byte, []int) {
  1913. return file_volume_server_proto_rawDescGZIP(), []int{41}
  1914. }
  1915. func (x *ReadNeedleMetaResponse) GetCookie() uint32 {
  1916. if x != nil {
  1917. return x.Cookie
  1918. }
  1919. return 0
  1920. }
  1921. func (x *ReadNeedleMetaResponse) GetLastModified() uint64 {
  1922. if x != nil {
  1923. return x.LastModified
  1924. }
  1925. return 0
  1926. }
  1927. func (x *ReadNeedleMetaResponse) GetCrc() uint32 {
  1928. if x != nil {
  1929. return x.Crc
  1930. }
  1931. return 0
  1932. }
  1933. func (x *ReadNeedleMetaResponse) GetTtl() string {
  1934. if x != nil {
  1935. return x.Ttl
  1936. }
  1937. return ""
  1938. }
  1939. func (x *ReadNeedleMetaResponse) GetAppendAtNs() uint64 {
  1940. if x != nil {
  1941. return x.AppendAtNs
  1942. }
  1943. return 0
  1944. }
  1945. type WriteNeedleBlobRequest struct {
  1946. state protoimpl.MessageState
  1947. sizeCache protoimpl.SizeCache
  1948. unknownFields protoimpl.UnknownFields
  1949. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1950. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1951. Size int32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  1952. NeedleBlob []byte `protobuf:"bytes,4,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1953. }
  1954. func (x *WriteNeedleBlobRequest) Reset() {
  1955. *x = WriteNeedleBlobRequest{}
  1956. if protoimpl.UnsafeEnabled {
  1957. mi := &file_volume_server_proto_msgTypes[42]
  1958. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1959. ms.StoreMessageInfo(mi)
  1960. }
  1961. }
  1962. func (x *WriteNeedleBlobRequest) String() string {
  1963. return protoimpl.X.MessageStringOf(x)
  1964. }
  1965. func (*WriteNeedleBlobRequest) ProtoMessage() {}
  1966. func (x *WriteNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1967. mi := &file_volume_server_proto_msgTypes[42]
  1968. if protoimpl.UnsafeEnabled && x != nil {
  1969. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1970. if ms.LoadMessageInfo() == nil {
  1971. ms.StoreMessageInfo(mi)
  1972. }
  1973. return ms
  1974. }
  1975. return mi.MessageOf(x)
  1976. }
  1977. // Deprecated: Use WriteNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1978. func (*WriteNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1979. return file_volume_server_proto_rawDescGZIP(), []int{42}
  1980. }
  1981. func (x *WriteNeedleBlobRequest) GetVolumeId() uint32 {
  1982. if x != nil {
  1983. return x.VolumeId
  1984. }
  1985. return 0
  1986. }
  1987. func (x *WriteNeedleBlobRequest) GetNeedleId() uint64 {
  1988. if x != nil {
  1989. return x.NeedleId
  1990. }
  1991. return 0
  1992. }
  1993. func (x *WriteNeedleBlobRequest) GetSize() int32 {
  1994. if x != nil {
  1995. return x.Size
  1996. }
  1997. return 0
  1998. }
  1999. func (x *WriteNeedleBlobRequest) GetNeedleBlob() []byte {
  2000. if x != nil {
  2001. return x.NeedleBlob
  2002. }
  2003. return nil
  2004. }
  2005. type WriteNeedleBlobResponse struct {
  2006. state protoimpl.MessageState
  2007. sizeCache protoimpl.SizeCache
  2008. unknownFields protoimpl.UnknownFields
  2009. }
  2010. func (x *WriteNeedleBlobResponse) Reset() {
  2011. *x = WriteNeedleBlobResponse{}
  2012. if protoimpl.UnsafeEnabled {
  2013. mi := &file_volume_server_proto_msgTypes[43]
  2014. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2015. ms.StoreMessageInfo(mi)
  2016. }
  2017. }
  2018. func (x *WriteNeedleBlobResponse) String() string {
  2019. return protoimpl.X.MessageStringOf(x)
  2020. }
  2021. func (*WriteNeedleBlobResponse) ProtoMessage() {}
  2022. func (x *WriteNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  2023. mi := &file_volume_server_proto_msgTypes[43]
  2024. if protoimpl.UnsafeEnabled && x != nil {
  2025. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2026. if ms.LoadMessageInfo() == nil {
  2027. ms.StoreMessageInfo(mi)
  2028. }
  2029. return ms
  2030. }
  2031. return mi.MessageOf(x)
  2032. }
  2033. // Deprecated: Use WriteNeedleBlobResponse.ProtoReflect.Descriptor instead.
  2034. func (*WriteNeedleBlobResponse) Descriptor() ([]byte, []int) {
  2035. return file_volume_server_proto_rawDescGZIP(), []int{43}
  2036. }
  2037. type ReadAllNeedlesRequest struct {
  2038. state protoimpl.MessageState
  2039. sizeCache protoimpl.SizeCache
  2040. unknownFields protoimpl.UnknownFields
  2041. VolumeIds []uint32 `protobuf:"varint,1,rep,packed,name=volume_ids,json=volumeIds,proto3" json:"volume_ids,omitempty"`
  2042. }
  2043. func (x *ReadAllNeedlesRequest) Reset() {
  2044. *x = ReadAllNeedlesRequest{}
  2045. if protoimpl.UnsafeEnabled {
  2046. mi := &file_volume_server_proto_msgTypes[44]
  2047. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2048. ms.StoreMessageInfo(mi)
  2049. }
  2050. }
  2051. func (x *ReadAllNeedlesRequest) String() string {
  2052. return protoimpl.X.MessageStringOf(x)
  2053. }
  2054. func (*ReadAllNeedlesRequest) ProtoMessage() {}
  2055. func (x *ReadAllNeedlesRequest) ProtoReflect() protoreflect.Message {
  2056. mi := &file_volume_server_proto_msgTypes[44]
  2057. if protoimpl.UnsafeEnabled && x != nil {
  2058. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2059. if ms.LoadMessageInfo() == nil {
  2060. ms.StoreMessageInfo(mi)
  2061. }
  2062. return ms
  2063. }
  2064. return mi.MessageOf(x)
  2065. }
  2066. // Deprecated: Use ReadAllNeedlesRequest.ProtoReflect.Descriptor instead.
  2067. func (*ReadAllNeedlesRequest) Descriptor() ([]byte, []int) {
  2068. return file_volume_server_proto_rawDescGZIP(), []int{44}
  2069. }
  2070. func (x *ReadAllNeedlesRequest) GetVolumeIds() []uint32 {
  2071. if x != nil {
  2072. return x.VolumeIds
  2073. }
  2074. return nil
  2075. }
  2076. type ReadAllNeedlesResponse struct {
  2077. state protoimpl.MessageState
  2078. sizeCache protoimpl.SizeCache
  2079. unknownFields protoimpl.UnknownFields
  2080. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2081. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  2082. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  2083. NeedleBlob []byte `protobuf:"bytes,5,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  2084. NeedleBlobCompressed bool `protobuf:"varint,6,opt,name=needle_blob_compressed,json=needleBlobCompressed,proto3" json:"needle_blob_compressed,omitempty"`
  2085. LastModified uint64 `protobuf:"varint,7,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  2086. Crc uint32 `protobuf:"varint,8,opt,name=crc,proto3" json:"crc,omitempty"`
  2087. Name []byte `protobuf:"bytes,9,opt,name=name,proto3" json:"name,omitempty"`
  2088. Mime []byte `protobuf:"bytes,10,opt,name=mime,proto3" json:"mime,omitempty"`
  2089. }
  2090. func (x *ReadAllNeedlesResponse) Reset() {
  2091. *x = ReadAllNeedlesResponse{}
  2092. if protoimpl.UnsafeEnabled {
  2093. mi := &file_volume_server_proto_msgTypes[45]
  2094. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2095. ms.StoreMessageInfo(mi)
  2096. }
  2097. }
  2098. func (x *ReadAllNeedlesResponse) String() string {
  2099. return protoimpl.X.MessageStringOf(x)
  2100. }
  2101. func (*ReadAllNeedlesResponse) ProtoMessage() {}
  2102. func (x *ReadAllNeedlesResponse) ProtoReflect() protoreflect.Message {
  2103. mi := &file_volume_server_proto_msgTypes[45]
  2104. if protoimpl.UnsafeEnabled && x != nil {
  2105. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2106. if ms.LoadMessageInfo() == nil {
  2107. ms.StoreMessageInfo(mi)
  2108. }
  2109. return ms
  2110. }
  2111. return mi.MessageOf(x)
  2112. }
  2113. // Deprecated: Use ReadAllNeedlesResponse.ProtoReflect.Descriptor instead.
  2114. func (*ReadAllNeedlesResponse) Descriptor() ([]byte, []int) {
  2115. return file_volume_server_proto_rawDescGZIP(), []int{45}
  2116. }
  2117. func (x *ReadAllNeedlesResponse) GetVolumeId() uint32 {
  2118. if x != nil {
  2119. return x.VolumeId
  2120. }
  2121. return 0
  2122. }
  2123. func (x *ReadAllNeedlesResponse) GetNeedleId() uint64 {
  2124. if x != nil {
  2125. return x.NeedleId
  2126. }
  2127. return 0
  2128. }
  2129. func (x *ReadAllNeedlesResponse) GetCookie() uint32 {
  2130. if x != nil {
  2131. return x.Cookie
  2132. }
  2133. return 0
  2134. }
  2135. func (x *ReadAllNeedlesResponse) GetNeedleBlob() []byte {
  2136. if x != nil {
  2137. return x.NeedleBlob
  2138. }
  2139. return nil
  2140. }
  2141. func (x *ReadAllNeedlesResponse) GetNeedleBlobCompressed() bool {
  2142. if x != nil {
  2143. return x.NeedleBlobCompressed
  2144. }
  2145. return false
  2146. }
  2147. func (x *ReadAllNeedlesResponse) GetLastModified() uint64 {
  2148. if x != nil {
  2149. return x.LastModified
  2150. }
  2151. return 0
  2152. }
  2153. func (x *ReadAllNeedlesResponse) GetCrc() uint32 {
  2154. if x != nil {
  2155. return x.Crc
  2156. }
  2157. return 0
  2158. }
  2159. func (x *ReadAllNeedlesResponse) GetName() []byte {
  2160. if x != nil {
  2161. return x.Name
  2162. }
  2163. return nil
  2164. }
  2165. func (x *ReadAllNeedlesResponse) GetMime() []byte {
  2166. if x != nil {
  2167. return x.Mime
  2168. }
  2169. return nil
  2170. }
  2171. type VolumeTailSenderRequest struct {
  2172. state protoimpl.MessageState
  2173. sizeCache protoimpl.SizeCache
  2174. unknownFields protoimpl.UnknownFields
  2175. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2176. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2177. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  2178. }
  2179. func (x *VolumeTailSenderRequest) Reset() {
  2180. *x = VolumeTailSenderRequest{}
  2181. if protoimpl.UnsafeEnabled {
  2182. mi := &file_volume_server_proto_msgTypes[46]
  2183. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2184. ms.StoreMessageInfo(mi)
  2185. }
  2186. }
  2187. func (x *VolumeTailSenderRequest) String() string {
  2188. return protoimpl.X.MessageStringOf(x)
  2189. }
  2190. func (*VolumeTailSenderRequest) ProtoMessage() {}
  2191. func (x *VolumeTailSenderRequest) ProtoReflect() protoreflect.Message {
  2192. mi := &file_volume_server_proto_msgTypes[46]
  2193. if protoimpl.UnsafeEnabled && x != nil {
  2194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2195. if ms.LoadMessageInfo() == nil {
  2196. ms.StoreMessageInfo(mi)
  2197. }
  2198. return ms
  2199. }
  2200. return mi.MessageOf(x)
  2201. }
  2202. // Deprecated: Use VolumeTailSenderRequest.ProtoReflect.Descriptor instead.
  2203. func (*VolumeTailSenderRequest) Descriptor() ([]byte, []int) {
  2204. return file_volume_server_proto_rawDescGZIP(), []int{46}
  2205. }
  2206. func (x *VolumeTailSenderRequest) GetVolumeId() uint32 {
  2207. if x != nil {
  2208. return x.VolumeId
  2209. }
  2210. return 0
  2211. }
  2212. func (x *VolumeTailSenderRequest) GetSinceNs() uint64 {
  2213. if x != nil {
  2214. return x.SinceNs
  2215. }
  2216. return 0
  2217. }
  2218. func (x *VolumeTailSenderRequest) GetIdleTimeoutSeconds() uint32 {
  2219. if x != nil {
  2220. return x.IdleTimeoutSeconds
  2221. }
  2222. return 0
  2223. }
  2224. type VolumeTailSenderResponse struct {
  2225. state protoimpl.MessageState
  2226. sizeCache protoimpl.SizeCache
  2227. unknownFields protoimpl.UnknownFields
  2228. NeedleHeader []byte `protobuf:"bytes,1,opt,name=needle_header,json=needleHeader,proto3" json:"needle_header,omitempty"`
  2229. NeedleBody []byte `protobuf:"bytes,2,opt,name=needle_body,json=needleBody,proto3" json:"needle_body,omitempty"`
  2230. IsLastChunk bool `protobuf:"varint,3,opt,name=is_last_chunk,json=isLastChunk,proto3" json:"is_last_chunk,omitempty"`
  2231. }
  2232. func (x *VolumeTailSenderResponse) Reset() {
  2233. *x = VolumeTailSenderResponse{}
  2234. if protoimpl.UnsafeEnabled {
  2235. mi := &file_volume_server_proto_msgTypes[47]
  2236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2237. ms.StoreMessageInfo(mi)
  2238. }
  2239. }
  2240. func (x *VolumeTailSenderResponse) String() string {
  2241. return protoimpl.X.MessageStringOf(x)
  2242. }
  2243. func (*VolumeTailSenderResponse) ProtoMessage() {}
  2244. func (x *VolumeTailSenderResponse) ProtoReflect() protoreflect.Message {
  2245. mi := &file_volume_server_proto_msgTypes[47]
  2246. if protoimpl.UnsafeEnabled && x != nil {
  2247. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2248. if ms.LoadMessageInfo() == nil {
  2249. ms.StoreMessageInfo(mi)
  2250. }
  2251. return ms
  2252. }
  2253. return mi.MessageOf(x)
  2254. }
  2255. // Deprecated: Use VolumeTailSenderResponse.ProtoReflect.Descriptor instead.
  2256. func (*VolumeTailSenderResponse) Descriptor() ([]byte, []int) {
  2257. return file_volume_server_proto_rawDescGZIP(), []int{47}
  2258. }
  2259. func (x *VolumeTailSenderResponse) GetNeedleHeader() []byte {
  2260. if x != nil {
  2261. return x.NeedleHeader
  2262. }
  2263. return nil
  2264. }
  2265. func (x *VolumeTailSenderResponse) GetNeedleBody() []byte {
  2266. if x != nil {
  2267. return x.NeedleBody
  2268. }
  2269. return nil
  2270. }
  2271. func (x *VolumeTailSenderResponse) GetIsLastChunk() bool {
  2272. if x != nil {
  2273. return x.IsLastChunk
  2274. }
  2275. return false
  2276. }
  2277. type VolumeTailReceiverRequest struct {
  2278. state protoimpl.MessageState
  2279. sizeCache protoimpl.SizeCache
  2280. unknownFields protoimpl.UnknownFields
  2281. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2282. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2283. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  2284. SourceVolumeServer string `protobuf:"bytes,4,opt,name=source_volume_server,json=sourceVolumeServer,proto3" json:"source_volume_server,omitempty"`
  2285. }
  2286. func (x *VolumeTailReceiverRequest) Reset() {
  2287. *x = VolumeTailReceiverRequest{}
  2288. if protoimpl.UnsafeEnabled {
  2289. mi := &file_volume_server_proto_msgTypes[48]
  2290. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2291. ms.StoreMessageInfo(mi)
  2292. }
  2293. }
  2294. func (x *VolumeTailReceiverRequest) String() string {
  2295. return protoimpl.X.MessageStringOf(x)
  2296. }
  2297. func (*VolumeTailReceiverRequest) ProtoMessage() {}
  2298. func (x *VolumeTailReceiverRequest) ProtoReflect() protoreflect.Message {
  2299. mi := &file_volume_server_proto_msgTypes[48]
  2300. if protoimpl.UnsafeEnabled && x != nil {
  2301. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2302. if ms.LoadMessageInfo() == nil {
  2303. ms.StoreMessageInfo(mi)
  2304. }
  2305. return ms
  2306. }
  2307. return mi.MessageOf(x)
  2308. }
  2309. // Deprecated: Use VolumeTailReceiverRequest.ProtoReflect.Descriptor instead.
  2310. func (*VolumeTailReceiverRequest) Descriptor() ([]byte, []int) {
  2311. return file_volume_server_proto_rawDescGZIP(), []int{48}
  2312. }
  2313. func (x *VolumeTailReceiverRequest) GetVolumeId() uint32 {
  2314. if x != nil {
  2315. return x.VolumeId
  2316. }
  2317. return 0
  2318. }
  2319. func (x *VolumeTailReceiverRequest) GetSinceNs() uint64 {
  2320. if x != nil {
  2321. return x.SinceNs
  2322. }
  2323. return 0
  2324. }
  2325. func (x *VolumeTailReceiverRequest) GetIdleTimeoutSeconds() uint32 {
  2326. if x != nil {
  2327. return x.IdleTimeoutSeconds
  2328. }
  2329. return 0
  2330. }
  2331. func (x *VolumeTailReceiverRequest) GetSourceVolumeServer() string {
  2332. if x != nil {
  2333. return x.SourceVolumeServer
  2334. }
  2335. return ""
  2336. }
  2337. type VolumeTailReceiverResponse struct {
  2338. state protoimpl.MessageState
  2339. sizeCache protoimpl.SizeCache
  2340. unknownFields protoimpl.UnknownFields
  2341. }
  2342. func (x *VolumeTailReceiverResponse) Reset() {
  2343. *x = VolumeTailReceiverResponse{}
  2344. if protoimpl.UnsafeEnabled {
  2345. mi := &file_volume_server_proto_msgTypes[49]
  2346. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2347. ms.StoreMessageInfo(mi)
  2348. }
  2349. }
  2350. func (x *VolumeTailReceiverResponse) String() string {
  2351. return protoimpl.X.MessageStringOf(x)
  2352. }
  2353. func (*VolumeTailReceiverResponse) ProtoMessage() {}
  2354. func (x *VolumeTailReceiverResponse) ProtoReflect() protoreflect.Message {
  2355. mi := &file_volume_server_proto_msgTypes[49]
  2356. if protoimpl.UnsafeEnabled && x != nil {
  2357. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2358. if ms.LoadMessageInfo() == nil {
  2359. ms.StoreMessageInfo(mi)
  2360. }
  2361. return ms
  2362. }
  2363. return mi.MessageOf(x)
  2364. }
  2365. // Deprecated: Use VolumeTailReceiverResponse.ProtoReflect.Descriptor instead.
  2366. func (*VolumeTailReceiverResponse) Descriptor() ([]byte, []int) {
  2367. return file_volume_server_proto_rawDescGZIP(), []int{49}
  2368. }
  2369. type VolumeEcShardsGenerateRequest struct {
  2370. state protoimpl.MessageState
  2371. sizeCache protoimpl.SizeCache
  2372. unknownFields protoimpl.UnknownFields
  2373. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2374. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2375. }
  2376. func (x *VolumeEcShardsGenerateRequest) Reset() {
  2377. *x = VolumeEcShardsGenerateRequest{}
  2378. if protoimpl.UnsafeEnabled {
  2379. mi := &file_volume_server_proto_msgTypes[50]
  2380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2381. ms.StoreMessageInfo(mi)
  2382. }
  2383. }
  2384. func (x *VolumeEcShardsGenerateRequest) String() string {
  2385. return protoimpl.X.MessageStringOf(x)
  2386. }
  2387. func (*VolumeEcShardsGenerateRequest) ProtoMessage() {}
  2388. func (x *VolumeEcShardsGenerateRequest) ProtoReflect() protoreflect.Message {
  2389. mi := &file_volume_server_proto_msgTypes[50]
  2390. if protoimpl.UnsafeEnabled && x != nil {
  2391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2392. if ms.LoadMessageInfo() == nil {
  2393. ms.StoreMessageInfo(mi)
  2394. }
  2395. return ms
  2396. }
  2397. return mi.MessageOf(x)
  2398. }
  2399. // Deprecated: Use VolumeEcShardsGenerateRequest.ProtoReflect.Descriptor instead.
  2400. func (*VolumeEcShardsGenerateRequest) Descriptor() ([]byte, []int) {
  2401. return file_volume_server_proto_rawDescGZIP(), []int{50}
  2402. }
  2403. func (x *VolumeEcShardsGenerateRequest) GetVolumeId() uint32 {
  2404. if x != nil {
  2405. return x.VolumeId
  2406. }
  2407. return 0
  2408. }
  2409. func (x *VolumeEcShardsGenerateRequest) GetCollection() string {
  2410. if x != nil {
  2411. return x.Collection
  2412. }
  2413. return ""
  2414. }
  2415. type VolumeEcShardsGenerateResponse struct {
  2416. state protoimpl.MessageState
  2417. sizeCache protoimpl.SizeCache
  2418. unknownFields protoimpl.UnknownFields
  2419. }
  2420. func (x *VolumeEcShardsGenerateResponse) Reset() {
  2421. *x = VolumeEcShardsGenerateResponse{}
  2422. if protoimpl.UnsafeEnabled {
  2423. mi := &file_volume_server_proto_msgTypes[51]
  2424. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2425. ms.StoreMessageInfo(mi)
  2426. }
  2427. }
  2428. func (x *VolumeEcShardsGenerateResponse) String() string {
  2429. return protoimpl.X.MessageStringOf(x)
  2430. }
  2431. func (*VolumeEcShardsGenerateResponse) ProtoMessage() {}
  2432. func (x *VolumeEcShardsGenerateResponse) ProtoReflect() protoreflect.Message {
  2433. mi := &file_volume_server_proto_msgTypes[51]
  2434. if protoimpl.UnsafeEnabled && x != nil {
  2435. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2436. if ms.LoadMessageInfo() == nil {
  2437. ms.StoreMessageInfo(mi)
  2438. }
  2439. return ms
  2440. }
  2441. return mi.MessageOf(x)
  2442. }
  2443. // Deprecated: Use VolumeEcShardsGenerateResponse.ProtoReflect.Descriptor instead.
  2444. func (*VolumeEcShardsGenerateResponse) Descriptor() ([]byte, []int) {
  2445. return file_volume_server_proto_rawDescGZIP(), []int{51}
  2446. }
  2447. type VolumeEcShardsRebuildRequest struct {
  2448. state protoimpl.MessageState
  2449. sizeCache protoimpl.SizeCache
  2450. unknownFields protoimpl.UnknownFields
  2451. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2452. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2453. }
  2454. func (x *VolumeEcShardsRebuildRequest) Reset() {
  2455. *x = VolumeEcShardsRebuildRequest{}
  2456. if protoimpl.UnsafeEnabled {
  2457. mi := &file_volume_server_proto_msgTypes[52]
  2458. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2459. ms.StoreMessageInfo(mi)
  2460. }
  2461. }
  2462. func (x *VolumeEcShardsRebuildRequest) String() string {
  2463. return protoimpl.X.MessageStringOf(x)
  2464. }
  2465. func (*VolumeEcShardsRebuildRequest) ProtoMessage() {}
  2466. func (x *VolumeEcShardsRebuildRequest) ProtoReflect() protoreflect.Message {
  2467. mi := &file_volume_server_proto_msgTypes[52]
  2468. if protoimpl.UnsafeEnabled && x != nil {
  2469. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2470. if ms.LoadMessageInfo() == nil {
  2471. ms.StoreMessageInfo(mi)
  2472. }
  2473. return ms
  2474. }
  2475. return mi.MessageOf(x)
  2476. }
  2477. // Deprecated: Use VolumeEcShardsRebuildRequest.ProtoReflect.Descriptor instead.
  2478. func (*VolumeEcShardsRebuildRequest) Descriptor() ([]byte, []int) {
  2479. return file_volume_server_proto_rawDescGZIP(), []int{52}
  2480. }
  2481. func (x *VolumeEcShardsRebuildRequest) GetVolumeId() uint32 {
  2482. if x != nil {
  2483. return x.VolumeId
  2484. }
  2485. return 0
  2486. }
  2487. func (x *VolumeEcShardsRebuildRequest) GetCollection() string {
  2488. if x != nil {
  2489. return x.Collection
  2490. }
  2491. return ""
  2492. }
  2493. type VolumeEcShardsRebuildResponse struct {
  2494. state protoimpl.MessageState
  2495. sizeCache protoimpl.SizeCache
  2496. unknownFields protoimpl.UnknownFields
  2497. RebuiltShardIds []uint32 `protobuf:"varint,1,rep,packed,name=rebuilt_shard_ids,json=rebuiltShardIds,proto3" json:"rebuilt_shard_ids,omitempty"`
  2498. }
  2499. func (x *VolumeEcShardsRebuildResponse) Reset() {
  2500. *x = VolumeEcShardsRebuildResponse{}
  2501. if protoimpl.UnsafeEnabled {
  2502. mi := &file_volume_server_proto_msgTypes[53]
  2503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2504. ms.StoreMessageInfo(mi)
  2505. }
  2506. }
  2507. func (x *VolumeEcShardsRebuildResponse) String() string {
  2508. return protoimpl.X.MessageStringOf(x)
  2509. }
  2510. func (*VolumeEcShardsRebuildResponse) ProtoMessage() {}
  2511. func (x *VolumeEcShardsRebuildResponse) ProtoReflect() protoreflect.Message {
  2512. mi := &file_volume_server_proto_msgTypes[53]
  2513. if protoimpl.UnsafeEnabled && x != nil {
  2514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2515. if ms.LoadMessageInfo() == nil {
  2516. ms.StoreMessageInfo(mi)
  2517. }
  2518. return ms
  2519. }
  2520. return mi.MessageOf(x)
  2521. }
  2522. // Deprecated: Use VolumeEcShardsRebuildResponse.ProtoReflect.Descriptor instead.
  2523. func (*VolumeEcShardsRebuildResponse) Descriptor() ([]byte, []int) {
  2524. return file_volume_server_proto_rawDescGZIP(), []int{53}
  2525. }
  2526. func (x *VolumeEcShardsRebuildResponse) GetRebuiltShardIds() []uint32 {
  2527. if x != nil {
  2528. return x.RebuiltShardIds
  2529. }
  2530. return nil
  2531. }
  2532. type VolumeEcShardsCopyRequest struct {
  2533. state protoimpl.MessageState
  2534. sizeCache protoimpl.SizeCache
  2535. unknownFields protoimpl.UnknownFields
  2536. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2537. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2538. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2539. CopyEcxFile bool `protobuf:"varint,4,opt,name=copy_ecx_file,json=copyEcxFile,proto3" json:"copy_ecx_file,omitempty"`
  2540. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  2541. CopyEcjFile bool `protobuf:"varint,6,opt,name=copy_ecj_file,json=copyEcjFile,proto3" json:"copy_ecj_file,omitempty"`
  2542. CopyVifFile bool `protobuf:"varint,7,opt,name=copy_vif_file,json=copyVifFile,proto3" json:"copy_vif_file,omitempty"`
  2543. }
  2544. func (x *VolumeEcShardsCopyRequest) Reset() {
  2545. *x = VolumeEcShardsCopyRequest{}
  2546. if protoimpl.UnsafeEnabled {
  2547. mi := &file_volume_server_proto_msgTypes[54]
  2548. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2549. ms.StoreMessageInfo(mi)
  2550. }
  2551. }
  2552. func (x *VolumeEcShardsCopyRequest) String() string {
  2553. return protoimpl.X.MessageStringOf(x)
  2554. }
  2555. func (*VolumeEcShardsCopyRequest) ProtoMessage() {}
  2556. func (x *VolumeEcShardsCopyRequest) ProtoReflect() protoreflect.Message {
  2557. mi := &file_volume_server_proto_msgTypes[54]
  2558. if protoimpl.UnsafeEnabled && x != nil {
  2559. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2560. if ms.LoadMessageInfo() == nil {
  2561. ms.StoreMessageInfo(mi)
  2562. }
  2563. return ms
  2564. }
  2565. return mi.MessageOf(x)
  2566. }
  2567. // Deprecated: Use VolumeEcShardsCopyRequest.ProtoReflect.Descriptor instead.
  2568. func (*VolumeEcShardsCopyRequest) Descriptor() ([]byte, []int) {
  2569. return file_volume_server_proto_rawDescGZIP(), []int{54}
  2570. }
  2571. func (x *VolumeEcShardsCopyRequest) GetVolumeId() uint32 {
  2572. if x != nil {
  2573. return x.VolumeId
  2574. }
  2575. return 0
  2576. }
  2577. func (x *VolumeEcShardsCopyRequest) GetCollection() string {
  2578. if x != nil {
  2579. return x.Collection
  2580. }
  2581. return ""
  2582. }
  2583. func (x *VolumeEcShardsCopyRequest) GetShardIds() []uint32 {
  2584. if x != nil {
  2585. return x.ShardIds
  2586. }
  2587. return nil
  2588. }
  2589. func (x *VolumeEcShardsCopyRequest) GetCopyEcxFile() bool {
  2590. if x != nil {
  2591. return x.CopyEcxFile
  2592. }
  2593. return false
  2594. }
  2595. func (x *VolumeEcShardsCopyRequest) GetSourceDataNode() string {
  2596. if x != nil {
  2597. return x.SourceDataNode
  2598. }
  2599. return ""
  2600. }
  2601. func (x *VolumeEcShardsCopyRequest) GetCopyEcjFile() bool {
  2602. if x != nil {
  2603. return x.CopyEcjFile
  2604. }
  2605. return false
  2606. }
  2607. func (x *VolumeEcShardsCopyRequest) GetCopyVifFile() bool {
  2608. if x != nil {
  2609. return x.CopyVifFile
  2610. }
  2611. return false
  2612. }
  2613. type VolumeEcShardsCopyResponse struct {
  2614. state protoimpl.MessageState
  2615. sizeCache protoimpl.SizeCache
  2616. unknownFields protoimpl.UnknownFields
  2617. }
  2618. func (x *VolumeEcShardsCopyResponse) Reset() {
  2619. *x = VolumeEcShardsCopyResponse{}
  2620. if protoimpl.UnsafeEnabled {
  2621. mi := &file_volume_server_proto_msgTypes[55]
  2622. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2623. ms.StoreMessageInfo(mi)
  2624. }
  2625. }
  2626. func (x *VolumeEcShardsCopyResponse) String() string {
  2627. return protoimpl.X.MessageStringOf(x)
  2628. }
  2629. func (*VolumeEcShardsCopyResponse) ProtoMessage() {}
  2630. func (x *VolumeEcShardsCopyResponse) ProtoReflect() protoreflect.Message {
  2631. mi := &file_volume_server_proto_msgTypes[55]
  2632. if protoimpl.UnsafeEnabled && x != nil {
  2633. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2634. if ms.LoadMessageInfo() == nil {
  2635. ms.StoreMessageInfo(mi)
  2636. }
  2637. return ms
  2638. }
  2639. return mi.MessageOf(x)
  2640. }
  2641. // Deprecated: Use VolumeEcShardsCopyResponse.ProtoReflect.Descriptor instead.
  2642. func (*VolumeEcShardsCopyResponse) Descriptor() ([]byte, []int) {
  2643. return file_volume_server_proto_rawDescGZIP(), []int{55}
  2644. }
  2645. type VolumeEcShardsDeleteRequest struct {
  2646. state protoimpl.MessageState
  2647. sizeCache protoimpl.SizeCache
  2648. unknownFields protoimpl.UnknownFields
  2649. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2650. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2651. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2652. }
  2653. func (x *VolumeEcShardsDeleteRequest) Reset() {
  2654. *x = VolumeEcShardsDeleteRequest{}
  2655. if protoimpl.UnsafeEnabled {
  2656. mi := &file_volume_server_proto_msgTypes[56]
  2657. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2658. ms.StoreMessageInfo(mi)
  2659. }
  2660. }
  2661. func (x *VolumeEcShardsDeleteRequest) String() string {
  2662. return protoimpl.X.MessageStringOf(x)
  2663. }
  2664. func (*VolumeEcShardsDeleteRequest) ProtoMessage() {}
  2665. func (x *VolumeEcShardsDeleteRequest) ProtoReflect() protoreflect.Message {
  2666. mi := &file_volume_server_proto_msgTypes[56]
  2667. if protoimpl.UnsafeEnabled && x != nil {
  2668. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2669. if ms.LoadMessageInfo() == nil {
  2670. ms.StoreMessageInfo(mi)
  2671. }
  2672. return ms
  2673. }
  2674. return mi.MessageOf(x)
  2675. }
  2676. // Deprecated: Use VolumeEcShardsDeleteRequest.ProtoReflect.Descriptor instead.
  2677. func (*VolumeEcShardsDeleteRequest) Descriptor() ([]byte, []int) {
  2678. return file_volume_server_proto_rawDescGZIP(), []int{56}
  2679. }
  2680. func (x *VolumeEcShardsDeleteRequest) GetVolumeId() uint32 {
  2681. if x != nil {
  2682. return x.VolumeId
  2683. }
  2684. return 0
  2685. }
  2686. func (x *VolumeEcShardsDeleteRequest) GetCollection() string {
  2687. if x != nil {
  2688. return x.Collection
  2689. }
  2690. return ""
  2691. }
  2692. func (x *VolumeEcShardsDeleteRequest) GetShardIds() []uint32 {
  2693. if x != nil {
  2694. return x.ShardIds
  2695. }
  2696. return nil
  2697. }
  2698. type VolumeEcShardsDeleteResponse struct {
  2699. state protoimpl.MessageState
  2700. sizeCache protoimpl.SizeCache
  2701. unknownFields protoimpl.UnknownFields
  2702. }
  2703. func (x *VolumeEcShardsDeleteResponse) Reset() {
  2704. *x = VolumeEcShardsDeleteResponse{}
  2705. if protoimpl.UnsafeEnabled {
  2706. mi := &file_volume_server_proto_msgTypes[57]
  2707. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2708. ms.StoreMessageInfo(mi)
  2709. }
  2710. }
  2711. func (x *VolumeEcShardsDeleteResponse) String() string {
  2712. return protoimpl.X.MessageStringOf(x)
  2713. }
  2714. func (*VolumeEcShardsDeleteResponse) ProtoMessage() {}
  2715. func (x *VolumeEcShardsDeleteResponse) ProtoReflect() protoreflect.Message {
  2716. mi := &file_volume_server_proto_msgTypes[57]
  2717. if protoimpl.UnsafeEnabled && x != nil {
  2718. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2719. if ms.LoadMessageInfo() == nil {
  2720. ms.StoreMessageInfo(mi)
  2721. }
  2722. return ms
  2723. }
  2724. return mi.MessageOf(x)
  2725. }
  2726. // Deprecated: Use VolumeEcShardsDeleteResponse.ProtoReflect.Descriptor instead.
  2727. func (*VolumeEcShardsDeleteResponse) Descriptor() ([]byte, []int) {
  2728. return file_volume_server_proto_rawDescGZIP(), []int{57}
  2729. }
  2730. type VolumeEcShardsMountRequest struct {
  2731. state protoimpl.MessageState
  2732. sizeCache protoimpl.SizeCache
  2733. unknownFields protoimpl.UnknownFields
  2734. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2735. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2736. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2737. }
  2738. func (x *VolumeEcShardsMountRequest) Reset() {
  2739. *x = VolumeEcShardsMountRequest{}
  2740. if protoimpl.UnsafeEnabled {
  2741. mi := &file_volume_server_proto_msgTypes[58]
  2742. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2743. ms.StoreMessageInfo(mi)
  2744. }
  2745. }
  2746. func (x *VolumeEcShardsMountRequest) String() string {
  2747. return protoimpl.X.MessageStringOf(x)
  2748. }
  2749. func (*VolumeEcShardsMountRequest) ProtoMessage() {}
  2750. func (x *VolumeEcShardsMountRequest) ProtoReflect() protoreflect.Message {
  2751. mi := &file_volume_server_proto_msgTypes[58]
  2752. if protoimpl.UnsafeEnabled && x != nil {
  2753. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2754. if ms.LoadMessageInfo() == nil {
  2755. ms.StoreMessageInfo(mi)
  2756. }
  2757. return ms
  2758. }
  2759. return mi.MessageOf(x)
  2760. }
  2761. // Deprecated: Use VolumeEcShardsMountRequest.ProtoReflect.Descriptor instead.
  2762. func (*VolumeEcShardsMountRequest) Descriptor() ([]byte, []int) {
  2763. return file_volume_server_proto_rawDescGZIP(), []int{58}
  2764. }
  2765. func (x *VolumeEcShardsMountRequest) GetVolumeId() uint32 {
  2766. if x != nil {
  2767. return x.VolumeId
  2768. }
  2769. return 0
  2770. }
  2771. func (x *VolumeEcShardsMountRequest) GetCollection() string {
  2772. if x != nil {
  2773. return x.Collection
  2774. }
  2775. return ""
  2776. }
  2777. func (x *VolumeEcShardsMountRequest) GetShardIds() []uint32 {
  2778. if x != nil {
  2779. return x.ShardIds
  2780. }
  2781. return nil
  2782. }
  2783. type VolumeEcShardsMountResponse struct {
  2784. state protoimpl.MessageState
  2785. sizeCache protoimpl.SizeCache
  2786. unknownFields protoimpl.UnknownFields
  2787. }
  2788. func (x *VolumeEcShardsMountResponse) Reset() {
  2789. *x = VolumeEcShardsMountResponse{}
  2790. if protoimpl.UnsafeEnabled {
  2791. mi := &file_volume_server_proto_msgTypes[59]
  2792. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2793. ms.StoreMessageInfo(mi)
  2794. }
  2795. }
  2796. func (x *VolumeEcShardsMountResponse) String() string {
  2797. return protoimpl.X.MessageStringOf(x)
  2798. }
  2799. func (*VolumeEcShardsMountResponse) ProtoMessage() {}
  2800. func (x *VolumeEcShardsMountResponse) ProtoReflect() protoreflect.Message {
  2801. mi := &file_volume_server_proto_msgTypes[59]
  2802. if protoimpl.UnsafeEnabled && x != nil {
  2803. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2804. if ms.LoadMessageInfo() == nil {
  2805. ms.StoreMessageInfo(mi)
  2806. }
  2807. return ms
  2808. }
  2809. return mi.MessageOf(x)
  2810. }
  2811. // Deprecated: Use VolumeEcShardsMountResponse.ProtoReflect.Descriptor instead.
  2812. func (*VolumeEcShardsMountResponse) Descriptor() ([]byte, []int) {
  2813. return file_volume_server_proto_rawDescGZIP(), []int{59}
  2814. }
  2815. type VolumeEcShardsUnmountRequest struct {
  2816. state protoimpl.MessageState
  2817. sizeCache protoimpl.SizeCache
  2818. unknownFields protoimpl.UnknownFields
  2819. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2820. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2821. }
  2822. func (x *VolumeEcShardsUnmountRequest) Reset() {
  2823. *x = VolumeEcShardsUnmountRequest{}
  2824. if protoimpl.UnsafeEnabled {
  2825. mi := &file_volume_server_proto_msgTypes[60]
  2826. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2827. ms.StoreMessageInfo(mi)
  2828. }
  2829. }
  2830. func (x *VolumeEcShardsUnmountRequest) String() string {
  2831. return protoimpl.X.MessageStringOf(x)
  2832. }
  2833. func (*VolumeEcShardsUnmountRequest) ProtoMessage() {}
  2834. func (x *VolumeEcShardsUnmountRequest) ProtoReflect() protoreflect.Message {
  2835. mi := &file_volume_server_proto_msgTypes[60]
  2836. if protoimpl.UnsafeEnabled && x != nil {
  2837. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2838. if ms.LoadMessageInfo() == nil {
  2839. ms.StoreMessageInfo(mi)
  2840. }
  2841. return ms
  2842. }
  2843. return mi.MessageOf(x)
  2844. }
  2845. // Deprecated: Use VolumeEcShardsUnmountRequest.ProtoReflect.Descriptor instead.
  2846. func (*VolumeEcShardsUnmountRequest) Descriptor() ([]byte, []int) {
  2847. return file_volume_server_proto_rawDescGZIP(), []int{60}
  2848. }
  2849. func (x *VolumeEcShardsUnmountRequest) GetVolumeId() uint32 {
  2850. if x != nil {
  2851. return x.VolumeId
  2852. }
  2853. return 0
  2854. }
  2855. func (x *VolumeEcShardsUnmountRequest) GetShardIds() []uint32 {
  2856. if x != nil {
  2857. return x.ShardIds
  2858. }
  2859. return nil
  2860. }
  2861. type VolumeEcShardsUnmountResponse struct {
  2862. state protoimpl.MessageState
  2863. sizeCache protoimpl.SizeCache
  2864. unknownFields protoimpl.UnknownFields
  2865. }
  2866. func (x *VolumeEcShardsUnmountResponse) Reset() {
  2867. *x = VolumeEcShardsUnmountResponse{}
  2868. if protoimpl.UnsafeEnabled {
  2869. mi := &file_volume_server_proto_msgTypes[61]
  2870. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2871. ms.StoreMessageInfo(mi)
  2872. }
  2873. }
  2874. func (x *VolumeEcShardsUnmountResponse) String() string {
  2875. return protoimpl.X.MessageStringOf(x)
  2876. }
  2877. func (*VolumeEcShardsUnmountResponse) ProtoMessage() {}
  2878. func (x *VolumeEcShardsUnmountResponse) ProtoReflect() protoreflect.Message {
  2879. mi := &file_volume_server_proto_msgTypes[61]
  2880. if protoimpl.UnsafeEnabled && x != nil {
  2881. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2882. if ms.LoadMessageInfo() == nil {
  2883. ms.StoreMessageInfo(mi)
  2884. }
  2885. return ms
  2886. }
  2887. return mi.MessageOf(x)
  2888. }
  2889. // Deprecated: Use VolumeEcShardsUnmountResponse.ProtoReflect.Descriptor instead.
  2890. func (*VolumeEcShardsUnmountResponse) Descriptor() ([]byte, []int) {
  2891. return file_volume_server_proto_rawDescGZIP(), []int{61}
  2892. }
  2893. type VolumeEcShardReadRequest struct {
  2894. state protoimpl.MessageState
  2895. sizeCache protoimpl.SizeCache
  2896. unknownFields protoimpl.UnknownFields
  2897. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2898. ShardId uint32 `protobuf:"varint,2,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"`
  2899. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
  2900. Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  2901. FileKey uint64 `protobuf:"varint,5,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2902. }
  2903. func (x *VolumeEcShardReadRequest) Reset() {
  2904. *x = VolumeEcShardReadRequest{}
  2905. if protoimpl.UnsafeEnabled {
  2906. mi := &file_volume_server_proto_msgTypes[62]
  2907. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2908. ms.StoreMessageInfo(mi)
  2909. }
  2910. }
  2911. func (x *VolumeEcShardReadRequest) String() string {
  2912. return protoimpl.X.MessageStringOf(x)
  2913. }
  2914. func (*VolumeEcShardReadRequest) ProtoMessage() {}
  2915. func (x *VolumeEcShardReadRequest) ProtoReflect() protoreflect.Message {
  2916. mi := &file_volume_server_proto_msgTypes[62]
  2917. if protoimpl.UnsafeEnabled && x != nil {
  2918. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2919. if ms.LoadMessageInfo() == nil {
  2920. ms.StoreMessageInfo(mi)
  2921. }
  2922. return ms
  2923. }
  2924. return mi.MessageOf(x)
  2925. }
  2926. // Deprecated: Use VolumeEcShardReadRequest.ProtoReflect.Descriptor instead.
  2927. func (*VolumeEcShardReadRequest) Descriptor() ([]byte, []int) {
  2928. return file_volume_server_proto_rawDescGZIP(), []int{62}
  2929. }
  2930. func (x *VolumeEcShardReadRequest) GetVolumeId() uint32 {
  2931. if x != nil {
  2932. return x.VolumeId
  2933. }
  2934. return 0
  2935. }
  2936. func (x *VolumeEcShardReadRequest) GetShardId() uint32 {
  2937. if x != nil {
  2938. return x.ShardId
  2939. }
  2940. return 0
  2941. }
  2942. func (x *VolumeEcShardReadRequest) GetOffset() int64 {
  2943. if x != nil {
  2944. return x.Offset
  2945. }
  2946. return 0
  2947. }
  2948. func (x *VolumeEcShardReadRequest) GetSize() int64 {
  2949. if x != nil {
  2950. return x.Size
  2951. }
  2952. return 0
  2953. }
  2954. func (x *VolumeEcShardReadRequest) GetFileKey() uint64 {
  2955. if x != nil {
  2956. return x.FileKey
  2957. }
  2958. return 0
  2959. }
  2960. type VolumeEcShardReadResponse struct {
  2961. state protoimpl.MessageState
  2962. sizeCache protoimpl.SizeCache
  2963. unknownFields protoimpl.UnknownFields
  2964. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  2965. IsDeleted bool `protobuf:"varint,2,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
  2966. }
  2967. func (x *VolumeEcShardReadResponse) Reset() {
  2968. *x = VolumeEcShardReadResponse{}
  2969. if protoimpl.UnsafeEnabled {
  2970. mi := &file_volume_server_proto_msgTypes[63]
  2971. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2972. ms.StoreMessageInfo(mi)
  2973. }
  2974. }
  2975. func (x *VolumeEcShardReadResponse) String() string {
  2976. return protoimpl.X.MessageStringOf(x)
  2977. }
  2978. func (*VolumeEcShardReadResponse) ProtoMessage() {}
  2979. func (x *VolumeEcShardReadResponse) ProtoReflect() protoreflect.Message {
  2980. mi := &file_volume_server_proto_msgTypes[63]
  2981. if protoimpl.UnsafeEnabled && x != nil {
  2982. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2983. if ms.LoadMessageInfo() == nil {
  2984. ms.StoreMessageInfo(mi)
  2985. }
  2986. return ms
  2987. }
  2988. return mi.MessageOf(x)
  2989. }
  2990. // Deprecated: Use VolumeEcShardReadResponse.ProtoReflect.Descriptor instead.
  2991. func (*VolumeEcShardReadResponse) Descriptor() ([]byte, []int) {
  2992. return file_volume_server_proto_rawDescGZIP(), []int{63}
  2993. }
  2994. func (x *VolumeEcShardReadResponse) GetData() []byte {
  2995. if x != nil {
  2996. return x.Data
  2997. }
  2998. return nil
  2999. }
  3000. func (x *VolumeEcShardReadResponse) GetIsDeleted() bool {
  3001. if x != nil {
  3002. return x.IsDeleted
  3003. }
  3004. return false
  3005. }
  3006. type VolumeEcBlobDeleteRequest struct {
  3007. state protoimpl.MessageState
  3008. sizeCache protoimpl.SizeCache
  3009. unknownFields protoimpl.UnknownFields
  3010. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3011. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3012. FileKey uint64 `protobuf:"varint,3,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  3013. Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
  3014. }
  3015. func (x *VolumeEcBlobDeleteRequest) Reset() {
  3016. *x = VolumeEcBlobDeleteRequest{}
  3017. if protoimpl.UnsafeEnabled {
  3018. mi := &file_volume_server_proto_msgTypes[64]
  3019. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3020. ms.StoreMessageInfo(mi)
  3021. }
  3022. }
  3023. func (x *VolumeEcBlobDeleteRequest) String() string {
  3024. return protoimpl.X.MessageStringOf(x)
  3025. }
  3026. func (*VolumeEcBlobDeleteRequest) ProtoMessage() {}
  3027. func (x *VolumeEcBlobDeleteRequest) ProtoReflect() protoreflect.Message {
  3028. mi := &file_volume_server_proto_msgTypes[64]
  3029. if protoimpl.UnsafeEnabled && x != nil {
  3030. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3031. if ms.LoadMessageInfo() == nil {
  3032. ms.StoreMessageInfo(mi)
  3033. }
  3034. return ms
  3035. }
  3036. return mi.MessageOf(x)
  3037. }
  3038. // Deprecated: Use VolumeEcBlobDeleteRequest.ProtoReflect.Descriptor instead.
  3039. func (*VolumeEcBlobDeleteRequest) Descriptor() ([]byte, []int) {
  3040. return file_volume_server_proto_rawDescGZIP(), []int{64}
  3041. }
  3042. func (x *VolumeEcBlobDeleteRequest) GetVolumeId() uint32 {
  3043. if x != nil {
  3044. return x.VolumeId
  3045. }
  3046. return 0
  3047. }
  3048. func (x *VolumeEcBlobDeleteRequest) GetCollection() string {
  3049. if x != nil {
  3050. return x.Collection
  3051. }
  3052. return ""
  3053. }
  3054. func (x *VolumeEcBlobDeleteRequest) GetFileKey() uint64 {
  3055. if x != nil {
  3056. return x.FileKey
  3057. }
  3058. return 0
  3059. }
  3060. func (x *VolumeEcBlobDeleteRequest) GetVersion() uint32 {
  3061. if x != nil {
  3062. return x.Version
  3063. }
  3064. return 0
  3065. }
  3066. type VolumeEcBlobDeleteResponse struct {
  3067. state protoimpl.MessageState
  3068. sizeCache protoimpl.SizeCache
  3069. unknownFields protoimpl.UnknownFields
  3070. }
  3071. func (x *VolumeEcBlobDeleteResponse) Reset() {
  3072. *x = VolumeEcBlobDeleteResponse{}
  3073. if protoimpl.UnsafeEnabled {
  3074. mi := &file_volume_server_proto_msgTypes[65]
  3075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3076. ms.StoreMessageInfo(mi)
  3077. }
  3078. }
  3079. func (x *VolumeEcBlobDeleteResponse) String() string {
  3080. return protoimpl.X.MessageStringOf(x)
  3081. }
  3082. func (*VolumeEcBlobDeleteResponse) ProtoMessage() {}
  3083. func (x *VolumeEcBlobDeleteResponse) ProtoReflect() protoreflect.Message {
  3084. mi := &file_volume_server_proto_msgTypes[65]
  3085. if protoimpl.UnsafeEnabled && x != nil {
  3086. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3087. if ms.LoadMessageInfo() == nil {
  3088. ms.StoreMessageInfo(mi)
  3089. }
  3090. return ms
  3091. }
  3092. return mi.MessageOf(x)
  3093. }
  3094. // Deprecated: Use VolumeEcBlobDeleteResponse.ProtoReflect.Descriptor instead.
  3095. func (*VolumeEcBlobDeleteResponse) Descriptor() ([]byte, []int) {
  3096. return file_volume_server_proto_rawDescGZIP(), []int{65}
  3097. }
  3098. type VolumeEcShardsToVolumeRequest struct {
  3099. state protoimpl.MessageState
  3100. sizeCache protoimpl.SizeCache
  3101. unknownFields protoimpl.UnknownFields
  3102. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3103. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3104. }
  3105. func (x *VolumeEcShardsToVolumeRequest) Reset() {
  3106. *x = VolumeEcShardsToVolumeRequest{}
  3107. if protoimpl.UnsafeEnabled {
  3108. mi := &file_volume_server_proto_msgTypes[66]
  3109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3110. ms.StoreMessageInfo(mi)
  3111. }
  3112. }
  3113. func (x *VolumeEcShardsToVolumeRequest) String() string {
  3114. return protoimpl.X.MessageStringOf(x)
  3115. }
  3116. func (*VolumeEcShardsToVolumeRequest) ProtoMessage() {}
  3117. func (x *VolumeEcShardsToVolumeRequest) ProtoReflect() protoreflect.Message {
  3118. mi := &file_volume_server_proto_msgTypes[66]
  3119. if protoimpl.UnsafeEnabled && x != nil {
  3120. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3121. if ms.LoadMessageInfo() == nil {
  3122. ms.StoreMessageInfo(mi)
  3123. }
  3124. return ms
  3125. }
  3126. return mi.MessageOf(x)
  3127. }
  3128. // Deprecated: Use VolumeEcShardsToVolumeRequest.ProtoReflect.Descriptor instead.
  3129. func (*VolumeEcShardsToVolumeRequest) Descriptor() ([]byte, []int) {
  3130. return file_volume_server_proto_rawDescGZIP(), []int{66}
  3131. }
  3132. func (x *VolumeEcShardsToVolumeRequest) GetVolumeId() uint32 {
  3133. if x != nil {
  3134. return x.VolumeId
  3135. }
  3136. return 0
  3137. }
  3138. func (x *VolumeEcShardsToVolumeRequest) GetCollection() string {
  3139. if x != nil {
  3140. return x.Collection
  3141. }
  3142. return ""
  3143. }
  3144. type VolumeEcShardsToVolumeResponse struct {
  3145. state protoimpl.MessageState
  3146. sizeCache protoimpl.SizeCache
  3147. unknownFields protoimpl.UnknownFields
  3148. }
  3149. func (x *VolumeEcShardsToVolumeResponse) Reset() {
  3150. *x = VolumeEcShardsToVolumeResponse{}
  3151. if protoimpl.UnsafeEnabled {
  3152. mi := &file_volume_server_proto_msgTypes[67]
  3153. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3154. ms.StoreMessageInfo(mi)
  3155. }
  3156. }
  3157. func (x *VolumeEcShardsToVolumeResponse) String() string {
  3158. return protoimpl.X.MessageStringOf(x)
  3159. }
  3160. func (*VolumeEcShardsToVolumeResponse) ProtoMessage() {}
  3161. func (x *VolumeEcShardsToVolumeResponse) ProtoReflect() protoreflect.Message {
  3162. mi := &file_volume_server_proto_msgTypes[67]
  3163. if protoimpl.UnsafeEnabled && x != nil {
  3164. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3165. if ms.LoadMessageInfo() == nil {
  3166. ms.StoreMessageInfo(mi)
  3167. }
  3168. return ms
  3169. }
  3170. return mi.MessageOf(x)
  3171. }
  3172. // Deprecated: Use VolumeEcShardsToVolumeResponse.ProtoReflect.Descriptor instead.
  3173. func (*VolumeEcShardsToVolumeResponse) Descriptor() ([]byte, []int) {
  3174. return file_volume_server_proto_rawDescGZIP(), []int{67}
  3175. }
  3176. type ReadVolumeFileStatusRequest struct {
  3177. state protoimpl.MessageState
  3178. sizeCache protoimpl.SizeCache
  3179. unknownFields protoimpl.UnknownFields
  3180. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3181. }
  3182. func (x *ReadVolumeFileStatusRequest) Reset() {
  3183. *x = ReadVolumeFileStatusRequest{}
  3184. if protoimpl.UnsafeEnabled {
  3185. mi := &file_volume_server_proto_msgTypes[68]
  3186. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3187. ms.StoreMessageInfo(mi)
  3188. }
  3189. }
  3190. func (x *ReadVolumeFileStatusRequest) String() string {
  3191. return protoimpl.X.MessageStringOf(x)
  3192. }
  3193. func (*ReadVolumeFileStatusRequest) ProtoMessage() {}
  3194. func (x *ReadVolumeFileStatusRequest) ProtoReflect() protoreflect.Message {
  3195. mi := &file_volume_server_proto_msgTypes[68]
  3196. if protoimpl.UnsafeEnabled && x != nil {
  3197. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3198. if ms.LoadMessageInfo() == nil {
  3199. ms.StoreMessageInfo(mi)
  3200. }
  3201. return ms
  3202. }
  3203. return mi.MessageOf(x)
  3204. }
  3205. // Deprecated: Use ReadVolumeFileStatusRequest.ProtoReflect.Descriptor instead.
  3206. func (*ReadVolumeFileStatusRequest) Descriptor() ([]byte, []int) {
  3207. return file_volume_server_proto_rawDescGZIP(), []int{68}
  3208. }
  3209. func (x *ReadVolumeFileStatusRequest) GetVolumeId() uint32 {
  3210. if x != nil {
  3211. return x.VolumeId
  3212. }
  3213. return 0
  3214. }
  3215. type ReadVolumeFileStatusResponse struct {
  3216. state protoimpl.MessageState
  3217. sizeCache protoimpl.SizeCache
  3218. unknownFields protoimpl.UnknownFields
  3219. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3220. IdxFileTimestampSeconds uint64 `protobuf:"varint,2,opt,name=idx_file_timestamp_seconds,json=idxFileTimestampSeconds,proto3" json:"idx_file_timestamp_seconds,omitempty"`
  3221. IdxFileSize uint64 `protobuf:"varint,3,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  3222. DatFileTimestampSeconds uint64 `protobuf:"varint,4,opt,name=dat_file_timestamp_seconds,json=datFileTimestampSeconds,proto3" json:"dat_file_timestamp_seconds,omitempty"`
  3223. DatFileSize uint64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"`
  3224. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  3225. CompactionRevision uint32 `protobuf:"varint,7,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  3226. Collection string `protobuf:"bytes,8,opt,name=collection,proto3" json:"collection,omitempty"`
  3227. DiskType string `protobuf:"bytes,9,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3228. VolumeInfo *VolumeInfo `protobuf:"bytes,10,opt,name=volume_info,json=volumeInfo,proto3" json:"volume_info,omitempty"`
  3229. }
  3230. func (x *ReadVolumeFileStatusResponse) Reset() {
  3231. *x = ReadVolumeFileStatusResponse{}
  3232. if protoimpl.UnsafeEnabled {
  3233. mi := &file_volume_server_proto_msgTypes[69]
  3234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3235. ms.StoreMessageInfo(mi)
  3236. }
  3237. }
  3238. func (x *ReadVolumeFileStatusResponse) String() string {
  3239. return protoimpl.X.MessageStringOf(x)
  3240. }
  3241. func (*ReadVolumeFileStatusResponse) ProtoMessage() {}
  3242. func (x *ReadVolumeFileStatusResponse) ProtoReflect() protoreflect.Message {
  3243. mi := &file_volume_server_proto_msgTypes[69]
  3244. if protoimpl.UnsafeEnabled && x != nil {
  3245. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3246. if ms.LoadMessageInfo() == nil {
  3247. ms.StoreMessageInfo(mi)
  3248. }
  3249. return ms
  3250. }
  3251. return mi.MessageOf(x)
  3252. }
  3253. // Deprecated: Use ReadVolumeFileStatusResponse.ProtoReflect.Descriptor instead.
  3254. func (*ReadVolumeFileStatusResponse) Descriptor() ([]byte, []int) {
  3255. return file_volume_server_proto_rawDescGZIP(), []int{69}
  3256. }
  3257. func (x *ReadVolumeFileStatusResponse) GetVolumeId() uint32 {
  3258. if x != nil {
  3259. return x.VolumeId
  3260. }
  3261. return 0
  3262. }
  3263. func (x *ReadVolumeFileStatusResponse) GetIdxFileTimestampSeconds() uint64 {
  3264. if x != nil {
  3265. return x.IdxFileTimestampSeconds
  3266. }
  3267. return 0
  3268. }
  3269. func (x *ReadVolumeFileStatusResponse) GetIdxFileSize() uint64 {
  3270. if x != nil {
  3271. return x.IdxFileSize
  3272. }
  3273. return 0
  3274. }
  3275. func (x *ReadVolumeFileStatusResponse) GetDatFileTimestampSeconds() uint64 {
  3276. if x != nil {
  3277. return x.DatFileTimestampSeconds
  3278. }
  3279. return 0
  3280. }
  3281. func (x *ReadVolumeFileStatusResponse) GetDatFileSize() uint64 {
  3282. if x != nil {
  3283. return x.DatFileSize
  3284. }
  3285. return 0
  3286. }
  3287. func (x *ReadVolumeFileStatusResponse) GetFileCount() uint64 {
  3288. if x != nil {
  3289. return x.FileCount
  3290. }
  3291. return 0
  3292. }
  3293. func (x *ReadVolumeFileStatusResponse) GetCompactionRevision() uint32 {
  3294. if x != nil {
  3295. return x.CompactionRevision
  3296. }
  3297. return 0
  3298. }
  3299. func (x *ReadVolumeFileStatusResponse) GetCollection() string {
  3300. if x != nil {
  3301. return x.Collection
  3302. }
  3303. return ""
  3304. }
  3305. func (x *ReadVolumeFileStatusResponse) GetDiskType() string {
  3306. if x != nil {
  3307. return x.DiskType
  3308. }
  3309. return ""
  3310. }
  3311. func (x *ReadVolumeFileStatusResponse) GetVolumeInfo() *VolumeInfo {
  3312. if x != nil {
  3313. return x.VolumeInfo
  3314. }
  3315. return nil
  3316. }
  3317. type DiskStatus struct {
  3318. state protoimpl.MessageState
  3319. sizeCache protoimpl.SizeCache
  3320. unknownFields protoimpl.UnknownFields
  3321. Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
  3322. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3323. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3324. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3325. PercentFree float32 `protobuf:"fixed32,5,opt,name=percent_free,json=percentFree,proto3" json:"percent_free,omitempty"`
  3326. PercentUsed float32 `protobuf:"fixed32,6,opt,name=percent_used,json=percentUsed,proto3" json:"percent_used,omitempty"`
  3327. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3328. }
  3329. func (x *DiskStatus) Reset() {
  3330. *x = DiskStatus{}
  3331. if protoimpl.UnsafeEnabled {
  3332. mi := &file_volume_server_proto_msgTypes[70]
  3333. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3334. ms.StoreMessageInfo(mi)
  3335. }
  3336. }
  3337. func (x *DiskStatus) String() string {
  3338. return protoimpl.X.MessageStringOf(x)
  3339. }
  3340. func (*DiskStatus) ProtoMessage() {}
  3341. func (x *DiskStatus) ProtoReflect() protoreflect.Message {
  3342. mi := &file_volume_server_proto_msgTypes[70]
  3343. if protoimpl.UnsafeEnabled && x != nil {
  3344. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3345. if ms.LoadMessageInfo() == nil {
  3346. ms.StoreMessageInfo(mi)
  3347. }
  3348. return ms
  3349. }
  3350. return mi.MessageOf(x)
  3351. }
  3352. // Deprecated: Use DiskStatus.ProtoReflect.Descriptor instead.
  3353. func (*DiskStatus) Descriptor() ([]byte, []int) {
  3354. return file_volume_server_proto_rawDescGZIP(), []int{70}
  3355. }
  3356. func (x *DiskStatus) GetDir() string {
  3357. if x != nil {
  3358. return x.Dir
  3359. }
  3360. return ""
  3361. }
  3362. func (x *DiskStatus) GetAll() uint64 {
  3363. if x != nil {
  3364. return x.All
  3365. }
  3366. return 0
  3367. }
  3368. func (x *DiskStatus) GetUsed() uint64 {
  3369. if x != nil {
  3370. return x.Used
  3371. }
  3372. return 0
  3373. }
  3374. func (x *DiskStatus) GetFree() uint64 {
  3375. if x != nil {
  3376. return x.Free
  3377. }
  3378. return 0
  3379. }
  3380. func (x *DiskStatus) GetPercentFree() float32 {
  3381. if x != nil {
  3382. return x.PercentFree
  3383. }
  3384. return 0
  3385. }
  3386. func (x *DiskStatus) GetPercentUsed() float32 {
  3387. if x != nil {
  3388. return x.PercentUsed
  3389. }
  3390. return 0
  3391. }
  3392. func (x *DiskStatus) GetDiskType() string {
  3393. if x != nil {
  3394. return x.DiskType
  3395. }
  3396. return ""
  3397. }
  3398. type MemStatus struct {
  3399. state protoimpl.MessageState
  3400. sizeCache protoimpl.SizeCache
  3401. unknownFields protoimpl.UnknownFields
  3402. Goroutines int32 `protobuf:"varint,1,opt,name=goroutines,proto3" json:"goroutines,omitempty"`
  3403. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3404. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3405. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3406. Self uint64 `protobuf:"varint,5,opt,name=self,proto3" json:"self,omitempty"`
  3407. Heap uint64 `protobuf:"varint,6,opt,name=heap,proto3" json:"heap,omitempty"`
  3408. Stack uint64 `protobuf:"varint,7,opt,name=stack,proto3" json:"stack,omitempty"`
  3409. }
  3410. func (x *MemStatus) Reset() {
  3411. *x = MemStatus{}
  3412. if protoimpl.UnsafeEnabled {
  3413. mi := &file_volume_server_proto_msgTypes[71]
  3414. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3415. ms.StoreMessageInfo(mi)
  3416. }
  3417. }
  3418. func (x *MemStatus) String() string {
  3419. return protoimpl.X.MessageStringOf(x)
  3420. }
  3421. func (*MemStatus) ProtoMessage() {}
  3422. func (x *MemStatus) ProtoReflect() protoreflect.Message {
  3423. mi := &file_volume_server_proto_msgTypes[71]
  3424. if protoimpl.UnsafeEnabled && x != nil {
  3425. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3426. if ms.LoadMessageInfo() == nil {
  3427. ms.StoreMessageInfo(mi)
  3428. }
  3429. return ms
  3430. }
  3431. return mi.MessageOf(x)
  3432. }
  3433. // Deprecated: Use MemStatus.ProtoReflect.Descriptor instead.
  3434. func (*MemStatus) Descriptor() ([]byte, []int) {
  3435. return file_volume_server_proto_rawDescGZIP(), []int{71}
  3436. }
  3437. func (x *MemStatus) GetGoroutines() int32 {
  3438. if x != nil {
  3439. return x.Goroutines
  3440. }
  3441. return 0
  3442. }
  3443. func (x *MemStatus) GetAll() uint64 {
  3444. if x != nil {
  3445. return x.All
  3446. }
  3447. return 0
  3448. }
  3449. func (x *MemStatus) GetUsed() uint64 {
  3450. if x != nil {
  3451. return x.Used
  3452. }
  3453. return 0
  3454. }
  3455. func (x *MemStatus) GetFree() uint64 {
  3456. if x != nil {
  3457. return x.Free
  3458. }
  3459. return 0
  3460. }
  3461. func (x *MemStatus) GetSelf() uint64 {
  3462. if x != nil {
  3463. return x.Self
  3464. }
  3465. return 0
  3466. }
  3467. func (x *MemStatus) GetHeap() uint64 {
  3468. if x != nil {
  3469. return x.Heap
  3470. }
  3471. return 0
  3472. }
  3473. func (x *MemStatus) GetStack() uint64 {
  3474. if x != nil {
  3475. return x.Stack
  3476. }
  3477. return 0
  3478. }
  3479. // tired storage on volume servers
  3480. type RemoteFile struct {
  3481. state protoimpl.MessageState
  3482. sizeCache protoimpl.SizeCache
  3483. unknownFields protoimpl.UnknownFields
  3484. BackendType string `protobuf:"bytes,1,opt,name=backend_type,json=backendType,proto3" json:"backend_type,omitempty"`
  3485. BackendId string `protobuf:"bytes,2,opt,name=backend_id,json=backendId,proto3" json:"backend_id,omitempty"`
  3486. Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
  3487. Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  3488. FileSize uint64 `protobuf:"varint,5,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
  3489. ModifiedTime uint64 `protobuf:"varint,6,opt,name=modified_time,json=modifiedTime,proto3" json:"modified_time,omitempty"`
  3490. Extension string `protobuf:"bytes,7,opt,name=extension,proto3" json:"extension,omitempty"`
  3491. }
  3492. func (x *RemoteFile) Reset() {
  3493. *x = RemoteFile{}
  3494. if protoimpl.UnsafeEnabled {
  3495. mi := &file_volume_server_proto_msgTypes[72]
  3496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3497. ms.StoreMessageInfo(mi)
  3498. }
  3499. }
  3500. func (x *RemoteFile) String() string {
  3501. return protoimpl.X.MessageStringOf(x)
  3502. }
  3503. func (*RemoteFile) ProtoMessage() {}
  3504. func (x *RemoteFile) ProtoReflect() protoreflect.Message {
  3505. mi := &file_volume_server_proto_msgTypes[72]
  3506. if protoimpl.UnsafeEnabled && x != nil {
  3507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3508. if ms.LoadMessageInfo() == nil {
  3509. ms.StoreMessageInfo(mi)
  3510. }
  3511. return ms
  3512. }
  3513. return mi.MessageOf(x)
  3514. }
  3515. // Deprecated: Use RemoteFile.ProtoReflect.Descriptor instead.
  3516. func (*RemoteFile) Descriptor() ([]byte, []int) {
  3517. return file_volume_server_proto_rawDescGZIP(), []int{72}
  3518. }
  3519. func (x *RemoteFile) GetBackendType() string {
  3520. if x != nil {
  3521. return x.BackendType
  3522. }
  3523. return ""
  3524. }
  3525. func (x *RemoteFile) GetBackendId() string {
  3526. if x != nil {
  3527. return x.BackendId
  3528. }
  3529. return ""
  3530. }
  3531. func (x *RemoteFile) GetKey() string {
  3532. if x != nil {
  3533. return x.Key
  3534. }
  3535. return ""
  3536. }
  3537. func (x *RemoteFile) GetOffset() uint64 {
  3538. if x != nil {
  3539. return x.Offset
  3540. }
  3541. return 0
  3542. }
  3543. func (x *RemoteFile) GetFileSize() uint64 {
  3544. if x != nil {
  3545. return x.FileSize
  3546. }
  3547. return 0
  3548. }
  3549. func (x *RemoteFile) GetModifiedTime() uint64 {
  3550. if x != nil {
  3551. return x.ModifiedTime
  3552. }
  3553. return 0
  3554. }
  3555. func (x *RemoteFile) GetExtension() string {
  3556. if x != nil {
  3557. return x.Extension
  3558. }
  3559. return ""
  3560. }
  3561. type VolumeInfo struct {
  3562. state protoimpl.MessageState
  3563. sizeCache protoimpl.SizeCache
  3564. unknownFields protoimpl.UnknownFields
  3565. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
  3566. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
  3567. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  3568. BytesOffset uint32 `protobuf:"varint,4,opt,name=BytesOffset,proto3" json:"BytesOffset,omitempty"`
  3569. DatFileSize int64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"` // used for EC encoded volumes to store the original file size
  3570. DestroyTime uint64 `protobuf:"varint,6,opt,name=DestroyTime,proto3" json:"DestroyTime,omitempty"` // used to record the destruction time of ec volume
  3571. ReadOnly bool `protobuf:"varint,7,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"`
  3572. }
  3573. func (x *VolumeInfo) Reset() {
  3574. *x = VolumeInfo{}
  3575. if protoimpl.UnsafeEnabled {
  3576. mi := &file_volume_server_proto_msgTypes[73]
  3577. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3578. ms.StoreMessageInfo(mi)
  3579. }
  3580. }
  3581. func (x *VolumeInfo) String() string {
  3582. return protoimpl.X.MessageStringOf(x)
  3583. }
  3584. func (*VolumeInfo) ProtoMessage() {}
  3585. func (x *VolumeInfo) ProtoReflect() protoreflect.Message {
  3586. mi := &file_volume_server_proto_msgTypes[73]
  3587. if protoimpl.UnsafeEnabled && x != nil {
  3588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3589. if ms.LoadMessageInfo() == nil {
  3590. ms.StoreMessageInfo(mi)
  3591. }
  3592. return ms
  3593. }
  3594. return mi.MessageOf(x)
  3595. }
  3596. // Deprecated: Use VolumeInfo.ProtoReflect.Descriptor instead.
  3597. func (*VolumeInfo) Descriptor() ([]byte, []int) {
  3598. return file_volume_server_proto_rawDescGZIP(), []int{73}
  3599. }
  3600. func (x *VolumeInfo) GetFiles() []*RemoteFile {
  3601. if x != nil {
  3602. return x.Files
  3603. }
  3604. return nil
  3605. }
  3606. func (x *VolumeInfo) GetVersion() uint32 {
  3607. if x != nil {
  3608. return x.Version
  3609. }
  3610. return 0
  3611. }
  3612. func (x *VolumeInfo) GetReplication() string {
  3613. if x != nil {
  3614. return x.Replication
  3615. }
  3616. return ""
  3617. }
  3618. func (x *VolumeInfo) GetBytesOffset() uint32 {
  3619. if x != nil {
  3620. return x.BytesOffset
  3621. }
  3622. return 0
  3623. }
  3624. func (x *VolumeInfo) GetDatFileSize() int64 {
  3625. if x != nil {
  3626. return x.DatFileSize
  3627. }
  3628. return 0
  3629. }
  3630. func (x *VolumeInfo) GetDestroyTime() uint64 {
  3631. if x != nil {
  3632. return x.DestroyTime
  3633. }
  3634. return 0
  3635. }
  3636. func (x *VolumeInfo) GetReadOnly() bool {
  3637. if x != nil {
  3638. return x.ReadOnly
  3639. }
  3640. return false
  3641. }
  3642. // tiered storage
  3643. type VolumeTierMoveDatToRemoteRequest struct {
  3644. state protoimpl.MessageState
  3645. sizeCache protoimpl.SizeCache
  3646. unknownFields protoimpl.UnknownFields
  3647. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3648. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3649. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName,proto3" json:"destination_backend_name,omitempty"`
  3650. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile,proto3" json:"keep_local_dat_file,omitempty"`
  3651. }
  3652. func (x *VolumeTierMoveDatToRemoteRequest) Reset() {
  3653. *x = VolumeTierMoveDatToRemoteRequest{}
  3654. if protoimpl.UnsafeEnabled {
  3655. mi := &file_volume_server_proto_msgTypes[74]
  3656. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3657. ms.StoreMessageInfo(mi)
  3658. }
  3659. }
  3660. func (x *VolumeTierMoveDatToRemoteRequest) String() string {
  3661. return protoimpl.X.MessageStringOf(x)
  3662. }
  3663. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  3664. func (x *VolumeTierMoveDatToRemoteRequest) ProtoReflect() protoreflect.Message {
  3665. mi := &file_volume_server_proto_msgTypes[74]
  3666. if protoimpl.UnsafeEnabled && x != nil {
  3667. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3668. if ms.LoadMessageInfo() == nil {
  3669. ms.StoreMessageInfo(mi)
  3670. }
  3671. return ms
  3672. }
  3673. return mi.MessageOf(x)
  3674. }
  3675. // Deprecated: Use VolumeTierMoveDatToRemoteRequest.ProtoReflect.Descriptor instead.
  3676. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  3677. return file_volume_server_proto_rawDescGZIP(), []int{74}
  3678. }
  3679. func (x *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  3680. if x != nil {
  3681. return x.VolumeId
  3682. }
  3683. return 0
  3684. }
  3685. func (x *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  3686. if x != nil {
  3687. return x.Collection
  3688. }
  3689. return ""
  3690. }
  3691. func (x *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  3692. if x != nil {
  3693. return x.DestinationBackendName
  3694. }
  3695. return ""
  3696. }
  3697. func (x *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  3698. if x != nil {
  3699. return x.KeepLocalDatFile
  3700. }
  3701. return false
  3702. }
  3703. type VolumeTierMoveDatToRemoteResponse struct {
  3704. state protoimpl.MessageState
  3705. sizeCache protoimpl.SizeCache
  3706. unknownFields protoimpl.UnknownFields
  3707. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3708. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3709. }
  3710. func (x *VolumeTierMoveDatToRemoteResponse) Reset() {
  3711. *x = VolumeTierMoveDatToRemoteResponse{}
  3712. if protoimpl.UnsafeEnabled {
  3713. mi := &file_volume_server_proto_msgTypes[75]
  3714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3715. ms.StoreMessageInfo(mi)
  3716. }
  3717. }
  3718. func (x *VolumeTierMoveDatToRemoteResponse) String() string {
  3719. return protoimpl.X.MessageStringOf(x)
  3720. }
  3721. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  3722. func (x *VolumeTierMoveDatToRemoteResponse) ProtoReflect() protoreflect.Message {
  3723. mi := &file_volume_server_proto_msgTypes[75]
  3724. if protoimpl.UnsafeEnabled && x != nil {
  3725. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3726. if ms.LoadMessageInfo() == nil {
  3727. ms.StoreMessageInfo(mi)
  3728. }
  3729. return ms
  3730. }
  3731. return mi.MessageOf(x)
  3732. }
  3733. // Deprecated: Use VolumeTierMoveDatToRemoteResponse.ProtoReflect.Descriptor instead.
  3734. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  3735. return file_volume_server_proto_rawDescGZIP(), []int{75}
  3736. }
  3737. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  3738. if x != nil {
  3739. return x.Processed
  3740. }
  3741. return 0
  3742. }
  3743. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  3744. if x != nil {
  3745. return x.ProcessedPercentage
  3746. }
  3747. return 0
  3748. }
  3749. type VolumeTierMoveDatFromRemoteRequest struct {
  3750. state protoimpl.MessageState
  3751. sizeCache protoimpl.SizeCache
  3752. unknownFields protoimpl.UnknownFields
  3753. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3754. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3755. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile,proto3" json:"keep_remote_dat_file,omitempty"`
  3756. }
  3757. func (x *VolumeTierMoveDatFromRemoteRequest) Reset() {
  3758. *x = VolumeTierMoveDatFromRemoteRequest{}
  3759. if protoimpl.UnsafeEnabled {
  3760. mi := &file_volume_server_proto_msgTypes[76]
  3761. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3762. ms.StoreMessageInfo(mi)
  3763. }
  3764. }
  3765. func (x *VolumeTierMoveDatFromRemoteRequest) String() string {
  3766. return protoimpl.X.MessageStringOf(x)
  3767. }
  3768. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  3769. func (x *VolumeTierMoveDatFromRemoteRequest) ProtoReflect() protoreflect.Message {
  3770. mi := &file_volume_server_proto_msgTypes[76]
  3771. if protoimpl.UnsafeEnabled && x != nil {
  3772. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3773. if ms.LoadMessageInfo() == nil {
  3774. ms.StoreMessageInfo(mi)
  3775. }
  3776. return ms
  3777. }
  3778. return mi.MessageOf(x)
  3779. }
  3780. // Deprecated: Use VolumeTierMoveDatFromRemoteRequest.ProtoReflect.Descriptor instead.
  3781. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  3782. return file_volume_server_proto_rawDescGZIP(), []int{76}
  3783. }
  3784. func (x *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  3785. if x != nil {
  3786. return x.VolumeId
  3787. }
  3788. return 0
  3789. }
  3790. func (x *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  3791. if x != nil {
  3792. return x.Collection
  3793. }
  3794. return ""
  3795. }
  3796. func (x *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  3797. if x != nil {
  3798. return x.KeepRemoteDatFile
  3799. }
  3800. return false
  3801. }
  3802. type VolumeTierMoveDatFromRemoteResponse struct {
  3803. state protoimpl.MessageState
  3804. sizeCache protoimpl.SizeCache
  3805. unknownFields protoimpl.UnknownFields
  3806. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3807. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3808. }
  3809. func (x *VolumeTierMoveDatFromRemoteResponse) Reset() {
  3810. *x = VolumeTierMoveDatFromRemoteResponse{}
  3811. if protoimpl.UnsafeEnabled {
  3812. mi := &file_volume_server_proto_msgTypes[77]
  3813. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3814. ms.StoreMessageInfo(mi)
  3815. }
  3816. }
  3817. func (x *VolumeTierMoveDatFromRemoteResponse) String() string {
  3818. return protoimpl.X.MessageStringOf(x)
  3819. }
  3820. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  3821. func (x *VolumeTierMoveDatFromRemoteResponse) ProtoReflect() protoreflect.Message {
  3822. mi := &file_volume_server_proto_msgTypes[77]
  3823. if protoimpl.UnsafeEnabled && x != nil {
  3824. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3825. if ms.LoadMessageInfo() == nil {
  3826. ms.StoreMessageInfo(mi)
  3827. }
  3828. return ms
  3829. }
  3830. return mi.MessageOf(x)
  3831. }
  3832. // Deprecated: Use VolumeTierMoveDatFromRemoteResponse.ProtoReflect.Descriptor instead.
  3833. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  3834. return file_volume_server_proto_rawDescGZIP(), []int{77}
  3835. }
  3836. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  3837. if x != nil {
  3838. return x.Processed
  3839. }
  3840. return 0
  3841. }
  3842. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  3843. if x != nil {
  3844. return x.ProcessedPercentage
  3845. }
  3846. return 0
  3847. }
  3848. type VolumeServerStatusRequest struct {
  3849. state protoimpl.MessageState
  3850. sizeCache protoimpl.SizeCache
  3851. unknownFields protoimpl.UnknownFields
  3852. }
  3853. func (x *VolumeServerStatusRequest) Reset() {
  3854. *x = VolumeServerStatusRequest{}
  3855. if protoimpl.UnsafeEnabled {
  3856. mi := &file_volume_server_proto_msgTypes[78]
  3857. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3858. ms.StoreMessageInfo(mi)
  3859. }
  3860. }
  3861. func (x *VolumeServerStatusRequest) String() string {
  3862. return protoimpl.X.MessageStringOf(x)
  3863. }
  3864. func (*VolumeServerStatusRequest) ProtoMessage() {}
  3865. func (x *VolumeServerStatusRequest) ProtoReflect() protoreflect.Message {
  3866. mi := &file_volume_server_proto_msgTypes[78]
  3867. if protoimpl.UnsafeEnabled && x != nil {
  3868. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3869. if ms.LoadMessageInfo() == nil {
  3870. ms.StoreMessageInfo(mi)
  3871. }
  3872. return ms
  3873. }
  3874. return mi.MessageOf(x)
  3875. }
  3876. // Deprecated: Use VolumeServerStatusRequest.ProtoReflect.Descriptor instead.
  3877. func (*VolumeServerStatusRequest) Descriptor() ([]byte, []int) {
  3878. return file_volume_server_proto_rawDescGZIP(), []int{78}
  3879. }
  3880. type VolumeServerStatusResponse struct {
  3881. state protoimpl.MessageState
  3882. sizeCache protoimpl.SizeCache
  3883. unknownFields protoimpl.UnknownFields
  3884. DiskStatuses []*DiskStatus `protobuf:"bytes,1,rep,name=disk_statuses,json=diskStatuses,proto3" json:"disk_statuses,omitempty"`
  3885. MemoryStatus *MemStatus `protobuf:"bytes,2,opt,name=memory_status,json=memoryStatus,proto3" json:"memory_status,omitempty"`
  3886. Version string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
  3887. DataCenter string `protobuf:"bytes,4,opt,name=data_center,json=dataCenter,proto3" json:"data_center,omitempty"`
  3888. Rack string `protobuf:"bytes,5,opt,name=rack,proto3" json:"rack,omitempty"`
  3889. }
  3890. func (x *VolumeServerStatusResponse) Reset() {
  3891. *x = VolumeServerStatusResponse{}
  3892. if protoimpl.UnsafeEnabled {
  3893. mi := &file_volume_server_proto_msgTypes[79]
  3894. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3895. ms.StoreMessageInfo(mi)
  3896. }
  3897. }
  3898. func (x *VolumeServerStatusResponse) String() string {
  3899. return protoimpl.X.MessageStringOf(x)
  3900. }
  3901. func (*VolumeServerStatusResponse) ProtoMessage() {}
  3902. func (x *VolumeServerStatusResponse) ProtoReflect() protoreflect.Message {
  3903. mi := &file_volume_server_proto_msgTypes[79]
  3904. if protoimpl.UnsafeEnabled && x != nil {
  3905. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3906. if ms.LoadMessageInfo() == nil {
  3907. ms.StoreMessageInfo(mi)
  3908. }
  3909. return ms
  3910. }
  3911. return mi.MessageOf(x)
  3912. }
  3913. // Deprecated: Use VolumeServerStatusResponse.ProtoReflect.Descriptor instead.
  3914. func (*VolumeServerStatusResponse) Descriptor() ([]byte, []int) {
  3915. return file_volume_server_proto_rawDescGZIP(), []int{79}
  3916. }
  3917. func (x *VolumeServerStatusResponse) GetDiskStatuses() []*DiskStatus {
  3918. if x != nil {
  3919. return x.DiskStatuses
  3920. }
  3921. return nil
  3922. }
  3923. func (x *VolumeServerStatusResponse) GetMemoryStatus() *MemStatus {
  3924. if x != nil {
  3925. return x.MemoryStatus
  3926. }
  3927. return nil
  3928. }
  3929. func (x *VolumeServerStatusResponse) GetVersion() string {
  3930. if x != nil {
  3931. return x.Version
  3932. }
  3933. return ""
  3934. }
  3935. func (x *VolumeServerStatusResponse) GetDataCenter() string {
  3936. if x != nil {
  3937. return x.DataCenter
  3938. }
  3939. return ""
  3940. }
  3941. func (x *VolumeServerStatusResponse) GetRack() string {
  3942. if x != nil {
  3943. return x.Rack
  3944. }
  3945. return ""
  3946. }
  3947. type VolumeServerLeaveRequest struct {
  3948. state protoimpl.MessageState
  3949. sizeCache protoimpl.SizeCache
  3950. unknownFields protoimpl.UnknownFields
  3951. }
  3952. func (x *VolumeServerLeaveRequest) Reset() {
  3953. *x = VolumeServerLeaveRequest{}
  3954. if protoimpl.UnsafeEnabled {
  3955. mi := &file_volume_server_proto_msgTypes[80]
  3956. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3957. ms.StoreMessageInfo(mi)
  3958. }
  3959. }
  3960. func (x *VolumeServerLeaveRequest) String() string {
  3961. return protoimpl.X.MessageStringOf(x)
  3962. }
  3963. func (*VolumeServerLeaveRequest) ProtoMessage() {}
  3964. func (x *VolumeServerLeaveRequest) ProtoReflect() protoreflect.Message {
  3965. mi := &file_volume_server_proto_msgTypes[80]
  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 VolumeServerLeaveRequest.ProtoReflect.Descriptor instead.
  3976. func (*VolumeServerLeaveRequest) Descriptor() ([]byte, []int) {
  3977. return file_volume_server_proto_rawDescGZIP(), []int{80}
  3978. }
  3979. type VolumeServerLeaveResponse struct {
  3980. state protoimpl.MessageState
  3981. sizeCache protoimpl.SizeCache
  3982. unknownFields protoimpl.UnknownFields
  3983. }
  3984. func (x *VolumeServerLeaveResponse) Reset() {
  3985. *x = VolumeServerLeaveResponse{}
  3986. if protoimpl.UnsafeEnabled {
  3987. mi := &file_volume_server_proto_msgTypes[81]
  3988. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3989. ms.StoreMessageInfo(mi)
  3990. }
  3991. }
  3992. func (x *VolumeServerLeaveResponse) String() string {
  3993. return protoimpl.X.MessageStringOf(x)
  3994. }
  3995. func (*VolumeServerLeaveResponse) ProtoMessage() {}
  3996. func (x *VolumeServerLeaveResponse) ProtoReflect() protoreflect.Message {
  3997. mi := &file_volume_server_proto_msgTypes[81]
  3998. if protoimpl.UnsafeEnabled && x != nil {
  3999. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4000. if ms.LoadMessageInfo() == nil {
  4001. ms.StoreMessageInfo(mi)
  4002. }
  4003. return ms
  4004. }
  4005. return mi.MessageOf(x)
  4006. }
  4007. // Deprecated: Use VolumeServerLeaveResponse.ProtoReflect.Descriptor instead.
  4008. func (*VolumeServerLeaveResponse) Descriptor() ([]byte, []int) {
  4009. return file_volume_server_proto_rawDescGZIP(), []int{81}
  4010. }
  4011. // remote storage
  4012. type FetchAndWriteNeedleRequest struct {
  4013. state protoimpl.MessageState
  4014. sizeCache protoimpl.SizeCache
  4015. unknownFields protoimpl.UnknownFields
  4016. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  4017. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4018. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  4019. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  4020. Size int64 `protobuf:"varint,5,opt,name=size,proto3" json:"size,omitempty"`
  4021. Replicas []*FetchAndWriteNeedleRequest_Replica `protobuf:"bytes,6,rep,name=replicas,proto3" json:"replicas,omitempty"`
  4022. Auth string `protobuf:"bytes,7,opt,name=auth,proto3" json:"auth,omitempty"`
  4023. // remote conf
  4024. RemoteConf *remote_pb.RemoteConf `protobuf:"bytes,15,opt,name=remote_conf,json=remoteConf,proto3" json:"remote_conf,omitempty"`
  4025. RemoteLocation *remote_pb.RemoteStorageLocation `protobuf:"bytes,16,opt,name=remote_location,json=remoteLocation,proto3" json:"remote_location,omitempty"`
  4026. }
  4027. func (x *FetchAndWriteNeedleRequest) Reset() {
  4028. *x = FetchAndWriteNeedleRequest{}
  4029. if protoimpl.UnsafeEnabled {
  4030. mi := &file_volume_server_proto_msgTypes[82]
  4031. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4032. ms.StoreMessageInfo(mi)
  4033. }
  4034. }
  4035. func (x *FetchAndWriteNeedleRequest) String() string {
  4036. return protoimpl.X.MessageStringOf(x)
  4037. }
  4038. func (*FetchAndWriteNeedleRequest) ProtoMessage() {}
  4039. func (x *FetchAndWriteNeedleRequest) ProtoReflect() protoreflect.Message {
  4040. mi := &file_volume_server_proto_msgTypes[82]
  4041. if protoimpl.UnsafeEnabled && x != nil {
  4042. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4043. if ms.LoadMessageInfo() == nil {
  4044. ms.StoreMessageInfo(mi)
  4045. }
  4046. return ms
  4047. }
  4048. return mi.MessageOf(x)
  4049. }
  4050. // Deprecated: Use FetchAndWriteNeedleRequest.ProtoReflect.Descriptor instead.
  4051. func (*FetchAndWriteNeedleRequest) Descriptor() ([]byte, []int) {
  4052. return file_volume_server_proto_rawDescGZIP(), []int{82}
  4053. }
  4054. func (x *FetchAndWriteNeedleRequest) GetVolumeId() uint32 {
  4055. if x != nil {
  4056. return x.VolumeId
  4057. }
  4058. return 0
  4059. }
  4060. func (x *FetchAndWriteNeedleRequest) GetNeedleId() uint64 {
  4061. if x != nil {
  4062. return x.NeedleId
  4063. }
  4064. return 0
  4065. }
  4066. func (x *FetchAndWriteNeedleRequest) GetCookie() uint32 {
  4067. if x != nil {
  4068. return x.Cookie
  4069. }
  4070. return 0
  4071. }
  4072. func (x *FetchAndWriteNeedleRequest) GetOffset() int64 {
  4073. if x != nil {
  4074. return x.Offset
  4075. }
  4076. return 0
  4077. }
  4078. func (x *FetchAndWriteNeedleRequest) GetSize() int64 {
  4079. if x != nil {
  4080. return x.Size
  4081. }
  4082. return 0
  4083. }
  4084. func (x *FetchAndWriteNeedleRequest) GetReplicas() []*FetchAndWriteNeedleRequest_Replica {
  4085. if x != nil {
  4086. return x.Replicas
  4087. }
  4088. return nil
  4089. }
  4090. func (x *FetchAndWriteNeedleRequest) GetAuth() string {
  4091. if x != nil {
  4092. return x.Auth
  4093. }
  4094. return ""
  4095. }
  4096. func (x *FetchAndWriteNeedleRequest) GetRemoteConf() *remote_pb.RemoteConf {
  4097. if x != nil {
  4098. return x.RemoteConf
  4099. }
  4100. return nil
  4101. }
  4102. func (x *FetchAndWriteNeedleRequest) GetRemoteLocation() *remote_pb.RemoteStorageLocation {
  4103. if x != nil {
  4104. return x.RemoteLocation
  4105. }
  4106. return nil
  4107. }
  4108. type FetchAndWriteNeedleResponse struct {
  4109. state protoimpl.MessageState
  4110. sizeCache protoimpl.SizeCache
  4111. unknownFields protoimpl.UnknownFields
  4112. ETag string `protobuf:"bytes,1,opt,name=e_tag,json=eTag,proto3" json:"e_tag,omitempty"`
  4113. }
  4114. func (x *FetchAndWriteNeedleResponse) Reset() {
  4115. *x = FetchAndWriteNeedleResponse{}
  4116. if protoimpl.UnsafeEnabled {
  4117. mi := &file_volume_server_proto_msgTypes[83]
  4118. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4119. ms.StoreMessageInfo(mi)
  4120. }
  4121. }
  4122. func (x *FetchAndWriteNeedleResponse) String() string {
  4123. return protoimpl.X.MessageStringOf(x)
  4124. }
  4125. func (*FetchAndWriteNeedleResponse) ProtoMessage() {}
  4126. func (x *FetchAndWriteNeedleResponse) ProtoReflect() protoreflect.Message {
  4127. mi := &file_volume_server_proto_msgTypes[83]
  4128. if protoimpl.UnsafeEnabled && x != nil {
  4129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4130. if ms.LoadMessageInfo() == nil {
  4131. ms.StoreMessageInfo(mi)
  4132. }
  4133. return ms
  4134. }
  4135. return mi.MessageOf(x)
  4136. }
  4137. // Deprecated: Use FetchAndWriteNeedleResponse.ProtoReflect.Descriptor instead.
  4138. func (*FetchAndWriteNeedleResponse) Descriptor() ([]byte, []int) {
  4139. return file_volume_server_proto_rawDescGZIP(), []int{83}
  4140. }
  4141. func (x *FetchAndWriteNeedleResponse) GetETag() string {
  4142. if x != nil {
  4143. return x.ETag
  4144. }
  4145. return ""
  4146. }
  4147. // select on volume servers
  4148. type QueryRequest struct {
  4149. state protoimpl.MessageState
  4150. sizeCache protoimpl.SizeCache
  4151. unknownFields protoimpl.UnknownFields
  4152. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  4153. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  4154. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  4155. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  4156. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  4157. }
  4158. func (x *QueryRequest) Reset() {
  4159. *x = QueryRequest{}
  4160. if protoimpl.UnsafeEnabled {
  4161. mi := &file_volume_server_proto_msgTypes[84]
  4162. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4163. ms.StoreMessageInfo(mi)
  4164. }
  4165. }
  4166. func (x *QueryRequest) String() string {
  4167. return protoimpl.X.MessageStringOf(x)
  4168. }
  4169. func (*QueryRequest) ProtoMessage() {}
  4170. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  4171. mi := &file_volume_server_proto_msgTypes[84]
  4172. if protoimpl.UnsafeEnabled && x != nil {
  4173. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4174. if ms.LoadMessageInfo() == nil {
  4175. ms.StoreMessageInfo(mi)
  4176. }
  4177. return ms
  4178. }
  4179. return mi.MessageOf(x)
  4180. }
  4181. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  4182. func (*QueryRequest) Descriptor() ([]byte, []int) {
  4183. return file_volume_server_proto_rawDescGZIP(), []int{84}
  4184. }
  4185. func (x *QueryRequest) GetSelections() []string {
  4186. if x != nil {
  4187. return x.Selections
  4188. }
  4189. return nil
  4190. }
  4191. func (x *QueryRequest) GetFromFileIds() []string {
  4192. if x != nil {
  4193. return x.FromFileIds
  4194. }
  4195. return nil
  4196. }
  4197. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  4198. if x != nil {
  4199. return x.Filter
  4200. }
  4201. return nil
  4202. }
  4203. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  4204. if x != nil {
  4205. return x.InputSerialization
  4206. }
  4207. return nil
  4208. }
  4209. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  4210. if x != nil {
  4211. return x.OutputSerialization
  4212. }
  4213. return nil
  4214. }
  4215. type QueriedStripe struct {
  4216. state protoimpl.MessageState
  4217. sizeCache protoimpl.SizeCache
  4218. unknownFields protoimpl.UnknownFields
  4219. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  4220. }
  4221. func (x *QueriedStripe) Reset() {
  4222. *x = QueriedStripe{}
  4223. if protoimpl.UnsafeEnabled {
  4224. mi := &file_volume_server_proto_msgTypes[85]
  4225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4226. ms.StoreMessageInfo(mi)
  4227. }
  4228. }
  4229. func (x *QueriedStripe) String() string {
  4230. return protoimpl.X.MessageStringOf(x)
  4231. }
  4232. func (*QueriedStripe) ProtoMessage() {}
  4233. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  4234. mi := &file_volume_server_proto_msgTypes[85]
  4235. if protoimpl.UnsafeEnabled && x != nil {
  4236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4237. if ms.LoadMessageInfo() == nil {
  4238. ms.StoreMessageInfo(mi)
  4239. }
  4240. return ms
  4241. }
  4242. return mi.MessageOf(x)
  4243. }
  4244. // Deprecated: Use QueriedStripe.ProtoReflect.Descriptor instead.
  4245. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  4246. return file_volume_server_proto_rawDescGZIP(), []int{85}
  4247. }
  4248. func (x *QueriedStripe) GetRecords() []byte {
  4249. if x != nil {
  4250. return x.Records
  4251. }
  4252. return nil
  4253. }
  4254. type VolumeNeedleStatusRequest struct {
  4255. state protoimpl.MessageState
  4256. sizeCache protoimpl.SizeCache
  4257. unknownFields protoimpl.UnknownFields
  4258. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  4259. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4260. }
  4261. func (x *VolumeNeedleStatusRequest) Reset() {
  4262. *x = VolumeNeedleStatusRequest{}
  4263. if protoimpl.UnsafeEnabled {
  4264. mi := &file_volume_server_proto_msgTypes[86]
  4265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4266. ms.StoreMessageInfo(mi)
  4267. }
  4268. }
  4269. func (x *VolumeNeedleStatusRequest) String() string {
  4270. return protoimpl.X.MessageStringOf(x)
  4271. }
  4272. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  4273. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  4274. mi := &file_volume_server_proto_msgTypes[86]
  4275. if protoimpl.UnsafeEnabled && x != nil {
  4276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4277. if ms.LoadMessageInfo() == nil {
  4278. ms.StoreMessageInfo(mi)
  4279. }
  4280. return ms
  4281. }
  4282. return mi.MessageOf(x)
  4283. }
  4284. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  4285. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  4286. return file_volume_server_proto_rawDescGZIP(), []int{86}
  4287. }
  4288. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  4289. if x != nil {
  4290. return x.VolumeId
  4291. }
  4292. return 0
  4293. }
  4294. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  4295. if x != nil {
  4296. return x.NeedleId
  4297. }
  4298. return 0
  4299. }
  4300. type VolumeNeedleStatusResponse struct {
  4301. state protoimpl.MessageState
  4302. sizeCache protoimpl.SizeCache
  4303. unknownFields protoimpl.UnknownFields
  4304. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4305. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  4306. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  4307. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  4308. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  4309. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  4310. }
  4311. func (x *VolumeNeedleStatusResponse) Reset() {
  4312. *x = VolumeNeedleStatusResponse{}
  4313. if protoimpl.UnsafeEnabled {
  4314. mi := &file_volume_server_proto_msgTypes[87]
  4315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4316. ms.StoreMessageInfo(mi)
  4317. }
  4318. }
  4319. func (x *VolumeNeedleStatusResponse) String() string {
  4320. return protoimpl.X.MessageStringOf(x)
  4321. }
  4322. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  4323. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  4324. mi := &file_volume_server_proto_msgTypes[87]
  4325. if protoimpl.UnsafeEnabled && x != nil {
  4326. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4327. if ms.LoadMessageInfo() == nil {
  4328. ms.StoreMessageInfo(mi)
  4329. }
  4330. return ms
  4331. }
  4332. return mi.MessageOf(x)
  4333. }
  4334. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  4335. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  4336. return file_volume_server_proto_rawDescGZIP(), []int{87}
  4337. }
  4338. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  4339. if x != nil {
  4340. return x.NeedleId
  4341. }
  4342. return 0
  4343. }
  4344. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  4345. if x != nil {
  4346. return x.Cookie
  4347. }
  4348. return 0
  4349. }
  4350. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  4351. if x != nil {
  4352. return x.Size
  4353. }
  4354. return 0
  4355. }
  4356. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  4357. if x != nil {
  4358. return x.LastModified
  4359. }
  4360. return 0
  4361. }
  4362. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  4363. if x != nil {
  4364. return x.Crc
  4365. }
  4366. return 0
  4367. }
  4368. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  4369. if x != nil {
  4370. return x.Ttl
  4371. }
  4372. return ""
  4373. }
  4374. type PingRequest struct {
  4375. state protoimpl.MessageState
  4376. sizeCache protoimpl.SizeCache
  4377. unknownFields protoimpl.UnknownFields
  4378. Target string `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"` // default to ping itself
  4379. TargetType string `protobuf:"bytes,2,opt,name=target_type,json=targetType,proto3" json:"target_type,omitempty"`
  4380. }
  4381. func (x *PingRequest) Reset() {
  4382. *x = PingRequest{}
  4383. if protoimpl.UnsafeEnabled {
  4384. mi := &file_volume_server_proto_msgTypes[88]
  4385. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4386. ms.StoreMessageInfo(mi)
  4387. }
  4388. }
  4389. func (x *PingRequest) String() string {
  4390. return protoimpl.X.MessageStringOf(x)
  4391. }
  4392. func (*PingRequest) ProtoMessage() {}
  4393. func (x *PingRequest) ProtoReflect() protoreflect.Message {
  4394. mi := &file_volume_server_proto_msgTypes[88]
  4395. if protoimpl.UnsafeEnabled && x != nil {
  4396. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4397. if ms.LoadMessageInfo() == nil {
  4398. ms.StoreMessageInfo(mi)
  4399. }
  4400. return ms
  4401. }
  4402. return mi.MessageOf(x)
  4403. }
  4404. // Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.
  4405. func (*PingRequest) Descriptor() ([]byte, []int) {
  4406. return file_volume_server_proto_rawDescGZIP(), []int{88}
  4407. }
  4408. func (x *PingRequest) GetTarget() string {
  4409. if x != nil {
  4410. return x.Target
  4411. }
  4412. return ""
  4413. }
  4414. func (x *PingRequest) GetTargetType() string {
  4415. if x != nil {
  4416. return x.TargetType
  4417. }
  4418. return ""
  4419. }
  4420. type PingResponse struct {
  4421. state protoimpl.MessageState
  4422. sizeCache protoimpl.SizeCache
  4423. unknownFields protoimpl.UnknownFields
  4424. StartTimeNs int64 `protobuf:"varint,1,opt,name=start_time_ns,json=startTimeNs,proto3" json:"start_time_ns,omitempty"`
  4425. RemoteTimeNs int64 `protobuf:"varint,2,opt,name=remote_time_ns,json=remoteTimeNs,proto3" json:"remote_time_ns,omitempty"`
  4426. StopTimeNs int64 `protobuf:"varint,3,opt,name=stop_time_ns,json=stopTimeNs,proto3" json:"stop_time_ns,omitempty"`
  4427. }
  4428. func (x *PingResponse) Reset() {
  4429. *x = PingResponse{}
  4430. if protoimpl.UnsafeEnabled {
  4431. mi := &file_volume_server_proto_msgTypes[89]
  4432. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4433. ms.StoreMessageInfo(mi)
  4434. }
  4435. }
  4436. func (x *PingResponse) String() string {
  4437. return protoimpl.X.MessageStringOf(x)
  4438. }
  4439. func (*PingResponse) ProtoMessage() {}
  4440. func (x *PingResponse) ProtoReflect() protoreflect.Message {
  4441. mi := &file_volume_server_proto_msgTypes[89]
  4442. if protoimpl.UnsafeEnabled && x != nil {
  4443. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4444. if ms.LoadMessageInfo() == nil {
  4445. ms.StoreMessageInfo(mi)
  4446. }
  4447. return ms
  4448. }
  4449. return mi.MessageOf(x)
  4450. }
  4451. // Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.
  4452. func (*PingResponse) Descriptor() ([]byte, []int) {
  4453. return file_volume_server_proto_rawDescGZIP(), []int{89}
  4454. }
  4455. func (x *PingResponse) GetStartTimeNs() int64 {
  4456. if x != nil {
  4457. return x.StartTimeNs
  4458. }
  4459. return 0
  4460. }
  4461. func (x *PingResponse) GetRemoteTimeNs() int64 {
  4462. if x != nil {
  4463. return x.RemoteTimeNs
  4464. }
  4465. return 0
  4466. }
  4467. func (x *PingResponse) GetStopTimeNs() int64 {
  4468. if x != nil {
  4469. return x.StopTimeNs
  4470. }
  4471. return 0
  4472. }
  4473. type FetchAndWriteNeedleRequest_Replica struct {
  4474. state protoimpl.MessageState
  4475. sizeCache protoimpl.SizeCache
  4476. unknownFields protoimpl.UnknownFields
  4477. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  4478. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl,proto3" json:"public_url,omitempty"`
  4479. GrpcPort int32 `protobuf:"varint,3,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
  4480. }
  4481. func (x *FetchAndWriteNeedleRequest_Replica) Reset() {
  4482. *x = FetchAndWriteNeedleRequest_Replica{}
  4483. if protoimpl.UnsafeEnabled {
  4484. mi := &file_volume_server_proto_msgTypes[90]
  4485. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4486. ms.StoreMessageInfo(mi)
  4487. }
  4488. }
  4489. func (x *FetchAndWriteNeedleRequest_Replica) String() string {
  4490. return protoimpl.X.MessageStringOf(x)
  4491. }
  4492. func (*FetchAndWriteNeedleRequest_Replica) ProtoMessage() {}
  4493. func (x *FetchAndWriteNeedleRequest_Replica) ProtoReflect() protoreflect.Message {
  4494. mi := &file_volume_server_proto_msgTypes[90]
  4495. if protoimpl.UnsafeEnabled && x != nil {
  4496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4497. if ms.LoadMessageInfo() == nil {
  4498. ms.StoreMessageInfo(mi)
  4499. }
  4500. return ms
  4501. }
  4502. return mi.MessageOf(x)
  4503. }
  4504. // Deprecated: Use FetchAndWriteNeedleRequest_Replica.ProtoReflect.Descriptor instead.
  4505. func (*FetchAndWriteNeedleRequest_Replica) Descriptor() ([]byte, []int) {
  4506. return file_volume_server_proto_rawDescGZIP(), []int{82, 0}
  4507. }
  4508. func (x *FetchAndWriteNeedleRequest_Replica) GetUrl() string {
  4509. if x != nil {
  4510. return x.Url
  4511. }
  4512. return ""
  4513. }
  4514. func (x *FetchAndWriteNeedleRequest_Replica) GetPublicUrl() string {
  4515. if x != nil {
  4516. return x.PublicUrl
  4517. }
  4518. return ""
  4519. }
  4520. func (x *FetchAndWriteNeedleRequest_Replica) GetGrpcPort() int32 {
  4521. if x != nil {
  4522. return x.GrpcPort
  4523. }
  4524. return 0
  4525. }
  4526. type QueryRequest_Filter struct {
  4527. state protoimpl.MessageState
  4528. sizeCache protoimpl.SizeCache
  4529. unknownFields protoimpl.UnknownFields
  4530. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  4531. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  4532. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  4533. }
  4534. func (x *QueryRequest_Filter) Reset() {
  4535. *x = QueryRequest_Filter{}
  4536. if protoimpl.UnsafeEnabled {
  4537. mi := &file_volume_server_proto_msgTypes[91]
  4538. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4539. ms.StoreMessageInfo(mi)
  4540. }
  4541. }
  4542. func (x *QueryRequest_Filter) String() string {
  4543. return protoimpl.X.MessageStringOf(x)
  4544. }
  4545. func (*QueryRequest_Filter) ProtoMessage() {}
  4546. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  4547. mi := &file_volume_server_proto_msgTypes[91]
  4548. if protoimpl.UnsafeEnabled && x != nil {
  4549. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4550. if ms.LoadMessageInfo() == nil {
  4551. ms.StoreMessageInfo(mi)
  4552. }
  4553. return ms
  4554. }
  4555. return mi.MessageOf(x)
  4556. }
  4557. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  4558. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  4559. return file_volume_server_proto_rawDescGZIP(), []int{84, 0}
  4560. }
  4561. func (x *QueryRequest_Filter) GetField() string {
  4562. if x != nil {
  4563. return x.Field
  4564. }
  4565. return ""
  4566. }
  4567. func (x *QueryRequest_Filter) GetOperand() string {
  4568. if x != nil {
  4569. return x.Operand
  4570. }
  4571. return ""
  4572. }
  4573. func (x *QueryRequest_Filter) GetValue() string {
  4574. if x != nil {
  4575. return x.Value
  4576. }
  4577. return ""
  4578. }
  4579. type QueryRequest_InputSerialization struct {
  4580. state protoimpl.MessageState
  4581. sizeCache protoimpl.SizeCache
  4582. unknownFields protoimpl.UnknownFields
  4583. // NONE | GZIP | BZIP2
  4584. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  4585. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  4586. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  4587. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  4588. }
  4589. func (x *QueryRequest_InputSerialization) Reset() {
  4590. *x = QueryRequest_InputSerialization{}
  4591. if protoimpl.UnsafeEnabled {
  4592. mi := &file_volume_server_proto_msgTypes[92]
  4593. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4594. ms.StoreMessageInfo(mi)
  4595. }
  4596. }
  4597. func (x *QueryRequest_InputSerialization) String() string {
  4598. return protoimpl.X.MessageStringOf(x)
  4599. }
  4600. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  4601. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  4602. mi := &file_volume_server_proto_msgTypes[92]
  4603. if protoimpl.UnsafeEnabled && x != nil {
  4604. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4605. if ms.LoadMessageInfo() == nil {
  4606. ms.StoreMessageInfo(mi)
  4607. }
  4608. return ms
  4609. }
  4610. return mi.MessageOf(x)
  4611. }
  4612. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  4613. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  4614. return file_volume_server_proto_rawDescGZIP(), []int{84, 1}
  4615. }
  4616. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  4617. if x != nil {
  4618. return x.CompressionType
  4619. }
  4620. return ""
  4621. }
  4622. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  4623. if x != nil {
  4624. return x.CsvInput
  4625. }
  4626. return nil
  4627. }
  4628. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  4629. if x != nil {
  4630. return x.JsonInput
  4631. }
  4632. return nil
  4633. }
  4634. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  4635. if x != nil {
  4636. return x.ParquetInput
  4637. }
  4638. return nil
  4639. }
  4640. type QueryRequest_OutputSerialization struct {
  4641. state protoimpl.MessageState
  4642. sizeCache protoimpl.SizeCache
  4643. unknownFields protoimpl.UnknownFields
  4644. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  4645. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  4646. }
  4647. func (x *QueryRequest_OutputSerialization) Reset() {
  4648. *x = QueryRequest_OutputSerialization{}
  4649. if protoimpl.UnsafeEnabled {
  4650. mi := &file_volume_server_proto_msgTypes[93]
  4651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4652. ms.StoreMessageInfo(mi)
  4653. }
  4654. }
  4655. func (x *QueryRequest_OutputSerialization) String() string {
  4656. return protoimpl.X.MessageStringOf(x)
  4657. }
  4658. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  4659. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  4660. mi := &file_volume_server_proto_msgTypes[93]
  4661. if protoimpl.UnsafeEnabled && x != nil {
  4662. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4663. if ms.LoadMessageInfo() == nil {
  4664. ms.StoreMessageInfo(mi)
  4665. }
  4666. return ms
  4667. }
  4668. return mi.MessageOf(x)
  4669. }
  4670. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  4671. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  4672. return file_volume_server_proto_rawDescGZIP(), []int{84, 2}
  4673. }
  4674. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  4675. if x != nil {
  4676. return x.CsvOutput
  4677. }
  4678. return nil
  4679. }
  4680. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  4681. if x != nil {
  4682. return x.JsonOutput
  4683. }
  4684. return nil
  4685. }
  4686. type QueryRequest_InputSerialization_CSVInput struct {
  4687. state protoimpl.MessageState
  4688. sizeCache protoimpl.SizeCache
  4689. unknownFields protoimpl.UnknownFields
  4690. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  4691. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4692. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4693. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4694. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4695. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  4696. // If true, records might contain record delimiters within quote characters
  4697. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  4698. }
  4699. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  4700. *x = QueryRequest_InputSerialization_CSVInput{}
  4701. if protoimpl.UnsafeEnabled {
  4702. mi := &file_volume_server_proto_msgTypes[94]
  4703. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4704. ms.StoreMessageInfo(mi)
  4705. }
  4706. }
  4707. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  4708. return protoimpl.X.MessageStringOf(x)
  4709. }
  4710. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  4711. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  4712. mi := &file_volume_server_proto_msgTypes[94]
  4713. if protoimpl.UnsafeEnabled && x != nil {
  4714. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4715. if ms.LoadMessageInfo() == nil {
  4716. ms.StoreMessageInfo(mi)
  4717. }
  4718. return ms
  4719. }
  4720. return mi.MessageOf(x)
  4721. }
  4722. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  4723. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  4724. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 0}
  4725. }
  4726. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  4727. if x != nil {
  4728. return x.FileHeaderInfo
  4729. }
  4730. return ""
  4731. }
  4732. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  4733. if x != nil {
  4734. return x.RecordDelimiter
  4735. }
  4736. return ""
  4737. }
  4738. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  4739. if x != nil {
  4740. return x.FieldDelimiter
  4741. }
  4742. return ""
  4743. }
  4744. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharacter() string {
  4745. if x != nil {
  4746. return x.QuoteCharacter
  4747. }
  4748. return ""
  4749. }
  4750. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  4751. if x != nil {
  4752. return x.QuoteEscapeCharacter
  4753. }
  4754. return ""
  4755. }
  4756. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  4757. if x != nil {
  4758. return x.Comments
  4759. }
  4760. return ""
  4761. }
  4762. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  4763. if x != nil {
  4764. return x.AllowQuotedRecordDelimiter
  4765. }
  4766. return false
  4767. }
  4768. type QueryRequest_InputSerialization_JSONInput struct {
  4769. state protoimpl.MessageState
  4770. sizeCache protoimpl.SizeCache
  4771. unknownFields protoimpl.UnknownFields
  4772. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  4773. }
  4774. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  4775. *x = QueryRequest_InputSerialization_JSONInput{}
  4776. if protoimpl.UnsafeEnabled {
  4777. mi := &file_volume_server_proto_msgTypes[95]
  4778. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4779. ms.StoreMessageInfo(mi)
  4780. }
  4781. }
  4782. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  4783. return protoimpl.X.MessageStringOf(x)
  4784. }
  4785. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  4786. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  4787. mi := &file_volume_server_proto_msgTypes[95]
  4788. if protoimpl.UnsafeEnabled && x != nil {
  4789. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4790. if ms.LoadMessageInfo() == nil {
  4791. ms.StoreMessageInfo(mi)
  4792. }
  4793. return ms
  4794. }
  4795. return mi.MessageOf(x)
  4796. }
  4797. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  4798. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  4799. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 1}
  4800. }
  4801. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  4802. if x != nil {
  4803. return x.Type
  4804. }
  4805. return ""
  4806. }
  4807. type QueryRequest_InputSerialization_ParquetInput struct {
  4808. state protoimpl.MessageState
  4809. sizeCache protoimpl.SizeCache
  4810. unknownFields protoimpl.UnknownFields
  4811. }
  4812. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  4813. *x = QueryRequest_InputSerialization_ParquetInput{}
  4814. if protoimpl.UnsafeEnabled {
  4815. mi := &file_volume_server_proto_msgTypes[96]
  4816. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4817. ms.StoreMessageInfo(mi)
  4818. }
  4819. }
  4820. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  4821. return protoimpl.X.MessageStringOf(x)
  4822. }
  4823. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  4824. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  4825. mi := &file_volume_server_proto_msgTypes[96]
  4826. if protoimpl.UnsafeEnabled && x != nil {
  4827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4828. if ms.LoadMessageInfo() == nil {
  4829. ms.StoreMessageInfo(mi)
  4830. }
  4831. return ms
  4832. }
  4833. return mi.MessageOf(x)
  4834. }
  4835. // Deprecated: Use QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  4836. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  4837. return file_volume_server_proto_rawDescGZIP(), []int{84, 1, 2}
  4838. }
  4839. type QueryRequest_OutputSerialization_CSVOutput struct {
  4840. state protoimpl.MessageState
  4841. sizeCache protoimpl.SizeCache
  4842. unknownFields protoimpl.UnknownFields
  4843. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  4844. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4845. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4846. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4847. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4848. }
  4849. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  4850. *x = QueryRequest_OutputSerialization_CSVOutput{}
  4851. if protoimpl.UnsafeEnabled {
  4852. mi := &file_volume_server_proto_msgTypes[97]
  4853. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4854. ms.StoreMessageInfo(mi)
  4855. }
  4856. }
  4857. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  4858. return protoimpl.X.MessageStringOf(x)
  4859. }
  4860. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  4861. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  4862. mi := &file_volume_server_proto_msgTypes[97]
  4863. if protoimpl.UnsafeEnabled && x != nil {
  4864. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4865. if ms.LoadMessageInfo() == nil {
  4866. ms.StoreMessageInfo(mi)
  4867. }
  4868. return ms
  4869. }
  4870. return mi.MessageOf(x)
  4871. }
  4872. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  4873. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  4874. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 0}
  4875. }
  4876. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  4877. if x != nil {
  4878. return x.QuoteFields
  4879. }
  4880. return ""
  4881. }
  4882. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  4883. if x != nil {
  4884. return x.RecordDelimiter
  4885. }
  4886. return ""
  4887. }
  4888. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  4889. if x != nil {
  4890. return x.FieldDelimiter
  4891. }
  4892. return ""
  4893. }
  4894. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharacter() string {
  4895. if x != nil {
  4896. return x.QuoteCharacter
  4897. }
  4898. return ""
  4899. }
  4900. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  4901. if x != nil {
  4902. return x.QuoteEscapeCharacter
  4903. }
  4904. return ""
  4905. }
  4906. type QueryRequest_OutputSerialization_JSONOutput struct {
  4907. state protoimpl.MessageState
  4908. sizeCache protoimpl.SizeCache
  4909. unknownFields protoimpl.UnknownFields
  4910. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  4911. }
  4912. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  4913. *x = QueryRequest_OutputSerialization_JSONOutput{}
  4914. if protoimpl.UnsafeEnabled {
  4915. mi := &file_volume_server_proto_msgTypes[98]
  4916. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4917. ms.StoreMessageInfo(mi)
  4918. }
  4919. }
  4920. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  4921. return protoimpl.X.MessageStringOf(x)
  4922. }
  4923. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  4924. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  4925. mi := &file_volume_server_proto_msgTypes[98]
  4926. if protoimpl.UnsafeEnabled && x != nil {
  4927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4928. if ms.LoadMessageInfo() == nil {
  4929. ms.StoreMessageInfo(mi)
  4930. }
  4931. return ms
  4932. }
  4933. return mi.MessageOf(x)
  4934. }
  4935. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  4936. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  4937. return file_volume_server_proto_rawDescGZIP(), []int{84, 2, 1}
  4938. }
  4939. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  4940. if x != nil {
  4941. return x.RecordDelimiter
  4942. }
  4943. return ""
  4944. }
  4945. var File_volume_server_proto protoreflect.FileDescriptor
  4946. var file_volume_server_proto_rawDesc = []byte{
  4947. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  4948. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4949. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x1a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e,
  4950. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  4951. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66,
  4952. 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x66,
  4953. 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x63,
  4954. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28,
  4955. 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43, 0x68, 0x65,
  4956. 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4957. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72, 0x65, 0x73,
  4958. 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x6f, 0x6c,
  4959. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65,
  4960. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
  4961. 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4962. 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4963. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  4964. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73,
  4965. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03,
  4966. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73,
  4967. 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  4968. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  4969. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45, 0x6d, 0x70,
  4970. 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4971. 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4972. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4973. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x19, 0x56,
  4974. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b,
  4975. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61, 0x72, 0x62,
  4976. 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52,
  4977. 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x5b, 0x0a,
  4978. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d,
  4979. 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4980. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4981. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61,
  4982. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70,
  4983. 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x66, 0x0a, 0x1b, 0x56, 0x61,
  4984. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  4985. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f,
  4986. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01,
  4987. 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74,
  4988. 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x61, 0x76, 0x67, 0x5f, 0x31,
  4989. 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x76, 0x67,
  4990. 0x31, 0x6d, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4991. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4992. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4993. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x1a,
  4994. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d,
  4995. 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73,
  4996. 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  4997. 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1f, 0x0a, 0x0b,
  4998. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  4999. 0x04, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x39, 0x0a,
  5000. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65,
  5001. 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5002. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5003. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75,
  5004. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52,
  5005. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5006. 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  5007. 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5008. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5009. 0x6f, 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c,
  5010. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xfb,
  5011. 0x01, 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5012. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5013. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5014. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5015. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  5016. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f,
  5017. 0x63, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61,
  5018. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  5019. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  5020. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c,
  5021. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d,
  5022. 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69,
  5023. 0x7a, 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d,
  5024. 0x6f, 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61, 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x12,
  5025. 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
  5026. 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x18, 0x0a, 0x16,
  5027. 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  5028. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5029. 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5030. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5031. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb,
  5032. 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61,
  5033. 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5034. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5035. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5036. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f,
  5037. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c,
  5038. 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72,
  5039. 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74,
  5040. 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b,
  5041. 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28,
  5042. 0x04, 0x52, 0x0a, 0x74, 0x61, 0x69, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a,
  5043. 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f,
  5044. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  5045. 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f,
  5046. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52,
  5047. 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c,
  5048. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61,
  5049. 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5050. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5051. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e,
  5052. 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e,
  5053. 0x63, 0x65, 0x4e, 0x73, 0x22, 0x42, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e,
  5054. 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73,
  5055. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f,
  5056. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c,
  5057. 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75,
  5058. 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5059. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5060. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56,
  5061. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5062. 0x73, 0x65, 0x22, 0x33, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f,
  5063. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5064. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5065. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5066. 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5067. 0x22, 0x51, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5068. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5069. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5070. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x65, 0x6d, 0x70,
  5071. 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x6f, 0x6e, 0x6c, 0x79, 0x45, 0x6d,
  5072. 0x70, 0x74, 0x79, 0x22, 0x16, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c,
  5073. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52, 0x0a, 0x19, 0x56,
  5074. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c,
  5075. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5076. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5077. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74,
  5078. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x22,
  5079. 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61,
  5080. 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a,
  5081. 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61,
  5082. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5083. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5084. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5085. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73,
  5086. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5087. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5088. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5089. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b,
  5090. 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  5091. 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f,
  5092. 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
  5093. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72,
  5094. 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22,
  5095. 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5096. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5097. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5098. 0x65, 0x49, 0x64, 0x22, 0xa6, 0x01, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74,
  5099. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c,
  5100. 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01,
  5101. 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1f,
  5102. 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20,
  5103. 0x01, 0x28, 0x04, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12,
  5104. 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20,
  5105. 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c,
  5106. 0x0a, 0x12, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x5f, 0x63,
  5107. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x10, 0x66, 0x69, 0x6c, 0x65,
  5108. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xf8, 0x01, 0x0a,
  5109. 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5110. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5111. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5112. 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  5113. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  5114. 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03,
  5115. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  5116. 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  5117. 0x74, 0x74, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61,
  5118. 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73,
  5119. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  5120. 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  5121. 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2b, 0x0a, 0x12, 0x69, 0x6f,
  5122. 0x5f, 0x62, 0x79, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  5123. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x69, 0x6f, 0x42, 0x79, 0x74, 0x65, 0x50, 0x65,
  5124. 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22, 0x68, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5125. 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a,
  5126. 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f,
  5127. 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x41, 0x70,
  5128. 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x63,
  5129. 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  5130. 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65,
  5131. 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65,
  5132. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5133. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5134. 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  5135. 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69,
  5136. 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
  5137. 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76,
  5138. 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66,
  5139. 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70,
  5140. 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5141. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5142. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f,
  5143. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73,
  5144. 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f,
  5145. 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e,
  5146. 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18,
  5147. 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65,
  5148. 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x5b, 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79,
  5149. 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c,
  5150. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
  5151. 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12,
  5152. 0x24, 0x0a, 0x0e, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x73, 0x5f, 0x6e,
  5153. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
  5154. 0x64, 0x54, 0x73, 0x4e, 0x73, 0x22, 0x60, 0x0a, 0x15, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65,
  5155. 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5156. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5157. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  5158. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  5159. 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  5160. 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x39, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x4e,
  5161. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5162. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62,
  5163. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c,
  5164. 0x6f, 0x62, 0x22, 0x7d, 0x0a, 0x15, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5165. 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5166. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5167. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64,
  5168. 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65,
  5169. 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  5170. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a,
  5171. 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a,
  5172. 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5173. 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06,
  5174. 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f,
  5175. 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64,
  5176. 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73,
  5177. 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63,
  5178. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74,
  5179. 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x20, 0x0a,
  5180. 0x0c, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x05, 0x20,
  5181. 0x01, 0x28, 0x04, 0x52, 0x0a, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x22,
  5182. 0x87, 0x01, 0x0a, 0x16, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  5183. 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5184. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5185. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  5186. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64,
  5187. 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01,
  5188. 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64,
  5189. 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e,
  5190. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x22, 0x19, 0x0a, 0x17, 0x57, 0x72, 0x69,
  5191. 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70,
  5192. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x15, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e,
  5193. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a,
  5194. 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
  5195. 0x0d, 0x52, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x73, 0x22, 0xa0, 0x02, 0x0a,
  5196. 0x16, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52,
  5197. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5198. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5199. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69,
  5200. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49,
  5201. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  5202. 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65,
  5203. 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a,
  5204. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x34, 0x0a, 0x16, 0x6e, 0x65,
  5205. 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65,
  5206. 0x73, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x6e, 0x65, 0x65, 0x64,
  5207. 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64,
  5208. 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
  5209. 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64,
  5210. 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18, 0x08, 0x20, 0x01,
  5211. 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  5212. 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d,
  5213. 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x22,
  5214. 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65,
  5215. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5216. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5217. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63,
  5218. 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63,
  5219. 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  5220. 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  5221. 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65,
  5222. 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5223. 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5224. 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61,
  5225. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  5226. 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  5227. 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65,
  5228. 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x6c,
  5229. 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
  5230. 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x22, 0xb7, 0x01, 0x0a,
  5231. 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69,
  5232. 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5233. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5234. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65,
  5235. 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65,
  5236. 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f,
  5237. 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
  5238. 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63,
  5239. 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x76,
  5240. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01,
  5241. 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5242. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5243. 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
  5244. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5245. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65,
  5246. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5247. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5248. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5249. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5250. 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5251. 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  5252. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5253. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71,
  5254. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5255. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5256. 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  5257. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5258. 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5259. 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5260. 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x73, 0x68,
  5261. 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72,
  5262. 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x8b,
  5263. 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5264. 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5265. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5266. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c,
  5267. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  5268. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61,
  5269. 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68,
  5270. 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65,
  5271. 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63,
  5272. 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f,
  5273. 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05,
  5274. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61,
  5275. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x6a,
  5276. 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70,
  5277. 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79,
  5278. 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52,
  5279. 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56, 0x69, 0x66, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x1c, 0x0a, 0x1a,
  5280. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f,
  5281. 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x77, 0x0a, 0x1b, 0x56, 0x6f,
  5282. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65,
  5283. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  5284. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  5285. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5286. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5287. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f,
  5288. 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64,
  5289. 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5290. 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5291. 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5292. 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5293. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5294. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e,
  5295. 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  5296. 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b,
  5297. 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  5298. 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x56,
  5299. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75,
  5300. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0x0a, 0x1c, 0x56, 0x6f,
  5301. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f,
  5302. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5303. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5304. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64,
  5305. 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72,
  5306. 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5307. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
  5308. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x99, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5309. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  5310. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5311. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5312. 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5313. 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
  5314. 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
  5315. 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  5316. 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b,
  5317. 0x65, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65,
  5318. 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5319. 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12,
  5320. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61,
  5321. 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64,
  5322. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5323. 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c,
  5324. 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5325. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5326. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  5327. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  5328. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08,
  5329. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07,
  5330. 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
  5331. 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
  5332. 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f,
  5333. 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5334. 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5335. 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5336. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5337. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  5338. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  5339. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a,
  5340. 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54,
  5341. 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5342. 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c,
  5343. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5344. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5345. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xc9, 0x03, 0x0a, 0x1c,
  5346. 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74,
  5347. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  5348. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5349. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x3b, 0x0a, 0x1a, 0x69, 0x64, 0x78,
  5350. 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f,
  5351. 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x69,
  5352. 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53,
  5353. 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69,
  5354. 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69,
  5355. 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3b, 0x0a, 0x1a, 0x64, 0x61,
  5356. 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
  5357. 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17,
  5358. 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
  5359. 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66,
  5360. 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
  5361. 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66,
  5362. 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52,
  5363. 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f,
  5364. 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f,
  5365. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  5366. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  5367. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
  5368. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x64,
  5369. 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  5370. 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x3d, 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75,
  5371. 0x6d, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e,
  5372. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5373. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x76, 0x6f, 0x6c,
  5374. 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xbb, 0x01, 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x6b,
  5375. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20,
  5376. 0x01, 0x28, 0x09, 0x52, 0x03, 0x64, 0x69, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18,
  5377. 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73,
  5378. 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12,
  5379. 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72,
  5380. 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x66, 0x72,
  5381. 0x65, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
  5382. 0x74, 0x46, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
  5383. 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72,
  5384. 0x63, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b,
  5385. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73,
  5386. 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa3, 0x01, 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61,
  5387. 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65,
  5388. 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69,
  5389. 0x6e, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  5390. 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20,
  5391. 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65,
  5392. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a,
  5393. 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x65, 0x6c,
  5394. 0x66, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x65, 0x61, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52,
  5395. 0x04, 0x68, 0x65, 0x61, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x18, 0x07,
  5396. 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x22, 0xd8, 0x01, 0x0a, 0x0a,
  5397. 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61,
  5398. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  5399. 0x52, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a,
  5400. 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5401. 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03,
  5402. 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16,
  5403. 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
  5404. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73,
  5405. 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53,
  5406. 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f,
  5407. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69,
  5408. 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65,
  5409. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x78, 0x74,
  5410. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x81, 0x02, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5411. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01,
  5412. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5413. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69,
  5414. 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72,
  5415. 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73,
  5416. 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
  5417. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  5418. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4f, 0x66,
  5419. 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x42, 0x79, 0x74, 0x65,
  5420. 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66,
  5421. 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  5422. 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x44,
  5423. 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  5424. 0x52, 0x0b, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a,
  5425. 0x09, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08,
  5426. 0x52, 0x08, 0x72, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0xc8, 0x01, 0x0a, 0x20, 0x56,
  5427. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74,
  5428. 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5429. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5430. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  5431. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  5432. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x0a, 0x18,
  5433. 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x63, 0x6b,
  5434. 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x16,
  5435. 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x63, 0x6b, 0x65,
  5436. 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x6c,
  5437. 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20,
  5438. 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x44, 0x61,
  5439. 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5440. 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f,
  5441. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72,
  5442. 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  5443. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63,
  5444. 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18,
  5445. 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64,
  5446. 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x92, 0x01, 0x0a, 0x22, 0x56,
  5447. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74,
  5448. 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5449. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5450. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e,
  5451. 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  5452. 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2f,
  5453. 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x64, 0x61,
  5454. 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x6b, 0x65,
  5455. 0x65, 0x70, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22,
  5456. 0x75, 0x0a, 0x23, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  5457. 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65,
  5458. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
  5459. 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65,
  5460. 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65,
  5461. 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  5462. 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63,
  5463. 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5464. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  5465. 0x65, 0x73, 0x74, 0x22, 0xf0, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  5466. 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5467. 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
  5468. 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5469. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x69, 0x73,
  5470. 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61,
  5471. 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f,
  5472. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x76,
  5473. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5474. 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x6d, 0x65, 0x6d, 0x6f, 0x72,
  5475. 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
  5476. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
  5477. 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
  5478. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x43, 0x65, 0x6e, 0x74,
  5479. 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  5480. 0x52, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x22, 0x1a, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5481. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  5482. 0x73, 0x74, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76,
  5483. 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5484. 0xdc, 0x03, 0x0a, 0x1a, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74,
  5485. 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5486. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5487. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e,
  5488. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
  5489. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b,
  5490. 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65,
  5491. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  5492. 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65,
  5493. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x50, 0x0a, 0x08,
  5494. 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34,
  5495. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5496. 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e,
  5497. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65, 0x70,
  5498. 0x6c, 0x69, 0x63, 0x61, 0x52, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x12, 0x12,
  5499. 0x0a, 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x75,
  5500. 0x74, 0x68, 0x12, 0x36, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
  5501. 0x66, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5502. 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x0a,
  5503. 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x49, 0x0a, 0x0f, 0x72, 0x65,
  5504. 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x10, 0x20,
  5505. 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x70, 0x62, 0x2e,
  5506. 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x6f, 0x63,
  5507. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4c, 0x6f, 0x63,
  5508. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x57, 0x0a, 0x07, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
  5509. 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75,
  5510. 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x75, 0x72, 0x6c,
  5511. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x55, 0x72,
  5512. 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x03,
  5513. 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x72, 0x70, 0x63, 0x50, 0x6f, 0x72, 0x74, 0x22, 0x32,
  5514. 0x0a, 0x1b, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e,
  5515. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x13, 0x0a,
  5516. 0x05, 0x65, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x65, 0x54,
  5517. 0x61, 0x67, 0x22, 0xf4, 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  5518. 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5519. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5520. 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x66, 0x69, 0x6c, 0x65,
  5521. 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x66, 0x72, 0x6f, 0x6d,
  5522. 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65,
  5523. 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5524. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79,
  5525. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06,
  5526. 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f,
  5527. 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20,
  5528. 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5529. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  5530. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  5531. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72,
  5532. 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x14, 0x6f, 0x75,
  5533. 0x74, 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  5534. 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5535. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72,
  5536. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53,
  5537. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6f, 0x75,
  5538. 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  5539. 0x6e, 0x1a, 0x4e, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x66,
  5540. 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c,
  5541. 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01,
  5542. 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76,
  5543. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  5544. 0x65, 0x1a, 0xd3, 0x05, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  5545. 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70,
  5546. 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
  5547. 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54,
  5548. 0x79, 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74,
  5549. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5550. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
  5551. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69,
  5552. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70,
  5553. 0x75, 0x74, 0x52, 0x08, 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x5a, 0x0a, 0x0a,
  5554. 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  5555. 0x32, 0x3b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5556. 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5557. 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74,
  5558. 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x09, 0x6a,
  5559. 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x71,
  5560. 0x75, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
  5561. 0x3e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5562. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  5563. 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  5564. 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52,
  5565. 0x0c, 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xc6, 0x02,
  5566. 0x0a, 0x08, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x69,
  5567. 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01,
  5568. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  5569. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64,
  5570. 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  5571. 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12,
  5572. 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  5573. 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44,
  5574. 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x71, 0x75, 0x6f, 0x74,
  5575. 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28,
  5576. 0x09, 0x52, 0x0e, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65,
  5577. 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70,
  5578. 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28,
  5579. 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68,
  5580. 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  5581. 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  5582. 0x6e, 0x74, 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x71, 0x75, 0x6f,
  5583. 0x74, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d,
  5584. 0x69, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a, 0x61, 0x6c, 0x6c, 0x6f,
  5585. 0x77, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c,
  5586. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e,
  5587. 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  5588. 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c, 0x50, 0x61, 0x72, 0x71, 0x75,
  5589. 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xef, 0x03, 0x0a, 0x13, 0x4f, 0x75, 0x74, 0x70,
  5590. 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  5591. 0x5b, 0x0a, 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x02, 0x20,
  5592. 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5593. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  5594. 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  5595. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75,
  5596. 0x74, 0x52, 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x5e, 0x0a, 0x0b,
  5597. 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  5598. 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5599. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5600. 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  5601. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5602. 0x52, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x1a, 0xe1, 0x01, 0x0a,
  5603. 0x09, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x71, 0x75,
  5604. 0x6f, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  5605. 0x52, 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x29, 0x0a,
  5606. 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65,
  5607. 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44,
  5608. 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c,
  5609. 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28,
  5610. 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65,
  5611. 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61,
  5612. 0x63, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x71, 0x75, 0x6f, 0x74,
  5613. 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75,
  5614. 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61,
  5615. 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74,
  5616. 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
  5617. 0x1a, 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x29,
  5618. 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  5619. 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64,
  5620. 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x22, 0x29, 0x0a, 0x0d, 0x51, 0x75, 0x65,
  5621. 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65,
  5622. 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x72, 0x65, 0x63,
  5623. 0x6f, 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65,
  5624. 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5625. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5626. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b,
  5627. 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5628. 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x22, 0xae, 0x01, 0x0a, 0x1a,
  5629. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74,
  5630. 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65,
  5631. 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e,
  5632. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69,
  5633. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12,
  5634. 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73,
  5635. 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69,
  5636. 0x66, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74,
  5637. 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18,
  5638. 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74,
  5639. 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x22, 0x46, 0x0a, 0x0b,
  5640. 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x74,
  5641. 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61, 0x72,
  5642. 0x67, 0x65, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x79,
  5643. 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
  5644. 0x54, 0x79, 0x70, 0x65, 0x22, 0x7a, 0x0a, 0x0c, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70,
  5645. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69,
  5646. 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x74, 0x61,
  5647. 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x72, 0x65, 0x6d, 0x6f,
  5648. 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  5649. 0x52, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12, 0x20,
  5650. 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x03,
  5651. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73,
  5652. 0x32, 0xbc, 0x24, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65,
  5653. 0x72, 0x12, 0x5c, 0x0a, 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5654. 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5655. 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  5656. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5657. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44,
  5658. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5659. 0x6e, 0x0a, 0x11, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5660. 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5661. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  5662. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5663. 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5664. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5665. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5666. 0x76, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5667. 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5668. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d,
  5669. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71,
  5670. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5671. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f,
  5672. 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5673. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x61, 0x63, 0x75, 0x75,
  5674. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x2b, 0x2e,
  5675. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5676. 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d,
  5677. 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c,
  5678. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61,
  5679. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
  5680. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x61,
  5681. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75,
  5682. 0x70, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5683. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5684. 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5685. 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5686. 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5687. 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5688. 0x12, 0x6b, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5689. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5690. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f,
  5691. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5692. 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5693. 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5694. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a,
  5695. 0x0e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12,
  5696. 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5697. 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5698. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5699. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f,
  5700. 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5701. 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79,
  5702. 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5703. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5704. 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  5705. 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5706. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e,
  5707. 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5708. 0x00, 0x12, 0x7c, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65,
  5709. 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c,
  5710. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5711. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43,
  5712. 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c,
  5713. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5714. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43,
  5715. 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
  5716. 0x5c, 0x0a, 0x0b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24,
  5717. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5718. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71,
  5719. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5720. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f,
  5721. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x62, 0x0a,
  5722. 0x0d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26,
  5723. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5724. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52,
  5725. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5726. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5727. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5728. 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5729. 0x65, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5730. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5731. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5732. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5733. 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5734. 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b,
  5735. 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5736. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5737. 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65,
  5738. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5739. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  5740. 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5741. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  5742. 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f,
  5743. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5744. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c,
  5745. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5746. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5747. 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,
  5748. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x56, 0x6f, 0x6c, 0x75,
  5749. 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12, 0x28, 0x2e, 0x76, 0x6f,
  5750. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5751. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65,
  5752. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5753. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5754. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5755. 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74,
  5756. 0x75, 0x73, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5757. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74,
  5758. 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5759. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5760. 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5761. 0x65, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70,
  5762. 0x79, 0x12, 0x23, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5763. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52,
  5764. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5765. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5766. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
  5767. 0x12, 0x77, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69,
  5768. 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5769. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64,
  5770. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  5771. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5772. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56,
  5773. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5774. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x08, 0x43, 0x6f, 0x70,
  5775. 0x79, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5776. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c,
  5777. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5778. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79,
  5779. 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
  5780. 0x12, 0x65, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c,
  5781. 0x6f, 0x62, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5782. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5783. 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f,
  5784. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52,
  5785. 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73,
  5786. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64, 0x4e,
  5787. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5788. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61,
  5789. 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65,
  5790. 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5791. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5792. 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68,
  5793. 0x0a, 0x0f, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f,
  5794. 0x62, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5795. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5796. 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f,
  5797. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x57,
  5798. 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65,
  5799. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64,
  5800. 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c,
  5801. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65,
  5802. 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
  5803. 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5804. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65,
  5805. 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30,
  5806. 0x01, 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53,
  5807. 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5808. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5809. 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5810. 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5811. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65,
  5812. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
  5813. 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65,
  5814. 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5815. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5816. 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
  5817. 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5818. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69,
  5819. 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5820. 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5821. 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x2f, 0x2e,
  5822. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5823. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47,
  5824. 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30,
  5825. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5826. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5827. 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5828. 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5829. 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x2e, 0x2e, 0x76, 0x6f,
  5830. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5831. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62,
  5832. 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f,
  5833. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5834. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62,
  5835. 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71,
  5836. 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5837. 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5838. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5839. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5840. 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5841. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5842. 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5843. 0x00, 0x12, 0x77, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5844. 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5845. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5846. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5847. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5848. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5849. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5850. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x6f,
  5851. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e,
  5852. 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5853. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5854. 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5855. 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5856. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5857. 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5858. 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5859. 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5860. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5861. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75,
  5862. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5863. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5864. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75,
  5865. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x70, 0x0a, 0x11,
  5866. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61,
  5867. 0x64, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5868. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5869. 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e,
  5870. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5871. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
  5872. 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71,
  5873. 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65,
  5874. 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5875. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5876. 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5877. 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5878. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f,
  5879. 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5880. 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5881. 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f,
  5882. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5883. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56,
  5884. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76,
  5885. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5886. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f,
  5887. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5888. 0x12, 0x88, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d,
  5889. 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x32,
  5890. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5891. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65,
  5892. 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  5893. 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5894. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72,
  5895. 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52,
  5896. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x8e, 0x01, 0x0a, 0x1b,
  5897. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61,
  5898. 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x34, 0x2e, 0x76, 0x6f,
  5899. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5900. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74,
  5901. 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5902. 0x74, 0x1a, 0x35, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5903. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d,
  5904. 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5905. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12,
  5906. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74,
  5907. 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5908. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76,
  5909. 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5910. 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5911. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53,
  5912. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5913. 0x6e, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c,
  5914. 0x65, 0x61, 0x76, 0x65, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5915. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  5916. 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5917. 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5918. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
  5919. 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5920. 0x74, 0x0a, 0x13, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65,
  5921. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5922. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41,
  5923. 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71,
  5924. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5925. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64,
  5926. 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5927. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x1e,
  5928. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5929. 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f,
  5930. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5931. 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x22,
  5932. 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65,
  5933. 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5934. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5935. 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5936. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5937. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5938. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70,
  5939. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x04, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x1d,
  5940. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5941. 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e,
  5942. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5943. 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42,
  5944. 0x39, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65,
  5945. 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66,
  5946. 0x73, 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5947. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
  5948. 0x6f, 0x33,
  5949. }
  5950. var (
  5951. file_volume_server_proto_rawDescOnce sync.Once
  5952. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  5953. )
  5954. func file_volume_server_proto_rawDescGZIP() []byte {
  5955. file_volume_server_proto_rawDescOnce.Do(func() {
  5956. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  5957. })
  5958. return file_volume_server_proto_rawDescData
  5959. }
  5960. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 99)
  5961. var file_volume_server_proto_goTypes = []interface{}{
  5962. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  5963. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  5964. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  5965. (*Empty)(nil), // 3: volume_server_pb.Empty
  5966. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  5967. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  5968. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  5969. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  5970. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  5971. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  5972. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  5973. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  5974. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  5975. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  5976. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  5977. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  5978. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  5979. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  5980. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  5981. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  5982. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  5983. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  5984. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  5985. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  5986. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  5987. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  5988. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  5989. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  5990. (*VolumeMarkWritableRequest)(nil), // 28: volume_server_pb.VolumeMarkWritableRequest
  5991. (*VolumeMarkWritableResponse)(nil), // 29: volume_server_pb.VolumeMarkWritableResponse
  5992. (*VolumeConfigureRequest)(nil), // 30: volume_server_pb.VolumeConfigureRequest
  5993. (*VolumeConfigureResponse)(nil), // 31: volume_server_pb.VolumeConfigureResponse
  5994. (*VolumeStatusRequest)(nil), // 32: volume_server_pb.VolumeStatusRequest
  5995. (*VolumeStatusResponse)(nil), // 33: volume_server_pb.VolumeStatusResponse
  5996. (*VolumeCopyRequest)(nil), // 34: volume_server_pb.VolumeCopyRequest
  5997. (*VolumeCopyResponse)(nil), // 35: volume_server_pb.VolumeCopyResponse
  5998. (*CopyFileRequest)(nil), // 36: volume_server_pb.CopyFileRequest
  5999. (*CopyFileResponse)(nil), // 37: volume_server_pb.CopyFileResponse
  6000. (*ReadNeedleBlobRequest)(nil), // 38: volume_server_pb.ReadNeedleBlobRequest
  6001. (*ReadNeedleBlobResponse)(nil), // 39: volume_server_pb.ReadNeedleBlobResponse
  6002. (*ReadNeedleMetaRequest)(nil), // 40: volume_server_pb.ReadNeedleMetaRequest
  6003. (*ReadNeedleMetaResponse)(nil), // 41: volume_server_pb.ReadNeedleMetaResponse
  6004. (*WriteNeedleBlobRequest)(nil), // 42: volume_server_pb.WriteNeedleBlobRequest
  6005. (*WriteNeedleBlobResponse)(nil), // 43: volume_server_pb.WriteNeedleBlobResponse
  6006. (*ReadAllNeedlesRequest)(nil), // 44: volume_server_pb.ReadAllNeedlesRequest
  6007. (*ReadAllNeedlesResponse)(nil), // 45: volume_server_pb.ReadAllNeedlesResponse
  6008. (*VolumeTailSenderRequest)(nil), // 46: volume_server_pb.VolumeTailSenderRequest
  6009. (*VolumeTailSenderResponse)(nil), // 47: volume_server_pb.VolumeTailSenderResponse
  6010. (*VolumeTailReceiverRequest)(nil), // 48: volume_server_pb.VolumeTailReceiverRequest
  6011. (*VolumeTailReceiverResponse)(nil), // 49: volume_server_pb.VolumeTailReceiverResponse
  6012. (*VolumeEcShardsGenerateRequest)(nil), // 50: volume_server_pb.VolumeEcShardsGenerateRequest
  6013. (*VolumeEcShardsGenerateResponse)(nil), // 51: volume_server_pb.VolumeEcShardsGenerateResponse
  6014. (*VolumeEcShardsRebuildRequest)(nil), // 52: volume_server_pb.VolumeEcShardsRebuildRequest
  6015. (*VolumeEcShardsRebuildResponse)(nil), // 53: volume_server_pb.VolumeEcShardsRebuildResponse
  6016. (*VolumeEcShardsCopyRequest)(nil), // 54: volume_server_pb.VolumeEcShardsCopyRequest
  6017. (*VolumeEcShardsCopyResponse)(nil), // 55: volume_server_pb.VolumeEcShardsCopyResponse
  6018. (*VolumeEcShardsDeleteRequest)(nil), // 56: volume_server_pb.VolumeEcShardsDeleteRequest
  6019. (*VolumeEcShardsDeleteResponse)(nil), // 57: volume_server_pb.VolumeEcShardsDeleteResponse
  6020. (*VolumeEcShardsMountRequest)(nil), // 58: volume_server_pb.VolumeEcShardsMountRequest
  6021. (*VolumeEcShardsMountResponse)(nil), // 59: volume_server_pb.VolumeEcShardsMountResponse
  6022. (*VolumeEcShardsUnmountRequest)(nil), // 60: volume_server_pb.VolumeEcShardsUnmountRequest
  6023. (*VolumeEcShardsUnmountResponse)(nil), // 61: volume_server_pb.VolumeEcShardsUnmountResponse
  6024. (*VolumeEcShardReadRequest)(nil), // 62: volume_server_pb.VolumeEcShardReadRequest
  6025. (*VolumeEcShardReadResponse)(nil), // 63: volume_server_pb.VolumeEcShardReadResponse
  6026. (*VolumeEcBlobDeleteRequest)(nil), // 64: volume_server_pb.VolumeEcBlobDeleteRequest
  6027. (*VolumeEcBlobDeleteResponse)(nil), // 65: volume_server_pb.VolumeEcBlobDeleteResponse
  6028. (*VolumeEcShardsToVolumeRequest)(nil), // 66: volume_server_pb.VolumeEcShardsToVolumeRequest
  6029. (*VolumeEcShardsToVolumeResponse)(nil), // 67: volume_server_pb.VolumeEcShardsToVolumeResponse
  6030. (*ReadVolumeFileStatusRequest)(nil), // 68: volume_server_pb.ReadVolumeFileStatusRequest
  6031. (*ReadVolumeFileStatusResponse)(nil), // 69: volume_server_pb.ReadVolumeFileStatusResponse
  6032. (*DiskStatus)(nil), // 70: volume_server_pb.DiskStatus
  6033. (*MemStatus)(nil), // 71: volume_server_pb.MemStatus
  6034. (*RemoteFile)(nil), // 72: volume_server_pb.RemoteFile
  6035. (*VolumeInfo)(nil), // 73: volume_server_pb.VolumeInfo
  6036. (*VolumeTierMoveDatToRemoteRequest)(nil), // 74: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  6037. (*VolumeTierMoveDatToRemoteResponse)(nil), // 75: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  6038. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 76: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  6039. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 77: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  6040. (*VolumeServerStatusRequest)(nil), // 78: volume_server_pb.VolumeServerStatusRequest
  6041. (*VolumeServerStatusResponse)(nil), // 79: volume_server_pb.VolumeServerStatusResponse
  6042. (*VolumeServerLeaveRequest)(nil), // 80: volume_server_pb.VolumeServerLeaveRequest
  6043. (*VolumeServerLeaveResponse)(nil), // 81: volume_server_pb.VolumeServerLeaveResponse
  6044. (*FetchAndWriteNeedleRequest)(nil), // 82: volume_server_pb.FetchAndWriteNeedleRequest
  6045. (*FetchAndWriteNeedleResponse)(nil), // 83: volume_server_pb.FetchAndWriteNeedleResponse
  6046. (*QueryRequest)(nil), // 84: volume_server_pb.QueryRequest
  6047. (*QueriedStripe)(nil), // 85: volume_server_pb.QueriedStripe
  6048. (*VolumeNeedleStatusRequest)(nil), // 86: volume_server_pb.VolumeNeedleStatusRequest
  6049. (*VolumeNeedleStatusResponse)(nil), // 87: volume_server_pb.VolumeNeedleStatusResponse
  6050. (*PingRequest)(nil), // 88: volume_server_pb.PingRequest
  6051. (*PingResponse)(nil), // 89: volume_server_pb.PingResponse
  6052. (*FetchAndWriteNeedleRequest_Replica)(nil), // 90: volume_server_pb.FetchAndWriteNeedleRequest.Replica
  6053. (*QueryRequest_Filter)(nil), // 91: volume_server_pb.QueryRequest.Filter
  6054. (*QueryRequest_InputSerialization)(nil), // 92: volume_server_pb.QueryRequest.InputSerialization
  6055. (*QueryRequest_OutputSerialization)(nil), // 93: volume_server_pb.QueryRequest.OutputSerialization
  6056. (*QueryRequest_InputSerialization_CSVInput)(nil), // 94: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  6057. (*QueryRequest_InputSerialization_JSONInput)(nil), // 95: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  6058. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 96: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  6059. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 97: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  6060. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 98: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  6061. (*remote_pb.RemoteConf)(nil), // 99: remote_pb.RemoteConf
  6062. (*remote_pb.RemoteStorageLocation)(nil), // 100: remote_pb.RemoteStorageLocation
  6063. }
  6064. var file_volume_server_proto_depIdxs = []int32{
  6065. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  6066. 73, // 1: volume_server_pb.ReadVolumeFileStatusResponse.volume_info:type_name -> volume_server_pb.VolumeInfo
  6067. 72, // 2: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  6068. 70, // 3: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  6069. 71, // 4: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  6070. 90, // 5: volume_server_pb.FetchAndWriteNeedleRequest.replicas:type_name -> volume_server_pb.FetchAndWriteNeedleRequest.Replica
  6071. 99, // 6: volume_server_pb.FetchAndWriteNeedleRequest.remote_conf:type_name -> remote_pb.RemoteConf
  6072. 100, // 7: volume_server_pb.FetchAndWriteNeedleRequest.remote_location:type_name -> remote_pb.RemoteStorageLocation
  6073. 91, // 8: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  6074. 92, // 9: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  6075. 93, // 10: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  6076. 94, // 11: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  6077. 95, // 12: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  6078. 96, // 13: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  6079. 97, // 14: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  6080. 98, // 15: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  6081. 0, // 16: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  6082. 4, // 17: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  6083. 6, // 18: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  6084. 8, // 19: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  6085. 10, // 20: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  6086. 12, // 21: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  6087. 14, // 22: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  6088. 16, // 23: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  6089. 18, // 24: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  6090. 20, // 25: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  6091. 22, // 26: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  6092. 24, // 27: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  6093. 26, // 28: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  6094. 28, // 29: volume_server_pb.VolumeServer.VolumeMarkWritable:input_type -> volume_server_pb.VolumeMarkWritableRequest
  6095. 30, // 30: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  6096. 32, // 31: volume_server_pb.VolumeServer.VolumeStatus:input_type -> volume_server_pb.VolumeStatusRequest
  6097. 34, // 32: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  6098. 68, // 33: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  6099. 36, // 34: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  6100. 38, // 35: volume_server_pb.VolumeServer.ReadNeedleBlob:input_type -> volume_server_pb.ReadNeedleBlobRequest
  6101. 40, // 36: volume_server_pb.VolumeServer.ReadNeedleMeta:input_type -> volume_server_pb.ReadNeedleMetaRequest
  6102. 42, // 37: volume_server_pb.VolumeServer.WriteNeedleBlob:input_type -> volume_server_pb.WriteNeedleBlobRequest
  6103. 44, // 38: volume_server_pb.VolumeServer.ReadAllNeedles:input_type -> volume_server_pb.ReadAllNeedlesRequest
  6104. 46, // 39: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  6105. 48, // 40: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  6106. 50, // 41: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  6107. 52, // 42: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  6108. 54, // 43: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  6109. 56, // 44: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  6110. 58, // 45: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  6111. 60, // 46: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  6112. 62, // 47: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  6113. 64, // 48: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  6114. 66, // 49: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  6115. 74, // 50: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  6116. 76, // 51: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  6117. 78, // 52: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  6118. 80, // 53: volume_server_pb.VolumeServer.VolumeServerLeave:input_type -> volume_server_pb.VolumeServerLeaveRequest
  6119. 82, // 54: volume_server_pb.VolumeServer.FetchAndWriteNeedle:input_type -> volume_server_pb.FetchAndWriteNeedleRequest
  6120. 84, // 55: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  6121. 86, // 56: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  6122. 88, // 57: volume_server_pb.VolumeServer.Ping:input_type -> volume_server_pb.PingRequest
  6123. 1, // 58: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  6124. 5, // 59: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  6125. 7, // 60: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  6126. 9, // 61: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  6127. 11, // 62: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  6128. 13, // 63: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  6129. 15, // 64: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  6130. 17, // 65: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  6131. 19, // 66: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  6132. 21, // 67: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  6133. 23, // 68: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  6134. 25, // 69: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  6135. 27, // 70: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  6136. 29, // 71: volume_server_pb.VolumeServer.VolumeMarkWritable:output_type -> volume_server_pb.VolumeMarkWritableResponse
  6137. 31, // 72: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  6138. 33, // 73: volume_server_pb.VolumeServer.VolumeStatus:output_type -> volume_server_pb.VolumeStatusResponse
  6139. 35, // 74: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  6140. 69, // 75: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  6141. 37, // 76: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  6142. 39, // 77: volume_server_pb.VolumeServer.ReadNeedleBlob:output_type -> volume_server_pb.ReadNeedleBlobResponse
  6143. 41, // 78: volume_server_pb.VolumeServer.ReadNeedleMeta:output_type -> volume_server_pb.ReadNeedleMetaResponse
  6144. 43, // 79: volume_server_pb.VolumeServer.WriteNeedleBlob:output_type -> volume_server_pb.WriteNeedleBlobResponse
  6145. 45, // 80: volume_server_pb.VolumeServer.ReadAllNeedles:output_type -> volume_server_pb.ReadAllNeedlesResponse
  6146. 47, // 81: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  6147. 49, // 82: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  6148. 51, // 83: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  6149. 53, // 84: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  6150. 55, // 85: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  6151. 57, // 86: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  6152. 59, // 87: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  6153. 61, // 88: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  6154. 63, // 89: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  6155. 65, // 90: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  6156. 67, // 91: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  6157. 75, // 92: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  6158. 77, // 93: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  6159. 79, // 94: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  6160. 81, // 95: volume_server_pb.VolumeServer.VolumeServerLeave:output_type -> volume_server_pb.VolumeServerLeaveResponse
  6161. 83, // 96: volume_server_pb.VolumeServer.FetchAndWriteNeedle:output_type -> volume_server_pb.FetchAndWriteNeedleResponse
  6162. 85, // 97: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  6163. 87, // 98: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  6164. 89, // 99: volume_server_pb.VolumeServer.Ping:output_type -> volume_server_pb.PingResponse
  6165. 58, // [58:100] is the sub-list for method output_type
  6166. 16, // [16:58] is the sub-list for method input_type
  6167. 16, // [16:16] is the sub-list for extension type_name
  6168. 16, // [16:16] is the sub-list for extension extendee
  6169. 0, // [0:16] is the sub-list for field type_name
  6170. }
  6171. func init() { file_volume_server_proto_init() }
  6172. func file_volume_server_proto_init() {
  6173. if File_volume_server_proto != nil {
  6174. return
  6175. }
  6176. if !protoimpl.UnsafeEnabled {
  6177. file_volume_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  6178. switch v := v.(*BatchDeleteRequest); i {
  6179. case 0:
  6180. return &v.state
  6181. case 1:
  6182. return &v.sizeCache
  6183. case 2:
  6184. return &v.unknownFields
  6185. default:
  6186. return nil
  6187. }
  6188. }
  6189. file_volume_server_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  6190. switch v := v.(*BatchDeleteResponse); i {
  6191. case 0:
  6192. return &v.state
  6193. case 1:
  6194. return &v.sizeCache
  6195. case 2:
  6196. return &v.unknownFields
  6197. default:
  6198. return nil
  6199. }
  6200. }
  6201. file_volume_server_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  6202. switch v := v.(*DeleteResult); i {
  6203. case 0:
  6204. return &v.state
  6205. case 1:
  6206. return &v.sizeCache
  6207. case 2:
  6208. return &v.unknownFields
  6209. default:
  6210. return nil
  6211. }
  6212. }
  6213. file_volume_server_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  6214. switch v := v.(*Empty); i {
  6215. case 0:
  6216. return &v.state
  6217. case 1:
  6218. return &v.sizeCache
  6219. case 2:
  6220. return &v.unknownFields
  6221. default:
  6222. return nil
  6223. }
  6224. }
  6225. file_volume_server_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  6226. switch v := v.(*VacuumVolumeCheckRequest); i {
  6227. case 0:
  6228. return &v.state
  6229. case 1:
  6230. return &v.sizeCache
  6231. case 2:
  6232. return &v.unknownFields
  6233. default:
  6234. return nil
  6235. }
  6236. }
  6237. file_volume_server_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  6238. switch v := v.(*VacuumVolumeCheckResponse); i {
  6239. case 0:
  6240. return &v.state
  6241. case 1:
  6242. return &v.sizeCache
  6243. case 2:
  6244. return &v.unknownFields
  6245. default:
  6246. return nil
  6247. }
  6248. }
  6249. file_volume_server_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  6250. switch v := v.(*VacuumVolumeCompactRequest); i {
  6251. case 0:
  6252. return &v.state
  6253. case 1:
  6254. return &v.sizeCache
  6255. case 2:
  6256. return &v.unknownFields
  6257. default:
  6258. return nil
  6259. }
  6260. }
  6261. file_volume_server_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  6262. switch v := v.(*VacuumVolumeCompactResponse); i {
  6263. case 0:
  6264. return &v.state
  6265. case 1:
  6266. return &v.sizeCache
  6267. case 2:
  6268. return &v.unknownFields
  6269. default:
  6270. return nil
  6271. }
  6272. }
  6273. file_volume_server_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  6274. switch v := v.(*VacuumVolumeCommitRequest); i {
  6275. case 0:
  6276. return &v.state
  6277. case 1:
  6278. return &v.sizeCache
  6279. case 2:
  6280. return &v.unknownFields
  6281. default:
  6282. return nil
  6283. }
  6284. }
  6285. file_volume_server_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  6286. switch v := v.(*VacuumVolumeCommitResponse); i {
  6287. case 0:
  6288. return &v.state
  6289. case 1:
  6290. return &v.sizeCache
  6291. case 2:
  6292. return &v.unknownFields
  6293. default:
  6294. return nil
  6295. }
  6296. }
  6297. file_volume_server_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  6298. switch v := v.(*VacuumVolumeCleanupRequest); i {
  6299. case 0:
  6300. return &v.state
  6301. case 1:
  6302. return &v.sizeCache
  6303. case 2:
  6304. return &v.unknownFields
  6305. default:
  6306. return nil
  6307. }
  6308. }
  6309. file_volume_server_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  6310. switch v := v.(*VacuumVolumeCleanupResponse); i {
  6311. case 0:
  6312. return &v.state
  6313. case 1:
  6314. return &v.sizeCache
  6315. case 2:
  6316. return &v.unknownFields
  6317. default:
  6318. return nil
  6319. }
  6320. }
  6321. file_volume_server_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  6322. switch v := v.(*DeleteCollectionRequest); i {
  6323. case 0:
  6324. return &v.state
  6325. case 1:
  6326. return &v.sizeCache
  6327. case 2:
  6328. return &v.unknownFields
  6329. default:
  6330. return nil
  6331. }
  6332. }
  6333. file_volume_server_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  6334. switch v := v.(*DeleteCollectionResponse); i {
  6335. case 0:
  6336. return &v.state
  6337. case 1:
  6338. return &v.sizeCache
  6339. case 2:
  6340. return &v.unknownFields
  6341. default:
  6342. return nil
  6343. }
  6344. }
  6345. file_volume_server_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  6346. switch v := v.(*AllocateVolumeRequest); i {
  6347. case 0:
  6348. return &v.state
  6349. case 1:
  6350. return &v.sizeCache
  6351. case 2:
  6352. return &v.unknownFields
  6353. default:
  6354. return nil
  6355. }
  6356. }
  6357. file_volume_server_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  6358. switch v := v.(*AllocateVolumeResponse); i {
  6359. case 0:
  6360. return &v.state
  6361. case 1:
  6362. return &v.sizeCache
  6363. case 2:
  6364. return &v.unknownFields
  6365. default:
  6366. return nil
  6367. }
  6368. }
  6369. file_volume_server_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  6370. switch v := v.(*VolumeSyncStatusRequest); i {
  6371. case 0:
  6372. return &v.state
  6373. case 1:
  6374. return &v.sizeCache
  6375. case 2:
  6376. return &v.unknownFields
  6377. default:
  6378. return nil
  6379. }
  6380. }
  6381. file_volume_server_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  6382. switch v := v.(*VolumeSyncStatusResponse); i {
  6383. case 0:
  6384. return &v.state
  6385. case 1:
  6386. return &v.sizeCache
  6387. case 2:
  6388. return &v.unknownFields
  6389. default:
  6390. return nil
  6391. }
  6392. }
  6393. file_volume_server_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  6394. switch v := v.(*VolumeIncrementalCopyRequest); i {
  6395. case 0:
  6396. return &v.state
  6397. case 1:
  6398. return &v.sizeCache
  6399. case 2:
  6400. return &v.unknownFields
  6401. default:
  6402. return nil
  6403. }
  6404. }
  6405. file_volume_server_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  6406. switch v := v.(*VolumeIncrementalCopyResponse); i {
  6407. case 0:
  6408. return &v.state
  6409. case 1:
  6410. return &v.sizeCache
  6411. case 2:
  6412. return &v.unknownFields
  6413. default:
  6414. return nil
  6415. }
  6416. }
  6417. file_volume_server_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  6418. switch v := v.(*VolumeMountRequest); i {
  6419. case 0:
  6420. return &v.state
  6421. case 1:
  6422. return &v.sizeCache
  6423. case 2:
  6424. return &v.unknownFields
  6425. default:
  6426. return nil
  6427. }
  6428. }
  6429. file_volume_server_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  6430. switch v := v.(*VolumeMountResponse); i {
  6431. case 0:
  6432. return &v.state
  6433. case 1:
  6434. return &v.sizeCache
  6435. case 2:
  6436. return &v.unknownFields
  6437. default:
  6438. return nil
  6439. }
  6440. }
  6441. file_volume_server_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  6442. switch v := v.(*VolumeUnmountRequest); i {
  6443. case 0:
  6444. return &v.state
  6445. case 1:
  6446. return &v.sizeCache
  6447. case 2:
  6448. return &v.unknownFields
  6449. default:
  6450. return nil
  6451. }
  6452. }
  6453. file_volume_server_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  6454. switch v := v.(*VolumeUnmountResponse); i {
  6455. case 0:
  6456. return &v.state
  6457. case 1:
  6458. return &v.sizeCache
  6459. case 2:
  6460. return &v.unknownFields
  6461. default:
  6462. return nil
  6463. }
  6464. }
  6465. file_volume_server_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  6466. switch v := v.(*VolumeDeleteRequest); i {
  6467. case 0:
  6468. return &v.state
  6469. case 1:
  6470. return &v.sizeCache
  6471. case 2:
  6472. return &v.unknownFields
  6473. default:
  6474. return nil
  6475. }
  6476. }
  6477. file_volume_server_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  6478. switch v := v.(*VolumeDeleteResponse); i {
  6479. case 0:
  6480. return &v.state
  6481. case 1:
  6482. return &v.sizeCache
  6483. case 2:
  6484. return &v.unknownFields
  6485. default:
  6486. return nil
  6487. }
  6488. }
  6489. file_volume_server_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  6490. switch v := v.(*VolumeMarkReadonlyRequest); i {
  6491. case 0:
  6492. return &v.state
  6493. case 1:
  6494. return &v.sizeCache
  6495. case 2:
  6496. return &v.unknownFields
  6497. default:
  6498. return nil
  6499. }
  6500. }
  6501. file_volume_server_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  6502. switch v := v.(*VolumeMarkReadonlyResponse); i {
  6503. case 0:
  6504. return &v.state
  6505. case 1:
  6506. return &v.sizeCache
  6507. case 2:
  6508. return &v.unknownFields
  6509. default:
  6510. return nil
  6511. }
  6512. }
  6513. file_volume_server_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  6514. switch v := v.(*VolumeMarkWritableRequest); i {
  6515. case 0:
  6516. return &v.state
  6517. case 1:
  6518. return &v.sizeCache
  6519. case 2:
  6520. return &v.unknownFields
  6521. default:
  6522. return nil
  6523. }
  6524. }
  6525. file_volume_server_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  6526. switch v := v.(*VolumeMarkWritableResponse); i {
  6527. case 0:
  6528. return &v.state
  6529. case 1:
  6530. return &v.sizeCache
  6531. case 2:
  6532. return &v.unknownFields
  6533. default:
  6534. return nil
  6535. }
  6536. }
  6537. file_volume_server_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  6538. switch v := v.(*VolumeConfigureRequest); i {
  6539. case 0:
  6540. return &v.state
  6541. case 1:
  6542. return &v.sizeCache
  6543. case 2:
  6544. return &v.unknownFields
  6545. default:
  6546. return nil
  6547. }
  6548. }
  6549. file_volume_server_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  6550. switch v := v.(*VolumeConfigureResponse); i {
  6551. case 0:
  6552. return &v.state
  6553. case 1:
  6554. return &v.sizeCache
  6555. case 2:
  6556. return &v.unknownFields
  6557. default:
  6558. return nil
  6559. }
  6560. }
  6561. file_volume_server_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  6562. switch v := v.(*VolumeStatusRequest); i {
  6563. case 0:
  6564. return &v.state
  6565. case 1:
  6566. return &v.sizeCache
  6567. case 2:
  6568. return &v.unknownFields
  6569. default:
  6570. return nil
  6571. }
  6572. }
  6573. file_volume_server_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  6574. switch v := v.(*VolumeStatusResponse); i {
  6575. case 0:
  6576. return &v.state
  6577. case 1:
  6578. return &v.sizeCache
  6579. case 2:
  6580. return &v.unknownFields
  6581. default:
  6582. return nil
  6583. }
  6584. }
  6585. file_volume_server_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  6586. switch v := v.(*VolumeCopyRequest); i {
  6587. case 0:
  6588. return &v.state
  6589. case 1:
  6590. return &v.sizeCache
  6591. case 2:
  6592. return &v.unknownFields
  6593. default:
  6594. return nil
  6595. }
  6596. }
  6597. file_volume_server_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  6598. switch v := v.(*VolumeCopyResponse); i {
  6599. case 0:
  6600. return &v.state
  6601. case 1:
  6602. return &v.sizeCache
  6603. case 2:
  6604. return &v.unknownFields
  6605. default:
  6606. return nil
  6607. }
  6608. }
  6609. file_volume_server_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  6610. switch v := v.(*CopyFileRequest); i {
  6611. case 0:
  6612. return &v.state
  6613. case 1:
  6614. return &v.sizeCache
  6615. case 2:
  6616. return &v.unknownFields
  6617. default:
  6618. return nil
  6619. }
  6620. }
  6621. file_volume_server_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  6622. switch v := v.(*CopyFileResponse); i {
  6623. case 0:
  6624. return &v.state
  6625. case 1:
  6626. return &v.sizeCache
  6627. case 2:
  6628. return &v.unknownFields
  6629. default:
  6630. return nil
  6631. }
  6632. }
  6633. file_volume_server_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  6634. switch v := v.(*ReadNeedleBlobRequest); i {
  6635. case 0:
  6636. return &v.state
  6637. case 1:
  6638. return &v.sizeCache
  6639. case 2:
  6640. return &v.unknownFields
  6641. default:
  6642. return nil
  6643. }
  6644. }
  6645. file_volume_server_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  6646. switch v := v.(*ReadNeedleBlobResponse); i {
  6647. case 0:
  6648. return &v.state
  6649. case 1:
  6650. return &v.sizeCache
  6651. case 2:
  6652. return &v.unknownFields
  6653. default:
  6654. return nil
  6655. }
  6656. }
  6657. file_volume_server_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  6658. switch v := v.(*ReadNeedleMetaRequest); i {
  6659. case 0:
  6660. return &v.state
  6661. case 1:
  6662. return &v.sizeCache
  6663. case 2:
  6664. return &v.unknownFields
  6665. default:
  6666. return nil
  6667. }
  6668. }
  6669. file_volume_server_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  6670. switch v := v.(*ReadNeedleMetaResponse); i {
  6671. case 0:
  6672. return &v.state
  6673. case 1:
  6674. return &v.sizeCache
  6675. case 2:
  6676. return &v.unknownFields
  6677. default:
  6678. return nil
  6679. }
  6680. }
  6681. file_volume_server_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  6682. switch v := v.(*WriteNeedleBlobRequest); i {
  6683. case 0:
  6684. return &v.state
  6685. case 1:
  6686. return &v.sizeCache
  6687. case 2:
  6688. return &v.unknownFields
  6689. default:
  6690. return nil
  6691. }
  6692. }
  6693. file_volume_server_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  6694. switch v := v.(*WriteNeedleBlobResponse); i {
  6695. case 0:
  6696. return &v.state
  6697. case 1:
  6698. return &v.sizeCache
  6699. case 2:
  6700. return &v.unknownFields
  6701. default:
  6702. return nil
  6703. }
  6704. }
  6705. file_volume_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  6706. switch v := v.(*ReadAllNeedlesRequest); i {
  6707. case 0:
  6708. return &v.state
  6709. case 1:
  6710. return &v.sizeCache
  6711. case 2:
  6712. return &v.unknownFields
  6713. default:
  6714. return nil
  6715. }
  6716. }
  6717. file_volume_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  6718. switch v := v.(*ReadAllNeedlesResponse); i {
  6719. case 0:
  6720. return &v.state
  6721. case 1:
  6722. return &v.sizeCache
  6723. case 2:
  6724. return &v.unknownFields
  6725. default:
  6726. return nil
  6727. }
  6728. }
  6729. file_volume_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  6730. switch v := v.(*VolumeTailSenderRequest); i {
  6731. case 0:
  6732. return &v.state
  6733. case 1:
  6734. return &v.sizeCache
  6735. case 2:
  6736. return &v.unknownFields
  6737. default:
  6738. return nil
  6739. }
  6740. }
  6741. file_volume_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  6742. switch v := v.(*VolumeTailSenderResponse); i {
  6743. case 0:
  6744. return &v.state
  6745. case 1:
  6746. return &v.sizeCache
  6747. case 2:
  6748. return &v.unknownFields
  6749. default:
  6750. return nil
  6751. }
  6752. }
  6753. file_volume_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  6754. switch v := v.(*VolumeTailReceiverRequest); i {
  6755. case 0:
  6756. return &v.state
  6757. case 1:
  6758. return &v.sizeCache
  6759. case 2:
  6760. return &v.unknownFields
  6761. default:
  6762. return nil
  6763. }
  6764. }
  6765. file_volume_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  6766. switch v := v.(*VolumeTailReceiverResponse); i {
  6767. case 0:
  6768. return &v.state
  6769. case 1:
  6770. return &v.sizeCache
  6771. case 2:
  6772. return &v.unknownFields
  6773. default:
  6774. return nil
  6775. }
  6776. }
  6777. file_volume_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  6778. switch v := v.(*VolumeEcShardsGenerateRequest); i {
  6779. case 0:
  6780. return &v.state
  6781. case 1:
  6782. return &v.sizeCache
  6783. case 2:
  6784. return &v.unknownFields
  6785. default:
  6786. return nil
  6787. }
  6788. }
  6789. file_volume_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  6790. switch v := v.(*VolumeEcShardsGenerateResponse); i {
  6791. case 0:
  6792. return &v.state
  6793. case 1:
  6794. return &v.sizeCache
  6795. case 2:
  6796. return &v.unknownFields
  6797. default:
  6798. return nil
  6799. }
  6800. }
  6801. file_volume_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  6802. switch v := v.(*VolumeEcShardsRebuildRequest); i {
  6803. case 0:
  6804. return &v.state
  6805. case 1:
  6806. return &v.sizeCache
  6807. case 2:
  6808. return &v.unknownFields
  6809. default:
  6810. return nil
  6811. }
  6812. }
  6813. file_volume_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  6814. switch v := v.(*VolumeEcShardsRebuildResponse); i {
  6815. case 0:
  6816. return &v.state
  6817. case 1:
  6818. return &v.sizeCache
  6819. case 2:
  6820. return &v.unknownFields
  6821. default:
  6822. return nil
  6823. }
  6824. }
  6825. file_volume_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  6826. switch v := v.(*VolumeEcShardsCopyRequest); i {
  6827. case 0:
  6828. return &v.state
  6829. case 1:
  6830. return &v.sizeCache
  6831. case 2:
  6832. return &v.unknownFields
  6833. default:
  6834. return nil
  6835. }
  6836. }
  6837. file_volume_server_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  6838. switch v := v.(*VolumeEcShardsCopyResponse); i {
  6839. case 0:
  6840. return &v.state
  6841. case 1:
  6842. return &v.sizeCache
  6843. case 2:
  6844. return &v.unknownFields
  6845. default:
  6846. return nil
  6847. }
  6848. }
  6849. file_volume_server_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  6850. switch v := v.(*VolumeEcShardsDeleteRequest); i {
  6851. case 0:
  6852. return &v.state
  6853. case 1:
  6854. return &v.sizeCache
  6855. case 2:
  6856. return &v.unknownFields
  6857. default:
  6858. return nil
  6859. }
  6860. }
  6861. file_volume_server_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  6862. switch v := v.(*VolumeEcShardsDeleteResponse); i {
  6863. case 0:
  6864. return &v.state
  6865. case 1:
  6866. return &v.sizeCache
  6867. case 2:
  6868. return &v.unknownFields
  6869. default:
  6870. return nil
  6871. }
  6872. }
  6873. file_volume_server_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  6874. switch v := v.(*VolumeEcShardsMountRequest); i {
  6875. case 0:
  6876. return &v.state
  6877. case 1:
  6878. return &v.sizeCache
  6879. case 2:
  6880. return &v.unknownFields
  6881. default:
  6882. return nil
  6883. }
  6884. }
  6885. file_volume_server_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  6886. switch v := v.(*VolumeEcShardsMountResponse); i {
  6887. case 0:
  6888. return &v.state
  6889. case 1:
  6890. return &v.sizeCache
  6891. case 2:
  6892. return &v.unknownFields
  6893. default:
  6894. return nil
  6895. }
  6896. }
  6897. file_volume_server_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  6898. switch v := v.(*VolumeEcShardsUnmountRequest); i {
  6899. case 0:
  6900. return &v.state
  6901. case 1:
  6902. return &v.sizeCache
  6903. case 2:
  6904. return &v.unknownFields
  6905. default:
  6906. return nil
  6907. }
  6908. }
  6909. file_volume_server_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  6910. switch v := v.(*VolumeEcShardsUnmountResponse); i {
  6911. case 0:
  6912. return &v.state
  6913. case 1:
  6914. return &v.sizeCache
  6915. case 2:
  6916. return &v.unknownFields
  6917. default:
  6918. return nil
  6919. }
  6920. }
  6921. file_volume_server_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  6922. switch v := v.(*VolumeEcShardReadRequest); i {
  6923. case 0:
  6924. return &v.state
  6925. case 1:
  6926. return &v.sizeCache
  6927. case 2:
  6928. return &v.unknownFields
  6929. default:
  6930. return nil
  6931. }
  6932. }
  6933. file_volume_server_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  6934. switch v := v.(*VolumeEcShardReadResponse); i {
  6935. case 0:
  6936. return &v.state
  6937. case 1:
  6938. return &v.sizeCache
  6939. case 2:
  6940. return &v.unknownFields
  6941. default:
  6942. return nil
  6943. }
  6944. }
  6945. file_volume_server_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  6946. switch v := v.(*VolumeEcBlobDeleteRequest); i {
  6947. case 0:
  6948. return &v.state
  6949. case 1:
  6950. return &v.sizeCache
  6951. case 2:
  6952. return &v.unknownFields
  6953. default:
  6954. return nil
  6955. }
  6956. }
  6957. file_volume_server_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  6958. switch v := v.(*VolumeEcBlobDeleteResponse); i {
  6959. case 0:
  6960. return &v.state
  6961. case 1:
  6962. return &v.sizeCache
  6963. case 2:
  6964. return &v.unknownFields
  6965. default:
  6966. return nil
  6967. }
  6968. }
  6969. file_volume_server_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  6970. switch v := v.(*VolumeEcShardsToVolumeRequest); i {
  6971. case 0:
  6972. return &v.state
  6973. case 1:
  6974. return &v.sizeCache
  6975. case 2:
  6976. return &v.unknownFields
  6977. default:
  6978. return nil
  6979. }
  6980. }
  6981. file_volume_server_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  6982. switch v := v.(*VolumeEcShardsToVolumeResponse); i {
  6983. case 0:
  6984. return &v.state
  6985. case 1:
  6986. return &v.sizeCache
  6987. case 2:
  6988. return &v.unknownFields
  6989. default:
  6990. return nil
  6991. }
  6992. }
  6993. file_volume_server_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
  6994. switch v := v.(*ReadVolumeFileStatusRequest); i {
  6995. case 0:
  6996. return &v.state
  6997. case 1:
  6998. return &v.sizeCache
  6999. case 2:
  7000. return &v.unknownFields
  7001. default:
  7002. return nil
  7003. }
  7004. }
  7005. file_volume_server_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
  7006. switch v := v.(*ReadVolumeFileStatusResponse); i {
  7007. case 0:
  7008. return &v.state
  7009. case 1:
  7010. return &v.sizeCache
  7011. case 2:
  7012. return &v.unknownFields
  7013. default:
  7014. return nil
  7015. }
  7016. }
  7017. file_volume_server_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
  7018. switch v := v.(*DiskStatus); i {
  7019. case 0:
  7020. return &v.state
  7021. case 1:
  7022. return &v.sizeCache
  7023. case 2:
  7024. return &v.unknownFields
  7025. default:
  7026. return nil
  7027. }
  7028. }
  7029. file_volume_server_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
  7030. switch v := v.(*MemStatus); i {
  7031. case 0:
  7032. return &v.state
  7033. case 1:
  7034. return &v.sizeCache
  7035. case 2:
  7036. return &v.unknownFields
  7037. default:
  7038. return nil
  7039. }
  7040. }
  7041. file_volume_server_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
  7042. switch v := v.(*RemoteFile); i {
  7043. case 0:
  7044. return &v.state
  7045. case 1:
  7046. return &v.sizeCache
  7047. case 2:
  7048. return &v.unknownFields
  7049. default:
  7050. return nil
  7051. }
  7052. }
  7053. file_volume_server_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
  7054. switch v := v.(*VolumeInfo); i {
  7055. case 0:
  7056. return &v.state
  7057. case 1:
  7058. return &v.sizeCache
  7059. case 2:
  7060. return &v.unknownFields
  7061. default:
  7062. return nil
  7063. }
  7064. }
  7065. file_volume_server_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
  7066. switch v := v.(*VolumeTierMoveDatToRemoteRequest); i {
  7067. case 0:
  7068. return &v.state
  7069. case 1:
  7070. return &v.sizeCache
  7071. case 2:
  7072. return &v.unknownFields
  7073. default:
  7074. return nil
  7075. }
  7076. }
  7077. file_volume_server_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
  7078. switch v := v.(*VolumeTierMoveDatToRemoteResponse); i {
  7079. case 0:
  7080. return &v.state
  7081. case 1:
  7082. return &v.sizeCache
  7083. case 2:
  7084. return &v.unknownFields
  7085. default:
  7086. return nil
  7087. }
  7088. }
  7089. file_volume_server_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
  7090. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); i {
  7091. case 0:
  7092. return &v.state
  7093. case 1:
  7094. return &v.sizeCache
  7095. case 2:
  7096. return &v.unknownFields
  7097. default:
  7098. return nil
  7099. }
  7100. }
  7101. file_volume_server_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
  7102. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); i {
  7103. case 0:
  7104. return &v.state
  7105. case 1:
  7106. return &v.sizeCache
  7107. case 2:
  7108. return &v.unknownFields
  7109. default:
  7110. return nil
  7111. }
  7112. }
  7113. file_volume_server_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
  7114. switch v := v.(*VolumeServerStatusRequest); i {
  7115. case 0:
  7116. return &v.state
  7117. case 1:
  7118. return &v.sizeCache
  7119. case 2:
  7120. return &v.unknownFields
  7121. default:
  7122. return nil
  7123. }
  7124. }
  7125. file_volume_server_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
  7126. switch v := v.(*VolumeServerStatusResponse); i {
  7127. case 0:
  7128. return &v.state
  7129. case 1:
  7130. return &v.sizeCache
  7131. case 2:
  7132. return &v.unknownFields
  7133. default:
  7134. return nil
  7135. }
  7136. }
  7137. file_volume_server_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
  7138. switch v := v.(*VolumeServerLeaveRequest); i {
  7139. case 0:
  7140. return &v.state
  7141. case 1:
  7142. return &v.sizeCache
  7143. case 2:
  7144. return &v.unknownFields
  7145. default:
  7146. return nil
  7147. }
  7148. }
  7149. file_volume_server_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
  7150. switch v := v.(*VolumeServerLeaveResponse); i {
  7151. case 0:
  7152. return &v.state
  7153. case 1:
  7154. return &v.sizeCache
  7155. case 2:
  7156. return &v.unknownFields
  7157. default:
  7158. return nil
  7159. }
  7160. }
  7161. file_volume_server_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
  7162. switch v := v.(*FetchAndWriteNeedleRequest); i {
  7163. case 0:
  7164. return &v.state
  7165. case 1:
  7166. return &v.sizeCache
  7167. case 2:
  7168. return &v.unknownFields
  7169. default:
  7170. return nil
  7171. }
  7172. }
  7173. file_volume_server_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
  7174. switch v := v.(*FetchAndWriteNeedleResponse); i {
  7175. case 0:
  7176. return &v.state
  7177. case 1:
  7178. return &v.sizeCache
  7179. case 2:
  7180. return &v.unknownFields
  7181. default:
  7182. return nil
  7183. }
  7184. }
  7185. file_volume_server_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
  7186. switch v := v.(*QueryRequest); i {
  7187. case 0:
  7188. return &v.state
  7189. case 1:
  7190. return &v.sizeCache
  7191. case 2:
  7192. return &v.unknownFields
  7193. default:
  7194. return nil
  7195. }
  7196. }
  7197. file_volume_server_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
  7198. switch v := v.(*QueriedStripe); i {
  7199. case 0:
  7200. return &v.state
  7201. case 1:
  7202. return &v.sizeCache
  7203. case 2:
  7204. return &v.unknownFields
  7205. default:
  7206. return nil
  7207. }
  7208. }
  7209. file_volume_server_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
  7210. switch v := v.(*VolumeNeedleStatusRequest); i {
  7211. case 0:
  7212. return &v.state
  7213. case 1:
  7214. return &v.sizeCache
  7215. case 2:
  7216. return &v.unknownFields
  7217. default:
  7218. return nil
  7219. }
  7220. }
  7221. file_volume_server_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
  7222. switch v := v.(*VolumeNeedleStatusResponse); i {
  7223. case 0:
  7224. return &v.state
  7225. case 1:
  7226. return &v.sizeCache
  7227. case 2:
  7228. return &v.unknownFields
  7229. default:
  7230. return nil
  7231. }
  7232. }
  7233. file_volume_server_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
  7234. switch v := v.(*PingRequest); i {
  7235. case 0:
  7236. return &v.state
  7237. case 1:
  7238. return &v.sizeCache
  7239. case 2:
  7240. return &v.unknownFields
  7241. default:
  7242. return nil
  7243. }
  7244. }
  7245. file_volume_server_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
  7246. switch v := v.(*PingResponse); i {
  7247. case 0:
  7248. return &v.state
  7249. case 1:
  7250. return &v.sizeCache
  7251. case 2:
  7252. return &v.unknownFields
  7253. default:
  7254. return nil
  7255. }
  7256. }
  7257. file_volume_server_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} {
  7258. switch v := v.(*FetchAndWriteNeedleRequest_Replica); i {
  7259. case 0:
  7260. return &v.state
  7261. case 1:
  7262. return &v.sizeCache
  7263. case 2:
  7264. return &v.unknownFields
  7265. default:
  7266. return nil
  7267. }
  7268. }
  7269. file_volume_server_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} {
  7270. switch v := v.(*QueryRequest_Filter); i {
  7271. case 0:
  7272. return &v.state
  7273. case 1:
  7274. return &v.sizeCache
  7275. case 2:
  7276. return &v.unknownFields
  7277. default:
  7278. return nil
  7279. }
  7280. }
  7281. file_volume_server_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} {
  7282. switch v := v.(*QueryRequest_InputSerialization); i {
  7283. case 0:
  7284. return &v.state
  7285. case 1:
  7286. return &v.sizeCache
  7287. case 2:
  7288. return &v.unknownFields
  7289. default:
  7290. return nil
  7291. }
  7292. }
  7293. file_volume_server_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} {
  7294. switch v := v.(*QueryRequest_OutputSerialization); i {
  7295. case 0:
  7296. return &v.state
  7297. case 1:
  7298. return &v.sizeCache
  7299. case 2:
  7300. return &v.unknownFields
  7301. default:
  7302. return nil
  7303. }
  7304. }
  7305. file_volume_server_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} {
  7306. switch v := v.(*QueryRequest_InputSerialization_CSVInput); i {
  7307. case 0:
  7308. return &v.state
  7309. case 1:
  7310. return &v.sizeCache
  7311. case 2:
  7312. return &v.unknownFields
  7313. default:
  7314. return nil
  7315. }
  7316. }
  7317. file_volume_server_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} {
  7318. switch v := v.(*QueryRequest_InputSerialization_JSONInput); i {
  7319. case 0:
  7320. return &v.state
  7321. case 1:
  7322. return &v.sizeCache
  7323. case 2:
  7324. return &v.unknownFields
  7325. default:
  7326. return nil
  7327. }
  7328. }
  7329. file_volume_server_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} {
  7330. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  7331. case 0:
  7332. return &v.state
  7333. case 1:
  7334. return &v.sizeCache
  7335. case 2:
  7336. return &v.unknownFields
  7337. default:
  7338. return nil
  7339. }
  7340. }
  7341. file_volume_server_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} {
  7342. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  7343. case 0:
  7344. return &v.state
  7345. case 1:
  7346. return &v.sizeCache
  7347. case 2:
  7348. return &v.unknownFields
  7349. default:
  7350. return nil
  7351. }
  7352. }
  7353. file_volume_server_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} {
  7354. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  7355. case 0:
  7356. return &v.state
  7357. case 1:
  7358. return &v.sizeCache
  7359. case 2:
  7360. return &v.unknownFields
  7361. default:
  7362. return nil
  7363. }
  7364. }
  7365. }
  7366. type x struct{}
  7367. out := protoimpl.TypeBuilder{
  7368. File: protoimpl.DescBuilder{
  7369. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  7370. RawDescriptor: file_volume_server_proto_rawDesc,
  7371. NumEnums: 0,
  7372. NumMessages: 99,
  7373. NumExtensions: 0,
  7374. NumServices: 1,
  7375. },
  7376. GoTypes: file_volume_server_proto_goTypes,
  7377. DependencyIndexes: file_volume_server_proto_depIdxs,
  7378. MessageInfos: file_volume_server_proto_msgTypes,
  7379. }.Build()
  7380. File_volume_server_proto = out.File
  7381. file_volume_server_proto_rawDesc = nil
  7382. file_volume_server_proto_goTypes = nil
  7383. file_volume_server_proto_depIdxs = nil
  7384. }