filer.pb.go 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.21.12
  5. // source: filer.proto
  6. package filer_pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type LookupDirectoryEntryRequest struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
  24. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  25. }
  26. func (x *LookupDirectoryEntryRequest) Reset() {
  27. *x = LookupDirectoryEntryRequest{}
  28. if protoimpl.UnsafeEnabled {
  29. mi := &file_filer_proto_msgTypes[0]
  30. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  31. ms.StoreMessageInfo(mi)
  32. }
  33. }
  34. func (x *LookupDirectoryEntryRequest) String() string {
  35. return protoimpl.X.MessageStringOf(x)
  36. }
  37. func (*LookupDirectoryEntryRequest) ProtoMessage() {}
  38. func (x *LookupDirectoryEntryRequest) ProtoReflect() protoreflect.Message {
  39. mi := &file_filer_proto_msgTypes[0]
  40. if protoimpl.UnsafeEnabled && x != nil {
  41. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  42. if ms.LoadMessageInfo() == nil {
  43. ms.StoreMessageInfo(mi)
  44. }
  45. return ms
  46. }
  47. return mi.MessageOf(x)
  48. }
  49. // Deprecated: Use LookupDirectoryEntryRequest.ProtoReflect.Descriptor instead.
  50. func (*LookupDirectoryEntryRequest) Descriptor() ([]byte, []int) {
  51. return file_filer_proto_rawDescGZIP(), []int{0}
  52. }
  53. func (x *LookupDirectoryEntryRequest) GetDirectory() string {
  54. if x != nil {
  55. return x.Directory
  56. }
  57. return ""
  58. }
  59. func (x *LookupDirectoryEntryRequest) GetName() string {
  60. if x != nil {
  61. return x.Name
  62. }
  63. return ""
  64. }
  65. type LookupDirectoryEntryResponse struct {
  66. state protoimpl.MessageState
  67. sizeCache protoimpl.SizeCache
  68. unknownFields protoimpl.UnknownFields
  69. Entry *Entry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
  70. }
  71. func (x *LookupDirectoryEntryResponse) Reset() {
  72. *x = LookupDirectoryEntryResponse{}
  73. if protoimpl.UnsafeEnabled {
  74. mi := &file_filer_proto_msgTypes[1]
  75. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  76. ms.StoreMessageInfo(mi)
  77. }
  78. }
  79. func (x *LookupDirectoryEntryResponse) String() string {
  80. return protoimpl.X.MessageStringOf(x)
  81. }
  82. func (*LookupDirectoryEntryResponse) ProtoMessage() {}
  83. func (x *LookupDirectoryEntryResponse) ProtoReflect() protoreflect.Message {
  84. mi := &file_filer_proto_msgTypes[1]
  85. if protoimpl.UnsafeEnabled && x != nil {
  86. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  87. if ms.LoadMessageInfo() == nil {
  88. ms.StoreMessageInfo(mi)
  89. }
  90. return ms
  91. }
  92. return mi.MessageOf(x)
  93. }
  94. // Deprecated: Use LookupDirectoryEntryResponse.ProtoReflect.Descriptor instead.
  95. func (*LookupDirectoryEntryResponse) Descriptor() ([]byte, []int) {
  96. return file_filer_proto_rawDescGZIP(), []int{1}
  97. }
  98. func (x *LookupDirectoryEntryResponse) GetEntry() *Entry {
  99. if x != nil {
  100. return x.Entry
  101. }
  102. return nil
  103. }
  104. type ListEntriesRequest struct {
  105. state protoimpl.MessageState
  106. sizeCache protoimpl.SizeCache
  107. unknownFields protoimpl.UnknownFields
  108. Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
  109. Prefix string `protobuf:"bytes,2,opt,name=prefix,proto3" json:"prefix,omitempty"`
  110. StartFromFileName string `protobuf:"bytes,3,opt,name=startFromFileName,proto3" json:"startFromFileName,omitempty"`
  111. InclusiveStartFrom bool `protobuf:"varint,4,opt,name=inclusiveStartFrom,proto3" json:"inclusiveStartFrom,omitempty"`
  112. Limit uint32 `protobuf:"varint,5,opt,name=limit,proto3" json:"limit,omitempty"`
  113. }
  114. func (x *ListEntriesRequest) Reset() {
  115. *x = ListEntriesRequest{}
  116. if protoimpl.UnsafeEnabled {
  117. mi := &file_filer_proto_msgTypes[2]
  118. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  119. ms.StoreMessageInfo(mi)
  120. }
  121. }
  122. func (x *ListEntriesRequest) String() string {
  123. return protoimpl.X.MessageStringOf(x)
  124. }
  125. func (*ListEntriesRequest) ProtoMessage() {}
  126. func (x *ListEntriesRequest) ProtoReflect() protoreflect.Message {
  127. mi := &file_filer_proto_msgTypes[2]
  128. if protoimpl.UnsafeEnabled && x != nil {
  129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  130. if ms.LoadMessageInfo() == nil {
  131. ms.StoreMessageInfo(mi)
  132. }
  133. return ms
  134. }
  135. return mi.MessageOf(x)
  136. }
  137. // Deprecated: Use ListEntriesRequest.ProtoReflect.Descriptor instead.
  138. func (*ListEntriesRequest) Descriptor() ([]byte, []int) {
  139. return file_filer_proto_rawDescGZIP(), []int{2}
  140. }
  141. func (x *ListEntriesRequest) GetDirectory() string {
  142. if x != nil {
  143. return x.Directory
  144. }
  145. return ""
  146. }
  147. func (x *ListEntriesRequest) GetPrefix() string {
  148. if x != nil {
  149. return x.Prefix
  150. }
  151. return ""
  152. }
  153. func (x *ListEntriesRequest) GetStartFromFileName() string {
  154. if x != nil {
  155. return x.StartFromFileName
  156. }
  157. return ""
  158. }
  159. func (x *ListEntriesRequest) GetInclusiveStartFrom() bool {
  160. if x != nil {
  161. return x.InclusiveStartFrom
  162. }
  163. return false
  164. }
  165. func (x *ListEntriesRequest) GetLimit() uint32 {
  166. if x != nil {
  167. return x.Limit
  168. }
  169. return 0
  170. }
  171. type ListEntriesResponse struct {
  172. state protoimpl.MessageState
  173. sizeCache protoimpl.SizeCache
  174. unknownFields protoimpl.UnknownFields
  175. Entry *Entry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
  176. }
  177. func (x *ListEntriesResponse) Reset() {
  178. *x = ListEntriesResponse{}
  179. if protoimpl.UnsafeEnabled {
  180. mi := &file_filer_proto_msgTypes[3]
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. ms.StoreMessageInfo(mi)
  183. }
  184. }
  185. func (x *ListEntriesResponse) String() string {
  186. return protoimpl.X.MessageStringOf(x)
  187. }
  188. func (*ListEntriesResponse) ProtoMessage() {}
  189. func (x *ListEntriesResponse) ProtoReflect() protoreflect.Message {
  190. mi := &file_filer_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 ListEntriesResponse.ProtoReflect.Descriptor instead.
  201. func (*ListEntriesResponse) Descriptor() ([]byte, []int) {
  202. return file_filer_proto_rawDescGZIP(), []int{3}
  203. }
  204. func (x *ListEntriesResponse) GetEntry() *Entry {
  205. if x != nil {
  206. return x.Entry
  207. }
  208. return nil
  209. }
  210. type RemoteEntry struct {
  211. state protoimpl.MessageState
  212. sizeCache protoimpl.SizeCache
  213. unknownFields protoimpl.UnknownFields
  214. StorageName string `protobuf:"bytes,1,opt,name=storage_name,json=storageName,proto3" json:"storage_name,omitempty"`
  215. LastLocalSyncTsNs int64 `protobuf:"varint,2,opt,name=last_local_sync_ts_ns,json=lastLocalSyncTsNs,proto3" json:"last_local_sync_ts_ns,omitempty"`
  216. RemoteETag string `protobuf:"bytes,3,opt,name=remote_e_tag,json=remoteETag,proto3" json:"remote_e_tag,omitempty"`
  217. RemoteMtime int64 `protobuf:"varint,4,opt,name=remote_mtime,json=remoteMtime,proto3" json:"remote_mtime,omitempty"`
  218. RemoteSize int64 `protobuf:"varint,5,opt,name=remote_size,json=remoteSize,proto3" json:"remote_size,omitempty"`
  219. }
  220. func (x *RemoteEntry) Reset() {
  221. *x = RemoteEntry{}
  222. if protoimpl.UnsafeEnabled {
  223. mi := &file_filer_proto_msgTypes[4]
  224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  225. ms.StoreMessageInfo(mi)
  226. }
  227. }
  228. func (x *RemoteEntry) String() string {
  229. return protoimpl.X.MessageStringOf(x)
  230. }
  231. func (*RemoteEntry) ProtoMessage() {}
  232. func (x *RemoteEntry) ProtoReflect() protoreflect.Message {
  233. mi := &file_filer_proto_msgTypes[4]
  234. if protoimpl.UnsafeEnabled && x != nil {
  235. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  236. if ms.LoadMessageInfo() == nil {
  237. ms.StoreMessageInfo(mi)
  238. }
  239. return ms
  240. }
  241. return mi.MessageOf(x)
  242. }
  243. // Deprecated: Use RemoteEntry.ProtoReflect.Descriptor instead.
  244. func (*RemoteEntry) Descriptor() ([]byte, []int) {
  245. return file_filer_proto_rawDescGZIP(), []int{4}
  246. }
  247. func (x *RemoteEntry) GetStorageName() string {
  248. if x != nil {
  249. return x.StorageName
  250. }
  251. return ""
  252. }
  253. func (x *RemoteEntry) GetLastLocalSyncTsNs() int64 {
  254. if x != nil {
  255. return x.LastLocalSyncTsNs
  256. }
  257. return 0
  258. }
  259. func (x *RemoteEntry) GetRemoteETag() string {
  260. if x != nil {
  261. return x.RemoteETag
  262. }
  263. return ""
  264. }
  265. func (x *RemoteEntry) GetRemoteMtime() int64 {
  266. if x != nil {
  267. return x.RemoteMtime
  268. }
  269. return 0
  270. }
  271. func (x *RemoteEntry) GetRemoteSize() int64 {
  272. if x != nil {
  273. return x.RemoteSize
  274. }
  275. return 0
  276. }
  277. type Entry struct {
  278. state protoimpl.MessageState
  279. sizeCache protoimpl.SizeCache
  280. unknownFields protoimpl.UnknownFields
  281. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  282. IsDirectory bool `protobuf:"varint,2,opt,name=is_directory,json=isDirectory,proto3" json:"is_directory,omitempty"`
  283. Chunks []*FileChunk `protobuf:"bytes,3,rep,name=chunks,proto3" json:"chunks,omitempty"`
  284. Attributes *FuseAttributes `protobuf:"bytes,4,opt,name=attributes,proto3" json:"attributes,omitempty"`
  285. Extended map[string][]byte `protobuf:"bytes,5,rep,name=extended,proto3" json:"extended,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  286. HardLinkId []byte `protobuf:"bytes,7,opt,name=hard_link_id,json=hardLinkId,proto3" json:"hard_link_id,omitempty"`
  287. HardLinkCounter int32 `protobuf:"varint,8,opt,name=hard_link_counter,json=hardLinkCounter,proto3" json:"hard_link_counter,omitempty"` // only exists in hard link meta data
  288. Content []byte `protobuf:"bytes,9,opt,name=content,proto3" json:"content,omitempty"` // if not empty, the file content
  289. RemoteEntry *RemoteEntry `protobuf:"bytes,10,opt,name=remote_entry,json=remoteEntry,proto3" json:"remote_entry,omitempty"`
  290. Quota int64 `protobuf:"varint,11,opt,name=quota,proto3" json:"quota,omitempty"` // for bucket only. Positive/Negative means enabled/disabled.
  291. }
  292. func (x *Entry) Reset() {
  293. *x = Entry{}
  294. if protoimpl.UnsafeEnabled {
  295. mi := &file_filer_proto_msgTypes[5]
  296. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  297. ms.StoreMessageInfo(mi)
  298. }
  299. }
  300. func (x *Entry) String() string {
  301. return protoimpl.X.MessageStringOf(x)
  302. }
  303. func (*Entry) ProtoMessage() {}
  304. func (x *Entry) ProtoReflect() protoreflect.Message {
  305. mi := &file_filer_proto_msgTypes[5]
  306. if protoimpl.UnsafeEnabled && x != nil {
  307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  308. if ms.LoadMessageInfo() == nil {
  309. ms.StoreMessageInfo(mi)
  310. }
  311. return ms
  312. }
  313. return mi.MessageOf(x)
  314. }
  315. // Deprecated: Use Entry.ProtoReflect.Descriptor instead.
  316. func (*Entry) Descriptor() ([]byte, []int) {
  317. return file_filer_proto_rawDescGZIP(), []int{5}
  318. }
  319. func (x *Entry) GetName() string {
  320. if x != nil {
  321. return x.Name
  322. }
  323. return ""
  324. }
  325. func (x *Entry) GetIsDirectory() bool {
  326. if x != nil {
  327. return x.IsDirectory
  328. }
  329. return false
  330. }
  331. func (x *Entry) GetChunks() []*FileChunk {
  332. if x != nil {
  333. return x.Chunks
  334. }
  335. return nil
  336. }
  337. func (x *Entry) GetAttributes() *FuseAttributes {
  338. if x != nil {
  339. return x.Attributes
  340. }
  341. return nil
  342. }
  343. func (x *Entry) GetExtended() map[string][]byte {
  344. if x != nil {
  345. return x.Extended
  346. }
  347. return nil
  348. }
  349. func (x *Entry) GetHardLinkId() []byte {
  350. if x != nil {
  351. return x.HardLinkId
  352. }
  353. return nil
  354. }
  355. func (x *Entry) GetHardLinkCounter() int32 {
  356. if x != nil {
  357. return x.HardLinkCounter
  358. }
  359. return 0
  360. }
  361. func (x *Entry) GetContent() []byte {
  362. if x != nil {
  363. return x.Content
  364. }
  365. return nil
  366. }
  367. func (x *Entry) GetRemoteEntry() *RemoteEntry {
  368. if x != nil {
  369. return x.RemoteEntry
  370. }
  371. return nil
  372. }
  373. func (x *Entry) GetQuota() int64 {
  374. if x != nil {
  375. return x.Quota
  376. }
  377. return 0
  378. }
  379. type FullEntry struct {
  380. state protoimpl.MessageState
  381. sizeCache protoimpl.SizeCache
  382. unknownFields protoimpl.UnknownFields
  383. Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
  384. Entry *Entry `protobuf:"bytes,2,opt,name=entry,proto3" json:"entry,omitempty"`
  385. }
  386. func (x *FullEntry) Reset() {
  387. *x = FullEntry{}
  388. if protoimpl.UnsafeEnabled {
  389. mi := &file_filer_proto_msgTypes[6]
  390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  391. ms.StoreMessageInfo(mi)
  392. }
  393. }
  394. func (x *FullEntry) String() string {
  395. return protoimpl.X.MessageStringOf(x)
  396. }
  397. func (*FullEntry) ProtoMessage() {}
  398. func (x *FullEntry) ProtoReflect() protoreflect.Message {
  399. mi := &file_filer_proto_msgTypes[6]
  400. if protoimpl.UnsafeEnabled && x != nil {
  401. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  402. if ms.LoadMessageInfo() == nil {
  403. ms.StoreMessageInfo(mi)
  404. }
  405. return ms
  406. }
  407. return mi.MessageOf(x)
  408. }
  409. // Deprecated: Use FullEntry.ProtoReflect.Descriptor instead.
  410. func (*FullEntry) Descriptor() ([]byte, []int) {
  411. return file_filer_proto_rawDescGZIP(), []int{6}
  412. }
  413. func (x *FullEntry) GetDir() string {
  414. if x != nil {
  415. return x.Dir
  416. }
  417. return ""
  418. }
  419. func (x *FullEntry) GetEntry() *Entry {
  420. if x != nil {
  421. return x.Entry
  422. }
  423. return nil
  424. }
  425. type EventNotification struct {
  426. state protoimpl.MessageState
  427. sizeCache protoimpl.SizeCache
  428. unknownFields protoimpl.UnknownFields
  429. OldEntry *Entry `protobuf:"bytes,1,opt,name=old_entry,json=oldEntry,proto3" json:"old_entry,omitempty"`
  430. NewEntry *Entry `protobuf:"bytes,2,opt,name=new_entry,json=newEntry,proto3" json:"new_entry,omitempty"`
  431. DeleteChunks bool `protobuf:"varint,3,opt,name=delete_chunks,json=deleteChunks,proto3" json:"delete_chunks,omitempty"`
  432. NewParentPath string `protobuf:"bytes,4,opt,name=new_parent_path,json=newParentPath,proto3" json:"new_parent_path,omitempty"`
  433. IsFromOtherCluster bool `protobuf:"varint,5,opt,name=is_from_other_cluster,json=isFromOtherCluster,proto3" json:"is_from_other_cluster,omitempty"`
  434. Signatures []int32 `protobuf:"varint,6,rep,packed,name=signatures,proto3" json:"signatures,omitempty"`
  435. }
  436. func (x *EventNotification) Reset() {
  437. *x = EventNotification{}
  438. if protoimpl.UnsafeEnabled {
  439. mi := &file_filer_proto_msgTypes[7]
  440. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  441. ms.StoreMessageInfo(mi)
  442. }
  443. }
  444. func (x *EventNotification) String() string {
  445. return protoimpl.X.MessageStringOf(x)
  446. }
  447. func (*EventNotification) ProtoMessage() {}
  448. func (x *EventNotification) ProtoReflect() protoreflect.Message {
  449. mi := &file_filer_proto_msgTypes[7]
  450. if protoimpl.UnsafeEnabled && x != nil {
  451. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  452. if ms.LoadMessageInfo() == nil {
  453. ms.StoreMessageInfo(mi)
  454. }
  455. return ms
  456. }
  457. return mi.MessageOf(x)
  458. }
  459. // Deprecated: Use EventNotification.ProtoReflect.Descriptor instead.
  460. func (*EventNotification) Descriptor() ([]byte, []int) {
  461. return file_filer_proto_rawDescGZIP(), []int{7}
  462. }
  463. func (x *EventNotification) GetOldEntry() *Entry {
  464. if x != nil {
  465. return x.OldEntry
  466. }
  467. return nil
  468. }
  469. func (x *EventNotification) GetNewEntry() *Entry {
  470. if x != nil {
  471. return x.NewEntry
  472. }
  473. return nil
  474. }
  475. func (x *EventNotification) GetDeleteChunks() bool {
  476. if x != nil {
  477. return x.DeleteChunks
  478. }
  479. return false
  480. }
  481. func (x *EventNotification) GetNewParentPath() string {
  482. if x != nil {
  483. return x.NewParentPath
  484. }
  485. return ""
  486. }
  487. func (x *EventNotification) GetIsFromOtherCluster() bool {
  488. if x != nil {
  489. return x.IsFromOtherCluster
  490. }
  491. return false
  492. }
  493. func (x *EventNotification) GetSignatures() []int32 {
  494. if x != nil {
  495. return x.Signatures
  496. }
  497. return nil
  498. }
  499. type FileChunk struct {
  500. state protoimpl.MessageState
  501. sizeCache protoimpl.SizeCache
  502. unknownFields protoimpl.UnknownFields
  503. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"` // to be deprecated
  504. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
  505. Size uint64 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
  506. ModifiedTsNs int64 `protobuf:"varint,4,opt,name=modified_ts_ns,json=modifiedTsNs,proto3" json:"modified_ts_ns,omitempty"`
  507. ETag string `protobuf:"bytes,5,opt,name=e_tag,json=eTag,proto3" json:"e_tag,omitempty"`
  508. SourceFileId string `protobuf:"bytes,6,opt,name=source_file_id,json=sourceFileId,proto3" json:"source_file_id,omitempty"` // to be deprecated
  509. Fid *FileId `protobuf:"bytes,7,opt,name=fid,proto3" json:"fid,omitempty"`
  510. SourceFid *FileId `protobuf:"bytes,8,opt,name=source_fid,json=sourceFid,proto3" json:"source_fid,omitempty"`
  511. CipherKey []byte `protobuf:"bytes,9,opt,name=cipher_key,json=cipherKey,proto3" json:"cipher_key,omitempty"`
  512. IsCompressed bool `protobuf:"varint,10,opt,name=is_compressed,json=isCompressed,proto3" json:"is_compressed,omitempty"`
  513. IsChunkManifest bool `protobuf:"varint,11,opt,name=is_chunk_manifest,json=isChunkManifest,proto3" json:"is_chunk_manifest,omitempty"` // content is a list of FileChunks
  514. }
  515. func (x *FileChunk) Reset() {
  516. *x = FileChunk{}
  517. if protoimpl.UnsafeEnabled {
  518. mi := &file_filer_proto_msgTypes[8]
  519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  520. ms.StoreMessageInfo(mi)
  521. }
  522. }
  523. func (x *FileChunk) String() string {
  524. return protoimpl.X.MessageStringOf(x)
  525. }
  526. func (*FileChunk) ProtoMessage() {}
  527. func (x *FileChunk) ProtoReflect() protoreflect.Message {
  528. mi := &file_filer_proto_msgTypes[8]
  529. if protoimpl.UnsafeEnabled && x != nil {
  530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  531. if ms.LoadMessageInfo() == nil {
  532. ms.StoreMessageInfo(mi)
  533. }
  534. return ms
  535. }
  536. return mi.MessageOf(x)
  537. }
  538. // Deprecated: Use FileChunk.ProtoReflect.Descriptor instead.
  539. func (*FileChunk) Descriptor() ([]byte, []int) {
  540. return file_filer_proto_rawDescGZIP(), []int{8}
  541. }
  542. func (x *FileChunk) GetFileId() string {
  543. if x != nil {
  544. return x.FileId
  545. }
  546. return ""
  547. }
  548. func (x *FileChunk) GetOffset() int64 {
  549. if x != nil {
  550. return x.Offset
  551. }
  552. return 0
  553. }
  554. func (x *FileChunk) GetSize() uint64 {
  555. if x != nil {
  556. return x.Size
  557. }
  558. return 0
  559. }
  560. func (x *FileChunk) GetModifiedTsNs() int64 {
  561. if x != nil {
  562. return x.ModifiedTsNs
  563. }
  564. return 0
  565. }
  566. func (x *FileChunk) GetETag() string {
  567. if x != nil {
  568. return x.ETag
  569. }
  570. return ""
  571. }
  572. func (x *FileChunk) GetSourceFileId() string {
  573. if x != nil {
  574. return x.SourceFileId
  575. }
  576. return ""
  577. }
  578. func (x *FileChunk) GetFid() *FileId {
  579. if x != nil {
  580. return x.Fid
  581. }
  582. return nil
  583. }
  584. func (x *FileChunk) GetSourceFid() *FileId {
  585. if x != nil {
  586. return x.SourceFid
  587. }
  588. return nil
  589. }
  590. func (x *FileChunk) GetCipherKey() []byte {
  591. if x != nil {
  592. return x.CipherKey
  593. }
  594. return nil
  595. }
  596. func (x *FileChunk) GetIsCompressed() bool {
  597. if x != nil {
  598. return x.IsCompressed
  599. }
  600. return false
  601. }
  602. func (x *FileChunk) GetIsChunkManifest() bool {
  603. if x != nil {
  604. return x.IsChunkManifest
  605. }
  606. return false
  607. }
  608. type FileChunkManifest struct {
  609. state protoimpl.MessageState
  610. sizeCache protoimpl.SizeCache
  611. unknownFields protoimpl.UnknownFields
  612. Chunks []*FileChunk `protobuf:"bytes,1,rep,name=chunks,proto3" json:"chunks,omitempty"`
  613. }
  614. func (x *FileChunkManifest) Reset() {
  615. *x = FileChunkManifest{}
  616. if protoimpl.UnsafeEnabled {
  617. mi := &file_filer_proto_msgTypes[9]
  618. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  619. ms.StoreMessageInfo(mi)
  620. }
  621. }
  622. func (x *FileChunkManifest) String() string {
  623. return protoimpl.X.MessageStringOf(x)
  624. }
  625. func (*FileChunkManifest) ProtoMessage() {}
  626. func (x *FileChunkManifest) ProtoReflect() protoreflect.Message {
  627. mi := &file_filer_proto_msgTypes[9]
  628. if protoimpl.UnsafeEnabled && x != nil {
  629. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  630. if ms.LoadMessageInfo() == nil {
  631. ms.StoreMessageInfo(mi)
  632. }
  633. return ms
  634. }
  635. return mi.MessageOf(x)
  636. }
  637. // Deprecated: Use FileChunkManifest.ProtoReflect.Descriptor instead.
  638. func (*FileChunkManifest) Descriptor() ([]byte, []int) {
  639. return file_filer_proto_rawDescGZIP(), []int{9}
  640. }
  641. func (x *FileChunkManifest) GetChunks() []*FileChunk {
  642. if x != nil {
  643. return x.Chunks
  644. }
  645. return nil
  646. }
  647. type FileId struct {
  648. state protoimpl.MessageState
  649. sizeCache protoimpl.SizeCache
  650. unknownFields protoimpl.UnknownFields
  651. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId,proto3" json:"volume_id,omitempty"`
  652. FileKey uint64 `protobuf:"varint,2,opt,name=file_key,json=fileKey,proto3" json:"file_key,omitempty"`
  653. Cookie uint32 `protobuf:"fixed32,3,opt,name=cookie,proto3" json:"cookie,omitempty"`
  654. }
  655. func (x *FileId) Reset() {
  656. *x = FileId{}
  657. if protoimpl.UnsafeEnabled {
  658. mi := &file_filer_proto_msgTypes[10]
  659. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  660. ms.StoreMessageInfo(mi)
  661. }
  662. }
  663. func (x *FileId) String() string {
  664. return protoimpl.X.MessageStringOf(x)
  665. }
  666. func (*FileId) ProtoMessage() {}
  667. func (x *FileId) ProtoReflect() protoreflect.Message {
  668. mi := &file_filer_proto_msgTypes[10]
  669. if protoimpl.UnsafeEnabled && x != nil {
  670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  671. if ms.LoadMessageInfo() == nil {
  672. ms.StoreMessageInfo(mi)
  673. }
  674. return ms
  675. }
  676. return mi.MessageOf(x)
  677. }
  678. // Deprecated: Use FileId.ProtoReflect.Descriptor instead.
  679. func (*FileId) Descriptor() ([]byte, []int) {
  680. return file_filer_proto_rawDescGZIP(), []int{10}
  681. }
  682. func (x *FileId) GetVolumeId() uint32 {
  683. if x != nil {
  684. return x.VolumeId
  685. }
  686. return 0
  687. }
  688. func (x *FileId) GetFileKey() uint64 {
  689. if x != nil {
  690. return x.FileKey
  691. }
  692. return 0
  693. }
  694. func (x *FileId) GetCookie() uint32 {
  695. if x != nil {
  696. return x.Cookie
  697. }
  698. return 0
  699. }
  700. type FuseAttributes struct {
  701. state protoimpl.MessageState
  702. sizeCache protoimpl.SizeCache
  703. unknownFields protoimpl.UnknownFields
  704. FileSize uint64 `protobuf:"varint,1,opt,name=file_size,json=fileSize,proto3" json:"file_size,omitempty"`
  705. Mtime int64 `protobuf:"varint,2,opt,name=mtime,proto3" json:"mtime,omitempty"` // unix time in seconds
  706. FileMode uint32 `protobuf:"varint,3,opt,name=file_mode,json=fileMode,proto3" json:"file_mode,omitempty"`
  707. Uid uint32 `protobuf:"varint,4,opt,name=uid,proto3" json:"uid,omitempty"`
  708. Gid uint32 `protobuf:"varint,5,opt,name=gid,proto3" json:"gid,omitempty"`
  709. Crtime int64 `protobuf:"varint,6,opt,name=crtime,proto3" json:"crtime,omitempty"` // unix time in seconds
  710. Mime string `protobuf:"bytes,7,opt,name=mime,proto3" json:"mime,omitempty"`
  711. TtlSec int32 `protobuf:"varint,10,opt,name=ttl_sec,json=ttlSec,proto3" json:"ttl_sec,omitempty"`
  712. UserName string `protobuf:"bytes,11,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"` // for hdfs
  713. GroupName []string `protobuf:"bytes,12,rep,name=group_name,json=groupName,proto3" json:"group_name,omitempty"` // for hdfs
  714. SymlinkTarget string `protobuf:"bytes,13,opt,name=symlink_target,json=symlinkTarget,proto3" json:"symlink_target,omitempty"`
  715. Md5 []byte `protobuf:"bytes,14,opt,name=md5,proto3" json:"md5,omitempty"`
  716. Rdev uint32 `protobuf:"varint,16,opt,name=rdev,proto3" json:"rdev,omitempty"`
  717. Inode uint64 `protobuf:"varint,17,opt,name=inode,proto3" json:"inode,omitempty"`
  718. }
  719. func (x *FuseAttributes) Reset() {
  720. *x = FuseAttributes{}
  721. if protoimpl.UnsafeEnabled {
  722. mi := &file_filer_proto_msgTypes[11]
  723. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  724. ms.StoreMessageInfo(mi)
  725. }
  726. }
  727. func (x *FuseAttributes) String() string {
  728. return protoimpl.X.MessageStringOf(x)
  729. }
  730. func (*FuseAttributes) ProtoMessage() {}
  731. func (x *FuseAttributes) ProtoReflect() protoreflect.Message {
  732. mi := &file_filer_proto_msgTypes[11]
  733. if protoimpl.UnsafeEnabled && x != nil {
  734. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  735. if ms.LoadMessageInfo() == nil {
  736. ms.StoreMessageInfo(mi)
  737. }
  738. return ms
  739. }
  740. return mi.MessageOf(x)
  741. }
  742. // Deprecated: Use FuseAttributes.ProtoReflect.Descriptor instead.
  743. func (*FuseAttributes) Descriptor() ([]byte, []int) {
  744. return file_filer_proto_rawDescGZIP(), []int{11}
  745. }
  746. func (x *FuseAttributes) GetFileSize() uint64 {
  747. if x != nil {
  748. return x.FileSize
  749. }
  750. return 0
  751. }
  752. func (x *FuseAttributes) GetMtime() int64 {
  753. if x != nil {
  754. return x.Mtime
  755. }
  756. return 0
  757. }
  758. func (x *FuseAttributes) GetFileMode() uint32 {
  759. if x != nil {
  760. return x.FileMode
  761. }
  762. return 0
  763. }
  764. func (x *FuseAttributes) GetUid() uint32 {
  765. if x != nil {
  766. return x.Uid
  767. }
  768. return 0
  769. }
  770. func (x *FuseAttributes) GetGid() uint32 {
  771. if x != nil {
  772. return x.Gid
  773. }
  774. return 0
  775. }
  776. func (x *FuseAttributes) GetCrtime() int64 {
  777. if x != nil {
  778. return x.Crtime
  779. }
  780. return 0
  781. }
  782. func (x *FuseAttributes) GetMime() string {
  783. if x != nil {
  784. return x.Mime
  785. }
  786. return ""
  787. }
  788. func (x *FuseAttributes) GetTtlSec() int32 {
  789. if x != nil {
  790. return x.TtlSec
  791. }
  792. return 0
  793. }
  794. func (x *FuseAttributes) GetUserName() string {
  795. if x != nil {
  796. return x.UserName
  797. }
  798. return ""
  799. }
  800. func (x *FuseAttributes) GetGroupName() []string {
  801. if x != nil {
  802. return x.GroupName
  803. }
  804. return nil
  805. }
  806. func (x *FuseAttributes) GetSymlinkTarget() string {
  807. if x != nil {
  808. return x.SymlinkTarget
  809. }
  810. return ""
  811. }
  812. func (x *FuseAttributes) GetMd5() []byte {
  813. if x != nil {
  814. return x.Md5
  815. }
  816. return nil
  817. }
  818. func (x *FuseAttributes) GetRdev() uint32 {
  819. if x != nil {
  820. return x.Rdev
  821. }
  822. return 0
  823. }
  824. func (x *FuseAttributes) GetInode() uint64 {
  825. if x != nil {
  826. return x.Inode
  827. }
  828. return 0
  829. }
  830. type CreateEntryRequest struct {
  831. state protoimpl.MessageState
  832. sizeCache protoimpl.SizeCache
  833. unknownFields protoimpl.UnknownFields
  834. Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
  835. Entry *Entry `protobuf:"bytes,2,opt,name=entry,proto3" json:"entry,omitempty"`
  836. OExcl bool `protobuf:"varint,3,opt,name=o_excl,json=oExcl,proto3" json:"o_excl,omitempty"`
  837. IsFromOtherCluster bool `protobuf:"varint,4,opt,name=is_from_other_cluster,json=isFromOtherCluster,proto3" json:"is_from_other_cluster,omitempty"`
  838. Signatures []int32 `protobuf:"varint,5,rep,packed,name=signatures,proto3" json:"signatures,omitempty"`
  839. SkipCheckParentDirectory bool `protobuf:"varint,6,opt,name=skip_check_parent_directory,json=skipCheckParentDirectory,proto3" json:"skip_check_parent_directory,omitempty"`
  840. }
  841. func (x *CreateEntryRequest) Reset() {
  842. *x = CreateEntryRequest{}
  843. if protoimpl.UnsafeEnabled {
  844. mi := &file_filer_proto_msgTypes[12]
  845. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  846. ms.StoreMessageInfo(mi)
  847. }
  848. }
  849. func (x *CreateEntryRequest) String() string {
  850. return protoimpl.X.MessageStringOf(x)
  851. }
  852. func (*CreateEntryRequest) ProtoMessage() {}
  853. func (x *CreateEntryRequest) ProtoReflect() protoreflect.Message {
  854. mi := &file_filer_proto_msgTypes[12]
  855. if protoimpl.UnsafeEnabled && x != nil {
  856. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  857. if ms.LoadMessageInfo() == nil {
  858. ms.StoreMessageInfo(mi)
  859. }
  860. return ms
  861. }
  862. return mi.MessageOf(x)
  863. }
  864. // Deprecated: Use CreateEntryRequest.ProtoReflect.Descriptor instead.
  865. func (*CreateEntryRequest) Descriptor() ([]byte, []int) {
  866. return file_filer_proto_rawDescGZIP(), []int{12}
  867. }
  868. func (x *CreateEntryRequest) GetDirectory() string {
  869. if x != nil {
  870. return x.Directory
  871. }
  872. return ""
  873. }
  874. func (x *CreateEntryRequest) GetEntry() *Entry {
  875. if x != nil {
  876. return x.Entry
  877. }
  878. return nil
  879. }
  880. func (x *CreateEntryRequest) GetOExcl() bool {
  881. if x != nil {
  882. return x.OExcl
  883. }
  884. return false
  885. }
  886. func (x *CreateEntryRequest) GetIsFromOtherCluster() bool {
  887. if x != nil {
  888. return x.IsFromOtherCluster
  889. }
  890. return false
  891. }
  892. func (x *CreateEntryRequest) GetSignatures() []int32 {
  893. if x != nil {
  894. return x.Signatures
  895. }
  896. return nil
  897. }
  898. func (x *CreateEntryRequest) GetSkipCheckParentDirectory() bool {
  899. if x != nil {
  900. return x.SkipCheckParentDirectory
  901. }
  902. return false
  903. }
  904. type CreateEntryResponse struct {
  905. state protoimpl.MessageState
  906. sizeCache protoimpl.SizeCache
  907. unknownFields protoimpl.UnknownFields
  908. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  909. }
  910. func (x *CreateEntryResponse) Reset() {
  911. *x = CreateEntryResponse{}
  912. if protoimpl.UnsafeEnabled {
  913. mi := &file_filer_proto_msgTypes[13]
  914. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  915. ms.StoreMessageInfo(mi)
  916. }
  917. }
  918. func (x *CreateEntryResponse) String() string {
  919. return protoimpl.X.MessageStringOf(x)
  920. }
  921. func (*CreateEntryResponse) ProtoMessage() {}
  922. func (x *CreateEntryResponse) ProtoReflect() protoreflect.Message {
  923. mi := &file_filer_proto_msgTypes[13]
  924. if protoimpl.UnsafeEnabled && x != nil {
  925. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  926. if ms.LoadMessageInfo() == nil {
  927. ms.StoreMessageInfo(mi)
  928. }
  929. return ms
  930. }
  931. return mi.MessageOf(x)
  932. }
  933. // Deprecated: Use CreateEntryResponse.ProtoReflect.Descriptor instead.
  934. func (*CreateEntryResponse) Descriptor() ([]byte, []int) {
  935. return file_filer_proto_rawDescGZIP(), []int{13}
  936. }
  937. func (x *CreateEntryResponse) GetError() string {
  938. if x != nil {
  939. return x.Error
  940. }
  941. return ""
  942. }
  943. type UpdateEntryRequest struct {
  944. state protoimpl.MessageState
  945. sizeCache protoimpl.SizeCache
  946. unknownFields protoimpl.UnknownFields
  947. Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
  948. Entry *Entry `protobuf:"bytes,2,opt,name=entry,proto3" json:"entry,omitempty"`
  949. IsFromOtherCluster bool `protobuf:"varint,3,opt,name=is_from_other_cluster,json=isFromOtherCluster,proto3" json:"is_from_other_cluster,omitempty"`
  950. Signatures []int32 `protobuf:"varint,4,rep,packed,name=signatures,proto3" json:"signatures,omitempty"`
  951. }
  952. func (x *UpdateEntryRequest) Reset() {
  953. *x = UpdateEntryRequest{}
  954. if protoimpl.UnsafeEnabled {
  955. mi := &file_filer_proto_msgTypes[14]
  956. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  957. ms.StoreMessageInfo(mi)
  958. }
  959. }
  960. func (x *UpdateEntryRequest) String() string {
  961. return protoimpl.X.MessageStringOf(x)
  962. }
  963. func (*UpdateEntryRequest) ProtoMessage() {}
  964. func (x *UpdateEntryRequest) ProtoReflect() protoreflect.Message {
  965. mi := &file_filer_proto_msgTypes[14]
  966. if protoimpl.UnsafeEnabled && x != nil {
  967. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  968. if ms.LoadMessageInfo() == nil {
  969. ms.StoreMessageInfo(mi)
  970. }
  971. return ms
  972. }
  973. return mi.MessageOf(x)
  974. }
  975. // Deprecated: Use UpdateEntryRequest.ProtoReflect.Descriptor instead.
  976. func (*UpdateEntryRequest) Descriptor() ([]byte, []int) {
  977. return file_filer_proto_rawDescGZIP(), []int{14}
  978. }
  979. func (x *UpdateEntryRequest) GetDirectory() string {
  980. if x != nil {
  981. return x.Directory
  982. }
  983. return ""
  984. }
  985. func (x *UpdateEntryRequest) GetEntry() *Entry {
  986. if x != nil {
  987. return x.Entry
  988. }
  989. return nil
  990. }
  991. func (x *UpdateEntryRequest) GetIsFromOtherCluster() bool {
  992. if x != nil {
  993. return x.IsFromOtherCluster
  994. }
  995. return false
  996. }
  997. func (x *UpdateEntryRequest) GetSignatures() []int32 {
  998. if x != nil {
  999. return x.Signatures
  1000. }
  1001. return nil
  1002. }
  1003. type UpdateEntryResponse struct {
  1004. state protoimpl.MessageState
  1005. sizeCache protoimpl.SizeCache
  1006. unknownFields protoimpl.UnknownFields
  1007. }
  1008. func (x *UpdateEntryResponse) Reset() {
  1009. *x = UpdateEntryResponse{}
  1010. if protoimpl.UnsafeEnabled {
  1011. mi := &file_filer_proto_msgTypes[15]
  1012. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1013. ms.StoreMessageInfo(mi)
  1014. }
  1015. }
  1016. func (x *UpdateEntryResponse) String() string {
  1017. return protoimpl.X.MessageStringOf(x)
  1018. }
  1019. func (*UpdateEntryResponse) ProtoMessage() {}
  1020. func (x *UpdateEntryResponse) ProtoReflect() protoreflect.Message {
  1021. mi := &file_filer_proto_msgTypes[15]
  1022. if protoimpl.UnsafeEnabled && x != nil {
  1023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1024. if ms.LoadMessageInfo() == nil {
  1025. ms.StoreMessageInfo(mi)
  1026. }
  1027. return ms
  1028. }
  1029. return mi.MessageOf(x)
  1030. }
  1031. // Deprecated: Use UpdateEntryResponse.ProtoReflect.Descriptor instead.
  1032. func (*UpdateEntryResponse) Descriptor() ([]byte, []int) {
  1033. return file_filer_proto_rawDescGZIP(), []int{15}
  1034. }
  1035. type AppendToEntryRequest struct {
  1036. state protoimpl.MessageState
  1037. sizeCache protoimpl.SizeCache
  1038. unknownFields protoimpl.UnknownFields
  1039. Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
  1040. EntryName string `protobuf:"bytes,2,opt,name=entry_name,json=entryName,proto3" json:"entry_name,omitempty"`
  1041. Chunks []*FileChunk `protobuf:"bytes,3,rep,name=chunks,proto3" json:"chunks,omitempty"`
  1042. }
  1043. func (x *AppendToEntryRequest) Reset() {
  1044. *x = AppendToEntryRequest{}
  1045. if protoimpl.UnsafeEnabled {
  1046. mi := &file_filer_proto_msgTypes[16]
  1047. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1048. ms.StoreMessageInfo(mi)
  1049. }
  1050. }
  1051. func (x *AppendToEntryRequest) String() string {
  1052. return protoimpl.X.MessageStringOf(x)
  1053. }
  1054. func (*AppendToEntryRequest) ProtoMessage() {}
  1055. func (x *AppendToEntryRequest) ProtoReflect() protoreflect.Message {
  1056. mi := &file_filer_proto_msgTypes[16]
  1057. if protoimpl.UnsafeEnabled && x != nil {
  1058. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1059. if ms.LoadMessageInfo() == nil {
  1060. ms.StoreMessageInfo(mi)
  1061. }
  1062. return ms
  1063. }
  1064. return mi.MessageOf(x)
  1065. }
  1066. // Deprecated: Use AppendToEntryRequest.ProtoReflect.Descriptor instead.
  1067. func (*AppendToEntryRequest) Descriptor() ([]byte, []int) {
  1068. return file_filer_proto_rawDescGZIP(), []int{16}
  1069. }
  1070. func (x *AppendToEntryRequest) GetDirectory() string {
  1071. if x != nil {
  1072. return x.Directory
  1073. }
  1074. return ""
  1075. }
  1076. func (x *AppendToEntryRequest) GetEntryName() string {
  1077. if x != nil {
  1078. return x.EntryName
  1079. }
  1080. return ""
  1081. }
  1082. func (x *AppendToEntryRequest) GetChunks() []*FileChunk {
  1083. if x != nil {
  1084. return x.Chunks
  1085. }
  1086. return nil
  1087. }
  1088. type AppendToEntryResponse struct {
  1089. state protoimpl.MessageState
  1090. sizeCache protoimpl.SizeCache
  1091. unknownFields protoimpl.UnknownFields
  1092. }
  1093. func (x *AppendToEntryResponse) Reset() {
  1094. *x = AppendToEntryResponse{}
  1095. if protoimpl.UnsafeEnabled {
  1096. mi := &file_filer_proto_msgTypes[17]
  1097. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1098. ms.StoreMessageInfo(mi)
  1099. }
  1100. }
  1101. func (x *AppendToEntryResponse) String() string {
  1102. return protoimpl.X.MessageStringOf(x)
  1103. }
  1104. func (*AppendToEntryResponse) ProtoMessage() {}
  1105. func (x *AppendToEntryResponse) ProtoReflect() protoreflect.Message {
  1106. mi := &file_filer_proto_msgTypes[17]
  1107. if protoimpl.UnsafeEnabled && x != nil {
  1108. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1109. if ms.LoadMessageInfo() == nil {
  1110. ms.StoreMessageInfo(mi)
  1111. }
  1112. return ms
  1113. }
  1114. return mi.MessageOf(x)
  1115. }
  1116. // Deprecated: Use AppendToEntryResponse.ProtoReflect.Descriptor instead.
  1117. func (*AppendToEntryResponse) Descriptor() ([]byte, []int) {
  1118. return file_filer_proto_rawDescGZIP(), []int{17}
  1119. }
  1120. type DeleteEntryRequest struct {
  1121. state protoimpl.MessageState
  1122. sizeCache protoimpl.SizeCache
  1123. unknownFields protoimpl.UnknownFields
  1124. Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
  1125. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1126. // bool is_directory = 3;
  1127. IsDeleteData bool `protobuf:"varint,4,opt,name=is_delete_data,json=isDeleteData,proto3" json:"is_delete_data,omitempty"`
  1128. IsRecursive bool `protobuf:"varint,5,opt,name=is_recursive,json=isRecursive,proto3" json:"is_recursive,omitempty"`
  1129. IgnoreRecursiveError bool `protobuf:"varint,6,opt,name=ignore_recursive_error,json=ignoreRecursiveError,proto3" json:"ignore_recursive_error,omitempty"`
  1130. IsFromOtherCluster bool `protobuf:"varint,7,opt,name=is_from_other_cluster,json=isFromOtherCluster,proto3" json:"is_from_other_cluster,omitempty"`
  1131. Signatures []int32 `protobuf:"varint,8,rep,packed,name=signatures,proto3" json:"signatures,omitempty"`
  1132. }
  1133. func (x *DeleteEntryRequest) Reset() {
  1134. *x = DeleteEntryRequest{}
  1135. if protoimpl.UnsafeEnabled {
  1136. mi := &file_filer_proto_msgTypes[18]
  1137. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1138. ms.StoreMessageInfo(mi)
  1139. }
  1140. }
  1141. func (x *DeleteEntryRequest) String() string {
  1142. return protoimpl.X.MessageStringOf(x)
  1143. }
  1144. func (*DeleteEntryRequest) ProtoMessage() {}
  1145. func (x *DeleteEntryRequest) ProtoReflect() protoreflect.Message {
  1146. mi := &file_filer_proto_msgTypes[18]
  1147. if protoimpl.UnsafeEnabled && x != nil {
  1148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1149. if ms.LoadMessageInfo() == nil {
  1150. ms.StoreMessageInfo(mi)
  1151. }
  1152. return ms
  1153. }
  1154. return mi.MessageOf(x)
  1155. }
  1156. // Deprecated: Use DeleteEntryRequest.ProtoReflect.Descriptor instead.
  1157. func (*DeleteEntryRequest) Descriptor() ([]byte, []int) {
  1158. return file_filer_proto_rawDescGZIP(), []int{18}
  1159. }
  1160. func (x *DeleteEntryRequest) GetDirectory() string {
  1161. if x != nil {
  1162. return x.Directory
  1163. }
  1164. return ""
  1165. }
  1166. func (x *DeleteEntryRequest) GetName() string {
  1167. if x != nil {
  1168. return x.Name
  1169. }
  1170. return ""
  1171. }
  1172. func (x *DeleteEntryRequest) GetIsDeleteData() bool {
  1173. if x != nil {
  1174. return x.IsDeleteData
  1175. }
  1176. return false
  1177. }
  1178. func (x *DeleteEntryRequest) GetIsRecursive() bool {
  1179. if x != nil {
  1180. return x.IsRecursive
  1181. }
  1182. return false
  1183. }
  1184. func (x *DeleteEntryRequest) GetIgnoreRecursiveError() bool {
  1185. if x != nil {
  1186. return x.IgnoreRecursiveError
  1187. }
  1188. return false
  1189. }
  1190. func (x *DeleteEntryRequest) GetIsFromOtherCluster() bool {
  1191. if x != nil {
  1192. return x.IsFromOtherCluster
  1193. }
  1194. return false
  1195. }
  1196. func (x *DeleteEntryRequest) GetSignatures() []int32 {
  1197. if x != nil {
  1198. return x.Signatures
  1199. }
  1200. return nil
  1201. }
  1202. type DeleteEntryResponse struct {
  1203. state protoimpl.MessageState
  1204. sizeCache protoimpl.SizeCache
  1205. unknownFields protoimpl.UnknownFields
  1206. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  1207. }
  1208. func (x *DeleteEntryResponse) Reset() {
  1209. *x = DeleteEntryResponse{}
  1210. if protoimpl.UnsafeEnabled {
  1211. mi := &file_filer_proto_msgTypes[19]
  1212. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1213. ms.StoreMessageInfo(mi)
  1214. }
  1215. }
  1216. func (x *DeleteEntryResponse) String() string {
  1217. return protoimpl.X.MessageStringOf(x)
  1218. }
  1219. func (*DeleteEntryResponse) ProtoMessage() {}
  1220. func (x *DeleteEntryResponse) ProtoReflect() protoreflect.Message {
  1221. mi := &file_filer_proto_msgTypes[19]
  1222. if protoimpl.UnsafeEnabled && x != nil {
  1223. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1224. if ms.LoadMessageInfo() == nil {
  1225. ms.StoreMessageInfo(mi)
  1226. }
  1227. return ms
  1228. }
  1229. return mi.MessageOf(x)
  1230. }
  1231. // Deprecated: Use DeleteEntryResponse.ProtoReflect.Descriptor instead.
  1232. func (*DeleteEntryResponse) Descriptor() ([]byte, []int) {
  1233. return file_filer_proto_rawDescGZIP(), []int{19}
  1234. }
  1235. func (x *DeleteEntryResponse) GetError() string {
  1236. if x != nil {
  1237. return x.Error
  1238. }
  1239. return ""
  1240. }
  1241. type AtomicRenameEntryRequest struct {
  1242. state protoimpl.MessageState
  1243. sizeCache protoimpl.SizeCache
  1244. unknownFields protoimpl.UnknownFields
  1245. OldDirectory string `protobuf:"bytes,1,opt,name=old_directory,json=oldDirectory,proto3" json:"old_directory,omitempty"`
  1246. OldName string `protobuf:"bytes,2,opt,name=old_name,json=oldName,proto3" json:"old_name,omitempty"`
  1247. NewDirectory string `protobuf:"bytes,3,opt,name=new_directory,json=newDirectory,proto3" json:"new_directory,omitempty"`
  1248. NewName string `protobuf:"bytes,4,opt,name=new_name,json=newName,proto3" json:"new_name,omitempty"`
  1249. Signatures []int32 `protobuf:"varint,5,rep,packed,name=signatures,proto3" json:"signatures,omitempty"`
  1250. }
  1251. func (x *AtomicRenameEntryRequest) Reset() {
  1252. *x = AtomicRenameEntryRequest{}
  1253. if protoimpl.UnsafeEnabled {
  1254. mi := &file_filer_proto_msgTypes[20]
  1255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1256. ms.StoreMessageInfo(mi)
  1257. }
  1258. }
  1259. func (x *AtomicRenameEntryRequest) String() string {
  1260. return protoimpl.X.MessageStringOf(x)
  1261. }
  1262. func (*AtomicRenameEntryRequest) ProtoMessage() {}
  1263. func (x *AtomicRenameEntryRequest) ProtoReflect() protoreflect.Message {
  1264. mi := &file_filer_proto_msgTypes[20]
  1265. if protoimpl.UnsafeEnabled && x != nil {
  1266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1267. if ms.LoadMessageInfo() == nil {
  1268. ms.StoreMessageInfo(mi)
  1269. }
  1270. return ms
  1271. }
  1272. return mi.MessageOf(x)
  1273. }
  1274. // Deprecated: Use AtomicRenameEntryRequest.ProtoReflect.Descriptor instead.
  1275. func (*AtomicRenameEntryRequest) Descriptor() ([]byte, []int) {
  1276. return file_filer_proto_rawDescGZIP(), []int{20}
  1277. }
  1278. func (x *AtomicRenameEntryRequest) GetOldDirectory() string {
  1279. if x != nil {
  1280. return x.OldDirectory
  1281. }
  1282. return ""
  1283. }
  1284. func (x *AtomicRenameEntryRequest) GetOldName() string {
  1285. if x != nil {
  1286. return x.OldName
  1287. }
  1288. return ""
  1289. }
  1290. func (x *AtomicRenameEntryRequest) GetNewDirectory() string {
  1291. if x != nil {
  1292. return x.NewDirectory
  1293. }
  1294. return ""
  1295. }
  1296. func (x *AtomicRenameEntryRequest) GetNewName() string {
  1297. if x != nil {
  1298. return x.NewName
  1299. }
  1300. return ""
  1301. }
  1302. func (x *AtomicRenameEntryRequest) GetSignatures() []int32 {
  1303. if x != nil {
  1304. return x.Signatures
  1305. }
  1306. return nil
  1307. }
  1308. type AtomicRenameEntryResponse struct {
  1309. state protoimpl.MessageState
  1310. sizeCache protoimpl.SizeCache
  1311. unknownFields protoimpl.UnknownFields
  1312. }
  1313. func (x *AtomicRenameEntryResponse) Reset() {
  1314. *x = AtomicRenameEntryResponse{}
  1315. if protoimpl.UnsafeEnabled {
  1316. mi := &file_filer_proto_msgTypes[21]
  1317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1318. ms.StoreMessageInfo(mi)
  1319. }
  1320. }
  1321. func (x *AtomicRenameEntryResponse) String() string {
  1322. return protoimpl.X.MessageStringOf(x)
  1323. }
  1324. func (*AtomicRenameEntryResponse) ProtoMessage() {}
  1325. func (x *AtomicRenameEntryResponse) ProtoReflect() protoreflect.Message {
  1326. mi := &file_filer_proto_msgTypes[21]
  1327. if protoimpl.UnsafeEnabled && x != nil {
  1328. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1329. if ms.LoadMessageInfo() == nil {
  1330. ms.StoreMessageInfo(mi)
  1331. }
  1332. return ms
  1333. }
  1334. return mi.MessageOf(x)
  1335. }
  1336. // Deprecated: Use AtomicRenameEntryResponse.ProtoReflect.Descriptor instead.
  1337. func (*AtomicRenameEntryResponse) Descriptor() ([]byte, []int) {
  1338. return file_filer_proto_rawDescGZIP(), []int{21}
  1339. }
  1340. type StreamRenameEntryRequest struct {
  1341. state protoimpl.MessageState
  1342. sizeCache protoimpl.SizeCache
  1343. unknownFields protoimpl.UnknownFields
  1344. OldDirectory string `protobuf:"bytes,1,opt,name=old_directory,json=oldDirectory,proto3" json:"old_directory,omitempty"`
  1345. OldName string `protobuf:"bytes,2,opt,name=old_name,json=oldName,proto3" json:"old_name,omitempty"`
  1346. NewDirectory string `protobuf:"bytes,3,opt,name=new_directory,json=newDirectory,proto3" json:"new_directory,omitempty"`
  1347. NewName string `protobuf:"bytes,4,opt,name=new_name,json=newName,proto3" json:"new_name,omitempty"`
  1348. Signatures []int32 `protobuf:"varint,5,rep,packed,name=signatures,proto3" json:"signatures,omitempty"`
  1349. }
  1350. func (x *StreamRenameEntryRequest) Reset() {
  1351. *x = StreamRenameEntryRequest{}
  1352. if protoimpl.UnsafeEnabled {
  1353. mi := &file_filer_proto_msgTypes[22]
  1354. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1355. ms.StoreMessageInfo(mi)
  1356. }
  1357. }
  1358. func (x *StreamRenameEntryRequest) String() string {
  1359. return protoimpl.X.MessageStringOf(x)
  1360. }
  1361. func (*StreamRenameEntryRequest) ProtoMessage() {}
  1362. func (x *StreamRenameEntryRequest) ProtoReflect() protoreflect.Message {
  1363. mi := &file_filer_proto_msgTypes[22]
  1364. if protoimpl.UnsafeEnabled && x != nil {
  1365. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1366. if ms.LoadMessageInfo() == nil {
  1367. ms.StoreMessageInfo(mi)
  1368. }
  1369. return ms
  1370. }
  1371. return mi.MessageOf(x)
  1372. }
  1373. // Deprecated: Use StreamRenameEntryRequest.ProtoReflect.Descriptor instead.
  1374. func (*StreamRenameEntryRequest) Descriptor() ([]byte, []int) {
  1375. return file_filer_proto_rawDescGZIP(), []int{22}
  1376. }
  1377. func (x *StreamRenameEntryRequest) GetOldDirectory() string {
  1378. if x != nil {
  1379. return x.OldDirectory
  1380. }
  1381. return ""
  1382. }
  1383. func (x *StreamRenameEntryRequest) GetOldName() string {
  1384. if x != nil {
  1385. return x.OldName
  1386. }
  1387. return ""
  1388. }
  1389. func (x *StreamRenameEntryRequest) GetNewDirectory() string {
  1390. if x != nil {
  1391. return x.NewDirectory
  1392. }
  1393. return ""
  1394. }
  1395. func (x *StreamRenameEntryRequest) GetNewName() string {
  1396. if x != nil {
  1397. return x.NewName
  1398. }
  1399. return ""
  1400. }
  1401. func (x *StreamRenameEntryRequest) GetSignatures() []int32 {
  1402. if x != nil {
  1403. return x.Signatures
  1404. }
  1405. return nil
  1406. }
  1407. type StreamRenameEntryResponse struct {
  1408. state protoimpl.MessageState
  1409. sizeCache protoimpl.SizeCache
  1410. unknownFields protoimpl.UnknownFields
  1411. Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
  1412. EventNotification *EventNotification `protobuf:"bytes,2,opt,name=event_notification,json=eventNotification,proto3" json:"event_notification,omitempty"`
  1413. TsNs int64 `protobuf:"varint,3,opt,name=ts_ns,json=tsNs,proto3" json:"ts_ns,omitempty"`
  1414. }
  1415. func (x *StreamRenameEntryResponse) Reset() {
  1416. *x = StreamRenameEntryResponse{}
  1417. if protoimpl.UnsafeEnabled {
  1418. mi := &file_filer_proto_msgTypes[23]
  1419. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1420. ms.StoreMessageInfo(mi)
  1421. }
  1422. }
  1423. func (x *StreamRenameEntryResponse) String() string {
  1424. return protoimpl.X.MessageStringOf(x)
  1425. }
  1426. func (*StreamRenameEntryResponse) ProtoMessage() {}
  1427. func (x *StreamRenameEntryResponse) ProtoReflect() protoreflect.Message {
  1428. mi := &file_filer_proto_msgTypes[23]
  1429. if protoimpl.UnsafeEnabled && x != nil {
  1430. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1431. if ms.LoadMessageInfo() == nil {
  1432. ms.StoreMessageInfo(mi)
  1433. }
  1434. return ms
  1435. }
  1436. return mi.MessageOf(x)
  1437. }
  1438. // Deprecated: Use StreamRenameEntryResponse.ProtoReflect.Descriptor instead.
  1439. func (*StreamRenameEntryResponse) Descriptor() ([]byte, []int) {
  1440. return file_filer_proto_rawDescGZIP(), []int{23}
  1441. }
  1442. func (x *StreamRenameEntryResponse) GetDirectory() string {
  1443. if x != nil {
  1444. return x.Directory
  1445. }
  1446. return ""
  1447. }
  1448. func (x *StreamRenameEntryResponse) GetEventNotification() *EventNotification {
  1449. if x != nil {
  1450. return x.EventNotification
  1451. }
  1452. return nil
  1453. }
  1454. func (x *StreamRenameEntryResponse) GetTsNs() int64 {
  1455. if x != nil {
  1456. return x.TsNs
  1457. }
  1458. return 0
  1459. }
  1460. type AssignVolumeRequest struct {
  1461. state protoimpl.MessageState
  1462. sizeCache protoimpl.SizeCache
  1463. unknownFields protoimpl.UnknownFields
  1464. Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
  1465. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  1466. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  1467. TtlSec int32 `protobuf:"varint,4,opt,name=ttl_sec,json=ttlSec,proto3" json:"ttl_sec,omitempty"`
  1468. DataCenter string `protobuf:"bytes,5,opt,name=data_center,json=dataCenter,proto3" json:"data_center,omitempty"`
  1469. Path string `protobuf:"bytes,6,opt,name=path,proto3" json:"path,omitempty"`
  1470. Rack string `protobuf:"bytes,7,opt,name=rack,proto3" json:"rack,omitempty"`
  1471. DataNode string `protobuf:"bytes,9,opt,name=data_node,json=dataNode,proto3" json:"data_node,omitempty"`
  1472. DiskType string `protobuf:"bytes,8,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  1473. }
  1474. func (x *AssignVolumeRequest) Reset() {
  1475. *x = AssignVolumeRequest{}
  1476. if protoimpl.UnsafeEnabled {
  1477. mi := &file_filer_proto_msgTypes[24]
  1478. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1479. ms.StoreMessageInfo(mi)
  1480. }
  1481. }
  1482. func (x *AssignVolumeRequest) String() string {
  1483. return protoimpl.X.MessageStringOf(x)
  1484. }
  1485. func (*AssignVolumeRequest) ProtoMessage() {}
  1486. func (x *AssignVolumeRequest) ProtoReflect() protoreflect.Message {
  1487. mi := &file_filer_proto_msgTypes[24]
  1488. if protoimpl.UnsafeEnabled && x != nil {
  1489. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1490. if ms.LoadMessageInfo() == nil {
  1491. ms.StoreMessageInfo(mi)
  1492. }
  1493. return ms
  1494. }
  1495. return mi.MessageOf(x)
  1496. }
  1497. // Deprecated: Use AssignVolumeRequest.ProtoReflect.Descriptor instead.
  1498. func (*AssignVolumeRequest) Descriptor() ([]byte, []int) {
  1499. return file_filer_proto_rawDescGZIP(), []int{24}
  1500. }
  1501. func (x *AssignVolumeRequest) GetCount() int32 {
  1502. if x != nil {
  1503. return x.Count
  1504. }
  1505. return 0
  1506. }
  1507. func (x *AssignVolumeRequest) GetCollection() string {
  1508. if x != nil {
  1509. return x.Collection
  1510. }
  1511. return ""
  1512. }
  1513. func (x *AssignVolumeRequest) GetReplication() string {
  1514. if x != nil {
  1515. return x.Replication
  1516. }
  1517. return ""
  1518. }
  1519. func (x *AssignVolumeRequest) GetTtlSec() int32 {
  1520. if x != nil {
  1521. return x.TtlSec
  1522. }
  1523. return 0
  1524. }
  1525. func (x *AssignVolumeRequest) GetDataCenter() string {
  1526. if x != nil {
  1527. return x.DataCenter
  1528. }
  1529. return ""
  1530. }
  1531. func (x *AssignVolumeRequest) GetPath() string {
  1532. if x != nil {
  1533. return x.Path
  1534. }
  1535. return ""
  1536. }
  1537. func (x *AssignVolumeRequest) GetRack() string {
  1538. if x != nil {
  1539. return x.Rack
  1540. }
  1541. return ""
  1542. }
  1543. func (x *AssignVolumeRequest) GetDataNode() string {
  1544. if x != nil {
  1545. return x.DataNode
  1546. }
  1547. return ""
  1548. }
  1549. func (x *AssignVolumeRequest) GetDiskType() string {
  1550. if x != nil {
  1551. return x.DiskType
  1552. }
  1553. return ""
  1554. }
  1555. type AssignVolumeResponse struct {
  1556. state protoimpl.MessageState
  1557. sizeCache protoimpl.SizeCache
  1558. unknownFields protoimpl.UnknownFields
  1559. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
  1560. Count int32 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"`
  1561. Auth string `protobuf:"bytes,5,opt,name=auth,proto3" json:"auth,omitempty"`
  1562. Collection string `protobuf:"bytes,6,opt,name=collection,proto3" json:"collection,omitempty"`
  1563. Replication string `protobuf:"bytes,7,opt,name=replication,proto3" json:"replication,omitempty"`
  1564. Error string `protobuf:"bytes,8,opt,name=error,proto3" json:"error,omitempty"`
  1565. Location *Location `protobuf:"bytes,9,opt,name=location,proto3" json:"location,omitempty"`
  1566. }
  1567. func (x *AssignVolumeResponse) Reset() {
  1568. *x = AssignVolumeResponse{}
  1569. if protoimpl.UnsafeEnabled {
  1570. mi := &file_filer_proto_msgTypes[25]
  1571. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1572. ms.StoreMessageInfo(mi)
  1573. }
  1574. }
  1575. func (x *AssignVolumeResponse) String() string {
  1576. return protoimpl.X.MessageStringOf(x)
  1577. }
  1578. func (*AssignVolumeResponse) ProtoMessage() {}
  1579. func (x *AssignVolumeResponse) ProtoReflect() protoreflect.Message {
  1580. mi := &file_filer_proto_msgTypes[25]
  1581. if protoimpl.UnsafeEnabled && x != nil {
  1582. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1583. if ms.LoadMessageInfo() == nil {
  1584. ms.StoreMessageInfo(mi)
  1585. }
  1586. return ms
  1587. }
  1588. return mi.MessageOf(x)
  1589. }
  1590. // Deprecated: Use AssignVolumeResponse.ProtoReflect.Descriptor instead.
  1591. func (*AssignVolumeResponse) Descriptor() ([]byte, []int) {
  1592. return file_filer_proto_rawDescGZIP(), []int{25}
  1593. }
  1594. func (x *AssignVolumeResponse) GetFileId() string {
  1595. if x != nil {
  1596. return x.FileId
  1597. }
  1598. return ""
  1599. }
  1600. func (x *AssignVolumeResponse) GetCount() int32 {
  1601. if x != nil {
  1602. return x.Count
  1603. }
  1604. return 0
  1605. }
  1606. func (x *AssignVolumeResponse) GetAuth() string {
  1607. if x != nil {
  1608. return x.Auth
  1609. }
  1610. return ""
  1611. }
  1612. func (x *AssignVolumeResponse) GetCollection() string {
  1613. if x != nil {
  1614. return x.Collection
  1615. }
  1616. return ""
  1617. }
  1618. func (x *AssignVolumeResponse) GetReplication() string {
  1619. if x != nil {
  1620. return x.Replication
  1621. }
  1622. return ""
  1623. }
  1624. func (x *AssignVolumeResponse) GetError() string {
  1625. if x != nil {
  1626. return x.Error
  1627. }
  1628. return ""
  1629. }
  1630. func (x *AssignVolumeResponse) GetLocation() *Location {
  1631. if x != nil {
  1632. return x.Location
  1633. }
  1634. return nil
  1635. }
  1636. type LookupVolumeRequest struct {
  1637. state protoimpl.MessageState
  1638. sizeCache protoimpl.SizeCache
  1639. unknownFields protoimpl.UnknownFields
  1640. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds,proto3" json:"volume_ids,omitempty"`
  1641. }
  1642. func (x *LookupVolumeRequest) Reset() {
  1643. *x = LookupVolumeRequest{}
  1644. if protoimpl.UnsafeEnabled {
  1645. mi := &file_filer_proto_msgTypes[26]
  1646. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1647. ms.StoreMessageInfo(mi)
  1648. }
  1649. }
  1650. func (x *LookupVolumeRequest) String() string {
  1651. return protoimpl.X.MessageStringOf(x)
  1652. }
  1653. func (*LookupVolumeRequest) ProtoMessage() {}
  1654. func (x *LookupVolumeRequest) ProtoReflect() protoreflect.Message {
  1655. mi := &file_filer_proto_msgTypes[26]
  1656. if protoimpl.UnsafeEnabled && x != nil {
  1657. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1658. if ms.LoadMessageInfo() == nil {
  1659. ms.StoreMessageInfo(mi)
  1660. }
  1661. return ms
  1662. }
  1663. return mi.MessageOf(x)
  1664. }
  1665. // Deprecated: Use LookupVolumeRequest.ProtoReflect.Descriptor instead.
  1666. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) {
  1667. return file_filer_proto_rawDescGZIP(), []int{26}
  1668. }
  1669. func (x *LookupVolumeRequest) GetVolumeIds() []string {
  1670. if x != nil {
  1671. return x.VolumeIds
  1672. }
  1673. return nil
  1674. }
  1675. type Locations struct {
  1676. state protoimpl.MessageState
  1677. sizeCache protoimpl.SizeCache
  1678. unknownFields protoimpl.UnknownFields
  1679. Locations []*Location `protobuf:"bytes,1,rep,name=locations,proto3" json:"locations,omitempty"`
  1680. }
  1681. func (x *Locations) Reset() {
  1682. *x = Locations{}
  1683. if protoimpl.UnsafeEnabled {
  1684. mi := &file_filer_proto_msgTypes[27]
  1685. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1686. ms.StoreMessageInfo(mi)
  1687. }
  1688. }
  1689. func (x *Locations) String() string {
  1690. return protoimpl.X.MessageStringOf(x)
  1691. }
  1692. func (*Locations) ProtoMessage() {}
  1693. func (x *Locations) ProtoReflect() protoreflect.Message {
  1694. mi := &file_filer_proto_msgTypes[27]
  1695. if protoimpl.UnsafeEnabled && x != nil {
  1696. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1697. if ms.LoadMessageInfo() == nil {
  1698. ms.StoreMessageInfo(mi)
  1699. }
  1700. return ms
  1701. }
  1702. return mi.MessageOf(x)
  1703. }
  1704. // Deprecated: Use Locations.ProtoReflect.Descriptor instead.
  1705. func (*Locations) Descriptor() ([]byte, []int) {
  1706. return file_filer_proto_rawDescGZIP(), []int{27}
  1707. }
  1708. func (x *Locations) GetLocations() []*Location {
  1709. if x != nil {
  1710. return x.Locations
  1711. }
  1712. return nil
  1713. }
  1714. type Location struct {
  1715. state protoimpl.MessageState
  1716. sizeCache protoimpl.SizeCache
  1717. unknownFields protoimpl.UnknownFields
  1718. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  1719. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl,proto3" json:"public_url,omitempty"`
  1720. GrpcPort uint32 `protobuf:"varint,3,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
  1721. DataCenter string `protobuf:"bytes,4,opt,name=data_center,json=dataCenter,proto3" json:"data_center,omitempty"`
  1722. }
  1723. func (x *Location) Reset() {
  1724. *x = Location{}
  1725. if protoimpl.UnsafeEnabled {
  1726. mi := &file_filer_proto_msgTypes[28]
  1727. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1728. ms.StoreMessageInfo(mi)
  1729. }
  1730. }
  1731. func (x *Location) String() string {
  1732. return protoimpl.X.MessageStringOf(x)
  1733. }
  1734. func (*Location) ProtoMessage() {}
  1735. func (x *Location) ProtoReflect() protoreflect.Message {
  1736. mi := &file_filer_proto_msgTypes[28]
  1737. if protoimpl.UnsafeEnabled && x != nil {
  1738. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1739. if ms.LoadMessageInfo() == nil {
  1740. ms.StoreMessageInfo(mi)
  1741. }
  1742. return ms
  1743. }
  1744. return mi.MessageOf(x)
  1745. }
  1746. // Deprecated: Use Location.ProtoReflect.Descriptor instead.
  1747. func (*Location) Descriptor() ([]byte, []int) {
  1748. return file_filer_proto_rawDescGZIP(), []int{28}
  1749. }
  1750. func (x *Location) GetUrl() string {
  1751. if x != nil {
  1752. return x.Url
  1753. }
  1754. return ""
  1755. }
  1756. func (x *Location) GetPublicUrl() string {
  1757. if x != nil {
  1758. return x.PublicUrl
  1759. }
  1760. return ""
  1761. }
  1762. func (x *Location) GetGrpcPort() uint32 {
  1763. if x != nil {
  1764. return x.GrpcPort
  1765. }
  1766. return 0
  1767. }
  1768. func (x *Location) GetDataCenter() string {
  1769. if x != nil {
  1770. return x.DataCenter
  1771. }
  1772. return ""
  1773. }
  1774. type LookupVolumeResponse struct {
  1775. state protoimpl.MessageState
  1776. sizeCache protoimpl.SizeCache
  1777. unknownFields protoimpl.UnknownFields
  1778. LocationsMap map[string]*Locations `protobuf:"bytes,1,rep,name=locations_map,json=locationsMap,proto3" json:"locations_map,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1779. }
  1780. func (x *LookupVolumeResponse) Reset() {
  1781. *x = LookupVolumeResponse{}
  1782. if protoimpl.UnsafeEnabled {
  1783. mi := &file_filer_proto_msgTypes[29]
  1784. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1785. ms.StoreMessageInfo(mi)
  1786. }
  1787. }
  1788. func (x *LookupVolumeResponse) String() string {
  1789. return protoimpl.X.MessageStringOf(x)
  1790. }
  1791. func (*LookupVolumeResponse) ProtoMessage() {}
  1792. func (x *LookupVolumeResponse) ProtoReflect() protoreflect.Message {
  1793. mi := &file_filer_proto_msgTypes[29]
  1794. if protoimpl.UnsafeEnabled && x != nil {
  1795. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1796. if ms.LoadMessageInfo() == nil {
  1797. ms.StoreMessageInfo(mi)
  1798. }
  1799. return ms
  1800. }
  1801. return mi.MessageOf(x)
  1802. }
  1803. // Deprecated: Use LookupVolumeResponse.ProtoReflect.Descriptor instead.
  1804. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) {
  1805. return file_filer_proto_rawDescGZIP(), []int{29}
  1806. }
  1807. func (x *LookupVolumeResponse) GetLocationsMap() map[string]*Locations {
  1808. if x != nil {
  1809. return x.LocationsMap
  1810. }
  1811. return nil
  1812. }
  1813. type Collection struct {
  1814. state protoimpl.MessageState
  1815. sizeCache protoimpl.SizeCache
  1816. unknownFields protoimpl.UnknownFields
  1817. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1818. }
  1819. func (x *Collection) Reset() {
  1820. *x = Collection{}
  1821. if protoimpl.UnsafeEnabled {
  1822. mi := &file_filer_proto_msgTypes[30]
  1823. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1824. ms.StoreMessageInfo(mi)
  1825. }
  1826. }
  1827. func (x *Collection) String() string {
  1828. return protoimpl.X.MessageStringOf(x)
  1829. }
  1830. func (*Collection) ProtoMessage() {}
  1831. func (x *Collection) ProtoReflect() protoreflect.Message {
  1832. mi := &file_filer_proto_msgTypes[30]
  1833. if protoimpl.UnsafeEnabled && x != nil {
  1834. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1835. if ms.LoadMessageInfo() == nil {
  1836. ms.StoreMessageInfo(mi)
  1837. }
  1838. return ms
  1839. }
  1840. return mi.MessageOf(x)
  1841. }
  1842. // Deprecated: Use Collection.ProtoReflect.Descriptor instead.
  1843. func (*Collection) Descriptor() ([]byte, []int) {
  1844. return file_filer_proto_rawDescGZIP(), []int{30}
  1845. }
  1846. func (x *Collection) GetName() string {
  1847. if x != nil {
  1848. return x.Name
  1849. }
  1850. return ""
  1851. }
  1852. type CollectionListRequest struct {
  1853. state protoimpl.MessageState
  1854. sizeCache protoimpl.SizeCache
  1855. unknownFields protoimpl.UnknownFields
  1856. IncludeNormalVolumes bool `protobuf:"varint,1,opt,name=include_normal_volumes,json=includeNormalVolumes,proto3" json:"include_normal_volumes,omitempty"`
  1857. IncludeEcVolumes bool `protobuf:"varint,2,opt,name=include_ec_volumes,json=includeEcVolumes,proto3" json:"include_ec_volumes,omitempty"`
  1858. }
  1859. func (x *CollectionListRequest) Reset() {
  1860. *x = CollectionListRequest{}
  1861. if protoimpl.UnsafeEnabled {
  1862. mi := &file_filer_proto_msgTypes[31]
  1863. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1864. ms.StoreMessageInfo(mi)
  1865. }
  1866. }
  1867. func (x *CollectionListRequest) String() string {
  1868. return protoimpl.X.MessageStringOf(x)
  1869. }
  1870. func (*CollectionListRequest) ProtoMessage() {}
  1871. func (x *CollectionListRequest) ProtoReflect() protoreflect.Message {
  1872. mi := &file_filer_proto_msgTypes[31]
  1873. if protoimpl.UnsafeEnabled && x != nil {
  1874. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1875. if ms.LoadMessageInfo() == nil {
  1876. ms.StoreMessageInfo(mi)
  1877. }
  1878. return ms
  1879. }
  1880. return mi.MessageOf(x)
  1881. }
  1882. // Deprecated: Use CollectionListRequest.ProtoReflect.Descriptor instead.
  1883. func (*CollectionListRequest) Descriptor() ([]byte, []int) {
  1884. return file_filer_proto_rawDescGZIP(), []int{31}
  1885. }
  1886. func (x *CollectionListRequest) GetIncludeNormalVolumes() bool {
  1887. if x != nil {
  1888. return x.IncludeNormalVolumes
  1889. }
  1890. return false
  1891. }
  1892. func (x *CollectionListRequest) GetIncludeEcVolumes() bool {
  1893. if x != nil {
  1894. return x.IncludeEcVolumes
  1895. }
  1896. return false
  1897. }
  1898. type CollectionListResponse struct {
  1899. state protoimpl.MessageState
  1900. sizeCache protoimpl.SizeCache
  1901. unknownFields protoimpl.UnknownFields
  1902. Collections []*Collection `protobuf:"bytes,1,rep,name=collections,proto3" json:"collections,omitempty"`
  1903. }
  1904. func (x *CollectionListResponse) Reset() {
  1905. *x = CollectionListResponse{}
  1906. if protoimpl.UnsafeEnabled {
  1907. mi := &file_filer_proto_msgTypes[32]
  1908. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1909. ms.StoreMessageInfo(mi)
  1910. }
  1911. }
  1912. func (x *CollectionListResponse) String() string {
  1913. return protoimpl.X.MessageStringOf(x)
  1914. }
  1915. func (*CollectionListResponse) ProtoMessage() {}
  1916. func (x *CollectionListResponse) ProtoReflect() protoreflect.Message {
  1917. mi := &file_filer_proto_msgTypes[32]
  1918. if protoimpl.UnsafeEnabled && x != nil {
  1919. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1920. if ms.LoadMessageInfo() == nil {
  1921. ms.StoreMessageInfo(mi)
  1922. }
  1923. return ms
  1924. }
  1925. return mi.MessageOf(x)
  1926. }
  1927. // Deprecated: Use CollectionListResponse.ProtoReflect.Descriptor instead.
  1928. func (*CollectionListResponse) Descriptor() ([]byte, []int) {
  1929. return file_filer_proto_rawDescGZIP(), []int{32}
  1930. }
  1931. func (x *CollectionListResponse) GetCollections() []*Collection {
  1932. if x != nil {
  1933. return x.Collections
  1934. }
  1935. return nil
  1936. }
  1937. type DeleteCollectionRequest struct {
  1938. state protoimpl.MessageState
  1939. sizeCache protoimpl.SizeCache
  1940. unknownFields protoimpl.UnknownFields
  1941. Collection string `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty"`
  1942. }
  1943. func (x *DeleteCollectionRequest) Reset() {
  1944. *x = DeleteCollectionRequest{}
  1945. if protoimpl.UnsafeEnabled {
  1946. mi := &file_filer_proto_msgTypes[33]
  1947. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1948. ms.StoreMessageInfo(mi)
  1949. }
  1950. }
  1951. func (x *DeleteCollectionRequest) String() string {
  1952. return protoimpl.X.MessageStringOf(x)
  1953. }
  1954. func (*DeleteCollectionRequest) ProtoMessage() {}
  1955. func (x *DeleteCollectionRequest) ProtoReflect() protoreflect.Message {
  1956. mi := &file_filer_proto_msgTypes[33]
  1957. if protoimpl.UnsafeEnabled && x != nil {
  1958. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1959. if ms.LoadMessageInfo() == nil {
  1960. ms.StoreMessageInfo(mi)
  1961. }
  1962. return ms
  1963. }
  1964. return mi.MessageOf(x)
  1965. }
  1966. // Deprecated: Use DeleteCollectionRequest.ProtoReflect.Descriptor instead.
  1967. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) {
  1968. return file_filer_proto_rawDescGZIP(), []int{33}
  1969. }
  1970. func (x *DeleteCollectionRequest) GetCollection() string {
  1971. if x != nil {
  1972. return x.Collection
  1973. }
  1974. return ""
  1975. }
  1976. type DeleteCollectionResponse struct {
  1977. state protoimpl.MessageState
  1978. sizeCache protoimpl.SizeCache
  1979. unknownFields protoimpl.UnknownFields
  1980. }
  1981. func (x *DeleteCollectionResponse) Reset() {
  1982. *x = DeleteCollectionResponse{}
  1983. if protoimpl.UnsafeEnabled {
  1984. mi := &file_filer_proto_msgTypes[34]
  1985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1986. ms.StoreMessageInfo(mi)
  1987. }
  1988. }
  1989. func (x *DeleteCollectionResponse) String() string {
  1990. return protoimpl.X.MessageStringOf(x)
  1991. }
  1992. func (*DeleteCollectionResponse) ProtoMessage() {}
  1993. func (x *DeleteCollectionResponse) ProtoReflect() protoreflect.Message {
  1994. mi := &file_filer_proto_msgTypes[34]
  1995. if protoimpl.UnsafeEnabled && x != nil {
  1996. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1997. if ms.LoadMessageInfo() == nil {
  1998. ms.StoreMessageInfo(mi)
  1999. }
  2000. return ms
  2001. }
  2002. return mi.MessageOf(x)
  2003. }
  2004. // Deprecated: Use DeleteCollectionResponse.ProtoReflect.Descriptor instead.
  2005. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) {
  2006. return file_filer_proto_rawDescGZIP(), []int{34}
  2007. }
  2008. type StatisticsRequest struct {
  2009. state protoimpl.MessageState
  2010. sizeCache protoimpl.SizeCache
  2011. unknownFields protoimpl.UnknownFields
  2012. Replication string `protobuf:"bytes,1,opt,name=replication,proto3" json:"replication,omitempty"`
  2013. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  2014. Ttl string `protobuf:"bytes,3,opt,name=ttl,proto3" json:"ttl,omitempty"`
  2015. DiskType string `protobuf:"bytes,4,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  2016. }
  2017. func (x *StatisticsRequest) Reset() {
  2018. *x = StatisticsRequest{}
  2019. if protoimpl.UnsafeEnabled {
  2020. mi := &file_filer_proto_msgTypes[35]
  2021. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2022. ms.StoreMessageInfo(mi)
  2023. }
  2024. }
  2025. func (x *StatisticsRequest) String() string {
  2026. return protoimpl.X.MessageStringOf(x)
  2027. }
  2028. func (*StatisticsRequest) ProtoMessage() {}
  2029. func (x *StatisticsRequest) ProtoReflect() protoreflect.Message {
  2030. mi := &file_filer_proto_msgTypes[35]
  2031. if protoimpl.UnsafeEnabled && x != nil {
  2032. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2033. if ms.LoadMessageInfo() == nil {
  2034. ms.StoreMessageInfo(mi)
  2035. }
  2036. return ms
  2037. }
  2038. return mi.MessageOf(x)
  2039. }
  2040. // Deprecated: Use StatisticsRequest.ProtoReflect.Descriptor instead.
  2041. func (*StatisticsRequest) Descriptor() ([]byte, []int) {
  2042. return file_filer_proto_rawDescGZIP(), []int{35}
  2043. }
  2044. func (x *StatisticsRequest) GetReplication() string {
  2045. if x != nil {
  2046. return x.Replication
  2047. }
  2048. return ""
  2049. }
  2050. func (x *StatisticsRequest) GetCollection() string {
  2051. if x != nil {
  2052. return x.Collection
  2053. }
  2054. return ""
  2055. }
  2056. func (x *StatisticsRequest) GetTtl() string {
  2057. if x != nil {
  2058. return x.Ttl
  2059. }
  2060. return ""
  2061. }
  2062. func (x *StatisticsRequest) GetDiskType() string {
  2063. if x != nil {
  2064. return x.DiskType
  2065. }
  2066. return ""
  2067. }
  2068. type StatisticsResponse struct {
  2069. state protoimpl.MessageState
  2070. sizeCache protoimpl.SizeCache
  2071. unknownFields protoimpl.UnknownFields
  2072. TotalSize uint64 `protobuf:"varint,4,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"`
  2073. UsedSize uint64 `protobuf:"varint,5,opt,name=used_size,json=usedSize,proto3" json:"used_size,omitempty"`
  2074. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount,proto3" json:"file_count,omitempty"`
  2075. }
  2076. func (x *StatisticsResponse) Reset() {
  2077. *x = StatisticsResponse{}
  2078. if protoimpl.UnsafeEnabled {
  2079. mi := &file_filer_proto_msgTypes[36]
  2080. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2081. ms.StoreMessageInfo(mi)
  2082. }
  2083. }
  2084. func (x *StatisticsResponse) String() string {
  2085. return protoimpl.X.MessageStringOf(x)
  2086. }
  2087. func (*StatisticsResponse) ProtoMessage() {}
  2088. func (x *StatisticsResponse) ProtoReflect() protoreflect.Message {
  2089. mi := &file_filer_proto_msgTypes[36]
  2090. if protoimpl.UnsafeEnabled && x != nil {
  2091. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2092. if ms.LoadMessageInfo() == nil {
  2093. ms.StoreMessageInfo(mi)
  2094. }
  2095. return ms
  2096. }
  2097. return mi.MessageOf(x)
  2098. }
  2099. // Deprecated: Use StatisticsResponse.ProtoReflect.Descriptor instead.
  2100. func (*StatisticsResponse) Descriptor() ([]byte, []int) {
  2101. return file_filer_proto_rawDescGZIP(), []int{36}
  2102. }
  2103. func (x *StatisticsResponse) GetTotalSize() uint64 {
  2104. if x != nil {
  2105. return x.TotalSize
  2106. }
  2107. return 0
  2108. }
  2109. func (x *StatisticsResponse) GetUsedSize() uint64 {
  2110. if x != nil {
  2111. return x.UsedSize
  2112. }
  2113. return 0
  2114. }
  2115. func (x *StatisticsResponse) GetFileCount() uint64 {
  2116. if x != nil {
  2117. return x.FileCount
  2118. }
  2119. return 0
  2120. }
  2121. type PingRequest struct {
  2122. state protoimpl.MessageState
  2123. sizeCache protoimpl.SizeCache
  2124. unknownFields protoimpl.UnknownFields
  2125. Target string `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"` // default to ping itself
  2126. TargetType string `protobuf:"bytes,2,opt,name=target_type,json=targetType,proto3" json:"target_type,omitempty"`
  2127. }
  2128. func (x *PingRequest) Reset() {
  2129. *x = PingRequest{}
  2130. if protoimpl.UnsafeEnabled {
  2131. mi := &file_filer_proto_msgTypes[37]
  2132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2133. ms.StoreMessageInfo(mi)
  2134. }
  2135. }
  2136. func (x *PingRequest) String() string {
  2137. return protoimpl.X.MessageStringOf(x)
  2138. }
  2139. func (*PingRequest) ProtoMessage() {}
  2140. func (x *PingRequest) ProtoReflect() protoreflect.Message {
  2141. mi := &file_filer_proto_msgTypes[37]
  2142. if protoimpl.UnsafeEnabled && x != nil {
  2143. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2144. if ms.LoadMessageInfo() == nil {
  2145. ms.StoreMessageInfo(mi)
  2146. }
  2147. return ms
  2148. }
  2149. return mi.MessageOf(x)
  2150. }
  2151. // Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.
  2152. func (*PingRequest) Descriptor() ([]byte, []int) {
  2153. return file_filer_proto_rawDescGZIP(), []int{37}
  2154. }
  2155. func (x *PingRequest) GetTarget() string {
  2156. if x != nil {
  2157. return x.Target
  2158. }
  2159. return ""
  2160. }
  2161. func (x *PingRequest) GetTargetType() string {
  2162. if x != nil {
  2163. return x.TargetType
  2164. }
  2165. return ""
  2166. }
  2167. type PingResponse struct {
  2168. state protoimpl.MessageState
  2169. sizeCache protoimpl.SizeCache
  2170. unknownFields protoimpl.UnknownFields
  2171. StartTimeNs int64 `protobuf:"varint,1,opt,name=start_time_ns,json=startTimeNs,proto3" json:"start_time_ns,omitempty"`
  2172. RemoteTimeNs int64 `protobuf:"varint,2,opt,name=remote_time_ns,json=remoteTimeNs,proto3" json:"remote_time_ns,omitempty"`
  2173. StopTimeNs int64 `protobuf:"varint,3,opt,name=stop_time_ns,json=stopTimeNs,proto3" json:"stop_time_ns,omitempty"`
  2174. }
  2175. func (x *PingResponse) Reset() {
  2176. *x = PingResponse{}
  2177. if protoimpl.UnsafeEnabled {
  2178. mi := &file_filer_proto_msgTypes[38]
  2179. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2180. ms.StoreMessageInfo(mi)
  2181. }
  2182. }
  2183. func (x *PingResponse) String() string {
  2184. return protoimpl.X.MessageStringOf(x)
  2185. }
  2186. func (*PingResponse) ProtoMessage() {}
  2187. func (x *PingResponse) ProtoReflect() protoreflect.Message {
  2188. mi := &file_filer_proto_msgTypes[38]
  2189. if protoimpl.UnsafeEnabled && x != nil {
  2190. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2191. if ms.LoadMessageInfo() == nil {
  2192. ms.StoreMessageInfo(mi)
  2193. }
  2194. return ms
  2195. }
  2196. return mi.MessageOf(x)
  2197. }
  2198. // Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.
  2199. func (*PingResponse) Descriptor() ([]byte, []int) {
  2200. return file_filer_proto_rawDescGZIP(), []int{38}
  2201. }
  2202. func (x *PingResponse) GetStartTimeNs() int64 {
  2203. if x != nil {
  2204. return x.StartTimeNs
  2205. }
  2206. return 0
  2207. }
  2208. func (x *PingResponse) GetRemoteTimeNs() int64 {
  2209. if x != nil {
  2210. return x.RemoteTimeNs
  2211. }
  2212. return 0
  2213. }
  2214. func (x *PingResponse) GetStopTimeNs() int64 {
  2215. if x != nil {
  2216. return x.StopTimeNs
  2217. }
  2218. return 0
  2219. }
  2220. type GetFilerConfigurationRequest struct {
  2221. state protoimpl.MessageState
  2222. sizeCache protoimpl.SizeCache
  2223. unknownFields protoimpl.UnknownFields
  2224. }
  2225. func (x *GetFilerConfigurationRequest) Reset() {
  2226. *x = GetFilerConfigurationRequest{}
  2227. if protoimpl.UnsafeEnabled {
  2228. mi := &file_filer_proto_msgTypes[39]
  2229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2230. ms.StoreMessageInfo(mi)
  2231. }
  2232. }
  2233. func (x *GetFilerConfigurationRequest) String() string {
  2234. return protoimpl.X.MessageStringOf(x)
  2235. }
  2236. func (*GetFilerConfigurationRequest) ProtoMessage() {}
  2237. func (x *GetFilerConfigurationRequest) ProtoReflect() protoreflect.Message {
  2238. mi := &file_filer_proto_msgTypes[39]
  2239. if protoimpl.UnsafeEnabled && x != nil {
  2240. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2241. if ms.LoadMessageInfo() == nil {
  2242. ms.StoreMessageInfo(mi)
  2243. }
  2244. return ms
  2245. }
  2246. return mi.MessageOf(x)
  2247. }
  2248. // Deprecated: Use GetFilerConfigurationRequest.ProtoReflect.Descriptor instead.
  2249. func (*GetFilerConfigurationRequest) Descriptor() ([]byte, []int) {
  2250. return file_filer_proto_rawDescGZIP(), []int{39}
  2251. }
  2252. type GetFilerConfigurationResponse struct {
  2253. state protoimpl.MessageState
  2254. sizeCache protoimpl.SizeCache
  2255. unknownFields protoimpl.UnknownFields
  2256. Masters []string `protobuf:"bytes,1,rep,name=masters,proto3" json:"masters,omitempty"`
  2257. Replication string `protobuf:"bytes,2,opt,name=replication,proto3" json:"replication,omitempty"`
  2258. Collection string `protobuf:"bytes,3,opt,name=collection,proto3" json:"collection,omitempty"`
  2259. MaxMb uint32 `protobuf:"varint,4,opt,name=max_mb,json=maxMb,proto3" json:"max_mb,omitempty"`
  2260. DirBuckets string `protobuf:"bytes,5,opt,name=dir_buckets,json=dirBuckets,proto3" json:"dir_buckets,omitempty"`
  2261. Cipher bool `protobuf:"varint,7,opt,name=cipher,proto3" json:"cipher,omitempty"`
  2262. Signature int32 `protobuf:"varint,8,opt,name=signature,proto3" json:"signature,omitempty"`
  2263. MetricsAddress string `protobuf:"bytes,9,opt,name=metrics_address,json=metricsAddress,proto3" json:"metrics_address,omitempty"`
  2264. MetricsIntervalSec int32 `protobuf:"varint,10,opt,name=metrics_interval_sec,json=metricsIntervalSec,proto3" json:"metrics_interval_sec,omitempty"`
  2265. Version string `protobuf:"bytes,11,opt,name=version,proto3" json:"version,omitempty"`
  2266. ClusterId string `protobuf:"bytes,12,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
  2267. FilerGroup string `protobuf:"bytes,13,opt,name=filer_group,json=filerGroup,proto3" json:"filer_group,omitempty"`
  2268. }
  2269. func (x *GetFilerConfigurationResponse) Reset() {
  2270. *x = GetFilerConfigurationResponse{}
  2271. if protoimpl.UnsafeEnabled {
  2272. mi := &file_filer_proto_msgTypes[40]
  2273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2274. ms.StoreMessageInfo(mi)
  2275. }
  2276. }
  2277. func (x *GetFilerConfigurationResponse) String() string {
  2278. return protoimpl.X.MessageStringOf(x)
  2279. }
  2280. func (*GetFilerConfigurationResponse) ProtoMessage() {}
  2281. func (x *GetFilerConfigurationResponse) ProtoReflect() protoreflect.Message {
  2282. mi := &file_filer_proto_msgTypes[40]
  2283. if protoimpl.UnsafeEnabled && x != nil {
  2284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2285. if ms.LoadMessageInfo() == nil {
  2286. ms.StoreMessageInfo(mi)
  2287. }
  2288. return ms
  2289. }
  2290. return mi.MessageOf(x)
  2291. }
  2292. // Deprecated: Use GetFilerConfigurationResponse.ProtoReflect.Descriptor instead.
  2293. func (*GetFilerConfigurationResponse) Descriptor() ([]byte, []int) {
  2294. return file_filer_proto_rawDescGZIP(), []int{40}
  2295. }
  2296. func (x *GetFilerConfigurationResponse) GetMasters() []string {
  2297. if x != nil {
  2298. return x.Masters
  2299. }
  2300. return nil
  2301. }
  2302. func (x *GetFilerConfigurationResponse) GetReplication() string {
  2303. if x != nil {
  2304. return x.Replication
  2305. }
  2306. return ""
  2307. }
  2308. func (x *GetFilerConfigurationResponse) GetCollection() string {
  2309. if x != nil {
  2310. return x.Collection
  2311. }
  2312. return ""
  2313. }
  2314. func (x *GetFilerConfigurationResponse) GetMaxMb() uint32 {
  2315. if x != nil {
  2316. return x.MaxMb
  2317. }
  2318. return 0
  2319. }
  2320. func (x *GetFilerConfigurationResponse) GetDirBuckets() string {
  2321. if x != nil {
  2322. return x.DirBuckets
  2323. }
  2324. return ""
  2325. }
  2326. func (x *GetFilerConfigurationResponse) GetCipher() bool {
  2327. if x != nil {
  2328. return x.Cipher
  2329. }
  2330. return false
  2331. }
  2332. func (x *GetFilerConfigurationResponse) GetSignature() int32 {
  2333. if x != nil {
  2334. return x.Signature
  2335. }
  2336. return 0
  2337. }
  2338. func (x *GetFilerConfigurationResponse) GetMetricsAddress() string {
  2339. if x != nil {
  2340. return x.MetricsAddress
  2341. }
  2342. return ""
  2343. }
  2344. func (x *GetFilerConfigurationResponse) GetMetricsIntervalSec() int32 {
  2345. if x != nil {
  2346. return x.MetricsIntervalSec
  2347. }
  2348. return 0
  2349. }
  2350. func (x *GetFilerConfigurationResponse) GetVersion() string {
  2351. if x != nil {
  2352. return x.Version
  2353. }
  2354. return ""
  2355. }
  2356. func (x *GetFilerConfigurationResponse) GetClusterId() string {
  2357. if x != nil {
  2358. return x.ClusterId
  2359. }
  2360. return ""
  2361. }
  2362. func (x *GetFilerConfigurationResponse) GetFilerGroup() string {
  2363. if x != nil {
  2364. return x.FilerGroup
  2365. }
  2366. return ""
  2367. }
  2368. type SubscribeMetadataRequest struct {
  2369. state protoimpl.MessageState
  2370. sizeCache protoimpl.SizeCache
  2371. unknownFields protoimpl.UnknownFields
  2372. ClientName string `protobuf:"bytes,1,opt,name=client_name,json=clientName,proto3" json:"client_name,omitempty"`
  2373. PathPrefix string `protobuf:"bytes,2,opt,name=path_prefix,json=pathPrefix,proto3" json:"path_prefix,omitempty"`
  2374. SinceNs int64 `protobuf:"varint,3,opt,name=since_ns,json=sinceNs,proto3" json:"since_ns,omitempty"`
  2375. Signature int32 `protobuf:"varint,4,opt,name=signature,proto3" json:"signature,omitempty"`
  2376. PathPrefixes []string `protobuf:"bytes,6,rep,name=path_prefixes,json=pathPrefixes,proto3" json:"path_prefixes,omitempty"`
  2377. ClientId int32 `protobuf:"varint,7,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
  2378. UntilNs int64 `protobuf:"varint,8,opt,name=until_ns,json=untilNs,proto3" json:"until_ns,omitempty"`
  2379. ClientEpoch int32 `protobuf:"varint,9,opt,name=client_epoch,json=clientEpoch,proto3" json:"client_epoch,omitempty"`
  2380. Directories []string `protobuf:"bytes,10,rep,name=directories,proto3" json:"directories,omitempty"` // exact directory to watch
  2381. }
  2382. func (x *SubscribeMetadataRequest) Reset() {
  2383. *x = SubscribeMetadataRequest{}
  2384. if protoimpl.UnsafeEnabled {
  2385. mi := &file_filer_proto_msgTypes[41]
  2386. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2387. ms.StoreMessageInfo(mi)
  2388. }
  2389. }
  2390. func (x *SubscribeMetadataRequest) String() string {
  2391. return protoimpl.X.MessageStringOf(x)
  2392. }
  2393. func (*SubscribeMetadataRequest) ProtoMessage() {}
  2394. func (x *SubscribeMetadataRequest) ProtoReflect() protoreflect.Message {
  2395. mi := &file_filer_proto_msgTypes[41]
  2396. if protoimpl.UnsafeEnabled && x != nil {
  2397. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2398. if ms.LoadMessageInfo() == nil {
  2399. ms.StoreMessageInfo(mi)
  2400. }
  2401. return ms
  2402. }
  2403. return mi.MessageOf(x)
  2404. }
  2405. // Deprecated: Use SubscribeMetadataRequest.ProtoReflect.Descriptor instead.
  2406. func (*SubscribeMetadataRequest) Descriptor() ([]byte, []int) {
  2407. return file_filer_proto_rawDescGZIP(), []int{41}
  2408. }
  2409. func (x *SubscribeMetadataRequest) GetClientName() string {
  2410. if x != nil {
  2411. return x.ClientName
  2412. }
  2413. return ""
  2414. }
  2415. func (x *SubscribeMetadataRequest) GetPathPrefix() string {
  2416. if x != nil {
  2417. return x.PathPrefix
  2418. }
  2419. return ""
  2420. }
  2421. func (x *SubscribeMetadataRequest) GetSinceNs() int64 {
  2422. if x != nil {
  2423. return x.SinceNs
  2424. }
  2425. return 0
  2426. }
  2427. func (x *SubscribeMetadataRequest) GetSignature() int32 {
  2428. if x != nil {
  2429. return x.Signature
  2430. }
  2431. return 0
  2432. }
  2433. func (x *SubscribeMetadataRequest) GetPathPrefixes() []string {
  2434. if x != nil {
  2435. return x.PathPrefixes
  2436. }
  2437. return nil
  2438. }
  2439. func (x *SubscribeMetadataRequest) GetClientId() int32 {
  2440. if x != nil {
  2441. return x.ClientId
  2442. }
  2443. return 0
  2444. }
  2445. func (x *SubscribeMetadataRequest) GetUntilNs() int64 {
  2446. if x != nil {
  2447. return x.UntilNs
  2448. }
  2449. return 0
  2450. }
  2451. func (x *SubscribeMetadataRequest) GetClientEpoch() int32 {
  2452. if x != nil {
  2453. return x.ClientEpoch
  2454. }
  2455. return 0
  2456. }
  2457. func (x *SubscribeMetadataRequest) GetDirectories() []string {
  2458. if x != nil {
  2459. return x.Directories
  2460. }
  2461. return nil
  2462. }
  2463. type SubscribeMetadataResponse struct {
  2464. state protoimpl.MessageState
  2465. sizeCache protoimpl.SizeCache
  2466. unknownFields protoimpl.UnknownFields
  2467. Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
  2468. EventNotification *EventNotification `protobuf:"bytes,2,opt,name=event_notification,json=eventNotification,proto3" json:"event_notification,omitempty"`
  2469. TsNs int64 `protobuf:"varint,3,opt,name=ts_ns,json=tsNs,proto3" json:"ts_ns,omitempty"`
  2470. }
  2471. func (x *SubscribeMetadataResponse) Reset() {
  2472. *x = SubscribeMetadataResponse{}
  2473. if protoimpl.UnsafeEnabled {
  2474. mi := &file_filer_proto_msgTypes[42]
  2475. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2476. ms.StoreMessageInfo(mi)
  2477. }
  2478. }
  2479. func (x *SubscribeMetadataResponse) String() string {
  2480. return protoimpl.X.MessageStringOf(x)
  2481. }
  2482. func (*SubscribeMetadataResponse) ProtoMessage() {}
  2483. func (x *SubscribeMetadataResponse) ProtoReflect() protoreflect.Message {
  2484. mi := &file_filer_proto_msgTypes[42]
  2485. if protoimpl.UnsafeEnabled && x != nil {
  2486. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2487. if ms.LoadMessageInfo() == nil {
  2488. ms.StoreMessageInfo(mi)
  2489. }
  2490. return ms
  2491. }
  2492. return mi.MessageOf(x)
  2493. }
  2494. // Deprecated: Use SubscribeMetadataResponse.ProtoReflect.Descriptor instead.
  2495. func (*SubscribeMetadataResponse) Descriptor() ([]byte, []int) {
  2496. return file_filer_proto_rawDescGZIP(), []int{42}
  2497. }
  2498. func (x *SubscribeMetadataResponse) GetDirectory() string {
  2499. if x != nil {
  2500. return x.Directory
  2501. }
  2502. return ""
  2503. }
  2504. func (x *SubscribeMetadataResponse) GetEventNotification() *EventNotification {
  2505. if x != nil {
  2506. return x.EventNotification
  2507. }
  2508. return nil
  2509. }
  2510. func (x *SubscribeMetadataResponse) GetTsNs() int64 {
  2511. if x != nil {
  2512. return x.TsNs
  2513. }
  2514. return 0
  2515. }
  2516. type LogEntry struct {
  2517. state protoimpl.MessageState
  2518. sizeCache protoimpl.SizeCache
  2519. unknownFields protoimpl.UnknownFields
  2520. TsNs int64 `protobuf:"varint,1,opt,name=ts_ns,json=tsNs,proto3" json:"ts_ns,omitempty"`
  2521. PartitionKeyHash int32 `protobuf:"varint,2,opt,name=partition_key_hash,json=partitionKeyHash,proto3" json:"partition_key_hash,omitempty"`
  2522. Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  2523. }
  2524. func (x *LogEntry) Reset() {
  2525. *x = LogEntry{}
  2526. if protoimpl.UnsafeEnabled {
  2527. mi := &file_filer_proto_msgTypes[43]
  2528. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2529. ms.StoreMessageInfo(mi)
  2530. }
  2531. }
  2532. func (x *LogEntry) String() string {
  2533. return protoimpl.X.MessageStringOf(x)
  2534. }
  2535. func (*LogEntry) ProtoMessage() {}
  2536. func (x *LogEntry) ProtoReflect() protoreflect.Message {
  2537. mi := &file_filer_proto_msgTypes[43]
  2538. if protoimpl.UnsafeEnabled && x != nil {
  2539. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2540. if ms.LoadMessageInfo() == nil {
  2541. ms.StoreMessageInfo(mi)
  2542. }
  2543. return ms
  2544. }
  2545. return mi.MessageOf(x)
  2546. }
  2547. // Deprecated: Use LogEntry.ProtoReflect.Descriptor instead.
  2548. func (*LogEntry) Descriptor() ([]byte, []int) {
  2549. return file_filer_proto_rawDescGZIP(), []int{43}
  2550. }
  2551. func (x *LogEntry) GetTsNs() int64 {
  2552. if x != nil {
  2553. return x.TsNs
  2554. }
  2555. return 0
  2556. }
  2557. func (x *LogEntry) GetPartitionKeyHash() int32 {
  2558. if x != nil {
  2559. return x.PartitionKeyHash
  2560. }
  2561. return 0
  2562. }
  2563. func (x *LogEntry) GetData() []byte {
  2564. if x != nil {
  2565. return x.Data
  2566. }
  2567. return nil
  2568. }
  2569. type KeepConnectedRequest struct {
  2570. state protoimpl.MessageState
  2571. sizeCache protoimpl.SizeCache
  2572. unknownFields protoimpl.UnknownFields
  2573. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  2574. GrpcPort uint32 `protobuf:"varint,2,opt,name=grpc_port,json=grpcPort,proto3" json:"grpc_port,omitempty"`
  2575. Resources []string `protobuf:"bytes,3,rep,name=resources,proto3" json:"resources,omitempty"`
  2576. }
  2577. func (x *KeepConnectedRequest) Reset() {
  2578. *x = KeepConnectedRequest{}
  2579. if protoimpl.UnsafeEnabled {
  2580. mi := &file_filer_proto_msgTypes[44]
  2581. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2582. ms.StoreMessageInfo(mi)
  2583. }
  2584. }
  2585. func (x *KeepConnectedRequest) String() string {
  2586. return protoimpl.X.MessageStringOf(x)
  2587. }
  2588. func (*KeepConnectedRequest) ProtoMessage() {}
  2589. func (x *KeepConnectedRequest) ProtoReflect() protoreflect.Message {
  2590. mi := &file_filer_proto_msgTypes[44]
  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 KeepConnectedRequest.ProtoReflect.Descriptor instead.
  2601. func (*KeepConnectedRequest) Descriptor() ([]byte, []int) {
  2602. return file_filer_proto_rawDescGZIP(), []int{44}
  2603. }
  2604. func (x *KeepConnectedRequest) GetName() string {
  2605. if x != nil {
  2606. return x.Name
  2607. }
  2608. return ""
  2609. }
  2610. func (x *KeepConnectedRequest) GetGrpcPort() uint32 {
  2611. if x != nil {
  2612. return x.GrpcPort
  2613. }
  2614. return 0
  2615. }
  2616. func (x *KeepConnectedRequest) GetResources() []string {
  2617. if x != nil {
  2618. return x.Resources
  2619. }
  2620. return nil
  2621. }
  2622. type KeepConnectedResponse struct {
  2623. state protoimpl.MessageState
  2624. sizeCache protoimpl.SizeCache
  2625. unknownFields protoimpl.UnknownFields
  2626. }
  2627. func (x *KeepConnectedResponse) Reset() {
  2628. *x = KeepConnectedResponse{}
  2629. if protoimpl.UnsafeEnabled {
  2630. mi := &file_filer_proto_msgTypes[45]
  2631. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2632. ms.StoreMessageInfo(mi)
  2633. }
  2634. }
  2635. func (x *KeepConnectedResponse) String() string {
  2636. return protoimpl.X.MessageStringOf(x)
  2637. }
  2638. func (*KeepConnectedResponse) ProtoMessage() {}
  2639. func (x *KeepConnectedResponse) ProtoReflect() protoreflect.Message {
  2640. mi := &file_filer_proto_msgTypes[45]
  2641. if protoimpl.UnsafeEnabled && x != nil {
  2642. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2643. if ms.LoadMessageInfo() == nil {
  2644. ms.StoreMessageInfo(mi)
  2645. }
  2646. return ms
  2647. }
  2648. return mi.MessageOf(x)
  2649. }
  2650. // Deprecated: Use KeepConnectedResponse.ProtoReflect.Descriptor instead.
  2651. func (*KeepConnectedResponse) Descriptor() ([]byte, []int) {
  2652. return file_filer_proto_rawDescGZIP(), []int{45}
  2653. }
  2654. type LocateBrokerRequest struct {
  2655. state protoimpl.MessageState
  2656. sizeCache protoimpl.SizeCache
  2657. unknownFields protoimpl.UnknownFields
  2658. Resource string `protobuf:"bytes,1,opt,name=resource,proto3" json:"resource,omitempty"`
  2659. }
  2660. func (x *LocateBrokerRequest) Reset() {
  2661. *x = LocateBrokerRequest{}
  2662. if protoimpl.UnsafeEnabled {
  2663. mi := &file_filer_proto_msgTypes[46]
  2664. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2665. ms.StoreMessageInfo(mi)
  2666. }
  2667. }
  2668. func (x *LocateBrokerRequest) String() string {
  2669. return protoimpl.X.MessageStringOf(x)
  2670. }
  2671. func (*LocateBrokerRequest) ProtoMessage() {}
  2672. func (x *LocateBrokerRequest) ProtoReflect() protoreflect.Message {
  2673. mi := &file_filer_proto_msgTypes[46]
  2674. if protoimpl.UnsafeEnabled && x != nil {
  2675. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2676. if ms.LoadMessageInfo() == nil {
  2677. ms.StoreMessageInfo(mi)
  2678. }
  2679. return ms
  2680. }
  2681. return mi.MessageOf(x)
  2682. }
  2683. // Deprecated: Use LocateBrokerRequest.ProtoReflect.Descriptor instead.
  2684. func (*LocateBrokerRequest) Descriptor() ([]byte, []int) {
  2685. return file_filer_proto_rawDescGZIP(), []int{46}
  2686. }
  2687. func (x *LocateBrokerRequest) GetResource() string {
  2688. if x != nil {
  2689. return x.Resource
  2690. }
  2691. return ""
  2692. }
  2693. type LocateBrokerResponse struct {
  2694. state protoimpl.MessageState
  2695. sizeCache protoimpl.SizeCache
  2696. unknownFields protoimpl.UnknownFields
  2697. Found bool `protobuf:"varint,1,opt,name=found,proto3" json:"found,omitempty"`
  2698. Resources []*LocateBrokerResponse_Resource `protobuf:"bytes,2,rep,name=resources,proto3" json:"resources,omitempty"`
  2699. }
  2700. func (x *LocateBrokerResponse) Reset() {
  2701. *x = LocateBrokerResponse{}
  2702. if protoimpl.UnsafeEnabled {
  2703. mi := &file_filer_proto_msgTypes[47]
  2704. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2705. ms.StoreMessageInfo(mi)
  2706. }
  2707. }
  2708. func (x *LocateBrokerResponse) String() string {
  2709. return protoimpl.X.MessageStringOf(x)
  2710. }
  2711. func (*LocateBrokerResponse) ProtoMessage() {}
  2712. func (x *LocateBrokerResponse) ProtoReflect() protoreflect.Message {
  2713. mi := &file_filer_proto_msgTypes[47]
  2714. if protoimpl.UnsafeEnabled && x != nil {
  2715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2716. if ms.LoadMessageInfo() == nil {
  2717. ms.StoreMessageInfo(mi)
  2718. }
  2719. return ms
  2720. }
  2721. return mi.MessageOf(x)
  2722. }
  2723. // Deprecated: Use LocateBrokerResponse.ProtoReflect.Descriptor instead.
  2724. func (*LocateBrokerResponse) Descriptor() ([]byte, []int) {
  2725. return file_filer_proto_rawDescGZIP(), []int{47}
  2726. }
  2727. func (x *LocateBrokerResponse) GetFound() bool {
  2728. if x != nil {
  2729. return x.Found
  2730. }
  2731. return false
  2732. }
  2733. func (x *LocateBrokerResponse) GetResources() []*LocateBrokerResponse_Resource {
  2734. if x != nil {
  2735. return x.Resources
  2736. }
  2737. return nil
  2738. }
  2739. // ///////////////////////
  2740. // Key-Value operations
  2741. // ///////////////////////
  2742. type KvGetRequest struct {
  2743. state protoimpl.MessageState
  2744. sizeCache protoimpl.SizeCache
  2745. unknownFields protoimpl.UnknownFields
  2746. Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
  2747. }
  2748. func (x *KvGetRequest) Reset() {
  2749. *x = KvGetRequest{}
  2750. if protoimpl.UnsafeEnabled {
  2751. mi := &file_filer_proto_msgTypes[48]
  2752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2753. ms.StoreMessageInfo(mi)
  2754. }
  2755. }
  2756. func (x *KvGetRequest) String() string {
  2757. return protoimpl.X.MessageStringOf(x)
  2758. }
  2759. func (*KvGetRequest) ProtoMessage() {}
  2760. func (x *KvGetRequest) ProtoReflect() protoreflect.Message {
  2761. mi := &file_filer_proto_msgTypes[48]
  2762. if protoimpl.UnsafeEnabled && x != nil {
  2763. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2764. if ms.LoadMessageInfo() == nil {
  2765. ms.StoreMessageInfo(mi)
  2766. }
  2767. return ms
  2768. }
  2769. return mi.MessageOf(x)
  2770. }
  2771. // Deprecated: Use KvGetRequest.ProtoReflect.Descriptor instead.
  2772. func (*KvGetRequest) Descriptor() ([]byte, []int) {
  2773. return file_filer_proto_rawDescGZIP(), []int{48}
  2774. }
  2775. func (x *KvGetRequest) GetKey() []byte {
  2776. if x != nil {
  2777. return x.Key
  2778. }
  2779. return nil
  2780. }
  2781. type KvGetResponse struct {
  2782. state protoimpl.MessageState
  2783. sizeCache protoimpl.SizeCache
  2784. unknownFields protoimpl.UnknownFields
  2785. Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
  2786. Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
  2787. }
  2788. func (x *KvGetResponse) Reset() {
  2789. *x = KvGetResponse{}
  2790. if protoimpl.UnsafeEnabled {
  2791. mi := &file_filer_proto_msgTypes[49]
  2792. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2793. ms.StoreMessageInfo(mi)
  2794. }
  2795. }
  2796. func (x *KvGetResponse) String() string {
  2797. return protoimpl.X.MessageStringOf(x)
  2798. }
  2799. func (*KvGetResponse) ProtoMessage() {}
  2800. func (x *KvGetResponse) ProtoReflect() protoreflect.Message {
  2801. mi := &file_filer_proto_msgTypes[49]
  2802. if protoimpl.UnsafeEnabled && x != nil {
  2803. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2804. if ms.LoadMessageInfo() == nil {
  2805. ms.StoreMessageInfo(mi)
  2806. }
  2807. return ms
  2808. }
  2809. return mi.MessageOf(x)
  2810. }
  2811. // Deprecated: Use KvGetResponse.ProtoReflect.Descriptor instead.
  2812. func (*KvGetResponse) Descriptor() ([]byte, []int) {
  2813. return file_filer_proto_rawDescGZIP(), []int{49}
  2814. }
  2815. func (x *KvGetResponse) GetValue() []byte {
  2816. if x != nil {
  2817. return x.Value
  2818. }
  2819. return nil
  2820. }
  2821. func (x *KvGetResponse) GetError() string {
  2822. if x != nil {
  2823. return x.Error
  2824. }
  2825. return ""
  2826. }
  2827. type KvPutRequest struct {
  2828. state protoimpl.MessageState
  2829. sizeCache protoimpl.SizeCache
  2830. unknownFields protoimpl.UnknownFields
  2831. Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
  2832. Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  2833. }
  2834. func (x *KvPutRequest) Reset() {
  2835. *x = KvPutRequest{}
  2836. if protoimpl.UnsafeEnabled {
  2837. mi := &file_filer_proto_msgTypes[50]
  2838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2839. ms.StoreMessageInfo(mi)
  2840. }
  2841. }
  2842. func (x *KvPutRequest) String() string {
  2843. return protoimpl.X.MessageStringOf(x)
  2844. }
  2845. func (*KvPutRequest) ProtoMessage() {}
  2846. func (x *KvPutRequest) ProtoReflect() protoreflect.Message {
  2847. mi := &file_filer_proto_msgTypes[50]
  2848. if protoimpl.UnsafeEnabled && x != nil {
  2849. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2850. if ms.LoadMessageInfo() == nil {
  2851. ms.StoreMessageInfo(mi)
  2852. }
  2853. return ms
  2854. }
  2855. return mi.MessageOf(x)
  2856. }
  2857. // Deprecated: Use KvPutRequest.ProtoReflect.Descriptor instead.
  2858. func (*KvPutRequest) Descriptor() ([]byte, []int) {
  2859. return file_filer_proto_rawDescGZIP(), []int{50}
  2860. }
  2861. func (x *KvPutRequest) GetKey() []byte {
  2862. if x != nil {
  2863. return x.Key
  2864. }
  2865. return nil
  2866. }
  2867. func (x *KvPutRequest) GetValue() []byte {
  2868. if x != nil {
  2869. return x.Value
  2870. }
  2871. return nil
  2872. }
  2873. type KvPutResponse struct {
  2874. state protoimpl.MessageState
  2875. sizeCache protoimpl.SizeCache
  2876. unknownFields protoimpl.UnknownFields
  2877. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  2878. }
  2879. func (x *KvPutResponse) Reset() {
  2880. *x = KvPutResponse{}
  2881. if protoimpl.UnsafeEnabled {
  2882. mi := &file_filer_proto_msgTypes[51]
  2883. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2884. ms.StoreMessageInfo(mi)
  2885. }
  2886. }
  2887. func (x *KvPutResponse) String() string {
  2888. return protoimpl.X.MessageStringOf(x)
  2889. }
  2890. func (*KvPutResponse) ProtoMessage() {}
  2891. func (x *KvPutResponse) ProtoReflect() protoreflect.Message {
  2892. mi := &file_filer_proto_msgTypes[51]
  2893. if protoimpl.UnsafeEnabled && x != nil {
  2894. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2895. if ms.LoadMessageInfo() == nil {
  2896. ms.StoreMessageInfo(mi)
  2897. }
  2898. return ms
  2899. }
  2900. return mi.MessageOf(x)
  2901. }
  2902. // Deprecated: Use KvPutResponse.ProtoReflect.Descriptor instead.
  2903. func (*KvPutResponse) Descriptor() ([]byte, []int) {
  2904. return file_filer_proto_rawDescGZIP(), []int{51}
  2905. }
  2906. func (x *KvPutResponse) GetError() string {
  2907. if x != nil {
  2908. return x.Error
  2909. }
  2910. return ""
  2911. }
  2912. // ///////////////////////
  2913. // path-based configurations
  2914. // ///////////////////////
  2915. type FilerConf struct {
  2916. state protoimpl.MessageState
  2917. sizeCache protoimpl.SizeCache
  2918. unknownFields protoimpl.UnknownFields
  2919. Version int32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
  2920. Locations []*FilerConf_PathConf `protobuf:"bytes,2,rep,name=locations,proto3" json:"locations,omitempty"`
  2921. }
  2922. func (x *FilerConf) Reset() {
  2923. *x = FilerConf{}
  2924. if protoimpl.UnsafeEnabled {
  2925. mi := &file_filer_proto_msgTypes[52]
  2926. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2927. ms.StoreMessageInfo(mi)
  2928. }
  2929. }
  2930. func (x *FilerConf) String() string {
  2931. return protoimpl.X.MessageStringOf(x)
  2932. }
  2933. func (*FilerConf) ProtoMessage() {}
  2934. func (x *FilerConf) ProtoReflect() protoreflect.Message {
  2935. mi := &file_filer_proto_msgTypes[52]
  2936. if protoimpl.UnsafeEnabled && x != nil {
  2937. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2938. if ms.LoadMessageInfo() == nil {
  2939. ms.StoreMessageInfo(mi)
  2940. }
  2941. return ms
  2942. }
  2943. return mi.MessageOf(x)
  2944. }
  2945. // Deprecated: Use FilerConf.ProtoReflect.Descriptor instead.
  2946. func (*FilerConf) Descriptor() ([]byte, []int) {
  2947. return file_filer_proto_rawDescGZIP(), []int{52}
  2948. }
  2949. func (x *FilerConf) GetVersion() int32 {
  2950. if x != nil {
  2951. return x.Version
  2952. }
  2953. return 0
  2954. }
  2955. func (x *FilerConf) GetLocations() []*FilerConf_PathConf {
  2956. if x != nil {
  2957. return x.Locations
  2958. }
  2959. return nil
  2960. }
  2961. // ///////////////////////
  2962. // Remote Storage related
  2963. // ///////////////////////
  2964. type CacheRemoteObjectToLocalClusterRequest struct {
  2965. state protoimpl.MessageState
  2966. sizeCache protoimpl.SizeCache
  2967. unknownFields protoimpl.UnknownFields
  2968. Directory string `protobuf:"bytes,1,opt,name=directory,proto3" json:"directory,omitempty"`
  2969. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  2970. }
  2971. func (x *CacheRemoteObjectToLocalClusterRequest) Reset() {
  2972. *x = CacheRemoteObjectToLocalClusterRequest{}
  2973. if protoimpl.UnsafeEnabled {
  2974. mi := &file_filer_proto_msgTypes[53]
  2975. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2976. ms.StoreMessageInfo(mi)
  2977. }
  2978. }
  2979. func (x *CacheRemoteObjectToLocalClusterRequest) String() string {
  2980. return protoimpl.X.MessageStringOf(x)
  2981. }
  2982. func (*CacheRemoteObjectToLocalClusterRequest) ProtoMessage() {}
  2983. func (x *CacheRemoteObjectToLocalClusterRequest) ProtoReflect() protoreflect.Message {
  2984. mi := &file_filer_proto_msgTypes[53]
  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 CacheRemoteObjectToLocalClusterRequest.ProtoReflect.Descriptor instead.
  2995. func (*CacheRemoteObjectToLocalClusterRequest) Descriptor() ([]byte, []int) {
  2996. return file_filer_proto_rawDescGZIP(), []int{53}
  2997. }
  2998. func (x *CacheRemoteObjectToLocalClusterRequest) GetDirectory() string {
  2999. if x != nil {
  3000. return x.Directory
  3001. }
  3002. return ""
  3003. }
  3004. func (x *CacheRemoteObjectToLocalClusterRequest) GetName() string {
  3005. if x != nil {
  3006. return x.Name
  3007. }
  3008. return ""
  3009. }
  3010. type CacheRemoteObjectToLocalClusterResponse struct {
  3011. state protoimpl.MessageState
  3012. sizeCache protoimpl.SizeCache
  3013. unknownFields protoimpl.UnknownFields
  3014. Entry *Entry `protobuf:"bytes,1,opt,name=entry,proto3" json:"entry,omitempty"`
  3015. }
  3016. func (x *CacheRemoteObjectToLocalClusterResponse) Reset() {
  3017. *x = CacheRemoteObjectToLocalClusterResponse{}
  3018. if protoimpl.UnsafeEnabled {
  3019. mi := &file_filer_proto_msgTypes[54]
  3020. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3021. ms.StoreMessageInfo(mi)
  3022. }
  3023. }
  3024. func (x *CacheRemoteObjectToLocalClusterResponse) String() string {
  3025. return protoimpl.X.MessageStringOf(x)
  3026. }
  3027. func (*CacheRemoteObjectToLocalClusterResponse) ProtoMessage() {}
  3028. func (x *CacheRemoteObjectToLocalClusterResponse) ProtoReflect() protoreflect.Message {
  3029. mi := &file_filer_proto_msgTypes[54]
  3030. if protoimpl.UnsafeEnabled && x != nil {
  3031. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3032. if ms.LoadMessageInfo() == nil {
  3033. ms.StoreMessageInfo(mi)
  3034. }
  3035. return ms
  3036. }
  3037. return mi.MessageOf(x)
  3038. }
  3039. // Deprecated: Use CacheRemoteObjectToLocalClusterResponse.ProtoReflect.Descriptor instead.
  3040. func (*CacheRemoteObjectToLocalClusterResponse) Descriptor() ([]byte, []int) {
  3041. return file_filer_proto_rawDescGZIP(), []int{54}
  3042. }
  3043. func (x *CacheRemoteObjectToLocalClusterResponse) GetEntry() *Entry {
  3044. if x != nil {
  3045. return x.Entry
  3046. }
  3047. return nil
  3048. }
  3049. // if found, send the exact address
  3050. // if not found, send the full list of existing brokers
  3051. type LocateBrokerResponse_Resource struct {
  3052. state protoimpl.MessageState
  3053. sizeCache protoimpl.SizeCache
  3054. unknownFields protoimpl.UnknownFields
  3055. GrpcAddresses string `protobuf:"bytes,1,opt,name=grpc_addresses,json=grpcAddresses,proto3" json:"grpc_addresses,omitempty"`
  3056. ResourceCount int32 `protobuf:"varint,2,opt,name=resource_count,json=resourceCount,proto3" json:"resource_count,omitempty"`
  3057. }
  3058. func (x *LocateBrokerResponse_Resource) Reset() {
  3059. *x = LocateBrokerResponse_Resource{}
  3060. if protoimpl.UnsafeEnabled {
  3061. mi := &file_filer_proto_msgTypes[57]
  3062. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3063. ms.StoreMessageInfo(mi)
  3064. }
  3065. }
  3066. func (x *LocateBrokerResponse_Resource) String() string {
  3067. return protoimpl.X.MessageStringOf(x)
  3068. }
  3069. func (*LocateBrokerResponse_Resource) ProtoMessage() {}
  3070. func (x *LocateBrokerResponse_Resource) ProtoReflect() protoreflect.Message {
  3071. mi := &file_filer_proto_msgTypes[57]
  3072. if protoimpl.UnsafeEnabled && x != nil {
  3073. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3074. if ms.LoadMessageInfo() == nil {
  3075. ms.StoreMessageInfo(mi)
  3076. }
  3077. return ms
  3078. }
  3079. return mi.MessageOf(x)
  3080. }
  3081. // Deprecated: Use LocateBrokerResponse_Resource.ProtoReflect.Descriptor instead.
  3082. func (*LocateBrokerResponse_Resource) Descriptor() ([]byte, []int) {
  3083. return file_filer_proto_rawDescGZIP(), []int{47, 0}
  3084. }
  3085. func (x *LocateBrokerResponse_Resource) GetGrpcAddresses() string {
  3086. if x != nil {
  3087. return x.GrpcAddresses
  3088. }
  3089. return ""
  3090. }
  3091. func (x *LocateBrokerResponse_Resource) GetResourceCount() int32 {
  3092. if x != nil {
  3093. return x.ResourceCount
  3094. }
  3095. return 0
  3096. }
  3097. type FilerConf_PathConf struct {
  3098. state protoimpl.MessageState
  3099. sizeCache protoimpl.SizeCache
  3100. unknownFields protoimpl.UnknownFields
  3101. LocationPrefix string `protobuf:"bytes,1,opt,name=location_prefix,json=locationPrefix,proto3" json:"location_prefix,omitempty"`
  3102. Collection string `protobuf:"bytes,2,opt,name=collection,proto3" json:"collection,omitempty"`
  3103. Replication string `protobuf:"bytes,3,opt,name=replication,proto3" json:"replication,omitempty"`
  3104. Ttl string `protobuf:"bytes,4,opt,name=ttl,proto3" json:"ttl,omitempty"`
  3105. DiskType string `protobuf:"bytes,5,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  3106. Fsync bool `protobuf:"varint,6,opt,name=fsync,proto3" json:"fsync,omitempty"`
  3107. VolumeGrowthCount uint32 `protobuf:"varint,7,opt,name=volume_growth_count,json=volumeGrowthCount,proto3" json:"volume_growth_count,omitempty"`
  3108. ReadOnly bool `protobuf:"varint,8,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"`
  3109. DataCenter string `protobuf:"bytes,9,opt,name=data_center,json=dataCenter,proto3" json:"data_center,omitempty"`
  3110. Rack string `protobuf:"bytes,10,opt,name=rack,proto3" json:"rack,omitempty"`
  3111. DataNode string `protobuf:"bytes,11,opt,name=data_node,json=dataNode,proto3" json:"data_node,omitempty"`
  3112. }
  3113. func (x *FilerConf_PathConf) Reset() {
  3114. *x = FilerConf_PathConf{}
  3115. if protoimpl.UnsafeEnabled {
  3116. mi := &file_filer_proto_msgTypes[58]
  3117. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3118. ms.StoreMessageInfo(mi)
  3119. }
  3120. }
  3121. func (x *FilerConf_PathConf) String() string {
  3122. return protoimpl.X.MessageStringOf(x)
  3123. }
  3124. func (*FilerConf_PathConf) ProtoMessage() {}
  3125. func (x *FilerConf_PathConf) ProtoReflect() protoreflect.Message {
  3126. mi := &file_filer_proto_msgTypes[58]
  3127. if protoimpl.UnsafeEnabled && x != nil {
  3128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3129. if ms.LoadMessageInfo() == nil {
  3130. ms.StoreMessageInfo(mi)
  3131. }
  3132. return ms
  3133. }
  3134. return mi.MessageOf(x)
  3135. }
  3136. // Deprecated: Use FilerConf_PathConf.ProtoReflect.Descriptor instead.
  3137. func (*FilerConf_PathConf) Descriptor() ([]byte, []int) {
  3138. return file_filer_proto_rawDescGZIP(), []int{52, 0}
  3139. }
  3140. func (x *FilerConf_PathConf) GetLocationPrefix() string {
  3141. if x != nil {
  3142. return x.LocationPrefix
  3143. }
  3144. return ""
  3145. }
  3146. func (x *FilerConf_PathConf) GetCollection() string {
  3147. if x != nil {
  3148. return x.Collection
  3149. }
  3150. return ""
  3151. }
  3152. func (x *FilerConf_PathConf) GetReplication() string {
  3153. if x != nil {
  3154. return x.Replication
  3155. }
  3156. return ""
  3157. }
  3158. func (x *FilerConf_PathConf) GetTtl() string {
  3159. if x != nil {
  3160. return x.Ttl
  3161. }
  3162. return ""
  3163. }
  3164. func (x *FilerConf_PathConf) GetDiskType() string {
  3165. if x != nil {
  3166. return x.DiskType
  3167. }
  3168. return ""
  3169. }
  3170. func (x *FilerConf_PathConf) GetFsync() bool {
  3171. if x != nil {
  3172. return x.Fsync
  3173. }
  3174. return false
  3175. }
  3176. func (x *FilerConf_PathConf) GetVolumeGrowthCount() uint32 {
  3177. if x != nil {
  3178. return x.VolumeGrowthCount
  3179. }
  3180. return 0
  3181. }
  3182. func (x *FilerConf_PathConf) GetReadOnly() bool {
  3183. if x != nil {
  3184. return x.ReadOnly
  3185. }
  3186. return false
  3187. }
  3188. func (x *FilerConf_PathConf) GetDataCenter() string {
  3189. if x != nil {
  3190. return x.DataCenter
  3191. }
  3192. return ""
  3193. }
  3194. func (x *FilerConf_PathConf) GetRack() string {
  3195. if x != nil {
  3196. return x.Rack
  3197. }
  3198. return ""
  3199. }
  3200. func (x *FilerConf_PathConf) GetDataNode() string {
  3201. if x != nil {
  3202. return x.DataNode
  3203. }
  3204. return ""
  3205. }
  3206. var File_filer_proto protoreflect.FileDescriptor
  3207. var file_filer_proto_rawDesc = []byte{
  3208. 0x0a, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x66,
  3209. 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x22, 0x4f, 0x0a, 0x1b, 0x4c, 0x6f, 0x6f, 0x6b, 0x75,
  3210. 0x70, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  3211. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
  3212. 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63,
  3213. 0x74, 0x6f, 0x72, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  3214. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x45, 0x0a, 0x1c, 0x4c, 0x6f, 0x6f, 0x6b,
  3215. 0x75, 0x70, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3216. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x72,
  3217. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f,
  3218. 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x22,
  3219. 0xbe, 0x01, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x52,
  3220. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
  3221. 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63,
  3222. 0x74, 0x6f, 0x72, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x72, 0x65, 0x66, 0x69, 0x78, 0x18, 0x02,
  3223. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x72, 0x65, 0x66, 0x69, 0x78, 0x12, 0x2c, 0x0a, 0x11,
  3224. 0x73, 0x74, 0x61, 0x72, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d,
  3225. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x73, 0x74, 0x61, 0x72, 0x74, 0x46, 0x72,
  3226. 0x6f, 0x6d, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x69, 0x6e,
  3227. 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x46, 0x72, 0x6f, 0x6d,
  3228. 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76,
  3229. 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
  3230. 0x6d, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  3231. 0x22, 0x3c, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x52,
  3232. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79,
  3233. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70,
  3234. 0x62, 0x2e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x22, 0xc8,
  3235. 0x01, 0x0a, 0x0b, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x21,
  3236. 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  3237. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d,
  3238. 0x65, 0x12, 0x30, 0x0a, 0x15, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f,
  3239. 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  3240. 0x52, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x79, 0x6e, 0x63, 0x54,
  3241. 0x73, 0x4e, 0x73, 0x12, 0x20, 0x0a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x65, 0x5f,
  3242. 0x74, 0x61, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x74,
  3243. 0x65, 0x45, 0x54, 0x61, 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f,
  3244. 0x6d, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x6d,
  3245. 0x6f, 0x74, 0x65, 0x4d, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f,
  3246. 0x74, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72,
  3247. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0xd5, 0x03, 0x0a, 0x05, 0x45, 0x6e,
  3248. 0x74, 0x72, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3249. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x64, 0x69,
  3250. 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69,
  3251. 0x73, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x2b, 0x0a, 0x06, 0x63, 0x68,
  3252. 0x75, 0x6e, 0x6b, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x66, 0x69, 0x6c,
  3253. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x52,
  3254. 0x06, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x12, 0x38, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69,
  3255. 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x66, 0x69,
  3256. 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x75, 0x73, 0x65, 0x41, 0x74, 0x74, 0x72, 0x69,
  3257. 0x62, 0x75, 0x74, 0x65, 0x73, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
  3258. 0x73, 0x12, 0x39, 0x0a, 0x08, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x18, 0x05, 0x20,
  3259. 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x45,
  3260. 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x45, 0x6e, 0x74,
  3261. 0x72, 0x79, 0x52, 0x08, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x12, 0x20, 0x0a, 0x0c,
  3262. 0x68, 0x61, 0x72, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01,
  3263. 0x28, 0x0c, 0x52, 0x0a, 0x68, 0x61, 0x72, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x64, 0x12, 0x2a,
  3264. 0x0a, 0x11, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x63, 0x6f, 0x75, 0x6e,
  3265. 0x74, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x68, 0x61, 0x72, 0x64, 0x4c,
  3266. 0x69, 0x6e, 0x6b, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
  3267. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x63, 0x6f, 0x6e,
  3268. 0x74, 0x65, 0x6e, 0x74, 0x12, 0x38, 0x0a, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x65,
  3269. 0x6e, 0x74, 0x72, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x66, 0x69, 0x6c,
  3270. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72,
  3271. 0x79, 0x52, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x14,
  3272. 0x0a, 0x05, 0x71, 0x75, 0x6f, 0x74, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x71,
  3273. 0x75, 0x6f, 0x74, 0x61, 0x1a, 0x3b, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64,
  3274. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  3275. 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3276. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  3277. 0x01, 0x22, 0x44, 0x0a, 0x09, 0x46, 0x75, 0x6c, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  3278. 0x0a, 0x03, 0x64, 0x69, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x64, 0x69, 0x72,
  3279. 0x12, 0x25, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  3280. 0x0f, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3281. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x8f, 0x02, 0x0a, 0x11, 0x45, 0x76, 0x65, 0x6e,
  3282. 0x74, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2c, 0x0a,
  3283. 0x09, 0x6f, 0x6c, 0x64, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  3284. 0x32, 0x0f, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x74, 0x72,
  3285. 0x79, 0x52, 0x08, 0x6f, 0x6c, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x2c, 0x0a, 0x09, 0x6e,
  3286. 0x65, 0x77, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  3287. 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  3288. 0x08, 0x6e, 0x65, 0x77, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x23, 0x0a, 0x0d, 0x64, 0x65, 0x6c,
  3289. 0x65, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08,
  3290. 0x52, 0x0c, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x12, 0x26,
  3291. 0x0a, 0x0f, 0x6e, 0x65, 0x77, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x70, 0x61, 0x74,
  3292. 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x77, 0x50, 0x61, 0x72, 0x65,
  3293. 0x6e, 0x74, 0x50, 0x61, 0x74, 0x68, 0x12, 0x31, 0x0a, 0x15, 0x69, 0x73, 0x5f, 0x66, 0x72, 0x6f,
  3294. 0x6d, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x18,
  3295. 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4f, 0x74, 0x68,
  3296. 0x65, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x69, 0x67,
  3297. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0a, 0x73,
  3298. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x22, 0xf6, 0x02, 0x0a, 0x09, 0x46, 0x69,
  3299. 0x6c, 0x65, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x12, 0x17, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f,
  3300. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64,
  3301. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  3302. 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65,
  3303. 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x24, 0x0a, 0x0e,
  3304. 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18, 0x04,
  3305. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x54, 0x73,
  3306. 0x4e, 0x73, 0x12, 0x13, 0x0a, 0x05, 0x65, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28,
  3307. 0x09, 0x52, 0x04, 0x65, 0x54, 0x61, 0x67, 0x12, 0x24, 0x0a, 0x0e, 0x73, 0x6f, 0x75, 0x72, 0x63,
  3308. 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  3309. 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x22, 0x0a,
  3310. 0x03, 0x66, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x66, 0x69, 0x6c,
  3311. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x52, 0x03, 0x66, 0x69,
  3312. 0x64, 0x12, 0x2f, 0x0a, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x64, 0x18,
  3313. 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62,
  3314. 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x52, 0x09, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46,
  3315. 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x69, 0x70, 0x68, 0x65, 0x72, 0x5f, 0x6b, 0x65, 0x79,
  3316. 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x63, 0x69, 0x70, 0x68, 0x65, 0x72, 0x4b, 0x65,
  3317. 0x79, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
  3318. 0x65, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70,
  3319. 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x63, 0x68, 0x75,
  3320. 0x6e, 0x6b, 0x5f, 0x6d, 0x61, 0x6e, 0x69, 0x66, 0x65, 0x73, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28,
  3321. 0x08, 0x52, 0x0f, 0x69, 0x73, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x4d, 0x61, 0x6e, 0x69, 0x66, 0x65,
  3322. 0x73, 0x74, 0x22, 0x40, 0x0a, 0x11, 0x46, 0x69, 0x6c, 0x65, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x4d,
  3323. 0x61, 0x6e, 0x69, 0x66, 0x65, 0x73, 0x74, 0x12, 0x2b, 0x0a, 0x06, 0x63, 0x68, 0x75, 0x6e, 0x6b,
  3324. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f,
  3325. 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x52, 0x06, 0x63, 0x68,
  3326. 0x75, 0x6e, 0x6b, 0x73, 0x22, 0x58, 0x0a, 0x06, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x1b,
  3327. 0x0a, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  3328. 0x0d, 0x52, 0x08, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66,
  3329. 0x69, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66,
  3330. 0x69, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65,
  3331. 0x18, 0x03, 0x20, 0x01, 0x28, 0x07, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x22, 0xe8,
  3332. 0x02, 0x0a, 0x0e, 0x46, 0x75, 0x73, 0x65, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
  3333. 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01,
  3334. 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14,
  3335. 0x0a, 0x05, 0x6d, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d,
  3336. 0x74, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6d, 0x6f, 0x64,
  3337. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4d, 0x6f, 0x64,
  3338. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03,
  3339. 0x75, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x67, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  3340. 0x52, 0x03, 0x67, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x74, 0x69, 0x6d, 0x65, 0x18,
  3341. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a,
  3342. 0x04, 0x6d, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x69, 0x6d,
  3343. 0x65, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x74, 0x6c, 0x5f, 0x73, 0x65, 0x63, 0x18, 0x0a, 0x20, 0x01,
  3344. 0x28, 0x05, 0x52, 0x06, 0x74, 0x74, 0x6c, 0x53, 0x65, 0x63, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73,
  3345. 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75,
  3346. 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x67, 0x72, 0x6f, 0x75, 0x70,
  3347. 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x67, 0x72, 0x6f,
  3348. 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e,
  3349. 0x6b, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  3350. 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e, 0x6b, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x10, 0x0a,
  3351. 0x03, 0x6d, 0x64, 0x35, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6d, 0x64, 0x35, 0x12,
  3352. 0x12, 0x0a, 0x04, 0x72, 0x64, 0x65, 0x76, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x72,
  3353. 0x64, 0x65, 0x76, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x11, 0x20, 0x01,
  3354. 0x28, 0x04, 0x52, 0x05, 0x69, 0x6e, 0x6f, 0x64, 0x65, 0x22, 0x82, 0x02, 0x0a, 0x12, 0x43, 0x72,
  3355. 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3356. 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20,
  3357. 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x25,
  3358. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  3359. 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05,
  3360. 0x65, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x18,
  3361. 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x6f, 0x45, 0x78, 0x63, 0x6c, 0x12, 0x31, 0x0a, 0x15,
  3362. 0x69, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x63, 0x6c,
  3363. 0x75, 0x73, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x69, 0x73, 0x46,
  3364. 0x72, 0x6f, 0x6d, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12,
  3365. 0x1e, 0x0a, 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20,
  3366. 0x03, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12,
  3367. 0x3d, 0x0a, 0x1b, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x70, 0x61,
  3368. 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x06,
  3369. 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x73, 0x6b, 0x69, 0x70, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50,
  3370. 0x61, 0x72, 0x65, 0x6e, 0x74, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x2b,
  3371. 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73,
  3372. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01,
  3373. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0xac, 0x01, 0x0a, 0x12,
  3374. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  3375. 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18,
  3376. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79,
  3377. 0x12, 0x25, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  3378. 0x0f, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3379. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x31, 0x0a, 0x15, 0x69, 0x73, 0x5f, 0x66, 0x72,
  3380. 0x6f, 0x6d, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72,
  3381. 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4f, 0x74,
  3382. 0x68, 0x65, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x69,
  3383. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0a,
  3384. 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x22, 0x15, 0x0a, 0x13, 0x55, 0x70,
  3385. 0x64, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  3386. 0x65, 0x22, 0x80, 0x01, 0x0a, 0x14, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x54, 0x6f, 0x45, 0x6e,
  3387. 0x74, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69,
  3388. 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64,
  3389. 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x6e, 0x74, 0x72,
  3390. 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x6e,
  3391. 0x74, 0x72, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2b, 0x0a, 0x06, 0x63, 0x68, 0x75, 0x6e, 0x6b,
  3392. 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f,
  3393. 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x43, 0x68, 0x75, 0x6e, 0x6b, 0x52, 0x06, 0x63, 0x68,
  3394. 0x75, 0x6e, 0x6b, 0x73, 0x22, 0x17, 0x0a, 0x15, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x54, 0x6f,
  3395. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x98, 0x02,
  3396. 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71,
  3397. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72,
  3398. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f,
  3399. 0x72, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3400. 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x6c,
  3401. 0x65, 0x74, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c,
  3402. 0x69, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x21, 0x0a, 0x0c,
  3403. 0x69, 0x73, 0x5f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x05, 0x20, 0x01,
  3404. 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x52, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x12,
  3405. 0x34, 0x0a, 0x16, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73,
  3406. 0x69, 0x76, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52,
  3407. 0x14, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x52, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65,
  3408. 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x31, 0x0a, 0x15, 0x69, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d,
  3409. 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x18, 0x07,
  3410. 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x69, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4f, 0x74, 0x68, 0x65,
  3411. 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x69, 0x67, 0x6e,
  3412. 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x69,
  3413. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x22, 0x2b, 0x0a, 0x13, 0x44, 0x65, 0x6c, 0x65,
  3414. 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  3415. 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  3416. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0xba, 0x01, 0x0a, 0x18, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63,
  3417. 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  3418. 0x73, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x6c, 0x64, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
  3419. 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f, 0x6c, 0x64, 0x44, 0x69,
  3420. 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x6c, 0x64, 0x5f, 0x6e,
  3421. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x6c, 0x64, 0x4e, 0x61,
  3422. 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x77, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
  3423. 0x6f, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6e, 0x65, 0x77, 0x44, 0x69,
  3424. 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x6e, 0x65, 0x77, 0x5f, 0x6e,
  3425. 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6e, 0x65, 0x77, 0x4e, 0x61,
  3426. 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73,
  3427. 0x18, 0x05, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
  3428. 0x65, 0x73, 0x22, 0x1b, 0x0a, 0x19, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x52, 0x65, 0x6e, 0x61,
  3429. 0x6d, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  3430. 0xba, 0x01, 0x0a, 0x18, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65,
  3431. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a, 0x0d,
  3432. 0x6f, 0x6c, 0x64, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20,
  3433. 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f, 0x6c, 0x64, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72,
  3434. 0x79, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x6c, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  3435. 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x6c, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d,
  3436. 0x6e, 0x65, 0x77, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x03, 0x20,
  3437. 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6e, 0x65, 0x77, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72,
  3438. 0x79, 0x12, 0x19, 0x0a, 0x08, 0x6e, 0x65, 0x77, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20,
  3439. 0x01, 0x28, 0x09, 0x52, 0x07, 0x6e, 0x65, 0x77, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  3440. 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x05,
  3441. 0x52, 0x0a, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x22, 0x9a, 0x01, 0x0a,
  3442. 0x19, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x45, 0x6e, 0x74,
  3443. 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69,
  3444. 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64,
  3445. 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x4a, 0x0a, 0x12, 0x65, 0x76, 0x65, 0x6e,
  3446. 0x74, 0x5f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  3447. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3448. 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  3449. 0x6e, 0x52, 0x11, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  3450. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x13, 0x0a, 0x05, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18, 0x03, 0x20,
  3451. 0x01, 0x28, 0x03, 0x52, 0x04, 0x74, 0x73, 0x4e, 0x73, 0x22, 0x89, 0x02, 0x0a, 0x13, 0x41, 0x73,
  3452. 0x73, 0x69, 0x67, 0x6e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3453. 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  3454. 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  3455. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
  3456. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69,
  3457. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65,
  3458. 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x74, 0x6c,
  3459. 0x5f, 0x73, 0x65, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x74, 0x74, 0x6c, 0x53,
  3460. 0x65, 0x63, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65,
  3461. 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x43, 0x65, 0x6e,
  3462. 0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28,
  3463. 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x18,
  3464. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x64,
  3465. 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3466. 0x64, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b,
  3467. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73,
  3468. 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0xe1, 0x01, 0x0a, 0x14, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e,
  3469. 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x17,
  3470. 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  3471. 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  3472. 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x12, 0x0a,
  3473. 0x04, 0x61, 0x75, 0x74, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x75, 0x74,
  3474. 0x68, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  3475. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  3476. 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3477. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
  3478. 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x08, 0x20, 0x01,
  3479. 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x2e, 0x0a, 0x08, 0x6c, 0x6f, 0x63,
  3480. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x66, 0x69,
  3481. 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  3482. 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x34, 0x0a, 0x13, 0x4c, 0x6f, 0x6f,
  3483. 0x6b, 0x75, 0x70, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3484. 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01,
  3485. 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x49, 0x64, 0x73, 0x22,
  3486. 0x3d, 0x0a, 0x09, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x30, 0x0a, 0x09,
  3487. 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  3488. 0x12, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74,
  3489. 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x79,
  3490. 0x0a, 0x08, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72,
  3491. 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a,
  3492. 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3493. 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x67,
  3494. 0x72, 0x70, 0x63, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
  3495. 0x67, 0x72, 0x70, 0x63, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61,
  3496. 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64,
  3497. 0x61, 0x74, 0x61, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x22, 0xc3, 0x01, 0x0a, 0x14, 0x4c, 0x6f,
  3498. 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  3499. 0x73, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
  3500. 0x6d, 0x61, 0x70, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x66, 0x69, 0x6c, 0x65,
  3501. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
  3502. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69,
  3503. 0x6f, 0x6e, 0x73, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x6c, 0x6f, 0x63,
  3504. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x4d, 0x61, 0x70, 0x1a, 0x54, 0x0a, 0x11, 0x4c, 0x6f, 0x63,
  3505. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  3506. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
  3507. 0x12, 0x29, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  3508. 0x13, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74,
  3509. 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
  3510. 0x20, 0x0a, 0x0a, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a,
  3511. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  3512. 0x65, 0x22, 0x7b, 0x0a, 0x15, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
  3513. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x34, 0x0a, 0x16, 0x69, 0x6e,
  3514. 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x5f, 0x76, 0x6f, 0x6c,
  3515. 0x75, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x69, 0x6e, 0x63, 0x6c,
  3516. 0x75, 0x64, 0x65, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73,
  3517. 0x12, 0x2c, 0x0a, 0x12, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x65, 0x63, 0x5f, 0x76,
  3518. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x6e,
  3519. 0x63, 0x6c, 0x75, 0x64, 0x65, 0x45, 0x63, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73, 0x22, 0x50,
  3520. 0x0a, 0x16, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  3521. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x36, 0x0a, 0x0b, 0x63, 0x6f, 0x6c, 0x6c,
  3522. 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e,
  3523. 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  3524. 0x69, 0x6f, 0x6e, 0x52, 0x0b, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  3525. 0x22, 0x39, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  3526. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  3527. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  3528. 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44,
  3529. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  3530. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x84, 0x01, 0x0a, 0x11, 0x53, 0x74, 0x61, 0x74,
  3531. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a,
  3532. 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
  3533. 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  3534. 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  3535. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  3536. 0x10, 0x0a, 0x03, 0x74, 0x74, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74,
  3537. 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04,
  3538. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x6f,
  3539. 0x0a, 0x12, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x73, 0x70,
  3540. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x69,
  3541. 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x53,
  3542. 0x69, 0x7a, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x7a, 0x65,
  3543. 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x75, 0x73, 0x65, 0x64, 0x53, 0x69, 0x7a, 0x65,
  3544. 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06,
  3545. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22,
  3546. 0x46, 0x0a, 0x0b, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  3547. 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  3548. 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
  3549. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x61, 0x72,
  3550. 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x7a, 0x0a, 0x0c, 0x50, 0x69, 0x6e, 0x67, 0x52,
  3551. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74,
  3552. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  3553. 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4e, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x72,
  3554. 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20,
  3555. 0x01, 0x28, 0x03, 0x52, 0x0c, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x4e,
  3556. 0x73, 0x12, 0x20, 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6e,
  3557. 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x69, 0x6d,
  3558. 0x65, 0x4e, 0x73, 0x22, 0x1e, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x72, 0x43,
  3559. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
  3560. 0x65, 0x73, 0x74, 0x22, 0x9e, 0x03, 0x0a, 0x1d, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x72,
  3561. 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
  3562. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x61, 0x73, 0x74, 0x65, 0x72, 0x73,
  3563. 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x61, 0x73, 0x74, 0x65, 0x72, 0x73, 0x12,
  3564. 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  3565. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
  3566. 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  3567. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  3568. 0x6e, 0x12, 0x15, 0x0a, 0x06, 0x6d, 0x61, 0x78, 0x5f, 0x6d, 0x62, 0x18, 0x04, 0x20, 0x01, 0x28,
  3569. 0x0d, 0x52, 0x05, 0x6d, 0x61, 0x78, 0x4d, 0x62, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x69, 0x72, 0x5f,
  3570. 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64,
  3571. 0x69, 0x72, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x69, 0x70,
  3572. 0x68, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x63, 0x69, 0x70, 0x68, 0x65,
  3573. 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x08,
  3574. 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12,
  3575. 0x27, 0x0a, 0x0f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65,
  3576. 0x73, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63,
  3577. 0x73, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x6d, 0x65, 0x74, 0x72,
  3578. 0x69, 0x63, 0x73, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x63,
  3579. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x49,
  3580. 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x53, 0x65, 0x63, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65,
  3581. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72,
  3582. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f,
  3583. 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65,
  3584. 0x72, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x67, 0x72, 0x6f,
  3585. 0x75, 0x70, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x47,
  3586. 0x72, 0x6f, 0x75, 0x70, 0x22, 0xb7, 0x02, 0x0a, 0x18, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  3587. 0x62, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3588. 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  3589. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4e, 0x61,
  3590. 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x74, 0x68, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x69,
  3591. 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x74, 0x68, 0x50, 0x72, 0x65,
  3592. 0x66, 0x69, 0x78, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x18,
  3593. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x73, 0x12, 0x1c,
  3594. 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  3595. 0x05, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x23, 0x0a, 0x0d,
  3596. 0x70, 0x61, 0x74, 0x68, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x69, 0x78, 0x65, 0x73, 0x18, 0x06, 0x20,
  3597. 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x61, 0x74, 0x68, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x65,
  3598. 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x07,
  3599. 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x19,
  3600. 0x0a, 0x08, 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x5f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03,
  3601. 0x52, 0x07, 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x4e, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x69,
  3602. 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52,
  3603. 0x0b, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x45, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x20, 0x0a, 0x0b,
  3604. 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28,
  3605. 0x09, 0x52, 0x0b, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x22, 0x9a,
  3606. 0x01, 0x0a, 0x19, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65, 0x74, 0x61,
  3607. 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  3608. 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  3609. 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x4a, 0x0a, 0x12, 0x65, 0x76,
  3610. 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3611. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70,
  3612. 0x62, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
  3613. 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69,
  3614. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x13, 0x0a, 0x05, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18,
  3615. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x74, 0x73, 0x4e, 0x73, 0x22, 0x61, 0x0a, 0x08, 0x4c,
  3616. 0x6f, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x13, 0x0a, 0x05, 0x74, 0x73, 0x5f, 0x6e, 0x73,
  3617. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x74, 0x73, 0x4e, 0x73, 0x12, 0x2c, 0x0a, 0x12,
  3618. 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x68, 0x61,
  3619. 0x73, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74,
  3620. 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x48, 0x61, 0x73, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61,
  3621. 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x65,
  3622. 0x0a, 0x14, 0x4b, 0x65, 0x65, 0x70, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x52,
  3623. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  3624. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x67, 0x72,
  3625. 0x70, 0x63, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x67,
  3626. 0x72, 0x70, 0x63, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x73, 0x6f, 0x75,
  3627. 0x72, 0x63, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x73, 0x6f,
  3628. 0x75, 0x72, 0x63, 0x65, 0x73, 0x22, 0x17, 0x0a, 0x15, 0x4b, 0x65, 0x65, 0x70, 0x43, 0x6f, 0x6e,
  3629. 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x31,
  3630. 0x0a, 0x13, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x52, 0x65,
  3631. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
  3632. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
  3633. 0x65, 0x22, 0xcd, 0x01, 0x0a, 0x14, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x65, 0x42, 0x72, 0x6f, 0x6b,
  3634. 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6f,
  3635. 0x75, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x6f, 0x75, 0x6e, 0x64,
  3636. 0x12, 0x45, 0x0a, 0x09, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x02, 0x20,
  3637. 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4c,
  3638. 0x6f, 0x63, 0x61, 0x74, 0x65, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3639. 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x09, 0x72, 0x65,
  3640. 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x58, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x6f, 0x75,
  3641. 0x72, 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x64, 0x64, 0x72,
  3642. 0x65, 0x73, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x67, 0x72, 0x70,
  3643. 0x63, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65,
  3644. 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01,
  3645. 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e,
  3646. 0x74, 0x22, 0x20, 0x0a, 0x0c, 0x4b, 0x76, 0x47, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3647. 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03,
  3648. 0x6b, 0x65, 0x79, 0x22, 0x3b, 0x0a, 0x0d, 0x4b, 0x76, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70,
  3649. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20,
  3650. 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72,
  3651. 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72,
  3652. 0x22, 0x36, 0x0a, 0x0c, 0x4b, 0x76, 0x50, 0x75, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3653. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6b,
  3654. 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3655. 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x25, 0x0a, 0x0d, 0x4b, 0x76, 0x50, 0x75,
  3656. 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72,
  3657. 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22,
  3658. 0xbd, 0x03, 0x0a, 0x09, 0x46, 0x69, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x18, 0x0a,
  3659. 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  3660. 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x3a, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x74,
  3661. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x69, 0x6c,
  3662. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x2e,
  3663. 0x50, 0x61, 0x74, 0x68, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
  3664. 0x6f, 0x6e, 0x73, 0x1a, 0xd9, 0x02, 0x0a, 0x08, 0x50, 0x61, 0x74, 0x68, 0x43, 0x6f, 0x6e, 0x66,
  3665. 0x12, 0x27, 0x0a, 0x0f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65,
  3666. 0x66, 0x69, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x74,
  3667. 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c,
  3668. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,
  3669. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x70,
  3670. 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  3671. 0x72, 0x65, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x74,
  3672. 0x74, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x74, 0x6c, 0x12, 0x1b, 0x0a,
  3673. 0x09, 0x64, 0x69, 0x73, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  3674. 0x52, 0x08, 0x64, 0x69, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x73,
  3675. 0x79, 0x6e, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x66, 0x73, 0x79, 0x6e, 0x63,
  3676. 0x12, 0x2e, 0x0a, 0x13, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x5f, 0x67, 0x72, 0x6f, 0x77, 0x74,
  3677. 0x68, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x11, 0x76,
  3678. 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x47, 0x72, 0x6f, 0x77, 0x74, 0x68, 0x43, 0x6f, 0x75, 0x6e, 0x74,
  3679. 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x08, 0x20,
  3680. 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1f, 0x0a,
  3681. 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01,
  3682. 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x12,
  3683. 0x0a, 0x04, 0x72, 0x61, 0x63, 0x6b, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x61,
  3684. 0x63, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18,
  3685. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x4e, 0x6f, 0x64, 0x65, 0x22,
  3686. 0x5a, 0x0a, 0x26, 0x43, 0x61, 0x63, 0x68, 0x65, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4f, 0x62,
  3687. 0x6a, 0x65, 0x63, 0x74, 0x54, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x6c, 0x75, 0x73, 0x74,
  3688. 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x72,
  3689. 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x64, 0x69,
  3690. 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  3691. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x50, 0x0a, 0x27, 0x43,
  3692. 0x61, 0x63, 0x68, 0x65, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74,
  3693. 0x54, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65,
  3694. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x18,
  3695. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62,
  3696. 0x2e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x32, 0xd9, 0x0d,
  3697. 0x0a, 0x0c, 0x53, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x72, 0x12, 0x67,
  3698. 0x0a, 0x14, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72,
  3699. 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x25, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70,
  3700. 0x62, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72,
  3701. 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e,
  3702. 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x44,
  3703. 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73,
  3704. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x45,
  3705. 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, 0x1c, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70,
  3706. 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71,
  3707. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3708. 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3709. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x4c, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74,
  3710. 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1c, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70,
  3711. 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71,
  3712. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3713. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3714. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x45,
  3715. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1c, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3716. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
  3717. 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x55, 0x70,
  3718. 0x64, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  3719. 0x65, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x0d, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x54, 0x6f, 0x45,
  3720. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1e, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3721. 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x54, 0x6f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71,
  3722. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3723. 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x54, 0x6f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73,
  3724. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74,
  3725. 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1c, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70,
  3726. 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71,
  3727. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3728. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3729. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x11, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x52,
  3730. 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x22, 0x2e, 0x66, 0x69, 0x6c,
  3731. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63, 0x52, 0x65, 0x6e, 0x61,
  3732. 0x6d, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23,
  3733. 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x74, 0x6f, 0x6d, 0x69, 0x63,
  3734. 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3735. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x11, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52,
  3736. 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x22, 0x2e, 0x66, 0x69, 0x6c,
  3737. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x6e, 0x61,
  3738. 0x6d, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23,
  3739. 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
  3740. 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3741. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x4f, 0x0a, 0x0c, 0x41, 0x73, 0x73, 0x69, 0x67,
  3742. 0x6e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x1d, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f,
  3743. 0x70, 0x62, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52,
  3744. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70,
  3745. 0x62, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x65,
  3746. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x0c, 0x4c, 0x6f, 0x6f, 0x6b,
  3747. 0x75, 0x70, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12, 0x1d, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72,
  3748. 0x5f, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
  3749. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f,
  3750. 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52,
  3751. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x0e, 0x43, 0x6f, 0x6c,
  3752. 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1f, 0x2e, 0x66, 0x69,
  3753. 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
  3754. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x66,
  3755. 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  3756. 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
  3757. 0x12, 0x5b, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  3758. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3759. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  3760. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f,
  3761. 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  3762. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x49, 0x0a,
  3763. 0x0a, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x12, 0x1b, 0x2e, 0x66, 0x69,
  3764. 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  3765. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72,
  3766. 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65,
  3767. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x37, 0x0a, 0x04, 0x50, 0x69, 0x6e, 0x67,
  3768. 0x12, 0x15, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67,
  3769. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f,
  3770. 0x70, 0x62, 0x2e, 0x50, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  3771. 0x00, 0x12, 0x6a, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e,
  3772. 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x2e, 0x66, 0x69, 0x6c,
  3773. 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x72, 0x43, 0x6f,
  3774. 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  3775. 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x47, 0x65,
  3776. 0x74, 0x46, 0x69, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74,
  3777. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a,
  3778. 0x11, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61,
  3779. 0x74, 0x61, 0x12, 0x22, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x75,
  3780. 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52,
  3781. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70,
  3782. 0x62, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64,
  3783. 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12,
  3784. 0x65, 0x0a, 0x16, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4c, 0x6f, 0x63, 0x61,
  3785. 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x22, 0x2e, 0x66, 0x69, 0x6c, 0x65,
  3786. 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x65,
  3787. 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e,
  3788. 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  3789. 0x62, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  3790. 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x3a, 0x0a, 0x05, 0x4b, 0x76, 0x47, 0x65, 0x74, 0x12,
  3791. 0x16, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4b, 0x76, 0x47, 0x65, 0x74,
  3792. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f,
  3793. 0x70, 0x62, 0x2e, 0x4b, 0x76, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  3794. 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x05, 0x4b, 0x76, 0x50, 0x75, 0x74, 0x12, 0x16, 0x2e, 0x66, 0x69,
  3795. 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4b, 0x76, 0x50, 0x75, 0x74, 0x52, 0x65, 0x71, 0x75,
  3796. 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x4b,
  3797. 0x76, 0x50, 0x75, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x88,
  3798. 0x01, 0x0a, 0x1f, 0x43, 0x61, 0x63, 0x68, 0x65, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4f, 0x62,
  3799. 0x6a, 0x65, 0x63, 0x74, 0x54, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x6c, 0x75, 0x73, 0x74,
  3800. 0x65, 0x72, 0x12, 0x30, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x61,
  3801. 0x63, 0x68, 0x65, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x54,
  3802. 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71,
  3803. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x2e,
  3804. 0x43, 0x61, 0x63, 0x68, 0x65, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x4f, 0x62, 0x6a, 0x65, 0x63,
  3805. 0x74, 0x54, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52,
  3806. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x4f, 0x0a, 0x10, 0x73, 0x65, 0x61,
  3807. 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2e, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x42, 0x0a, 0x46,
  3808. 0x69, 0x6c, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x68, 0x75,
  3809. 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f,
  3810. 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70,
  3811. 0x62, 0x2f, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
  3812. 0x6f, 0x33,
  3813. }
  3814. var (
  3815. file_filer_proto_rawDescOnce sync.Once
  3816. file_filer_proto_rawDescData = file_filer_proto_rawDesc
  3817. )
  3818. func file_filer_proto_rawDescGZIP() []byte {
  3819. file_filer_proto_rawDescOnce.Do(func() {
  3820. file_filer_proto_rawDescData = protoimpl.X.CompressGZIP(file_filer_proto_rawDescData)
  3821. })
  3822. return file_filer_proto_rawDescData
  3823. }
  3824. var file_filer_proto_msgTypes = make([]protoimpl.MessageInfo, 59)
  3825. var file_filer_proto_goTypes = []interface{}{
  3826. (*LookupDirectoryEntryRequest)(nil), // 0: filer_pb.LookupDirectoryEntryRequest
  3827. (*LookupDirectoryEntryResponse)(nil), // 1: filer_pb.LookupDirectoryEntryResponse
  3828. (*ListEntriesRequest)(nil), // 2: filer_pb.ListEntriesRequest
  3829. (*ListEntriesResponse)(nil), // 3: filer_pb.ListEntriesResponse
  3830. (*RemoteEntry)(nil), // 4: filer_pb.RemoteEntry
  3831. (*Entry)(nil), // 5: filer_pb.Entry
  3832. (*FullEntry)(nil), // 6: filer_pb.FullEntry
  3833. (*EventNotification)(nil), // 7: filer_pb.EventNotification
  3834. (*FileChunk)(nil), // 8: filer_pb.FileChunk
  3835. (*FileChunkManifest)(nil), // 9: filer_pb.FileChunkManifest
  3836. (*FileId)(nil), // 10: filer_pb.FileId
  3837. (*FuseAttributes)(nil), // 11: filer_pb.FuseAttributes
  3838. (*CreateEntryRequest)(nil), // 12: filer_pb.CreateEntryRequest
  3839. (*CreateEntryResponse)(nil), // 13: filer_pb.CreateEntryResponse
  3840. (*UpdateEntryRequest)(nil), // 14: filer_pb.UpdateEntryRequest
  3841. (*UpdateEntryResponse)(nil), // 15: filer_pb.UpdateEntryResponse
  3842. (*AppendToEntryRequest)(nil), // 16: filer_pb.AppendToEntryRequest
  3843. (*AppendToEntryResponse)(nil), // 17: filer_pb.AppendToEntryResponse
  3844. (*DeleteEntryRequest)(nil), // 18: filer_pb.DeleteEntryRequest
  3845. (*DeleteEntryResponse)(nil), // 19: filer_pb.DeleteEntryResponse
  3846. (*AtomicRenameEntryRequest)(nil), // 20: filer_pb.AtomicRenameEntryRequest
  3847. (*AtomicRenameEntryResponse)(nil), // 21: filer_pb.AtomicRenameEntryResponse
  3848. (*StreamRenameEntryRequest)(nil), // 22: filer_pb.StreamRenameEntryRequest
  3849. (*StreamRenameEntryResponse)(nil), // 23: filer_pb.StreamRenameEntryResponse
  3850. (*AssignVolumeRequest)(nil), // 24: filer_pb.AssignVolumeRequest
  3851. (*AssignVolumeResponse)(nil), // 25: filer_pb.AssignVolumeResponse
  3852. (*LookupVolumeRequest)(nil), // 26: filer_pb.LookupVolumeRequest
  3853. (*Locations)(nil), // 27: filer_pb.Locations
  3854. (*Location)(nil), // 28: filer_pb.Location
  3855. (*LookupVolumeResponse)(nil), // 29: filer_pb.LookupVolumeResponse
  3856. (*Collection)(nil), // 30: filer_pb.Collection
  3857. (*CollectionListRequest)(nil), // 31: filer_pb.CollectionListRequest
  3858. (*CollectionListResponse)(nil), // 32: filer_pb.CollectionListResponse
  3859. (*DeleteCollectionRequest)(nil), // 33: filer_pb.DeleteCollectionRequest
  3860. (*DeleteCollectionResponse)(nil), // 34: filer_pb.DeleteCollectionResponse
  3861. (*StatisticsRequest)(nil), // 35: filer_pb.StatisticsRequest
  3862. (*StatisticsResponse)(nil), // 36: filer_pb.StatisticsResponse
  3863. (*PingRequest)(nil), // 37: filer_pb.PingRequest
  3864. (*PingResponse)(nil), // 38: filer_pb.PingResponse
  3865. (*GetFilerConfigurationRequest)(nil), // 39: filer_pb.GetFilerConfigurationRequest
  3866. (*GetFilerConfigurationResponse)(nil), // 40: filer_pb.GetFilerConfigurationResponse
  3867. (*SubscribeMetadataRequest)(nil), // 41: filer_pb.SubscribeMetadataRequest
  3868. (*SubscribeMetadataResponse)(nil), // 42: filer_pb.SubscribeMetadataResponse
  3869. (*LogEntry)(nil), // 43: filer_pb.LogEntry
  3870. (*KeepConnectedRequest)(nil), // 44: filer_pb.KeepConnectedRequest
  3871. (*KeepConnectedResponse)(nil), // 45: filer_pb.KeepConnectedResponse
  3872. (*LocateBrokerRequest)(nil), // 46: filer_pb.LocateBrokerRequest
  3873. (*LocateBrokerResponse)(nil), // 47: filer_pb.LocateBrokerResponse
  3874. (*KvGetRequest)(nil), // 48: filer_pb.KvGetRequest
  3875. (*KvGetResponse)(nil), // 49: filer_pb.KvGetResponse
  3876. (*KvPutRequest)(nil), // 50: filer_pb.KvPutRequest
  3877. (*KvPutResponse)(nil), // 51: filer_pb.KvPutResponse
  3878. (*FilerConf)(nil), // 52: filer_pb.FilerConf
  3879. (*CacheRemoteObjectToLocalClusterRequest)(nil), // 53: filer_pb.CacheRemoteObjectToLocalClusterRequest
  3880. (*CacheRemoteObjectToLocalClusterResponse)(nil), // 54: filer_pb.CacheRemoteObjectToLocalClusterResponse
  3881. nil, // 55: filer_pb.Entry.ExtendedEntry
  3882. nil, // 56: filer_pb.LookupVolumeResponse.LocationsMapEntry
  3883. (*LocateBrokerResponse_Resource)(nil), // 57: filer_pb.LocateBrokerResponse.Resource
  3884. (*FilerConf_PathConf)(nil), // 58: filer_pb.FilerConf.PathConf
  3885. }
  3886. var file_filer_proto_depIdxs = []int32{
  3887. 5, // 0: filer_pb.LookupDirectoryEntryResponse.entry:type_name -> filer_pb.Entry
  3888. 5, // 1: filer_pb.ListEntriesResponse.entry:type_name -> filer_pb.Entry
  3889. 8, // 2: filer_pb.Entry.chunks:type_name -> filer_pb.FileChunk
  3890. 11, // 3: filer_pb.Entry.attributes:type_name -> filer_pb.FuseAttributes
  3891. 55, // 4: filer_pb.Entry.extended:type_name -> filer_pb.Entry.ExtendedEntry
  3892. 4, // 5: filer_pb.Entry.remote_entry:type_name -> filer_pb.RemoteEntry
  3893. 5, // 6: filer_pb.FullEntry.entry:type_name -> filer_pb.Entry
  3894. 5, // 7: filer_pb.EventNotification.old_entry:type_name -> filer_pb.Entry
  3895. 5, // 8: filer_pb.EventNotification.new_entry:type_name -> filer_pb.Entry
  3896. 10, // 9: filer_pb.FileChunk.fid:type_name -> filer_pb.FileId
  3897. 10, // 10: filer_pb.FileChunk.source_fid:type_name -> filer_pb.FileId
  3898. 8, // 11: filer_pb.FileChunkManifest.chunks:type_name -> filer_pb.FileChunk
  3899. 5, // 12: filer_pb.CreateEntryRequest.entry:type_name -> filer_pb.Entry
  3900. 5, // 13: filer_pb.UpdateEntryRequest.entry:type_name -> filer_pb.Entry
  3901. 8, // 14: filer_pb.AppendToEntryRequest.chunks:type_name -> filer_pb.FileChunk
  3902. 7, // 15: filer_pb.StreamRenameEntryResponse.event_notification:type_name -> filer_pb.EventNotification
  3903. 28, // 16: filer_pb.AssignVolumeResponse.location:type_name -> filer_pb.Location
  3904. 28, // 17: filer_pb.Locations.locations:type_name -> filer_pb.Location
  3905. 56, // 18: filer_pb.LookupVolumeResponse.locations_map:type_name -> filer_pb.LookupVolumeResponse.LocationsMapEntry
  3906. 30, // 19: filer_pb.CollectionListResponse.collections:type_name -> filer_pb.Collection
  3907. 7, // 20: filer_pb.SubscribeMetadataResponse.event_notification:type_name -> filer_pb.EventNotification
  3908. 57, // 21: filer_pb.LocateBrokerResponse.resources:type_name -> filer_pb.LocateBrokerResponse.Resource
  3909. 58, // 22: filer_pb.FilerConf.locations:type_name -> filer_pb.FilerConf.PathConf
  3910. 5, // 23: filer_pb.CacheRemoteObjectToLocalClusterResponse.entry:type_name -> filer_pb.Entry
  3911. 27, // 24: filer_pb.LookupVolumeResponse.LocationsMapEntry.value:type_name -> filer_pb.Locations
  3912. 0, // 25: filer_pb.SeaweedFiler.LookupDirectoryEntry:input_type -> filer_pb.LookupDirectoryEntryRequest
  3913. 2, // 26: filer_pb.SeaweedFiler.ListEntries:input_type -> filer_pb.ListEntriesRequest
  3914. 12, // 27: filer_pb.SeaweedFiler.CreateEntry:input_type -> filer_pb.CreateEntryRequest
  3915. 14, // 28: filer_pb.SeaweedFiler.UpdateEntry:input_type -> filer_pb.UpdateEntryRequest
  3916. 16, // 29: filer_pb.SeaweedFiler.AppendToEntry:input_type -> filer_pb.AppendToEntryRequest
  3917. 18, // 30: filer_pb.SeaweedFiler.DeleteEntry:input_type -> filer_pb.DeleteEntryRequest
  3918. 20, // 31: filer_pb.SeaweedFiler.AtomicRenameEntry:input_type -> filer_pb.AtomicRenameEntryRequest
  3919. 22, // 32: filer_pb.SeaweedFiler.StreamRenameEntry:input_type -> filer_pb.StreamRenameEntryRequest
  3920. 24, // 33: filer_pb.SeaweedFiler.AssignVolume:input_type -> filer_pb.AssignVolumeRequest
  3921. 26, // 34: filer_pb.SeaweedFiler.LookupVolume:input_type -> filer_pb.LookupVolumeRequest
  3922. 31, // 35: filer_pb.SeaweedFiler.CollectionList:input_type -> filer_pb.CollectionListRequest
  3923. 33, // 36: filer_pb.SeaweedFiler.DeleteCollection:input_type -> filer_pb.DeleteCollectionRequest
  3924. 35, // 37: filer_pb.SeaweedFiler.Statistics:input_type -> filer_pb.StatisticsRequest
  3925. 37, // 38: filer_pb.SeaweedFiler.Ping:input_type -> filer_pb.PingRequest
  3926. 39, // 39: filer_pb.SeaweedFiler.GetFilerConfiguration:input_type -> filer_pb.GetFilerConfigurationRequest
  3927. 41, // 40: filer_pb.SeaweedFiler.SubscribeMetadata:input_type -> filer_pb.SubscribeMetadataRequest
  3928. 41, // 41: filer_pb.SeaweedFiler.SubscribeLocalMetadata:input_type -> filer_pb.SubscribeMetadataRequest
  3929. 48, // 42: filer_pb.SeaweedFiler.KvGet:input_type -> filer_pb.KvGetRequest
  3930. 50, // 43: filer_pb.SeaweedFiler.KvPut:input_type -> filer_pb.KvPutRequest
  3931. 53, // 44: filer_pb.SeaweedFiler.CacheRemoteObjectToLocalCluster:input_type -> filer_pb.CacheRemoteObjectToLocalClusterRequest
  3932. 1, // 45: filer_pb.SeaweedFiler.LookupDirectoryEntry:output_type -> filer_pb.LookupDirectoryEntryResponse
  3933. 3, // 46: filer_pb.SeaweedFiler.ListEntries:output_type -> filer_pb.ListEntriesResponse
  3934. 13, // 47: filer_pb.SeaweedFiler.CreateEntry:output_type -> filer_pb.CreateEntryResponse
  3935. 15, // 48: filer_pb.SeaweedFiler.UpdateEntry:output_type -> filer_pb.UpdateEntryResponse
  3936. 17, // 49: filer_pb.SeaweedFiler.AppendToEntry:output_type -> filer_pb.AppendToEntryResponse
  3937. 19, // 50: filer_pb.SeaweedFiler.DeleteEntry:output_type -> filer_pb.DeleteEntryResponse
  3938. 21, // 51: filer_pb.SeaweedFiler.AtomicRenameEntry:output_type -> filer_pb.AtomicRenameEntryResponse
  3939. 23, // 52: filer_pb.SeaweedFiler.StreamRenameEntry:output_type -> filer_pb.StreamRenameEntryResponse
  3940. 25, // 53: filer_pb.SeaweedFiler.AssignVolume:output_type -> filer_pb.AssignVolumeResponse
  3941. 29, // 54: filer_pb.SeaweedFiler.LookupVolume:output_type -> filer_pb.LookupVolumeResponse
  3942. 32, // 55: filer_pb.SeaweedFiler.CollectionList:output_type -> filer_pb.CollectionListResponse
  3943. 34, // 56: filer_pb.SeaweedFiler.DeleteCollection:output_type -> filer_pb.DeleteCollectionResponse
  3944. 36, // 57: filer_pb.SeaweedFiler.Statistics:output_type -> filer_pb.StatisticsResponse
  3945. 38, // 58: filer_pb.SeaweedFiler.Ping:output_type -> filer_pb.PingResponse
  3946. 40, // 59: filer_pb.SeaweedFiler.GetFilerConfiguration:output_type -> filer_pb.GetFilerConfigurationResponse
  3947. 42, // 60: filer_pb.SeaweedFiler.SubscribeMetadata:output_type -> filer_pb.SubscribeMetadataResponse
  3948. 42, // 61: filer_pb.SeaweedFiler.SubscribeLocalMetadata:output_type -> filer_pb.SubscribeMetadataResponse
  3949. 49, // 62: filer_pb.SeaweedFiler.KvGet:output_type -> filer_pb.KvGetResponse
  3950. 51, // 63: filer_pb.SeaweedFiler.KvPut:output_type -> filer_pb.KvPutResponse
  3951. 54, // 64: filer_pb.SeaweedFiler.CacheRemoteObjectToLocalCluster:output_type -> filer_pb.CacheRemoteObjectToLocalClusterResponse
  3952. 45, // [45:65] is the sub-list for method output_type
  3953. 25, // [25:45] is the sub-list for method input_type
  3954. 25, // [25:25] is the sub-list for extension type_name
  3955. 25, // [25:25] is the sub-list for extension extendee
  3956. 0, // [0:25] is the sub-list for field type_name
  3957. }
  3958. func init() { file_filer_proto_init() }
  3959. func file_filer_proto_init() {
  3960. if File_filer_proto != nil {
  3961. return
  3962. }
  3963. if !protoimpl.UnsafeEnabled {
  3964. file_filer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3965. switch v := v.(*LookupDirectoryEntryRequest); i {
  3966. case 0:
  3967. return &v.state
  3968. case 1:
  3969. return &v.sizeCache
  3970. case 2:
  3971. return &v.unknownFields
  3972. default:
  3973. return nil
  3974. }
  3975. }
  3976. file_filer_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3977. switch v := v.(*LookupDirectoryEntryResponse); i {
  3978. case 0:
  3979. return &v.state
  3980. case 1:
  3981. return &v.sizeCache
  3982. case 2:
  3983. return &v.unknownFields
  3984. default:
  3985. return nil
  3986. }
  3987. }
  3988. file_filer_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3989. switch v := v.(*ListEntriesRequest); i {
  3990. case 0:
  3991. return &v.state
  3992. case 1:
  3993. return &v.sizeCache
  3994. case 2:
  3995. return &v.unknownFields
  3996. default:
  3997. return nil
  3998. }
  3999. }
  4000. file_filer_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4001. switch v := v.(*ListEntriesResponse); i {
  4002. case 0:
  4003. return &v.state
  4004. case 1:
  4005. return &v.sizeCache
  4006. case 2:
  4007. return &v.unknownFields
  4008. default:
  4009. return nil
  4010. }
  4011. }
  4012. file_filer_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4013. switch v := v.(*RemoteEntry); i {
  4014. case 0:
  4015. return &v.state
  4016. case 1:
  4017. return &v.sizeCache
  4018. case 2:
  4019. return &v.unknownFields
  4020. default:
  4021. return nil
  4022. }
  4023. }
  4024. file_filer_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4025. switch v := v.(*Entry); i {
  4026. case 0:
  4027. return &v.state
  4028. case 1:
  4029. return &v.sizeCache
  4030. case 2:
  4031. return &v.unknownFields
  4032. default:
  4033. return nil
  4034. }
  4035. }
  4036. file_filer_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4037. switch v := v.(*FullEntry); i {
  4038. case 0:
  4039. return &v.state
  4040. case 1:
  4041. return &v.sizeCache
  4042. case 2:
  4043. return &v.unknownFields
  4044. default:
  4045. return nil
  4046. }
  4047. }
  4048. file_filer_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4049. switch v := v.(*EventNotification); i {
  4050. case 0:
  4051. return &v.state
  4052. case 1:
  4053. return &v.sizeCache
  4054. case 2:
  4055. return &v.unknownFields
  4056. default:
  4057. return nil
  4058. }
  4059. }
  4060. file_filer_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4061. switch v := v.(*FileChunk); i {
  4062. case 0:
  4063. return &v.state
  4064. case 1:
  4065. return &v.sizeCache
  4066. case 2:
  4067. return &v.unknownFields
  4068. default:
  4069. return nil
  4070. }
  4071. }
  4072. file_filer_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4073. switch v := v.(*FileChunkManifest); i {
  4074. case 0:
  4075. return &v.state
  4076. case 1:
  4077. return &v.sizeCache
  4078. case 2:
  4079. return &v.unknownFields
  4080. default:
  4081. return nil
  4082. }
  4083. }
  4084. file_filer_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4085. switch v := v.(*FileId); i {
  4086. case 0:
  4087. return &v.state
  4088. case 1:
  4089. return &v.sizeCache
  4090. case 2:
  4091. return &v.unknownFields
  4092. default:
  4093. return nil
  4094. }
  4095. }
  4096. file_filer_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4097. switch v := v.(*FuseAttributes); i {
  4098. case 0:
  4099. return &v.state
  4100. case 1:
  4101. return &v.sizeCache
  4102. case 2:
  4103. return &v.unknownFields
  4104. default:
  4105. return nil
  4106. }
  4107. }
  4108. file_filer_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4109. switch v := v.(*CreateEntryRequest); i {
  4110. case 0:
  4111. return &v.state
  4112. case 1:
  4113. return &v.sizeCache
  4114. case 2:
  4115. return &v.unknownFields
  4116. default:
  4117. return nil
  4118. }
  4119. }
  4120. file_filer_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4121. switch v := v.(*CreateEntryResponse); i {
  4122. case 0:
  4123. return &v.state
  4124. case 1:
  4125. return &v.sizeCache
  4126. case 2:
  4127. return &v.unknownFields
  4128. default:
  4129. return nil
  4130. }
  4131. }
  4132. file_filer_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4133. switch v := v.(*UpdateEntryRequest); i {
  4134. case 0:
  4135. return &v.state
  4136. case 1:
  4137. return &v.sizeCache
  4138. case 2:
  4139. return &v.unknownFields
  4140. default:
  4141. return nil
  4142. }
  4143. }
  4144. file_filer_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4145. switch v := v.(*UpdateEntryResponse); i {
  4146. case 0:
  4147. return &v.state
  4148. case 1:
  4149. return &v.sizeCache
  4150. case 2:
  4151. return &v.unknownFields
  4152. default:
  4153. return nil
  4154. }
  4155. }
  4156. file_filer_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4157. switch v := v.(*AppendToEntryRequest); i {
  4158. case 0:
  4159. return &v.state
  4160. case 1:
  4161. return &v.sizeCache
  4162. case 2:
  4163. return &v.unknownFields
  4164. default:
  4165. return nil
  4166. }
  4167. }
  4168. file_filer_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4169. switch v := v.(*AppendToEntryResponse); i {
  4170. case 0:
  4171. return &v.state
  4172. case 1:
  4173. return &v.sizeCache
  4174. case 2:
  4175. return &v.unknownFields
  4176. default:
  4177. return nil
  4178. }
  4179. }
  4180. file_filer_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4181. switch v := v.(*DeleteEntryRequest); i {
  4182. case 0:
  4183. return &v.state
  4184. case 1:
  4185. return &v.sizeCache
  4186. case 2:
  4187. return &v.unknownFields
  4188. default:
  4189. return nil
  4190. }
  4191. }
  4192. file_filer_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4193. switch v := v.(*DeleteEntryResponse); i {
  4194. case 0:
  4195. return &v.state
  4196. case 1:
  4197. return &v.sizeCache
  4198. case 2:
  4199. return &v.unknownFields
  4200. default:
  4201. return nil
  4202. }
  4203. }
  4204. file_filer_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4205. switch v := v.(*AtomicRenameEntryRequest); i {
  4206. case 0:
  4207. return &v.state
  4208. case 1:
  4209. return &v.sizeCache
  4210. case 2:
  4211. return &v.unknownFields
  4212. default:
  4213. return nil
  4214. }
  4215. }
  4216. file_filer_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  4217. switch v := v.(*AtomicRenameEntryResponse); i {
  4218. case 0:
  4219. return &v.state
  4220. case 1:
  4221. return &v.sizeCache
  4222. case 2:
  4223. return &v.unknownFields
  4224. default:
  4225. return nil
  4226. }
  4227. }
  4228. file_filer_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  4229. switch v := v.(*StreamRenameEntryRequest); i {
  4230. case 0:
  4231. return &v.state
  4232. case 1:
  4233. return &v.sizeCache
  4234. case 2:
  4235. return &v.unknownFields
  4236. default:
  4237. return nil
  4238. }
  4239. }
  4240. file_filer_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  4241. switch v := v.(*StreamRenameEntryResponse); i {
  4242. case 0:
  4243. return &v.state
  4244. case 1:
  4245. return &v.sizeCache
  4246. case 2:
  4247. return &v.unknownFields
  4248. default:
  4249. return nil
  4250. }
  4251. }
  4252. file_filer_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  4253. switch v := v.(*AssignVolumeRequest); i {
  4254. case 0:
  4255. return &v.state
  4256. case 1:
  4257. return &v.sizeCache
  4258. case 2:
  4259. return &v.unknownFields
  4260. default:
  4261. return nil
  4262. }
  4263. }
  4264. file_filer_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  4265. switch v := v.(*AssignVolumeResponse); i {
  4266. case 0:
  4267. return &v.state
  4268. case 1:
  4269. return &v.sizeCache
  4270. case 2:
  4271. return &v.unknownFields
  4272. default:
  4273. return nil
  4274. }
  4275. }
  4276. file_filer_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  4277. switch v := v.(*LookupVolumeRequest); i {
  4278. case 0:
  4279. return &v.state
  4280. case 1:
  4281. return &v.sizeCache
  4282. case 2:
  4283. return &v.unknownFields
  4284. default:
  4285. return nil
  4286. }
  4287. }
  4288. file_filer_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  4289. switch v := v.(*Locations); i {
  4290. case 0:
  4291. return &v.state
  4292. case 1:
  4293. return &v.sizeCache
  4294. case 2:
  4295. return &v.unknownFields
  4296. default:
  4297. return nil
  4298. }
  4299. }
  4300. file_filer_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  4301. switch v := v.(*Location); i {
  4302. case 0:
  4303. return &v.state
  4304. case 1:
  4305. return &v.sizeCache
  4306. case 2:
  4307. return &v.unknownFields
  4308. default:
  4309. return nil
  4310. }
  4311. }
  4312. file_filer_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4313. switch v := v.(*LookupVolumeResponse); i {
  4314. case 0:
  4315. return &v.state
  4316. case 1:
  4317. return &v.sizeCache
  4318. case 2:
  4319. return &v.unknownFields
  4320. default:
  4321. return nil
  4322. }
  4323. }
  4324. file_filer_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4325. switch v := v.(*Collection); i {
  4326. case 0:
  4327. return &v.state
  4328. case 1:
  4329. return &v.sizeCache
  4330. case 2:
  4331. return &v.unknownFields
  4332. default:
  4333. return nil
  4334. }
  4335. }
  4336. file_filer_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4337. switch v := v.(*CollectionListRequest); i {
  4338. case 0:
  4339. return &v.state
  4340. case 1:
  4341. return &v.sizeCache
  4342. case 2:
  4343. return &v.unknownFields
  4344. default:
  4345. return nil
  4346. }
  4347. }
  4348. file_filer_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4349. switch v := v.(*CollectionListResponse); i {
  4350. case 0:
  4351. return &v.state
  4352. case 1:
  4353. return &v.sizeCache
  4354. case 2:
  4355. return &v.unknownFields
  4356. default:
  4357. return nil
  4358. }
  4359. }
  4360. file_filer_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4361. switch v := v.(*DeleteCollectionRequest); i {
  4362. case 0:
  4363. return &v.state
  4364. case 1:
  4365. return &v.sizeCache
  4366. case 2:
  4367. return &v.unknownFields
  4368. default:
  4369. return nil
  4370. }
  4371. }
  4372. file_filer_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4373. switch v := v.(*DeleteCollectionResponse); i {
  4374. case 0:
  4375. return &v.state
  4376. case 1:
  4377. return &v.sizeCache
  4378. case 2:
  4379. return &v.unknownFields
  4380. default:
  4381. return nil
  4382. }
  4383. }
  4384. file_filer_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  4385. switch v := v.(*StatisticsRequest); i {
  4386. case 0:
  4387. return &v.state
  4388. case 1:
  4389. return &v.sizeCache
  4390. case 2:
  4391. return &v.unknownFields
  4392. default:
  4393. return nil
  4394. }
  4395. }
  4396. file_filer_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  4397. switch v := v.(*StatisticsResponse); i {
  4398. case 0:
  4399. return &v.state
  4400. case 1:
  4401. return &v.sizeCache
  4402. case 2:
  4403. return &v.unknownFields
  4404. default:
  4405. return nil
  4406. }
  4407. }
  4408. file_filer_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  4409. switch v := v.(*PingRequest); i {
  4410. case 0:
  4411. return &v.state
  4412. case 1:
  4413. return &v.sizeCache
  4414. case 2:
  4415. return &v.unknownFields
  4416. default:
  4417. return nil
  4418. }
  4419. }
  4420. file_filer_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  4421. switch v := v.(*PingResponse); i {
  4422. case 0:
  4423. return &v.state
  4424. case 1:
  4425. return &v.sizeCache
  4426. case 2:
  4427. return &v.unknownFields
  4428. default:
  4429. return nil
  4430. }
  4431. }
  4432. file_filer_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4433. switch v := v.(*GetFilerConfigurationRequest); i {
  4434. case 0:
  4435. return &v.state
  4436. case 1:
  4437. return &v.sizeCache
  4438. case 2:
  4439. return &v.unknownFields
  4440. default:
  4441. return nil
  4442. }
  4443. }
  4444. file_filer_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4445. switch v := v.(*GetFilerConfigurationResponse); i {
  4446. case 0:
  4447. return &v.state
  4448. case 1:
  4449. return &v.sizeCache
  4450. case 2:
  4451. return &v.unknownFields
  4452. default:
  4453. return nil
  4454. }
  4455. }
  4456. file_filer_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4457. switch v := v.(*SubscribeMetadataRequest); i {
  4458. case 0:
  4459. return &v.state
  4460. case 1:
  4461. return &v.sizeCache
  4462. case 2:
  4463. return &v.unknownFields
  4464. default:
  4465. return nil
  4466. }
  4467. }
  4468. file_filer_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  4469. switch v := v.(*SubscribeMetadataResponse); i {
  4470. case 0:
  4471. return &v.state
  4472. case 1:
  4473. return &v.sizeCache
  4474. case 2:
  4475. return &v.unknownFields
  4476. default:
  4477. return nil
  4478. }
  4479. }
  4480. file_filer_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  4481. switch v := v.(*LogEntry); i {
  4482. case 0:
  4483. return &v.state
  4484. case 1:
  4485. return &v.sizeCache
  4486. case 2:
  4487. return &v.unknownFields
  4488. default:
  4489. return nil
  4490. }
  4491. }
  4492. file_filer_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  4493. switch v := v.(*KeepConnectedRequest); i {
  4494. case 0:
  4495. return &v.state
  4496. case 1:
  4497. return &v.sizeCache
  4498. case 2:
  4499. return &v.unknownFields
  4500. default:
  4501. return nil
  4502. }
  4503. }
  4504. file_filer_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  4505. switch v := v.(*KeepConnectedResponse); i {
  4506. case 0:
  4507. return &v.state
  4508. case 1:
  4509. return &v.sizeCache
  4510. case 2:
  4511. return &v.unknownFields
  4512. default:
  4513. return nil
  4514. }
  4515. }
  4516. file_filer_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  4517. switch v := v.(*LocateBrokerRequest); i {
  4518. case 0:
  4519. return &v.state
  4520. case 1:
  4521. return &v.sizeCache
  4522. case 2:
  4523. return &v.unknownFields
  4524. default:
  4525. return nil
  4526. }
  4527. }
  4528. file_filer_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  4529. switch v := v.(*LocateBrokerResponse); i {
  4530. case 0:
  4531. return &v.state
  4532. case 1:
  4533. return &v.sizeCache
  4534. case 2:
  4535. return &v.unknownFields
  4536. default:
  4537. return nil
  4538. }
  4539. }
  4540. file_filer_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  4541. switch v := v.(*KvGetRequest); i {
  4542. case 0:
  4543. return &v.state
  4544. case 1:
  4545. return &v.sizeCache
  4546. case 2:
  4547. return &v.unknownFields
  4548. default:
  4549. return nil
  4550. }
  4551. }
  4552. file_filer_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  4553. switch v := v.(*KvGetResponse); i {
  4554. case 0:
  4555. return &v.state
  4556. case 1:
  4557. return &v.sizeCache
  4558. case 2:
  4559. return &v.unknownFields
  4560. default:
  4561. return nil
  4562. }
  4563. }
  4564. file_filer_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  4565. switch v := v.(*KvPutRequest); i {
  4566. case 0:
  4567. return &v.state
  4568. case 1:
  4569. return &v.sizeCache
  4570. case 2:
  4571. return &v.unknownFields
  4572. default:
  4573. return nil
  4574. }
  4575. }
  4576. file_filer_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  4577. switch v := v.(*KvPutResponse); i {
  4578. case 0:
  4579. return &v.state
  4580. case 1:
  4581. return &v.sizeCache
  4582. case 2:
  4583. return &v.unknownFields
  4584. default:
  4585. return nil
  4586. }
  4587. }
  4588. file_filer_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  4589. switch v := v.(*FilerConf); i {
  4590. case 0:
  4591. return &v.state
  4592. case 1:
  4593. return &v.sizeCache
  4594. case 2:
  4595. return &v.unknownFields
  4596. default:
  4597. return nil
  4598. }
  4599. }
  4600. file_filer_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  4601. switch v := v.(*CacheRemoteObjectToLocalClusterRequest); i {
  4602. case 0:
  4603. return &v.state
  4604. case 1:
  4605. return &v.sizeCache
  4606. case 2:
  4607. return &v.unknownFields
  4608. default:
  4609. return nil
  4610. }
  4611. }
  4612. file_filer_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  4613. switch v := v.(*CacheRemoteObjectToLocalClusterResponse); i {
  4614. case 0:
  4615. return &v.state
  4616. case 1:
  4617. return &v.sizeCache
  4618. case 2:
  4619. return &v.unknownFields
  4620. default:
  4621. return nil
  4622. }
  4623. }
  4624. file_filer_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  4625. switch v := v.(*LocateBrokerResponse_Resource); i {
  4626. case 0:
  4627. return &v.state
  4628. case 1:
  4629. return &v.sizeCache
  4630. case 2:
  4631. return &v.unknownFields
  4632. default:
  4633. return nil
  4634. }
  4635. }
  4636. file_filer_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  4637. switch v := v.(*FilerConf_PathConf); i {
  4638. case 0:
  4639. return &v.state
  4640. case 1:
  4641. return &v.sizeCache
  4642. case 2:
  4643. return &v.unknownFields
  4644. default:
  4645. return nil
  4646. }
  4647. }
  4648. }
  4649. type x struct{}
  4650. out := protoimpl.TypeBuilder{
  4651. File: protoimpl.DescBuilder{
  4652. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4653. RawDescriptor: file_filer_proto_rawDesc,
  4654. NumEnums: 0,
  4655. NumMessages: 59,
  4656. NumExtensions: 0,
  4657. NumServices: 1,
  4658. },
  4659. GoTypes: file_filer_proto_goTypes,
  4660. DependencyIndexes: file_filer_proto_depIdxs,
  4661. MessageInfos: file_filer_proto_msgTypes,
  4662. }.Build()
  4663. File_filer_proto = out.File
  4664. file_filer_proto_rawDesc = nil
  4665. file_filer_proto_goTypes = nil
  4666. file_filer_proto_depIdxs = nil
  4667. }