volume_server.pb.go 309 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.34.2
  4. // protoc v5.28.1
  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=bytes_offset,json=bytesOffset,proto3" json:"bytes_offset,omitempty"`
  3569. DatFileSize int64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"` // store the original dat file size
  3570. ExpireAtSec uint64 `protobuf:"varint,6,opt,name=expire_at_sec,json=expireAtSec,proto3" json:"expire_at_sec,omitempty"` // expiration 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) GetExpireAtSec() uint64 {
  3631. if x != nil {
  3632. return x.ExpireAtSec
  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. type OldVersionVolumeInfo struct {
  3643. state protoimpl.MessageState
  3644. sizeCache protoimpl.SizeCache
  3645. unknownFields protoimpl.UnknownFields
  3646. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
  3647. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
  3648. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  3649. BytesOffset uint32 `protobuf:"varint,4,opt,name=BytesOffset,proto3" json:"BytesOffset,omitempty"`
  3650. DatFileSize int64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"` // store the original dat file size
  3651. DestroyTime uint64 `protobuf:"varint,6,opt,name=DestroyTime,proto3" json:"DestroyTime,omitempty"` // expiration time of ec volume
  3652. ReadOnly bool `protobuf:"varint,7,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"`
  3653. }
  3654. func (x *OldVersionVolumeInfo) Reset() {
  3655. *x = OldVersionVolumeInfo{}
  3656. if protoimpl.UnsafeEnabled {
  3657. mi := &file_volume_server_proto_msgTypes[74]
  3658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3659. ms.StoreMessageInfo(mi)
  3660. }
  3661. }
  3662. func (x *OldVersionVolumeInfo) String() string {
  3663. return protoimpl.X.MessageStringOf(x)
  3664. }
  3665. func (*OldVersionVolumeInfo) ProtoMessage() {}
  3666. func (x *OldVersionVolumeInfo) ProtoReflect() protoreflect.Message {
  3667. mi := &file_volume_server_proto_msgTypes[74]
  3668. if protoimpl.UnsafeEnabled && x != nil {
  3669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3670. if ms.LoadMessageInfo() == nil {
  3671. ms.StoreMessageInfo(mi)
  3672. }
  3673. return ms
  3674. }
  3675. return mi.MessageOf(x)
  3676. }
  3677. // Deprecated: Use OldVersionVolumeInfo.ProtoReflect.Descriptor instead.
  3678. func (*OldVersionVolumeInfo) Descriptor() ([]byte, []int) {
  3679. return file_volume_server_proto_rawDescGZIP(), []int{74}
  3680. }
  3681. func (x *OldVersionVolumeInfo) GetFiles() []*RemoteFile {
  3682. if x != nil {
  3683. return x.Files
  3684. }
  3685. return nil
  3686. }
  3687. func (x *OldVersionVolumeInfo) GetVersion() uint32 {
  3688. if x != nil {
  3689. return x.Version
  3690. }
  3691. return 0
  3692. }
  3693. func (x *OldVersionVolumeInfo) GetReplication() string {
  3694. if x != nil {
  3695. return x.Replication
  3696. }
  3697. return ""
  3698. }
  3699. func (x *OldVersionVolumeInfo) GetBytesOffset() uint32 {
  3700. if x != nil {
  3701. return x.BytesOffset
  3702. }
  3703. return 0
  3704. }
  3705. func (x *OldVersionVolumeInfo) GetDatFileSize() int64 {
  3706. if x != nil {
  3707. return x.DatFileSize
  3708. }
  3709. return 0
  3710. }
  3711. func (x *OldVersionVolumeInfo) GetDestroyTime() uint64 {
  3712. if x != nil {
  3713. return x.DestroyTime
  3714. }
  3715. return 0
  3716. }
  3717. func (x *OldVersionVolumeInfo) GetReadOnly() bool {
  3718. if x != nil {
  3719. return x.ReadOnly
  3720. }
  3721. return false
  3722. }
  3723. // tiered storage
  3724. type VolumeTierMoveDatToRemoteRequest struct {
  3725. state protoimpl.MessageState
  3726. sizeCache protoimpl.SizeCache
  3727. unknownFields protoimpl.UnknownFields
  3728. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3729. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3730. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName,proto3" json:"destination_backend_name,omitempty"`
  3731. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile,proto3" json:"keep_local_dat_file,omitempty"`
  3732. }
  3733. func (x *VolumeTierMoveDatToRemoteRequest) Reset() {
  3734. *x = VolumeTierMoveDatToRemoteRequest{}
  3735. if protoimpl.UnsafeEnabled {
  3736. mi := &file_volume_server_proto_msgTypes[75]
  3737. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3738. ms.StoreMessageInfo(mi)
  3739. }
  3740. }
  3741. func (x *VolumeTierMoveDatToRemoteRequest) String() string {
  3742. return protoimpl.X.MessageStringOf(x)
  3743. }
  3744. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  3745. func (x *VolumeTierMoveDatToRemoteRequest) ProtoReflect() protoreflect.Message {
  3746. mi := &file_volume_server_proto_msgTypes[75]
  3747. if protoimpl.UnsafeEnabled && x != nil {
  3748. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3749. if ms.LoadMessageInfo() == nil {
  3750. ms.StoreMessageInfo(mi)
  3751. }
  3752. return ms
  3753. }
  3754. return mi.MessageOf(x)
  3755. }
  3756. // Deprecated: Use VolumeTierMoveDatToRemoteRequest.ProtoReflect.Descriptor instead.
  3757. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  3758. return file_volume_server_proto_rawDescGZIP(), []int{75}
  3759. }
  3760. func (x *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  3761. if x != nil {
  3762. return x.VolumeId
  3763. }
  3764. return 0
  3765. }
  3766. func (x *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  3767. if x != nil {
  3768. return x.Collection
  3769. }
  3770. return ""
  3771. }
  3772. func (x *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  3773. if x != nil {
  3774. return x.DestinationBackendName
  3775. }
  3776. return ""
  3777. }
  3778. func (x *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  3779. if x != nil {
  3780. return x.KeepLocalDatFile
  3781. }
  3782. return false
  3783. }
  3784. type VolumeTierMoveDatToRemoteResponse struct {
  3785. state protoimpl.MessageState
  3786. sizeCache protoimpl.SizeCache
  3787. unknownFields protoimpl.UnknownFields
  3788. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3789. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3790. }
  3791. func (x *VolumeTierMoveDatToRemoteResponse) Reset() {
  3792. *x = VolumeTierMoveDatToRemoteResponse{}
  3793. if protoimpl.UnsafeEnabled {
  3794. mi := &file_volume_server_proto_msgTypes[76]
  3795. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3796. ms.StoreMessageInfo(mi)
  3797. }
  3798. }
  3799. func (x *VolumeTierMoveDatToRemoteResponse) String() string {
  3800. return protoimpl.X.MessageStringOf(x)
  3801. }
  3802. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  3803. func (x *VolumeTierMoveDatToRemoteResponse) ProtoReflect() protoreflect.Message {
  3804. mi := &file_volume_server_proto_msgTypes[76]
  3805. if protoimpl.UnsafeEnabled && x != nil {
  3806. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3807. if ms.LoadMessageInfo() == nil {
  3808. ms.StoreMessageInfo(mi)
  3809. }
  3810. return ms
  3811. }
  3812. return mi.MessageOf(x)
  3813. }
  3814. // Deprecated: Use VolumeTierMoveDatToRemoteResponse.ProtoReflect.Descriptor instead.
  3815. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  3816. return file_volume_server_proto_rawDescGZIP(), []int{76}
  3817. }
  3818. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  3819. if x != nil {
  3820. return x.Processed
  3821. }
  3822. return 0
  3823. }
  3824. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  3825. if x != nil {
  3826. return x.ProcessedPercentage
  3827. }
  3828. return 0
  3829. }
  3830. type VolumeTierMoveDatFromRemoteRequest struct {
  3831. state protoimpl.MessageState
  3832. sizeCache protoimpl.SizeCache
  3833. unknownFields protoimpl.UnknownFields
  3834. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3835. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3836. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile,proto3" json:"keep_remote_dat_file,omitempty"`
  3837. }
  3838. func (x *VolumeTierMoveDatFromRemoteRequest) Reset() {
  3839. *x = VolumeTierMoveDatFromRemoteRequest{}
  3840. if protoimpl.UnsafeEnabled {
  3841. mi := &file_volume_server_proto_msgTypes[77]
  3842. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3843. ms.StoreMessageInfo(mi)
  3844. }
  3845. }
  3846. func (x *VolumeTierMoveDatFromRemoteRequest) String() string {
  3847. return protoimpl.X.MessageStringOf(x)
  3848. }
  3849. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  3850. func (x *VolumeTierMoveDatFromRemoteRequest) ProtoReflect() protoreflect.Message {
  3851. mi := &file_volume_server_proto_msgTypes[77]
  3852. if protoimpl.UnsafeEnabled && x != nil {
  3853. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3854. if ms.LoadMessageInfo() == nil {
  3855. ms.StoreMessageInfo(mi)
  3856. }
  3857. return ms
  3858. }
  3859. return mi.MessageOf(x)
  3860. }
  3861. // Deprecated: Use VolumeTierMoveDatFromRemoteRequest.ProtoReflect.Descriptor instead.
  3862. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  3863. return file_volume_server_proto_rawDescGZIP(), []int{77}
  3864. }
  3865. func (x *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  3866. if x != nil {
  3867. return x.VolumeId
  3868. }
  3869. return 0
  3870. }
  3871. func (x *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  3872. if x != nil {
  3873. return x.Collection
  3874. }
  3875. return ""
  3876. }
  3877. func (x *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  3878. if x != nil {
  3879. return x.KeepRemoteDatFile
  3880. }
  3881. return false
  3882. }
  3883. type VolumeTierMoveDatFromRemoteResponse struct {
  3884. state protoimpl.MessageState
  3885. sizeCache protoimpl.SizeCache
  3886. unknownFields protoimpl.UnknownFields
  3887. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3888. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3889. }
  3890. func (x *VolumeTierMoveDatFromRemoteResponse) Reset() {
  3891. *x = VolumeTierMoveDatFromRemoteResponse{}
  3892. if protoimpl.UnsafeEnabled {
  3893. mi := &file_volume_server_proto_msgTypes[78]
  3894. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3895. ms.StoreMessageInfo(mi)
  3896. }
  3897. }
  3898. func (x *VolumeTierMoveDatFromRemoteResponse) String() string {
  3899. return protoimpl.X.MessageStringOf(x)
  3900. }
  3901. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  3902. func (x *VolumeTierMoveDatFromRemoteResponse) ProtoReflect() protoreflect.Message {
  3903. mi := &file_volume_server_proto_msgTypes[78]
  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 VolumeTierMoveDatFromRemoteResponse.ProtoReflect.Descriptor instead.
  3914. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  3915. return file_volume_server_proto_rawDescGZIP(), []int{78}
  3916. }
  3917. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  3918. if x != nil {
  3919. return x.Processed
  3920. }
  3921. return 0
  3922. }
  3923. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  3924. if x != nil {
  3925. return x.ProcessedPercentage
  3926. }
  3927. return 0
  3928. }
  3929. type VolumeServerStatusRequest struct {
  3930. state protoimpl.MessageState
  3931. sizeCache protoimpl.SizeCache
  3932. unknownFields protoimpl.UnknownFields
  3933. }
  3934. func (x *VolumeServerStatusRequest) Reset() {
  3935. *x = VolumeServerStatusRequest{}
  3936. if protoimpl.UnsafeEnabled {
  3937. mi := &file_volume_server_proto_msgTypes[79]
  3938. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3939. ms.StoreMessageInfo(mi)
  3940. }
  3941. }
  3942. func (x *VolumeServerStatusRequest) String() string {
  3943. return protoimpl.X.MessageStringOf(x)
  3944. }
  3945. func (*VolumeServerStatusRequest) ProtoMessage() {}
  3946. func (x *VolumeServerStatusRequest) ProtoReflect() protoreflect.Message {
  3947. mi := &file_volume_server_proto_msgTypes[79]
  3948. if protoimpl.UnsafeEnabled && x != nil {
  3949. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3950. if ms.LoadMessageInfo() == nil {
  3951. ms.StoreMessageInfo(mi)
  3952. }
  3953. return ms
  3954. }
  3955. return mi.MessageOf(x)
  3956. }
  3957. // Deprecated: Use VolumeServerStatusRequest.ProtoReflect.Descriptor instead.
  3958. func (*VolumeServerStatusRequest) Descriptor() ([]byte, []int) {
  3959. return file_volume_server_proto_rawDescGZIP(), []int{79}
  3960. }
  3961. type VolumeServerStatusResponse struct {
  3962. state protoimpl.MessageState
  3963. sizeCache protoimpl.SizeCache
  3964. unknownFields protoimpl.UnknownFields
  3965. DiskStatuses []*DiskStatus `protobuf:"bytes,1,rep,name=disk_statuses,json=diskStatuses,proto3" json:"disk_statuses,omitempty"`
  3966. MemoryStatus *MemStatus `protobuf:"bytes,2,opt,name=memory_status,json=memoryStatus,proto3" json:"memory_status,omitempty"`
  3967. Version string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
  3968. DataCenter string `protobuf:"bytes,4,opt,name=data_center,json=dataCenter,proto3" json:"data_center,omitempty"`
  3969. Rack string `protobuf:"bytes,5,opt,name=rack,proto3" json:"rack,omitempty"`
  3970. }
  3971. func (x *VolumeServerStatusResponse) Reset() {
  3972. *x = VolumeServerStatusResponse{}
  3973. if protoimpl.UnsafeEnabled {
  3974. mi := &file_volume_server_proto_msgTypes[80]
  3975. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3976. ms.StoreMessageInfo(mi)
  3977. }
  3978. }
  3979. func (x *VolumeServerStatusResponse) String() string {
  3980. return protoimpl.X.MessageStringOf(x)
  3981. }
  3982. func (*VolumeServerStatusResponse) ProtoMessage() {}
  3983. func (x *VolumeServerStatusResponse) ProtoReflect() protoreflect.Message {
  3984. mi := &file_volume_server_proto_msgTypes[80]
  3985. if protoimpl.UnsafeEnabled && x != nil {
  3986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3987. if ms.LoadMessageInfo() == nil {
  3988. ms.StoreMessageInfo(mi)
  3989. }
  3990. return ms
  3991. }
  3992. return mi.MessageOf(x)
  3993. }
  3994. // Deprecated: Use VolumeServerStatusResponse.ProtoReflect.Descriptor instead.
  3995. func (*VolumeServerStatusResponse) Descriptor() ([]byte, []int) {
  3996. return file_volume_server_proto_rawDescGZIP(), []int{80}
  3997. }
  3998. func (x *VolumeServerStatusResponse) GetDiskStatuses() []*DiskStatus {
  3999. if x != nil {
  4000. return x.DiskStatuses
  4001. }
  4002. return nil
  4003. }
  4004. func (x *VolumeServerStatusResponse) GetMemoryStatus() *MemStatus {
  4005. if x != nil {
  4006. return x.MemoryStatus
  4007. }
  4008. return nil
  4009. }
  4010. func (x *VolumeServerStatusResponse) GetVersion() string {
  4011. if x != nil {
  4012. return x.Version
  4013. }
  4014. return ""
  4015. }
  4016. func (x *VolumeServerStatusResponse) GetDataCenter() string {
  4017. if x != nil {
  4018. return x.DataCenter
  4019. }
  4020. return ""
  4021. }
  4022. func (x *VolumeServerStatusResponse) GetRack() string {
  4023. if x != nil {
  4024. return x.Rack
  4025. }
  4026. return ""
  4027. }
  4028. type VolumeServerLeaveRequest struct {
  4029. state protoimpl.MessageState
  4030. sizeCache protoimpl.SizeCache
  4031. unknownFields protoimpl.UnknownFields
  4032. }
  4033. func (x *VolumeServerLeaveRequest) Reset() {
  4034. *x = VolumeServerLeaveRequest{}
  4035. if protoimpl.UnsafeEnabled {
  4036. mi := &file_volume_server_proto_msgTypes[81]
  4037. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4038. ms.StoreMessageInfo(mi)
  4039. }
  4040. }
  4041. func (x *VolumeServerLeaveRequest) String() string {
  4042. return protoimpl.X.MessageStringOf(x)
  4043. }
  4044. func (*VolumeServerLeaveRequest) ProtoMessage() {}
  4045. func (x *VolumeServerLeaveRequest) ProtoReflect() protoreflect.Message {
  4046. mi := &file_volume_server_proto_msgTypes[81]
  4047. if protoimpl.UnsafeEnabled && x != nil {
  4048. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4049. if ms.LoadMessageInfo() == nil {
  4050. ms.StoreMessageInfo(mi)
  4051. }
  4052. return ms
  4053. }
  4054. return mi.MessageOf(x)
  4055. }
  4056. // Deprecated: Use VolumeServerLeaveRequest.ProtoReflect.Descriptor instead.
  4057. func (*VolumeServerLeaveRequest) Descriptor() ([]byte, []int) {
  4058. return file_volume_server_proto_rawDescGZIP(), []int{81}
  4059. }
  4060. type VolumeServerLeaveResponse struct {
  4061. state protoimpl.MessageState
  4062. sizeCache protoimpl.SizeCache
  4063. unknownFields protoimpl.UnknownFields
  4064. }
  4065. func (x *VolumeServerLeaveResponse) Reset() {
  4066. *x = VolumeServerLeaveResponse{}
  4067. if protoimpl.UnsafeEnabled {
  4068. mi := &file_volume_server_proto_msgTypes[82]
  4069. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4070. ms.StoreMessageInfo(mi)
  4071. }
  4072. }
  4073. func (x *VolumeServerLeaveResponse) String() string {
  4074. return protoimpl.X.MessageStringOf(x)
  4075. }
  4076. func (*VolumeServerLeaveResponse) ProtoMessage() {}
  4077. func (x *VolumeServerLeaveResponse) ProtoReflect() protoreflect.Message {
  4078. mi := &file_volume_server_proto_msgTypes[82]
  4079. if protoimpl.UnsafeEnabled && x != nil {
  4080. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4081. if ms.LoadMessageInfo() == nil {
  4082. ms.StoreMessageInfo(mi)
  4083. }
  4084. return ms
  4085. }
  4086. return mi.MessageOf(x)
  4087. }
  4088. // Deprecated: Use VolumeServerLeaveResponse.ProtoReflect.Descriptor instead.
  4089. func (*VolumeServerLeaveResponse) Descriptor() ([]byte, []int) {
  4090. return file_volume_server_proto_rawDescGZIP(), []int{82}
  4091. }
  4092. // remote storage
  4093. type FetchAndWriteNeedleRequest struct {
  4094. state protoimpl.MessageState
  4095. sizeCache protoimpl.SizeCache
  4096. unknownFields protoimpl.UnknownFields
  4097. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  4098. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4099. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  4100. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  4101. Size int64 `protobuf:"varint,5,opt,name=size,proto3" json:"size,omitempty"`
  4102. Replicas []*FetchAndWriteNeedleRequest_Replica `protobuf:"bytes,6,rep,name=replicas,proto3" json:"replicas,omitempty"`
  4103. Auth string `protobuf:"bytes,7,opt,name=auth,proto3" json:"auth,omitempty"`
  4104. // remote conf
  4105. RemoteConf *remote_pb.RemoteConf `protobuf:"bytes,15,opt,name=remote_conf,json=remoteConf,proto3" json:"remote_conf,omitempty"`
  4106. RemoteLocation *remote_pb.RemoteStorageLocation `protobuf:"bytes,16,opt,name=remote_location,json=remoteLocation,proto3" json:"remote_location,omitempty"`
  4107. }
  4108. func (x *FetchAndWriteNeedleRequest) Reset() {
  4109. *x = FetchAndWriteNeedleRequest{}
  4110. if protoimpl.UnsafeEnabled {
  4111. mi := &file_volume_server_proto_msgTypes[83]
  4112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4113. ms.StoreMessageInfo(mi)
  4114. }
  4115. }
  4116. func (x *FetchAndWriteNeedleRequest) String() string {
  4117. return protoimpl.X.MessageStringOf(x)
  4118. }
  4119. func (*FetchAndWriteNeedleRequest) ProtoMessage() {}
  4120. func (x *FetchAndWriteNeedleRequest) ProtoReflect() protoreflect.Message {
  4121. mi := &file_volume_server_proto_msgTypes[83]
  4122. if protoimpl.UnsafeEnabled && x != nil {
  4123. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4124. if ms.LoadMessageInfo() == nil {
  4125. ms.StoreMessageInfo(mi)
  4126. }
  4127. return ms
  4128. }
  4129. return mi.MessageOf(x)
  4130. }
  4131. // Deprecated: Use FetchAndWriteNeedleRequest.ProtoReflect.Descriptor instead.
  4132. func (*FetchAndWriteNeedleRequest) Descriptor() ([]byte, []int) {
  4133. return file_volume_server_proto_rawDescGZIP(), []int{83}
  4134. }
  4135. func (x *FetchAndWriteNeedleRequest) GetVolumeId() uint32 {
  4136. if x != nil {
  4137. return x.VolumeId
  4138. }
  4139. return 0
  4140. }
  4141. func (x *FetchAndWriteNeedleRequest) GetNeedleId() uint64 {
  4142. if x != nil {
  4143. return x.NeedleId
  4144. }
  4145. return 0
  4146. }
  4147. func (x *FetchAndWriteNeedleRequest) GetCookie() uint32 {
  4148. if x != nil {
  4149. return x.Cookie
  4150. }
  4151. return 0
  4152. }
  4153. func (x *FetchAndWriteNeedleRequest) GetOffset() int64 {
  4154. if x != nil {
  4155. return x.Offset
  4156. }
  4157. return 0
  4158. }
  4159. func (x *FetchAndWriteNeedleRequest) GetSize() int64 {
  4160. if x != nil {
  4161. return x.Size
  4162. }
  4163. return 0
  4164. }
  4165. func (x *FetchAndWriteNeedleRequest) GetReplicas() []*FetchAndWriteNeedleRequest_Replica {
  4166. if x != nil {
  4167. return x.Replicas
  4168. }
  4169. return nil
  4170. }
  4171. func (x *FetchAndWriteNeedleRequest) GetAuth() string {
  4172. if x != nil {
  4173. return x.Auth
  4174. }
  4175. return ""
  4176. }
  4177. func (x *FetchAndWriteNeedleRequest) GetRemoteConf() *remote_pb.RemoteConf {
  4178. if x != nil {
  4179. return x.RemoteConf
  4180. }
  4181. return nil
  4182. }
  4183. func (x *FetchAndWriteNeedleRequest) GetRemoteLocation() *remote_pb.RemoteStorageLocation {
  4184. if x != nil {
  4185. return x.RemoteLocation
  4186. }
  4187. return nil
  4188. }
  4189. type FetchAndWriteNeedleResponse struct {
  4190. state protoimpl.MessageState
  4191. sizeCache protoimpl.SizeCache
  4192. unknownFields protoimpl.UnknownFields
  4193. ETag string `protobuf:"bytes,1,opt,name=e_tag,json=eTag,proto3" json:"e_tag,omitempty"`
  4194. }
  4195. func (x *FetchAndWriteNeedleResponse) Reset() {
  4196. *x = FetchAndWriteNeedleResponse{}
  4197. if protoimpl.UnsafeEnabled {
  4198. mi := &file_volume_server_proto_msgTypes[84]
  4199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4200. ms.StoreMessageInfo(mi)
  4201. }
  4202. }
  4203. func (x *FetchAndWriteNeedleResponse) String() string {
  4204. return protoimpl.X.MessageStringOf(x)
  4205. }
  4206. func (*FetchAndWriteNeedleResponse) ProtoMessage() {}
  4207. func (x *FetchAndWriteNeedleResponse) ProtoReflect() protoreflect.Message {
  4208. mi := &file_volume_server_proto_msgTypes[84]
  4209. if protoimpl.UnsafeEnabled && x != nil {
  4210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4211. if ms.LoadMessageInfo() == nil {
  4212. ms.StoreMessageInfo(mi)
  4213. }
  4214. return ms
  4215. }
  4216. return mi.MessageOf(x)
  4217. }
  4218. // Deprecated: Use FetchAndWriteNeedleResponse.ProtoReflect.Descriptor instead.
  4219. func (*FetchAndWriteNeedleResponse) Descriptor() ([]byte, []int) {
  4220. return file_volume_server_proto_rawDescGZIP(), []int{84}
  4221. }
  4222. func (x *FetchAndWriteNeedleResponse) GetETag() string {
  4223. if x != nil {
  4224. return x.ETag
  4225. }
  4226. return ""
  4227. }
  4228. // select on volume servers
  4229. type QueryRequest struct {
  4230. state protoimpl.MessageState
  4231. sizeCache protoimpl.SizeCache
  4232. unknownFields protoimpl.UnknownFields
  4233. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  4234. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  4235. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  4236. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  4237. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  4238. }
  4239. func (x *QueryRequest) Reset() {
  4240. *x = QueryRequest{}
  4241. if protoimpl.UnsafeEnabled {
  4242. mi := &file_volume_server_proto_msgTypes[85]
  4243. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4244. ms.StoreMessageInfo(mi)
  4245. }
  4246. }
  4247. func (x *QueryRequest) String() string {
  4248. return protoimpl.X.MessageStringOf(x)
  4249. }
  4250. func (*QueryRequest) ProtoMessage() {}
  4251. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  4252. mi := &file_volume_server_proto_msgTypes[85]
  4253. if protoimpl.UnsafeEnabled && x != nil {
  4254. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4255. if ms.LoadMessageInfo() == nil {
  4256. ms.StoreMessageInfo(mi)
  4257. }
  4258. return ms
  4259. }
  4260. return mi.MessageOf(x)
  4261. }
  4262. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  4263. func (*QueryRequest) Descriptor() ([]byte, []int) {
  4264. return file_volume_server_proto_rawDescGZIP(), []int{85}
  4265. }
  4266. func (x *QueryRequest) GetSelections() []string {
  4267. if x != nil {
  4268. return x.Selections
  4269. }
  4270. return nil
  4271. }
  4272. func (x *QueryRequest) GetFromFileIds() []string {
  4273. if x != nil {
  4274. return x.FromFileIds
  4275. }
  4276. return nil
  4277. }
  4278. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  4279. if x != nil {
  4280. return x.Filter
  4281. }
  4282. return nil
  4283. }
  4284. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  4285. if x != nil {
  4286. return x.InputSerialization
  4287. }
  4288. return nil
  4289. }
  4290. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  4291. if x != nil {
  4292. return x.OutputSerialization
  4293. }
  4294. return nil
  4295. }
  4296. type QueriedStripe struct {
  4297. state protoimpl.MessageState
  4298. sizeCache protoimpl.SizeCache
  4299. unknownFields protoimpl.UnknownFields
  4300. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  4301. }
  4302. func (x *QueriedStripe) Reset() {
  4303. *x = QueriedStripe{}
  4304. if protoimpl.UnsafeEnabled {
  4305. mi := &file_volume_server_proto_msgTypes[86]
  4306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4307. ms.StoreMessageInfo(mi)
  4308. }
  4309. }
  4310. func (x *QueriedStripe) String() string {
  4311. return protoimpl.X.MessageStringOf(x)
  4312. }
  4313. func (*QueriedStripe) ProtoMessage() {}
  4314. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  4315. mi := &file_volume_server_proto_msgTypes[86]
  4316. if protoimpl.UnsafeEnabled && x != nil {
  4317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4318. if ms.LoadMessageInfo() == nil {
  4319. ms.StoreMessageInfo(mi)
  4320. }
  4321. return ms
  4322. }
  4323. return mi.MessageOf(x)
  4324. }
  4325. // Deprecated: Use QueriedStripe.ProtoReflect.Descriptor instead.
  4326. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  4327. return file_volume_server_proto_rawDescGZIP(), []int{86}
  4328. }
  4329. func (x *QueriedStripe) GetRecords() []byte {
  4330. if x != nil {
  4331. return x.Records
  4332. }
  4333. return nil
  4334. }
  4335. type VolumeNeedleStatusRequest struct {
  4336. state protoimpl.MessageState
  4337. sizeCache protoimpl.SizeCache
  4338. unknownFields protoimpl.UnknownFields
  4339. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  4340. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4341. }
  4342. func (x *VolumeNeedleStatusRequest) Reset() {
  4343. *x = VolumeNeedleStatusRequest{}
  4344. if protoimpl.UnsafeEnabled {
  4345. mi := &file_volume_server_proto_msgTypes[87]
  4346. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4347. ms.StoreMessageInfo(mi)
  4348. }
  4349. }
  4350. func (x *VolumeNeedleStatusRequest) String() string {
  4351. return protoimpl.X.MessageStringOf(x)
  4352. }
  4353. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  4354. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  4355. mi := &file_volume_server_proto_msgTypes[87]
  4356. if protoimpl.UnsafeEnabled && x != nil {
  4357. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4358. if ms.LoadMessageInfo() == nil {
  4359. ms.StoreMessageInfo(mi)
  4360. }
  4361. return ms
  4362. }
  4363. return mi.MessageOf(x)
  4364. }
  4365. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  4366. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  4367. return file_volume_server_proto_rawDescGZIP(), []int{87}
  4368. }
  4369. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  4370. if x != nil {
  4371. return x.VolumeId
  4372. }
  4373. return 0
  4374. }
  4375. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  4376. if x != nil {
  4377. return x.NeedleId
  4378. }
  4379. return 0
  4380. }
  4381. type VolumeNeedleStatusResponse struct {
  4382. state protoimpl.MessageState
  4383. sizeCache protoimpl.SizeCache
  4384. unknownFields protoimpl.UnknownFields
  4385. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4386. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  4387. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  4388. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  4389. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  4390. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  4391. }
  4392. func (x *VolumeNeedleStatusResponse) Reset() {
  4393. *x = VolumeNeedleStatusResponse{}
  4394. if protoimpl.UnsafeEnabled {
  4395. mi := &file_volume_server_proto_msgTypes[88]
  4396. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4397. ms.StoreMessageInfo(mi)
  4398. }
  4399. }
  4400. func (x *VolumeNeedleStatusResponse) String() string {
  4401. return protoimpl.X.MessageStringOf(x)
  4402. }
  4403. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  4404. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  4405. mi := &file_volume_server_proto_msgTypes[88]
  4406. if protoimpl.UnsafeEnabled && x != nil {
  4407. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4408. if ms.LoadMessageInfo() == nil {
  4409. ms.StoreMessageInfo(mi)
  4410. }
  4411. return ms
  4412. }
  4413. return mi.MessageOf(x)
  4414. }
  4415. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  4416. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  4417. return file_volume_server_proto_rawDescGZIP(), []int{88}
  4418. }
  4419. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  4420. if x != nil {
  4421. return x.NeedleId
  4422. }
  4423. return 0
  4424. }
  4425. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  4426. if x != nil {
  4427. return x.Cookie
  4428. }
  4429. return 0
  4430. }
  4431. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  4432. if x != nil {
  4433. return x.Size
  4434. }
  4435. return 0
  4436. }
  4437. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  4438. if x != nil {
  4439. return x.LastModified
  4440. }
  4441. return 0
  4442. }
  4443. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  4444. if x != nil {
  4445. return x.Crc
  4446. }
  4447. return 0
  4448. }
  4449. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  4450. if x != nil {
  4451. return x.Ttl
  4452. }
  4453. return ""
  4454. }
  4455. type PingRequest struct {
  4456. state protoimpl.MessageState
  4457. sizeCache protoimpl.SizeCache
  4458. unknownFields protoimpl.UnknownFields
  4459. Target string `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"` // default to ping itself
  4460. TargetType string `protobuf:"bytes,2,opt,name=target_type,json=targetType,proto3" json:"target_type,omitempty"`
  4461. }
  4462. func (x *PingRequest) Reset() {
  4463. *x = PingRequest{}
  4464. if protoimpl.UnsafeEnabled {
  4465. mi := &file_volume_server_proto_msgTypes[89]
  4466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4467. ms.StoreMessageInfo(mi)
  4468. }
  4469. }
  4470. func (x *PingRequest) String() string {
  4471. return protoimpl.X.MessageStringOf(x)
  4472. }
  4473. func (*PingRequest) ProtoMessage() {}
  4474. func (x *PingRequest) ProtoReflect() protoreflect.Message {
  4475. mi := &file_volume_server_proto_msgTypes[89]
  4476. if protoimpl.UnsafeEnabled && x != nil {
  4477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4478. if ms.LoadMessageInfo() == nil {
  4479. ms.StoreMessageInfo(mi)
  4480. }
  4481. return ms
  4482. }
  4483. return mi.MessageOf(x)
  4484. }
  4485. // Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.
  4486. func (*PingRequest) Descriptor() ([]byte, []int) {
  4487. return file_volume_server_proto_rawDescGZIP(), []int{89}
  4488. }
  4489. func (x *PingRequest) GetTarget() string {
  4490. if x != nil {
  4491. return x.Target
  4492. }
  4493. return ""
  4494. }
  4495. func (x *PingRequest) GetTargetType() string {
  4496. if x != nil {
  4497. return x.TargetType
  4498. }
  4499. return ""
  4500. }
  4501. type PingResponse struct {
  4502. state protoimpl.MessageState
  4503. sizeCache protoimpl.SizeCache
  4504. unknownFields protoimpl.UnknownFields
  4505. StartTimeNs int64 `protobuf:"varint,1,opt,name=start_time_ns,json=startTimeNs,proto3" json:"start_time_ns,omitempty"`
  4506. RemoteTimeNs int64 `protobuf:"varint,2,opt,name=remote_time_ns,json=remoteTimeNs,proto3" json:"remote_time_ns,omitempty"`
  4507. StopTimeNs int64 `protobuf:"varint,3,opt,name=stop_time_ns,json=stopTimeNs,proto3" json:"stop_time_ns,omitempty"`
  4508. }
  4509. func (x *PingResponse) Reset() {
  4510. *x = PingResponse{}
  4511. if protoimpl.UnsafeEnabled {
  4512. mi := &file_volume_server_proto_msgTypes[90]
  4513. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4514. ms.StoreMessageInfo(mi)
  4515. }
  4516. }
  4517. func (x *PingResponse) String() string {
  4518. return protoimpl.X.MessageStringOf(x)
  4519. }
  4520. func (*PingResponse) ProtoMessage() {}
  4521. func (x *PingResponse) ProtoReflect() protoreflect.Message {
  4522. mi := &file_volume_server_proto_msgTypes[90]
  4523. if protoimpl.UnsafeEnabled && x != nil {
  4524. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4525. if ms.LoadMessageInfo() == nil {
  4526. ms.StoreMessageInfo(mi)
  4527. }
  4528. return ms
  4529. }
  4530. return mi.MessageOf(x)
  4531. }
  4532. // Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.
  4533. func (*PingResponse) Descriptor() ([]byte, []int) {
  4534. return file_volume_server_proto_rawDescGZIP(), []int{90}
  4535. }
  4536. func (x *PingResponse) GetStartTimeNs() int64 {
  4537. if x != nil {
  4538. return x.StartTimeNs
  4539. }
  4540. return 0
  4541. }
  4542. func (x *PingResponse) GetRemoteTimeNs() int64 {
  4543. if x != nil {
  4544. return x.RemoteTimeNs
  4545. }
  4546. return 0
  4547. }
  4548. func (x *PingResponse) GetStopTimeNs() int64 {
  4549. if x != nil {
  4550. return x.StopTimeNs
  4551. }
  4552. return 0
  4553. }
  4554. type FetchAndWriteNeedleRequest_Replica struct {
  4555. state protoimpl.MessageState
  4556. sizeCache protoimpl.SizeCache
  4557. unknownFields protoimpl.UnknownFields
  4558. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  4559. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl,proto3" json:"public_url,omitempty"`
  4560. GrpcPort int32 `protobuf:"varint,3,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
  4561. }
  4562. func (x *FetchAndWriteNeedleRequest_Replica) Reset() {
  4563. *x = FetchAndWriteNeedleRequest_Replica{}
  4564. if protoimpl.UnsafeEnabled {
  4565. mi := &file_volume_server_proto_msgTypes[91]
  4566. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4567. ms.StoreMessageInfo(mi)
  4568. }
  4569. }
  4570. func (x *FetchAndWriteNeedleRequest_Replica) String() string {
  4571. return protoimpl.X.MessageStringOf(x)
  4572. }
  4573. func (*FetchAndWriteNeedleRequest_Replica) ProtoMessage() {}
  4574. func (x *FetchAndWriteNeedleRequest_Replica) ProtoReflect() protoreflect.Message {
  4575. mi := &file_volume_server_proto_msgTypes[91]
  4576. if protoimpl.UnsafeEnabled && x != nil {
  4577. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4578. if ms.LoadMessageInfo() == nil {
  4579. ms.StoreMessageInfo(mi)
  4580. }
  4581. return ms
  4582. }
  4583. return mi.MessageOf(x)
  4584. }
  4585. // Deprecated: Use FetchAndWriteNeedleRequest_Replica.ProtoReflect.Descriptor instead.
  4586. func (*FetchAndWriteNeedleRequest_Replica) Descriptor() ([]byte, []int) {
  4587. return file_volume_server_proto_rawDescGZIP(), []int{83, 0}
  4588. }
  4589. func (x *FetchAndWriteNeedleRequest_Replica) GetUrl() string {
  4590. if x != nil {
  4591. return x.Url
  4592. }
  4593. return ""
  4594. }
  4595. func (x *FetchAndWriteNeedleRequest_Replica) GetPublicUrl() string {
  4596. if x != nil {
  4597. return x.PublicUrl
  4598. }
  4599. return ""
  4600. }
  4601. func (x *FetchAndWriteNeedleRequest_Replica) GetGrpcPort() int32 {
  4602. if x != nil {
  4603. return x.GrpcPort
  4604. }
  4605. return 0
  4606. }
  4607. type QueryRequest_Filter struct {
  4608. state protoimpl.MessageState
  4609. sizeCache protoimpl.SizeCache
  4610. unknownFields protoimpl.UnknownFields
  4611. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  4612. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  4613. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  4614. }
  4615. func (x *QueryRequest_Filter) Reset() {
  4616. *x = QueryRequest_Filter{}
  4617. if protoimpl.UnsafeEnabled {
  4618. mi := &file_volume_server_proto_msgTypes[92]
  4619. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4620. ms.StoreMessageInfo(mi)
  4621. }
  4622. }
  4623. func (x *QueryRequest_Filter) String() string {
  4624. return protoimpl.X.MessageStringOf(x)
  4625. }
  4626. func (*QueryRequest_Filter) ProtoMessage() {}
  4627. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  4628. mi := &file_volume_server_proto_msgTypes[92]
  4629. if protoimpl.UnsafeEnabled && x != nil {
  4630. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4631. if ms.LoadMessageInfo() == nil {
  4632. ms.StoreMessageInfo(mi)
  4633. }
  4634. return ms
  4635. }
  4636. return mi.MessageOf(x)
  4637. }
  4638. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  4639. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  4640. return file_volume_server_proto_rawDescGZIP(), []int{85, 0}
  4641. }
  4642. func (x *QueryRequest_Filter) GetField() string {
  4643. if x != nil {
  4644. return x.Field
  4645. }
  4646. return ""
  4647. }
  4648. func (x *QueryRequest_Filter) GetOperand() string {
  4649. if x != nil {
  4650. return x.Operand
  4651. }
  4652. return ""
  4653. }
  4654. func (x *QueryRequest_Filter) GetValue() string {
  4655. if x != nil {
  4656. return x.Value
  4657. }
  4658. return ""
  4659. }
  4660. type QueryRequest_InputSerialization struct {
  4661. state protoimpl.MessageState
  4662. sizeCache protoimpl.SizeCache
  4663. unknownFields protoimpl.UnknownFields
  4664. // NONE | GZIP | BZIP2
  4665. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  4666. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  4667. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  4668. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  4669. }
  4670. func (x *QueryRequest_InputSerialization) Reset() {
  4671. *x = QueryRequest_InputSerialization{}
  4672. if protoimpl.UnsafeEnabled {
  4673. mi := &file_volume_server_proto_msgTypes[93]
  4674. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4675. ms.StoreMessageInfo(mi)
  4676. }
  4677. }
  4678. func (x *QueryRequest_InputSerialization) String() string {
  4679. return protoimpl.X.MessageStringOf(x)
  4680. }
  4681. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  4682. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  4683. mi := &file_volume_server_proto_msgTypes[93]
  4684. if protoimpl.UnsafeEnabled && x != nil {
  4685. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4686. if ms.LoadMessageInfo() == nil {
  4687. ms.StoreMessageInfo(mi)
  4688. }
  4689. return ms
  4690. }
  4691. return mi.MessageOf(x)
  4692. }
  4693. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  4694. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  4695. return file_volume_server_proto_rawDescGZIP(), []int{85, 1}
  4696. }
  4697. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  4698. if x != nil {
  4699. return x.CompressionType
  4700. }
  4701. return ""
  4702. }
  4703. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  4704. if x != nil {
  4705. return x.CsvInput
  4706. }
  4707. return nil
  4708. }
  4709. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  4710. if x != nil {
  4711. return x.JsonInput
  4712. }
  4713. return nil
  4714. }
  4715. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  4716. if x != nil {
  4717. return x.ParquetInput
  4718. }
  4719. return nil
  4720. }
  4721. type QueryRequest_OutputSerialization struct {
  4722. state protoimpl.MessageState
  4723. sizeCache protoimpl.SizeCache
  4724. unknownFields protoimpl.UnknownFields
  4725. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  4726. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  4727. }
  4728. func (x *QueryRequest_OutputSerialization) Reset() {
  4729. *x = QueryRequest_OutputSerialization{}
  4730. if protoimpl.UnsafeEnabled {
  4731. mi := &file_volume_server_proto_msgTypes[94]
  4732. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4733. ms.StoreMessageInfo(mi)
  4734. }
  4735. }
  4736. func (x *QueryRequest_OutputSerialization) String() string {
  4737. return protoimpl.X.MessageStringOf(x)
  4738. }
  4739. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  4740. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  4741. mi := &file_volume_server_proto_msgTypes[94]
  4742. if protoimpl.UnsafeEnabled && x != nil {
  4743. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4744. if ms.LoadMessageInfo() == nil {
  4745. ms.StoreMessageInfo(mi)
  4746. }
  4747. return ms
  4748. }
  4749. return mi.MessageOf(x)
  4750. }
  4751. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  4752. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  4753. return file_volume_server_proto_rawDescGZIP(), []int{85, 2}
  4754. }
  4755. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  4756. if x != nil {
  4757. return x.CsvOutput
  4758. }
  4759. return nil
  4760. }
  4761. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  4762. if x != nil {
  4763. return x.JsonOutput
  4764. }
  4765. return nil
  4766. }
  4767. type QueryRequest_InputSerialization_CSVInput struct {
  4768. state protoimpl.MessageState
  4769. sizeCache protoimpl.SizeCache
  4770. unknownFields protoimpl.UnknownFields
  4771. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  4772. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4773. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4774. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4775. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4776. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  4777. // If true, records might contain record delimiters within quote characters
  4778. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  4779. }
  4780. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  4781. *x = QueryRequest_InputSerialization_CSVInput{}
  4782. if protoimpl.UnsafeEnabled {
  4783. mi := &file_volume_server_proto_msgTypes[95]
  4784. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4785. ms.StoreMessageInfo(mi)
  4786. }
  4787. }
  4788. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  4789. return protoimpl.X.MessageStringOf(x)
  4790. }
  4791. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  4792. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  4793. mi := &file_volume_server_proto_msgTypes[95]
  4794. if protoimpl.UnsafeEnabled && x != nil {
  4795. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4796. if ms.LoadMessageInfo() == nil {
  4797. ms.StoreMessageInfo(mi)
  4798. }
  4799. return ms
  4800. }
  4801. return mi.MessageOf(x)
  4802. }
  4803. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  4804. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  4805. return file_volume_server_proto_rawDescGZIP(), []int{85, 1, 0}
  4806. }
  4807. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  4808. if x != nil {
  4809. return x.FileHeaderInfo
  4810. }
  4811. return ""
  4812. }
  4813. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  4814. if x != nil {
  4815. return x.RecordDelimiter
  4816. }
  4817. return ""
  4818. }
  4819. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  4820. if x != nil {
  4821. return x.FieldDelimiter
  4822. }
  4823. return ""
  4824. }
  4825. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharacter() string {
  4826. if x != nil {
  4827. return x.QuoteCharacter
  4828. }
  4829. return ""
  4830. }
  4831. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  4832. if x != nil {
  4833. return x.QuoteEscapeCharacter
  4834. }
  4835. return ""
  4836. }
  4837. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  4838. if x != nil {
  4839. return x.Comments
  4840. }
  4841. return ""
  4842. }
  4843. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  4844. if x != nil {
  4845. return x.AllowQuotedRecordDelimiter
  4846. }
  4847. return false
  4848. }
  4849. type QueryRequest_InputSerialization_JSONInput struct {
  4850. state protoimpl.MessageState
  4851. sizeCache protoimpl.SizeCache
  4852. unknownFields protoimpl.UnknownFields
  4853. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  4854. }
  4855. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  4856. *x = QueryRequest_InputSerialization_JSONInput{}
  4857. if protoimpl.UnsafeEnabled {
  4858. mi := &file_volume_server_proto_msgTypes[96]
  4859. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4860. ms.StoreMessageInfo(mi)
  4861. }
  4862. }
  4863. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  4864. return protoimpl.X.MessageStringOf(x)
  4865. }
  4866. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  4867. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  4868. mi := &file_volume_server_proto_msgTypes[96]
  4869. if protoimpl.UnsafeEnabled && x != nil {
  4870. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4871. if ms.LoadMessageInfo() == nil {
  4872. ms.StoreMessageInfo(mi)
  4873. }
  4874. return ms
  4875. }
  4876. return mi.MessageOf(x)
  4877. }
  4878. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  4879. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  4880. return file_volume_server_proto_rawDescGZIP(), []int{85, 1, 1}
  4881. }
  4882. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  4883. if x != nil {
  4884. return x.Type
  4885. }
  4886. return ""
  4887. }
  4888. type QueryRequest_InputSerialization_ParquetInput struct {
  4889. state protoimpl.MessageState
  4890. sizeCache protoimpl.SizeCache
  4891. unknownFields protoimpl.UnknownFields
  4892. }
  4893. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  4894. *x = QueryRequest_InputSerialization_ParquetInput{}
  4895. if protoimpl.UnsafeEnabled {
  4896. mi := &file_volume_server_proto_msgTypes[97]
  4897. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4898. ms.StoreMessageInfo(mi)
  4899. }
  4900. }
  4901. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  4902. return protoimpl.X.MessageStringOf(x)
  4903. }
  4904. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  4905. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  4906. mi := &file_volume_server_proto_msgTypes[97]
  4907. if protoimpl.UnsafeEnabled && x != nil {
  4908. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4909. if ms.LoadMessageInfo() == nil {
  4910. ms.StoreMessageInfo(mi)
  4911. }
  4912. return ms
  4913. }
  4914. return mi.MessageOf(x)
  4915. }
  4916. // Deprecated: Use QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  4917. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  4918. return file_volume_server_proto_rawDescGZIP(), []int{85, 1, 2}
  4919. }
  4920. type QueryRequest_OutputSerialization_CSVOutput struct {
  4921. state protoimpl.MessageState
  4922. sizeCache protoimpl.SizeCache
  4923. unknownFields protoimpl.UnknownFields
  4924. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  4925. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4926. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4927. QuoteCharacter string `protobuf:"bytes,4,opt,name=quote_character,json=quoteCharacter,proto3" json:"quote_character,omitempty"` // Default: "
  4928. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4929. }
  4930. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  4931. *x = QueryRequest_OutputSerialization_CSVOutput{}
  4932. if protoimpl.UnsafeEnabled {
  4933. mi := &file_volume_server_proto_msgTypes[98]
  4934. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4935. ms.StoreMessageInfo(mi)
  4936. }
  4937. }
  4938. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  4939. return protoimpl.X.MessageStringOf(x)
  4940. }
  4941. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  4942. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  4943. mi := &file_volume_server_proto_msgTypes[98]
  4944. if protoimpl.UnsafeEnabled && x != nil {
  4945. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4946. if ms.LoadMessageInfo() == nil {
  4947. ms.StoreMessageInfo(mi)
  4948. }
  4949. return ms
  4950. }
  4951. return mi.MessageOf(x)
  4952. }
  4953. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  4954. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  4955. return file_volume_server_proto_rawDescGZIP(), []int{85, 2, 0}
  4956. }
  4957. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  4958. if x != nil {
  4959. return x.QuoteFields
  4960. }
  4961. return ""
  4962. }
  4963. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  4964. if x != nil {
  4965. return x.RecordDelimiter
  4966. }
  4967. return ""
  4968. }
  4969. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  4970. if x != nil {
  4971. return x.FieldDelimiter
  4972. }
  4973. return ""
  4974. }
  4975. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharacter() string {
  4976. if x != nil {
  4977. return x.QuoteCharacter
  4978. }
  4979. return ""
  4980. }
  4981. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  4982. if x != nil {
  4983. return x.QuoteEscapeCharacter
  4984. }
  4985. return ""
  4986. }
  4987. type QueryRequest_OutputSerialization_JSONOutput struct {
  4988. state protoimpl.MessageState
  4989. sizeCache protoimpl.SizeCache
  4990. unknownFields protoimpl.UnknownFields
  4991. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  4992. }
  4993. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  4994. *x = QueryRequest_OutputSerialization_JSONOutput{}
  4995. if protoimpl.UnsafeEnabled {
  4996. mi := &file_volume_server_proto_msgTypes[99]
  4997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4998. ms.StoreMessageInfo(mi)
  4999. }
  5000. }
  5001. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  5002. return protoimpl.X.MessageStringOf(x)
  5003. }
  5004. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  5005. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  5006. mi := &file_volume_server_proto_msgTypes[99]
  5007. if protoimpl.UnsafeEnabled && x != nil {
  5008. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5009. if ms.LoadMessageInfo() == nil {
  5010. ms.StoreMessageInfo(mi)
  5011. }
  5012. return ms
  5013. }
  5014. return mi.MessageOf(x)
  5015. }
  5016. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  5017. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  5018. return file_volume_server_proto_rawDescGZIP(), []int{85, 2, 1}
  5019. }
  5020. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  5021. if x != nil {
  5022. return x.RecordDelimiter
  5023. }
  5024. return ""
  5025. }
  5026. var File_volume_server_proto protoreflect.FileDescriptor
  5027. var file_volume_server_proto_rawDesc = []byte{
  5028. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  5029. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5030. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x1a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e,
  5031. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  5032. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66,
  5033. 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x66,
  5034. 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x63,
  5035. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28,
  5036. 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43, 0x68, 0x65,
  5037. 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5038. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72, 0x65, 0x73,
  5039. 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x6f, 0x6c,
  5040. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65,
  5041. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
  5042. 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  5043. 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5044. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  5045. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73,
  5046. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03,
  5047. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73,
  5048. 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  5049. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  5050. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45, 0x6d, 0x70,
  5051. 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  5052. 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5053. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5054. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x19, 0x56,
  5055. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b,
  5056. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61, 0x72, 0x62,
  5057. 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52,
  5058. 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x5b, 0x0a,
  5059. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d,
  5060. 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5061. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5062. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61,
  5063. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70,
  5064. 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x66, 0x0a, 0x1b, 0x56, 0x61,
  5065. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  5066. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f,
  5067. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01,
  5068. 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74,
  5069. 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x61, 0x76, 0x67, 0x5f, 0x31,
  5070. 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x76, 0x67,
  5071. 0x31, 0x6d, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  5072. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5073. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5074. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x5f, 0x0a, 0x1a,
  5075. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d,
  5076. 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73,
  5077. 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  5078. 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1f, 0x0a, 0x0b,
  5079. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  5080. 0x04, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x39, 0x0a,
  5081. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65,
  5082. 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5083. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5084. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75,
  5085. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52,
  5086. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5087. 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  5088. 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5089. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5090. 0x6f, 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c,
  5091. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xfb,
  5092. 0x01, 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5093. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5094. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5095. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  5096. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  5097. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f,
  5098. 0x63, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61,
  5099. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  5100. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  5101. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c,
  5102. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d,
  5103. 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69,
  5104. 0x7a, 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d,
  5105. 0x6f, 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61, 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x12,
  5106. 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
  5107. 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x18, 0x0a, 0x16,
  5108. 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  5109. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5110. 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5111. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5112. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb,
  5113. 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61,
  5114. 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5115. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5116. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5117. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f,
  5118. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c,
  5119. 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72,
  5120. 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74,
  5121. 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b,
  5122. 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28,
  5123. 0x04, 0x52, 0x0a, 0x74, 0x61, 0x69, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a,
  5124. 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f,
  5125. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  5126. 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f,
  5127. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52,
  5128. 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c,
  5129. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61,
  5130. 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5131. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5132. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e,
  5133. 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e,
  5134. 0x63, 0x65, 0x4e, 0x73, 0x22, 0x42, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e,
  5135. 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73,
  5136. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f,
  5137. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c,
  5138. 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75,
  5139. 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5140. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5141. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56,
  5142. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5143. 0x73, 0x65, 0x22, 0x33, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f,
  5144. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5145. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5146. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5147. 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5148. 0x22, 0x51, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5149. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5150. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5151. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x65, 0x6d, 0x70,
  5152. 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x6f, 0x6e, 0x6c, 0x79, 0x45, 0x6d,
  5153. 0x70, 0x74, 0x79, 0x22, 0x16, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c,
  5154. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52, 0x0a, 0x19, 0x56,
  5155. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c,
  5156. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  5157. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  5158. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74,
  5159. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x22,
  5160. 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61,
  5161. 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a,
  5162. 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61,
  5163. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5164. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5165. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5166. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73,
  5167. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43,
  5168. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5169. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5170. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b,
  5171. 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  5172. 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f,
  5173. 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
  5174. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72,
  5175. 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22,
  5176. 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  5177. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5178. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5179. 0x65, 0x49, 0x64, 0x22, 0xa6, 0x01, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74,
  5180. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c,
  5181. 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01,
  5182. 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1f,
  5183. 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20,
  5184. 0x01, 0x28, 0x04, 0x52, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12,
  5185. 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20,
  5186. 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c,
  5187. 0x0a, 0x12, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x5f, 0x63,
  5188. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x10, 0x66, 0x69, 0x6c, 0x65,
  5189. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xf8, 0x01, 0x0a,
  5190. 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5191. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5192. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5193. 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  5194. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  5195. 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03,
  5196. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  5197. 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  5198. 0x74, 0x74, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61,
  5199. 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73,
  5200. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  5201. 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  5202. 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2b, 0x0a, 0x12, 0x69, 0x6f,
  5203. 0x5f, 0x62, 0x79, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
  5204. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x69, 0x6f, 0x42, 0x79, 0x74, 0x65, 0x50, 0x65,
  5205. 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x22, 0x68, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5206. 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a,
  5207. 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f,
  5208. 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x41, 0x70,
  5209. 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x63,
  5210. 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  5211. 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65,
  5212. 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65,
  5213. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5214. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5215. 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  5216. 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69,
  5217. 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
  5218. 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76,
  5219. 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66,
  5220. 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70,
  5221. 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5222. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5223. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f,
  5224. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73,
  5225. 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f,
  5226. 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e,
  5227. 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18,
  5228. 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65,
  5229. 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x5b, 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79,
  5230. 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c,
  5231. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
  5232. 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12,
  5233. 0x24, 0x0a, 0x0e, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x73, 0x5f, 0x6e,
  5234. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
  5235. 0x64, 0x54, 0x73, 0x4e, 0x73, 0x22, 0x60, 0x0a, 0x15, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65,
  5236. 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5237. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5238. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  5239. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  5240. 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  5241. 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x39, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x4e,
  5242. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5243. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62,
  5244. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c,
  5245. 0x6f, 0x62, 0x22, 0x7d, 0x0a, 0x15, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5246. 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5247. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5248. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64,
  5249. 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65,
  5250. 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  5251. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a,
  5252. 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a,
  5253. 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5254. 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06,
  5255. 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f,
  5256. 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64,
  5257. 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73,
  5258. 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63,
  5259. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74,
  5260. 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x20, 0x0a,
  5261. 0x0c, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x05, 0x20,
  5262. 0x01, 0x28, 0x04, 0x52, 0x0a, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x4e, 0x73, 0x22,
  5263. 0x87, 0x01, 0x0a, 0x16, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  5264. 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5265. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5266. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  5267. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64,
  5268. 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01,
  5269. 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64,
  5270. 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e,
  5271. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x22, 0x19, 0x0a, 0x17, 0x57, 0x72, 0x69,
  5272. 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70,
  5273. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x15, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e,
  5274. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a,
  5275. 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
  5276. 0x0d, 0x52, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x73, 0x22, 0xa0, 0x02, 0x0a,
  5277. 0x16, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52,
  5278. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5279. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  5280. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69,
  5281. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49,
  5282. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  5283. 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65,
  5284. 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a,
  5285. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x34, 0x0a, 0x16, 0x6e, 0x65,
  5286. 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65,
  5287. 0x73, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x6e, 0x65, 0x65, 0x64,
  5288. 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64,
  5289. 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
  5290. 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x64,
  5291. 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18, 0x08, 0x20, 0x01,
  5292. 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  5293. 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d,
  5294. 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x22,
  5295. 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65,
  5296. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  5297. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  5298. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63,
  5299. 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63,
  5300. 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  5301. 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  5302. 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65,
  5303. 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5304. 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5305. 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61,
  5306. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  5307. 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  5308. 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65,
  5309. 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x6c,
  5310. 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
  5311. 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x22, 0xb7, 0x01, 0x0a,
  5312. 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69,
  5313. 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5314. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5315. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65,
  5316. 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65,
  5317. 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f,
  5318. 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
  5319. 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63,
  5320. 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x76,
  5321. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01,
  5322. 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5323. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5324. 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
  5325. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5326. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65,
  5327. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5328. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5329. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5330. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  5331. 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5332. 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  5333. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5334. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71,
  5335. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  5336. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  5337. 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  5338. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5339. 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5340. 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5341. 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x73, 0x68,
  5342. 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x72,
  5343. 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x8b,
  5344. 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5345. 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  5346. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5347. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c,
  5348. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  5349. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61,
  5350. 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68,
  5351. 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65,
  5352. 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63,
  5353. 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f,
  5354. 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05,
  5355. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61,
  5356. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x6a,
  5357. 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70,
  5358. 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70, 0x79,
  5359. 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52,
  5360. 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56, 0x69, 0x66, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x1c, 0x0a, 0x1a,
  5361. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f,
  5362. 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x77, 0x0a, 0x1b, 0x56, 0x6f,
  5363. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65,
  5364. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  5365. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  5366. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5367. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  5368. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f,
  5369. 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64,
  5370. 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5371. 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5372. 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5373. 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5374. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5375. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e,
  5376. 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  5377. 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b,
  5378. 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  5379. 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x56,
  5380. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75,
  5381. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x58, 0x0a, 0x1c, 0x56, 0x6f,
  5382. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f,
  5383. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  5384. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  5385. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64,
  5386. 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72,
  5387. 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5388. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
  5389. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x99, 0x01, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5390. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  5391. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5392. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5393. 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5394. 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
  5395. 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
  5396. 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  5397. 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b,
  5398. 0x65, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65,
  5399. 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5400. 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12,
  5401. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61,
  5402. 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64,
  5403. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5404. 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c,
  5405. 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5406. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5407. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  5408. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  5409. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08,
  5410. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07,
  5411. 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
  5412. 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
  5413. 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f,
  5414. 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5415. 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5416. 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5417. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5418. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  5419. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  5420. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a,
  5421. 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54,
  5422. 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5423. 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c,
  5424. 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  5425. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  5426. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xc9, 0x03, 0x0a, 0x1c,
  5427. 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74,
  5428. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  5429. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  5430. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x3b, 0x0a, 0x1a, 0x69, 0x64, 0x78,
  5431. 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f,
  5432. 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x69,
  5433. 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53,
  5434. 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69,
  5435. 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x69,
  5436. 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3b, 0x0a, 0x1a, 0x64, 0x61,
  5437. 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
  5438. 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17,
  5439. 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
  5440. 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f, 0x66,
  5441. 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
  5442. 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66,
  5443. 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52,
  5444. 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f,
  5445. 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f,
  5446. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74,
  5447. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  5448. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
  5449. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x64,
  5450. 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  5451. 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x3d, 0x0a, 0x0b, 0x76, 0x6f, 0x6c, 0x75,
  5452. 0x6d, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e,
  5453. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5454. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x76, 0x6f, 0x6c,
  5455. 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xbb, 0x01, 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x6b,
  5456. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20,
  5457. 0x01, 0x28, 0x09, 0x52, 0x03, 0x64, 0x69, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18,
  5458. 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73,
  5459. 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12,
  5460. 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72,
  5461. 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x66, 0x72,
  5462. 0x65, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
  5463. 0x74, 0x46, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
  5464. 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72,
  5465. 0x63, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b,
  5466. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73,
  5467. 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa3, 0x01, 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61,
  5468. 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65,
  5469. 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x67, 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69,
  5470. 0x6e, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  5471. 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20,
  5472. 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65,
  5473. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a,
  5474. 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x65, 0x6c,
  5475. 0x66, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x65, 0x61, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52,
  5476. 0x04, 0x68, 0x65, 0x61, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x18, 0x07,
  5477. 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x22, 0xd8, 0x01, 0x0a, 0x0a,
  5478. 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61,
  5479. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  5480. 0x52, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a,
  5481. 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5482. 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03,
  5483. 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16,
  5484. 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
  5485. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73,
  5486. 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53,
  5487. 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f,
  5488. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69,
  5489. 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65,
  5490. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x78, 0x74,
  5491. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x84, 0x02, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5492. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01,
  5493. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5494. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69,
  5495. 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72,
  5496. 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73,
  5497. 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
  5498. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  5499. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x6f,
  5500. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x62, 0x79, 0x74,
  5501. 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f,
  5502. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  5503. 0x0b, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x22, 0x0a, 0x0d,
  5504. 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x61, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x18, 0x06, 0x20,
  5505. 0x01, 0x28, 0x04, 0x52, 0x0b, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x41, 0x74, 0x53, 0x65, 0x63,
  5506. 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x07, 0x20,
  5507. 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x8b, 0x02,
  5508. 0x0a, 0x14, 0x4f, 0x6c, 0x64, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x6f, 0x6c, 0x75,
  5509. 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18,
  5510. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5511. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46,
  5512. 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65,
  5513. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72,
  5514. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
  5515. 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  5516. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4f,
  5517. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x42, 0x79, 0x74,
  5518. 0x65, 0x73, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x5f,
  5519. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  5520. 0x0b, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x20, 0x0a, 0x0b,
  5521. 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  5522. 0x04, 0x52, 0x0b, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b,
  5523. 0x0a, 0x09, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28,
  5524. 0x08, 0x52, 0x08, 0x72, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0xc8, 0x01, 0x0a, 0x20,
  5525. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61,
  5526. 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5527. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  5528. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  5529. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
  5530. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x0a,
  5531. 0x18, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x63,
  5532. 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  5533. 0x16, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x63, 0x6b,
  5534. 0x65, 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b, 0x65, 0x65, 0x70, 0x5f,
  5535. 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04,
  5536. 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x44,
  5537. 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5538. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d,
  5539. 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70,
  5540. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  5541. 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f,
  5542. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
  5543. 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65,
  5544. 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x92, 0x01, 0x0a, 0x22,
  5545. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61,
  5546. 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  5547. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5548. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5549. 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  5550. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  5551. 0x2f, 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x64,
  5552. 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x6b,
  5553. 0x65, 0x65, 0x70, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65,
  5554. 0x22, 0x75, 0x0a, 0x23, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  5555. 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52,
  5556. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65,
  5557. 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63,
  5558. 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
  5559. 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
  5560. 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72,
  5561. 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5562. 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  5563. 0x75, 0x65, 0x73, 0x74, 0x22, 0xf0, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5564. 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5565. 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74,
  5566. 0x75, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c,
  5567. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x69,
  5568. 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69, 0x73, 0x6b, 0x53, 0x74,
  5569. 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79,
  5570. 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e,
  5571. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5572. 0x2e, 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x6d, 0x65, 0x6d, 0x6f,
  5573. 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73,
  5574. 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
  5575. 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65,
  5576. 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x43, 0x65, 0x6e,
  5577. 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28,
  5578. 0x09, 0x52, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x22, 0x1a, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5579. 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75,
  5580. 0x65, 0x73, 0x74, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72,
  5581. 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5582. 0x22, 0xdc, 0x03, 0x0a, 0x1a, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69,
  5583. 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5584. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5585. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
  5586. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
  5587. 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f,
  5588. 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69,
  5589. 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  5590. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a,
  5591. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x50, 0x0a,
  5592. 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32,
  5593. 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5594. 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65,
  5595. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65,
  5596. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x12,
  5597. 0x12, 0x0a, 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61,
  5598. 0x75, 0x74, 0x68, 0x12, 0x36, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f,
  5599. 0x6e, 0x66, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  5600. 0x65, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x52,
  5601. 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x49, 0x0a, 0x0f, 0x72,
  5602. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x10,
  5603. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x70, 0x62,
  5604. 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x6f,
  5605. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4c, 0x6f,
  5606. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x57, 0x0a, 0x07, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
  5607. 0x61, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  5608. 0x75, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x75, 0x72,
  5609. 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x55,
  5610. 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18,
  5611. 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x72, 0x70, 0x63, 0x50, 0x6f, 0x72, 0x74, 0x22,
  5612. 0x32, 0x0a, 0x1b, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65,
  5613. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x13,
  5614. 0x0a, 0x05, 0x65, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x65,
  5615. 0x54, 0x61, 0x67, 0x22, 0xf4, 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71,
  5616. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  5617. 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
  5618. 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x66, 0x69, 0x6c,
  5619. 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x66, 0x72, 0x6f,
  5620. 0x6d, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74,
  5621. 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5622. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72,
  5623. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52,
  5624. 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69, 0x6e, 0x70, 0x75, 0x74,
  5625. 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04,
  5626. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5627. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71,
  5628. 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  5629. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65,
  5630. 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x14, 0x6f,
  5631. 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74,
  5632. 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5633. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65,
  5634. 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5635. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6f,
  5636. 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  5637. 0x6f, 0x6e, 0x1a, 0x4e, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05,
  5638. 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x69, 0x65,
  5639. 0x6c, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x02, 0x20,
  5640. 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05,
  5641. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
  5642. 0x75, 0x65, 0x1a, 0xd3, 0x05, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69,
  5643. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6d,
  5644. 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,
  5645. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
  5646. 0x54, 0x79, 0x70, 0x65, 0x12, 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f, 0x69, 0x6e, 0x70, 0x75,
  5647. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5648. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79,
  5649. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72,
  5650. 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x49, 0x6e,
  5651. 0x70, 0x75, 0x74, 0x52, 0x08, 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x5a, 0x0a,
  5652. 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  5653. 0x0b, 0x32, 0x3b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5654. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5655. 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61,
  5656. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x09,
  5657. 0x6a, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a, 0x0d, 0x70, 0x61, 0x72,
  5658. 0x71, 0x75, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,
  5659. 0x32, 0x3e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5660. 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5661. 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74,
  5662. 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74,
  5663. 0x52, 0x0c, 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xc6,
  5664. 0x02, 0x0a, 0x08, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x66,
  5665. 0x69, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18,
  5666. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65,
  5667. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f,
  5668. 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  5669. 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72,
  5670. 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69,
  5671. 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64,
  5672. 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x71, 0x75, 0x6f,
  5673. 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01,
  5674. 0x28, 0x09, 0x52, 0x0e, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74,
  5675. 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61,
  5676. 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01,
  5677. 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43,
  5678. 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d,
  5679. 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d,
  5680. 0x65, 0x6e, 0x74, 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x71, 0x75,
  5681. 0x6f, 0x74, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69,
  5682. 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a, 0x61, 0x6c, 0x6c,
  5683. 0x6f, 0x77, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65,
  5684. 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a, 0x53, 0x4f, 0x4e, 0x49,
  5685. 0x6e, 0x70, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
  5686. 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c, 0x50, 0x61, 0x72, 0x71,
  5687. 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xef, 0x03, 0x0a, 0x13, 0x4f, 0x75, 0x74,
  5688. 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  5689. 0x12, 0x5b, 0x0a, 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x02,
  5690. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5691. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71,
  5692. 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  5693. 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70,
  5694. 0x75, 0x74, 0x52, 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x5e, 0x0a,
  5695. 0x0b, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01,
  5696. 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5697. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5698. 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  5699. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75,
  5700. 0x74, 0x52, 0x0a, 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x1a, 0xe1, 0x01,
  5701. 0x0a, 0x09, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x71,
  5702. 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
  5703. 0x09, 0x52, 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x29,
  5704. 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  5705. 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64,
  5706. 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65,
  5707. 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
  5708. 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  5709. 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72,
  5710. 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x71, 0x75, 0x6f,
  5711. 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71,
  5712. 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72,
  5713. 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f,
  5714. 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65,
  5715. 0x72, 0x1a, 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12,
  5716. 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69,
  5717. 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72,
  5718. 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x22, 0x29, 0x0a, 0x0d, 0x51, 0x75,
  5719. 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72,
  5720. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x72, 0x65,
  5721. 0x63, 0x6f, 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e,
  5722. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  5723. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18,
  5724. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12,
  5725. 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  5726. 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x22, 0xae, 0x01, 0x0a,
  5727. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61,
  5728. 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e,
  5729. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
  5730. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b,
  5731. 0x69, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65,
  5732. 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04,
  5733. 0x73, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64,
  5734. 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73,
  5735. 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63,
  5736. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74,
  5737. 0x74, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x22, 0x46, 0x0a,
  5738. 0x0b, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  5739. 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x61,
  5740. 0x72, 0x67, 0x65, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x74,
  5741. 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65,
  5742. 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x7a, 0x0a, 0x0c, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73,
  5743. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74,
  5744. 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x74,
  5745. 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x72, 0x65, 0x6d,
  5746. 0x6f, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  5747. 0x03, 0x52, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12,
  5748. 0x20, 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18,
  5749. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x4e,
  5750. 0x73, 0x32, 0xbc, 0x24, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76,
  5751. 0x65, 0x72, 0x12, 0x5c, 0x0a, 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5752. 0x65, 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5753. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  5754. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5755. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68,
  5756. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5757. 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5758. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5759. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  5760. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5761. 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5762. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5763. 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5764. 0x12, 0x76, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5765. 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5766. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75,
  5767. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65,
  5768. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5769. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56,
  5770. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70,
  5771. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x61, 0x63, 0x75,
  5772. 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x2b,
  5773. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5774. 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5775. 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f,
  5776. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5777. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69,
  5778. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56,
  5779. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e,
  5780. 0x75, 0x70, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5781. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  5782. 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5783. 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5784. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5785. 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5786. 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
  5787. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5788. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43,
  5789. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5790. 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5791. 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5792. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65,
  5793. 0x0a, 0x0e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5794. 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5795. 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75,
  5796. 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5797. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c,
  5798. 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5799. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5800. 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5801. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5802. 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  5803. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5804. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79,
  5805. 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5806. 0x22, 0x00, 0x12, 0x7c, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72,
  5807. 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2e, 0x2e, 0x76, 0x6f,
  5808. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5809. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
  5810. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f,
  5811. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5812. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
  5813. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
  5814. 0x12, 0x5c, 0x0a, 0x0b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  5815. 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5816. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
  5817. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5818. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  5819. 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x62,
  5820. 0x0a, 0x0d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  5821. 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5822. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
  5823. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5824. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5825. 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5826. 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65,
  5827. 0x74, 0x65, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5828. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65,
  5829. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5830. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5831. 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5832. 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72,
  5833. 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5834. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5835. 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52,
  5836. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5837. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5838. 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70,
  5839. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5840. 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2b, 0x2e, 0x76,
  5841. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5842. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62,
  5843. 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5844. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5845. 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52,
  5846. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x56, 0x6f, 0x6c,
  5847. 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12, 0x28, 0x2e, 0x76,
  5848. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5849. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52,
  5850. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5851. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5852. 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5853. 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61,
  5854. 0x74, 0x75, 0x73, 0x12, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5855. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61,
  5856. 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c,
  5857. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5858. 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5859. 0x73, 0x65, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5860. 0x70, 0x79, 0x12, 0x23, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5861. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79,
  5862. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5863. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5864. 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30,
  5865. 0x01, 0x12, 0x77, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46,
  5866. 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5867. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61,
  5868. 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  5869. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5870. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64,
  5871. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  5872. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x08, 0x43, 0x6f,
  5873. 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5874. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69,
  5875. 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5876. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70,
  5877. 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30,
  5878. 0x01, 0x12, 0x65, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  5879. 0x6c, 0x6f, 0x62, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5880. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c,
  5881. 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76,
  5882. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5883. 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65,
  5884. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x64,
  5885. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x27, 0x2e, 0x76, 0x6f, 0x6c,
  5886. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65,
  5887. 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75,
  5888. 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5889. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c,
  5890. 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5891. 0x68, 0x0a, 0x0f, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c,
  5892. 0x6f, 0x62, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5893. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c,
  5894. 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x76,
  5895. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5896. 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52,
  5897. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x0e, 0x52, 0x65, 0x61,
  5898. 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x12, 0x27, 0x2e, 0x76, 0x6f,
  5899. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52,
  5900. 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71,
  5901. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5902. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e,
  5903. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5904. 0x30, 0x01, 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c,
  5905. 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5906. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5907. 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5908. 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5909. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53,
  5910. 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30,
  5911. 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52,
  5912. 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5913. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5914. 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71,
  5915. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5916. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61,
  5917. 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5918. 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5919. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x2f,
  5920. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5921. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5922. 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5923. 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5924. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5925. 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5926. 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5927. 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x2e, 0x2e, 0x76,
  5928. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5929. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65,
  5930. 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76,
  5931. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5932. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65,
  5933. 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5934. 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5935. 0x73, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5936. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5937. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5938. 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5939. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5940. 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5941. 0x22, 0x00, 0x12, 0x77, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5942. 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c,
  5943. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5944. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65,
  5945. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5946. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5947. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5948. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56,
  5949. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75,
  5950. 0x6e, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5951. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5952. 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5953. 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5954. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5955. 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5956. 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5957. 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c,
  5958. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5959. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f,
  5960. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c,
  5961. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5962. 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f,
  5963. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x70, 0x0a,
  5964. 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
  5965. 0x61, 0x64, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5966. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5967. 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b,
  5968. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5969. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52,
  5970. 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
  5971. 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44,
  5972. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5973. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5974. 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  5975. 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5976. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c,
  5977. 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5978. 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5979. 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x2f, 0x2e, 0x76,
  5980. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5981. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f,
  5982. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e,
  5983. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5984. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54,
  5985. 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5986. 0x00, 0x12, 0x88, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72,
  5987. 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12,
  5988. 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5989. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  5990. 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
  5991. 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5992. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65,
  5993. 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5994. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x8e, 0x01, 0x0a,
  5995. 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44,
  5996. 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x12, 0x34, 0x2e, 0x76,
  5997. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5998. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61,
  5999. 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  6000. 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  6001. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72,
  6002. 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74,
  6003. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a,
  6004. 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61,
  6005. 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  6006. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72,
  6007. 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  6008. 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  6009. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
  6010. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  6011. 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
  6012. 0x4c, 0x65, 0x61, 0x76, 0x65, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  6013. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  6014. 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  6015. 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  6016. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65,
  6017. 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  6018. 0x12, 0x74, 0x0a, 0x13, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74,
  6019. 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  6020. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68,
  6021. 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65,
  6022. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  6023. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e,
  6024. 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70,
  6025. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  6026. 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  6027. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  6028. 0x1f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  6029. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65,
  6030. 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65,
  6031. 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c,
  6032. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  6033. 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  6034. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  6035. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  6036. 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
  6037. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x04, 0x50, 0x69, 0x6e, 0x67, 0x12,
  6038. 0x1d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  6039. 0x70, 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e,
  6040. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  6041. 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  6042. 0x42, 0x39, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73,
  6043. 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64,
  6044. 0x66, 0x73, 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  6045. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f,
  6046. 0x74, 0x6f, 0x33,
  6047. }
  6048. var (
  6049. file_volume_server_proto_rawDescOnce sync.Once
  6050. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  6051. )
  6052. func file_volume_server_proto_rawDescGZIP() []byte {
  6053. file_volume_server_proto_rawDescOnce.Do(func() {
  6054. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  6055. })
  6056. return file_volume_server_proto_rawDescData
  6057. }
  6058. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 100)
  6059. var file_volume_server_proto_goTypes = []any{
  6060. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  6061. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  6062. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  6063. (*Empty)(nil), // 3: volume_server_pb.Empty
  6064. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  6065. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  6066. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  6067. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  6068. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  6069. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  6070. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  6071. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  6072. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  6073. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  6074. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  6075. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  6076. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  6077. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  6078. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  6079. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  6080. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  6081. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  6082. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  6083. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  6084. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  6085. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  6086. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  6087. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  6088. (*VolumeMarkWritableRequest)(nil), // 28: volume_server_pb.VolumeMarkWritableRequest
  6089. (*VolumeMarkWritableResponse)(nil), // 29: volume_server_pb.VolumeMarkWritableResponse
  6090. (*VolumeConfigureRequest)(nil), // 30: volume_server_pb.VolumeConfigureRequest
  6091. (*VolumeConfigureResponse)(nil), // 31: volume_server_pb.VolumeConfigureResponse
  6092. (*VolumeStatusRequest)(nil), // 32: volume_server_pb.VolumeStatusRequest
  6093. (*VolumeStatusResponse)(nil), // 33: volume_server_pb.VolumeStatusResponse
  6094. (*VolumeCopyRequest)(nil), // 34: volume_server_pb.VolumeCopyRequest
  6095. (*VolumeCopyResponse)(nil), // 35: volume_server_pb.VolumeCopyResponse
  6096. (*CopyFileRequest)(nil), // 36: volume_server_pb.CopyFileRequest
  6097. (*CopyFileResponse)(nil), // 37: volume_server_pb.CopyFileResponse
  6098. (*ReadNeedleBlobRequest)(nil), // 38: volume_server_pb.ReadNeedleBlobRequest
  6099. (*ReadNeedleBlobResponse)(nil), // 39: volume_server_pb.ReadNeedleBlobResponse
  6100. (*ReadNeedleMetaRequest)(nil), // 40: volume_server_pb.ReadNeedleMetaRequest
  6101. (*ReadNeedleMetaResponse)(nil), // 41: volume_server_pb.ReadNeedleMetaResponse
  6102. (*WriteNeedleBlobRequest)(nil), // 42: volume_server_pb.WriteNeedleBlobRequest
  6103. (*WriteNeedleBlobResponse)(nil), // 43: volume_server_pb.WriteNeedleBlobResponse
  6104. (*ReadAllNeedlesRequest)(nil), // 44: volume_server_pb.ReadAllNeedlesRequest
  6105. (*ReadAllNeedlesResponse)(nil), // 45: volume_server_pb.ReadAllNeedlesResponse
  6106. (*VolumeTailSenderRequest)(nil), // 46: volume_server_pb.VolumeTailSenderRequest
  6107. (*VolumeTailSenderResponse)(nil), // 47: volume_server_pb.VolumeTailSenderResponse
  6108. (*VolumeTailReceiverRequest)(nil), // 48: volume_server_pb.VolumeTailReceiverRequest
  6109. (*VolumeTailReceiverResponse)(nil), // 49: volume_server_pb.VolumeTailReceiverResponse
  6110. (*VolumeEcShardsGenerateRequest)(nil), // 50: volume_server_pb.VolumeEcShardsGenerateRequest
  6111. (*VolumeEcShardsGenerateResponse)(nil), // 51: volume_server_pb.VolumeEcShardsGenerateResponse
  6112. (*VolumeEcShardsRebuildRequest)(nil), // 52: volume_server_pb.VolumeEcShardsRebuildRequest
  6113. (*VolumeEcShardsRebuildResponse)(nil), // 53: volume_server_pb.VolumeEcShardsRebuildResponse
  6114. (*VolumeEcShardsCopyRequest)(nil), // 54: volume_server_pb.VolumeEcShardsCopyRequest
  6115. (*VolumeEcShardsCopyResponse)(nil), // 55: volume_server_pb.VolumeEcShardsCopyResponse
  6116. (*VolumeEcShardsDeleteRequest)(nil), // 56: volume_server_pb.VolumeEcShardsDeleteRequest
  6117. (*VolumeEcShardsDeleteResponse)(nil), // 57: volume_server_pb.VolumeEcShardsDeleteResponse
  6118. (*VolumeEcShardsMountRequest)(nil), // 58: volume_server_pb.VolumeEcShardsMountRequest
  6119. (*VolumeEcShardsMountResponse)(nil), // 59: volume_server_pb.VolumeEcShardsMountResponse
  6120. (*VolumeEcShardsUnmountRequest)(nil), // 60: volume_server_pb.VolumeEcShardsUnmountRequest
  6121. (*VolumeEcShardsUnmountResponse)(nil), // 61: volume_server_pb.VolumeEcShardsUnmountResponse
  6122. (*VolumeEcShardReadRequest)(nil), // 62: volume_server_pb.VolumeEcShardReadRequest
  6123. (*VolumeEcShardReadResponse)(nil), // 63: volume_server_pb.VolumeEcShardReadResponse
  6124. (*VolumeEcBlobDeleteRequest)(nil), // 64: volume_server_pb.VolumeEcBlobDeleteRequest
  6125. (*VolumeEcBlobDeleteResponse)(nil), // 65: volume_server_pb.VolumeEcBlobDeleteResponse
  6126. (*VolumeEcShardsToVolumeRequest)(nil), // 66: volume_server_pb.VolumeEcShardsToVolumeRequest
  6127. (*VolumeEcShardsToVolumeResponse)(nil), // 67: volume_server_pb.VolumeEcShardsToVolumeResponse
  6128. (*ReadVolumeFileStatusRequest)(nil), // 68: volume_server_pb.ReadVolumeFileStatusRequest
  6129. (*ReadVolumeFileStatusResponse)(nil), // 69: volume_server_pb.ReadVolumeFileStatusResponse
  6130. (*DiskStatus)(nil), // 70: volume_server_pb.DiskStatus
  6131. (*MemStatus)(nil), // 71: volume_server_pb.MemStatus
  6132. (*RemoteFile)(nil), // 72: volume_server_pb.RemoteFile
  6133. (*VolumeInfo)(nil), // 73: volume_server_pb.VolumeInfo
  6134. (*OldVersionVolumeInfo)(nil), // 74: volume_server_pb.OldVersionVolumeInfo
  6135. (*VolumeTierMoveDatToRemoteRequest)(nil), // 75: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  6136. (*VolumeTierMoveDatToRemoteResponse)(nil), // 76: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  6137. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 77: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  6138. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 78: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  6139. (*VolumeServerStatusRequest)(nil), // 79: volume_server_pb.VolumeServerStatusRequest
  6140. (*VolumeServerStatusResponse)(nil), // 80: volume_server_pb.VolumeServerStatusResponse
  6141. (*VolumeServerLeaveRequest)(nil), // 81: volume_server_pb.VolumeServerLeaveRequest
  6142. (*VolumeServerLeaveResponse)(nil), // 82: volume_server_pb.VolumeServerLeaveResponse
  6143. (*FetchAndWriteNeedleRequest)(nil), // 83: volume_server_pb.FetchAndWriteNeedleRequest
  6144. (*FetchAndWriteNeedleResponse)(nil), // 84: volume_server_pb.FetchAndWriteNeedleResponse
  6145. (*QueryRequest)(nil), // 85: volume_server_pb.QueryRequest
  6146. (*QueriedStripe)(nil), // 86: volume_server_pb.QueriedStripe
  6147. (*VolumeNeedleStatusRequest)(nil), // 87: volume_server_pb.VolumeNeedleStatusRequest
  6148. (*VolumeNeedleStatusResponse)(nil), // 88: volume_server_pb.VolumeNeedleStatusResponse
  6149. (*PingRequest)(nil), // 89: volume_server_pb.PingRequest
  6150. (*PingResponse)(nil), // 90: volume_server_pb.PingResponse
  6151. (*FetchAndWriteNeedleRequest_Replica)(nil), // 91: volume_server_pb.FetchAndWriteNeedleRequest.Replica
  6152. (*QueryRequest_Filter)(nil), // 92: volume_server_pb.QueryRequest.Filter
  6153. (*QueryRequest_InputSerialization)(nil), // 93: volume_server_pb.QueryRequest.InputSerialization
  6154. (*QueryRequest_OutputSerialization)(nil), // 94: volume_server_pb.QueryRequest.OutputSerialization
  6155. (*QueryRequest_InputSerialization_CSVInput)(nil), // 95: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  6156. (*QueryRequest_InputSerialization_JSONInput)(nil), // 96: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  6157. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 97: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  6158. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 98: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  6159. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 99: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  6160. (*remote_pb.RemoteConf)(nil), // 100: remote_pb.RemoteConf
  6161. (*remote_pb.RemoteStorageLocation)(nil), // 101: remote_pb.RemoteStorageLocation
  6162. }
  6163. var file_volume_server_proto_depIdxs = []int32{
  6164. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  6165. 73, // 1: volume_server_pb.ReadVolumeFileStatusResponse.volume_info:type_name -> volume_server_pb.VolumeInfo
  6166. 72, // 2: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  6167. 72, // 3: volume_server_pb.OldVersionVolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  6168. 70, // 4: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  6169. 71, // 5: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  6170. 91, // 6: volume_server_pb.FetchAndWriteNeedleRequest.replicas:type_name -> volume_server_pb.FetchAndWriteNeedleRequest.Replica
  6171. 100, // 7: volume_server_pb.FetchAndWriteNeedleRequest.remote_conf:type_name -> remote_pb.RemoteConf
  6172. 101, // 8: volume_server_pb.FetchAndWriteNeedleRequest.remote_location:type_name -> remote_pb.RemoteStorageLocation
  6173. 92, // 9: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  6174. 93, // 10: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  6175. 94, // 11: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  6176. 95, // 12: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  6177. 96, // 13: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  6178. 97, // 14: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  6179. 98, // 15: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  6180. 99, // 16: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  6181. 0, // 17: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  6182. 4, // 18: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  6183. 6, // 19: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  6184. 8, // 20: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  6185. 10, // 21: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  6186. 12, // 22: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  6187. 14, // 23: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  6188. 16, // 24: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  6189. 18, // 25: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  6190. 20, // 26: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  6191. 22, // 27: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  6192. 24, // 28: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  6193. 26, // 29: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  6194. 28, // 30: volume_server_pb.VolumeServer.VolumeMarkWritable:input_type -> volume_server_pb.VolumeMarkWritableRequest
  6195. 30, // 31: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  6196. 32, // 32: volume_server_pb.VolumeServer.VolumeStatus:input_type -> volume_server_pb.VolumeStatusRequest
  6197. 34, // 33: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  6198. 68, // 34: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  6199. 36, // 35: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  6200. 38, // 36: volume_server_pb.VolumeServer.ReadNeedleBlob:input_type -> volume_server_pb.ReadNeedleBlobRequest
  6201. 40, // 37: volume_server_pb.VolumeServer.ReadNeedleMeta:input_type -> volume_server_pb.ReadNeedleMetaRequest
  6202. 42, // 38: volume_server_pb.VolumeServer.WriteNeedleBlob:input_type -> volume_server_pb.WriteNeedleBlobRequest
  6203. 44, // 39: volume_server_pb.VolumeServer.ReadAllNeedles:input_type -> volume_server_pb.ReadAllNeedlesRequest
  6204. 46, // 40: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  6205. 48, // 41: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  6206. 50, // 42: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  6207. 52, // 43: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  6208. 54, // 44: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  6209. 56, // 45: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  6210. 58, // 46: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  6211. 60, // 47: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  6212. 62, // 48: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  6213. 64, // 49: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  6214. 66, // 50: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  6215. 75, // 51: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  6216. 77, // 52: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  6217. 79, // 53: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  6218. 81, // 54: volume_server_pb.VolumeServer.VolumeServerLeave:input_type -> volume_server_pb.VolumeServerLeaveRequest
  6219. 83, // 55: volume_server_pb.VolumeServer.FetchAndWriteNeedle:input_type -> volume_server_pb.FetchAndWriteNeedleRequest
  6220. 85, // 56: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  6221. 87, // 57: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  6222. 89, // 58: volume_server_pb.VolumeServer.Ping:input_type -> volume_server_pb.PingRequest
  6223. 1, // 59: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  6224. 5, // 60: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  6225. 7, // 61: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  6226. 9, // 62: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  6227. 11, // 63: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  6228. 13, // 64: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  6229. 15, // 65: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  6230. 17, // 66: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  6231. 19, // 67: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  6232. 21, // 68: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  6233. 23, // 69: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  6234. 25, // 70: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  6235. 27, // 71: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  6236. 29, // 72: volume_server_pb.VolumeServer.VolumeMarkWritable:output_type -> volume_server_pb.VolumeMarkWritableResponse
  6237. 31, // 73: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  6238. 33, // 74: volume_server_pb.VolumeServer.VolumeStatus:output_type -> volume_server_pb.VolumeStatusResponse
  6239. 35, // 75: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  6240. 69, // 76: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  6241. 37, // 77: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  6242. 39, // 78: volume_server_pb.VolumeServer.ReadNeedleBlob:output_type -> volume_server_pb.ReadNeedleBlobResponse
  6243. 41, // 79: volume_server_pb.VolumeServer.ReadNeedleMeta:output_type -> volume_server_pb.ReadNeedleMetaResponse
  6244. 43, // 80: volume_server_pb.VolumeServer.WriteNeedleBlob:output_type -> volume_server_pb.WriteNeedleBlobResponse
  6245. 45, // 81: volume_server_pb.VolumeServer.ReadAllNeedles:output_type -> volume_server_pb.ReadAllNeedlesResponse
  6246. 47, // 82: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  6247. 49, // 83: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  6248. 51, // 84: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  6249. 53, // 85: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  6250. 55, // 86: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  6251. 57, // 87: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  6252. 59, // 88: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  6253. 61, // 89: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  6254. 63, // 90: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  6255. 65, // 91: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  6256. 67, // 92: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  6257. 76, // 93: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  6258. 78, // 94: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  6259. 80, // 95: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  6260. 82, // 96: volume_server_pb.VolumeServer.VolumeServerLeave:output_type -> volume_server_pb.VolumeServerLeaveResponse
  6261. 84, // 97: volume_server_pb.VolumeServer.FetchAndWriteNeedle:output_type -> volume_server_pb.FetchAndWriteNeedleResponse
  6262. 86, // 98: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  6263. 88, // 99: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  6264. 90, // 100: volume_server_pb.VolumeServer.Ping:output_type -> volume_server_pb.PingResponse
  6265. 59, // [59:101] is the sub-list for method output_type
  6266. 17, // [17:59] is the sub-list for method input_type
  6267. 17, // [17:17] is the sub-list for extension type_name
  6268. 17, // [17:17] is the sub-list for extension extendee
  6269. 0, // [0:17] is the sub-list for field type_name
  6270. }
  6271. func init() { file_volume_server_proto_init() }
  6272. func file_volume_server_proto_init() {
  6273. if File_volume_server_proto != nil {
  6274. return
  6275. }
  6276. if !protoimpl.UnsafeEnabled {
  6277. file_volume_server_proto_msgTypes[0].Exporter = func(v any, i int) any {
  6278. switch v := v.(*BatchDeleteRequest); i {
  6279. case 0:
  6280. return &v.state
  6281. case 1:
  6282. return &v.sizeCache
  6283. case 2:
  6284. return &v.unknownFields
  6285. default:
  6286. return nil
  6287. }
  6288. }
  6289. file_volume_server_proto_msgTypes[1].Exporter = func(v any, i int) any {
  6290. switch v := v.(*BatchDeleteResponse); i {
  6291. case 0:
  6292. return &v.state
  6293. case 1:
  6294. return &v.sizeCache
  6295. case 2:
  6296. return &v.unknownFields
  6297. default:
  6298. return nil
  6299. }
  6300. }
  6301. file_volume_server_proto_msgTypes[2].Exporter = func(v any, i int) any {
  6302. switch v := v.(*DeleteResult); i {
  6303. case 0:
  6304. return &v.state
  6305. case 1:
  6306. return &v.sizeCache
  6307. case 2:
  6308. return &v.unknownFields
  6309. default:
  6310. return nil
  6311. }
  6312. }
  6313. file_volume_server_proto_msgTypes[3].Exporter = func(v any, i int) any {
  6314. switch v := v.(*Empty); i {
  6315. case 0:
  6316. return &v.state
  6317. case 1:
  6318. return &v.sizeCache
  6319. case 2:
  6320. return &v.unknownFields
  6321. default:
  6322. return nil
  6323. }
  6324. }
  6325. file_volume_server_proto_msgTypes[4].Exporter = func(v any, i int) any {
  6326. switch v := v.(*VacuumVolumeCheckRequest); i {
  6327. case 0:
  6328. return &v.state
  6329. case 1:
  6330. return &v.sizeCache
  6331. case 2:
  6332. return &v.unknownFields
  6333. default:
  6334. return nil
  6335. }
  6336. }
  6337. file_volume_server_proto_msgTypes[5].Exporter = func(v any, i int) any {
  6338. switch v := v.(*VacuumVolumeCheckResponse); i {
  6339. case 0:
  6340. return &v.state
  6341. case 1:
  6342. return &v.sizeCache
  6343. case 2:
  6344. return &v.unknownFields
  6345. default:
  6346. return nil
  6347. }
  6348. }
  6349. file_volume_server_proto_msgTypes[6].Exporter = func(v any, i int) any {
  6350. switch v := v.(*VacuumVolumeCompactRequest); i {
  6351. case 0:
  6352. return &v.state
  6353. case 1:
  6354. return &v.sizeCache
  6355. case 2:
  6356. return &v.unknownFields
  6357. default:
  6358. return nil
  6359. }
  6360. }
  6361. file_volume_server_proto_msgTypes[7].Exporter = func(v any, i int) any {
  6362. switch v := v.(*VacuumVolumeCompactResponse); i {
  6363. case 0:
  6364. return &v.state
  6365. case 1:
  6366. return &v.sizeCache
  6367. case 2:
  6368. return &v.unknownFields
  6369. default:
  6370. return nil
  6371. }
  6372. }
  6373. file_volume_server_proto_msgTypes[8].Exporter = func(v any, i int) any {
  6374. switch v := v.(*VacuumVolumeCommitRequest); i {
  6375. case 0:
  6376. return &v.state
  6377. case 1:
  6378. return &v.sizeCache
  6379. case 2:
  6380. return &v.unknownFields
  6381. default:
  6382. return nil
  6383. }
  6384. }
  6385. file_volume_server_proto_msgTypes[9].Exporter = func(v any, i int) any {
  6386. switch v := v.(*VacuumVolumeCommitResponse); i {
  6387. case 0:
  6388. return &v.state
  6389. case 1:
  6390. return &v.sizeCache
  6391. case 2:
  6392. return &v.unknownFields
  6393. default:
  6394. return nil
  6395. }
  6396. }
  6397. file_volume_server_proto_msgTypes[10].Exporter = func(v any, i int) any {
  6398. switch v := v.(*VacuumVolumeCleanupRequest); i {
  6399. case 0:
  6400. return &v.state
  6401. case 1:
  6402. return &v.sizeCache
  6403. case 2:
  6404. return &v.unknownFields
  6405. default:
  6406. return nil
  6407. }
  6408. }
  6409. file_volume_server_proto_msgTypes[11].Exporter = func(v any, i int) any {
  6410. switch v := v.(*VacuumVolumeCleanupResponse); i {
  6411. case 0:
  6412. return &v.state
  6413. case 1:
  6414. return &v.sizeCache
  6415. case 2:
  6416. return &v.unknownFields
  6417. default:
  6418. return nil
  6419. }
  6420. }
  6421. file_volume_server_proto_msgTypes[12].Exporter = func(v any, i int) any {
  6422. switch v := v.(*DeleteCollectionRequest); i {
  6423. case 0:
  6424. return &v.state
  6425. case 1:
  6426. return &v.sizeCache
  6427. case 2:
  6428. return &v.unknownFields
  6429. default:
  6430. return nil
  6431. }
  6432. }
  6433. file_volume_server_proto_msgTypes[13].Exporter = func(v any, i int) any {
  6434. switch v := v.(*DeleteCollectionResponse); i {
  6435. case 0:
  6436. return &v.state
  6437. case 1:
  6438. return &v.sizeCache
  6439. case 2:
  6440. return &v.unknownFields
  6441. default:
  6442. return nil
  6443. }
  6444. }
  6445. file_volume_server_proto_msgTypes[14].Exporter = func(v any, i int) any {
  6446. switch v := v.(*AllocateVolumeRequest); i {
  6447. case 0:
  6448. return &v.state
  6449. case 1:
  6450. return &v.sizeCache
  6451. case 2:
  6452. return &v.unknownFields
  6453. default:
  6454. return nil
  6455. }
  6456. }
  6457. file_volume_server_proto_msgTypes[15].Exporter = func(v any, i int) any {
  6458. switch v := v.(*AllocateVolumeResponse); i {
  6459. case 0:
  6460. return &v.state
  6461. case 1:
  6462. return &v.sizeCache
  6463. case 2:
  6464. return &v.unknownFields
  6465. default:
  6466. return nil
  6467. }
  6468. }
  6469. file_volume_server_proto_msgTypes[16].Exporter = func(v any, i int) any {
  6470. switch v := v.(*VolumeSyncStatusRequest); i {
  6471. case 0:
  6472. return &v.state
  6473. case 1:
  6474. return &v.sizeCache
  6475. case 2:
  6476. return &v.unknownFields
  6477. default:
  6478. return nil
  6479. }
  6480. }
  6481. file_volume_server_proto_msgTypes[17].Exporter = func(v any, i int) any {
  6482. switch v := v.(*VolumeSyncStatusResponse); i {
  6483. case 0:
  6484. return &v.state
  6485. case 1:
  6486. return &v.sizeCache
  6487. case 2:
  6488. return &v.unknownFields
  6489. default:
  6490. return nil
  6491. }
  6492. }
  6493. file_volume_server_proto_msgTypes[18].Exporter = func(v any, i int) any {
  6494. switch v := v.(*VolumeIncrementalCopyRequest); i {
  6495. case 0:
  6496. return &v.state
  6497. case 1:
  6498. return &v.sizeCache
  6499. case 2:
  6500. return &v.unknownFields
  6501. default:
  6502. return nil
  6503. }
  6504. }
  6505. file_volume_server_proto_msgTypes[19].Exporter = func(v any, i int) any {
  6506. switch v := v.(*VolumeIncrementalCopyResponse); i {
  6507. case 0:
  6508. return &v.state
  6509. case 1:
  6510. return &v.sizeCache
  6511. case 2:
  6512. return &v.unknownFields
  6513. default:
  6514. return nil
  6515. }
  6516. }
  6517. file_volume_server_proto_msgTypes[20].Exporter = func(v any, i int) any {
  6518. switch v := v.(*VolumeMountRequest); i {
  6519. case 0:
  6520. return &v.state
  6521. case 1:
  6522. return &v.sizeCache
  6523. case 2:
  6524. return &v.unknownFields
  6525. default:
  6526. return nil
  6527. }
  6528. }
  6529. file_volume_server_proto_msgTypes[21].Exporter = func(v any, i int) any {
  6530. switch v := v.(*VolumeMountResponse); i {
  6531. case 0:
  6532. return &v.state
  6533. case 1:
  6534. return &v.sizeCache
  6535. case 2:
  6536. return &v.unknownFields
  6537. default:
  6538. return nil
  6539. }
  6540. }
  6541. file_volume_server_proto_msgTypes[22].Exporter = func(v any, i int) any {
  6542. switch v := v.(*VolumeUnmountRequest); i {
  6543. case 0:
  6544. return &v.state
  6545. case 1:
  6546. return &v.sizeCache
  6547. case 2:
  6548. return &v.unknownFields
  6549. default:
  6550. return nil
  6551. }
  6552. }
  6553. file_volume_server_proto_msgTypes[23].Exporter = func(v any, i int) any {
  6554. switch v := v.(*VolumeUnmountResponse); i {
  6555. case 0:
  6556. return &v.state
  6557. case 1:
  6558. return &v.sizeCache
  6559. case 2:
  6560. return &v.unknownFields
  6561. default:
  6562. return nil
  6563. }
  6564. }
  6565. file_volume_server_proto_msgTypes[24].Exporter = func(v any, i int) any {
  6566. switch v := v.(*VolumeDeleteRequest); i {
  6567. case 0:
  6568. return &v.state
  6569. case 1:
  6570. return &v.sizeCache
  6571. case 2:
  6572. return &v.unknownFields
  6573. default:
  6574. return nil
  6575. }
  6576. }
  6577. file_volume_server_proto_msgTypes[25].Exporter = func(v any, i int) any {
  6578. switch v := v.(*VolumeDeleteResponse); i {
  6579. case 0:
  6580. return &v.state
  6581. case 1:
  6582. return &v.sizeCache
  6583. case 2:
  6584. return &v.unknownFields
  6585. default:
  6586. return nil
  6587. }
  6588. }
  6589. file_volume_server_proto_msgTypes[26].Exporter = func(v any, i int) any {
  6590. switch v := v.(*VolumeMarkReadonlyRequest); i {
  6591. case 0:
  6592. return &v.state
  6593. case 1:
  6594. return &v.sizeCache
  6595. case 2:
  6596. return &v.unknownFields
  6597. default:
  6598. return nil
  6599. }
  6600. }
  6601. file_volume_server_proto_msgTypes[27].Exporter = func(v any, i int) any {
  6602. switch v := v.(*VolumeMarkReadonlyResponse); i {
  6603. case 0:
  6604. return &v.state
  6605. case 1:
  6606. return &v.sizeCache
  6607. case 2:
  6608. return &v.unknownFields
  6609. default:
  6610. return nil
  6611. }
  6612. }
  6613. file_volume_server_proto_msgTypes[28].Exporter = func(v any, i int) any {
  6614. switch v := v.(*VolumeMarkWritableRequest); i {
  6615. case 0:
  6616. return &v.state
  6617. case 1:
  6618. return &v.sizeCache
  6619. case 2:
  6620. return &v.unknownFields
  6621. default:
  6622. return nil
  6623. }
  6624. }
  6625. file_volume_server_proto_msgTypes[29].Exporter = func(v any, i int) any {
  6626. switch v := v.(*VolumeMarkWritableResponse); i {
  6627. case 0:
  6628. return &v.state
  6629. case 1:
  6630. return &v.sizeCache
  6631. case 2:
  6632. return &v.unknownFields
  6633. default:
  6634. return nil
  6635. }
  6636. }
  6637. file_volume_server_proto_msgTypes[30].Exporter = func(v any, i int) any {
  6638. switch v := v.(*VolumeConfigureRequest); i {
  6639. case 0:
  6640. return &v.state
  6641. case 1:
  6642. return &v.sizeCache
  6643. case 2:
  6644. return &v.unknownFields
  6645. default:
  6646. return nil
  6647. }
  6648. }
  6649. file_volume_server_proto_msgTypes[31].Exporter = func(v any, i int) any {
  6650. switch v := v.(*VolumeConfigureResponse); i {
  6651. case 0:
  6652. return &v.state
  6653. case 1:
  6654. return &v.sizeCache
  6655. case 2:
  6656. return &v.unknownFields
  6657. default:
  6658. return nil
  6659. }
  6660. }
  6661. file_volume_server_proto_msgTypes[32].Exporter = func(v any, i int) any {
  6662. switch v := v.(*VolumeStatusRequest); i {
  6663. case 0:
  6664. return &v.state
  6665. case 1:
  6666. return &v.sizeCache
  6667. case 2:
  6668. return &v.unknownFields
  6669. default:
  6670. return nil
  6671. }
  6672. }
  6673. file_volume_server_proto_msgTypes[33].Exporter = func(v any, i int) any {
  6674. switch v := v.(*VolumeStatusResponse); i {
  6675. case 0:
  6676. return &v.state
  6677. case 1:
  6678. return &v.sizeCache
  6679. case 2:
  6680. return &v.unknownFields
  6681. default:
  6682. return nil
  6683. }
  6684. }
  6685. file_volume_server_proto_msgTypes[34].Exporter = func(v any, i int) any {
  6686. switch v := v.(*VolumeCopyRequest); i {
  6687. case 0:
  6688. return &v.state
  6689. case 1:
  6690. return &v.sizeCache
  6691. case 2:
  6692. return &v.unknownFields
  6693. default:
  6694. return nil
  6695. }
  6696. }
  6697. file_volume_server_proto_msgTypes[35].Exporter = func(v any, i int) any {
  6698. switch v := v.(*VolumeCopyResponse); i {
  6699. case 0:
  6700. return &v.state
  6701. case 1:
  6702. return &v.sizeCache
  6703. case 2:
  6704. return &v.unknownFields
  6705. default:
  6706. return nil
  6707. }
  6708. }
  6709. file_volume_server_proto_msgTypes[36].Exporter = func(v any, i int) any {
  6710. switch v := v.(*CopyFileRequest); i {
  6711. case 0:
  6712. return &v.state
  6713. case 1:
  6714. return &v.sizeCache
  6715. case 2:
  6716. return &v.unknownFields
  6717. default:
  6718. return nil
  6719. }
  6720. }
  6721. file_volume_server_proto_msgTypes[37].Exporter = func(v any, i int) any {
  6722. switch v := v.(*CopyFileResponse); i {
  6723. case 0:
  6724. return &v.state
  6725. case 1:
  6726. return &v.sizeCache
  6727. case 2:
  6728. return &v.unknownFields
  6729. default:
  6730. return nil
  6731. }
  6732. }
  6733. file_volume_server_proto_msgTypes[38].Exporter = func(v any, i int) any {
  6734. switch v := v.(*ReadNeedleBlobRequest); i {
  6735. case 0:
  6736. return &v.state
  6737. case 1:
  6738. return &v.sizeCache
  6739. case 2:
  6740. return &v.unknownFields
  6741. default:
  6742. return nil
  6743. }
  6744. }
  6745. file_volume_server_proto_msgTypes[39].Exporter = func(v any, i int) any {
  6746. switch v := v.(*ReadNeedleBlobResponse); i {
  6747. case 0:
  6748. return &v.state
  6749. case 1:
  6750. return &v.sizeCache
  6751. case 2:
  6752. return &v.unknownFields
  6753. default:
  6754. return nil
  6755. }
  6756. }
  6757. file_volume_server_proto_msgTypes[40].Exporter = func(v any, i int) any {
  6758. switch v := v.(*ReadNeedleMetaRequest); i {
  6759. case 0:
  6760. return &v.state
  6761. case 1:
  6762. return &v.sizeCache
  6763. case 2:
  6764. return &v.unknownFields
  6765. default:
  6766. return nil
  6767. }
  6768. }
  6769. file_volume_server_proto_msgTypes[41].Exporter = func(v any, i int) any {
  6770. switch v := v.(*ReadNeedleMetaResponse); i {
  6771. case 0:
  6772. return &v.state
  6773. case 1:
  6774. return &v.sizeCache
  6775. case 2:
  6776. return &v.unknownFields
  6777. default:
  6778. return nil
  6779. }
  6780. }
  6781. file_volume_server_proto_msgTypes[42].Exporter = func(v any, i int) any {
  6782. switch v := v.(*WriteNeedleBlobRequest); i {
  6783. case 0:
  6784. return &v.state
  6785. case 1:
  6786. return &v.sizeCache
  6787. case 2:
  6788. return &v.unknownFields
  6789. default:
  6790. return nil
  6791. }
  6792. }
  6793. file_volume_server_proto_msgTypes[43].Exporter = func(v any, i int) any {
  6794. switch v := v.(*WriteNeedleBlobResponse); i {
  6795. case 0:
  6796. return &v.state
  6797. case 1:
  6798. return &v.sizeCache
  6799. case 2:
  6800. return &v.unknownFields
  6801. default:
  6802. return nil
  6803. }
  6804. }
  6805. file_volume_server_proto_msgTypes[44].Exporter = func(v any, i int) any {
  6806. switch v := v.(*ReadAllNeedlesRequest); i {
  6807. case 0:
  6808. return &v.state
  6809. case 1:
  6810. return &v.sizeCache
  6811. case 2:
  6812. return &v.unknownFields
  6813. default:
  6814. return nil
  6815. }
  6816. }
  6817. file_volume_server_proto_msgTypes[45].Exporter = func(v any, i int) any {
  6818. switch v := v.(*ReadAllNeedlesResponse); i {
  6819. case 0:
  6820. return &v.state
  6821. case 1:
  6822. return &v.sizeCache
  6823. case 2:
  6824. return &v.unknownFields
  6825. default:
  6826. return nil
  6827. }
  6828. }
  6829. file_volume_server_proto_msgTypes[46].Exporter = func(v any, i int) any {
  6830. switch v := v.(*VolumeTailSenderRequest); i {
  6831. case 0:
  6832. return &v.state
  6833. case 1:
  6834. return &v.sizeCache
  6835. case 2:
  6836. return &v.unknownFields
  6837. default:
  6838. return nil
  6839. }
  6840. }
  6841. file_volume_server_proto_msgTypes[47].Exporter = func(v any, i int) any {
  6842. switch v := v.(*VolumeTailSenderResponse); i {
  6843. case 0:
  6844. return &v.state
  6845. case 1:
  6846. return &v.sizeCache
  6847. case 2:
  6848. return &v.unknownFields
  6849. default:
  6850. return nil
  6851. }
  6852. }
  6853. file_volume_server_proto_msgTypes[48].Exporter = func(v any, i int) any {
  6854. switch v := v.(*VolumeTailReceiverRequest); i {
  6855. case 0:
  6856. return &v.state
  6857. case 1:
  6858. return &v.sizeCache
  6859. case 2:
  6860. return &v.unknownFields
  6861. default:
  6862. return nil
  6863. }
  6864. }
  6865. file_volume_server_proto_msgTypes[49].Exporter = func(v any, i int) any {
  6866. switch v := v.(*VolumeTailReceiverResponse); i {
  6867. case 0:
  6868. return &v.state
  6869. case 1:
  6870. return &v.sizeCache
  6871. case 2:
  6872. return &v.unknownFields
  6873. default:
  6874. return nil
  6875. }
  6876. }
  6877. file_volume_server_proto_msgTypes[50].Exporter = func(v any, i int) any {
  6878. switch v := v.(*VolumeEcShardsGenerateRequest); i {
  6879. case 0:
  6880. return &v.state
  6881. case 1:
  6882. return &v.sizeCache
  6883. case 2:
  6884. return &v.unknownFields
  6885. default:
  6886. return nil
  6887. }
  6888. }
  6889. file_volume_server_proto_msgTypes[51].Exporter = func(v any, i int) any {
  6890. switch v := v.(*VolumeEcShardsGenerateResponse); i {
  6891. case 0:
  6892. return &v.state
  6893. case 1:
  6894. return &v.sizeCache
  6895. case 2:
  6896. return &v.unknownFields
  6897. default:
  6898. return nil
  6899. }
  6900. }
  6901. file_volume_server_proto_msgTypes[52].Exporter = func(v any, i int) any {
  6902. switch v := v.(*VolumeEcShardsRebuildRequest); i {
  6903. case 0:
  6904. return &v.state
  6905. case 1:
  6906. return &v.sizeCache
  6907. case 2:
  6908. return &v.unknownFields
  6909. default:
  6910. return nil
  6911. }
  6912. }
  6913. file_volume_server_proto_msgTypes[53].Exporter = func(v any, i int) any {
  6914. switch v := v.(*VolumeEcShardsRebuildResponse); i {
  6915. case 0:
  6916. return &v.state
  6917. case 1:
  6918. return &v.sizeCache
  6919. case 2:
  6920. return &v.unknownFields
  6921. default:
  6922. return nil
  6923. }
  6924. }
  6925. file_volume_server_proto_msgTypes[54].Exporter = func(v any, i int) any {
  6926. switch v := v.(*VolumeEcShardsCopyRequest); i {
  6927. case 0:
  6928. return &v.state
  6929. case 1:
  6930. return &v.sizeCache
  6931. case 2:
  6932. return &v.unknownFields
  6933. default:
  6934. return nil
  6935. }
  6936. }
  6937. file_volume_server_proto_msgTypes[55].Exporter = func(v any, i int) any {
  6938. switch v := v.(*VolumeEcShardsCopyResponse); i {
  6939. case 0:
  6940. return &v.state
  6941. case 1:
  6942. return &v.sizeCache
  6943. case 2:
  6944. return &v.unknownFields
  6945. default:
  6946. return nil
  6947. }
  6948. }
  6949. file_volume_server_proto_msgTypes[56].Exporter = func(v any, i int) any {
  6950. switch v := v.(*VolumeEcShardsDeleteRequest); i {
  6951. case 0:
  6952. return &v.state
  6953. case 1:
  6954. return &v.sizeCache
  6955. case 2:
  6956. return &v.unknownFields
  6957. default:
  6958. return nil
  6959. }
  6960. }
  6961. file_volume_server_proto_msgTypes[57].Exporter = func(v any, i int) any {
  6962. switch v := v.(*VolumeEcShardsDeleteResponse); i {
  6963. case 0:
  6964. return &v.state
  6965. case 1:
  6966. return &v.sizeCache
  6967. case 2:
  6968. return &v.unknownFields
  6969. default:
  6970. return nil
  6971. }
  6972. }
  6973. file_volume_server_proto_msgTypes[58].Exporter = func(v any, i int) any {
  6974. switch v := v.(*VolumeEcShardsMountRequest); i {
  6975. case 0:
  6976. return &v.state
  6977. case 1:
  6978. return &v.sizeCache
  6979. case 2:
  6980. return &v.unknownFields
  6981. default:
  6982. return nil
  6983. }
  6984. }
  6985. file_volume_server_proto_msgTypes[59].Exporter = func(v any, i int) any {
  6986. switch v := v.(*VolumeEcShardsMountResponse); i {
  6987. case 0:
  6988. return &v.state
  6989. case 1:
  6990. return &v.sizeCache
  6991. case 2:
  6992. return &v.unknownFields
  6993. default:
  6994. return nil
  6995. }
  6996. }
  6997. file_volume_server_proto_msgTypes[60].Exporter = func(v any, i int) any {
  6998. switch v := v.(*VolumeEcShardsUnmountRequest); i {
  6999. case 0:
  7000. return &v.state
  7001. case 1:
  7002. return &v.sizeCache
  7003. case 2:
  7004. return &v.unknownFields
  7005. default:
  7006. return nil
  7007. }
  7008. }
  7009. file_volume_server_proto_msgTypes[61].Exporter = func(v any, i int) any {
  7010. switch v := v.(*VolumeEcShardsUnmountResponse); i {
  7011. case 0:
  7012. return &v.state
  7013. case 1:
  7014. return &v.sizeCache
  7015. case 2:
  7016. return &v.unknownFields
  7017. default:
  7018. return nil
  7019. }
  7020. }
  7021. file_volume_server_proto_msgTypes[62].Exporter = func(v any, i int) any {
  7022. switch v := v.(*VolumeEcShardReadRequest); i {
  7023. case 0:
  7024. return &v.state
  7025. case 1:
  7026. return &v.sizeCache
  7027. case 2:
  7028. return &v.unknownFields
  7029. default:
  7030. return nil
  7031. }
  7032. }
  7033. file_volume_server_proto_msgTypes[63].Exporter = func(v any, i int) any {
  7034. switch v := v.(*VolumeEcShardReadResponse); i {
  7035. case 0:
  7036. return &v.state
  7037. case 1:
  7038. return &v.sizeCache
  7039. case 2:
  7040. return &v.unknownFields
  7041. default:
  7042. return nil
  7043. }
  7044. }
  7045. file_volume_server_proto_msgTypes[64].Exporter = func(v any, i int) any {
  7046. switch v := v.(*VolumeEcBlobDeleteRequest); i {
  7047. case 0:
  7048. return &v.state
  7049. case 1:
  7050. return &v.sizeCache
  7051. case 2:
  7052. return &v.unknownFields
  7053. default:
  7054. return nil
  7055. }
  7056. }
  7057. file_volume_server_proto_msgTypes[65].Exporter = func(v any, i int) any {
  7058. switch v := v.(*VolumeEcBlobDeleteResponse); i {
  7059. case 0:
  7060. return &v.state
  7061. case 1:
  7062. return &v.sizeCache
  7063. case 2:
  7064. return &v.unknownFields
  7065. default:
  7066. return nil
  7067. }
  7068. }
  7069. file_volume_server_proto_msgTypes[66].Exporter = func(v any, i int) any {
  7070. switch v := v.(*VolumeEcShardsToVolumeRequest); i {
  7071. case 0:
  7072. return &v.state
  7073. case 1:
  7074. return &v.sizeCache
  7075. case 2:
  7076. return &v.unknownFields
  7077. default:
  7078. return nil
  7079. }
  7080. }
  7081. file_volume_server_proto_msgTypes[67].Exporter = func(v any, i int) any {
  7082. switch v := v.(*VolumeEcShardsToVolumeResponse); i {
  7083. case 0:
  7084. return &v.state
  7085. case 1:
  7086. return &v.sizeCache
  7087. case 2:
  7088. return &v.unknownFields
  7089. default:
  7090. return nil
  7091. }
  7092. }
  7093. file_volume_server_proto_msgTypes[68].Exporter = func(v any, i int) any {
  7094. switch v := v.(*ReadVolumeFileStatusRequest); i {
  7095. case 0:
  7096. return &v.state
  7097. case 1:
  7098. return &v.sizeCache
  7099. case 2:
  7100. return &v.unknownFields
  7101. default:
  7102. return nil
  7103. }
  7104. }
  7105. file_volume_server_proto_msgTypes[69].Exporter = func(v any, i int) any {
  7106. switch v := v.(*ReadVolumeFileStatusResponse); i {
  7107. case 0:
  7108. return &v.state
  7109. case 1:
  7110. return &v.sizeCache
  7111. case 2:
  7112. return &v.unknownFields
  7113. default:
  7114. return nil
  7115. }
  7116. }
  7117. file_volume_server_proto_msgTypes[70].Exporter = func(v any, i int) any {
  7118. switch v := v.(*DiskStatus); i {
  7119. case 0:
  7120. return &v.state
  7121. case 1:
  7122. return &v.sizeCache
  7123. case 2:
  7124. return &v.unknownFields
  7125. default:
  7126. return nil
  7127. }
  7128. }
  7129. file_volume_server_proto_msgTypes[71].Exporter = func(v any, i int) any {
  7130. switch v := v.(*MemStatus); i {
  7131. case 0:
  7132. return &v.state
  7133. case 1:
  7134. return &v.sizeCache
  7135. case 2:
  7136. return &v.unknownFields
  7137. default:
  7138. return nil
  7139. }
  7140. }
  7141. file_volume_server_proto_msgTypes[72].Exporter = func(v any, i int) any {
  7142. switch v := v.(*RemoteFile); i {
  7143. case 0:
  7144. return &v.state
  7145. case 1:
  7146. return &v.sizeCache
  7147. case 2:
  7148. return &v.unknownFields
  7149. default:
  7150. return nil
  7151. }
  7152. }
  7153. file_volume_server_proto_msgTypes[73].Exporter = func(v any, i int) any {
  7154. switch v := v.(*VolumeInfo); i {
  7155. case 0:
  7156. return &v.state
  7157. case 1:
  7158. return &v.sizeCache
  7159. case 2:
  7160. return &v.unknownFields
  7161. default:
  7162. return nil
  7163. }
  7164. }
  7165. file_volume_server_proto_msgTypes[74].Exporter = func(v any, i int) any {
  7166. switch v := v.(*OldVersionVolumeInfo); i {
  7167. case 0:
  7168. return &v.state
  7169. case 1:
  7170. return &v.sizeCache
  7171. case 2:
  7172. return &v.unknownFields
  7173. default:
  7174. return nil
  7175. }
  7176. }
  7177. file_volume_server_proto_msgTypes[75].Exporter = func(v any, i int) any {
  7178. switch v := v.(*VolumeTierMoveDatToRemoteRequest); i {
  7179. case 0:
  7180. return &v.state
  7181. case 1:
  7182. return &v.sizeCache
  7183. case 2:
  7184. return &v.unknownFields
  7185. default:
  7186. return nil
  7187. }
  7188. }
  7189. file_volume_server_proto_msgTypes[76].Exporter = func(v any, i int) any {
  7190. switch v := v.(*VolumeTierMoveDatToRemoteResponse); i {
  7191. case 0:
  7192. return &v.state
  7193. case 1:
  7194. return &v.sizeCache
  7195. case 2:
  7196. return &v.unknownFields
  7197. default:
  7198. return nil
  7199. }
  7200. }
  7201. file_volume_server_proto_msgTypes[77].Exporter = func(v any, i int) any {
  7202. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); i {
  7203. case 0:
  7204. return &v.state
  7205. case 1:
  7206. return &v.sizeCache
  7207. case 2:
  7208. return &v.unknownFields
  7209. default:
  7210. return nil
  7211. }
  7212. }
  7213. file_volume_server_proto_msgTypes[78].Exporter = func(v any, i int) any {
  7214. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); i {
  7215. case 0:
  7216. return &v.state
  7217. case 1:
  7218. return &v.sizeCache
  7219. case 2:
  7220. return &v.unknownFields
  7221. default:
  7222. return nil
  7223. }
  7224. }
  7225. file_volume_server_proto_msgTypes[79].Exporter = func(v any, i int) any {
  7226. switch v := v.(*VolumeServerStatusRequest); i {
  7227. case 0:
  7228. return &v.state
  7229. case 1:
  7230. return &v.sizeCache
  7231. case 2:
  7232. return &v.unknownFields
  7233. default:
  7234. return nil
  7235. }
  7236. }
  7237. file_volume_server_proto_msgTypes[80].Exporter = func(v any, i int) any {
  7238. switch v := v.(*VolumeServerStatusResponse); i {
  7239. case 0:
  7240. return &v.state
  7241. case 1:
  7242. return &v.sizeCache
  7243. case 2:
  7244. return &v.unknownFields
  7245. default:
  7246. return nil
  7247. }
  7248. }
  7249. file_volume_server_proto_msgTypes[81].Exporter = func(v any, i int) any {
  7250. switch v := v.(*VolumeServerLeaveRequest); i {
  7251. case 0:
  7252. return &v.state
  7253. case 1:
  7254. return &v.sizeCache
  7255. case 2:
  7256. return &v.unknownFields
  7257. default:
  7258. return nil
  7259. }
  7260. }
  7261. file_volume_server_proto_msgTypes[82].Exporter = func(v any, i int) any {
  7262. switch v := v.(*VolumeServerLeaveResponse); i {
  7263. case 0:
  7264. return &v.state
  7265. case 1:
  7266. return &v.sizeCache
  7267. case 2:
  7268. return &v.unknownFields
  7269. default:
  7270. return nil
  7271. }
  7272. }
  7273. file_volume_server_proto_msgTypes[83].Exporter = func(v any, i int) any {
  7274. switch v := v.(*FetchAndWriteNeedleRequest); i {
  7275. case 0:
  7276. return &v.state
  7277. case 1:
  7278. return &v.sizeCache
  7279. case 2:
  7280. return &v.unknownFields
  7281. default:
  7282. return nil
  7283. }
  7284. }
  7285. file_volume_server_proto_msgTypes[84].Exporter = func(v any, i int) any {
  7286. switch v := v.(*FetchAndWriteNeedleResponse); i {
  7287. case 0:
  7288. return &v.state
  7289. case 1:
  7290. return &v.sizeCache
  7291. case 2:
  7292. return &v.unknownFields
  7293. default:
  7294. return nil
  7295. }
  7296. }
  7297. file_volume_server_proto_msgTypes[85].Exporter = func(v any, i int) any {
  7298. switch v := v.(*QueryRequest); i {
  7299. case 0:
  7300. return &v.state
  7301. case 1:
  7302. return &v.sizeCache
  7303. case 2:
  7304. return &v.unknownFields
  7305. default:
  7306. return nil
  7307. }
  7308. }
  7309. file_volume_server_proto_msgTypes[86].Exporter = func(v any, i int) any {
  7310. switch v := v.(*QueriedStripe); i {
  7311. case 0:
  7312. return &v.state
  7313. case 1:
  7314. return &v.sizeCache
  7315. case 2:
  7316. return &v.unknownFields
  7317. default:
  7318. return nil
  7319. }
  7320. }
  7321. file_volume_server_proto_msgTypes[87].Exporter = func(v any, i int) any {
  7322. switch v := v.(*VolumeNeedleStatusRequest); i {
  7323. case 0:
  7324. return &v.state
  7325. case 1:
  7326. return &v.sizeCache
  7327. case 2:
  7328. return &v.unknownFields
  7329. default:
  7330. return nil
  7331. }
  7332. }
  7333. file_volume_server_proto_msgTypes[88].Exporter = func(v any, i int) any {
  7334. switch v := v.(*VolumeNeedleStatusResponse); i {
  7335. case 0:
  7336. return &v.state
  7337. case 1:
  7338. return &v.sizeCache
  7339. case 2:
  7340. return &v.unknownFields
  7341. default:
  7342. return nil
  7343. }
  7344. }
  7345. file_volume_server_proto_msgTypes[89].Exporter = func(v any, i int) any {
  7346. switch v := v.(*PingRequest); i {
  7347. case 0:
  7348. return &v.state
  7349. case 1:
  7350. return &v.sizeCache
  7351. case 2:
  7352. return &v.unknownFields
  7353. default:
  7354. return nil
  7355. }
  7356. }
  7357. file_volume_server_proto_msgTypes[90].Exporter = func(v any, i int) any {
  7358. switch v := v.(*PingResponse); i {
  7359. case 0:
  7360. return &v.state
  7361. case 1:
  7362. return &v.sizeCache
  7363. case 2:
  7364. return &v.unknownFields
  7365. default:
  7366. return nil
  7367. }
  7368. }
  7369. file_volume_server_proto_msgTypes[91].Exporter = func(v any, i int) any {
  7370. switch v := v.(*FetchAndWriteNeedleRequest_Replica); i {
  7371. case 0:
  7372. return &v.state
  7373. case 1:
  7374. return &v.sizeCache
  7375. case 2:
  7376. return &v.unknownFields
  7377. default:
  7378. return nil
  7379. }
  7380. }
  7381. file_volume_server_proto_msgTypes[92].Exporter = func(v any, i int) any {
  7382. switch v := v.(*QueryRequest_Filter); i {
  7383. case 0:
  7384. return &v.state
  7385. case 1:
  7386. return &v.sizeCache
  7387. case 2:
  7388. return &v.unknownFields
  7389. default:
  7390. return nil
  7391. }
  7392. }
  7393. file_volume_server_proto_msgTypes[93].Exporter = func(v any, i int) any {
  7394. switch v := v.(*QueryRequest_InputSerialization); i {
  7395. case 0:
  7396. return &v.state
  7397. case 1:
  7398. return &v.sizeCache
  7399. case 2:
  7400. return &v.unknownFields
  7401. default:
  7402. return nil
  7403. }
  7404. }
  7405. file_volume_server_proto_msgTypes[94].Exporter = func(v any, i int) any {
  7406. switch v := v.(*QueryRequest_OutputSerialization); i {
  7407. case 0:
  7408. return &v.state
  7409. case 1:
  7410. return &v.sizeCache
  7411. case 2:
  7412. return &v.unknownFields
  7413. default:
  7414. return nil
  7415. }
  7416. }
  7417. file_volume_server_proto_msgTypes[95].Exporter = func(v any, i int) any {
  7418. switch v := v.(*QueryRequest_InputSerialization_CSVInput); i {
  7419. case 0:
  7420. return &v.state
  7421. case 1:
  7422. return &v.sizeCache
  7423. case 2:
  7424. return &v.unknownFields
  7425. default:
  7426. return nil
  7427. }
  7428. }
  7429. file_volume_server_proto_msgTypes[96].Exporter = func(v any, i int) any {
  7430. switch v := v.(*QueryRequest_InputSerialization_JSONInput); i {
  7431. case 0:
  7432. return &v.state
  7433. case 1:
  7434. return &v.sizeCache
  7435. case 2:
  7436. return &v.unknownFields
  7437. default:
  7438. return nil
  7439. }
  7440. }
  7441. file_volume_server_proto_msgTypes[97].Exporter = func(v any, i int) any {
  7442. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  7443. case 0:
  7444. return &v.state
  7445. case 1:
  7446. return &v.sizeCache
  7447. case 2:
  7448. return &v.unknownFields
  7449. default:
  7450. return nil
  7451. }
  7452. }
  7453. file_volume_server_proto_msgTypes[98].Exporter = func(v any, i int) any {
  7454. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  7455. case 0:
  7456. return &v.state
  7457. case 1:
  7458. return &v.sizeCache
  7459. case 2:
  7460. return &v.unknownFields
  7461. default:
  7462. return nil
  7463. }
  7464. }
  7465. file_volume_server_proto_msgTypes[99].Exporter = func(v any, i int) any {
  7466. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  7467. case 0:
  7468. return &v.state
  7469. case 1:
  7470. return &v.sizeCache
  7471. case 2:
  7472. return &v.unknownFields
  7473. default:
  7474. return nil
  7475. }
  7476. }
  7477. }
  7478. type x struct{}
  7479. out := protoimpl.TypeBuilder{
  7480. File: protoimpl.DescBuilder{
  7481. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  7482. RawDescriptor: file_volume_server_proto_rawDesc,
  7483. NumEnums: 0,
  7484. NumMessages: 100,
  7485. NumExtensions: 0,
  7486. NumServices: 1,
  7487. },
  7488. GoTypes: file_volume_server_proto_goTypes,
  7489. DependencyIndexes: file_volume_server_proto_depIdxs,
  7490. MessageInfos: file_volume_server_proto_msgTypes,
  7491. }.Build()
  7492. File_volume_server_proto = out.File
  7493. file_volume_server_proto_rawDesc = nil
  7494. file_volume_server_proto_goTypes = nil
  7495. file_volume_server_proto_depIdxs = nil
  7496. }