volume_server.pb.go 285 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0
  4. // protoc v3.17.3
  5. // source: volume_server.proto
  6. package volume_server_pb
  7. import (
  8. remote_pb "github.com/chrislusf/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. }
  334. func (x *VacuumVolumeCompactResponse) Reset() {
  335. *x = VacuumVolumeCompactResponse{}
  336. if protoimpl.UnsafeEnabled {
  337. mi := &file_volume_server_proto_msgTypes[7]
  338. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  339. ms.StoreMessageInfo(mi)
  340. }
  341. }
  342. func (x *VacuumVolumeCompactResponse) String() string {
  343. return protoimpl.X.MessageStringOf(x)
  344. }
  345. func (*VacuumVolumeCompactResponse) ProtoMessage() {}
  346. func (x *VacuumVolumeCompactResponse) ProtoReflect() protoreflect.Message {
  347. mi := &file_volume_server_proto_msgTypes[7]
  348. if protoimpl.UnsafeEnabled && x != nil {
  349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  350. if ms.LoadMessageInfo() == nil {
  351. ms.StoreMessageInfo(mi)
  352. }
  353. return ms
  354. }
  355. return mi.MessageOf(x)
  356. }
  357. // Deprecated: Use VacuumVolumeCompactResponse.ProtoReflect.Descriptor instead.
  358. func (*VacuumVolumeCompactResponse) Descriptor() ([]byte, []int) {
  359. return file_volume_server_proto_rawDescGZIP(), []int{7}
  360. }
  361. func (x *VacuumVolumeCompactResponse) GetProcessedBytes() int64 {
  362. if x != nil {
  363. return x.ProcessedBytes
  364. }
  365. return 0
  366. }
  367. type VacuumVolumeCommitRequest struct {
  368. state protoimpl.MessageState
  369. sizeCache protoimpl.SizeCache
  370. unknownFields protoimpl.UnknownFields
  371. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  372. }
  373. func (x *VacuumVolumeCommitRequest) Reset() {
  374. *x = VacuumVolumeCommitRequest{}
  375. if protoimpl.UnsafeEnabled {
  376. mi := &file_volume_server_proto_msgTypes[8]
  377. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  378. ms.StoreMessageInfo(mi)
  379. }
  380. }
  381. func (x *VacuumVolumeCommitRequest) String() string {
  382. return protoimpl.X.MessageStringOf(x)
  383. }
  384. func (*VacuumVolumeCommitRequest) ProtoMessage() {}
  385. func (x *VacuumVolumeCommitRequest) ProtoReflect() protoreflect.Message {
  386. mi := &file_volume_server_proto_msgTypes[8]
  387. if protoimpl.UnsafeEnabled && x != nil {
  388. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  389. if ms.LoadMessageInfo() == nil {
  390. ms.StoreMessageInfo(mi)
  391. }
  392. return ms
  393. }
  394. return mi.MessageOf(x)
  395. }
  396. // Deprecated: Use VacuumVolumeCommitRequest.ProtoReflect.Descriptor instead.
  397. func (*VacuumVolumeCommitRequest) Descriptor() ([]byte, []int) {
  398. return file_volume_server_proto_rawDescGZIP(), []int{8}
  399. }
  400. func (x *VacuumVolumeCommitRequest) GetVolumeId() uint32 {
  401. if x != nil {
  402. return x.VolumeId
  403. }
  404. return 0
  405. }
  406. type VacuumVolumeCommitResponse struct {
  407. state protoimpl.MessageState
  408. sizeCache protoimpl.SizeCache
  409. unknownFields protoimpl.UnknownFields
  410. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  411. }
  412. func (x *VacuumVolumeCommitResponse) Reset() {
  413. *x = VacuumVolumeCommitResponse{}
  414. if protoimpl.UnsafeEnabled {
  415. mi := &file_volume_server_proto_msgTypes[9]
  416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  417. ms.StoreMessageInfo(mi)
  418. }
  419. }
  420. func (x *VacuumVolumeCommitResponse) String() string {
  421. return protoimpl.X.MessageStringOf(x)
  422. }
  423. func (*VacuumVolumeCommitResponse) ProtoMessage() {}
  424. func (x *VacuumVolumeCommitResponse) ProtoReflect() protoreflect.Message {
  425. mi := &file_volume_server_proto_msgTypes[9]
  426. if protoimpl.UnsafeEnabled && x != nil {
  427. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  428. if ms.LoadMessageInfo() == nil {
  429. ms.StoreMessageInfo(mi)
  430. }
  431. return ms
  432. }
  433. return mi.MessageOf(x)
  434. }
  435. // Deprecated: Use VacuumVolumeCommitResponse.ProtoReflect.Descriptor instead.
  436. func (*VacuumVolumeCommitResponse) Descriptor() ([]byte, []int) {
  437. return file_volume_server_proto_rawDescGZIP(), []int{9}
  438. }
  439. func (x *VacuumVolumeCommitResponse) GetIsReadOnly() bool {
  440. if x != nil {
  441. return x.IsReadOnly
  442. }
  443. return false
  444. }
  445. type VacuumVolumeCleanupRequest struct {
  446. state protoimpl.MessageState
  447. sizeCache protoimpl.SizeCache
  448. unknownFields protoimpl.UnknownFields
  449. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  450. }
  451. func (x *VacuumVolumeCleanupRequest) Reset() {
  452. *x = VacuumVolumeCleanupRequest{}
  453. if protoimpl.UnsafeEnabled {
  454. mi := &file_volume_server_proto_msgTypes[10]
  455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  456. ms.StoreMessageInfo(mi)
  457. }
  458. }
  459. func (x *VacuumVolumeCleanupRequest) String() string {
  460. return protoimpl.X.MessageStringOf(x)
  461. }
  462. func (*VacuumVolumeCleanupRequest) ProtoMessage() {}
  463. func (x *VacuumVolumeCleanupRequest) ProtoReflect() protoreflect.Message {
  464. mi := &file_volume_server_proto_msgTypes[10]
  465. if protoimpl.UnsafeEnabled && x != nil {
  466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  467. if ms.LoadMessageInfo() == nil {
  468. ms.StoreMessageInfo(mi)
  469. }
  470. return ms
  471. }
  472. return mi.MessageOf(x)
  473. }
  474. // Deprecated: Use VacuumVolumeCleanupRequest.ProtoReflect.Descriptor instead.
  475. func (*VacuumVolumeCleanupRequest) Descriptor() ([]byte, []int) {
  476. return file_volume_server_proto_rawDescGZIP(), []int{10}
  477. }
  478. func (x *VacuumVolumeCleanupRequest) GetVolumeId() uint32 {
  479. if x != nil {
  480. return x.VolumeId
  481. }
  482. return 0
  483. }
  484. type VacuumVolumeCleanupResponse struct {
  485. state protoimpl.MessageState
  486. sizeCache protoimpl.SizeCache
  487. unknownFields protoimpl.UnknownFields
  488. }
  489. func (x *VacuumVolumeCleanupResponse) Reset() {
  490. *x = VacuumVolumeCleanupResponse{}
  491. if protoimpl.UnsafeEnabled {
  492. mi := &file_volume_server_proto_msgTypes[11]
  493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  494. ms.StoreMessageInfo(mi)
  495. }
  496. }
  497. func (x *VacuumVolumeCleanupResponse) String() string {
  498. return protoimpl.X.MessageStringOf(x)
  499. }
  500. func (*VacuumVolumeCleanupResponse) ProtoMessage() {}
  501. func (x *VacuumVolumeCleanupResponse) ProtoReflect() protoreflect.Message {
  502. mi := &file_volume_server_proto_msgTypes[11]
  503. if protoimpl.UnsafeEnabled && x != nil {
  504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  505. if ms.LoadMessageInfo() == nil {
  506. ms.StoreMessageInfo(mi)
  507. }
  508. return ms
  509. }
  510. return mi.MessageOf(x)
  511. }
  512. // Deprecated: Use VacuumVolumeCleanupResponse.ProtoReflect.Descriptor instead.
  513. func (*VacuumVolumeCleanupResponse) Descriptor() ([]byte, []int) {
  514. return file_volume_server_proto_rawDescGZIP(), []int{11}
  515. }
  516. type DeleteCollectionRequest struct {
  517. state protoimpl.MessageState
  518. sizeCache protoimpl.SizeCache
  519. unknownFields protoimpl.UnknownFields
  520. Collection string `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty"`
  521. }
  522. func (x *DeleteCollectionRequest) Reset() {
  523. *x = DeleteCollectionRequest{}
  524. if protoimpl.UnsafeEnabled {
  525. mi := &file_volume_server_proto_msgTypes[12]
  526. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  527. ms.StoreMessageInfo(mi)
  528. }
  529. }
  530. func (x *DeleteCollectionRequest) String() string {
  531. return protoimpl.X.MessageStringOf(x)
  532. }
  533. func (*DeleteCollectionRequest) ProtoMessage() {}
  534. func (x *DeleteCollectionRequest) ProtoReflect() protoreflect.Message {
  535. mi := &file_volume_server_proto_msgTypes[12]
  536. if protoimpl.UnsafeEnabled && x != nil {
  537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  538. if ms.LoadMessageInfo() == nil {
  539. ms.StoreMessageInfo(mi)
  540. }
  541. return ms
  542. }
  543. return mi.MessageOf(x)
  544. }
  545. // Deprecated: Use DeleteCollectionRequest.ProtoReflect.Descriptor instead.
  546. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) {
  547. return file_volume_server_proto_rawDescGZIP(), []int{12}
  548. }
  549. func (x *DeleteCollectionRequest) GetCollection() string {
  550. if x != nil {
  551. return x.Collection
  552. }
  553. return ""
  554. }
  555. type DeleteCollectionResponse struct {
  556. state protoimpl.MessageState
  557. sizeCache protoimpl.SizeCache
  558. unknownFields protoimpl.UnknownFields
  559. }
  560. func (x *DeleteCollectionResponse) Reset() {
  561. *x = DeleteCollectionResponse{}
  562. if protoimpl.UnsafeEnabled {
  563. mi := &file_volume_server_proto_msgTypes[13]
  564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  565. ms.StoreMessageInfo(mi)
  566. }
  567. }
  568. func (x *DeleteCollectionResponse) String() string {
  569. return protoimpl.X.MessageStringOf(x)
  570. }
  571. func (*DeleteCollectionResponse) ProtoMessage() {}
  572. func (x *DeleteCollectionResponse) ProtoReflect() protoreflect.Message {
  573. mi := &file_volume_server_proto_msgTypes[13]
  574. if protoimpl.UnsafeEnabled && x != nil {
  575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  576. if ms.LoadMessageInfo() == nil {
  577. ms.StoreMessageInfo(mi)
  578. }
  579. return ms
  580. }
  581. return mi.MessageOf(x)
  582. }
  583. // Deprecated: Use DeleteCollectionResponse.ProtoReflect.Descriptor instead.
  584. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) {
  585. return file_volume_server_proto_rawDescGZIP(), []int{13}
  586. }
  587. type AllocateVolumeRequest struct {
  588. state protoimpl.MessageState
  589. sizeCache protoimpl.SizeCache
  590. unknownFields protoimpl.UnknownFields
  591. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  592. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  593. Preallocate int64 `protobuf:"varint,3,opt,name=preallocate,proto3" json:"preallocate,omitempty"`
  594. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  595. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  596. MemoryMapMaxSizeMb uint32 `protobuf:"varint,6,opt,name=memory_map_max_size_mb,json=memoryMapMaxSizeMb,proto3" json:"memory_map_max_size_mb,omitempty"`
  597. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  598. }
  599. func (x *AllocateVolumeRequest) Reset() {
  600. *x = AllocateVolumeRequest{}
  601. if protoimpl.UnsafeEnabled {
  602. mi := &file_volume_server_proto_msgTypes[14]
  603. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  604. ms.StoreMessageInfo(mi)
  605. }
  606. }
  607. func (x *AllocateVolumeRequest) String() string {
  608. return protoimpl.X.MessageStringOf(x)
  609. }
  610. func (*AllocateVolumeRequest) ProtoMessage() {}
  611. func (x *AllocateVolumeRequest) ProtoReflect() protoreflect.Message {
  612. mi := &file_volume_server_proto_msgTypes[14]
  613. if protoimpl.UnsafeEnabled && x != nil {
  614. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  615. if ms.LoadMessageInfo() == nil {
  616. ms.StoreMessageInfo(mi)
  617. }
  618. return ms
  619. }
  620. return mi.MessageOf(x)
  621. }
  622. // Deprecated: Use AllocateVolumeRequest.ProtoReflect.Descriptor instead.
  623. func (*AllocateVolumeRequest) Descriptor() ([]byte, []int) {
  624. return file_volume_server_proto_rawDescGZIP(), []int{14}
  625. }
  626. func (x *AllocateVolumeRequest) GetVolumeId() uint32 {
  627. if x != nil {
  628. return x.VolumeId
  629. }
  630. return 0
  631. }
  632. func (x *AllocateVolumeRequest) GetCollection() string {
  633. if x != nil {
  634. return x.Collection
  635. }
  636. return ""
  637. }
  638. func (x *AllocateVolumeRequest) GetPreallocate() int64 {
  639. if x != nil {
  640. return x.Preallocate
  641. }
  642. return 0
  643. }
  644. func (x *AllocateVolumeRequest) GetReplication() string {
  645. if x != nil {
  646. return x.Replication
  647. }
  648. return ""
  649. }
  650. func (x *AllocateVolumeRequest) GetTtl() string {
  651. if x != nil {
  652. return x.Ttl
  653. }
  654. return ""
  655. }
  656. func (x *AllocateVolumeRequest) GetMemoryMapMaxSizeMb() uint32 {
  657. if x != nil {
  658. return x.MemoryMapMaxSizeMb
  659. }
  660. return 0
  661. }
  662. func (x *AllocateVolumeRequest) GetDiskType() string {
  663. if x != nil {
  664. return x.DiskType
  665. }
  666. return ""
  667. }
  668. type AllocateVolumeResponse struct {
  669. state protoimpl.MessageState
  670. sizeCache protoimpl.SizeCache
  671. unknownFields protoimpl.UnknownFields
  672. }
  673. func (x *AllocateVolumeResponse) Reset() {
  674. *x = AllocateVolumeResponse{}
  675. if protoimpl.UnsafeEnabled {
  676. mi := &file_volume_server_proto_msgTypes[15]
  677. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  678. ms.StoreMessageInfo(mi)
  679. }
  680. }
  681. func (x *AllocateVolumeResponse) String() string {
  682. return protoimpl.X.MessageStringOf(x)
  683. }
  684. func (*AllocateVolumeResponse) ProtoMessage() {}
  685. func (x *AllocateVolumeResponse) ProtoReflect() protoreflect.Message {
  686. mi := &file_volume_server_proto_msgTypes[15]
  687. if protoimpl.UnsafeEnabled && x != nil {
  688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  689. if ms.LoadMessageInfo() == nil {
  690. ms.StoreMessageInfo(mi)
  691. }
  692. return ms
  693. }
  694. return mi.MessageOf(x)
  695. }
  696. // Deprecated: Use AllocateVolumeResponse.ProtoReflect.Descriptor instead.
  697. func (*AllocateVolumeResponse) Descriptor() ([]byte, []int) {
  698. return file_volume_server_proto_rawDescGZIP(), []int{15}
  699. }
  700. type VolumeSyncStatusRequest struct {
  701. state protoimpl.MessageState
  702. sizeCache protoimpl.SizeCache
  703. unknownFields protoimpl.UnknownFields
  704. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  705. }
  706. func (x *VolumeSyncStatusRequest) Reset() {
  707. *x = VolumeSyncStatusRequest{}
  708. if protoimpl.UnsafeEnabled {
  709. mi := &file_volume_server_proto_msgTypes[16]
  710. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  711. ms.StoreMessageInfo(mi)
  712. }
  713. }
  714. func (x *VolumeSyncStatusRequest) String() string {
  715. return protoimpl.X.MessageStringOf(x)
  716. }
  717. func (*VolumeSyncStatusRequest) ProtoMessage() {}
  718. func (x *VolumeSyncStatusRequest) ProtoReflect() protoreflect.Message {
  719. mi := &file_volume_server_proto_msgTypes[16]
  720. if protoimpl.UnsafeEnabled && x != nil {
  721. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  722. if ms.LoadMessageInfo() == nil {
  723. ms.StoreMessageInfo(mi)
  724. }
  725. return ms
  726. }
  727. return mi.MessageOf(x)
  728. }
  729. // Deprecated: Use VolumeSyncStatusRequest.ProtoReflect.Descriptor instead.
  730. func (*VolumeSyncStatusRequest) Descriptor() ([]byte, []int) {
  731. return file_volume_server_proto_rawDescGZIP(), []int{16}
  732. }
  733. func (x *VolumeSyncStatusRequest) GetVolumeId() uint32 {
  734. if x != nil {
  735. return x.VolumeId
  736. }
  737. return 0
  738. }
  739. type VolumeSyncStatusResponse struct {
  740. state protoimpl.MessageState
  741. sizeCache protoimpl.SizeCache
  742. unknownFields protoimpl.UnknownFields
  743. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  744. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  745. Replication string `protobuf:"bytes,4,opt,name=replication,proto3" json:"replication,omitempty"`
  746. Ttl string `protobuf:"bytes,5,opt,name=ttl,proto3" json:"ttl,omitempty"`
  747. TailOffset uint64 `protobuf:"varint,6,opt,name=tail_offset,json=tailOffset,proto3" json:"tail_offset,omitempty"`
  748. CompactRevision uint32 `protobuf:"varint,7,opt,name=compact_revision,json=compactRevision,proto3" json:"compact_revision,omitempty"`
  749. IdxFileSize uint64 `protobuf:"varint,8,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  750. }
  751. func (x *VolumeSyncStatusResponse) Reset() {
  752. *x = VolumeSyncStatusResponse{}
  753. if protoimpl.UnsafeEnabled {
  754. mi := &file_volume_server_proto_msgTypes[17]
  755. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  756. ms.StoreMessageInfo(mi)
  757. }
  758. }
  759. func (x *VolumeSyncStatusResponse) String() string {
  760. return protoimpl.X.MessageStringOf(x)
  761. }
  762. func (*VolumeSyncStatusResponse) ProtoMessage() {}
  763. func (x *VolumeSyncStatusResponse) ProtoReflect() protoreflect.Message {
  764. mi := &file_volume_server_proto_msgTypes[17]
  765. if protoimpl.UnsafeEnabled && x != nil {
  766. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  767. if ms.LoadMessageInfo() == nil {
  768. ms.StoreMessageInfo(mi)
  769. }
  770. return ms
  771. }
  772. return mi.MessageOf(x)
  773. }
  774. // Deprecated: Use VolumeSyncStatusResponse.ProtoReflect.Descriptor instead.
  775. func (*VolumeSyncStatusResponse) Descriptor() ([]byte, []int) {
  776. return file_volume_server_proto_rawDescGZIP(), []int{17}
  777. }
  778. func (x *VolumeSyncStatusResponse) GetVolumeId() uint32 {
  779. if x != nil {
  780. return x.VolumeId
  781. }
  782. return 0
  783. }
  784. func (x *VolumeSyncStatusResponse) GetCollection() string {
  785. if x != nil {
  786. return x.Collection
  787. }
  788. return ""
  789. }
  790. func (x *VolumeSyncStatusResponse) GetReplication() string {
  791. if x != nil {
  792. return x.Replication
  793. }
  794. return ""
  795. }
  796. func (x *VolumeSyncStatusResponse) GetTtl() string {
  797. if x != nil {
  798. return x.Ttl
  799. }
  800. return ""
  801. }
  802. func (x *VolumeSyncStatusResponse) GetTailOffset() uint64 {
  803. if x != nil {
  804. return x.TailOffset
  805. }
  806. return 0
  807. }
  808. func (x *VolumeSyncStatusResponse) GetCompactRevision() uint32 {
  809. if x != nil {
  810. return x.CompactRevision
  811. }
  812. return 0
  813. }
  814. func (x *VolumeSyncStatusResponse) GetIdxFileSize() uint64 {
  815. if x != nil {
  816. return x.IdxFileSize
  817. }
  818. return 0
  819. }
  820. type VolumeIncrementalCopyRequest struct {
  821. state protoimpl.MessageState
  822. sizeCache protoimpl.SizeCache
  823. unknownFields protoimpl.UnknownFields
  824. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  825. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  826. }
  827. func (x *VolumeIncrementalCopyRequest) Reset() {
  828. *x = VolumeIncrementalCopyRequest{}
  829. if protoimpl.UnsafeEnabled {
  830. mi := &file_volume_server_proto_msgTypes[18]
  831. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  832. ms.StoreMessageInfo(mi)
  833. }
  834. }
  835. func (x *VolumeIncrementalCopyRequest) String() string {
  836. return protoimpl.X.MessageStringOf(x)
  837. }
  838. func (*VolumeIncrementalCopyRequest) ProtoMessage() {}
  839. func (x *VolumeIncrementalCopyRequest) ProtoReflect() protoreflect.Message {
  840. mi := &file_volume_server_proto_msgTypes[18]
  841. if protoimpl.UnsafeEnabled && x != nil {
  842. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  843. if ms.LoadMessageInfo() == nil {
  844. ms.StoreMessageInfo(mi)
  845. }
  846. return ms
  847. }
  848. return mi.MessageOf(x)
  849. }
  850. // Deprecated: Use VolumeIncrementalCopyRequest.ProtoReflect.Descriptor instead.
  851. func (*VolumeIncrementalCopyRequest) Descriptor() ([]byte, []int) {
  852. return file_volume_server_proto_rawDescGZIP(), []int{18}
  853. }
  854. func (x *VolumeIncrementalCopyRequest) GetVolumeId() uint32 {
  855. if x != nil {
  856. return x.VolumeId
  857. }
  858. return 0
  859. }
  860. func (x *VolumeIncrementalCopyRequest) GetSinceNs() uint64 {
  861. if x != nil {
  862. return x.SinceNs
  863. }
  864. return 0
  865. }
  866. type VolumeIncrementalCopyResponse struct {
  867. state protoimpl.MessageState
  868. sizeCache protoimpl.SizeCache
  869. unknownFields protoimpl.UnknownFields
  870. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  871. }
  872. func (x *VolumeIncrementalCopyResponse) Reset() {
  873. *x = VolumeIncrementalCopyResponse{}
  874. if protoimpl.UnsafeEnabled {
  875. mi := &file_volume_server_proto_msgTypes[19]
  876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  877. ms.StoreMessageInfo(mi)
  878. }
  879. }
  880. func (x *VolumeIncrementalCopyResponse) String() string {
  881. return protoimpl.X.MessageStringOf(x)
  882. }
  883. func (*VolumeIncrementalCopyResponse) ProtoMessage() {}
  884. func (x *VolumeIncrementalCopyResponse) ProtoReflect() protoreflect.Message {
  885. mi := &file_volume_server_proto_msgTypes[19]
  886. if protoimpl.UnsafeEnabled && x != nil {
  887. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  888. if ms.LoadMessageInfo() == nil {
  889. ms.StoreMessageInfo(mi)
  890. }
  891. return ms
  892. }
  893. return mi.MessageOf(x)
  894. }
  895. // Deprecated: Use VolumeIncrementalCopyResponse.ProtoReflect.Descriptor instead.
  896. func (*VolumeIncrementalCopyResponse) Descriptor() ([]byte, []int) {
  897. return file_volume_server_proto_rawDescGZIP(), []int{19}
  898. }
  899. func (x *VolumeIncrementalCopyResponse) GetFileContent() []byte {
  900. if x != nil {
  901. return x.FileContent
  902. }
  903. return nil
  904. }
  905. type VolumeMountRequest struct {
  906. state protoimpl.MessageState
  907. sizeCache protoimpl.SizeCache
  908. unknownFields protoimpl.UnknownFields
  909. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  910. }
  911. func (x *VolumeMountRequest) Reset() {
  912. *x = VolumeMountRequest{}
  913. if protoimpl.UnsafeEnabled {
  914. mi := &file_volume_server_proto_msgTypes[20]
  915. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  916. ms.StoreMessageInfo(mi)
  917. }
  918. }
  919. func (x *VolumeMountRequest) String() string {
  920. return protoimpl.X.MessageStringOf(x)
  921. }
  922. func (*VolumeMountRequest) ProtoMessage() {}
  923. func (x *VolumeMountRequest) ProtoReflect() protoreflect.Message {
  924. mi := &file_volume_server_proto_msgTypes[20]
  925. if protoimpl.UnsafeEnabled && x != nil {
  926. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  927. if ms.LoadMessageInfo() == nil {
  928. ms.StoreMessageInfo(mi)
  929. }
  930. return ms
  931. }
  932. return mi.MessageOf(x)
  933. }
  934. // Deprecated: Use VolumeMountRequest.ProtoReflect.Descriptor instead.
  935. func (*VolumeMountRequest) Descriptor() ([]byte, []int) {
  936. return file_volume_server_proto_rawDescGZIP(), []int{20}
  937. }
  938. func (x *VolumeMountRequest) GetVolumeId() uint32 {
  939. if x != nil {
  940. return x.VolumeId
  941. }
  942. return 0
  943. }
  944. type VolumeMountResponse struct {
  945. state protoimpl.MessageState
  946. sizeCache protoimpl.SizeCache
  947. unknownFields protoimpl.UnknownFields
  948. }
  949. func (x *VolumeMountResponse) Reset() {
  950. *x = VolumeMountResponse{}
  951. if protoimpl.UnsafeEnabled {
  952. mi := &file_volume_server_proto_msgTypes[21]
  953. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  954. ms.StoreMessageInfo(mi)
  955. }
  956. }
  957. func (x *VolumeMountResponse) String() string {
  958. return protoimpl.X.MessageStringOf(x)
  959. }
  960. func (*VolumeMountResponse) ProtoMessage() {}
  961. func (x *VolumeMountResponse) ProtoReflect() protoreflect.Message {
  962. mi := &file_volume_server_proto_msgTypes[21]
  963. if protoimpl.UnsafeEnabled && x != nil {
  964. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  965. if ms.LoadMessageInfo() == nil {
  966. ms.StoreMessageInfo(mi)
  967. }
  968. return ms
  969. }
  970. return mi.MessageOf(x)
  971. }
  972. // Deprecated: Use VolumeMountResponse.ProtoReflect.Descriptor instead.
  973. func (*VolumeMountResponse) Descriptor() ([]byte, []int) {
  974. return file_volume_server_proto_rawDescGZIP(), []int{21}
  975. }
  976. type VolumeUnmountRequest struct {
  977. state protoimpl.MessageState
  978. sizeCache protoimpl.SizeCache
  979. unknownFields protoimpl.UnknownFields
  980. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  981. }
  982. func (x *VolumeUnmountRequest) Reset() {
  983. *x = VolumeUnmountRequest{}
  984. if protoimpl.UnsafeEnabled {
  985. mi := &file_volume_server_proto_msgTypes[22]
  986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  987. ms.StoreMessageInfo(mi)
  988. }
  989. }
  990. func (x *VolumeUnmountRequest) String() string {
  991. return protoimpl.X.MessageStringOf(x)
  992. }
  993. func (*VolumeUnmountRequest) ProtoMessage() {}
  994. func (x *VolumeUnmountRequest) ProtoReflect() protoreflect.Message {
  995. mi := &file_volume_server_proto_msgTypes[22]
  996. if protoimpl.UnsafeEnabled && x != nil {
  997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  998. if ms.LoadMessageInfo() == nil {
  999. ms.StoreMessageInfo(mi)
  1000. }
  1001. return ms
  1002. }
  1003. return mi.MessageOf(x)
  1004. }
  1005. // Deprecated: Use VolumeUnmountRequest.ProtoReflect.Descriptor instead.
  1006. func (*VolumeUnmountRequest) Descriptor() ([]byte, []int) {
  1007. return file_volume_server_proto_rawDescGZIP(), []int{22}
  1008. }
  1009. func (x *VolumeUnmountRequest) GetVolumeId() uint32 {
  1010. if x != nil {
  1011. return x.VolumeId
  1012. }
  1013. return 0
  1014. }
  1015. type VolumeUnmountResponse struct {
  1016. state protoimpl.MessageState
  1017. sizeCache protoimpl.SizeCache
  1018. unknownFields protoimpl.UnknownFields
  1019. }
  1020. func (x *VolumeUnmountResponse) Reset() {
  1021. *x = VolumeUnmountResponse{}
  1022. if protoimpl.UnsafeEnabled {
  1023. mi := &file_volume_server_proto_msgTypes[23]
  1024. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1025. ms.StoreMessageInfo(mi)
  1026. }
  1027. }
  1028. func (x *VolumeUnmountResponse) String() string {
  1029. return protoimpl.X.MessageStringOf(x)
  1030. }
  1031. func (*VolumeUnmountResponse) ProtoMessage() {}
  1032. func (x *VolumeUnmountResponse) ProtoReflect() protoreflect.Message {
  1033. mi := &file_volume_server_proto_msgTypes[23]
  1034. if protoimpl.UnsafeEnabled && x != nil {
  1035. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1036. if ms.LoadMessageInfo() == nil {
  1037. ms.StoreMessageInfo(mi)
  1038. }
  1039. return ms
  1040. }
  1041. return mi.MessageOf(x)
  1042. }
  1043. // Deprecated: Use VolumeUnmountResponse.ProtoReflect.Descriptor instead.
  1044. func (*VolumeUnmountResponse) Descriptor() ([]byte, []int) {
  1045. return file_volume_server_proto_rawDescGZIP(), []int{23}
  1046. }
  1047. type VolumeDeleteRequest struct {
  1048. state protoimpl.MessageState
  1049. sizeCache protoimpl.SizeCache
  1050. unknownFields protoimpl.UnknownFields
  1051. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1052. }
  1053. func (x *VolumeDeleteRequest) Reset() {
  1054. *x = VolumeDeleteRequest{}
  1055. if protoimpl.UnsafeEnabled {
  1056. mi := &file_volume_server_proto_msgTypes[24]
  1057. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1058. ms.StoreMessageInfo(mi)
  1059. }
  1060. }
  1061. func (x *VolumeDeleteRequest) String() string {
  1062. return protoimpl.X.MessageStringOf(x)
  1063. }
  1064. func (*VolumeDeleteRequest) ProtoMessage() {}
  1065. func (x *VolumeDeleteRequest) ProtoReflect() protoreflect.Message {
  1066. mi := &file_volume_server_proto_msgTypes[24]
  1067. if protoimpl.UnsafeEnabled && x != nil {
  1068. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1069. if ms.LoadMessageInfo() == nil {
  1070. ms.StoreMessageInfo(mi)
  1071. }
  1072. return ms
  1073. }
  1074. return mi.MessageOf(x)
  1075. }
  1076. // Deprecated: Use VolumeDeleteRequest.ProtoReflect.Descriptor instead.
  1077. func (*VolumeDeleteRequest) Descriptor() ([]byte, []int) {
  1078. return file_volume_server_proto_rawDescGZIP(), []int{24}
  1079. }
  1080. func (x *VolumeDeleteRequest) GetVolumeId() uint32 {
  1081. if x != nil {
  1082. return x.VolumeId
  1083. }
  1084. return 0
  1085. }
  1086. type VolumeDeleteResponse struct {
  1087. state protoimpl.MessageState
  1088. sizeCache protoimpl.SizeCache
  1089. unknownFields protoimpl.UnknownFields
  1090. }
  1091. func (x *VolumeDeleteResponse) Reset() {
  1092. *x = VolumeDeleteResponse{}
  1093. if protoimpl.UnsafeEnabled {
  1094. mi := &file_volume_server_proto_msgTypes[25]
  1095. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1096. ms.StoreMessageInfo(mi)
  1097. }
  1098. }
  1099. func (x *VolumeDeleteResponse) String() string {
  1100. return protoimpl.X.MessageStringOf(x)
  1101. }
  1102. func (*VolumeDeleteResponse) ProtoMessage() {}
  1103. func (x *VolumeDeleteResponse) ProtoReflect() protoreflect.Message {
  1104. mi := &file_volume_server_proto_msgTypes[25]
  1105. if protoimpl.UnsafeEnabled && x != nil {
  1106. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1107. if ms.LoadMessageInfo() == nil {
  1108. ms.StoreMessageInfo(mi)
  1109. }
  1110. return ms
  1111. }
  1112. return mi.MessageOf(x)
  1113. }
  1114. // Deprecated: Use VolumeDeleteResponse.ProtoReflect.Descriptor instead.
  1115. func (*VolumeDeleteResponse) Descriptor() ([]byte, []int) {
  1116. return file_volume_server_proto_rawDescGZIP(), []int{25}
  1117. }
  1118. type VolumeMarkReadonlyRequest struct {
  1119. state protoimpl.MessageState
  1120. sizeCache protoimpl.SizeCache
  1121. unknownFields protoimpl.UnknownFields
  1122. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1123. }
  1124. func (x *VolumeMarkReadonlyRequest) Reset() {
  1125. *x = VolumeMarkReadonlyRequest{}
  1126. if protoimpl.UnsafeEnabled {
  1127. mi := &file_volume_server_proto_msgTypes[26]
  1128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1129. ms.StoreMessageInfo(mi)
  1130. }
  1131. }
  1132. func (x *VolumeMarkReadonlyRequest) String() string {
  1133. return protoimpl.X.MessageStringOf(x)
  1134. }
  1135. func (*VolumeMarkReadonlyRequest) ProtoMessage() {}
  1136. func (x *VolumeMarkReadonlyRequest) ProtoReflect() protoreflect.Message {
  1137. mi := &file_volume_server_proto_msgTypes[26]
  1138. if protoimpl.UnsafeEnabled && x != nil {
  1139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1140. if ms.LoadMessageInfo() == nil {
  1141. ms.StoreMessageInfo(mi)
  1142. }
  1143. return ms
  1144. }
  1145. return mi.MessageOf(x)
  1146. }
  1147. // Deprecated: Use VolumeMarkReadonlyRequest.ProtoReflect.Descriptor instead.
  1148. func (*VolumeMarkReadonlyRequest) Descriptor() ([]byte, []int) {
  1149. return file_volume_server_proto_rawDescGZIP(), []int{26}
  1150. }
  1151. func (x *VolumeMarkReadonlyRequest) GetVolumeId() uint32 {
  1152. if x != nil {
  1153. return x.VolumeId
  1154. }
  1155. return 0
  1156. }
  1157. type VolumeMarkReadonlyResponse struct {
  1158. state protoimpl.MessageState
  1159. sizeCache protoimpl.SizeCache
  1160. unknownFields protoimpl.UnknownFields
  1161. }
  1162. func (x *VolumeMarkReadonlyResponse) Reset() {
  1163. *x = VolumeMarkReadonlyResponse{}
  1164. if protoimpl.UnsafeEnabled {
  1165. mi := &file_volume_server_proto_msgTypes[27]
  1166. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1167. ms.StoreMessageInfo(mi)
  1168. }
  1169. }
  1170. func (x *VolumeMarkReadonlyResponse) String() string {
  1171. return protoimpl.X.MessageStringOf(x)
  1172. }
  1173. func (*VolumeMarkReadonlyResponse) ProtoMessage() {}
  1174. func (x *VolumeMarkReadonlyResponse) ProtoReflect() protoreflect.Message {
  1175. mi := &file_volume_server_proto_msgTypes[27]
  1176. if protoimpl.UnsafeEnabled && x != nil {
  1177. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1178. if ms.LoadMessageInfo() == nil {
  1179. ms.StoreMessageInfo(mi)
  1180. }
  1181. return ms
  1182. }
  1183. return mi.MessageOf(x)
  1184. }
  1185. // Deprecated: Use VolumeMarkReadonlyResponse.ProtoReflect.Descriptor instead.
  1186. func (*VolumeMarkReadonlyResponse) Descriptor() ([]byte, []int) {
  1187. return file_volume_server_proto_rawDescGZIP(), []int{27}
  1188. }
  1189. type VolumeMarkWritableRequest struct {
  1190. state protoimpl.MessageState
  1191. sizeCache protoimpl.SizeCache
  1192. unknownFields protoimpl.UnknownFields
  1193. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1194. }
  1195. func (x *VolumeMarkWritableRequest) Reset() {
  1196. *x = VolumeMarkWritableRequest{}
  1197. if protoimpl.UnsafeEnabled {
  1198. mi := &file_volume_server_proto_msgTypes[28]
  1199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1200. ms.StoreMessageInfo(mi)
  1201. }
  1202. }
  1203. func (x *VolumeMarkWritableRequest) String() string {
  1204. return protoimpl.X.MessageStringOf(x)
  1205. }
  1206. func (*VolumeMarkWritableRequest) ProtoMessage() {}
  1207. func (x *VolumeMarkWritableRequest) ProtoReflect() protoreflect.Message {
  1208. mi := &file_volume_server_proto_msgTypes[28]
  1209. if protoimpl.UnsafeEnabled && x != nil {
  1210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1211. if ms.LoadMessageInfo() == nil {
  1212. ms.StoreMessageInfo(mi)
  1213. }
  1214. return ms
  1215. }
  1216. return mi.MessageOf(x)
  1217. }
  1218. // Deprecated: Use VolumeMarkWritableRequest.ProtoReflect.Descriptor instead.
  1219. func (*VolumeMarkWritableRequest) Descriptor() ([]byte, []int) {
  1220. return file_volume_server_proto_rawDescGZIP(), []int{28}
  1221. }
  1222. func (x *VolumeMarkWritableRequest) GetVolumeId() uint32 {
  1223. if x != nil {
  1224. return x.VolumeId
  1225. }
  1226. return 0
  1227. }
  1228. type VolumeMarkWritableResponse struct {
  1229. state protoimpl.MessageState
  1230. sizeCache protoimpl.SizeCache
  1231. unknownFields protoimpl.UnknownFields
  1232. }
  1233. func (x *VolumeMarkWritableResponse) Reset() {
  1234. *x = VolumeMarkWritableResponse{}
  1235. if protoimpl.UnsafeEnabled {
  1236. mi := &file_volume_server_proto_msgTypes[29]
  1237. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1238. ms.StoreMessageInfo(mi)
  1239. }
  1240. }
  1241. func (x *VolumeMarkWritableResponse) String() string {
  1242. return protoimpl.X.MessageStringOf(x)
  1243. }
  1244. func (*VolumeMarkWritableResponse) ProtoMessage() {}
  1245. func (x *VolumeMarkWritableResponse) ProtoReflect() protoreflect.Message {
  1246. mi := &file_volume_server_proto_msgTypes[29]
  1247. if protoimpl.UnsafeEnabled && x != nil {
  1248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1249. if ms.LoadMessageInfo() == nil {
  1250. ms.StoreMessageInfo(mi)
  1251. }
  1252. return ms
  1253. }
  1254. return mi.MessageOf(x)
  1255. }
  1256. // Deprecated: Use VolumeMarkWritableResponse.ProtoReflect.Descriptor instead.
  1257. func (*VolumeMarkWritableResponse) Descriptor() ([]byte, []int) {
  1258. return file_volume_server_proto_rawDescGZIP(), []int{29}
  1259. }
  1260. type VolumeConfigureRequest struct {
  1261. state protoimpl.MessageState
  1262. sizeCache protoimpl.SizeCache
  1263. unknownFields protoimpl.UnknownFields
  1264. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1265. Replication string `protobuf:"bytes,2,opt,name=replication,proto3" json:"replication,omitempty"`
  1266. }
  1267. func (x *VolumeConfigureRequest) Reset() {
  1268. *x = VolumeConfigureRequest{}
  1269. if protoimpl.UnsafeEnabled {
  1270. mi := &file_volume_server_proto_msgTypes[30]
  1271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1272. ms.StoreMessageInfo(mi)
  1273. }
  1274. }
  1275. func (x *VolumeConfigureRequest) String() string {
  1276. return protoimpl.X.MessageStringOf(x)
  1277. }
  1278. func (*VolumeConfigureRequest) ProtoMessage() {}
  1279. func (x *VolumeConfigureRequest) ProtoReflect() protoreflect.Message {
  1280. mi := &file_volume_server_proto_msgTypes[30]
  1281. if protoimpl.UnsafeEnabled && x != nil {
  1282. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1283. if ms.LoadMessageInfo() == nil {
  1284. ms.StoreMessageInfo(mi)
  1285. }
  1286. return ms
  1287. }
  1288. return mi.MessageOf(x)
  1289. }
  1290. // Deprecated: Use VolumeConfigureRequest.ProtoReflect.Descriptor instead.
  1291. func (*VolumeConfigureRequest) Descriptor() ([]byte, []int) {
  1292. return file_volume_server_proto_rawDescGZIP(), []int{30}
  1293. }
  1294. func (x *VolumeConfigureRequest) GetVolumeId() uint32 {
  1295. if x != nil {
  1296. return x.VolumeId
  1297. }
  1298. return 0
  1299. }
  1300. func (x *VolumeConfigureRequest) GetReplication() string {
  1301. if x != nil {
  1302. return x.Replication
  1303. }
  1304. return ""
  1305. }
  1306. type VolumeConfigureResponse struct {
  1307. state protoimpl.MessageState
  1308. sizeCache protoimpl.SizeCache
  1309. unknownFields protoimpl.UnknownFields
  1310. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  1311. }
  1312. func (x *VolumeConfigureResponse) Reset() {
  1313. *x = VolumeConfigureResponse{}
  1314. if protoimpl.UnsafeEnabled {
  1315. mi := &file_volume_server_proto_msgTypes[31]
  1316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1317. ms.StoreMessageInfo(mi)
  1318. }
  1319. }
  1320. func (x *VolumeConfigureResponse) String() string {
  1321. return protoimpl.X.MessageStringOf(x)
  1322. }
  1323. func (*VolumeConfigureResponse) ProtoMessage() {}
  1324. func (x *VolumeConfigureResponse) ProtoReflect() protoreflect.Message {
  1325. mi := &file_volume_server_proto_msgTypes[31]
  1326. if protoimpl.UnsafeEnabled && x != nil {
  1327. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1328. if ms.LoadMessageInfo() == nil {
  1329. ms.StoreMessageInfo(mi)
  1330. }
  1331. return ms
  1332. }
  1333. return mi.MessageOf(x)
  1334. }
  1335. // Deprecated: Use VolumeConfigureResponse.ProtoReflect.Descriptor instead.
  1336. func (*VolumeConfigureResponse) Descriptor() ([]byte, []int) {
  1337. return file_volume_server_proto_rawDescGZIP(), []int{31}
  1338. }
  1339. func (x *VolumeConfigureResponse) GetError() string {
  1340. if x != nil {
  1341. return x.Error
  1342. }
  1343. return ""
  1344. }
  1345. type VolumeStatusRequest struct {
  1346. state protoimpl.MessageState
  1347. sizeCache protoimpl.SizeCache
  1348. unknownFields protoimpl.UnknownFields
  1349. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1350. }
  1351. func (x *VolumeStatusRequest) Reset() {
  1352. *x = VolumeStatusRequest{}
  1353. if protoimpl.UnsafeEnabled {
  1354. mi := &file_volume_server_proto_msgTypes[32]
  1355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1356. ms.StoreMessageInfo(mi)
  1357. }
  1358. }
  1359. func (x *VolumeStatusRequest) String() string {
  1360. return protoimpl.X.MessageStringOf(x)
  1361. }
  1362. func (*VolumeStatusRequest) ProtoMessage() {}
  1363. func (x *VolumeStatusRequest) ProtoReflect() protoreflect.Message {
  1364. mi := &file_volume_server_proto_msgTypes[32]
  1365. if protoimpl.UnsafeEnabled && x != nil {
  1366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1367. if ms.LoadMessageInfo() == nil {
  1368. ms.StoreMessageInfo(mi)
  1369. }
  1370. return ms
  1371. }
  1372. return mi.MessageOf(x)
  1373. }
  1374. // Deprecated: Use VolumeStatusRequest.ProtoReflect.Descriptor instead.
  1375. func (*VolumeStatusRequest) Descriptor() ([]byte, []int) {
  1376. return file_volume_server_proto_rawDescGZIP(), []int{32}
  1377. }
  1378. func (x *VolumeStatusRequest) GetVolumeId() uint32 {
  1379. if x != nil {
  1380. return x.VolumeId
  1381. }
  1382. return 0
  1383. }
  1384. type VolumeStatusResponse struct {
  1385. state protoimpl.MessageState
  1386. sizeCache protoimpl.SizeCache
  1387. unknownFields protoimpl.UnknownFields
  1388. IsReadOnly bool `protobuf:"varint,1,opt,name=is_read_only,json=isReadOnly,proto3" json:"is_read_only,omitempty"`
  1389. }
  1390. func (x *VolumeStatusResponse) Reset() {
  1391. *x = VolumeStatusResponse{}
  1392. if protoimpl.UnsafeEnabled {
  1393. mi := &file_volume_server_proto_msgTypes[33]
  1394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1395. ms.StoreMessageInfo(mi)
  1396. }
  1397. }
  1398. func (x *VolumeStatusResponse) String() string {
  1399. return protoimpl.X.MessageStringOf(x)
  1400. }
  1401. func (*VolumeStatusResponse) ProtoMessage() {}
  1402. func (x *VolumeStatusResponse) ProtoReflect() protoreflect.Message {
  1403. mi := &file_volume_server_proto_msgTypes[33]
  1404. if protoimpl.UnsafeEnabled && x != nil {
  1405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1406. if ms.LoadMessageInfo() == nil {
  1407. ms.StoreMessageInfo(mi)
  1408. }
  1409. return ms
  1410. }
  1411. return mi.MessageOf(x)
  1412. }
  1413. // Deprecated: Use VolumeStatusResponse.ProtoReflect.Descriptor instead.
  1414. func (*VolumeStatusResponse) Descriptor() ([]byte, []int) {
  1415. return file_volume_server_proto_rawDescGZIP(), []int{33}
  1416. }
  1417. func (x *VolumeStatusResponse) GetIsReadOnly() bool {
  1418. if x != nil {
  1419. return x.IsReadOnly
  1420. }
  1421. return false
  1422. }
  1423. type VolumeCopyRequest struct {
  1424. state protoimpl.MessageState
  1425. sizeCache protoimpl.SizeCache
  1426. unknownFields protoimpl.UnknownFields
  1427. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1428. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1429. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  1430. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  1431. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  1432. DiskType string `protobuf:"bytes,6,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  1433. }
  1434. func (x *VolumeCopyRequest) Reset() {
  1435. *x = VolumeCopyRequest{}
  1436. if protoimpl.UnsafeEnabled {
  1437. mi := &file_volume_server_proto_msgTypes[34]
  1438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1439. ms.StoreMessageInfo(mi)
  1440. }
  1441. }
  1442. func (x *VolumeCopyRequest) String() string {
  1443. return protoimpl.X.MessageStringOf(x)
  1444. }
  1445. func (*VolumeCopyRequest) ProtoMessage() {}
  1446. func (x *VolumeCopyRequest) ProtoReflect() protoreflect.Message {
  1447. mi := &file_volume_server_proto_msgTypes[34]
  1448. if protoimpl.UnsafeEnabled && x != nil {
  1449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1450. if ms.LoadMessageInfo() == nil {
  1451. ms.StoreMessageInfo(mi)
  1452. }
  1453. return ms
  1454. }
  1455. return mi.MessageOf(x)
  1456. }
  1457. // Deprecated: Use VolumeCopyRequest.ProtoReflect.Descriptor instead.
  1458. func (*VolumeCopyRequest) Descriptor() ([]byte, []int) {
  1459. return file_volume_server_proto_rawDescGZIP(), []int{34}
  1460. }
  1461. func (x *VolumeCopyRequest) GetVolumeId() uint32 {
  1462. if x != nil {
  1463. return x.VolumeId
  1464. }
  1465. return 0
  1466. }
  1467. func (x *VolumeCopyRequest) GetCollection() string {
  1468. if x != nil {
  1469. return x.Collection
  1470. }
  1471. return ""
  1472. }
  1473. func (x *VolumeCopyRequest) GetReplication() string {
  1474. if x != nil {
  1475. return x.Replication
  1476. }
  1477. return ""
  1478. }
  1479. func (x *VolumeCopyRequest) GetTtl() string {
  1480. if x != nil {
  1481. return x.Ttl
  1482. }
  1483. return ""
  1484. }
  1485. func (x *VolumeCopyRequest) GetSourceDataNode() string {
  1486. if x != nil {
  1487. return x.SourceDataNode
  1488. }
  1489. return ""
  1490. }
  1491. func (x *VolumeCopyRequest) GetDiskType() string {
  1492. if x != nil {
  1493. return x.DiskType
  1494. }
  1495. return ""
  1496. }
  1497. type VolumeCopyResponse struct {
  1498. state protoimpl.MessageState
  1499. sizeCache protoimpl.SizeCache
  1500. unknownFields protoimpl.UnknownFields
  1501. LastAppendAtNs uint64 `protobuf:"varint,1,opt,name=last_append_at_ns,json=lastAppendAtNs,proto3" json:"last_append_at_ns,omitempty"`
  1502. ProcessedBytes int64 `protobuf:"varint,2,opt,name=processed_bytes,json=processedBytes,proto3" json:"processed_bytes,omitempty"`
  1503. }
  1504. func (x *VolumeCopyResponse) Reset() {
  1505. *x = VolumeCopyResponse{}
  1506. if protoimpl.UnsafeEnabled {
  1507. mi := &file_volume_server_proto_msgTypes[35]
  1508. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1509. ms.StoreMessageInfo(mi)
  1510. }
  1511. }
  1512. func (x *VolumeCopyResponse) String() string {
  1513. return protoimpl.X.MessageStringOf(x)
  1514. }
  1515. func (*VolumeCopyResponse) ProtoMessage() {}
  1516. func (x *VolumeCopyResponse) ProtoReflect() protoreflect.Message {
  1517. mi := &file_volume_server_proto_msgTypes[35]
  1518. if protoimpl.UnsafeEnabled && x != nil {
  1519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1520. if ms.LoadMessageInfo() == nil {
  1521. ms.StoreMessageInfo(mi)
  1522. }
  1523. return ms
  1524. }
  1525. return mi.MessageOf(x)
  1526. }
  1527. // Deprecated: Use VolumeCopyResponse.ProtoReflect.Descriptor instead.
  1528. func (*VolumeCopyResponse) Descriptor() ([]byte, []int) {
  1529. return file_volume_server_proto_rawDescGZIP(), []int{35}
  1530. }
  1531. func (x *VolumeCopyResponse) GetLastAppendAtNs() uint64 {
  1532. if x != nil {
  1533. return x.LastAppendAtNs
  1534. }
  1535. return 0
  1536. }
  1537. func (x *VolumeCopyResponse) GetProcessedBytes() int64 {
  1538. if x != nil {
  1539. return x.ProcessedBytes
  1540. }
  1541. return 0
  1542. }
  1543. type CopyFileRequest struct {
  1544. state protoimpl.MessageState
  1545. sizeCache protoimpl.SizeCache
  1546. unknownFields protoimpl.UnknownFields
  1547. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1548. Ext string `protobuf:"bytes,2,opt,name=ext,proto3" json:"ext,omitempty"`
  1549. CompactionRevision uint32 `protobuf:"varint,3,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  1550. StopOffset uint64 `protobuf:"varint,4,opt,name=stop_offset,json=stopOffset,proto3" json:"stop_offset,omitempty"`
  1551. Collection string `protobuf:"bytes,5,opt,name=collection,proto3" json:"collection,omitempty"`
  1552. IsEcVolume bool `protobuf:"varint,6,opt,name=is_ec_volume,json=isEcVolume,proto3" json:"is_ec_volume,omitempty"`
  1553. IgnoreSourceFileNotFound bool `protobuf:"varint,7,opt,name=ignore_source_file_not_found,json=ignoreSourceFileNotFound,proto3" json:"ignore_source_file_not_found,omitempty"`
  1554. }
  1555. func (x *CopyFileRequest) Reset() {
  1556. *x = CopyFileRequest{}
  1557. if protoimpl.UnsafeEnabled {
  1558. mi := &file_volume_server_proto_msgTypes[36]
  1559. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1560. ms.StoreMessageInfo(mi)
  1561. }
  1562. }
  1563. func (x *CopyFileRequest) String() string {
  1564. return protoimpl.X.MessageStringOf(x)
  1565. }
  1566. func (*CopyFileRequest) ProtoMessage() {}
  1567. func (x *CopyFileRequest) ProtoReflect() protoreflect.Message {
  1568. mi := &file_volume_server_proto_msgTypes[36]
  1569. if protoimpl.UnsafeEnabled && x != nil {
  1570. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1571. if ms.LoadMessageInfo() == nil {
  1572. ms.StoreMessageInfo(mi)
  1573. }
  1574. return ms
  1575. }
  1576. return mi.MessageOf(x)
  1577. }
  1578. // Deprecated: Use CopyFileRequest.ProtoReflect.Descriptor instead.
  1579. func (*CopyFileRequest) Descriptor() ([]byte, []int) {
  1580. return file_volume_server_proto_rawDescGZIP(), []int{36}
  1581. }
  1582. func (x *CopyFileRequest) GetVolumeId() uint32 {
  1583. if x != nil {
  1584. return x.VolumeId
  1585. }
  1586. return 0
  1587. }
  1588. func (x *CopyFileRequest) GetExt() string {
  1589. if x != nil {
  1590. return x.Ext
  1591. }
  1592. return ""
  1593. }
  1594. func (x *CopyFileRequest) GetCompactionRevision() uint32 {
  1595. if x != nil {
  1596. return x.CompactionRevision
  1597. }
  1598. return 0
  1599. }
  1600. func (x *CopyFileRequest) GetStopOffset() uint64 {
  1601. if x != nil {
  1602. return x.StopOffset
  1603. }
  1604. return 0
  1605. }
  1606. func (x *CopyFileRequest) GetCollection() string {
  1607. if x != nil {
  1608. return x.Collection
  1609. }
  1610. return ""
  1611. }
  1612. func (x *CopyFileRequest) GetIsEcVolume() bool {
  1613. if x != nil {
  1614. return x.IsEcVolume
  1615. }
  1616. return false
  1617. }
  1618. func (x *CopyFileRequest) GetIgnoreSourceFileNotFound() bool {
  1619. if x != nil {
  1620. return x.IgnoreSourceFileNotFound
  1621. }
  1622. return false
  1623. }
  1624. type CopyFileResponse struct {
  1625. state protoimpl.MessageState
  1626. sizeCache protoimpl.SizeCache
  1627. unknownFields protoimpl.UnknownFields
  1628. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  1629. ModifiedTsNs int64 `protobuf:"varint,2,opt,name=modified_ts_ns,json=modifiedTsNs,proto3" json:"modified_ts_ns,omitempty"`
  1630. }
  1631. func (x *CopyFileResponse) Reset() {
  1632. *x = CopyFileResponse{}
  1633. if protoimpl.UnsafeEnabled {
  1634. mi := &file_volume_server_proto_msgTypes[37]
  1635. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1636. ms.StoreMessageInfo(mi)
  1637. }
  1638. }
  1639. func (x *CopyFileResponse) String() string {
  1640. return protoimpl.X.MessageStringOf(x)
  1641. }
  1642. func (*CopyFileResponse) ProtoMessage() {}
  1643. func (x *CopyFileResponse) ProtoReflect() protoreflect.Message {
  1644. mi := &file_volume_server_proto_msgTypes[37]
  1645. if protoimpl.UnsafeEnabled && x != nil {
  1646. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1647. if ms.LoadMessageInfo() == nil {
  1648. ms.StoreMessageInfo(mi)
  1649. }
  1650. return ms
  1651. }
  1652. return mi.MessageOf(x)
  1653. }
  1654. // Deprecated: Use CopyFileResponse.ProtoReflect.Descriptor instead.
  1655. func (*CopyFileResponse) Descriptor() ([]byte, []int) {
  1656. return file_volume_server_proto_rawDescGZIP(), []int{37}
  1657. }
  1658. func (x *CopyFileResponse) GetFileContent() []byte {
  1659. if x != nil {
  1660. return x.FileContent
  1661. }
  1662. return nil
  1663. }
  1664. func (x *CopyFileResponse) GetModifiedTsNs() int64 {
  1665. if x != nil {
  1666. return x.ModifiedTsNs
  1667. }
  1668. return 0
  1669. }
  1670. type ReadNeedleBlobRequest struct {
  1671. state protoimpl.MessageState
  1672. sizeCache protoimpl.SizeCache
  1673. unknownFields protoimpl.UnknownFields
  1674. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1675. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1676. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"` // actual offset
  1677. Size int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  1678. }
  1679. func (x *ReadNeedleBlobRequest) Reset() {
  1680. *x = ReadNeedleBlobRequest{}
  1681. if protoimpl.UnsafeEnabled {
  1682. mi := &file_volume_server_proto_msgTypes[38]
  1683. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1684. ms.StoreMessageInfo(mi)
  1685. }
  1686. }
  1687. func (x *ReadNeedleBlobRequest) String() string {
  1688. return protoimpl.X.MessageStringOf(x)
  1689. }
  1690. func (*ReadNeedleBlobRequest) ProtoMessage() {}
  1691. func (x *ReadNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1692. mi := &file_volume_server_proto_msgTypes[38]
  1693. if protoimpl.UnsafeEnabled && x != nil {
  1694. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1695. if ms.LoadMessageInfo() == nil {
  1696. ms.StoreMessageInfo(mi)
  1697. }
  1698. return ms
  1699. }
  1700. return mi.MessageOf(x)
  1701. }
  1702. // Deprecated: Use ReadNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1703. func (*ReadNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1704. return file_volume_server_proto_rawDescGZIP(), []int{38}
  1705. }
  1706. func (x *ReadNeedleBlobRequest) GetVolumeId() uint32 {
  1707. if x != nil {
  1708. return x.VolumeId
  1709. }
  1710. return 0
  1711. }
  1712. func (x *ReadNeedleBlobRequest) GetNeedleId() uint64 {
  1713. if x != nil {
  1714. return x.NeedleId
  1715. }
  1716. return 0
  1717. }
  1718. func (x *ReadNeedleBlobRequest) GetOffset() int64 {
  1719. if x != nil {
  1720. return x.Offset
  1721. }
  1722. return 0
  1723. }
  1724. func (x *ReadNeedleBlobRequest) GetSize() int32 {
  1725. if x != nil {
  1726. return x.Size
  1727. }
  1728. return 0
  1729. }
  1730. type ReadNeedleBlobResponse struct {
  1731. state protoimpl.MessageState
  1732. sizeCache protoimpl.SizeCache
  1733. unknownFields protoimpl.UnknownFields
  1734. NeedleBlob []byte `protobuf:"bytes,1,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1735. }
  1736. func (x *ReadNeedleBlobResponse) Reset() {
  1737. *x = ReadNeedleBlobResponse{}
  1738. if protoimpl.UnsafeEnabled {
  1739. mi := &file_volume_server_proto_msgTypes[39]
  1740. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1741. ms.StoreMessageInfo(mi)
  1742. }
  1743. }
  1744. func (x *ReadNeedleBlobResponse) String() string {
  1745. return protoimpl.X.MessageStringOf(x)
  1746. }
  1747. func (*ReadNeedleBlobResponse) ProtoMessage() {}
  1748. func (x *ReadNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  1749. mi := &file_volume_server_proto_msgTypes[39]
  1750. if protoimpl.UnsafeEnabled && x != nil {
  1751. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1752. if ms.LoadMessageInfo() == nil {
  1753. ms.StoreMessageInfo(mi)
  1754. }
  1755. return ms
  1756. }
  1757. return mi.MessageOf(x)
  1758. }
  1759. // Deprecated: Use ReadNeedleBlobResponse.ProtoReflect.Descriptor instead.
  1760. func (*ReadNeedleBlobResponse) Descriptor() ([]byte, []int) {
  1761. return file_volume_server_proto_rawDescGZIP(), []int{39}
  1762. }
  1763. func (x *ReadNeedleBlobResponse) GetNeedleBlob() []byte {
  1764. if x != nil {
  1765. return x.NeedleBlob
  1766. }
  1767. return nil
  1768. }
  1769. type WriteNeedleBlobRequest struct {
  1770. state protoimpl.MessageState
  1771. sizeCache protoimpl.SizeCache
  1772. unknownFields protoimpl.UnknownFields
  1773. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1774. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1775. Size int32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  1776. NeedleBlob []byte `protobuf:"bytes,4,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1777. }
  1778. func (x *WriteNeedleBlobRequest) Reset() {
  1779. *x = WriteNeedleBlobRequest{}
  1780. if protoimpl.UnsafeEnabled {
  1781. mi := &file_volume_server_proto_msgTypes[40]
  1782. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1783. ms.StoreMessageInfo(mi)
  1784. }
  1785. }
  1786. func (x *WriteNeedleBlobRequest) String() string {
  1787. return protoimpl.X.MessageStringOf(x)
  1788. }
  1789. func (*WriteNeedleBlobRequest) ProtoMessage() {}
  1790. func (x *WriteNeedleBlobRequest) ProtoReflect() protoreflect.Message {
  1791. mi := &file_volume_server_proto_msgTypes[40]
  1792. if protoimpl.UnsafeEnabled && x != nil {
  1793. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1794. if ms.LoadMessageInfo() == nil {
  1795. ms.StoreMessageInfo(mi)
  1796. }
  1797. return ms
  1798. }
  1799. return mi.MessageOf(x)
  1800. }
  1801. // Deprecated: Use WriteNeedleBlobRequest.ProtoReflect.Descriptor instead.
  1802. func (*WriteNeedleBlobRequest) Descriptor() ([]byte, []int) {
  1803. return file_volume_server_proto_rawDescGZIP(), []int{40}
  1804. }
  1805. func (x *WriteNeedleBlobRequest) GetVolumeId() uint32 {
  1806. if x != nil {
  1807. return x.VolumeId
  1808. }
  1809. return 0
  1810. }
  1811. func (x *WriteNeedleBlobRequest) GetNeedleId() uint64 {
  1812. if x != nil {
  1813. return x.NeedleId
  1814. }
  1815. return 0
  1816. }
  1817. func (x *WriteNeedleBlobRequest) GetSize() int32 {
  1818. if x != nil {
  1819. return x.Size
  1820. }
  1821. return 0
  1822. }
  1823. func (x *WriteNeedleBlobRequest) GetNeedleBlob() []byte {
  1824. if x != nil {
  1825. return x.NeedleBlob
  1826. }
  1827. return nil
  1828. }
  1829. type WriteNeedleBlobResponse struct {
  1830. state protoimpl.MessageState
  1831. sizeCache protoimpl.SizeCache
  1832. unknownFields protoimpl.UnknownFields
  1833. }
  1834. func (x *WriteNeedleBlobResponse) Reset() {
  1835. *x = WriteNeedleBlobResponse{}
  1836. if protoimpl.UnsafeEnabled {
  1837. mi := &file_volume_server_proto_msgTypes[41]
  1838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1839. ms.StoreMessageInfo(mi)
  1840. }
  1841. }
  1842. func (x *WriteNeedleBlobResponse) String() string {
  1843. return protoimpl.X.MessageStringOf(x)
  1844. }
  1845. func (*WriteNeedleBlobResponse) ProtoMessage() {}
  1846. func (x *WriteNeedleBlobResponse) ProtoReflect() protoreflect.Message {
  1847. mi := &file_volume_server_proto_msgTypes[41]
  1848. if protoimpl.UnsafeEnabled && x != nil {
  1849. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1850. if ms.LoadMessageInfo() == nil {
  1851. ms.StoreMessageInfo(mi)
  1852. }
  1853. return ms
  1854. }
  1855. return mi.MessageOf(x)
  1856. }
  1857. // Deprecated: Use WriteNeedleBlobResponse.ProtoReflect.Descriptor instead.
  1858. func (*WriteNeedleBlobResponse) Descriptor() ([]byte, []int) {
  1859. return file_volume_server_proto_rawDescGZIP(), []int{41}
  1860. }
  1861. type ReadAllNeedlesRequest struct {
  1862. state protoimpl.MessageState
  1863. sizeCache protoimpl.SizeCache
  1864. unknownFields protoimpl.UnknownFields
  1865. VolumeIds []uint32 `protobuf:"varint,1,rep,packed,name=volume_ids,json=volumeIds,proto3" json:"volume_ids,omitempty"`
  1866. }
  1867. func (x *ReadAllNeedlesRequest) Reset() {
  1868. *x = ReadAllNeedlesRequest{}
  1869. if protoimpl.UnsafeEnabled {
  1870. mi := &file_volume_server_proto_msgTypes[42]
  1871. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1872. ms.StoreMessageInfo(mi)
  1873. }
  1874. }
  1875. func (x *ReadAllNeedlesRequest) String() string {
  1876. return protoimpl.X.MessageStringOf(x)
  1877. }
  1878. func (*ReadAllNeedlesRequest) ProtoMessage() {}
  1879. func (x *ReadAllNeedlesRequest) ProtoReflect() protoreflect.Message {
  1880. mi := &file_volume_server_proto_msgTypes[42]
  1881. if protoimpl.UnsafeEnabled && x != nil {
  1882. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1883. if ms.LoadMessageInfo() == nil {
  1884. ms.StoreMessageInfo(mi)
  1885. }
  1886. return ms
  1887. }
  1888. return mi.MessageOf(x)
  1889. }
  1890. // Deprecated: Use ReadAllNeedlesRequest.ProtoReflect.Descriptor instead.
  1891. func (*ReadAllNeedlesRequest) Descriptor() ([]byte, []int) {
  1892. return file_volume_server_proto_rawDescGZIP(), []int{42}
  1893. }
  1894. func (x *ReadAllNeedlesRequest) GetVolumeIds() []uint32 {
  1895. if x != nil {
  1896. return x.VolumeIds
  1897. }
  1898. return nil
  1899. }
  1900. type ReadAllNeedlesResponse struct {
  1901. state protoimpl.MessageState
  1902. sizeCache protoimpl.SizeCache
  1903. unknownFields protoimpl.UnknownFields
  1904. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1905. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  1906. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  1907. NeedleBlob []byte `protobuf:"bytes,5,opt,name=needle_blob,json=needleBlob,proto3" json:"needle_blob,omitempty"`
  1908. }
  1909. func (x *ReadAllNeedlesResponse) Reset() {
  1910. *x = ReadAllNeedlesResponse{}
  1911. if protoimpl.UnsafeEnabled {
  1912. mi := &file_volume_server_proto_msgTypes[43]
  1913. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1914. ms.StoreMessageInfo(mi)
  1915. }
  1916. }
  1917. func (x *ReadAllNeedlesResponse) String() string {
  1918. return protoimpl.X.MessageStringOf(x)
  1919. }
  1920. func (*ReadAllNeedlesResponse) ProtoMessage() {}
  1921. func (x *ReadAllNeedlesResponse) ProtoReflect() protoreflect.Message {
  1922. mi := &file_volume_server_proto_msgTypes[43]
  1923. if protoimpl.UnsafeEnabled && x != nil {
  1924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1925. if ms.LoadMessageInfo() == nil {
  1926. ms.StoreMessageInfo(mi)
  1927. }
  1928. return ms
  1929. }
  1930. return mi.MessageOf(x)
  1931. }
  1932. // Deprecated: Use ReadAllNeedlesResponse.ProtoReflect.Descriptor instead.
  1933. func (*ReadAllNeedlesResponse) Descriptor() ([]byte, []int) {
  1934. return file_volume_server_proto_rawDescGZIP(), []int{43}
  1935. }
  1936. func (x *ReadAllNeedlesResponse) GetVolumeId() uint32 {
  1937. if x != nil {
  1938. return x.VolumeId
  1939. }
  1940. return 0
  1941. }
  1942. func (x *ReadAllNeedlesResponse) GetNeedleId() uint64 {
  1943. if x != nil {
  1944. return x.NeedleId
  1945. }
  1946. return 0
  1947. }
  1948. func (x *ReadAllNeedlesResponse) GetCookie() uint32 {
  1949. if x != nil {
  1950. return x.Cookie
  1951. }
  1952. return 0
  1953. }
  1954. func (x *ReadAllNeedlesResponse) GetNeedleBlob() []byte {
  1955. if x != nil {
  1956. return x.NeedleBlob
  1957. }
  1958. return nil
  1959. }
  1960. type VolumeTailSenderRequest struct {
  1961. state protoimpl.MessageState
  1962. sizeCache protoimpl.SizeCache
  1963. unknownFields protoimpl.UnknownFields
  1964. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  1965. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  1966. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  1967. }
  1968. func (x *VolumeTailSenderRequest) Reset() {
  1969. *x = VolumeTailSenderRequest{}
  1970. if protoimpl.UnsafeEnabled {
  1971. mi := &file_volume_server_proto_msgTypes[44]
  1972. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1973. ms.StoreMessageInfo(mi)
  1974. }
  1975. }
  1976. func (x *VolumeTailSenderRequest) String() string {
  1977. return protoimpl.X.MessageStringOf(x)
  1978. }
  1979. func (*VolumeTailSenderRequest) ProtoMessage() {}
  1980. func (x *VolumeTailSenderRequest) ProtoReflect() protoreflect.Message {
  1981. mi := &file_volume_server_proto_msgTypes[44]
  1982. if protoimpl.UnsafeEnabled && x != nil {
  1983. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1984. if ms.LoadMessageInfo() == nil {
  1985. ms.StoreMessageInfo(mi)
  1986. }
  1987. return ms
  1988. }
  1989. return mi.MessageOf(x)
  1990. }
  1991. // Deprecated: Use VolumeTailSenderRequest.ProtoReflect.Descriptor instead.
  1992. func (*VolumeTailSenderRequest) Descriptor() ([]byte, []int) {
  1993. return file_volume_server_proto_rawDescGZIP(), []int{44}
  1994. }
  1995. func (x *VolumeTailSenderRequest) GetVolumeId() uint32 {
  1996. if x != nil {
  1997. return x.VolumeId
  1998. }
  1999. return 0
  2000. }
  2001. func (x *VolumeTailSenderRequest) GetSinceNs() uint64 {
  2002. if x != nil {
  2003. return x.SinceNs
  2004. }
  2005. return 0
  2006. }
  2007. func (x *VolumeTailSenderRequest) GetIdleTimeoutSeconds() uint32 {
  2008. if x != nil {
  2009. return x.IdleTimeoutSeconds
  2010. }
  2011. return 0
  2012. }
  2013. type VolumeTailSenderResponse struct {
  2014. state protoimpl.MessageState
  2015. sizeCache protoimpl.SizeCache
  2016. unknownFields protoimpl.UnknownFields
  2017. NeedleHeader []byte `protobuf:"bytes,1,opt,name=needle_header,json=needleHeader,proto3" json:"needle_header,omitempty"`
  2018. NeedleBody []byte `protobuf:"bytes,2,opt,name=needle_body,json=needleBody,proto3" json:"needle_body,omitempty"`
  2019. IsLastChunk bool `protobuf:"varint,3,opt,name=is_last_chunk,json=isLastChunk,proto3" json:"is_last_chunk,omitempty"`
  2020. }
  2021. func (x *VolumeTailSenderResponse) Reset() {
  2022. *x = VolumeTailSenderResponse{}
  2023. if protoimpl.UnsafeEnabled {
  2024. mi := &file_volume_server_proto_msgTypes[45]
  2025. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2026. ms.StoreMessageInfo(mi)
  2027. }
  2028. }
  2029. func (x *VolumeTailSenderResponse) String() string {
  2030. return protoimpl.X.MessageStringOf(x)
  2031. }
  2032. func (*VolumeTailSenderResponse) ProtoMessage() {}
  2033. func (x *VolumeTailSenderResponse) ProtoReflect() protoreflect.Message {
  2034. mi := &file_volume_server_proto_msgTypes[45]
  2035. if protoimpl.UnsafeEnabled && x != nil {
  2036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2037. if ms.LoadMessageInfo() == nil {
  2038. ms.StoreMessageInfo(mi)
  2039. }
  2040. return ms
  2041. }
  2042. return mi.MessageOf(x)
  2043. }
  2044. // Deprecated: Use VolumeTailSenderResponse.ProtoReflect.Descriptor instead.
  2045. func (*VolumeTailSenderResponse) Descriptor() ([]byte, []int) {
  2046. return file_volume_server_proto_rawDescGZIP(), []int{45}
  2047. }
  2048. func (x *VolumeTailSenderResponse) GetNeedleHeader() []byte {
  2049. if x != nil {
  2050. return x.NeedleHeader
  2051. }
  2052. return nil
  2053. }
  2054. func (x *VolumeTailSenderResponse) GetNeedleBody() []byte {
  2055. if x != nil {
  2056. return x.NeedleBody
  2057. }
  2058. return nil
  2059. }
  2060. func (x *VolumeTailSenderResponse) GetIsLastChunk() bool {
  2061. if x != nil {
  2062. return x.IsLastChunk
  2063. }
  2064. return false
  2065. }
  2066. type VolumeTailReceiverRequest struct {
  2067. state protoimpl.MessageState
  2068. sizeCache protoimpl.SizeCache
  2069. unknownFields protoimpl.UnknownFields
  2070. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2071. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2072. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds,proto3" json:"idle_timeout_seconds,omitempty"`
  2073. SourceVolumeServer string `protobuf:"bytes,4,opt,name=source_volume_server,json=sourceVolumeServer,proto3" json:"source_volume_server,omitempty"`
  2074. }
  2075. func (x *VolumeTailReceiverRequest) Reset() {
  2076. *x = VolumeTailReceiverRequest{}
  2077. if protoimpl.UnsafeEnabled {
  2078. mi := &file_volume_server_proto_msgTypes[46]
  2079. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2080. ms.StoreMessageInfo(mi)
  2081. }
  2082. }
  2083. func (x *VolumeTailReceiverRequest) String() string {
  2084. return protoimpl.X.MessageStringOf(x)
  2085. }
  2086. func (*VolumeTailReceiverRequest) ProtoMessage() {}
  2087. func (x *VolumeTailReceiverRequest) ProtoReflect() protoreflect.Message {
  2088. mi := &file_volume_server_proto_msgTypes[46]
  2089. if protoimpl.UnsafeEnabled && x != nil {
  2090. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2091. if ms.LoadMessageInfo() == nil {
  2092. ms.StoreMessageInfo(mi)
  2093. }
  2094. return ms
  2095. }
  2096. return mi.MessageOf(x)
  2097. }
  2098. // Deprecated: Use VolumeTailReceiverRequest.ProtoReflect.Descriptor instead.
  2099. func (*VolumeTailReceiverRequest) Descriptor() ([]byte, []int) {
  2100. return file_volume_server_proto_rawDescGZIP(), []int{46}
  2101. }
  2102. func (x *VolumeTailReceiverRequest) GetVolumeId() uint32 {
  2103. if x != nil {
  2104. return x.VolumeId
  2105. }
  2106. return 0
  2107. }
  2108. func (x *VolumeTailReceiverRequest) GetSinceNs() uint64 {
  2109. if x != nil {
  2110. return x.SinceNs
  2111. }
  2112. return 0
  2113. }
  2114. func (x *VolumeTailReceiverRequest) GetIdleTimeoutSeconds() uint32 {
  2115. if x != nil {
  2116. return x.IdleTimeoutSeconds
  2117. }
  2118. return 0
  2119. }
  2120. func (x *VolumeTailReceiverRequest) GetSourceVolumeServer() string {
  2121. if x != nil {
  2122. return x.SourceVolumeServer
  2123. }
  2124. return ""
  2125. }
  2126. type VolumeTailReceiverResponse struct {
  2127. state protoimpl.MessageState
  2128. sizeCache protoimpl.SizeCache
  2129. unknownFields protoimpl.UnknownFields
  2130. }
  2131. func (x *VolumeTailReceiverResponse) Reset() {
  2132. *x = VolumeTailReceiverResponse{}
  2133. if protoimpl.UnsafeEnabled {
  2134. mi := &file_volume_server_proto_msgTypes[47]
  2135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2136. ms.StoreMessageInfo(mi)
  2137. }
  2138. }
  2139. func (x *VolumeTailReceiverResponse) String() string {
  2140. return protoimpl.X.MessageStringOf(x)
  2141. }
  2142. func (*VolumeTailReceiverResponse) ProtoMessage() {}
  2143. func (x *VolumeTailReceiverResponse) ProtoReflect() protoreflect.Message {
  2144. mi := &file_volume_server_proto_msgTypes[47]
  2145. if protoimpl.UnsafeEnabled && x != nil {
  2146. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2147. if ms.LoadMessageInfo() == nil {
  2148. ms.StoreMessageInfo(mi)
  2149. }
  2150. return ms
  2151. }
  2152. return mi.MessageOf(x)
  2153. }
  2154. // Deprecated: Use VolumeTailReceiverResponse.ProtoReflect.Descriptor instead.
  2155. func (*VolumeTailReceiverResponse) Descriptor() ([]byte, []int) {
  2156. return file_volume_server_proto_rawDescGZIP(), []int{47}
  2157. }
  2158. type VolumeEcShardsGenerateRequest struct {
  2159. state protoimpl.MessageState
  2160. sizeCache protoimpl.SizeCache
  2161. unknownFields protoimpl.UnknownFields
  2162. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2163. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2164. }
  2165. func (x *VolumeEcShardsGenerateRequest) Reset() {
  2166. *x = VolumeEcShardsGenerateRequest{}
  2167. if protoimpl.UnsafeEnabled {
  2168. mi := &file_volume_server_proto_msgTypes[48]
  2169. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2170. ms.StoreMessageInfo(mi)
  2171. }
  2172. }
  2173. func (x *VolumeEcShardsGenerateRequest) String() string {
  2174. return protoimpl.X.MessageStringOf(x)
  2175. }
  2176. func (*VolumeEcShardsGenerateRequest) ProtoMessage() {}
  2177. func (x *VolumeEcShardsGenerateRequest) ProtoReflect() protoreflect.Message {
  2178. mi := &file_volume_server_proto_msgTypes[48]
  2179. if protoimpl.UnsafeEnabled && x != nil {
  2180. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2181. if ms.LoadMessageInfo() == nil {
  2182. ms.StoreMessageInfo(mi)
  2183. }
  2184. return ms
  2185. }
  2186. return mi.MessageOf(x)
  2187. }
  2188. // Deprecated: Use VolumeEcShardsGenerateRequest.ProtoReflect.Descriptor instead.
  2189. func (*VolumeEcShardsGenerateRequest) Descriptor() ([]byte, []int) {
  2190. return file_volume_server_proto_rawDescGZIP(), []int{48}
  2191. }
  2192. func (x *VolumeEcShardsGenerateRequest) GetVolumeId() uint32 {
  2193. if x != nil {
  2194. return x.VolumeId
  2195. }
  2196. return 0
  2197. }
  2198. func (x *VolumeEcShardsGenerateRequest) GetCollection() string {
  2199. if x != nil {
  2200. return x.Collection
  2201. }
  2202. return ""
  2203. }
  2204. type VolumeEcShardsGenerateResponse struct {
  2205. state protoimpl.MessageState
  2206. sizeCache protoimpl.SizeCache
  2207. unknownFields protoimpl.UnknownFields
  2208. }
  2209. func (x *VolumeEcShardsGenerateResponse) Reset() {
  2210. *x = VolumeEcShardsGenerateResponse{}
  2211. if protoimpl.UnsafeEnabled {
  2212. mi := &file_volume_server_proto_msgTypes[49]
  2213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2214. ms.StoreMessageInfo(mi)
  2215. }
  2216. }
  2217. func (x *VolumeEcShardsGenerateResponse) String() string {
  2218. return protoimpl.X.MessageStringOf(x)
  2219. }
  2220. func (*VolumeEcShardsGenerateResponse) ProtoMessage() {}
  2221. func (x *VolumeEcShardsGenerateResponse) ProtoReflect() protoreflect.Message {
  2222. mi := &file_volume_server_proto_msgTypes[49]
  2223. if protoimpl.UnsafeEnabled && x != nil {
  2224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2225. if ms.LoadMessageInfo() == nil {
  2226. ms.StoreMessageInfo(mi)
  2227. }
  2228. return ms
  2229. }
  2230. return mi.MessageOf(x)
  2231. }
  2232. // Deprecated: Use VolumeEcShardsGenerateResponse.ProtoReflect.Descriptor instead.
  2233. func (*VolumeEcShardsGenerateResponse) Descriptor() ([]byte, []int) {
  2234. return file_volume_server_proto_rawDescGZIP(), []int{49}
  2235. }
  2236. type VolumeEcShardsRebuildRequest struct {
  2237. state protoimpl.MessageState
  2238. sizeCache protoimpl.SizeCache
  2239. unknownFields protoimpl.UnknownFields
  2240. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2241. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2242. }
  2243. func (x *VolumeEcShardsRebuildRequest) Reset() {
  2244. *x = VolumeEcShardsRebuildRequest{}
  2245. if protoimpl.UnsafeEnabled {
  2246. mi := &file_volume_server_proto_msgTypes[50]
  2247. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2248. ms.StoreMessageInfo(mi)
  2249. }
  2250. }
  2251. func (x *VolumeEcShardsRebuildRequest) String() string {
  2252. return protoimpl.X.MessageStringOf(x)
  2253. }
  2254. func (*VolumeEcShardsRebuildRequest) ProtoMessage() {}
  2255. func (x *VolumeEcShardsRebuildRequest) ProtoReflect() protoreflect.Message {
  2256. mi := &file_volume_server_proto_msgTypes[50]
  2257. if protoimpl.UnsafeEnabled && x != nil {
  2258. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2259. if ms.LoadMessageInfo() == nil {
  2260. ms.StoreMessageInfo(mi)
  2261. }
  2262. return ms
  2263. }
  2264. return mi.MessageOf(x)
  2265. }
  2266. // Deprecated: Use VolumeEcShardsRebuildRequest.ProtoReflect.Descriptor instead.
  2267. func (*VolumeEcShardsRebuildRequest) Descriptor() ([]byte, []int) {
  2268. return file_volume_server_proto_rawDescGZIP(), []int{50}
  2269. }
  2270. func (x *VolumeEcShardsRebuildRequest) GetVolumeId() uint32 {
  2271. if x != nil {
  2272. return x.VolumeId
  2273. }
  2274. return 0
  2275. }
  2276. func (x *VolumeEcShardsRebuildRequest) GetCollection() string {
  2277. if x != nil {
  2278. return x.Collection
  2279. }
  2280. return ""
  2281. }
  2282. type VolumeEcShardsRebuildResponse struct {
  2283. state protoimpl.MessageState
  2284. sizeCache protoimpl.SizeCache
  2285. unknownFields protoimpl.UnknownFields
  2286. RebuiltShardIds []uint32 `protobuf:"varint,1,rep,packed,name=rebuilt_shard_ids,json=rebuiltShardIds,proto3" json:"rebuilt_shard_ids,omitempty"`
  2287. }
  2288. func (x *VolumeEcShardsRebuildResponse) Reset() {
  2289. *x = VolumeEcShardsRebuildResponse{}
  2290. if protoimpl.UnsafeEnabled {
  2291. mi := &file_volume_server_proto_msgTypes[51]
  2292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2293. ms.StoreMessageInfo(mi)
  2294. }
  2295. }
  2296. func (x *VolumeEcShardsRebuildResponse) String() string {
  2297. return protoimpl.X.MessageStringOf(x)
  2298. }
  2299. func (*VolumeEcShardsRebuildResponse) ProtoMessage() {}
  2300. func (x *VolumeEcShardsRebuildResponse) ProtoReflect() protoreflect.Message {
  2301. mi := &file_volume_server_proto_msgTypes[51]
  2302. if protoimpl.UnsafeEnabled && x != nil {
  2303. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2304. if ms.LoadMessageInfo() == nil {
  2305. ms.StoreMessageInfo(mi)
  2306. }
  2307. return ms
  2308. }
  2309. return mi.MessageOf(x)
  2310. }
  2311. // Deprecated: Use VolumeEcShardsRebuildResponse.ProtoReflect.Descriptor instead.
  2312. func (*VolumeEcShardsRebuildResponse) Descriptor() ([]byte, []int) {
  2313. return file_volume_server_proto_rawDescGZIP(), []int{51}
  2314. }
  2315. func (x *VolumeEcShardsRebuildResponse) GetRebuiltShardIds() []uint32 {
  2316. if x != nil {
  2317. return x.RebuiltShardIds
  2318. }
  2319. return nil
  2320. }
  2321. type VolumeEcShardsCopyRequest struct {
  2322. state protoimpl.MessageState
  2323. sizeCache protoimpl.SizeCache
  2324. unknownFields protoimpl.UnknownFields
  2325. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2326. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2327. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2328. CopyEcxFile bool `protobuf:"varint,4,opt,name=copy_ecx_file,json=copyEcxFile,proto3" json:"copy_ecx_file,omitempty"`
  2329. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode,proto3" json:"source_data_node,omitempty"`
  2330. CopyEcjFile bool `protobuf:"varint,6,opt,name=copy_ecj_file,json=copyEcjFile,proto3" json:"copy_ecj_file,omitempty"`
  2331. CopyVifFile bool `protobuf:"varint,7,opt,name=copy_vif_file,json=copyVifFile,proto3" json:"copy_vif_file,omitempty"`
  2332. }
  2333. func (x *VolumeEcShardsCopyRequest) Reset() {
  2334. *x = VolumeEcShardsCopyRequest{}
  2335. if protoimpl.UnsafeEnabled {
  2336. mi := &file_volume_server_proto_msgTypes[52]
  2337. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2338. ms.StoreMessageInfo(mi)
  2339. }
  2340. }
  2341. func (x *VolumeEcShardsCopyRequest) String() string {
  2342. return protoimpl.X.MessageStringOf(x)
  2343. }
  2344. func (*VolumeEcShardsCopyRequest) ProtoMessage() {}
  2345. func (x *VolumeEcShardsCopyRequest) ProtoReflect() protoreflect.Message {
  2346. mi := &file_volume_server_proto_msgTypes[52]
  2347. if protoimpl.UnsafeEnabled && x != nil {
  2348. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2349. if ms.LoadMessageInfo() == nil {
  2350. ms.StoreMessageInfo(mi)
  2351. }
  2352. return ms
  2353. }
  2354. return mi.MessageOf(x)
  2355. }
  2356. // Deprecated: Use VolumeEcShardsCopyRequest.ProtoReflect.Descriptor instead.
  2357. func (*VolumeEcShardsCopyRequest) Descriptor() ([]byte, []int) {
  2358. return file_volume_server_proto_rawDescGZIP(), []int{52}
  2359. }
  2360. func (x *VolumeEcShardsCopyRequest) GetVolumeId() uint32 {
  2361. if x != nil {
  2362. return x.VolumeId
  2363. }
  2364. return 0
  2365. }
  2366. func (x *VolumeEcShardsCopyRequest) GetCollection() string {
  2367. if x != nil {
  2368. return x.Collection
  2369. }
  2370. return ""
  2371. }
  2372. func (x *VolumeEcShardsCopyRequest) GetShardIds() []uint32 {
  2373. if x != nil {
  2374. return x.ShardIds
  2375. }
  2376. return nil
  2377. }
  2378. func (x *VolumeEcShardsCopyRequest) GetCopyEcxFile() bool {
  2379. if x != nil {
  2380. return x.CopyEcxFile
  2381. }
  2382. return false
  2383. }
  2384. func (x *VolumeEcShardsCopyRequest) GetSourceDataNode() string {
  2385. if x != nil {
  2386. return x.SourceDataNode
  2387. }
  2388. return ""
  2389. }
  2390. func (x *VolumeEcShardsCopyRequest) GetCopyEcjFile() bool {
  2391. if x != nil {
  2392. return x.CopyEcjFile
  2393. }
  2394. return false
  2395. }
  2396. func (x *VolumeEcShardsCopyRequest) GetCopyVifFile() bool {
  2397. if x != nil {
  2398. return x.CopyVifFile
  2399. }
  2400. return false
  2401. }
  2402. type VolumeEcShardsCopyResponse struct {
  2403. state protoimpl.MessageState
  2404. sizeCache protoimpl.SizeCache
  2405. unknownFields protoimpl.UnknownFields
  2406. }
  2407. func (x *VolumeEcShardsCopyResponse) Reset() {
  2408. *x = VolumeEcShardsCopyResponse{}
  2409. if protoimpl.UnsafeEnabled {
  2410. mi := &file_volume_server_proto_msgTypes[53]
  2411. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2412. ms.StoreMessageInfo(mi)
  2413. }
  2414. }
  2415. func (x *VolumeEcShardsCopyResponse) String() string {
  2416. return protoimpl.X.MessageStringOf(x)
  2417. }
  2418. func (*VolumeEcShardsCopyResponse) ProtoMessage() {}
  2419. func (x *VolumeEcShardsCopyResponse) ProtoReflect() protoreflect.Message {
  2420. mi := &file_volume_server_proto_msgTypes[53]
  2421. if protoimpl.UnsafeEnabled && x != nil {
  2422. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2423. if ms.LoadMessageInfo() == nil {
  2424. ms.StoreMessageInfo(mi)
  2425. }
  2426. return ms
  2427. }
  2428. return mi.MessageOf(x)
  2429. }
  2430. // Deprecated: Use VolumeEcShardsCopyResponse.ProtoReflect.Descriptor instead.
  2431. func (*VolumeEcShardsCopyResponse) Descriptor() ([]byte, []int) {
  2432. return file_volume_server_proto_rawDescGZIP(), []int{53}
  2433. }
  2434. type VolumeEcShardsDeleteRequest struct {
  2435. state protoimpl.MessageState
  2436. sizeCache protoimpl.SizeCache
  2437. unknownFields protoimpl.UnknownFields
  2438. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2439. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2440. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2441. }
  2442. func (x *VolumeEcShardsDeleteRequest) Reset() {
  2443. *x = VolumeEcShardsDeleteRequest{}
  2444. if protoimpl.UnsafeEnabled {
  2445. mi := &file_volume_server_proto_msgTypes[54]
  2446. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2447. ms.StoreMessageInfo(mi)
  2448. }
  2449. }
  2450. func (x *VolumeEcShardsDeleteRequest) String() string {
  2451. return protoimpl.X.MessageStringOf(x)
  2452. }
  2453. func (*VolumeEcShardsDeleteRequest) ProtoMessage() {}
  2454. func (x *VolumeEcShardsDeleteRequest) ProtoReflect() protoreflect.Message {
  2455. mi := &file_volume_server_proto_msgTypes[54]
  2456. if protoimpl.UnsafeEnabled && x != nil {
  2457. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2458. if ms.LoadMessageInfo() == nil {
  2459. ms.StoreMessageInfo(mi)
  2460. }
  2461. return ms
  2462. }
  2463. return mi.MessageOf(x)
  2464. }
  2465. // Deprecated: Use VolumeEcShardsDeleteRequest.ProtoReflect.Descriptor instead.
  2466. func (*VolumeEcShardsDeleteRequest) Descriptor() ([]byte, []int) {
  2467. return file_volume_server_proto_rawDescGZIP(), []int{54}
  2468. }
  2469. func (x *VolumeEcShardsDeleteRequest) GetVolumeId() uint32 {
  2470. if x != nil {
  2471. return x.VolumeId
  2472. }
  2473. return 0
  2474. }
  2475. func (x *VolumeEcShardsDeleteRequest) GetCollection() string {
  2476. if x != nil {
  2477. return x.Collection
  2478. }
  2479. return ""
  2480. }
  2481. func (x *VolumeEcShardsDeleteRequest) GetShardIds() []uint32 {
  2482. if x != nil {
  2483. return x.ShardIds
  2484. }
  2485. return nil
  2486. }
  2487. type VolumeEcShardsDeleteResponse struct {
  2488. state protoimpl.MessageState
  2489. sizeCache protoimpl.SizeCache
  2490. unknownFields protoimpl.UnknownFields
  2491. }
  2492. func (x *VolumeEcShardsDeleteResponse) Reset() {
  2493. *x = VolumeEcShardsDeleteResponse{}
  2494. if protoimpl.UnsafeEnabled {
  2495. mi := &file_volume_server_proto_msgTypes[55]
  2496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2497. ms.StoreMessageInfo(mi)
  2498. }
  2499. }
  2500. func (x *VolumeEcShardsDeleteResponse) String() string {
  2501. return protoimpl.X.MessageStringOf(x)
  2502. }
  2503. func (*VolumeEcShardsDeleteResponse) ProtoMessage() {}
  2504. func (x *VolumeEcShardsDeleteResponse) ProtoReflect() protoreflect.Message {
  2505. mi := &file_volume_server_proto_msgTypes[55]
  2506. if protoimpl.UnsafeEnabled && x != nil {
  2507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2508. if ms.LoadMessageInfo() == nil {
  2509. ms.StoreMessageInfo(mi)
  2510. }
  2511. return ms
  2512. }
  2513. return mi.MessageOf(x)
  2514. }
  2515. // Deprecated: Use VolumeEcShardsDeleteResponse.ProtoReflect.Descriptor instead.
  2516. func (*VolumeEcShardsDeleteResponse) Descriptor() ([]byte, []int) {
  2517. return file_volume_server_proto_rawDescGZIP(), []int{55}
  2518. }
  2519. type VolumeEcShardsMountRequest struct {
  2520. state protoimpl.MessageState
  2521. sizeCache protoimpl.SizeCache
  2522. unknownFields protoimpl.UnknownFields
  2523. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2524. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2525. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2526. }
  2527. func (x *VolumeEcShardsMountRequest) Reset() {
  2528. *x = VolumeEcShardsMountRequest{}
  2529. if protoimpl.UnsafeEnabled {
  2530. mi := &file_volume_server_proto_msgTypes[56]
  2531. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2532. ms.StoreMessageInfo(mi)
  2533. }
  2534. }
  2535. func (x *VolumeEcShardsMountRequest) String() string {
  2536. return protoimpl.X.MessageStringOf(x)
  2537. }
  2538. func (*VolumeEcShardsMountRequest) ProtoMessage() {}
  2539. func (x *VolumeEcShardsMountRequest) ProtoReflect() protoreflect.Message {
  2540. mi := &file_volume_server_proto_msgTypes[56]
  2541. if protoimpl.UnsafeEnabled && x != nil {
  2542. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2543. if ms.LoadMessageInfo() == nil {
  2544. ms.StoreMessageInfo(mi)
  2545. }
  2546. return ms
  2547. }
  2548. return mi.MessageOf(x)
  2549. }
  2550. // Deprecated: Use VolumeEcShardsMountRequest.ProtoReflect.Descriptor instead.
  2551. func (*VolumeEcShardsMountRequest) Descriptor() ([]byte, []int) {
  2552. return file_volume_server_proto_rawDescGZIP(), []int{56}
  2553. }
  2554. func (x *VolumeEcShardsMountRequest) GetVolumeId() uint32 {
  2555. if x != nil {
  2556. return x.VolumeId
  2557. }
  2558. return 0
  2559. }
  2560. func (x *VolumeEcShardsMountRequest) GetCollection() string {
  2561. if x != nil {
  2562. return x.Collection
  2563. }
  2564. return ""
  2565. }
  2566. func (x *VolumeEcShardsMountRequest) GetShardIds() []uint32 {
  2567. if x != nil {
  2568. return x.ShardIds
  2569. }
  2570. return nil
  2571. }
  2572. type VolumeEcShardsMountResponse struct {
  2573. state protoimpl.MessageState
  2574. sizeCache protoimpl.SizeCache
  2575. unknownFields protoimpl.UnknownFields
  2576. }
  2577. func (x *VolumeEcShardsMountResponse) Reset() {
  2578. *x = VolumeEcShardsMountResponse{}
  2579. if protoimpl.UnsafeEnabled {
  2580. mi := &file_volume_server_proto_msgTypes[57]
  2581. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2582. ms.StoreMessageInfo(mi)
  2583. }
  2584. }
  2585. func (x *VolumeEcShardsMountResponse) String() string {
  2586. return protoimpl.X.MessageStringOf(x)
  2587. }
  2588. func (*VolumeEcShardsMountResponse) ProtoMessage() {}
  2589. func (x *VolumeEcShardsMountResponse) ProtoReflect() protoreflect.Message {
  2590. mi := &file_volume_server_proto_msgTypes[57]
  2591. if protoimpl.UnsafeEnabled && x != nil {
  2592. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2593. if ms.LoadMessageInfo() == nil {
  2594. ms.StoreMessageInfo(mi)
  2595. }
  2596. return ms
  2597. }
  2598. return mi.MessageOf(x)
  2599. }
  2600. // Deprecated: Use VolumeEcShardsMountResponse.ProtoReflect.Descriptor instead.
  2601. func (*VolumeEcShardsMountResponse) Descriptor() ([]byte, []int) {
  2602. return file_volume_server_proto_rawDescGZIP(), []int{57}
  2603. }
  2604. type VolumeEcShardsUnmountRequest struct {
  2605. state protoimpl.MessageState
  2606. sizeCache protoimpl.SizeCache
  2607. unknownFields protoimpl.UnknownFields
  2608. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2609. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds,proto3" json:"shard_ids,omitempty"`
  2610. }
  2611. func (x *VolumeEcShardsUnmountRequest) Reset() {
  2612. *x = VolumeEcShardsUnmountRequest{}
  2613. if protoimpl.UnsafeEnabled {
  2614. mi := &file_volume_server_proto_msgTypes[58]
  2615. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2616. ms.StoreMessageInfo(mi)
  2617. }
  2618. }
  2619. func (x *VolumeEcShardsUnmountRequest) String() string {
  2620. return protoimpl.X.MessageStringOf(x)
  2621. }
  2622. func (*VolumeEcShardsUnmountRequest) ProtoMessage() {}
  2623. func (x *VolumeEcShardsUnmountRequest) ProtoReflect() protoreflect.Message {
  2624. mi := &file_volume_server_proto_msgTypes[58]
  2625. if protoimpl.UnsafeEnabled && x != nil {
  2626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2627. if ms.LoadMessageInfo() == nil {
  2628. ms.StoreMessageInfo(mi)
  2629. }
  2630. return ms
  2631. }
  2632. return mi.MessageOf(x)
  2633. }
  2634. // Deprecated: Use VolumeEcShardsUnmountRequest.ProtoReflect.Descriptor instead.
  2635. func (*VolumeEcShardsUnmountRequest) Descriptor() ([]byte, []int) {
  2636. return file_volume_server_proto_rawDescGZIP(), []int{58}
  2637. }
  2638. func (x *VolumeEcShardsUnmountRequest) GetVolumeId() uint32 {
  2639. if x != nil {
  2640. return x.VolumeId
  2641. }
  2642. return 0
  2643. }
  2644. func (x *VolumeEcShardsUnmountRequest) GetShardIds() []uint32 {
  2645. if x != nil {
  2646. return x.ShardIds
  2647. }
  2648. return nil
  2649. }
  2650. type VolumeEcShardsUnmountResponse struct {
  2651. state protoimpl.MessageState
  2652. sizeCache protoimpl.SizeCache
  2653. unknownFields protoimpl.UnknownFields
  2654. }
  2655. func (x *VolumeEcShardsUnmountResponse) Reset() {
  2656. *x = VolumeEcShardsUnmountResponse{}
  2657. if protoimpl.UnsafeEnabled {
  2658. mi := &file_volume_server_proto_msgTypes[59]
  2659. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2660. ms.StoreMessageInfo(mi)
  2661. }
  2662. }
  2663. func (x *VolumeEcShardsUnmountResponse) String() string {
  2664. return protoimpl.X.MessageStringOf(x)
  2665. }
  2666. func (*VolumeEcShardsUnmountResponse) ProtoMessage() {}
  2667. func (x *VolumeEcShardsUnmountResponse) ProtoReflect() protoreflect.Message {
  2668. mi := &file_volume_server_proto_msgTypes[59]
  2669. if protoimpl.UnsafeEnabled && x != nil {
  2670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2671. if ms.LoadMessageInfo() == nil {
  2672. ms.StoreMessageInfo(mi)
  2673. }
  2674. return ms
  2675. }
  2676. return mi.MessageOf(x)
  2677. }
  2678. // Deprecated: Use VolumeEcShardsUnmountResponse.ProtoReflect.Descriptor instead.
  2679. func (*VolumeEcShardsUnmountResponse) Descriptor() ([]byte, []int) {
  2680. return file_volume_server_proto_rawDescGZIP(), []int{59}
  2681. }
  2682. type VolumeEcShardReadRequest struct {
  2683. state protoimpl.MessageState
  2684. sizeCache protoimpl.SizeCache
  2685. unknownFields protoimpl.UnknownFields
  2686. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2687. ShardId uint32 `protobuf:"varint,2,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"`
  2688. Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
  2689. Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
  2690. FileKey uint64 `protobuf:"varint,5,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2691. }
  2692. func (x *VolumeEcShardReadRequest) Reset() {
  2693. *x = VolumeEcShardReadRequest{}
  2694. if protoimpl.UnsafeEnabled {
  2695. mi := &file_volume_server_proto_msgTypes[60]
  2696. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2697. ms.StoreMessageInfo(mi)
  2698. }
  2699. }
  2700. func (x *VolumeEcShardReadRequest) String() string {
  2701. return protoimpl.X.MessageStringOf(x)
  2702. }
  2703. func (*VolumeEcShardReadRequest) ProtoMessage() {}
  2704. func (x *VolumeEcShardReadRequest) ProtoReflect() protoreflect.Message {
  2705. mi := &file_volume_server_proto_msgTypes[60]
  2706. if protoimpl.UnsafeEnabled && x != nil {
  2707. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2708. if ms.LoadMessageInfo() == nil {
  2709. ms.StoreMessageInfo(mi)
  2710. }
  2711. return ms
  2712. }
  2713. return mi.MessageOf(x)
  2714. }
  2715. // Deprecated: Use VolumeEcShardReadRequest.ProtoReflect.Descriptor instead.
  2716. func (*VolumeEcShardReadRequest) Descriptor() ([]byte, []int) {
  2717. return file_volume_server_proto_rawDescGZIP(), []int{60}
  2718. }
  2719. func (x *VolumeEcShardReadRequest) GetVolumeId() uint32 {
  2720. if x != nil {
  2721. return x.VolumeId
  2722. }
  2723. return 0
  2724. }
  2725. func (x *VolumeEcShardReadRequest) GetShardId() uint32 {
  2726. if x != nil {
  2727. return x.ShardId
  2728. }
  2729. return 0
  2730. }
  2731. func (x *VolumeEcShardReadRequest) GetOffset() int64 {
  2732. if x != nil {
  2733. return x.Offset
  2734. }
  2735. return 0
  2736. }
  2737. func (x *VolumeEcShardReadRequest) GetSize() int64 {
  2738. if x != nil {
  2739. return x.Size
  2740. }
  2741. return 0
  2742. }
  2743. func (x *VolumeEcShardReadRequest) GetFileKey() uint64 {
  2744. if x != nil {
  2745. return x.FileKey
  2746. }
  2747. return 0
  2748. }
  2749. type VolumeEcShardReadResponse struct {
  2750. state protoimpl.MessageState
  2751. sizeCache protoimpl.SizeCache
  2752. unknownFields protoimpl.UnknownFields
  2753. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  2754. IsDeleted bool `protobuf:"varint,2,opt,name=is_deleted,json=isDeleted,proto3" json:"is_deleted,omitempty"`
  2755. }
  2756. func (x *VolumeEcShardReadResponse) Reset() {
  2757. *x = VolumeEcShardReadResponse{}
  2758. if protoimpl.UnsafeEnabled {
  2759. mi := &file_volume_server_proto_msgTypes[61]
  2760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2761. ms.StoreMessageInfo(mi)
  2762. }
  2763. }
  2764. func (x *VolumeEcShardReadResponse) String() string {
  2765. return protoimpl.X.MessageStringOf(x)
  2766. }
  2767. func (*VolumeEcShardReadResponse) ProtoMessage() {}
  2768. func (x *VolumeEcShardReadResponse) ProtoReflect() protoreflect.Message {
  2769. mi := &file_volume_server_proto_msgTypes[61]
  2770. if protoimpl.UnsafeEnabled && x != nil {
  2771. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2772. if ms.LoadMessageInfo() == nil {
  2773. ms.StoreMessageInfo(mi)
  2774. }
  2775. return ms
  2776. }
  2777. return mi.MessageOf(x)
  2778. }
  2779. // Deprecated: Use VolumeEcShardReadResponse.ProtoReflect.Descriptor instead.
  2780. func (*VolumeEcShardReadResponse) Descriptor() ([]byte, []int) {
  2781. return file_volume_server_proto_rawDescGZIP(), []int{61}
  2782. }
  2783. func (x *VolumeEcShardReadResponse) GetData() []byte {
  2784. if x != nil {
  2785. return x.Data
  2786. }
  2787. return nil
  2788. }
  2789. func (x *VolumeEcShardReadResponse) GetIsDeleted() bool {
  2790. if x != nil {
  2791. return x.IsDeleted
  2792. }
  2793. return false
  2794. }
  2795. type VolumeEcBlobDeleteRequest struct {
  2796. state protoimpl.MessageState
  2797. sizeCache protoimpl.SizeCache
  2798. unknownFields protoimpl.UnknownFields
  2799. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2800. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2801. FileKey uint64 `protobuf:"varint,3,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  2802. Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
  2803. }
  2804. func (x *VolumeEcBlobDeleteRequest) Reset() {
  2805. *x = VolumeEcBlobDeleteRequest{}
  2806. if protoimpl.UnsafeEnabled {
  2807. mi := &file_volume_server_proto_msgTypes[62]
  2808. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2809. ms.StoreMessageInfo(mi)
  2810. }
  2811. }
  2812. func (x *VolumeEcBlobDeleteRequest) String() string {
  2813. return protoimpl.X.MessageStringOf(x)
  2814. }
  2815. func (*VolumeEcBlobDeleteRequest) ProtoMessage() {}
  2816. func (x *VolumeEcBlobDeleteRequest) ProtoReflect() protoreflect.Message {
  2817. mi := &file_volume_server_proto_msgTypes[62]
  2818. if protoimpl.UnsafeEnabled && x != nil {
  2819. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2820. if ms.LoadMessageInfo() == nil {
  2821. ms.StoreMessageInfo(mi)
  2822. }
  2823. return ms
  2824. }
  2825. return mi.MessageOf(x)
  2826. }
  2827. // Deprecated: Use VolumeEcBlobDeleteRequest.ProtoReflect.Descriptor instead.
  2828. func (*VolumeEcBlobDeleteRequest) Descriptor() ([]byte, []int) {
  2829. return file_volume_server_proto_rawDescGZIP(), []int{62}
  2830. }
  2831. func (x *VolumeEcBlobDeleteRequest) GetVolumeId() uint32 {
  2832. if x != nil {
  2833. return x.VolumeId
  2834. }
  2835. return 0
  2836. }
  2837. func (x *VolumeEcBlobDeleteRequest) GetCollection() string {
  2838. if x != nil {
  2839. return x.Collection
  2840. }
  2841. return ""
  2842. }
  2843. func (x *VolumeEcBlobDeleteRequest) GetFileKey() uint64 {
  2844. if x != nil {
  2845. return x.FileKey
  2846. }
  2847. return 0
  2848. }
  2849. func (x *VolumeEcBlobDeleteRequest) GetVersion() uint32 {
  2850. if x != nil {
  2851. return x.Version
  2852. }
  2853. return 0
  2854. }
  2855. type VolumeEcBlobDeleteResponse struct {
  2856. state protoimpl.MessageState
  2857. sizeCache protoimpl.SizeCache
  2858. unknownFields protoimpl.UnknownFields
  2859. }
  2860. func (x *VolumeEcBlobDeleteResponse) Reset() {
  2861. *x = VolumeEcBlobDeleteResponse{}
  2862. if protoimpl.UnsafeEnabled {
  2863. mi := &file_volume_server_proto_msgTypes[63]
  2864. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2865. ms.StoreMessageInfo(mi)
  2866. }
  2867. }
  2868. func (x *VolumeEcBlobDeleteResponse) String() string {
  2869. return protoimpl.X.MessageStringOf(x)
  2870. }
  2871. func (*VolumeEcBlobDeleteResponse) ProtoMessage() {}
  2872. func (x *VolumeEcBlobDeleteResponse) ProtoReflect() protoreflect.Message {
  2873. mi := &file_volume_server_proto_msgTypes[63]
  2874. if protoimpl.UnsafeEnabled && x != nil {
  2875. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2876. if ms.LoadMessageInfo() == nil {
  2877. ms.StoreMessageInfo(mi)
  2878. }
  2879. return ms
  2880. }
  2881. return mi.MessageOf(x)
  2882. }
  2883. // Deprecated: Use VolumeEcBlobDeleteResponse.ProtoReflect.Descriptor instead.
  2884. func (*VolumeEcBlobDeleteResponse) Descriptor() ([]byte, []int) {
  2885. return file_volume_server_proto_rawDescGZIP(), []int{63}
  2886. }
  2887. type VolumeEcShardsToVolumeRequest struct {
  2888. state protoimpl.MessageState
  2889. sizeCache protoimpl.SizeCache
  2890. unknownFields protoimpl.UnknownFields
  2891. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2892. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2893. }
  2894. func (x *VolumeEcShardsToVolumeRequest) Reset() {
  2895. *x = VolumeEcShardsToVolumeRequest{}
  2896. if protoimpl.UnsafeEnabled {
  2897. mi := &file_volume_server_proto_msgTypes[64]
  2898. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2899. ms.StoreMessageInfo(mi)
  2900. }
  2901. }
  2902. func (x *VolumeEcShardsToVolumeRequest) String() string {
  2903. return protoimpl.X.MessageStringOf(x)
  2904. }
  2905. func (*VolumeEcShardsToVolumeRequest) ProtoMessage() {}
  2906. func (x *VolumeEcShardsToVolumeRequest) ProtoReflect() protoreflect.Message {
  2907. mi := &file_volume_server_proto_msgTypes[64]
  2908. if protoimpl.UnsafeEnabled && x != nil {
  2909. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2910. if ms.LoadMessageInfo() == nil {
  2911. ms.StoreMessageInfo(mi)
  2912. }
  2913. return ms
  2914. }
  2915. return mi.MessageOf(x)
  2916. }
  2917. // Deprecated: Use VolumeEcShardsToVolumeRequest.ProtoReflect.Descriptor instead.
  2918. func (*VolumeEcShardsToVolumeRequest) Descriptor() ([]byte, []int) {
  2919. return file_volume_server_proto_rawDescGZIP(), []int{64}
  2920. }
  2921. func (x *VolumeEcShardsToVolumeRequest) GetVolumeId() uint32 {
  2922. if x != nil {
  2923. return x.VolumeId
  2924. }
  2925. return 0
  2926. }
  2927. func (x *VolumeEcShardsToVolumeRequest) GetCollection() string {
  2928. if x != nil {
  2929. return x.Collection
  2930. }
  2931. return ""
  2932. }
  2933. type VolumeEcShardsToVolumeResponse struct {
  2934. state protoimpl.MessageState
  2935. sizeCache protoimpl.SizeCache
  2936. unknownFields protoimpl.UnknownFields
  2937. }
  2938. func (x *VolumeEcShardsToVolumeResponse) Reset() {
  2939. *x = VolumeEcShardsToVolumeResponse{}
  2940. if protoimpl.UnsafeEnabled {
  2941. mi := &file_volume_server_proto_msgTypes[65]
  2942. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2943. ms.StoreMessageInfo(mi)
  2944. }
  2945. }
  2946. func (x *VolumeEcShardsToVolumeResponse) String() string {
  2947. return protoimpl.X.MessageStringOf(x)
  2948. }
  2949. func (*VolumeEcShardsToVolumeResponse) ProtoMessage() {}
  2950. func (x *VolumeEcShardsToVolumeResponse) ProtoReflect() protoreflect.Message {
  2951. mi := &file_volume_server_proto_msgTypes[65]
  2952. if protoimpl.UnsafeEnabled && x != nil {
  2953. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2954. if ms.LoadMessageInfo() == nil {
  2955. ms.StoreMessageInfo(mi)
  2956. }
  2957. return ms
  2958. }
  2959. return mi.MessageOf(x)
  2960. }
  2961. // Deprecated: Use VolumeEcShardsToVolumeResponse.ProtoReflect.Descriptor instead.
  2962. func (*VolumeEcShardsToVolumeResponse) Descriptor() ([]byte, []int) {
  2963. return file_volume_server_proto_rawDescGZIP(), []int{65}
  2964. }
  2965. type ReadVolumeFileStatusRequest struct {
  2966. state protoimpl.MessageState
  2967. sizeCache protoimpl.SizeCache
  2968. unknownFields protoimpl.UnknownFields
  2969. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  2970. }
  2971. func (x *ReadVolumeFileStatusRequest) Reset() {
  2972. *x = ReadVolumeFileStatusRequest{}
  2973. if protoimpl.UnsafeEnabled {
  2974. mi := &file_volume_server_proto_msgTypes[66]
  2975. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2976. ms.StoreMessageInfo(mi)
  2977. }
  2978. }
  2979. func (x *ReadVolumeFileStatusRequest) String() string {
  2980. return protoimpl.X.MessageStringOf(x)
  2981. }
  2982. func (*ReadVolumeFileStatusRequest) ProtoMessage() {}
  2983. func (x *ReadVolumeFileStatusRequest) ProtoReflect() protoreflect.Message {
  2984. mi := &file_volume_server_proto_msgTypes[66]
  2985. if protoimpl.UnsafeEnabled && x != nil {
  2986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2987. if ms.LoadMessageInfo() == nil {
  2988. ms.StoreMessageInfo(mi)
  2989. }
  2990. return ms
  2991. }
  2992. return mi.MessageOf(x)
  2993. }
  2994. // Deprecated: Use ReadVolumeFileStatusRequest.ProtoReflect.Descriptor instead.
  2995. func (*ReadVolumeFileStatusRequest) Descriptor() ([]byte, []int) {
  2996. return file_volume_server_proto_rawDescGZIP(), []int{66}
  2997. }
  2998. func (x *ReadVolumeFileStatusRequest) GetVolumeId() uint32 {
  2999. if x != nil {
  3000. return x.VolumeId
  3001. }
  3002. return 0
  3003. }
  3004. type ReadVolumeFileStatusResponse struct {
  3005. state protoimpl.MessageState
  3006. sizeCache protoimpl.SizeCache
  3007. unknownFields protoimpl.UnknownFields
  3008. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3009. IdxFileTimestampSeconds uint64 `protobuf:"varint,2,opt,name=idx_file_timestamp_seconds,json=idxFileTimestampSeconds,proto3" json:"idx_file_timestamp_seconds,omitempty"`
  3010. IdxFileSize uint64 `protobuf:"varint,3,opt,name=idx_file_size,json=idxFileSize,proto3" json:"idx_file_size,omitempty"`
  3011. DatFileTimestampSeconds uint64 `protobuf:"varint,4,opt,name=dat_file_timestamp_seconds,json=datFileTimestampSeconds,proto3" json:"dat_file_timestamp_seconds,omitempty"`
  3012. DatFileSize uint64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize,proto3" json:"dat_file_size,omitempty"`
  3013. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  3014. CompactionRevision uint32 `protobuf:"varint,7,opt,name=compaction_revision,json=compactionRevision,proto3" json:"compaction_revision,omitempty"`
  3015. Collection string `protobuf:"bytes,8,opt,name=collection,proto3" json:"collection,omitempty"`
  3016. DiskType string `protobuf:"bytes,9,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3017. }
  3018. func (x *ReadVolumeFileStatusResponse) Reset() {
  3019. *x = ReadVolumeFileStatusResponse{}
  3020. if protoimpl.UnsafeEnabled {
  3021. mi := &file_volume_server_proto_msgTypes[67]
  3022. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3023. ms.StoreMessageInfo(mi)
  3024. }
  3025. }
  3026. func (x *ReadVolumeFileStatusResponse) String() string {
  3027. return protoimpl.X.MessageStringOf(x)
  3028. }
  3029. func (*ReadVolumeFileStatusResponse) ProtoMessage() {}
  3030. func (x *ReadVolumeFileStatusResponse) ProtoReflect() protoreflect.Message {
  3031. mi := &file_volume_server_proto_msgTypes[67]
  3032. if protoimpl.UnsafeEnabled && x != nil {
  3033. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3034. if ms.LoadMessageInfo() == nil {
  3035. ms.StoreMessageInfo(mi)
  3036. }
  3037. return ms
  3038. }
  3039. return mi.MessageOf(x)
  3040. }
  3041. // Deprecated: Use ReadVolumeFileStatusResponse.ProtoReflect.Descriptor instead.
  3042. func (*ReadVolumeFileStatusResponse) Descriptor() ([]byte, []int) {
  3043. return file_volume_server_proto_rawDescGZIP(), []int{67}
  3044. }
  3045. func (x *ReadVolumeFileStatusResponse) GetVolumeId() uint32 {
  3046. if x != nil {
  3047. return x.VolumeId
  3048. }
  3049. return 0
  3050. }
  3051. func (x *ReadVolumeFileStatusResponse) GetIdxFileTimestampSeconds() uint64 {
  3052. if x != nil {
  3053. return x.IdxFileTimestampSeconds
  3054. }
  3055. return 0
  3056. }
  3057. func (x *ReadVolumeFileStatusResponse) GetIdxFileSize() uint64 {
  3058. if x != nil {
  3059. return x.IdxFileSize
  3060. }
  3061. return 0
  3062. }
  3063. func (x *ReadVolumeFileStatusResponse) GetDatFileTimestampSeconds() uint64 {
  3064. if x != nil {
  3065. return x.DatFileTimestampSeconds
  3066. }
  3067. return 0
  3068. }
  3069. func (x *ReadVolumeFileStatusResponse) GetDatFileSize() uint64 {
  3070. if x != nil {
  3071. return x.DatFileSize
  3072. }
  3073. return 0
  3074. }
  3075. func (x *ReadVolumeFileStatusResponse) GetFileCount() uint64 {
  3076. if x != nil {
  3077. return x.FileCount
  3078. }
  3079. return 0
  3080. }
  3081. func (x *ReadVolumeFileStatusResponse) GetCompactionRevision() uint32 {
  3082. if x != nil {
  3083. return x.CompactionRevision
  3084. }
  3085. return 0
  3086. }
  3087. func (x *ReadVolumeFileStatusResponse) GetCollection() string {
  3088. if x != nil {
  3089. return x.Collection
  3090. }
  3091. return ""
  3092. }
  3093. func (x *ReadVolumeFileStatusResponse) GetDiskType() string {
  3094. if x != nil {
  3095. return x.DiskType
  3096. }
  3097. return ""
  3098. }
  3099. type DiskStatus struct {
  3100. state protoimpl.MessageState
  3101. sizeCache protoimpl.SizeCache
  3102. unknownFields protoimpl.UnknownFields
  3103. Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
  3104. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3105. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3106. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3107. PercentFree float32 `protobuf:"fixed32,5,opt,name=percent_free,json=percentFree,proto3" json:"percent_free,omitempty"`
  3108. PercentUsed float32 `protobuf:"fixed32,6,opt,name=percent_used,json=percentUsed,proto3" json:"percent_used,omitempty"`
  3109. DiskType string `protobuf:"bytes,7,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3110. }
  3111. func (x *DiskStatus) Reset() {
  3112. *x = DiskStatus{}
  3113. if protoimpl.UnsafeEnabled {
  3114. mi := &file_volume_server_proto_msgTypes[68]
  3115. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3116. ms.StoreMessageInfo(mi)
  3117. }
  3118. }
  3119. func (x *DiskStatus) String() string {
  3120. return protoimpl.X.MessageStringOf(x)
  3121. }
  3122. func (*DiskStatus) ProtoMessage() {}
  3123. func (x *DiskStatus) ProtoReflect() protoreflect.Message {
  3124. mi := &file_volume_server_proto_msgTypes[68]
  3125. if protoimpl.UnsafeEnabled && x != nil {
  3126. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3127. if ms.LoadMessageInfo() == nil {
  3128. ms.StoreMessageInfo(mi)
  3129. }
  3130. return ms
  3131. }
  3132. return mi.MessageOf(x)
  3133. }
  3134. // Deprecated: Use DiskStatus.ProtoReflect.Descriptor instead.
  3135. func (*DiskStatus) Descriptor() ([]byte, []int) {
  3136. return file_volume_server_proto_rawDescGZIP(), []int{68}
  3137. }
  3138. func (x *DiskStatus) GetDir() string {
  3139. if x != nil {
  3140. return x.Dir
  3141. }
  3142. return ""
  3143. }
  3144. func (x *DiskStatus) GetAll() uint64 {
  3145. if x != nil {
  3146. return x.All
  3147. }
  3148. return 0
  3149. }
  3150. func (x *DiskStatus) GetUsed() uint64 {
  3151. if x != nil {
  3152. return x.Used
  3153. }
  3154. return 0
  3155. }
  3156. func (x *DiskStatus) GetFree() uint64 {
  3157. if x != nil {
  3158. return x.Free
  3159. }
  3160. return 0
  3161. }
  3162. func (x *DiskStatus) GetPercentFree() float32 {
  3163. if x != nil {
  3164. return x.PercentFree
  3165. }
  3166. return 0
  3167. }
  3168. func (x *DiskStatus) GetPercentUsed() float32 {
  3169. if x != nil {
  3170. return x.PercentUsed
  3171. }
  3172. return 0
  3173. }
  3174. func (x *DiskStatus) GetDiskType() string {
  3175. if x != nil {
  3176. return x.DiskType
  3177. }
  3178. return ""
  3179. }
  3180. type MemStatus struct {
  3181. state protoimpl.MessageState
  3182. sizeCache protoimpl.SizeCache
  3183. unknownFields protoimpl.UnknownFields
  3184. Goroutines int32 `protobuf:"varint,1,opt,name=goroutines,proto3" json:"goroutines,omitempty"`
  3185. All uint64 `protobuf:"varint,2,opt,name=all,proto3" json:"all,omitempty"`
  3186. Used uint64 `protobuf:"varint,3,opt,name=used,proto3" json:"used,omitempty"`
  3187. Free uint64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
  3188. Self uint64 `protobuf:"varint,5,opt,name=self,proto3" json:"self,omitempty"`
  3189. Heap uint64 `protobuf:"varint,6,opt,name=heap,proto3" json:"heap,omitempty"`
  3190. Stack uint64 `protobuf:"varint,7,opt,name=stack,proto3" json:"stack,omitempty"`
  3191. }
  3192. func (x *MemStatus) Reset() {
  3193. *x = MemStatus{}
  3194. if protoimpl.UnsafeEnabled {
  3195. mi := &file_volume_server_proto_msgTypes[69]
  3196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3197. ms.StoreMessageInfo(mi)
  3198. }
  3199. }
  3200. func (x *MemStatus) String() string {
  3201. return protoimpl.X.MessageStringOf(x)
  3202. }
  3203. func (*MemStatus) ProtoMessage() {}
  3204. func (x *MemStatus) ProtoReflect() protoreflect.Message {
  3205. mi := &file_volume_server_proto_msgTypes[69]
  3206. if protoimpl.UnsafeEnabled && x != nil {
  3207. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3208. if ms.LoadMessageInfo() == nil {
  3209. ms.StoreMessageInfo(mi)
  3210. }
  3211. return ms
  3212. }
  3213. return mi.MessageOf(x)
  3214. }
  3215. // Deprecated: Use MemStatus.ProtoReflect.Descriptor instead.
  3216. func (*MemStatus) Descriptor() ([]byte, []int) {
  3217. return file_volume_server_proto_rawDescGZIP(), []int{69}
  3218. }
  3219. func (x *MemStatus) GetGoroutines() int32 {
  3220. if x != nil {
  3221. return x.Goroutines
  3222. }
  3223. return 0
  3224. }
  3225. func (x *MemStatus) GetAll() uint64 {
  3226. if x != nil {
  3227. return x.All
  3228. }
  3229. return 0
  3230. }
  3231. func (x *MemStatus) GetUsed() uint64 {
  3232. if x != nil {
  3233. return x.Used
  3234. }
  3235. return 0
  3236. }
  3237. func (x *MemStatus) GetFree() uint64 {
  3238. if x != nil {
  3239. return x.Free
  3240. }
  3241. return 0
  3242. }
  3243. func (x *MemStatus) GetSelf() uint64 {
  3244. if x != nil {
  3245. return x.Self
  3246. }
  3247. return 0
  3248. }
  3249. func (x *MemStatus) GetHeap() uint64 {
  3250. if x != nil {
  3251. return x.Heap
  3252. }
  3253. return 0
  3254. }
  3255. func (x *MemStatus) GetStack() uint64 {
  3256. if x != nil {
  3257. return x.Stack
  3258. }
  3259. return 0
  3260. }
  3261. // tired storage on volume servers
  3262. type RemoteFile struct {
  3263. state protoimpl.MessageState
  3264. sizeCache protoimpl.SizeCache
  3265. unknownFields protoimpl.UnknownFields
  3266. BackendType string `protobuf:"bytes,1,opt,name=backend_type,json=backendType,proto3" json:"backend_type,omitempty"`
  3267. BackendId string `protobuf:"bytes,2,opt,name=backend_id,json=backendId,proto3" json:"backend_id,omitempty"`
  3268. Key string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
  3269. Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  3270. FileSize uint64 `protobuf:"varint,5,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
  3271. ModifiedTime uint64 `protobuf:"varint,6,opt,name=modified_time,json=modifiedTime,proto3" json:"modified_time,omitempty"`
  3272. Extension string `protobuf:"bytes,7,opt,name=extension,proto3" json:"extension,omitempty"`
  3273. }
  3274. func (x *RemoteFile) Reset() {
  3275. *x = RemoteFile{}
  3276. if protoimpl.UnsafeEnabled {
  3277. mi := &file_volume_server_proto_msgTypes[70]
  3278. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3279. ms.StoreMessageInfo(mi)
  3280. }
  3281. }
  3282. func (x *RemoteFile) String() string {
  3283. return protoimpl.X.MessageStringOf(x)
  3284. }
  3285. func (*RemoteFile) ProtoMessage() {}
  3286. func (x *RemoteFile) ProtoReflect() protoreflect.Message {
  3287. mi := &file_volume_server_proto_msgTypes[70]
  3288. if protoimpl.UnsafeEnabled && x != nil {
  3289. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3290. if ms.LoadMessageInfo() == nil {
  3291. ms.StoreMessageInfo(mi)
  3292. }
  3293. return ms
  3294. }
  3295. return mi.MessageOf(x)
  3296. }
  3297. // Deprecated: Use RemoteFile.ProtoReflect.Descriptor instead.
  3298. func (*RemoteFile) Descriptor() ([]byte, []int) {
  3299. return file_volume_server_proto_rawDescGZIP(), []int{70}
  3300. }
  3301. func (x *RemoteFile) GetBackendType() string {
  3302. if x != nil {
  3303. return x.BackendType
  3304. }
  3305. return ""
  3306. }
  3307. func (x *RemoteFile) GetBackendId() string {
  3308. if x != nil {
  3309. return x.BackendId
  3310. }
  3311. return ""
  3312. }
  3313. func (x *RemoteFile) GetKey() string {
  3314. if x != nil {
  3315. return x.Key
  3316. }
  3317. return ""
  3318. }
  3319. func (x *RemoteFile) GetOffset() uint64 {
  3320. if x != nil {
  3321. return x.Offset
  3322. }
  3323. return 0
  3324. }
  3325. func (x *RemoteFile) GetFileSize() uint64 {
  3326. if x != nil {
  3327. return x.FileSize
  3328. }
  3329. return 0
  3330. }
  3331. func (x *RemoteFile) GetModifiedTime() uint64 {
  3332. if x != nil {
  3333. return x.ModifiedTime
  3334. }
  3335. return 0
  3336. }
  3337. func (x *RemoteFile) GetExtension() string {
  3338. if x != nil {
  3339. return x.Extension
  3340. }
  3341. return ""
  3342. }
  3343. type VolumeInfo struct {
  3344. state protoimpl.MessageState
  3345. sizeCache protoimpl.SizeCache
  3346. unknownFields protoimpl.UnknownFields
  3347. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
  3348. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
  3349. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  3350. }
  3351. func (x *VolumeInfo) Reset() {
  3352. *x = VolumeInfo{}
  3353. if protoimpl.UnsafeEnabled {
  3354. mi := &file_volume_server_proto_msgTypes[71]
  3355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3356. ms.StoreMessageInfo(mi)
  3357. }
  3358. }
  3359. func (x *VolumeInfo) String() string {
  3360. return protoimpl.X.MessageStringOf(x)
  3361. }
  3362. func (*VolumeInfo) ProtoMessage() {}
  3363. func (x *VolumeInfo) ProtoReflect() protoreflect.Message {
  3364. mi := &file_volume_server_proto_msgTypes[71]
  3365. if protoimpl.UnsafeEnabled && x != nil {
  3366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3367. if ms.LoadMessageInfo() == nil {
  3368. ms.StoreMessageInfo(mi)
  3369. }
  3370. return ms
  3371. }
  3372. return mi.MessageOf(x)
  3373. }
  3374. // Deprecated: Use VolumeInfo.ProtoReflect.Descriptor instead.
  3375. func (*VolumeInfo) Descriptor() ([]byte, []int) {
  3376. return file_volume_server_proto_rawDescGZIP(), []int{71}
  3377. }
  3378. func (x *VolumeInfo) GetFiles() []*RemoteFile {
  3379. if x != nil {
  3380. return x.Files
  3381. }
  3382. return nil
  3383. }
  3384. func (x *VolumeInfo) GetVersion() uint32 {
  3385. if x != nil {
  3386. return x.Version
  3387. }
  3388. return 0
  3389. }
  3390. func (x *VolumeInfo) GetReplication() string {
  3391. if x != nil {
  3392. return x.Replication
  3393. }
  3394. return ""
  3395. }
  3396. // tiered storage
  3397. type VolumeTierMoveDatToRemoteRequest struct {
  3398. state protoimpl.MessageState
  3399. sizeCache protoimpl.SizeCache
  3400. unknownFields protoimpl.UnknownFields
  3401. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3402. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3403. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName,proto3" json:"destination_backend_name,omitempty"`
  3404. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile,proto3" json:"keep_local_dat_file,omitempty"`
  3405. }
  3406. func (x *VolumeTierMoveDatToRemoteRequest) Reset() {
  3407. *x = VolumeTierMoveDatToRemoteRequest{}
  3408. if protoimpl.UnsafeEnabled {
  3409. mi := &file_volume_server_proto_msgTypes[72]
  3410. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3411. ms.StoreMessageInfo(mi)
  3412. }
  3413. }
  3414. func (x *VolumeTierMoveDatToRemoteRequest) String() string {
  3415. return protoimpl.X.MessageStringOf(x)
  3416. }
  3417. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  3418. func (x *VolumeTierMoveDatToRemoteRequest) ProtoReflect() protoreflect.Message {
  3419. mi := &file_volume_server_proto_msgTypes[72]
  3420. if protoimpl.UnsafeEnabled && x != nil {
  3421. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3422. if ms.LoadMessageInfo() == nil {
  3423. ms.StoreMessageInfo(mi)
  3424. }
  3425. return ms
  3426. }
  3427. return mi.MessageOf(x)
  3428. }
  3429. // Deprecated: Use VolumeTierMoveDatToRemoteRequest.ProtoReflect.Descriptor instead.
  3430. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  3431. return file_volume_server_proto_rawDescGZIP(), []int{72}
  3432. }
  3433. func (x *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  3434. if x != nil {
  3435. return x.VolumeId
  3436. }
  3437. return 0
  3438. }
  3439. func (x *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  3440. if x != nil {
  3441. return x.Collection
  3442. }
  3443. return ""
  3444. }
  3445. func (x *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  3446. if x != nil {
  3447. return x.DestinationBackendName
  3448. }
  3449. return ""
  3450. }
  3451. func (x *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  3452. if x != nil {
  3453. return x.KeepLocalDatFile
  3454. }
  3455. return false
  3456. }
  3457. type VolumeTierMoveDatToRemoteResponse struct {
  3458. state protoimpl.MessageState
  3459. sizeCache protoimpl.SizeCache
  3460. unknownFields protoimpl.UnknownFields
  3461. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3462. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3463. }
  3464. func (x *VolumeTierMoveDatToRemoteResponse) Reset() {
  3465. *x = VolumeTierMoveDatToRemoteResponse{}
  3466. if protoimpl.UnsafeEnabled {
  3467. mi := &file_volume_server_proto_msgTypes[73]
  3468. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3469. ms.StoreMessageInfo(mi)
  3470. }
  3471. }
  3472. func (x *VolumeTierMoveDatToRemoteResponse) String() string {
  3473. return protoimpl.X.MessageStringOf(x)
  3474. }
  3475. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  3476. func (x *VolumeTierMoveDatToRemoteResponse) ProtoReflect() protoreflect.Message {
  3477. mi := &file_volume_server_proto_msgTypes[73]
  3478. if protoimpl.UnsafeEnabled && x != nil {
  3479. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3480. if ms.LoadMessageInfo() == nil {
  3481. ms.StoreMessageInfo(mi)
  3482. }
  3483. return ms
  3484. }
  3485. return mi.MessageOf(x)
  3486. }
  3487. // Deprecated: Use VolumeTierMoveDatToRemoteResponse.ProtoReflect.Descriptor instead.
  3488. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  3489. return file_volume_server_proto_rawDescGZIP(), []int{73}
  3490. }
  3491. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  3492. if x != nil {
  3493. return x.Processed
  3494. }
  3495. return 0
  3496. }
  3497. func (x *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  3498. if x != nil {
  3499. return x.ProcessedPercentage
  3500. }
  3501. return 0
  3502. }
  3503. type VolumeTierMoveDatFromRemoteRequest struct {
  3504. state protoimpl.MessageState
  3505. sizeCache protoimpl.SizeCache
  3506. unknownFields protoimpl.UnknownFields
  3507. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3508. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3509. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile,proto3" json:"keep_remote_dat_file,omitempty"`
  3510. }
  3511. func (x *VolumeTierMoveDatFromRemoteRequest) Reset() {
  3512. *x = VolumeTierMoveDatFromRemoteRequest{}
  3513. if protoimpl.UnsafeEnabled {
  3514. mi := &file_volume_server_proto_msgTypes[74]
  3515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3516. ms.StoreMessageInfo(mi)
  3517. }
  3518. }
  3519. func (x *VolumeTierMoveDatFromRemoteRequest) String() string {
  3520. return protoimpl.X.MessageStringOf(x)
  3521. }
  3522. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  3523. func (x *VolumeTierMoveDatFromRemoteRequest) ProtoReflect() protoreflect.Message {
  3524. mi := &file_volume_server_proto_msgTypes[74]
  3525. if protoimpl.UnsafeEnabled && x != nil {
  3526. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3527. if ms.LoadMessageInfo() == nil {
  3528. ms.StoreMessageInfo(mi)
  3529. }
  3530. return ms
  3531. }
  3532. return mi.MessageOf(x)
  3533. }
  3534. // Deprecated: Use VolumeTierMoveDatFromRemoteRequest.ProtoReflect.Descriptor instead.
  3535. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  3536. return file_volume_server_proto_rawDescGZIP(), []int{74}
  3537. }
  3538. func (x *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  3539. if x != nil {
  3540. return x.VolumeId
  3541. }
  3542. return 0
  3543. }
  3544. func (x *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  3545. if x != nil {
  3546. return x.Collection
  3547. }
  3548. return ""
  3549. }
  3550. func (x *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  3551. if x != nil {
  3552. return x.KeepRemoteDatFile
  3553. }
  3554. return false
  3555. }
  3556. type VolumeTierMoveDatFromRemoteResponse struct {
  3557. state protoimpl.MessageState
  3558. sizeCache protoimpl.SizeCache
  3559. unknownFields protoimpl.UnknownFields
  3560. Processed int64 `protobuf:"varint,1,opt,name=processed,proto3" json:"processed,omitempty"`
  3561. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage,proto3" json:"processedPercentage,omitempty"`
  3562. }
  3563. func (x *VolumeTierMoveDatFromRemoteResponse) Reset() {
  3564. *x = VolumeTierMoveDatFromRemoteResponse{}
  3565. if protoimpl.UnsafeEnabled {
  3566. mi := &file_volume_server_proto_msgTypes[75]
  3567. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3568. ms.StoreMessageInfo(mi)
  3569. }
  3570. }
  3571. func (x *VolumeTierMoveDatFromRemoteResponse) String() string {
  3572. return protoimpl.X.MessageStringOf(x)
  3573. }
  3574. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  3575. func (x *VolumeTierMoveDatFromRemoteResponse) ProtoReflect() protoreflect.Message {
  3576. mi := &file_volume_server_proto_msgTypes[75]
  3577. if protoimpl.UnsafeEnabled && x != nil {
  3578. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3579. if ms.LoadMessageInfo() == nil {
  3580. ms.StoreMessageInfo(mi)
  3581. }
  3582. return ms
  3583. }
  3584. return mi.MessageOf(x)
  3585. }
  3586. // Deprecated: Use VolumeTierMoveDatFromRemoteResponse.ProtoReflect.Descriptor instead.
  3587. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  3588. return file_volume_server_proto_rawDescGZIP(), []int{75}
  3589. }
  3590. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  3591. if x != nil {
  3592. return x.Processed
  3593. }
  3594. return 0
  3595. }
  3596. func (x *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  3597. if x != nil {
  3598. return x.ProcessedPercentage
  3599. }
  3600. return 0
  3601. }
  3602. type VolumeServerStatusRequest struct {
  3603. state protoimpl.MessageState
  3604. sizeCache protoimpl.SizeCache
  3605. unknownFields protoimpl.UnknownFields
  3606. }
  3607. func (x *VolumeServerStatusRequest) Reset() {
  3608. *x = VolumeServerStatusRequest{}
  3609. if protoimpl.UnsafeEnabled {
  3610. mi := &file_volume_server_proto_msgTypes[76]
  3611. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3612. ms.StoreMessageInfo(mi)
  3613. }
  3614. }
  3615. func (x *VolumeServerStatusRequest) String() string {
  3616. return protoimpl.X.MessageStringOf(x)
  3617. }
  3618. func (*VolumeServerStatusRequest) ProtoMessage() {}
  3619. func (x *VolumeServerStatusRequest) ProtoReflect() protoreflect.Message {
  3620. mi := &file_volume_server_proto_msgTypes[76]
  3621. if protoimpl.UnsafeEnabled && x != nil {
  3622. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3623. if ms.LoadMessageInfo() == nil {
  3624. ms.StoreMessageInfo(mi)
  3625. }
  3626. return ms
  3627. }
  3628. return mi.MessageOf(x)
  3629. }
  3630. // Deprecated: Use VolumeServerStatusRequest.ProtoReflect.Descriptor instead.
  3631. func (*VolumeServerStatusRequest) Descriptor() ([]byte, []int) {
  3632. return file_volume_server_proto_rawDescGZIP(), []int{76}
  3633. }
  3634. type VolumeServerStatusResponse struct {
  3635. state protoimpl.MessageState
  3636. sizeCache protoimpl.SizeCache
  3637. unknownFields protoimpl.UnknownFields
  3638. DiskStatuses []*DiskStatus `protobuf:"bytes,1,rep,name=disk_statuses,json=diskStatuses,proto3" json:"disk_statuses,omitempty"`
  3639. MemoryStatus *MemStatus `protobuf:"bytes,2,opt,name=memory_status,json=memoryStatus,proto3" json:"memory_status,omitempty"`
  3640. }
  3641. func (x *VolumeServerStatusResponse) Reset() {
  3642. *x = VolumeServerStatusResponse{}
  3643. if protoimpl.UnsafeEnabled {
  3644. mi := &file_volume_server_proto_msgTypes[77]
  3645. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3646. ms.StoreMessageInfo(mi)
  3647. }
  3648. }
  3649. func (x *VolumeServerStatusResponse) String() string {
  3650. return protoimpl.X.MessageStringOf(x)
  3651. }
  3652. func (*VolumeServerStatusResponse) ProtoMessage() {}
  3653. func (x *VolumeServerStatusResponse) ProtoReflect() protoreflect.Message {
  3654. mi := &file_volume_server_proto_msgTypes[77]
  3655. if protoimpl.UnsafeEnabled && x != nil {
  3656. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3657. if ms.LoadMessageInfo() == nil {
  3658. ms.StoreMessageInfo(mi)
  3659. }
  3660. return ms
  3661. }
  3662. return mi.MessageOf(x)
  3663. }
  3664. // Deprecated: Use VolumeServerStatusResponse.ProtoReflect.Descriptor instead.
  3665. func (*VolumeServerStatusResponse) Descriptor() ([]byte, []int) {
  3666. return file_volume_server_proto_rawDescGZIP(), []int{77}
  3667. }
  3668. func (x *VolumeServerStatusResponse) GetDiskStatuses() []*DiskStatus {
  3669. if x != nil {
  3670. return x.DiskStatuses
  3671. }
  3672. return nil
  3673. }
  3674. func (x *VolumeServerStatusResponse) GetMemoryStatus() *MemStatus {
  3675. if x != nil {
  3676. return x.MemoryStatus
  3677. }
  3678. return nil
  3679. }
  3680. type VolumeServerLeaveRequest struct {
  3681. state protoimpl.MessageState
  3682. sizeCache protoimpl.SizeCache
  3683. unknownFields protoimpl.UnknownFields
  3684. }
  3685. func (x *VolumeServerLeaveRequest) Reset() {
  3686. *x = VolumeServerLeaveRequest{}
  3687. if protoimpl.UnsafeEnabled {
  3688. mi := &file_volume_server_proto_msgTypes[78]
  3689. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3690. ms.StoreMessageInfo(mi)
  3691. }
  3692. }
  3693. func (x *VolumeServerLeaveRequest) String() string {
  3694. return protoimpl.X.MessageStringOf(x)
  3695. }
  3696. func (*VolumeServerLeaveRequest) ProtoMessage() {}
  3697. func (x *VolumeServerLeaveRequest) ProtoReflect() protoreflect.Message {
  3698. mi := &file_volume_server_proto_msgTypes[78]
  3699. if protoimpl.UnsafeEnabled && x != nil {
  3700. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3701. if ms.LoadMessageInfo() == nil {
  3702. ms.StoreMessageInfo(mi)
  3703. }
  3704. return ms
  3705. }
  3706. return mi.MessageOf(x)
  3707. }
  3708. // Deprecated: Use VolumeServerLeaveRequest.ProtoReflect.Descriptor instead.
  3709. func (*VolumeServerLeaveRequest) Descriptor() ([]byte, []int) {
  3710. return file_volume_server_proto_rawDescGZIP(), []int{78}
  3711. }
  3712. type VolumeServerLeaveResponse struct {
  3713. state protoimpl.MessageState
  3714. sizeCache protoimpl.SizeCache
  3715. unknownFields protoimpl.UnknownFields
  3716. }
  3717. func (x *VolumeServerLeaveResponse) Reset() {
  3718. *x = VolumeServerLeaveResponse{}
  3719. if protoimpl.UnsafeEnabled {
  3720. mi := &file_volume_server_proto_msgTypes[79]
  3721. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3722. ms.StoreMessageInfo(mi)
  3723. }
  3724. }
  3725. func (x *VolumeServerLeaveResponse) String() string {
  3726. return protoimpl.X.MessageStringOf(x)
  3727. }
  3728. func (*VolumeServerLeaveResponse) ProtoMessage() {}
  3729. func (x *VolumeServerLeaveResponse) ProtoReflect() protoreflect.Message {
  3730. mi := &file_volume_server_proto_msgTypes[79]
  3731. if protoimpl.UnsafeEnabled && x != nil {
  3732. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3733. if ms.LoadMessageInfo() == nil {
  3734. ms.StoreMessageInfo(mi)
  3735. }
  3736. return ms
  3737. }
  3738. return mi.MessageOf(x)
  3739. }
  3740. // Deprecated: Use VolumeServerLeaveResponse.ProtoReflect.Descriptor instead.
  3741. func (*VolumeServerLeaveResponse) Descriptor() ([]byte, []int) {
  3742. return file_volume_server_proto_rawDescGZIP(), []int{79}
  3743. }
  3744. // remote storage
  3745. type FetchAndWriteNeedleRequest struct {
  3746. state protoimpl.MessageState
  3747. sizeCache protoimpl.SizeCache
  3748. unknownFields protoimpl.UnknownFields
  3749. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3750. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3751. Cookie uint32 `protobuf:"varint,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  3752. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
  3753. Size int64 `protobuf:"varint,5,opt,name=size,proto3" json:"size,omitempty"`
  3754. Replicas []*FetchAndWriteNeedleRequest_Replica `protobuf:"bytes,6,rep,name=replicas,proto3" json:"replicas,omitempty"`
  3755. Auth string `protobuf:"bytes,7,opt,name=auth,proto3" json:"auth,omitempty"`
  3756. // remote conf
  3757. RemoteConf *remote_pb.RemoteConf `protobuf:"bytes,15,opt,name=remote_conf,json=remoteConf,proto3" json:"remote_conf,omitempty"`
  3758. RemoteLocation *remote_pb.RemoteStorageLocation `protobuf:"bytes,16,opt,name=remote_location,json=remoteLocation,proto3" json:"remote_location,omitempty"`
  3759. }
  3760. func (x *FetchAndWriteNeedleRequest) Reset() {
  3761. *x = FetchAndWriteNeedleRequest{}
  3762. if protoimpl.UnsafeEnabled {
  3763. mi := &file_volume_server_proto_msgTypes[80]
  3764. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3765. ms.StoreMessageInfo(mi)
  3766. }
  3767. }
  3768. func (x *FetchAndWriteNeedleRequest) String() string {
  3769. return protoimpl.X.MessageStringOf(x)
  3770. }
  3771. func (*FetchAndWriteNeedleRequest) ProtoMessage() {}
  3772. func (x *FetchAndWriteNeedleRequest) ProtoReflect() protoreflect.Message {
  3773. mi := &file_volume_server_proto_msgTypes[80]
  3774. if protoimpl.UnsafeEnabled && x != nil {
  3775. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3776. if ms.LoadMessageInfo() == nil {
  3777. ms.StoreMessageInfo(mi)
  3778. }
  3779. return ms
  3780. }
  3781. return mi.MessageOf(x)
  3782. }
  3783. // Deprecated: Use FetchAndWriteNeedleRequest.ProtoReflect.Descriptor instead.
  3784. func (*FetchAndWriteNeedleRequest) Descriptor() ([]byte, []int) {
  3785. return file_volume_server_proto_rawDescGZIP(), []int{80}
  3786. }
  3787. func (x *FetchAndWriteNeedleRequest) GetVolumeId() uint32 {
  3788. if x != nil {
  3789. return x.VolumeId
  3790. }
  3791. return 0
  3792. }
  3793. func (x *FetchAndWriteNeedleRequest) GetNeedleId() uint64 {
  3794. if x != nil {
  3795. return x.NeedleId
  3796. }
  3797. return 0
  3798. }
  3799. func (x *FetchAndWriteNeedleRequest) GetCookie() uint32 {
  3800. if x != nil {
  3801. return x.Cookie
  3802. }
  3803. return 0
  3804. }
  3805. func (x *FetchAndWriteNeedleRequest) GetOffset() int64 {
  3806. if x != nil {
  3807. return x.Offset
  3808. }
  3809. return 0
  3810. }
  3811. func (x *FetchAndWriteNeedleRequest) GetSize() int64 {
  3812. if x != nil {
  3813. return x.Size
  3814. }
  3815. return 0
  3816. }
  3817. func (x *FetchAndWriteNeedleRequest) GetReplicas() []*FetchAndWriteNeedleRequest_Replica {
  3818. if x != nil {
  3819. return x.Replicas
  3820. }
  3821. return nil
  3822. }
  3823. func (x *FetchAndWriteNeedleRequest) GetAuth() string {
  3824. if x != nil {
  3825. return x.Auth
  3826. }
  3827. return ""
  3828. }
  3829. func (x *FetchAndWriteNeedleRequest) GetRemoteConf() *remote_pb.RemoteConf {
  3830. if x != nil {
  3831. return x.RemoteConf
  3832. }
  3833. return nil
  3834. }
  3835. func (x *FetchAndWriteNeedleRequest) GetRemoteLocation() *remote_pb.RemoteStorageLocation {
  3836. if x != nil {
  3837. return x.RemoteLocation
  3838. }
  3839. return nil
  3840. }
  3841. type FetchAndWriteNeedleResponse struct {
  3842. state protoimpl.MessageState
  3843. sizeCache protoimpl.SizeCache
  3844. unknownFields protoimpl.UnknownFields
  3845. }
  3846. func (x *FetchAndWriteNeedleResponse) Reset() {
  3847. *x = FetchAndWriteNeedleResponse{}
  3848. if protoimpl.UnsafeEnabled {
  3849. mi := &file_volume_server_proto_msgTypes[81]
  3850. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3851. ms.StoreMessageInfo(mi)
  3852. }
  3853. }
  3854. func (x *FetchAndWriteNeedleResponse) String() string {
  3855. return protoimpl.X.MessageStringOf(x)
  3856. }
  3857. func (*FetchAndWriteNeedleResponse) ProtoMessage() {}
  3858. func (x *FetchAndWriteNeedleResponse) ProtoReflect() protoreflect.Message {
  3859. mi := &file_volume_server_proto_msgTypes[81]
  3860. if protoimpl.UnsafeEnabled && x != nil {
  3861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3862. if ms.LoadMessageInfo() == nil {
  3863. ms.StoreMessageInfo(mi)
  3864. }
  3865. return ms
  3866. }
  3867. return mi.MessageOf(x)
  3868. }
  3869. // Deprecated: Use FetchAndWriteNeedleResponse.ProtoReflect.Descriptor instead.
  3870. func (*FetchAndWriteNeedleResponse) Descriptor() ([]byte, []int) {
  3871. return file_volume_server_proto_rawDescGZIP(), []int{81}
  3872. }
  3873. // select on volume servers
  3874. type QueryRequest struct {
  3875. state protoimpl.MessageState
  3876. sizeCache protoimpl.SizeCache
  3877. unknownFields protoimpl.UnknownFields
  3878. Selections []string `protobuf:"bytes,1,rep,name=selections,proto3" json:"selections,omitempty"`
  3879. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds,proto3" json:"from_file_ids,omitempty"`
  3880. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
  3881. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization,proto3" json:"input_serialization,omitempty"`
  3882. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization,proto3" json:"output_serialization,omitempty"`
  3883. }
  3884. func (x *QueryRequest) Reset() {
  3885. *x = QueryRequest{}
  3886. if protoimpl.UnsafeEnabled {
  3887. mi := &file_volume_server_proto_msgTypes[82]
  3888. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3889. ms.StoreMessageInfo(mi)
  3890. }
  3891. }
  3892. func (x *QueryRequest) String() string {
  3893. return protoimpl.X.MessageStringOf(x)
  3894. }
  3895. func (*QueryRequest) ProtoMessage() {}
  3896. func (x *QueryRequest) ProtoReflect() protoreflect.Message {
  3897. mi := &file_volume_server_proto_msgTypes[82]
  3898. if protoimpl.UnsafeEnabled && x != nil {
  3899. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3900. if ms.LoadMessageInfo() == nil {
  3901. ms.StoreMessageInfo(mi)
  3902. }
  3903. return ms
  3904. }
  3905. return mi.MessageOf(x)
  3906. }
  3907. // Deprecated: Use QueryRequest.ProtoReflect.Descriptor instead.
  3908. func (*QueryRequest) Descriptor() ([]byte, []int) {
  3909. return file_volume_server_proto_rawDescGZIP(), []int{82}
  3910. }
  3911. func (x *QueryRequest) GetSelections() []string {
  3912. if x != nil {
  3913. return x.Selections
  3914. }
  3915. return nil
  3916. }
  3917. func (x *QueryRequest) GetFromFileIds() []string {
  3918. if x != nil {
  3919. return x.FromFileIds
  3920. }
  3921. return nil
  3922. }
  3923. func (x *QueryRequest) GetFilter() *QueryRequest_Filter {
  3924. if x != nil {
  3925. return x.Filter
  3926. }
  3927. return nil
  3928. }
  3929. func (x *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  3930. if x != nil {
  3931. return x.InputSerialization
  3932. }
  3933. return nil
  3934. }
  3935. func (x *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  3936. if x != nil {
  3937. return x.OutputSerialization
  3938. }
  3939. return nil
  3940. }
  3941. type QueriedStripe struct {
  3942. state protoimpl.MessageState
  3943. sizeCache protoimpl.SizeCache
  3944. unknownFields protoimpl.UnknownFields
  3945. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  3946. }
  3947. func (x *QueriedStripe) Reset() {
  3948. *x = QueriedStripe{}
  3949. if protoimpl.UnsafeEnabled {
  3950. mi := &file_volume_server_proto_msgTypes[83]
  3951. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3952. ms.StoreMessageInfo(mi)
  3953. }
  3954. }
  3955. func (x *QueriedStripe) String() string {
  3956. return protoimpl.X.MessageStringOf(x)
  3957. }
  3958. func (*QueriedStripe) ProtoMessage() {}
  3959. func (x *QueriedStripe) ProtoReflect() protoreflect.Message {
  3960. mi := &file_volume_server_proto_msgTypes[83]
  3961. if protoimpl.UnsafeEnabled && x != nil {
  3962. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3963. if ms.LoadMessageInfo() == nil {
  3964. ms.StoreMessageInfo(mi)
  3965. }
  3966. return ms
  3967. }
  3968. return mi.MessageOf(x)
  3969. }
  3970. // Deprecated: Use QueriedStripe.ProtoReflect.Descriptor instead.
  3971. func (*QueriedStripe) Descriptor() ([]byte, []int) {
  3972. return file_volume_server_proto_rawDescGZIP(), []int{83}
  3973. }
  3974. func (x *QueriedStripe) GetRecords() []byte {
  3975. if x != nil {
  3976. return x.Records
  3977. }
  3978. return nil
  3979. }
  3980. type VolumeNeedleStatusRequest struct {
  3981. state protoimpl.MessageState
  3982. sizeCache protoimpl.SizeCache
  3983. unknownFields protoimpl.UnknownFields
  3984. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  3985. NeedleId uint64 `protobuf:"varint,2,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  3986. }
  3987. func (x *VolumeNeedleStatusRequest) Reset() {
  3988. *x = VolumeNeedleStatusRequest{}
  3989. if protoimpl.UnsafeEnabled {
  3990. mi := &file_volume_server_proto_msgTypes[84]
  3991. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3992. ms.StoreMessageInfo(mi)
  3993. }
  3994. }
  3995. func (x *VolumeNeedleStatusRequest) String() string {
  3996. return protoimpl.X.MessageStringOf(x)
  3997. }
  3998. func (*VolumeNeedleStatusRequest) ProtoMessage() {}
  3999. func (x *VolumeNeedleStatusRequest) ProtoReflect() protoreflect.Message {
  4000. mi := &file_volume_server_proto_msgTypes[84]
  4001. if protoimpl.UnsafeEnabled && x != nil {
  4002. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4003. if ms.LoadMessageInfo() == nil {
  4004. ms.StoreMessageInfo(mi)
  4005. }
  4006. return ms
  4007. }
  4008. return mi.MessageOf(x)
  4009. }
  4010. // Deprecated: Use VolumeNeedleStatusRequest.ProtoReflect.Descriptor instead.
  4011. func (*VolumeNeedleStatusRequest) Descriptor() ([]byte, []int) {
  4012. return file_volume_server_proto_rawDescGZIP(), []int{84}
  4013. }
  4014. func (x *VolumeNeedleStatusRequest) GetVolumeId() uint32 {
  4015. if x != nil {
  4016. return x.VolumeId
  4017. }
  4018. return 0
  4019. }
  4020. func (x *VolumeNeedleStatusRequest) GetNeedleId() uint64 {
  4021. if x != nil {
  4022. return x.NeedleId
  4023. }
  4024. return 0
  4025. }
  4026. type VolumeNeedleStatusResponse struct {
  4027. state protoimpl.MessageState
  4028. sizeCache protoimpl.SizeCache
  4029. unknownFields protoimpl.UnknownFields
  4030. NeedleId uint64 `protobuf:"varint,1,opt,name=needle_id,json=needleId,proto3" json:"needle_id,omitempty"`
  4031. Cookie uint32 `protobuf:"varint,2,opt,name=cookie,proto3" json:"cookie,omitempty"`
  4032. Size uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  4033. LastModified uint64 `protobuf:"varint,4,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
  4034. Crc uint32 `protobuf:"varint,5,opt,name=crc,proto3" json:"crc,omitempty"`
  4035. Ttl string `protobuf:"bytes,6,opt,name=ttl,proto3" json:"ttl,omitempty"`
  4036. }
  4037. func (x *VolumeNeedleStatusResponse) Reset() {
  4038. *x = VolumeNeedleStatusResponse{}
  4039. if protoimpl.UnsafeEnabled {
  4040. mi := &file_volume_server_proto_msgTypes[85]
  4041. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4042. ms.StoreMessageInfo(mi)
  4043. }
  4044. }
  4045. func (x *VolumeNeedleStatusResponse) String() string {
  4046. return protoimpl.X.MessageStringOf(x)
  4047. }
  4048. func (*VolumeNeedleStatusResponse) ProtoMessage() {}
  4049. func (x *VolumeNeedleStatusResponse) ProtoReflect() protoreflect.Message {
  4050. mi := &file_volume_server_proto_msgTypes[85]
  4051. if protoimpl.UnsafeEnabled && x != nil {
  4052. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4053. if ms.LoadMessageInfo() == nil {
  4054. ms.StoreMessageInfo(mi)
  4055. }
  4056. return ms
  4057. }
  4058. return mi.MessageOf(x)
  4059. }
  4060. // Deprecated: Use VolumeNeedleStatusResponse.ProtoReflect.Descriptor instead.
  4061. func (*VolumeNeedleStatusResponse) Descriptor() ([]byte, []int) {
  4062. return file_volume_server_proto_rawDescGZIP(), []int{85}
  4063. }
  4064. func (x *VolumeNeedleStatusResponse) GetNeedleId() uint64 {
  4065. if x != nil {
  4066. return x.NeedleId
  4067. }
  4068. return 0
  4069. }
  4070. func (x *VolumeNeedleStatusResponse) GetCookie() uint32 {
  4071. if x != nil {
  4072. return x.Cookie
  4073. }
  4074. return 0
  4075. }
  4076. func (x *VolumeNeedleStatusResponse) GetSize() uint32 {
  4077. if x != nil {
  4078. return x.Size
  4079. }
  4080. return 0
  4081. }
  4082. func (x *VolumeNeedleStatusResponse) GetLastModified() uint64 {
  4083. if x != nil {
  4084. return x.LastModified
  4085. }
  4086. return 0
  4087. }
  4088. func (x *VolumeNeedleStatusResponse) GetCrc() uint32 {
  4089. if x != nil {
  4090. return x.Crc
  4091. }
  4092. return 0
  4093. }
  4094. func (x *VolumeNeedleStatusResponse) GetTtl() string {
  4095. if x != nil {
  4096. return x.Ttl
  4097. }
  4098. return ""
  4099. }
  4100. type FetchAndWriteNeedleRequest_Replica struct {
  4101. state protoimpl.MessageState
  4102. sizeCache protoimpl.SizeCache
  4103. unknownFields protoimpl.UnknownFields
  4104. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  4105. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl,proto3" json:"public_url,omitempty"`
  4106. GrpcPort int32 `protobuf:"varint,3,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
  4107. }
  4108. func (x *FetchAndWriteNeedleRequest_Replica) Reset() {
  4109. *x = FetchAndWriteNeedleRequest_Replica{}
  4110. if protoimpl.UnsafeEnabled {
  4111. mi := &file_volume_server_proto_msgTypes[86]
  4112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4113. ms.StoreMessageInfo(mi)
  4114. }
  4115. }
  4116. func (x *FetchAndWriteNeedleRequest_Replica) String() string {
  4117. return protoimpl.X.MessageStringOf(x)
  4118. }
  4119. func (*FetchAndWriteNeedleRequest_Replica) ProtoMessage() {}
  4120. func (x *FetchAndWriteNeedleRequest_Replica) ProtoReflect() protoreflect.Message {
  4121. mi := &file_volume_server_proto_msgTypes[86]
  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_Replica.ProtoReflect.Descriptor instead.
  4132. func (*FetchAndWriteNeedleRequest_Replica) Descriptor() ([]byte, []int) {
  4133. return file_volume_server_proto_rawDescGZIP(), []int{80, 0}
  4134. }
  4135. func (x *FetchAndWriteNeedleRequest_Replica) GetUrl() string {
  4136. if x != nil {
  4137. return x.Url
  4138. }
  4139. return ""
  4140. }
  4141. func (x *FetchAndWriteNeedleRequest_Replica) GetPublicUrl() string {
  4142. if x != nil {
  4143. return x.PublicUrl
  4144. }
  4145. return ""
  4146. }
  4147. func (x *FetchAndWriteNeedleRequest_Replica) GetGrpcPort() int32 {
  4148. if x != nil {
  4149. return x.GrpcPort
  4150. }
  4151. return 0
  4152. }
  4153. type QueryRequest_Filter struct {
  4154. state protoimpl.MessageState
  4155. sizeCache protoimpl.SizeCache
  4156. unknownFields protoimpl.UnknownFields
  4157. Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
  4158. Operand string `protobuf:"bytes,2,opt,name=operand,proto3" json:"operand,omitempty"`
  4159. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  4160. }
  4161. func (x *QueryRequest_Filter) Reset() {
  4162. *x = QueryRequest_Filter{}
  4163. if protoimpl.UnsafeEnabled {
  4164. mi := &file_volume_server_proto_msgTypes[87]
  4165. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4166. ms.StoreMessageInfo(mi)
  4167. }
  4168. }
  4169. func (x *QueryRequest_Filter) String() string {
  4170. return protoimpl.X.MessageStringOf(x)
  4171. }
  4172. func (*QueryRequest_Filter) ProtoMessage() {}
  4173. func (x *QueryRequest_Filter) ProtoReflect() protoreflect.Message {
  4174. mi := &file_volume_server_proto_msgTypes[87]
  4175. if protoimpl.UnsafeEnabled && x != nil {
  4176. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4177. if ms.LoadMessageInfo() == nil {
  4178. ms.StoreMessageInfo(mi)
  4179. }
  4180. return ms
  4181. }
  4182. return mi.MessageOf(x)
  4183. }
  4184. // Deprecated: Use QueryRequest_Filter.ProtoReflect.Descriptor instead.
  4185. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) {
  4186. return file_volume_server_proto_rawDescGZIP(), []int{82, 0}
  4187. }
  4188. func (x *QueryRequest_Filter) GetField() string {
  4189. if x != nil {
  4190. return x.Field
  4191. }
  4192. return ""
  4193. }
  4194. func (x *QueryRequest_Filter) GetOperand() string {
  4195. if x != nil {
  4196. return x.Operand
  4197. }
  4198. return ""
  4199. }
  4200. func (x *QueryRequest_Filter) GetValue() string {
  4201. if x != nil {
  4202. return x.Value
  4203. }
  4204. return ""
  4205. }
  4206. type QueryRequest_InputSerialization struct {
  4207. state protoimpl.MessageState
  4208. sizeCache protoimpl.SizeCache
  4209. unknownFields protoimpl.UnknownFields
  4210. // NONE | GZIP | BZIP2
  4211. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType,proto3" json:"compression_type,omitempty"`
  4212. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput,proto3" json:"csv_input,omitempty"`
  4213. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput,proto3" json:"json_input,omitempty"`
  4214. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput,proto3" json:"parquet_input,omitempty"`
  4215. }
  4216. func (x *QueryRequest_InputSerialization) Reset() {
  4217. *x = QueryRequest_InputSerialization{}
  4218. if protoimpl.UnsafeEnabled {
  4219. mi := &file_volume_server_proto_msgTypes[88]
  4220. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4221. ms.StoreMessageInfo(mi)
  4222. }
  4223. }
  4224. func (x *QueryRequest_InputSerialization) String() string {
  4225. return protoimpl.X.MessageStringOf(x)
  4226. }
  4227. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  4228. func (x *QueryRequest_InputSerialization) ProtoReflect() protoreflect.Message {
  4229. mi := &file_volume_server_proto_msgTypes[88]
  4230. if protoimpl.UnsafeEnabled && x != nil {
  4231. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4232. if ms.LoadMessageInfo() == nil {
  4233. ms.StoreMessageInfo(mi)
  4234. }
  4235. return ms
  4236. }
  4237. return mi.MessageOf(x)
  4238. }
  4239. // Deprecated: Use QueryRequest_InputSerialization.ProtoReflect.Descriptor instead.
  4240. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  4241. return file_volume_server_proto_rawDescGZIP(), []int{82, 1}
  4242. }
  4243. func (x *QueryRequest_InputSerialization) GetCompressionType() string {
  4244. if x != nil {
  4245. return x.CompressionType
  4246. }
  4247. return ""
  4248. }
  4249. func (x *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  4250. if x != nil {
  4251. return x.CsvInput
  4252. }
  4253. return nil
  4254. }
  4255. func (x *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  4256. if x != nil {
  4257. return x.JsonInput
  4258. }
  4259. return nil
  4260. }
  4261. func (x *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  4262. if x != nil {
  4263. return x.ParquetInput
  4264. }
  4265. return nil
  4266. }
  4267. type QueryRequest_OutputSerialization struct {
  4268. state protoimpl.MessageState
  4269. sizeCache protoimpl.SizeCache
  4270. unknownFields protoimpl.UnknownFields
  4271. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput,proto3" json:"csv_output,omitempty"`
  4272. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput,proto3" json:"json_output,omitempty"`
  4273. }
  4274. func (x *QueryRequest_OutputSerialization) Reset() {
  4275. *x = QueryRequest_OutputSerialization{}
  4276. if protoimpl.UnsafeEnabled {
  4277. mi := &file_volume_server_proto_msgTypes[89]
  4278. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4279. ms.StoreMessageInfo(mi)
  4280. }
  4281. }
  4282. func (x *QueryRequest_OutputSerialization) String() string {
  4283. return protoimpl.X.MessageStringOf(x)
  4284. }
  4285. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  4286. func (x *QueryRequest_OutputSerialization) ProtoReflect() protoreflect.Message {
  4287. mi := &file_volume_server_proto_msgTypes[89]
  4288. if protoimpl.UnsafeEnabled && x != nil {
  4289. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4290. if ms.LoadMessageInfo() == nil {
  4291. ms.StoreMessageInfo(mi)
  4292. }
  4293. return ms
  4294. }
  4295. return mi.MessageOf(x)
  4296. }
  4297. // Deprecated: Use QueryRequest_OutputSerialization.ProtoReflect.Descriptor instead.
  4298. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  4299. return file_volume_server_proto_rawDescGZIP(), []int{82, 2}
  4300. }
  4301. func (x *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  4302. if x != nil {
  4303. return x.CsvOutput
  4304. }
  4305. return nil
  4306. }
  4307. func (x *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  4308. if x != nil {
  4309. return x.JsonOutput
  4310. }
  4311. return nil
  4312. }
  4313. type QueryRequest_InputSerialization_CSVInput struct {
  4314. state protoimpl.MessageState
  4315. sizeCache protoimpl.SizeCache
  4316. unknownFields protoimpl.UnknownFields
  4317. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo,proto3" json:"file_header_info,omitempty"` // Valid values: NONE | USE | IGNORE
  4318. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4319. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4320. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer,proto3" json:"quote_charactoer,omitempty"` // Default: "
  4321. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4322. Comments string `protobuf:"bytes,6,opt,name=comments,proto3" json:"comments,omitempty"` // Default: #
  4323. // If true, records might contain record delimiters within quote characters
  4324. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter,proto3" json:"allow_quoted_record_delimiter,omitempty"` // default False.
  4325. }
  4326. func (x *QueryRequest_InputSerialization_CSVInput) Reset() {
  4327. *x = QueryRequest_InputSerialization_CSVInput{}
  4328. if protoimpl.UnsafeEnabled {
  4329. mi := &file_volume_server_proto_msgTypes[90]
  4330. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4331. ms.StoreMessageInfo(mi)
  4332. }
  4333. }
  4334. func (x *QueryRequest_InputSerialization_CSVInput) String() string {
  4335. return protoimpl.X.MessageStringOf(x)
  4336. }
  4337. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  4338. func (x *QueryRequest_InputSerialization_CSVInput) ProtoReflect() protoreflect.Message {
  4339. mi := &file_volume_server_proto_msgTypes[90]
  4340. if protoimpl.UnsafeEnabled && x != nil {
  4341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4342. if ms.LoadMessageInfo() == nil {
  4343. ms.StoreMessageInfo(mi)
  4344. }
  4345. return ms
  4346. }
  4347. return mi.MessageOf(x)
  4348. }
  4349. // Deprecated: Use QueryRequest_InputSerialization_CSVInput.ProtoReflect.Descriptor instead.
  4350. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  4351. return file_volume_server_proto_rawDescGZIP(), []int{82, 1, 0}
  4352. }
  4353. func (x *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  4354. if x != nil {
  4355. return x.FileHeaderInfo
  4356. }
  4357. return ""
  4358. }
  4359. func (x *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  4360. if x != nil {
  4361. return x.RecordDelimiter
  4362. }
  4363. return ""
  4364. }
  4365. func (x *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  4366. if x != nil {
  4367. return x.FieldDelimiter
  4368. }
  4369. return ""
  4370. }
  4371. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteCharactoer() string {
  4372. if x != nil {
  4373. return x.QuoteCharactoer
  4374. }
  4375. return ""
  4376. }
  4377. func (x *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  4378. if x != nil {
  4379. return x.QuoteEscapeCharacter
  4380. }
  4381. return ""
  4382. }
  4383. func (x *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  4384. if x != nil {
  4385. return x.Comments
  4386. }
  4387. return ""
  4388. }
  4389. func (x *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  4390. if x != nil {
  4391. return x.AllowQuotedRecordDelimiter
  4392. }
  4393. return false
  4394. }
  4395. type QueryRequest_InputSerialization_JSONInput struct {
  4396. state protoimpl.MessageState
  4397. sizeCache protoimpl.SizeCache
  4398. unknownFields protoimpl.UnknownFields
  4399. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Valid values: DOCUMENT | LINES
  4400. }
  4401. func (x *QueryRequest_InputSerialization_JSONInput) Reset() {
  4402. *x = QueryRequest_InputSerialization_JSONInput{}
  4403. if protoimpl.UnsafeEnabled {
  4404. mi := &file_volume_server_proto_msgTypes[91]
  4405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4406. ms.StoreMessageInfo(mi)
  4407. }
  4408. }
  4409. func (x *QueryRequest_InputSerialization_JSONInput) String() string {
  4410. return protoimpl.X.MessageStringOf(x)
  4411. }
  4412. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  4413. func (x *QueryRequest_InputSerialization_JSONInput) ProtoReflect() protoreflect.Message {
  4414. mi := &file_volume_server_proto_msgTypes[91]
  4415. if protoimpl.UnsafeEnabled && x != nil {
  4416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4417. if ms.LoadMessageInfo() == nil {
  4418. ms.StoreMessageInfo(mi)
  4419. }
  4420. return ms
  4421. }
  4422. return mi.MessageOf(x)
  4423. }
  4424. // Deprecated: Use QueryRequest_InputSerialization_JSONInput.ProtoReflect.Descriptor instead.
  4425. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  4426. return file_volume_server_proto_rawDescGZIP(), []int{82, 1, 1}
  4427. }
  4428. func (x *QueryRequest_InputSerialization_JSONInput) GetType() string {
  4429. if x != nil {
  4430. return x.Type
  4431. }
  4432. return ""
  4433. }
  4434. type QueryRequest_InputSerialization_ParquetInput struct {
  4435. state protoimpl.MessageState
  4436. sizeCache protoimpl.SizeCache
  4437. unknownFields protoimpl.UnknownFields
  4438. }
  4439. func (x *QueryRequest_InputSerialization_ParquetInput) Reset() {
  4440. *x = QueryRequest_InputSerialization_ParquetInput{}
  4441. if protoimpl.UnsafeEnabled {
  4442. mi := &file_volume_server_proto_msgTypes[92]
  4443. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4444. ms.StoreMessageInfo(mi)
  4445. }
  4446. }
  4447. func (x *QueryRequest_InputSerialization_ParquetInput) String() string {
  4448. return protoimpl.X.MessageStringOf(x)
  4449. }
  4450. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  4451. func (x *QueryRequest_InputSerialization_ParquetInput) ProtoReflect() protoreflect.Message {
  4452. mi := &file_volume_server_proto_msgTypes[92]
  4453. if protoimpl.UnsafeEnabled && x != nil {
  4454. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4455. if ms.LoadMessageInfo() == nil {
  4456. ms.StoreMessageInfo(mi)
  4457. }
  4458. return ms
  4459. }
  4460. return mi.MessageOf(x)
  4461. }
  4462. // Deprecated: Use QueryRequest_InputSerialization_ParquetInput.ProtoReflect.Descriptor instead.
  4463. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  4464. return file_volume_server_proto_rawDescGZIP(), []int{82, 1, 2}
  4465. }
  4466. type QueryRequest_OutputSerialization_CSVOutput struct {
  4467. state protoimpl.MessageState
  4468. sizeCache protoimpl.SizeCache
  4469. unknownFields protoimpl.UnknownFields
  4470. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields,proto3" json:"quote_fields,omitempty"` // Valid values: ALWAYS | ASNEEDED
  4471. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"` // Default: \n
  4472. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter,proto3" json:"field_delimiter,omitempty"` // Default: ,
  4473. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer,proto3" json:"quote_charactoer,omitempty"` // Default: "
  4474. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter,proto3" json:"quote_escape_character,omitempty"` // Default: "
  4475. }
  4476. func (x *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  4477. *x = QueryRequest_OutputSerialization_CSVOutput{}
  4478. if protoimpl.UnsafeEnabled {
  4479. mi := &file_volume_server_proto_msgTypes[93]
  4480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4481. ms.StoreMessageInfo(mi)
  4482. }
  4483. }
  4484. func (x *QueryRequest_OutputSerialization_CSVOutput) String() string {
  4485. return protoimpl.X.MessageStringOf(x)
  4486. }
  4487. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  4488. func (x *QueryRequest_OutputSerialization_CSVOutput) ProtoReflect() protoreflect.Message {
  4489. mi := &file_volume_server_proto_msgTypes[93]
  4490. if protoimpl.UnsafeEnabled && x != nil {
  4491. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4492. if ms.LoadMessageInfo() == nil {
  4493. ms.StoreMessageInfo(mi)
  4494. }
  4495. return ms
  4496. }
  4497. return mi.MessageOf(x)
  4498. }
  4499. // Deprecated: Use QueryRequest_OutputSerialization_CSVOutput.ProtoReflect.Descriptor instead.
  4500. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  4501. return file_volume_server_proto_rawDescGZIP(), []int{82, 2, 0}
  4502. }
  4503. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  4504. if x != nil {
  4505. return x.QuoteFields
  4506. }
  4507. return ""
  4508. }
  4509. func (x *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  4510. if x != nil {
  4511. return x.RecordDelimiter
  4512. }
  4513. return ""
  4514. }
  4515. func (x *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  4516. if x != nil {
  4517. return x.FieldDelimiter
  4518. }
  4519. return ""
  4520. }
  4521. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharactoer() string {
  4522. if x != nil {
  4523. return x.QuoteCharactoer
  4524. }
  4525. return ""
  4526. }
  4527. func (x *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  4528. if x != nil {
  4529. return x.QuoteEscapeCharacter
  4530. }
  4531. return ""
  4532. }
  4533. type QueryRequest_OutputSerialization_JSONOutput struct {
  4534. state protoimpl.MessageState
  4535. sizeCache protoimpl.SizeCache
  4536. unknownFields protoimpl.UnknownFields
  4537. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter,proto3" json:"record_delimiter,omitempty"`
  4538. }
  4539. func (x *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  4540. *x = QueryRequest_OutputSerialization_JSONOutput{}
  4541. if protoimpl.UnsafeEnabled {
  4542. mi := &file_volume_server_proto_msgTypes[94]
  4543. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4544. ms.StoreMessageInfo(mi)
  4545. }
  4546. }
  4547. func (x *QueryRequest_OutputSerialization_JSONOutput) String() string {
  4548. return protoimpl.X.MessageStringOf(x)
  4549. }
  4550. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  4551. func (x *QueryRequest_OutputSerialization_JSONOutput) ProtoReflect() protoreflect.Message {
  4552. mi := &file_volume_server_proto_msgTypes[94]
  4553. if protoimpl.UnsafeEnabled && x != nil {
  4554. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4555. if ms.LoadMessageInfo() == nil {
  4556. ms.StoreMessageInfo(mi)
  4557. }
  4558. return ms
  4559. }
  4560. return mi.MessageOf(x)
  4561. }
  4562. // Deprecated: Use QueryRequest_OutputSerialization_JSONOutput.ProtoReflect.Descriptor instead.
  4563. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  4564. return file_volume_server_proto_rawDescGZIP(), []int{82, 2, 1}
  4565. }
  4566. func (x *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  4567. if x != nil {
  4568. return x.RecordDelimiter
  4569. }
  4570. return ""
  4571. }
  4572. var File_volume_server_proto protoreflect.FileDescriptor
  4573. var file_volume_server_proto_rawDesc = []byte{
  4574. 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  4575. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  4576. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x1a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e,
  4577. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5b, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65,
  4578. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66,
  4579. 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x66,
  4580. 0x69, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x63,
  4581. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28,
  4582. 0x08, 0x52, 0x0f, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x43, 0x68, 0x65,
  4583. 0x63, 0x6b, 0x22, 0x4f, 0x0a, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74,
  4584. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x07, 0x72, 0x65, 0x73,
  4585. 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x6f, 0x6c,
  4586. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65,
  4587. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
  4588. 0x6c, 0x74, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
  4589. 0x73, 0x75, 0x6c, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18,
  4590. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  4591. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73,
  4592. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03,
  4593. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73,
  4594. 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12,
  4595. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  4596. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x07, 0x0a, 0x05, 0x45, 0x6d, 0x70,
  4597. 0x74, 0x79, 0x22, 0x37, 0x0a, 0x18, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4598. 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4599. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4600. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x19, 0x56,
  4601. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b,
  4602. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x67, 0x61, 0x72, 0x62,
  4603. 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52,
  4604. 0x0c, 0x67, 0x61, 0x72, 0x62, 0x61, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x5b, 0x0a,
  4605. 0x1a, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d,
  4606. 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4607. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4608. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61,
  4609. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70,
  4610. 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x22, 0x46, 0x0a, 0x1b, 0x56, 0x61,
  4611. 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63,
  4612. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f,
  4613. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01,
  4614. 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74,
  4615. 0x65, 0x73, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  4616. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4617. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4618. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x1a,
  4619. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d,
  4620. 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73,
  4621. 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  4622. 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x39, 0x0a, 0x1a,
  4623. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61,
  4624. 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4625. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4626. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x61, 0x63, 0x75, 0x75,
  4627. 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65,
  4628. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  4629. 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4630. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  4631. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4632. 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
  4633. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xfb, 0x01,
  4634. 0x0a, 0x15, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4635. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4636. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  4637. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4638. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4639. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c, 0x6c, 0x6f, 0x63,
  4640. 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x65, 0x61, 0x6c,
  4641. 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  4642. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70,
  4643. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18,
  4644. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x32, 0x0a, 0x16, 0x6d, 0x65,
  4645. 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x69, 0x7a,
  4646. 0x65, 0x5f, 0x6d, 0x62, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x6d, 0x65, 0x6d, 0x6f,
  4647. 0x72, 0x79, 0x4d, 0x61, 0x70, 0x4d, 0x61, 0x78, 0x53, 0x69, 0x7a, 0x65, 0x4d, 0x62, 0x12, 0x1b,
  4648. 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  4649. 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x41,
  4650. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73,
  4651. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  4652. 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4653. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4654. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0xfb, 0x01,
  4655. 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74,
  4656. 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4657. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4658. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4659. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  4660. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  4661. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  4662. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c,
  4663. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x74,
  4664. 0x61, 0x69, 0x6c, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  4665. 0x52, 0x0a, 0x74, 0x61, 0x69, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x29, 0x0a, 0x10,
  4666. 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e,
  4667. 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52,
  4668. 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x78, 0x5f, 0x66,
  4669. 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
  4670. 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x56, 0x0a, 0x1c, 0x56,
  4671. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
  4672. 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76,
  4673. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  4674. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63,
  4675. 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63,
  4676. 0x65, 0x4e, 0x73, 0x22, 0x42, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63,
  4677. 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70,
  4678. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
  4679. 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x65,
  4680. 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x31, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4681. 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a,
  4682. 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
  4683. 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x56, 0x6f,
  4684. 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4685. 0x65, 0x22, 0x33, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75,
  4686. 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4687. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4688. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4689. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4690. 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  4691. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4692. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4693. 0x65, 0x49, 0x64, 0x22, 0x16, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c,
  4694. 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56,
  4695. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c,
  4696. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4697. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4698. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d,
  4699. 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4700. 0x6e, 0x73, 0x65, 0x22, 0x38, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72,
  4701. 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4702. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4703. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x1c, 0x0a,
  4704. 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61,
  4705. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x0a, 0x16, 0x56,
  4706. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65,
  4707. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4708. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4709. 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  4710. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61,
  4711. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  4712. 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  4713. 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  4714. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x32, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  4715. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  4716. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4717. 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x22, 0x38, 0x0a, 0x14, 0x56, 0x6f, 0x6c,
  4718. 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4719. 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c,
  4720. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x4f,
  4721. 0x6e, 0x6c, 0x79, 0x22, 0xcb, 0x01, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  4722. 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4723. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4724. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4725. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  4726. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63,
  4727. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70,
  4728. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18,
  4729. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x6f,
  4730. 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x05,
  4731. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61,
  4732. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70,
  4733. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70,
  4734. 0x65, 0x22, 0x68, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52,
  4735. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f,
  4736. 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01,
  4737. 0x28, 0x04, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x41, 0x74,
  4738. 0x4e, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f,
  4739. 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x6f,
  4740. 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x22, 0x94, 0x02, 0x0a, 0x0f,
  4741. 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4742. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4743. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03,
  4744. 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x78, 0x74, 0x12, 0x2f,
  4745. 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x76,
  4746. 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f, 0x6d,
  4747. 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  4748. 0x1f, 0x0a, 0x0b, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04,
  4749. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74,
  4750. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05,
  4751. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4752. 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4753. 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75,
  4754. 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x1c, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x73, 0x6f, 0x75,
  4755. 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x66, 0x6f, 0x75,
  4756. 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65,
  4757. 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x6f, 0x74, 0x46, 0x6f, 0x75,
  4758. 0x6e, 0x64, 0x22, 0x5b, 0x0a, 0x10, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65,
  4759. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63,
  4760. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x66, 0x69,
  4761. 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0e, 0x6d, 0x6f, 0x64,
  4762. 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  4763. 0x03, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x73, 0x4e, 0x73, 0x22,
  4764. 0x7d, 0x0a, 0x15, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f,
  4765. 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75,
  4766. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c,
  4767. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f,
  4768. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  4769. 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01,
  4770. 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69,
  4771. 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x39,
  4772. 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62,
  4773. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64,
  4774. 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x62, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e,
  4775. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x22, 0x87, 0x01, 0x0a, 0x16, 0x57, 0x72,
  4776. 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71,
  4777. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4778. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4779. 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02,
  4780. 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x12,
  4781. 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69,
  4782. 0x7a, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c, 0x6f,
  4783. 0x62, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  4784. 0x6c, 0x6f, 0x62, 0x22, 0x19, 0x0a, 0x17, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64,
  4785. 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36,
  4786. 0x0a, 0x15, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73,
  4787. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4788. 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x76, 0x6f, 0x6c,
  4789. 0x75, 0x6d, 0x65, 0x49, 0x64, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x64, 0x41,
  4790. 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4791. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  4792. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b,
  4793. 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  4794. 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63,
  4795. 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f,
  4796. 0x6b, 0x69, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6c,
  4797. 0x6f, 0x62, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  4798. 0x42, 0x6c, 0x6f, 0x62, 0x22, 0x83, 0x01, 0x0a, 0x17, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  4799. 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  4800. 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  4801. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a,
  4802. 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
  4803. 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c, 0x65,
  4804. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73,
  4805. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65,
  4806. 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x18, 0x56,
  4807. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52,
  4808. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x65, 0x64, 0x6c,
  4809. 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c,
  4810. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b,
  4811. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28,
  4812. 0x0c, 0x52, 0x0a, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x22, 0x0a,
  4813. 0x0d, 0x69, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x18, 0x03,
  4814. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x68, 0x75, 0x6e,
  4815. 0x6b, 0x22, 0xb7, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c,
  4816. 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4817. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4818. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08,
  4819. 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07,
  4820. 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x69, 0x64, 0x6c, 0x65, 0x5f,
  4821. 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18,
  4822. 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x69, 0x64, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x6f,
  4823. 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x6f, 0x75,
  4824. 0x72, 0x63, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  4825. 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x56,
  4826. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0x1c, 0x0a, 0x1a, 0x56,
  4827. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
  4828. 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c,
  4829. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72,
  4830. 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f,
  4831. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76,
  4832. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  4833. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  4834. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4835. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74,
  4836. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5b, 0x0a, 0x1c, 0x56, 0x6f, 0x6c,
  4837. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69,
  4838. 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c,
  4839. 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f,
  4840. 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  4841. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
  4842. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4b, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4843. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52,
  4844. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x72, 0x65, 0x62, 0x75, 0x69,
  4845. 0x6c, 0x74, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03,
  4846. 0x28, 0x0d, 0x52, 0x0f, 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64,
  4847. 0x49, 0x64, 0x73, 0x22, 0x8b, 0x02, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4848. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  4849. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  4850. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e,
  4851. 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  4852. 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b,
  4853. 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  4854. 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x63,
  4855. 0x6f, 0x70, 0x79, 0x5f, 0x65, 0x63, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01,
  4856. 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x12,
  4857. 0x28, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e,
  4858. 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63,
  4859. 0x65, 0x44, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x63, 0x6f, 0x70,
  4860. 0x79, 0x5f, 0x65, 0x63, 0x6a, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08,
  4861. 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x45, 0x63, 0x6a, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x22, 0x0a,
  4862. 0x0d, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x76, 0x69, 0x66, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x07,
  4863. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x56, 0x69, 0x66, 0x46, 0x69, 0x6c,
  4864. 0x65, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  4865. 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4866. 0x77, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4867. 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b,
  4868. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  4869. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  4870. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  4871. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73,
  4872. 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08,
  4873. 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1e, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75,
  4874. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  4875. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x76, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75,
  4876. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52,
  4877. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4878. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4879. 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4880. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  4881. 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73,
  4882. 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73,
  4883. 0x22, 0x1d, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  4884. 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  4885. 0x58, 0x0a, 0x1c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  4886. 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  4887. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  4888. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
  4889. 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52,
  4890. 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x73, 0x22, 0x1f, 0x0a, 0x1d, 0x56, 0x6f, 0x6c,
  4891. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75,
  4892. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x99, 0x01, 0x0a, 0x18, 0x56,
  4893. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64,
  4894. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  4895. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75,
  4896. 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x64,
  4897. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x64, 0x12,
  4898. 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  4899. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18,
  4900. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x66,
  4901. 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66,
  4902. 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x22, 0x4e, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4903. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
  4904. 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28,
  4905. 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64, 0x65,
  4906. 0x6c, 0x65, 0x74, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x44,
  4907. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x22, 0x8d, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  4908. 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71,
  4909. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69,
  4910. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49,
  4911. 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  4912. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  4913. 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20,
  4914. 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x18, 0x0a, 0x07,
  4915. 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76,
  4916. 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x1c, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4917. 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  4918. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x5c, 0x0a, 0x1d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  4919. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  4920. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  4921. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  4922. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4923. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  4924. 0x6f, 0x6e, 0x22, 0x20, 0x0a, 0x1e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  4925. 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70,
  4926. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3a, 0x0a, 0x1b, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75,
  4927. 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  4928. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64,
  4929. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64,
  4930. 0x22, 0x8a, 0x03, 0x0a, 0x1c, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46,
  4931. 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  4932. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  4933. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x3b,
  4934. 0x0a, 0x1a, 0x69, 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73,
  4935. 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01,
  4936. 0x28, 0x04, 0x52, 0x17, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x73,
  4937. 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x69,
  4938. 0x64, 0x78, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01,
  4939. 0x28, 0x04, 0x52, 0x0b, 0x69, 0x64, 0x78, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12,
  4940. 0x3b, 0x0a, 0x1a, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  4941. 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x04, 0x20,
  4942. 0x01, 0x28, 0x04, 0x52, 0x17, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65,
  4943. 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0d,
  4944. 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20,
  4945. 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65,
  4946. 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06,
  4947. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  4948. 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65,
  4949. 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x63, 0x6f,
  4950. 0x6d, 0x70, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e,
  4951. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08,
  4952. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  4953. 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20,
  4954. 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0xbb, 0x01,
  4955. 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03,
  4956. 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x64, 0x69, 0x72, 0x12, 0x10,
  4957. 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c,
  4958. 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04,
  4959. 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01,
  4960. 0x28, 0x04, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x63,
  4961. 0x65, 0x6e, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0b,
  4962. 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x46, 0x72, 0x65, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70,
  4963. 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
  4964. 0x02, 0x52, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x64, 0x12, 0x1b,
  4965. 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  4966. 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa3, 0x01, 0x0a, 0x09,
  4967. 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x6f, 0x72,
  4968. 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x67,
  4969. 0x6f, 0x72, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c,
  4970. 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x75,
  4971. 0x73, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12,
  4972. 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66,
  4973. 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28,
  4974. 0x04, 0x52, 0x04, 0x73, 0x65, 0x6c, 0x66, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x65, 0x61, 0x70, 0x18,
  4975. 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x68, 0x65, 0x61, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x73,
  4976. 0x74, 0x61, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x74, 0x61, 0x63,
  4977. 0x6b, 0x22, 0xd8, 0x01, 0x0a, 0x0a, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65,
  4978. 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65,
  4979. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x54,
  4980. 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x5f, 0x69,
  4981. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  4982. 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  4983. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04,
  4984. 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x1b, 0x0a, 0x09,
  4985. 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  4986. 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f, 0x64,
  4987. 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  4988. 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c,
  4989. 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28,
  4990. 0x09, 0x52, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x7c, 0x0a, 0x0a,
  4991. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x32, 0x0a, 0x05, 0x66, 0x69,
  4992. 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  4993. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d,
  4994. 0x6f, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x18,
  4995. 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52,
  4996. 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c,
  4997. 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72,
  4998. 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xc8, 0x01, 0x0a, 0x20, 0x56,
  4999. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74,
  5000. 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5001. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5002. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
  5003. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  5004. 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x0a, 0x18,
  5005. 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x63, 0x6b,
  5006. 0x65, 0x6e, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x16,
  5007. 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x63, 0x6b, 0x65,
  5008. 0x6e, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x6c,
  5009. 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20,
  5010. 0x01, 0x28, 0x08, 0x52, 0x10, 0x6b, 0x65, 0x65, 0x70, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x44, 0x61,
  5011. 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22, 0x73, 0x0a, 0x21, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5012. 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f,
  5013. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72,
  5014. 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  5015. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63,
  5016. 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18,
  5017. 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64,
  5018. 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x92, 0x01, 0x0a, 0x22, 0x56,
  5019. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74,
  5020. 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5021. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5022. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e,
  5023. 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  5024. 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2f,
  5025. 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x64, 0x61,
  5026. 0x74, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x6b, 0x65,
  5027. 0x65, 0x70, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x44, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x22,
  5028. 0x75, 0x0a, 0x23, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76,
  5029. 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65,
  5030. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
  5031. 0x73, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x63, 0x65,
  5032. 0x73, 0x73, 0x65, 0x64, 0x12, 0x30, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65,
  5033. 0x64, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  5034. 0x02, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x50, 0x65, 0x72, 0x63,
  5035. 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5036. 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  5037. 0x65, 0x73, 0x74, 0x22, 0xa1, 0x01, 0x0a, 0x1a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  5038. 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5039. 0x73, 0x65, 0x12, 0x41, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
  5040. 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5041. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x69, 0x73,
  5042. 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x64, 0x69, 0x73, 0x6b, 0x53, 0x74, 0x61,
  5043. 0x74, 0x75, 0x73, 0x65, 0x73, 0x12, 0x40, 0x0a, 0x0d, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f,
  5044. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x76,
  5045. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5046. 0x4d, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x6d, 0x65, 0x6d, 0x6f, 0x72,
  5047. 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x1a, 0x0a, 0x18, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5048. 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75,
  5049. 0x65, 0x73, 0x74, 0x22, 0x1b, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72,
  5050. 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  5051. 0x22, 0xdc, 0x03, 0x0a, 0x1a, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69,
  5052. 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5053. 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  5054. 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
  5055. 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
  5056. 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f,
  5057. 0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69,
  5058. 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  5059. 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a,
  5060. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x50, 0x0a,
  5061. 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32,
  5062. 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5063. 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65,
  5064. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65,
  5065. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x52, 0x08, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x73, 0x12,
  5066. 0x12, 0x0a, 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61,
  5067. 0x75, 0x74, 0x68, 0x12, 0x36, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x6f,
  5068. 0x6e, 0x66, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  5069. 0x65, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x52,
  5070. 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x49, 0x0a, 0x0f, 0x72,
  5071. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x10,
  5072. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x70, 0x62,
  5073. 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x6f,
  5074. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4c, 0x6f,
  5075. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x57, 0x0a, 0x07, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x63,
  5076. 0x61, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  5077. 0x75, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x75, 0x72,
  5078. 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x55,
  5079. 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18,
  5080. 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x72, 0x70, 0x63, 0x50, 0x6f, 0x72, 0x74, 0x22,
  5081. 0x1d, 0x0a, 0x1b, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65,
  5082. 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xf8,
  5083. 0x0c, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  5084. 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20,
  5085. 0x03, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12,
  5086. 0x22, 0x0a, 0x0d, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73,
  5087. 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x66, 0x72, 0x6f, 0x6d, 0x46, 0x69, 0x6c, 0x65,
  5088. 0x49, 0x64, 0x73, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20,
  5089. 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5090. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  5091. 0x65, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74,
  5092. 0x65, 0x72, 0x12, 0x62, 0x0a, 0x13, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x72, 0x69,
  5093. 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
  5094. 0x31, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5095. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  5096. 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69,
  5097. 0x6f, 0x6e, 0x52, 0x12, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69,
  5098. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x14, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5099. 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05,
  5100. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5101. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71,
  5102. 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  5103. 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x13, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5104. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x4e, 0x0a,
  5105. 0x06, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64,
  5106. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x18, 0x0a,
  5107. 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  5108. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  5109. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x1a, 0xd5, 0x05,
  5110. 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61,
  5111. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
  5112. 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  5113. 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
  5114. 0x57, 0x0a, 0x09, 0x63, 0x73, 0x76, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01,
  5115. 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5116. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5117. 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  5118. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x08,
  5119. 0x63, 0x73, 0x76, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x5a, 0x0a, 0x0a, 0x6a, 0x73, 0x6f, 0x6e,
  5120. 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x76,
  5121. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5122. 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70,
  5123. 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  5124. 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x09, 0x6a, 0x73, 0x6f, 0x6e, 0x49,
  5125. 0x6e, 0x70, 0x75, 0x74, 0x12, 0x63, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x5f,
  5126. 0x69, 0x6e, 0x70, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x76, 0x6f,
  5127. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51,
  5128. 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x70, 0x75,
  5129. 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50,
  5130. 0x61, 0x72, 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x52, 0x0c, 0x70, 0x61, 0x72,
  5131. 0x71, 0x75, 0x65, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xc8, 0x02, 0x0a, 0x08, 0x43, 0x53,
  5132. 0x56, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x68,
  5133. 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  5134. 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  5135. 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d,
  5136. 0x69, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f,
  5137. 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66,
  5138. 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03,
  5139. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d,
  5140. 0x69, 0x74, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68,
  5141. 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  5142. 0x71, 0x75, 0x6f, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x12,
  5143. 0x34, 0x0a, 0x16, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f,
  5144. 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  5145. 0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72,
  5146. 0x61, 0x63, 0x74, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74,
  5147. 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74,
  5148. 0x73, 0x12, 0x41, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x71, 0x75, 0x6f, 0x74, 0x65,
  5149. 0x64, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  5150. 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x51,
  5151. 0x75, 0x6f, 0x74, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d,
  5152. 0x69, 0x74, 0x65, 0x72, 0x1a, 0x1f, 0x0a, 0x09, 0x4a, 0x53, 0x4f, 0x4e, 0x49, 0x6e, 0x70, 0x75,
  5153. 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  5154. 0x04, 0x74, 0x79, 0x70, 0x65, 0x1a, 0x0e, 0x0a, 0x0c, 0x50, 0x61, 0x72, 0x71, 0x75, 0x65, 0x74,
  5155. 0x49, 0x6e, 0x70, 0x75, 0x74, 0x1a, 0xf1, 0x03, 0x0a, 0x13, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74,
  5156. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5b, 0x0a,
  5157. 0x0a, 0x63, 0x73, 0x76, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  5158. 0x0b, 0x32, 0x3c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5159. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5160. 0x74, 0x2e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a,
  5161. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x52,
  5162. 0x09, 0x63, 0x73, 0x76, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x5e, 0x0a, 0x0b, 0x6a, 0x73,
  5163. 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  5164. 0x3d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5165. 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  5166. 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74,
  5167. 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x52, 0x0a,
  5168. 0x6a, 0x73, 0x6f, 0x6e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x1a, 0xe3, 0x01, 0x0a, 0x09, 0x43,
  5169. 0x53, 0x56, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x71, 0x75, 0x6f, 0x74,
  5170. 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  5171. 0x71, 0x75, 0x6f, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x72,
  5172. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18,
  5173. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x6c,
  5174. 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12, 0x27, 0x0a, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f,
  5175. 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  5176. 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x12,
  5177. 0x29, 0x0a, 0x10, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74,
  5178. 0x6f, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x71, 0x75, 0x6f, 0x74, 0x65,
  5179. 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x6f, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x71, 0x75,
  5180. 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x61,
  5181. 0x63, 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x71, 0x75, 0x6f, 0x74,
  5182. 0x65, 0x45, 0x73, 0x63, 0x61, 0x70, 0x65, 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
  5183. 0x1a, 0x37, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x29,
  5184. 0x0a, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  5185. 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64,
  5186. 0x44, 0x65, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x22, 0x29, 0x0a, 0x0d, 0x51, 0x75, 0x65,
  5187. 0x72, 0x69, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65,
  5188. 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x72, 0x65, 0x63,
  5189. 0x6f, 0x72, 0x64, 0x73, 0x22, 0x55, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65,
  5190. 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5191. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  5192. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1b,
  5193. 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  5194. 0x04, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x22, 0xae, 0x01, 0x0a, 0x1a,
  5195. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74,
  5196. 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x65,
  5197. 0x65, 0x64, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x6e,
  5198. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69,
  5199. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12,
  5200. 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x73,
  5201. 0x69, 0x7a, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69,
  5202. 0x66, 0x69, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74,
  5203. 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x72, 0x63, 0x18,
  5204. 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x63, 0x72, 0x63, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x74,
  5205. 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x32, 0x8c, 0x23, 0x0a,
  5206. 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x5c, 0x0a,
  5207. 0x0b, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x24, 0x2e, 0x76,
  5208. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5209. 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  5210. 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5211. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x44, 0x65, 0x6c, 0x65, 0x74,
  5212. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56,
  5213. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b,
  5214. 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5215. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5216. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76,
  5217. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  5218. 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x68, 0x65, 0x63,
  5219. 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x76, 0x0a, 0x13, 0x56,
  5220. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61,
  5221. 0x63, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5222. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75,
  5223. 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5224. 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5225. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5226. 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5227. 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c,
  5228. 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5229. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63,
  5230. 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52,
  5231. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5232. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d,
  5233. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x70,
  5234. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d,
  5235. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x12, 0x2c, 0x2e,
  5236. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5237. 0x2e, 0x56, 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65,
  5238. 0x61, 0x6e, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f,
  5239. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5240. 0x61, 0x63, 0x75, 0x75, 0x6d, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x6e,
  5241. 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x10,
  5242. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  5243. 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5244. 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  5245. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f,
  5246. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x44,
  5247. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  5248. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x41, 0x6c, 0x6c,
  5249. 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x27, 0x2e, 0x76, 0x6f,
  5250. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41,
  5251. 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71,
  5252. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5253. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x65,
  5254. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  5255. 0x12, 0x6b, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74,
  5256. 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5257. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79,
  5258. 0x6e, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  5259. 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5260. 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x53, 0x74, 0x61,
  5261. 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7c, 0x0a,
  5262. 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74,
  5263. 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5264. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5265. 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52,
  5266. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5267. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5268. 0x49, 0x6e, 0x63, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x70, 0x79, 0x52,
  5269. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x5c, 0x0a, 0x0b, 0x56,
  5270. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24, 0x2e, 0x76, 0x6f, 0x6c,
  5271. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5272. 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5273. 0x1a, 0x25, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5274. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52,
  5275. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x62, 0x0a, 0x0d, 0x56, 0x6f, 0x6c,
  5276. 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x2e, 0x76, 0x6f, 0x6c,
  5277. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5278. 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  5279. 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5280. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x6e, 0x6d, 0x6f,
  5281. 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a,
  5282. 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x25, 0x2e,
  5283. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5284. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71,
  5285. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5286. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x44, 0x65,
  5287. 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x71,
  5288. 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64,
  5289. 0x6f, 0x6e, 0x6c, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5290. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61,
  5291. 0x72, 0x6b, 0x52, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5292. 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5293. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x52,
  5294. 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5295. 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57,
  5296. 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5297. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5298. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71,
  5299. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5300. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4d, 0x61,
  5301. 0x72, 0x6b, 0x57, 0x72, 0x69, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5302. 0x73, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f,
  5303. 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5304. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5305. 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5306. 0x74, 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5307. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  5308. 0x67, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f,
  5309. 0x0a, 0x0c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x25,
  5310. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5311. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  5312. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5313. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5314. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5315. 0x5b, 0x0a, 0x0a, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x23, 0x2e,
  5316. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5317. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  5318. 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5319. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x43, 0x6f, 0x70, 0x79,
  5320. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x77, 0x0a, 0x14,
  5321. 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74,
  5322. 0x61, 0x74, 0x75, 0x73, 0x12, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5323. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75,
  5324. 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  5325. 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5326. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5327. 0x65, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5328. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x08, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c,
  5329. 0x65, 0x12, 0x21, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5330. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71,
  5331. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5332. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x69, 0x6c, 0x65,
  5333. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x65, 0x0a, 0x0e,
  5334. 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x27,
  5335. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5336. 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62,
  5337. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5338. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x4e,
  5339. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5340. 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x0f, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64,
  5341. 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x12, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5342. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e,
  5343. 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42, 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5344. 0x1a, 0x29, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5345. 0x5f, 0x70, 0x62, 0x2e, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x42,
  5346. 0x6c, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a,
  5347. 0x0e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x12,
  5348. 0x27, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  5349. 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5350. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5351. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x61, 0x64,
  5352. 0x41, 0x6c, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5353. 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x6d, 0x0a, 0x10, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5354. 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x76, 0x6f, 0x6c,
  5355. 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f,
  5356. 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65,
  5357. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5358. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5359. 0x61, 0x69, 0x6c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5360. 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54,
  5361. 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x76, 0x6f,
  5362. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5363. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
  5364. 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
  5365. 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75,
  5366. 0x6d, 0x65, 0x54, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x65,
  5367. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75,
  5368. 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61,
  5369. 0x74, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5370. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5371. 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
  5372. 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5373. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5374. 0x68, 0x61, 0x72, 0x64, 0x73, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73,
  5375. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5376. 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64,
  5377. 0x12, 0x2e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5378. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5379. 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  5380. 0x1a, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5381. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5382. 0x64, 0x73, 0x52, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  5383. 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53,
  5384. 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5385. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5386. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52,
  5387. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5388. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5389. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x52, 0x65, 0x73, 0x70,
  5390. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x14, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5391. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2d,
  5392. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5393. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5394. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e,
  5395. 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62,
  5396. 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x44,
  5397. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  5398. 0x74, 0x0a, 0x13, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64,
  5399. 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5400. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5401. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71,
  5402. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5403. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63,
  5404. 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5405. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x15, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45,
  5406. 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2e,
  5407. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5408. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5409. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f,
  5410. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5411. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73,
  5412. 0x55, 0x6e, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5413. 0x00, 0x12, 0x70, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5414. 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5415. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5416. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  5417. 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76,
  5418. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68,
  5419. 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  5420. 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42,
  5421. 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5422. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5423. 0x75, 0x6d, 0x65, 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52,
  5424. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5425. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5426. 0x45, 0x63, 0x42, 0x6c, 0x6f, 0x62, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  5427. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x16, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5428. 0x45, 0x63, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5429. 0x12, 0x2f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5430. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61, 0x72,
  5431. 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  5432. 0x74, 0x1a, 0x30, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
  5433. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x45, 0x63, 0x53, 0x68, 0x61,
  5434. 0x72, 0x64, 0x73, 0x54, 0x6f, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  5435. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x88, 0x01, 0x0a, 0x19, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5436. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d,
  5437. 0x6f, 0x74, 0x65, 0x12, 0x32, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5438. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65,
  5439. 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5440. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5441. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5442. 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x54, 0x6f, 0x52, 0x65,
  5443. 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
  5444. 0x12, 0x8e, 0x01, 0x0a, 0x1b, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d,
  5445. 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65,
  5446. 0x12, 0x34, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  5447. 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f,
  5448. 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52,
  5449. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f,
  5450. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5451. 0x54, 0x69, 0x65, 0x72, 0x4d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52,
  5452. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30,
  5453. 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65,
  5454. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  5455. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  5456. 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  5457. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65,
  5458. 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  5459. 0x72, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5460. 0x73, 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x11, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53, 0x65,
  5461. 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x12, 0x2a, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5462. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c,
  5463. 0x75, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65,
  5464. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73,
  5465. 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x53,
  5466. 0x65, 0x72, 0x76, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  5467. 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x13, 0x46, 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64,
  5468. 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x12, 0x2c, 0x2e, 0x76, 0x6f,
  5469. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46,
  5470. 0x65, 0x74, 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64,
  5471. 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x76, 0x6f, 0x6c, 0x75,
  5472. 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x65, 0x74,
  5473. 0x63, 0x68, 0x41, 0x6e, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65,
  5474. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x05, 0x51, 0x75,
  5475. 0x65, 0x72, 0x79, 0x12, 0x1e, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5476. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  5477. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5478. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x64, 0x53, 0x74,
  5479. 0x72, 0x69, 0x70, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x71, 0x0a, 0x12, 0x56, 0x6f, 0x6c, 0x75,
  5480. 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b,
  5481. 0x2e, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70,
  5482. 0x62, 0x2e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74,
  5483. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x76, 0x6f,
  5484. 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x56,
  5485. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x4e, 0x65, 0x65, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
  5486. 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x39, 0x5a, 0x37, 0x67,
  5487. 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x68, 0x72, 0x69, 0x73, 0x6c,
  5488. 0x75, 0x73, 0x66, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x77, 0x65,
  5489. 0x65, 0x64, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72,
  5490. 0x76, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  5491. }
  5492. var (
  5493. file_volume_server_proto_rawDescOnce sync.Once
  5494. file_volume_server_proto_rawDescData = file_volume_server_proto_rawDesc
  5495. )
  5496. func file_volume_server_proto_rawDescGZIP() []byte {
  5497. file_volume_server_proto_rawDescOnce.Do(func() {
  5498. file_volume_server_proto_rawDescData = protoimpl.X.CompressGZIP(file_volume_server_proto_rawDescData)
  5499. })
  5500. return file_volume_server_proto_rawDescData
  5501. }
  5502. var file_volume_server_proto_msgTypes = make([]protoimpl.MessageInfo, 95)
  5503. var file_volume_server_proto_goTypes = []interface{}{
  5504. (*BatchDeleteRequest)(nil), // 0: volume_server_pb.BatchDeleteRequest
  5505. (*BatchDeleteResponse)(nil), // 1: volume_server_pb.BatchDeleteResponse
  5506. (*DeleteResult)(nil), // 2: volume_server_pb.DeleteResult
  5507. (*Empty)(nil), // 3: volume_server_pb.Empty
  5508. (*VacuumVolumeCheckRequest)(nil), // 4: volume_server_pb.VacuumVolumeCheckRequest
  5509. (*VacuumVolumeCheckResponse)(nil), // 5: volume_server_pb.VacuumVolumeCheckResponse
  5510. (*VacuumVolumeCompactRequest)(nil), // 6: volume_server_pb.VacuumVolumeCompactRequest
  5511. (*VacuumVolumeCompactResponse)(nil), // 7: volume_server_pb.VacuumVolumeCompactResponse
  5512. (*VacuumVolumeCommitRequest)(nil), // 8: volume_server_pb.VacuumVolumeCommitRequest
  5513. (*VacuumVolumeCommitResponse)(nil), // 9: volume_server_pb.VacuumVolumeCommitResponse
  5514. (*VacuumVolumeCleanupRequest)(nil), // 10: volume_server_pb.VacuumVolumeCleanupRequest
  5515. (*VacuumVolumeCleanupResponse)(nil), // 11: volume_server_pb.VacuumVolumeCleanupResponse
  5516. (*DeleteCollectionRequest)(nil), // 12: volume_server_pb.DeleteCollectionRequest
  5517. (*DeleteCollectionResponse)(nil), // 13: volume_server_pb.DeleteCollectionResponse
  5518. (*AllocateVolumeRequest)(nil), // 14: volume_server_pb.AllocateVolumeRequest
  5519. (*AllocateVolumeResponse)(nil), // 15: volume_server_pb.AllocateVolumeResponse
  5520. (*VolumeSyncStatusRequest)(nil), // 16: volume_server_pb.VolumeSyncStatusRequest
  5521. (*VolumeSyncStatusResponse)(nil), // 17: volume_server_pb.VolumeSyncStatusResponse
  5522. (*VolumeIncrementalCopyRequest)(nil), // 18: volume_server_pb.VolumeIncrementalCopyRequest
  5523. (*VolumeIncrementalCopyResponse)(nil), // 19: volume_server_pb.VolumeIncrementalCopyResponse
  5524. (*VolumeMountRequest)(nil), // 20: volume_server_pb.VolumeMountRequest
  5525. (*VolumeMountResponse)(nil), // 21: volume_server_pb.VolumeMountResponse
  5526. (*VolumeUnmountRequest)(nil), // 22: volume_server_pb.VolumeUnmountRequest
  5527. (*VolumeUnmountResponse)(nil), // 23: volume_server_pb.VolumeUnmountResponse
  5528. (*VolumeDeleteRequest)(nil), // 24: volume_server_pb.VolumeDeleteRequest
  5529. (*VolumeDeleteResponse)(nil), // 25: volume_server_pb.VolumeDeleteResponse
  5530. (*VolumeMarkReadonlyRequest)(nil), // 26: volume_server_pb.VolumeMarkReadonlyRequest
  5531. (*VolumeMarkReadonlyResponse)(nil), // 27: volume_server_pb.VolumeMarkReadonlyResponse
  5532. (*VolumeMarkWritableRequest)(nil), // 28: volume_server_pb.VolumeMarkWritableRequest
  5533. (*VolumeMarkWritableResponse)(nil), // 29: volume_server_pb.VolumeMarkWritableResponse
  5534. (*VolumeConfigureRequest)(nil), // 30: volume_server_pb.VolumeConfigureRequest
  5535. (*VolumeConfigureResponse)(nil), // 31: volume_server_pb.VolumeConfigureResponse
  5536. (*VolumeStatusRequest)(nil), // 32: volume_server_pb.VolumeStatusRequest
  5537. (*VolumeStatusResponse)(nil), // 33: volume_server_pb.VolumeStatusResponse
  5538. (*VolumeCopyRequest)(nil), // 34: volume_server_pb.VolumeCopyRequest
  5539. (*VolumeCopyResponse)(nil), // 35: volume_server_pb.VolumeCopyResponse
  5540. (*CopyFileRequest)(nil), // 36: volume_server_pb.CopyFileRequest
  5541. (*CopyFileResponse)(nil), // 37: volume_server_pb.CopyFileResponse
  5542. (*ReadNeedleBlobRequest)(nil), // 38: volume_server_pb.ReadNeedleBlobRequest
  5543. (*ReadNeedleBlobResponse)(nil), // 39: volume_server_pb.ReadNeedleBlobResponse
  5544. (*WriteNeedleBlobRequest)(nil), // 40: volume_server_pb.WriteNeedleBlobRequest
  5545. (*WriteNeedleBlobResponse)(nil), // 41: volume_server_pb.WriteNeedleBlobResponse
  5546. (*ReadAllNeedlesRequest)(nil), // 42: volume_server_pb.ReadAllNeedlesRequest
  5547. (*ReadAllNeedlesResponse)(nil), // 43: volume_server_pb.ReadAllNeedlesResponse
  5548. (*VolumeTailSenderRequest)(nil), // 44: volume_server_pb.VolumeTailSenderRequest
  5549. (*VolumeTailSenderResponse)(nil), // 45: volume_server_pb.VolumeTailSenderResponse
  5550. (*VolumeTailReceiverRequest)(nil), // 46: volume_server_pb.VolumeTailReceiverRequest
  5551. (*VolumeTailReceiverResponse)(nil), // 47: volume_server_pb.VolumeTailReceiverResponse
  5552. (*VolumeEcShardsGenerateRequest)(nil), // 48: volume_server_pb.VolumeEcShardsGenerateRequest
  5553. (*VolumeEcShardsGenerateResponse)(nil), // 49: volume_server_pb.VolumeEcShardsGenerateResponse
  5554. (*VolumeEcShardsRebuildRequest)(nil), // 50: volume_server_pb.VolumeEcShardsRebuildRequest
  5555. (*VolumeEcShardsRebuildResponse)(nil), // 51: volume_server_pb.VolumeEcShardsRebuildResponse
  5556. (*VolumeEcShardsCopyRequest)(nil), // 52: volume_server_pb.VolumeEcShardsCopyRequest
  5557. (*VolumeEcShardsCopyResponse)(nil), // 53: volume_server_pb.VolumeEcShardsCopyResponse
  5558. (*VolumeEcShardsDeleteRequest)(nil), // 54: volume_server_pb.VolumeEcShardsDeleteRequest
  5559. (*VolumeEcShardsDeleteResponse)(nil), // 55: volume_server_pb.VolumeEcShardsDeleteResponse
  5560. (*VolumeEcShardsMountRequest)(nil), // 56: volume_server_pb.VolumeEcShardsMountRequest
  5561. (*VolumeEcShardsMountResponse)(nil), // 57: volume_server_pb.VolumeEcShardsMountResponse
  5562. (*VolumeEcShardsUnmountRequest)(nil), // 58: volume_server_pb.VolumeEcShardsUnmountRequest
  5563. (*VolumeEcShardsUnmountResponse)(nil), // 59: volume_server_pb.VolumeEcShardsUnmountResponse
  5564. (*VolumeEcShardReadRequest)(nil), // 60: volume_server_pb.VolumeEcShardReadRequest
  5565. (*VolumeEcShardReadResponse)(nil), // 61: volume_server_pb.VolumeEcShardReadResponse
  5566. (*VolumeEcBlobDeleteRequest)(nil), // 62: volume_server_pb.VolumeEcBlobDeleteRequest
  5567. (*VolumeEcBlobDeleteResponse)(nil), // 63: volume_server_pb.VolumeEcBlobDeleteResponse
  5568. (*VolumeEcShardsToVolumeRequest)(nil), // 64: volume_server_pb.VolumeEcShardsToVolumeRequest
  5569. (*VolumeEcShardsToVolumeResponse)(nil), // 65: volume_server_pb.VolumeEcShardsToVolumeResponse
  5570. (*ReadVolumeFileStatusRequest)(nil), // 66: volume_server_pb.ReadVolumeFileStatusRequest
  5571. (*ReadVolumeFileStatusResponse)(nil), // 67: volume_server_pb.ReadVolumeFileStatusResponse
  5572. (*DiskStatus)(nil), // 68: volume_server_pb.DiskStatus
  5573. (*MemStatus)(nil), // 69: volume_server_pb.MemStatus
  5574. (*RemoteFile)(nil), // 70: volume_server_pb.RemoteFile
  5575. (*VolumeInfo)(nil), // 71: volume_server_pb.VolumeInfo
  5576. (*VolumeTierMoveDatToRemoteRequest)(nil), // 72: volume_server_pb.VolumeTierMoveDatToRemoteRequest
  5577. (*VolumeTierMoveDatToRemoteResponse)(nil), // 73: volume_server_pb.VolumeTierMoveDatToRemoteResponse
  5578. (*VolumeTierMoveDatFromRemoteRequest)(nil), // 74: volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  5579. (*VolumeTierMoveDatFromRemoteResponse)(nil), // 75: volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  5580. (*VolumeServerStatusRequest)(nil), // 76: volume_server_pb.VolumeServerStatusRequest
  5581. (*VolumeServerStatusResponse)(nil), // 77: volume_server_pb.VolumeServerStatusResponse
  5582. (*VolumeServerLeaveRequest)(nil), // 78: volume_server_pb.VolumeServerLeaveRequest
  5583. (*VolumeServerLeaveResponse)(nil), // 79: volume_server_pb.VolumeServerLeaveResponse
  5584. (*FetchAndWriteNeedleRequest)(nil), // 80: volume_server_pb.FetchAndWriteNeedleRequest
  5585. (*FetchAndWriteNeedleResponse)(nil), // 81: volume_server_pb.FetchAndWriteNeedleResponse
  5586. (*QueryRequest)(nil), // 82: volume_server_pb.QueryRequest
  5587. (*QueriedStripe)(nil), // 83: volume_server_pb.QueriedStripe
  5588. (*VolumeNeedleStatusRequest)(nil), // 84: volume_server_pb.VolumeNeedleStatusRequest
  5589. (*VolumeNeedleStatusResponse)(nil), // 85: volume_server_pb.VolumeNeedleStatusResponse
  5590. (*FetchAndWriteNeedleRequest_Replica)(nil), // 86: volume_server_pb.FetchAndWriteNeedleRequest.Replica
  5591. (*QueryRequest_Filter)(nil), // 87: volume_server_pb.QueryRequest.Filter
  5592. (*QueryRequest_InputSerialization)(nil), // 88: volume_server_pb.QueryRequest.InputSerialization
  5593. (*QueryRequest_OutputSerialization)(nil), // 89: volume_server_pb.QueryRequest.OutputSerialization
  5594. (*QueryRequest_InputSerialization_CSVInput)(nil), // 90: volume_server_pb.QueryRequest.InputSerialization.CSVInput
  5595. (*QueryRequest_InputSerialization_JSONInput)(nil), // 91: volume_server_pb.QueryRequest.InputSerialization.JSONInput
  5596. (*QueryRequest_InputSerialization_ParquetInput)(nil), // 92: volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  5597. (*QueryRequest_OutputSerialization_CSVOutput)(nil), // 93: volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  5598. (*QueryRequest_OutputSerialization_JSONOutput)(nil), // 94: volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  5599. (*remote_pb.RemoteConf)(nil), // 95: remote_pb.RemoteConf
  5600. (*remote_pb.RemoteStorageLocation)(nil), // 96: remote_pb.RemoteStorageLocation
  5601. }
  5602. var file_volume_server_proto_depIdxs = []int32{
  5603. 2, // 0: volume_server_pb.BatchDeleteResponse.results:type_name -> volume_server_pb.DeleteResult
  5604. 70, // 1: volume_server_pb.VolumeInfo.files:type_name -> volume_server_pb.RemoteFile
  5605. 68, // 2: volume_server_pb.VolumeServerStatusResponse.disk_statuses:type_name -> volume_server_pb.DiskStatus
  5606. 69, // 3: volume_server_pb.VolumeServerStatusResponse.memory_status:type_name -> volume_server_pb.MemStatus
  5607. 86, // 4: volume_server_pb.FetchAndWriteNeedleRequest.replicas:type_name -> volume_server_pb.FetchAndWriteNeedleRequest.Replica
  5608. 95, // 5: volume_server_pb.FetchAndWriteNeedleRequest.remote_conf:type_name -> remote_pb.RemoteConf
  5609. 96, // 6: volume_server_pb.FetchAndWriteNeedleRequest.remote_location:type_name -> remote_pb.RemoteStorageLocation
  5610. 87, // 7: volume_server_pb.QueryRequest.filter:type_name -> volume_server_pb.QueryRequest.Filter
  5611. 88, // 8: volume_server_pb.QueryRequest.input_serialization:type_name -> volume_server_pb.QueryRequest.InputSerialization
  5612. 89, // 9: volume_server_pb.QueryRequest.output_serialization:type_name -> volume_server_pb.QueryRequest.OutputSerialization
  5613. 90, // 10: volume_server_pb.QueryRequest.InputSerialization.csv_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.CSVInput
  5614. 91, // 11: volume_server_pb.QueryRequest.InputSerialization.json_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.JSONInput
  5615. 92, // 12: volume_server_pb.QueryRequest.InputSerialization.parquet_input:type_name -> volume_server_pb.QueryRequest.InputSerialization.ParquetInput
  5616. 93, // 13: volume_server_pb.QueryRequest.OutputSerialization.csv_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.CSVOutput
  5617. 94, // 14: volume_server_pb.QueryRequest.OutputSerialization.json_output:type_name -> volume_server_pb.QueryRequest.OutputSerialization.JSONOutput
  5618. 0, // 15: volume_server_pb.VolumeServer.BatchDelete:input_type -> volume_server_pb.BatchDeleteRequest
  5619. 4, // 16: volume_server_pb.VolumeServer.VacuumVolumeCheck:input_type -> volume_server_pb.VacuumVolumeCheckRequest
  5620. 6, // 17: volume_server_pb.VolumeServer.VacuumVolumeCompact:input_type -> volume_server_pb.VacuumVolumeCompactRequest
  5621. 8, // 18: volume_server_pb.VolumeServer.VacuumVolumeCommit:input_type -> volume_server_pb.VacuumVolumeCommitRequest
  5622. 10, // 19: volume_server_pb.VolumeServer.VacuumVolumeCleanup:input_type -> volume_server_pb.VacuumVolumeCleanupRequest
  5623. 12, // 20: volume_server_pb.VolumeServer.DeleteCollection:input_type -> volume_server_pb.DeleteCollectionRequest
  5624. 14, // 21: volume_server_pb.VolumeServer.AllocateVolume:input_type -> volume_server_pb.AllocateVolumeRequest
  5625. 16, // 22: volume_server_pb.VolumeServer.VolumeSyncStatus:input_type -> volume_server_pb.VolumeSyncStatusRequest
  5626. 18, // 23: volume_server_pb.VolumeServer.VolumeIncrementalCopy:input_type -> volume_server_pb.VolumeIncrementalCopyRequest
  5627. 20, // 24: volume_server_pb.VolumeServer.VolumeMount:input_type -> volume_server_pb.VolumeMountRequest
  5628. 22, // 25: volume_server_pb.VolumeServer.VolumeUnmount:input_type -> volume_server_pb.VolumeUnmountRequest
  5629. 24, // 26: volume_server_pb.VolumeServer.VolumeDelete:input_type -> volume_server_pb.VolumeDeleteRequest
  5630. 26, // 27: volume_server_pb.VolumeServer.VolumeMarkReadonly:input_type -> volume_server_pb.VolumeMarkReadonlyRequest
  5631. 28, // 28: volume_server_pb.VolumeServer.VolumeMarkWritable:input_type -> volume_server_pb.VolumeMarkWritableRequest
  5632. 30, // 29: volume_server_pb.VolumeServer.VolumeConfigure:input_type -> volume_server_pb.VolumeConfigureRequest
  5633. 32, // 30: volume_server_pb.VolumeServer.VolumeStatus:input_type -> volume_server_pb.VolumeStatusRequest
  5634. 34, // 31: volume_server_pb.VolumeServer.VolumeCopy:input_type -> volume_server_pb.VolumeCopyRequest
  5635. 66, // 32: volume_server_pb.VolumeServer.ReadVolumeFileStatus:input_type -> volume_server_pb.ReadVolumeFileStatusRequest
  5636. 36, // 33: volume_server_pb.VolumeServer.CopyFile:input_type -> volume_server_pb.CopyFileRequest
  5637. 38, // 34: volume_server_pb.VolumeServer.ReadNeedleBlob:input_type -> volume_server_pb.ReadNeedleBlobRequest
  5638. 40, // 35: volume_server_pb.VolumeServer.WriteNeedleBlob:input_type -> volume_server_pb.WriteNeedleBlobRequest
  5639. 42, // 36: volume_server_pb.VolumeServer.ReadAllNeedles:input_type -> volume_server_pb.ReadAllNeedlesRequest
  5640. 44, // 37: volume_server_pb.VolumeServer.VolumeTailSender:input_type -> volume_server_pb.VolumeTailSenderRequest
  5641. 46, // 38: volume_server_pb.VolumeServer.VolumeTailReceiver:input_type -> volume_server_pb.VolumeTailReceiverRequest
  5642. 48, // 39: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:input_type -> volume_server_pb.VolumeEcShardsGenerateRequest
  5643. 50, // 40: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:input_type -> volume_server_pb.VolumeEcShardsRebuildRequest
  5644. 52, // 41: volume_server_pb.VolumeServer.VolumeEcShardsCopy:input_type -> volume_server_pb.VolumeEcShardsCopyRequest
  5645. 54, // 42: volume_server_pb.VolumeServer.VolumeEcShardsDelete:input_type -> volume_server_pb.VolumeEcShardsDeleteRequest
  5646. 56, // 43: volume_server_pb.VolumeServer.VolumeEcShardsMount:input_type -> volume_server_pb.VolumeEcShardsMountRequest
  5647. 58, // 44: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:input_type -> volume_server_pb.VolumeEcShardsUnmountRequest
  5648. 60, // 45: volume_server_pb.VolumeServer.VolumeEcShardRead:input_type -> volume_server_pb.VolumeEcShardReadRequest
  5649. 62, // 46: volume_server_pb.VolumeServer.VolumeEcBlobDelete:input_type -> volume_server_pb.VolumeEcBlobDeleteRequest
  5650. 64, // 47: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:input_type -> volume_server_pb.VolumeEcShardsToVolumeRequest
  5651. 72, // 48: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:input_type -> volume_server_pb.VolumeTierMoveDatToRemoteRequest
  5652. 74, // 49: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:input_type -> volume_server_pb.VolumeTierMoveDatFromRemoteRequest
  5653. 76, // 50: volume_server_pb.VolumeServer.VolumeServerStatus:input_type -> volume_server_pb.VolumeServerStatusRequest
  5654. 78, // 51: volume_server_pb.VolumeServer.VolumeServerLeave:input_type -> volume_server_pb.VolumeServerLeaveRequest
  5655. 80, // 52: volume_server_pb.VolumeServer.FetchAndWriteNeedle:input_type -> volume_server_pb.FetchAndWriteNeedleRequest
  5656. 82, // 53: volume_server_pb.VolumeServer.Query:input_type -> volume_server_pb.QueryRequest
  5657. 84, // 54: volume_server_pb.VolumeServer.VolumeNeedleStatus:input_type -> volume_server_pb.VolumeNeedleStatusRequest
  5658. 1, // 55: volume_server_pb.VolumeServer.BatchDelete:output_type -> volume_server_pb.BatchDeleteResponse
  5659. 5, // 56: volume_server_pb.VolumeServer.VacuumVolumeCheck:output_type -> volume_server_pb.VacuumVolumeCheckResponse
  5660. 7, // 57: volume_server_pb.VolumeServer.VacuumVolumeCompact:output_type -> volume_server_pb.VacuumVolumeCompactResponse
  5661. 9, // 58: volume_server_pb.VolumeServer.VacuumVolumeCommit:output_type -> volume_server_pb.VacuumVolumeCommitResponse
  5662. 11, // 59: volume_server_pb.VolumeServer.VacuumVolumeCleanup:output_type -> volume_server_pb.VacuumVolumeCleanupResponse
  5663. 13, // 60: volume_server_pb.VolumeServer.DeleteCollection:output_type -> volume_server_pb.DeleteCollectionResponse
  5664. 15, // 61: volume_server_pb.VolumeServer.AllocateVolume:output_type -> volume_server_pb.AllocateVolumeResponse
  5665. 17, // 62: volume_server_pb.VolumeServer.VolumeSyncStatus:output_type -> volume_server_pb.VolumeSyncStatusResponse
  5666. 19, // 63: volume_server_pb.VolumeServer.VolumeIncrementalCopy:output_type -> volume_server_pb.VolumeIncrementalCopyResponse
  5667. 21, // 64: volume_server_pb.VolumeServer.VolumeMount:output_type -> volume_server_pb.VolumeMountResponse
  5668. 23, // 65: volume_server_pb.VolumeServer.VolumeUnmount:output_type -> volume_server_pb.VolumeUnmountResponse
  5669. 25, // 66: volume_server_pb.VolumeServer.VolumeDelete:output_type -> volume_server_pb.VolumeDeleteResponse
  5670. 27, // 67: volume_server_pb.VolumeServer.VolumeMarkReadonly:output_type -> volume_server_pb.VolumeMarkReadonlyResponse
  5671. 29, // 68: volume_server_pb.VolumeServer.VolumeMarkWritable:output_type -> volume_server_pb.VolumeMarkWritableResponse
  5672. 31, // 69: volume_server_pb.VolumeServer.VolumeConfigure:output_type -> volume_server_pb.VolumeConfigureResponse
  5673. 33, // 70: volume_server_pb.VolumeServer.VolumeStatus:output_type -> volume_server_pb.VolumeStatusResponse
  5674. 35, // 71: volume_server_pb.VolumeServer.VolumeCopy:output_type -> volume_server_pb.VolumeCopyResponse
  5675. 67, // 72: volume_server_pb.VolumeServer.ReadVolumeFileStatus:output_type -> volume_server_pb.ReadVolumeFileStatusResponse
  5676. 37, // 73: volume_server_pb.VolumeServer.CopyFile:output_type -> volume_server_pb.CopyFileResponse
  5677. 39, // 74: volume_server_pb.VolumeServer.ReadNeedleBlob:output_type -> volume_server_pb.ReadNeedleBlobResponse
  5678. 41, // 75: volume_server_pb.VolumeServer.WriteNeedleBlob:output_type -> volume_server_pb.WriteNeedleBlobResponse
  5679. 43, // 76: volume_server_pb.VolumeServer.ReadAllNeedles:output_type -> volume_server_pb.ReadAllNeedlesResponse
  5680. 45, // 77: volume_server_pb.VolumeServer.VolumeTailSender:output_type -> volume_server_pb.VolumeTailSenderResponse
  5681. 47, // 78: volume_server_pb.VolumeServer.VolumeTailReceiver:output_type -> volume_server_pb.VolumeTailReceiverResponse
  5682. 49, // 79: volume_server_pb.VolumeServer.VolumeEcShardsGenerate:output_type -> volume_server_pb.VolumeEcShardsGenerateResponse
  5683. 51, // 80: volume_server_pb.VolumeServer.VolumeEcShardsRebuild:output_type -> volume_server_pb.VolumeEcShardsRebuildResponse
  5684. 53, // 81: volume_server_pb.VolumeServer.VolumeEcShardsCopy:output_type -> volume_server_pb.VolumeEcShardsCopyResponse
  5685. 55, // 82: volume_server_pb.VolumeServer.VolumeEcShardsDelete:output_type -> volume_server_pb.VolumeEcShardsDeleteResponse
  5686. 57, // 83: volume_server_pb.VolumeServer.VolumeEcShardsMount:output_type -> volume_server_pb.VolumeEcShardsMountResponse
  5687. 59, // 84: volume_server_pb.VolumeServer.VolumeEcShardsUnmount:output_type -> volume_server_pb.VolumeEcShardsUnmountResponse
  5688. 61, // 85: volume_server_pb.VolumeServer.VolumeEcShardRead:output_type -> volume_server_pb.VolumeEcShardReadResponse
  5689. 63, // 86: volume_server_pb.VolumeServer.VolumeEcBlobDelete:output_type -> volume_server_pb.VolumeEcBlobDeleteResponse
  5690. 65, // 87: volume_server_pb.VolumeServer.VolumeEcShardsToVolume:output_type -> volume_server_pb.VolumeEcShardsToVolumeResponse
  5691. 73, // 88: volume_server_pb.VolumeServer.VolumeTierMoveDatToRemote:output_type -> volume_server_pb.VolumeTierMoveDatToRemoteResponse
  5692. 75, // 89: volume_server_pb.VolumeServer.VolumeTierMoveDatFromRemote:output_type -> volume_server_pb.VolumeTierMoveDatFromRemoteResponse
  5693. 77, // 90: volume_server_pb.VolumeServer.VolumeServerStatus:output_type -> volume_server_pb.VolumeServerStatusResponse
  5694. 79, // 91: volume_server_pb.VolumeServer.VolumeServerLeave:output_type -> volume_server_pb.VolumeServerLeaveResponse
  5695. 81, // 92: volume_server_pb.VolumeServer.FetchAndWriteNeedle:output_type -> volume_server_pb.FetchAndWriteNeedleResponse
  5696. 83, // 93: volume_server_pb.VolumeServer.Query:output_type -> volume_server_pb.QueriedStripe
  5697. 85, // 94: volume_server_pb.VolumeServer.VolumeNeedleStatus:output_type -> volume_server_pb.VolumeNeedleStatusResponse
  5698. 55, // [55:95] is the sub-list for method output_type
  5699. 15, // [15:55] is the sub-list for method input_type
  5700. 15, // [15:15] is the sub-list for extension type_name
  5701. 15, // [15:15] is the sub-list for extension extendee
  5702. 0, // [0:15] is the sub-list for field type_name
  5703. }
  5704. func init() { file_volume_server_proto_init() }
  5705. func file_volume_server_proto_init() {
  5706. if File_volume_server_proto != nil {
  5707. return
  5708. }
  5709. if !protoimpl.UnsafeEnabled {
  5710. file_volume_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  5711. switch v := v.(*BatchDeleteRequest); i {
  5712. case 0:
  5713. return &v.state
  5714. case 1:
  5715. return &v.sizeCache
  5716. case 2:
  5717. return &v.unknownFields
  5718. default:
  5719. return nil
  5720. }
  5721. }
  5722. file_volume_server_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  5723. switch v := v.(*BatchDeleteResponse); i {
  5724. case 0:
  5725. return &v.state
  5726. case 1:
  5727. return &v.sizeCache
  5728. case 2:
  5729. return &v.unknownFields
  5730. default:
  5731. return nil
  5732. }
  5733. }
  5734. file_volume_server_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  5735. switch v := v.(*DeleteResult); i {
  5736. case 0:
  5737. return &v.state
  5738. case 1:
  5739. return &v.sizeCache
  5740. case 2:
  5741. return &v.unknownFields
  5742. default:
  5743. return nil
  5744. }
  5745. }
  5746. file_volume_server_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  5747. switch v := v.(*Empty); i {
  5748. case 0:
  5749. return &v.state
  5750. case 1:
  5751. return &v.sizeCache
  5752. case 2:
  5753. return &v.unknownFields
  5754. default:
  5755. return nil
  5756. }
  5757. }
  5758. file_volume_server_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  5759. switch v := v.(*VacuumVolumeCheckRequest); i {
  5760. case 0:
  5761. return &v.state
  5762. case 1:
  5763. return &v.sizeCache
  5764. case 2:
  5765. return &v.unknownFields
  5766. default:
  5767. return nil
  5768. }
  5769. }
  5770. file_volume_server_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  5771. switch v := v.(*VacuumVolumeCheckResponse); i {
  5772. case 0:
  5773. return &v.state
  5774. case 1:
  5775. return &v.sizeCache
  5776. case 2:
  5777. return &v.unknownFields
  5778. default:
  5779. return nil
  5780. }
  5781. }
  5782. file_volume_server_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  5783. switch v := v.(*VacuumVolumeCompactRequest); i {
  5784. case 0:
  5785. return &v.state
  5786. case 1:
  5787. return &v.sizeCache
  5788. case 2:
  5789. return &v.unknownFields
  5790. default:
  5791. return nil
  5792. }
  5793. }
  5794. file_volume_server_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  5795. switch v := v.(*VacuumVolumeCompactResponse); i {
  5796. case 0:
  5797. return &v.state
  5798. case 1:
  5799. return &v.sizeCache
  5800. case 2:
  5801. return &v.unknownFields
  5802. default:
  5803. return nil
  5804. }
  5805. }
  5806. file_volume_server_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  5807. switch v := v.(*VacuumVolumeCommitRequest); i {
  5808. case 0:
  5809. return &v.state
  5810. case 1:
  5811. return &v.sizeCache
  5812. case 2:
  5813. return &v.unknownFields
  5814. default:
  5815. return nil
  5816. }
  5817. }
  5818. file_volume_server_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  5819. switch v := v.(*VacuumVolumeCommitResponse); i {
  5820. case 0:
  5821. return &v.state
  5822. case 1:
  5823. return &v.sizeCache
  5824. case 2:
  5825. return &v.unknownFields
  5826. default:
  5827. return nil
  5828. }
  5829. }
  5830. file_volume_server_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  5831. switch v := v.(*VacuumVolumeCleanupRequest); i {
  5832. case 0:
  5833. return &v.state
  5834. case 1:
  5835. return &v.sizeCache
  5836. case 2:
  5837. return &v.unknownFields
  5838. default:
  5839. return nil
  5840. }
  5841. }
  5842. file_volume_server_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  5843. switch v := v.(*VacuumVolumeCleanupResponse); i {
  5844. case 0:
  5845. return &v.state
  5846. case 1:
  5847. return &v.sizeCache
  5848. case 2:
  5849. return &v.unknownFields
  5850. default:
  5851. return nil
  5852. }
  5853. }
  5854. file_volume_server_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  5855. switch v := v.(*DeleteCollectionRequest); i {
  5856. case 0:
  5857. return &v.state
  5858. case 1:
  5859. return &v.sizeCache
  5860. case 2:
  5861. return &v.unknownFields
  5862. default:
  5863. return nil
  5864. }
  5865. }
  5866. file_volume_server_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  5867. switch v := v.(*DeleteCollectionResponse); i {
  5868. case 0:
  5869. return &v.state
  5870. case 1:
  5871. return &v.sizeCache
  5872. case 2:
  5873. return &v.unknownFields
  5874. default:
  5875. return nil
  5876. }
  5877. }
  5878. file_volume_server_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  5879. switch v := v.(*AllocateVolumeRequest); i {
  5880. case 0:
  5881. return &v.state
  5882. case 1:
  5883. return &v.sizeCache
  5884. case 2:
  5885. return &v.unknownFields
  5886. default:
  5887. return nil
  5888. }
  5889. }
  5890. file_volume_server_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  5891. switch v := v.(*AllocateVolumeResponse); i {
  5892. case 0:
  5893. return &v.state
  5894. case 1:
  5895. return &v.sizeCache
  5896. case 2:
  5897. return &v.unknownFields
  5898. default:
  5899. return nil
  5900. }
  5901. }
  5902. file_volume_server_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  5903. switch v := v.(*VolumeSyncStatusRequest); i {
  5904. case 0:
  5905. return &v.state
  5906. case 1:
  5907. return &v.sizeCache
  5908. case 2:
  5909. return &v.unknownFields
  5910. default:
  5911. return nil
  5912. }
  5913. }
  5914. file_volume_server_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  5915. switch v := v.(*VolumeSyncStatusResponse); i {
  5916. case 0:
  5917. return &v.state
  5918. case 1:
  5919. return &v.sizeCache
  5920. case 2:
  5921. return &v.unknownFields
  5922. default:
  5923. return nil
  5924. }
  5925. }
  5926. file_volume_server_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  5927. switch v := v.(*VolumeIncrementalCopyRequest); i {
  5928. case 0:
  5929. return &v.state
  5930. case 1:
  5931. return &v.sizeCache
  5932. case 2:
  5933. return &v.unknownFields
  5934. default:
  5935. return nil
  5936. }
  5937. }
  5938. file_volume_server_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  5939. switch v := v.(*VolumeIncrementalCopyResponse); i {
  5940. case 0:
  5941. return &v.state
  5942. case 1:
  5943. return &v.sizeCache
  5944. case 2:
  5945. return &v.unknownFields
  5946. default:
  5947. return nil
  5948. }
  5949. }
  5950. file_volume_server_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  5951. switch v := v.(*VolumeMountRequest); i {
  5952. case 0:
  5953. return &v.state
  5954. case 1:
  5955. return &v.sizeCache
  5956. case 2:
  5957. return &v.unknownFields
  5958. default:
  5959. return nil
  5960. }
  5961. }
  5962. file_volume_server_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  5963. switch v := v.(*VolumeMountResponse); i {
  5964. case 0:
  5965. return &v.state
  5966. case 1:
  5967. return &v.sizeCache
  5968. case 2:
  5969. return &v.unknownFields
  5970. default:
  5971. return nil
  5972. }
  5973. }
  5974. file_volume_server_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  5975. switch v := v.(*VolumeUnmountRequest); i {
  5976. case 0:
  5977. return &v.state
  5978. case 1:
  5979. return &v.sizeCache
  5980. case 2:
  5981. return &v.unknownFields
  5982. default:
  5983. return nil
  5984. }
  5985. }
  5986. file_volume_server_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  5987. switch v := v.(*VolumeUnmountResponse); i {
  5988. case 0:
  5989. return &v.state
  5990. case 1:
  5991. return &v.sizeCache
  5992. case 2:
  5993. return &v.unknownFields
  5994. default:
  5995. return nil
  5996. }
  5997. }
  5998. file_volume_server_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  5999. switch v := v.(*VolumeDeleteRequest); i {
  6000. case 0:
  6001. return &v.state
  6002. case 1:
  6003. return &v.sizeCache
  6004. case 2:
  6005. return &v.unknownFields
  6006. default:
  6007. return nil
  6008. }
  6009. }
  6010. file_volume_server_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  6011. switch v := v.(*VolumeDeleteResponse); i {
  6012. case 0:
  6013. return &v.state
  6014. case 1:
  6015. return &v.sizeCache
  6016. case 2:
  6017. return &v.unknownFields
  6018. default:
  6019. return nil
  6020. }
  6021. }
  6022. file_volume_server_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  6023. switch v := v.(*VolumeMarkReadonlyRequest); i {
  6024. case 0:
  6025. return &v.state
  6026. case 1:
  6027. return &v.sizeCache
  6028. case 2:
  6029. return &v.unknownFields
  6030. default:
  6031. return nil
  6032. }
  6033. }
  6034. file_volume_server_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  6035. switch v := v.(*VolumeMarkReadonlyResponse); i {
  6036. case 0:
  6037. return &v.state
  6038. case 1:
  6039. return &v.sizeCache
  6040. case 2:
  6041. return &v.unknownFields
  6042. default:
  6043. return nil
  6044. }
  6045. }
  6046. file_volume_server_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  6047. switch v := v.(*VolumeMarkWritableRequest); i {
  6048. case 0:
  6049. return &v.state
  6050. case 1:
  6051. return &v.sizeCache
  6052. case 2:
  6053. return &v.unknownFields
  6054. default:
  6055. return nil
  6056. }
  6057. }
  6058. file_volume_server_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  6059. switch v := v.(*VolumeMarkWritableResponse); i {
  6060. case 0:
  6061. return &v.state
  6062. case 1:
  6063. return &v.sizeCache
  6064. case 2:
  6065. return &v.unknownFields
  6066. default:
  6067. return nil
  6068. }
  6069. }
  6070. file_volume_server_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  6071. switch v := v.(*VolumeConfigureRequest); i {
  6072. case 0:
  6073. return &v.state
  6074. case 1:
  6075. return &v.sizeCache
  6076. case 2:
  6077. return &v.unknownFields
  6078. default:
  6079. return nil
  6080. }
  6081. }
  6082. file_volume_server_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  6083. switch v := v.(*VolumeConfigureResponse); i {
  6084. case 0:
  6085. return &v.state
  6086. case 1:
  6087. return &v.sizeCache
  6088. case 2:
  6089. return &v.unknownFields
  6090. default:
  6091. return nil
  6092. }
  6093. }
  6094. file_volume_server_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  6095. switch v := v.(*VolumeStatusRequest); i {
  6096. case 0:
  6097. return &v.state
  6098. case 1:
  6099. return &v.sizeCache
  6100. case 2:
  6101. return &v.unknownFields
  6102. default:
  6103. return nil
  6104. }
  6105. }
  6106. file_volume_server_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  6107. switch v := v.(*VolumeStatusResponse); i {
  6108. case 0:
  6109. return &v.state
  6110. case 1:
  6111. return &v.sizeCache
  6112. case 2:
  6113. return &v.unknownFields
  6114. default:
  6115. return nil
  6116. }
  6117. }
  6118. file_volume_server_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  6119. switch v := v.(*VolumeCopyRequest); i {
  6120. case 0:
  6121. return &v.state
  6122. case 1:
  6123. return &v.sizeCache
  6124. case 2:
  6125. return &v.unknownFields
  6126. default:
  6127. return nil
  6128. }
  6129. }
  6130. file_volume_server_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  6131. switch v := v.(*VolumeCopyResponse); i {
  6132. case 0:
  6133. return &v.state
  6134. case 1:
  6135. return &v.sizeCache
  6136. case 2:
  6137. return &v.unknownFields
  6138. default:
  6139. return nil
  6140. }
  6141. }
  6142. file_volume_server_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  6143. switch v := v.(*CopyFileRequest); i {
  6144. case 0:
  6145. return &v.state
  6146. case 1:
  6147. return &v.sizeCache
  6148. case 2:
  6149. return &v.unknownFields
  6150. default:
  6151. return nil
  6152. }
  6153. }
  6154. file_volume_server_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  6155. switch v := v.(*CopyFileResponse); i {
  6156. case 0:
  6157. return &v.state
  6158. case 1:
  6159. return &v.sizeCache
  6160. case 2:
  6161. return &v.unknownFields
  6162. default:
  6163. return nil
  6164. }
  6165. }
  6166. file_volume_server_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  6167. switch v := v.(*ReadNeedleBlobRequest); i {
  6168. case 0:
  6169. return &v.state
  6170. case 1:
  6171. return &v.sizeCache
  6172. case 2:
  6173. return &v.unknownFields
  6174. default:
  6175. return nil
  6176. }
  6177. }
  6178. file_volume_server_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  6179. switch v := v.(*ReadNeedleBlobResponse); i {
  6180. case 0:
  6181. return &v.state
  6182. case 1:
  6183. return &v.sizeCache
  6184. case 2:
  6185. return &v.unknownFields
  6186. default:
  6187. return nil
  6188. }
  6189. }
  6190. file_volume_server_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  6191. switch v := v.(*WriteNeedleBlobRequest); i {
  6192. case 0:
  6193. return &v.state
  6194. case 1:
  6195. return &v.sizeCache
  6196. case 2:
  6197. return &v.unknownFields
  6198. default:
  6199. return nil
  6200. }
  6201. }
  6202. file_volume_server_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  6203. switch v := v.(*WriteNeedleBlobResponse); i {
  6204. case 0:
  6205. return &v.state
  6206. case 1:
  6207. return &v.sizeCache
  6208. case 2:
  6209. return &v.unknownFields
  6210. default:
  6211. return nil
  6212. }
  6213. }
  6214. file_volume_server_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  6215. switch v := v.(*ReadAllNeedlesRequest); i {
  6216. case 0:
  6217. return &v.state
  6218. case 1:
  6219. return &v.sizeCache
  6220. case 2:
  6221. return &v.unknownFields
  6222. default:
  6223. return nil
  6224. }
  6225. }
  6226. file_volume_server_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  6227. switch v := v.(*ReadAllNeedlesResponse); i {
  6228. case 0:
  6229. return &v.state
  6230. case 1:
  6231. return &v.sizeCache
  6232. case 2:
  6233. return &v.unknownFields
  6234. default:
  6235. return nil
  6236. }
  6237. }
  6238. file_volume_server_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  6239. switch v := v.(*VolumeTailSenderRequest); i {
  6240. case 0:
  6241. return &v.state
  6242. case 1:
  6243. return &v.sizeCache
  6244. case 2:
  6245. return &v.unknownFields
  6246. default:
  6247. return nil
  6248. }
  6249. }
  6250. file_volume_server_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  6251. switch v := v.(*VolumeTailSenderResponse); i {
  6252. case 0:
  6253. return &v.state
  6254. case 1:
  6255. return &v.sizeCache
  6256. case 2:
  6257. return &v.unknownFields
  6258. default:
  6259. return nil
  6260. }
  6261. }
  6262. file_volume_server_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  6263. switch v := v.(*VolumeTailReceiverRequest); i {
  6264. case 0:
  6265. return &v.state
  6266. case 1:
  6267. return &v.sizeCache
  6268. case 2:
  6269. return &v.unknownFields
  6270. default:
  6271. return nil
  6272. }
  6273. }
  6274. file_volume_server_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  6275. switch v := v.(*VolumeTailReceiverResponse); i {
  6276. case 0:
  6277. return &v.state
  6278. case 1:
  6279. return &v.sizeCache
  6280. case 2:
  6281. return &v.unknownFields
  6282. default:
  6283. return nil
  6284. }
  6285. }
  6286. file_volume_server_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  6287. switch v := v.(*VolumeEcShardsGenerateRequest); i {
  6288. case 0:
  6289. return &v.state
  6290. case 1:
  6291. return &v.sizeCache
  6292. case 2:
  6293. return &v.unknownFields
  6294. default:
  6295. return nil
  6296. }
  6297. }
  6298. file_volume_server_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  6299. switch v := v.(*VolumeEcShardsGenerateResponse); i {
  6300. case 0:
  6301. return &v.state
  6302. case 1:
  6303. return &v.sizeCache
  6304. case 2:
  6305. return &v.unknownFields
  6306. default:
  6307. return nil
  6308. }
  6309. }
  6310. file_volume_server_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  6311. switch v := v.(*VolumeEcShardsRebuildRequest); i {
  6312. case 0:
  6313. return &v.state
  6314. case 1:
  6315. return &v.sizeCache
  6316. case 2:
  6317. return &v.unknownFields
  6318. default:
  6319. return nil
  6320. }
  6321. }
  6322. file_volume_server_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  6323. switch v := v.(*VolumeEcShardsRebuildResponse); i {
  6324. case 0:
  6325. return &v.state
  6326. case 1:
  6327. return &v.sizeCache
  6328. case 2:
  6329. return &v.unknownFields
  6330. default:
  6331. return nil
  6332. }
  6333. }
  6334. file_volume_server_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  6335. switch v := v.(*VolumeEcShardsCopyRequest); i {
  6336. case 0:
  6337. return &v.state
  6338. case 1:
  6339. return &v.sizeCache
  6340. case 2:
  6341. return &v.unknownFields
  6342. default:
  6343. return nil
  6344. }
  6345. }
  6346. file_volume_server_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  6347. switch v := v.(*VolumeEcShardsCopyResponse); i {
  6348. case 0:
  6349. return &v.state
  6350. case 1:
  6351. return &v.sizeCache
  6352. case 2:
  6353. return &v.unknownFields
  6354. default:
  6355. return nil
  6356. }
  6357. }
  6358. file_volume_server_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  6359. switch v := v.(*VolumeEcShardsDeleteRequest); i {
  6360. case 0:
  6361. return &v.state
  6362. case 1:
  6363. return &v.sizeCache
  6364. case 2:
  6365. return &v.unknownFields
  6366. default:
  6367. return nil
  6368. }
  6369. }
  6370. file_volume_server_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  6371. switch v := v.(*VolumeEcShardsDeleteResponse); i {
  6372. case 0:
  6373. return &v.state
  6374. case 1:
  6375. return &v.sizeCache
  6376. case 2:
  6377. return &v.unknownFields
  6378. default:
  6379. return nil
  6380. }
  6381. }
  6382. file_volume_server_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  6383. switch v := v.(*VolumeEcShardsMountRequest); i {
  6384. case 0:
  6385. return &v.state
  6386. case 1:
  6387. return &v.sizeCache
  6388. case 2:
  6389. return &v.unknownFields
  6390. default:
  6391. return nil
  6392. }
  6393. }
  6394. file_volume_server_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  6395. switch v := v.(*VolumeEcShardsMountResponse); i {
  6396. case 0:
  6397. return &v.state
  6398. case 1:
  6399. return &v.sizeCache
  6400. case 2:
  6401. return &v.unknownFields
  6402. default:
  6403. return nil
  6404. }
  6405. }
  6406. file_volume_server_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  6407. switch v := v.(*VolumeEcShardsUnmountRequest); i {
  6408. case 0:
  6409. return &v.state
  6410. case 1:
  6411. return &v.sizeCache
  6412. case 2:
  6413. return &v.unknownFields
  6414. default:
  6415. return nil
  6416. }
  6417. }
  6418. file_volume_server_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  6419. switch v := v.(*VolumeEcShardsUnmountResponse); i {
  6420. case 0:
  6421. return &v.state
  6422. case 1:
  6423. return &v.sizeCache
  6424. case 2:
  6425. return &v.unknownFields
  6426. default:
  6427. return nil
  6428. }
  6429. }
  6430. file_volume_server_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  6431. switch v := v.(*VolumeEcShardReadRequest); i {
  6432. case 0:
  6433. return &v.state
  6434. case 1:
  6435. return &v.sizeCache
  6436. case 2:
  6437. return &v.unknownFields
  6438. default:
  6439. return nil
  6440. }
  6441. }
  6442. file_volume_server_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  6443. switch v := v.(*VolumeEcShardReadResponse); i {
  6444. case 0:
  6445. return &v.state
  6446. case 1:
  6447. return &v.sizeCache
  6448. case 2:
  6449. return &v.unknownFields
  6450. default:
  6451. return nil
  6452. }
  6453. }
  6454. file_volume_server_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  6455. switch v := v.(*VolumeEcBlobDeleteRequest); i {
  6456. case 0:
  6457. return &v.state
  6458. case 1:
  6459. return &v.sizeCache
  6460. case 2:
  6461. return &v.unknownFields
  6462. default:
  6463. return nil
  6464. }
  6465. }
  6466. file_volume_server_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  6467. switch v := v.(*VolumeEcBlobDeleteResponse); i {
  6468. case 0:
  6469. return &v.state
  6470. case 1:
  6471. return &v.sizeCache
  6472. case 2:
  6473. return &v.unknownFields
  6474. default:
  6475. return nil
  6476. }
  6477. }
  6478. file_volume_server_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  6479. switch v := v.(*VolumeEcShardsToVolumeRequest); i {
  6480. case 0:
  6481. return &v.state
  6482. case 1:
  6483. return &v.sizeCache
  6484. case 2:
  6485. return &v.unknownFields
  6486. default:
  6487. return nil
  6488. }
  6489. }
  6490. file_volume_server_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  6491. switch v := v.(*VolumeEcShardsToVolumeResponse); i {
  6492. case 0:
  6493. return &v.state
  6494. case 1:
  6495. return &v.sizeCache
  6496. case 2:
  6497. return &v.unknownFields
  6498. default:
  6499. return nil
  6500. }
  6501. }
  6502. file_volume_server_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  6503. switch v := v.(*ReadVolumeFileStatusRequest); i {
  6504. case 0:
  6505. return &v.state
  6506. case 1:
  6507. return &v.sizeCache
  6508. case 2:
  6509. return &v.unknownFields
  6510. default:
  6511. return nil
  6512. }
  6513. }
  6514. file_volume_server_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  6515. switch v := v.(*ReadVolumeFileStatusResponse); i {
  6516. case 0:
  6517. return &v.state
  6518. case 1:
  6519. return &v.sizeCache
  6520. case 2:
  6521. return &v.unknownFields
  6522. default:
  6523. return nil
  6524. }
  6525. }
  6526. file_volume_server_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
  6527. switch v := v.(*DiskStatus); i {
  6528. case 0:
  6529. return &v.state
  6530. case 1:
  6531. return &v.sizeCache
  6532. case 2:
  6533. return &v.unknownFields
  6534. default:
  6535. return nil
  6536. }
  6537. }
  6538. file_volume_server_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
  6539. switch v := v.(*MemStatus); i {
  6540. case 0:
  6541. return &v.state
  6542. case 1:
  6543. return &v.sizeCache
  6544. case 2:
  6545. return &v.unknownFields
  6546. default:
  6547. return nil
  6548. }
  6549. }
  6550. file_volume_server_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
  6551. switch v := v.(*RemoteFile); i {
  6552. case 0:
  6553. return &v.state
  6554. case 1:
  6555. return &v.sizeCache
  6556. case 2:
  6557. return &v.unknownFields
  6558. default:
  6559. return nil
  6560. }
  6561. }
  6562. file_volume_server_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
  6563. switch v := v.(*VolumeInfo); i {
  6564. case 0:
  6565. return &v.state
  6566. case 1:
  6567. return &v.sizeCache
  6568. case 2:
  6569. return &v.unknownFields
  6570. default:
  6571. return nil
  6572. }
  6573. }
  6574. file_volume_server_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
  6575. switch v := v.(*VolumeTierMoveDatToRemoteRequest); i {
  6576. case 0:
  6577. return &v.state
  6578. case 1:
  6579. return &v.sizeCache
  6580. case 2:
  6581. return &v.unknownFields
  6582. default:
  6583. return nil
  6584. }
  6585. }
  6586. file_volume_server_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
  6587. switch v := v.(*VolumeTierMoveDatToRemoteResponse); i {
  6588. case 0:
  6589. return &v.state
  6590. case 1:
  6591. return &v.sizeCache
  6592. case 2:
  6593. return &v.unknownFields
  6594. default:
  6595. return nil
  6596. }
  6597. }
  6598. file_volume_server_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
  6599. switch v := v.(*VolumeTierMoveDatFromRemoteRequest); i {
  6600. case 0:
  6601. return &v.state
  6602. case 1:
  6603. return &v.sizeCache
  6604. case 2:
  6605. return &v.unknownFields
  6606. default:
  6607. return nil
  6608. }
  6609. }
  6610. file_volume_server_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
  6611. switch v := v.(*VolumeTierMoveDatFromRemoteResponse); i {
  6612. case 0:
  6613. return &v.state
  6614. case 1:
  6615. return &v.sizeCache
  6616. case 2:
  6617. return &v.unknownFields
  6618. default:
  6619. return nil
  6620. }
  6621. }
  6622. file_volume_server_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
  6623. switch v := v.(*VolumeServerStatusRequest); i {
  6624. case 0:
  6625. return &v.state
  6626. case 1:
  6627. return &v.sizeCache
  6628. case 2:
  6629. return &v.unknownFields
  6630. default:
  6631. return nil
  6632. }
  6633. }
  6634. file_volume_server_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
  6635. switch v := v.(*VolumeServerStatusResponse); i {
  6636. case 0:
  6637. return &v.state
  6638. case 1:
  6639. return &v.sizeCache
  6640. case 2:
  6641. return &v.unknownFields
  6642. default:
  6643. return nil
  6644. }
  6645. }
  6646. file_volume_server_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
  6647. switch v := v.(*VolumeServerLeaveRequest); i {
  6648. case 0:
  6649. return &v.state
  6650. case 1:
  6651. return &v.sizeCache
  6652. case 2:
  6653. return &v.unknownFields
  6654. default:
  6655. return nil
  6656. }
  6657. }
  6658. file_volume_server_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
  6659. switch v := v.(*VolumeServerLeaveResponse); i {
  6660. case 0:
  6661. return &v.state
  6662. case 1:
  6663. return &v.sizeCache
  6664. case 2:
  6665. return &v.unknownFields
  6666. default:
  6667. return nil
  6668. }
  6669. }
  6670. file_volume_server_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
  6671. switch v := v.(*FetchAndWriteNeedleRequest); i {
  6672. case 0:
  6673. return &v.state
  6674. case 1:
  6675. return &v.sizeCache
  6676. case 2:
  6677. return &v.unknownFields
  6678. default:
  6679. return nil
  6680. }
  6681. }
  6682. file_volume_server_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
  6683. switch v := v.(*FetchAndWriteNeedleResponse); i {
  6684. case 0:
  6685. return &v.state
  6686. case 1:
  6687. return &v.sizeCache
  6688. case 2:
  6689. return &v.unknownFields
  6690. default:
  6691. return nil
  6692. }
  6693. }
  6694. file_volume_server_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
  6695. switch v := v.(*QueryRequest); i {
  6696. case 0:
  6697. return &v.state
  6698. case 1:
  6699. return &v.sizeCache
  6700. case 2:
  6701. return &v.unknownFields
  6702. default:
  6703. return nil
  6704. }
  6705. }
  6706. file_volume_server_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
  6707. switch v := v.(*QueriedStripe); i {
  6708. case 0:
  6709. return &v.state
  6710. case 1:
  6711. return &v.sizeCache
  6712. case 2:
  6713. return &v.unknownFields
  6714. default:
  6715. return nil
  6716. }
  6717. }
  6718. file_volume_server_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
  6719. switch v := v.(*VolumeNeedleStatusRequest); i {
  6720. case 0:
  6721. return &v.state
  6722. case 1:
  6723. return &v.sizeCache
  6724. case 2:
  6725. return &v.unknownFields
  6726. default:
  6727. return nil
  6728. }
  6729. }
  6730. file_volume_server_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
  6731. switch v := v.(*VolumeNeedleStatusResponse); i {
  6732. case 0:
  6733. return &v.state
  6734. case 1:
  6735. return &v.sizeCache
  6736. case 2:
  6737. return &v.unknownFields
  6738. default:
  6739. return nil
  6740. }
  6741. }
  6742. file_volume_server_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
  6743. switch v := v.(*FetchAndWriteNeedleRequest_Replica); i {
  6744. case 0:
  6745. return &v.state
  6746. case 1:
  6747. return &v.sizeCache
  6748. case 2:
  6749. return &v.unknownFields
  6750. default:
  6751. return nil
  6752. }
  6753. }
  6754. file_volume_server_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
  6755. switch v := v.(*QueryRequest_Filter); i {
  6756. case 0:
  6757. return &v.state
  6758. case 1:
  6759. return &v.sizeCache
  6760. case 2:
  6761. return &v.unknownFields
  6762. default:
  6763. return nil
  6764. }
  6765. }
  6766. file_volume_server_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
  6767. switch v := v.(*QueryRequest_InputSerialization); i {
  6768. case 0:
  6769. return &v.state
  6770. case 1:
  6771. return &v.sizeCache
  6772. case 2:
  6773. return &v.unknownFields
  6774. default:
  6775. return nil
  6776. }
  6777. }
  6778. file_volume_server_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
  6779. switch v := v.(*QueryRequest_OutputSerialization); i {
  6780. case 0:
  6781. return &v.state
  6782. case 1:
  6783. return &v.sizeCache
  6784. case 2:
  6785. return &v.unknownFields
  6786. default:
  6787. return nil
  6788. }
  6789. }
  6790. file_volume_server_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} {
  6791. switch v := v.(*QueryRequest_InputSerialization_CSVInput); i {
  6792. case 0:
  6793. return &v.state
  6794. case 1:
  6795. return &v.sizeCache
  6796. case 2:
  6797. return &v.unknownFields
  6798. default:
  6799. return nil
  6800. }
  6801. }
  6802. file_volume_server_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} {
  6803. switch v := v.(*QueryRequest_InputSerialization_JSONInput); i {
  6804. case 0:
  6805. return &v.state
  6806. case 1:
  6807. return &v.sizeCache
  6808. case 2:
  6809. return &v.unknownFields
  6810. default:
  6811. return nil
  6812. }
  6813. }
  6814. file_volume_server_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} {
  6815. switch v := v.(*QueryRequest_InputSerialization_ParquetInput); i {
  6816. case 0:
  6817. return &v.state
  6818. case 1:
  6819. return &v.sizeCache
  6820. case 2:
  6821. return &v.unknownFields
  6822. default:
  6823. return nil
  6824. }
  6825. }
  6826. file_volume_server_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} {
  6827. switch v := v.(*QueryRequest_OutputSerialization_CSVOutput); i {
  6828. case 0:
  6829. return &v.state
  6830. case 1:
  6831. return &v.sizeCache
  6832. case 2:
  6833. return &v.unknownFields
  6834. default:
  6835. return nil
  6836. }
  6837. }
  6838. file_volume_server_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} {
  6839. switch v := v.(*QueryRequest_OutputSerialization_JSONOutput); i {
  6840. case 0:
  6841. return &v.state
  6842. case 1:
  6843. return &v.sizeCache
  6844. case 2:
  6845. return &v.unknownFields
  6846. default:
  6847. return nil
  6848. }
  6849. }
  6850. }
  6851. type x struct{}
  6852. out := protoimpl.TypeBuilder{
  6853. File: protoimpl.DescBuilder{
  6854. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  6855. RawDescriptor: file_volume_server_proto_rawDesc,
  6856. NumEnums: 0,
  6857. NumMessages: 95,
  6858. NumExtensions: 0,
  6859. NumServices: 1,
  6860. },
  6861. GoTypes: file_volume_server_proto_goTypes,
  6862. DependencyIndexes: file_volume_server_proto_depIdxs,
  6863. MessageInfos: file_volume_server_proto_msgTypes,
  6864. }.Build()
  6865. File_volume_server_proto = out.File
  6866. file_volume_server_proto_rawDesc = nil
  6867. file_volume_server_proto_goTypes = nil
  6868. file_volume_server_proto_depIdxs = nil
  6869. }