openapiv2.pb.go 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.0
  4. // protoc (unknown)
  5. // source: protoc-gen-openapiv2/options/openapiv2.proto
  6. //go:build !protoopaque
  7. package options
  8. import (
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. structpb "google.golang.org/protobuf/types/known/structpb"
  12. reflect "reflect"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. // Scheme describes the schemes supported by the OpenAPI Swagger
  21. // and Operation objects.
  22. type Scheme int32
  23. const (
  24. Scheme_UNKNOWN Scheme = 0
  25. Scheme_HTTP Scheme = 1
  26. Scheme_HTTPS Scheme = 2
  27. Scheme_WS Scheme = 3
  28. Scheme_WSS Scheme = 4
  29. )
  30. // Enum value maps for Scheme.
  31. var (
  32. Scheme_name = map[int32]string{
  33. 0: "UNKNOWN",
  34. 1: "HTTP",
  35. 2: "HTTPS",
  36. 3: "WS",
  37. 4: "WSS",
  38. }
  39. Scheme_value = map[string]int32{
  40. "UNKNOWN": 0,
  41. "HTTP": 1,
  42. "HTTPS": 2,
  43. "WS": 3,
  44. "WSS": 4,
  45. }
  46. )
  47. func (x Scheme) Enum() *Scheme {
  48. p := new(Scheme)
  49. *p = x
  50. return p
  51. }
  52. func (x Scheme) String() string {
  53. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  54. }
  55. func (Scheme) Descriptor() protoreflect.EnumDescriptor {
  56. return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[0].Descriptor()
  57. }
  58. func (Scheme) Type() protoreflect.EnumType {
  59. return &file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[0]
  60. }
  61. func (x Scheme) Number() protoreflect.EnumNumber {
  62. return protoreflect.EnumNumber(x)
  63. }
  64. // `Type` is a supported HTTP header type.
  65. // See https://swagger.io/specification/v2/#parameterType.
  66. type HeaderParameter_Type int32
  67. const (
  68. HeaderParameter_UNKNOWN HeaderParameter_Type = 0
  69. HeaderParameter_STRING HeaderParameter_Type = 1
  70. HeaderParameter_NUMBER HeaderParameter_Type = 2
  71. HeaderParameter_INTEGER HeaderParameter_Type = 3
  72. HeaderParameter_BOOLEAN HeaderParameter_Type = 4
  73. )
  74. // Enum value maps for HeaderParameter_Type.
  75. var (
  76. HeaderParameter_Type_name = map[int32]string{
  77. 0: "UNKNOWN",
  78. 1: "STRING",
  79. 2: "NUMBER",
  80. 3: "INTEGER",
  81. 4: "BOOLEAN",
  82. }
  83. HeaderParameter_Type_value = map[string]int32{
  84. "UNKNOWN": 0,
  85. "STRING": 1,
  86. "NUMBER": 2,
  87. "INTEGER": 3,
  88. "BOOLEAN": 4,
  89. }
  90. )
  91. func (x HeaderParameter_Type) Enum() *HeaderParameter_Type {
  92. p := new(HeaderParameter_Type)
  93. *p = x
  94. return p
  95. }
  96. func (x HeaderParameter_Type) String() string {
  97. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  98. }
  99. func (HeaderParameter_Type) Descriptor() protoreflect.EnumDescriptor {
  100. return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[1].Descriptor()
  101. }
  102. func (HeaderParameter_Type) Type() protoreflect.EnumType {
  103. return &file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[1]
  104. }
  105. func (x HeaderParameter_Type) Number() protoreflect.EnumNumber {
  106. return protoreflect.EnumNumber(x)
  107. }
  108. type JSONSchema_JSONSchemaSimpleTypes int32
  109. const (
  110. JSONSchema_UNKNOWN JSONSchema_JSONSchemaSimpleTypes = 0
  111. JSONSchema_ARRAY JSONSchema_JSONSchemaSimpleTypes = 1
  112. JSONSchema_BOOLEAN JSONSchema_JSONSchemaSimpleTypes = 2
  113. JSONSchema_INTEGER JSONSchema_JSONSchemaSimpleTypes = 3
  114. JSONSchema_NULL JSONSchema_JSONSchemaSimpleTypes = 4
  115. JSONSchema_NUMBER JSONSchema_JSONSchemaSimpleTypes = 5
  116. JSONSchema_OBJECT JSONSchema_JSONSchemaSimpleTypes = 6
  117. JSONSchema_STRING JSONSchema_JSONSchemaSimpleTypes = 7
  118. )
  119. // Enum value maps for JSONSchema_JSONSchemaSimpleTypes.
  120. var (
  121. JSONSchema_JSONSchemaSimpleTypes_name = map[int32]string{
  122. 0: "UNKNOWN",
  123. 1: "ARRAY",
  124. 2: "BOOLEAN",
  125. 3: "INTEGER",
  126. 4: "NULL",
  127. 5: "NUMBER",
  128. 6: "OBJECT",
  129. 7: "STRING",
  130. }
  131. JSONSchema_JSONSchemaSimpleTypes_value = map[string]int32{
  132. "UNKNOWN": 0,
  133. "ARRAY": 1,
  134. "BOOLEAN": 2,
  135. "INTEGER": 3,
  136. "NULL": 4,
  137. "NUMBER": 5,
  138. "OBJECT": 6,
  139. "STRING": 7,
  140. }
  141. )
  142. func (x JSONSchema_JSONSchemaSimpleTypes) Enum() *JSONSchema_JSONSchemaSimpleTypes {
  143. p := new(JSONSchema_JSONSchemaSimpleTypes)
  144. *p = x
  145. return p
  146. }
  147. func (x JSONSchema_JSONSchemaSimpleTypes) String() string {
  148. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  149. }
  150. func (JSONSchema_JSONSchemaSimpleTypes) Descriptor() protoreflect.EnumDescriptor {
  151. return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[2].Descriptor()
  152. }
  153. func (JSONSchema_JSONSchemaSimpleTypes) Type() protoreflect.EnumType {
  154. return &file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[2]
  155. }
  156. func (x JSONSchema_JSONSchemaSimpleTypes) Number() protoreflect.EnumNumber {
  157. return protoreflect.EnumNumber(x)
  158. }
  159. // The type of the security scheme. Valid values are "basic",
  160. // "apiKey" or "oauth2".
  161. type SecurityScheme_Type int32
  162. const (
  163. SecurityScheme_TYPE_INVALID SecurityScheme_Type = 0
  164. SecurityScheme_TYPE_BASIC SecurityScheme_Type = 1
  165. SecurityScheme_TYPE_API_KEY SecurityScheme_Type = 2
  166. SecurityScheme_TYPE_OAUTH2 SecurityScheme_Type = 3
  167. )
  168. // Enum value maps for SecurityScheme_Type.
  169. var (
  170. SecurityScheme_Type_name = map[int32]string{
  171. 0: "TYPE_INVALID",
  172. 1: "TYPE_BASIC",
  173. 2: "TYPE_API_KEY",
  174. 3: "TYPE_OAUTH2",
  175. }
  176. SecurityScheme_Type_value = map[string]int32{
  177. "TYPE_INVALID": 0,
  178. "TYPE_BASIC": 1,
  179. "TYPE_API_KEY": 2,
  180. "TYPE_OAUTH2": 3,
  181. }
  182. )
  183. func (x SecurityScheme_Type) Enum() *SecurityScheme_Type {
  184. p := new(SecurityScheme_Type)
  185. *p = x
  186. return p
  187. }
  188. func (x SecurityScheme_Type) String() string {
  189. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  190. }
  191. func (SecurityScheme_Type) Descriptor() protoreflect.EnumDescriptor {
  192. return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[3].Descriptor()
  193. }
  194. func (SecurityScheme_Type) Type() protoreflect.EnumType {
  195. return &file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[3]
  196. }
  197. func (x SecurityScheme_Type) Number() protoreflect.EnumNumber {
  198. return protoreflect.EnumNumber(x)
  199. }
  200. // The location of the API key. Valid values are "query" or "header".
  201. type SecurityScheme_In int32
  202. const (
  203. SecurityScheme_IN_INVALID SecurityScheme_In = 0
  204. SecurityScheme_IN_QUERY SecurityScheme_In = 1
  205. SecurityScheme_IN_HEADER SecurityScheme_In = 2
  206. )
  207. // Enum value maps for SecurityScheme_In.
  208. var (
  209. SecurityScheme_In_name = map[int32]string{
  210. 0: "IN_INVALID",
  211. 1: "IN_QUERY",
  212. 2: "IN_HEADER",
  213. }
  214. SecurityScheme_In_value = map[string]int32{
  215. "IN_INVALID": 0,
  216. "IN_QUERY": 1,
  217. "IN_HEADER": 2,
  218. }
  219. )
  220. func (x SecurityScheme_In) Enum() *SecurityScheme_In {
  221. p := new(SecurityScheme_In)
  222. *p = x
  223. return p
  224. }
  225. func (x SecurityScheme_In) String() string {
  226. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  227. }
  228. func (SecurityScheme_In) Descriptor() protoreflect.EnumDescriptor {
  229. return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[4].Descriptor()
  230. }
  231. func (SecurityScheme_In) Type() protoreflect.EnumType {
  232. return &file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[4]
  233. }
  234. func (x SecurityScheme_In) Number() protoreflect.EnumNumber {
  235. return protoreflect.EnumNumber(x)
  236. }
  237. // The flow used by the OAuth2 security scheme. Valid values are
  238. // "implicit", "password", "application" or "accessCode".
  239. type SecurityScheme_Flow int32
  240. const (
  241. SecurityScheme_FLOW_INVALID SecurityScheme_Flow = 0
  242. SecurityScheme_FLOW_IMPLICIT SecurityScheme_Flow = 1
  243. SecurityScheme_FLOW_PASSWORD SecurityScheme_Flow = 2
  244. SecurityScheme_FLOW_APPLICATION SecurityScheme_Flow = 3
  245. SecurityScheme_FLOW_ACCESS_CODE SecurityScheme_Flow = 4
  246. )
  247. // Enum value maps for SecurityScheme_Flow.
  248. var (
  249. SecurityScheme_Flow_name = map[int32]string{
  250. 0: "FLOW_INVALID",
  251. 1: "FLOW_IMPLICIT",
  252. 2: "FLOW_PASSWORD",
  253. 3: "FLOW_APPLICATION",
  254. 4: "FLOW_ACCESS_CODE",
  255. }
  256. SecurityScheme_Flow_value = map[string]int32{
  257. "FLOW_INVALID": 0,
  258. "FLOW_IMPLICIT": 1,
  259. "FLOW_PASSWORD": 2,
  260. "FLOW_APPLICATION": 3,
  261. "FLOW_ACCESS_CODE": 4,
  262. }
  263. )
  264. func (x SecurityScheme_Flow) Enum() *SecurityScheme_Flow {
  265. p := new(SecurityScheme_Flow)
  266. *p = x
  267. return p
  268. }
  269. func (x SecurityScheme_Flow) String() string {
  270. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  271. }
  272. func (SecurityScheme_Flow) Descriptor() protoreflect.EnumDescriptor {
  273. return file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[5].Descriptor()
  274. }
  275. func (SecurityScheme_Flow) Type() protoreflect.EnumType {
  276. return &file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes[5]
  277. }
  278. func (x SecurityScheme_Flow) Number() protoreflect.EnumNumber {
  279. return protoreflect.EnumNumber(x)
  280. }
  281. // `Swagger` is a representation of OpenAPI v2 specification's Swagger object.
  282. //
  283. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#swaggerObject
  284. //
  285. // Example:
  286. //
  287. // option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
  288. // info: {
  289. // title: "Echo API";
  290. // version: "1.0";
  291. // description: "";
  292. // contact: {
  293. // name: "gRPC-Gateway project";
  294. // url: "https://github.com/grpc-ecosystem/grpc-gateway";
  295. // email: "none@example.com";
  296. // };
  297. // license: {
  298. // name: "BSD 3-Clause License";
  299. // url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/main/LICENSE";
  300. // };
  301. // };
  302. // schemes: HTTPS;
  303. // consumes: "application/json";
  304. // produces: "application/json";
  305. // };
  306. type Swagger struct {
  307. state protoimpl.MessageState `protogen:"hybrid.v1"`
  308. // Specifies the OpenAPI Specification version being used. It can be
  309. // used by the OpenAPI UI and other clients to interpret the API listing. The
  310. // value MUST be "2.0".
  311. Swagger string `protobuf:"bytes,1,opt,name=swagger,proto3" json:"swagger,omitempty"`
  312. // Provides metadata about the API. The metadata can be used by the
  313. // clients if needed.
  314. Info *Info `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
  315. // The host (name or ip) serving the API. This MUST be the host only and does
  316. // not include the scheme nor sub-paths. It MAY include a port. If the host is
  317. // not included, the host serving the documentation is to be used (including
  318. // the port). The host does not support path templating.
  319. Host string `protobuf:"bytes,3,opt,name=host,proto3" json:"host,omitempty"`
  320. // The base path on which the API is served, which is relative to the host. If
  321. // it is not included, the API is served directly under the host. The value
  322. // MUST start with a leading slash (/). The basePath does not support path
  323. // templating.
  324. // Note that using `base_path` does not change the endpoint paths that are
  325. // generated in the resulting OpenAPI file. If you wish to use `base_path`
  326. // with relatively generated OpenAPI paths, the `base_path` prefix must be
  327. // manually removed from your `google.api.http` paths and your code changed to
  328. // serve the API from the `base_path`.
  329. BasePath string `protobuf:"bytes,4,opt,name=base_path,json=basePath,proto3" json:"base_path,omitempty"`
  330. // The transfer protocol of the API. Values MUST be from the list: "http",
  331. // "https", "ws", "wss". If the schemes is not included, the default scheme to
  332. // be used is the one used to access the OpenAPI definition itself.
  333. Schemes []Scheme `protobuf:"varint,5,rep,packed,name=schemes,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.Scheme" json:"schemes,omitempty"`
  334. // A list of MIME types the APIs can consume. This is global to all APIs but
  335. // can be overridden on specific API calls. Value MUST be as described under
  336. // Mime Types.
  337. Consumes []string `protobuf:"bytes,6,rep,name=consumes,proto3" json:"consumes,omitempty"`
  338. // A list of MIME types the APIs can produce. This is global to all APIs but
  339. // can be overridden on specific API calls. Value MUST be as described under
  340. // Mime Types.
  341. Produces []string `protobuf:"bytes,7,rep,name=produces,proto3" json:"produces,omitempty"`
  342. // An object to hold responses that can be used across operations. This
  343. // property does not define global responses for all operations.
  344. Responses map[string]*Response `protobuf:"bytes,10,rep,name=responses,proto3" json:"responses,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  345. // Security scheme definitions that can be used across the specification.
  346. SecurityDefinitions *SecurityDefinitions `protobuf:"bytes,11,opt,name=security_definitions,json=securityDefinitions,proto3" json:"security_definitions,omitempty"`
  347. // A declaration of which security schemes are applied for the API as a whole.
  348. // The list of values describes alternative security schemes that can be used
  349. // (that is, there is a logical OR between the security requirements).
  350. // Individual operations can override this definition.
  351. Security []*SecurityRequirement `protobuf:"bytes,12,rep,name=security,proto3" json:"security,omitempty"`
  352. // A list of tags for API documentation control. Tags can be used for logical
  353. // grouping of operations by resources or any other qualifier.
  354. Tags []*Tag `protobuf:"bytes,13,rep,name=tags,proto3" json:"tags,omitempty"`
  355. // Additional external documentation.
  356. ExternalDocs *ExternalDocumentation `protobuf:"bytes,14,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  357. // Custom properties that start with "x-" such as "x-foo" used to describe
  358. // extra functionality that is not covered by the standard OpenAPI Specification.
  359. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  360. Extensions map[string]*structpb.Value `protobuf:"bytes,15,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  361. unknownFields protoimpl.UnknownFields
  362. sizeCache protoimpl.SizeCache
  363. }
  364. func (x *Swagger) Reset() {
  365. *x = Swagger{}
  366. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[0]
  367. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  368. ms.StoreMessageInfo(mi)
  369. }
  370. func (x *Swagger) String() string {
  371. return protoimpl.X.MessageStringOf(x)
  372. }
  373. func (*Swagger) ProtoMessage() {}
  374. func (x *Swagger) ProtoReflect() protoreflect.Message {
  375. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[0]
  376. if x != nil {
  377. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  378. if ms.LoadMessageInfo() == nil {
  379. ms.StoreMessageInfo(mi)
  380. }
  381. return ms
  382. }
  383. return mi.MessageOf(x)
  384. }
  385. func (x *Swagger) GetSwagger() string {
  386. if x != nil {
  387. return x.Swagger
  388. }
  389. return ""
  390. }
  391. func (x *Swagger) GetInfo() *Info {
  392. if x != nil {
  393. return x.Info
  394. }
  395. return nil
  396. }
  397. func (x *Swagger) GetHost() string {
  398. if x != nil {
  399. return x.Host
  400. }
  401. return ""
  402. }
  403. func (x *Swagger) GetBasePath() string {
  404. if x != nil {
  405. return x.BasePath
  406. }
  407. return ""
  408. }
  409. func (x *Swagger) GetSchemes() []Scheme {
  410. if x != nil {
  411. return x.Schemes
  412. }
  413. return nil
  414. }
  415. func (x *Swagger) GetConsumes() []string {
  416. if x != nil {
  417. return x.Consumes
  418. }
  419. return nil
  420. }
  421. func (x *Swagger) GetProduces() []string {
  422. if x != nil {
  423. return x.Produces
  424. }
  425. return nil
  426. }
  427. func (x *Swagger) GetResponses() map[string]*Response {
  428. if x != nil {
  429. return x.Responses
  430. }
  431. return nil
  432. }
  433. func (x *Swagger) GetSecurityDefinitions() *SecurityDefinitions {
  434. if x != nil {
  435. return x.SecurityDefinitions
  436. }
  437. return nil
  438. }
  439. func (x *Swagger) GetSecurity() []*SecurityRequirement {
  440. if x != nil {
  441. return x.Security
  442. }
  443. return nil
  444. }
  445. func (x *Swagger) GetTags() []*Tag {
  446. if x != nil {
  447. return x.Tags
  448. }
  449. return nil
  450. }
  451. func (x *Swagger) GetExternalDocs() *ExternalDocumentation {
  452. if x != nil {
  453. return x.ExternalDocs
  454. }
  455. return nil
  456. }
  457. func (x *Swagger) GetExtensions() map[string]*structpb.Value {
  458. if x != nil {
  459. return x.Extensions
  460. }
  461. return nil
  462. }
  463. func (x *Swagger) SetSwagger(v string) {
  464. x.Swagger = v
  465. }
  466. func (x *Swagger) SetInfo(v *Info) {
  467. x.Info = v
  468. }
  469. func (x *Swagger) SetHost(v string) {
  470. x.Host = v
  471. }
  472. func (x *Swagger) SetBasePath(v string) {
  473. x.BasePath = v
  474. }
  475. func (x *Swagger) SetSchemes(v []Scheme) {
  476. x.Schemes = v
  477. }
  478. func (x *Swagger) SetConsumes(v []string) {
  479. x.Consumes = v
  480. }
  481. func (x *Swagger) SetProduces(v []string) {
  482. x.Produces = v
  483. }
  484. func (x *Swagger) SetResponses(v map[string]*Response) {
  485. x.Responses = v
  486. }
  487. func (x *Swagger) SetSecurityDefinitions(v *SecurityDefinitions) {
  488. x.SecurityDefinitions = v
  489. }
  490. func (x *Swagger) SetSecurity(v []*SecurityRequirement) {
  491. x.Security = v
  492. }
  493. func (x *Swagger) SetTags(v []*Tag) {
  494. x.Tags = v
  495. }
  496. func (x *Swagger) SetExternalDocs(v *ExternalDocumentation) {
  497. x.ExternalDocs = v
  498. }
  499. func (x *Swagger) SetExtensions(v map[string]*structpb.Value) {
  500. x.Extensions = v
  501. }
  502. func (x *Swagger) HasInfo() bool {
  503. if x == nil {
  504. return false
  505. }
  506. return x.Info != nil
  507. }
  508. func (x *Swagger) HasSecurityDefinitions() bool {
  509. if x == nil {
  510. return false
  511. }
  512. return x.SecurityDefinitions != nil
  513. }
  514. func (x *Swagger) HasExternalDocs() bool {
  515. if x == nil {
  516. return false
  517. }
  518. return x.ExternalDocs != nil
  519. }
  520. func (x *Swagger) ClearInfo() {
  521. x.Info = nil
  522. }
  523. func (x *Swagger) ClearSecurityDefinitions() {
  524. x.SecurityDefinitions = nil
  525. }
  526. func (x *Swagger) ClearExternalDocs() {
  527. x.ExternalDocs = nil
  528. }
  529. type Swagger_builder struct {
  530. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  531. // Specifies the OpenAPI Specification version being used. It can be
  532. // used by the OpenAPI UI and other clients to interpret the API listing. The
  533. // value MUST be "2.0".
  534. Swagger string
  535. // Provides metadata about the API. The metadata can be used by the
  536. // clients if needed.
  537. Info *Info
  538. // The host (name or ip) serving the API. This MUST be the host only and does
  539. // not include the scheme nor sub-paths. It MAY include a port. If the host is
  540. // not included, the host serving the documentation is to be used (including
  541. // the port). The host does not support path templating.
  542. Host string
  543. // The base path on which the API is served, which is relative to the host. If
  544. // it is not included, the API is served directly under the host. The value
  545. // MUST start with a leading slash (/). The basePath does not support path
  546. // templating.
  547. // Note that using `base_path` does not change the endpoint paths that are
  548. // generated in the resulting OpenAPI file. If you wish to use `base_path`
  549. // with relatively generated OpenAPI paths, the `base_path` prefix must be
  550. // manually removed from your `google.api.http` paths and your code changed to
  551. // serve the API from the `base_path`.
  552. BasePath string
  553. // The transfer protocol of the API. Values MUST be from the list: "http",
  554. // "https", "ws", "wss". If the schemes is not included, the default scheme to
  555. // be used is the one used to access the OpenAPI definition itself.
  556. Schemes []Scheme
  557. // A list of MIME types the APIs can consume. This is global to all APIs but
  558. // can be overridden on specific API calls. Value MUST be as described under
  559. // Mime Types.
  560. Consumes []string
  561. // A list of MIME types the APIs can produce. This is global to all APIs but
  562. // can be overridden on specific API calls. Value MUST be as described under
  563. // Mime Types.
  564. Produces []string
  565. // An object to hold responses that can be used across operations. This
  566. // property does not define global responses for all operations.
  567. Responses map[string]*Response
  568. // Security scheme definitions that can be used across the specification.
  569. SecurityDefinitions *SecurityDefinitions
  570. // A declaration of which security schemes are applied for the API as a whole.
  571. // The list of values describes alternative security schemes that can be used
  572. // (that is, there is a logical OR between the security requirements).
  573. // Individual operations can override this definition.
  574. Security []*SecurityRequirement
  575. // A list of tags for API documentation control. Tags can be used for logical
  576. // grouping of operations by resources or any other qualifier.
  577. Tags []*Tag
  578. // Additional external documentation.
  579. ExternalDocs *ExternalDocumentation
  580. // Custom properties that start with "x-" such as "x-foo" used to describe
  581. // extra functionality that is not covered by the standard OpenAPI Specification.
  582. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  583. Extensions map[string]*structpb.Value
  584. }
  585. func (b0 Swagger_builder) Build() *Swagger {
  586. m0 := &Swagger{}
  587. b, x := &b0, m0
  588. _, _ = b, x
  589. x.Swagger = b.Swagger
  590. x.Info = b.Info
  591. x.Host = b.Host
  592. x.BasePath = b.BasePath
  593. x.Schemes = b.Schemes
  594. x.Consumes = b.Consumes
  595. x.Produces = b.Produces
  596. x.Responses = b.Responses
  597. x.SecurityDefinitions = b.SecurityDefinitions
  598. x.Security = b.Security
  599. x.Tags = b.Tags
  600. x.ExternalDocs = b.ExternalDocs
  601. x.Extensions = b.Extensions
  602. return m0
  603. }
  604. // `Operation` is a representation of OpenAPI v2 specification's Operation object.
  605. //
  606. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#operationObject
  607. //
  608. // Example:
  609. //
  610. // service EchoService {
  611. // rpc Echo(SimpleMessage) returns (SimpleMessage) {
  612. // option (google.api.http) = {
  613. // get: "/v1/example/echo/{id}"
  614. // };
  615. //
  616. // option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
  617. // summary: "Get a message.";
  618. // operation_id: "getMessage";
  619. // tags: "echo";
  620. // responses: {
  621. // key: "200"
  622. // value: {
  623. // description: "OK";
  624. // }
  625. // }
  626. // };
  627. // }
  628. // }
  629. type Operation struct {
  630. state protoimpl.MessageState `protogen:"hybrid.v1"`
  631. // A list of tags for API documentation control. Tags can be used for logical
  632. // grouping of operations by resources or any other qualifier.
  633. Tags []string `protobuf:"bytes,1,rep,name=tags,proto3" json:"tags,omitempty"`
  634. // A short summary of what the operation does. For maximum readability in the
  635. // swagger-ui, this field SHOULD be less than 120 characters.
  636. Summary string `protobuf:"bytes,2,opt,name=summary,proto3" json:"summary,omitempty"`
  637. // A verbose explanation of the operation behavior. GFM syntax can be used for
  638. // rich text representation.
  639. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  640. // Additional external documentation for this operation.
  641. ExternalDocs *ExternalDocumentation `protobuf:"bytes,4,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  642. // Unique string used to identify the operation. The id MUST be unique among
  643. // all operations described in the API. Tools and libraries MAY use the
  644. // operationId to uniquely identify an operation, therefore, it is recommended
  645. // to follow common programming naming conventions.
  646. OperationId string `protobuf:"bytes,5,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"`
  647. // A list of MIME types the operation can consume. This overrides the consumes
  648. // definition at the OpenAPI Object. An empty value MAY be used to clear the
  649. // global definition. Value MUST be as described under Mime Types.
  650. Consumes []string `protobuf:"bytes,6,rep,name=consumes,proto3" json:"consumes,omitempty"`
  651. // A list of MIME types the operation can produce. This overrides the produces
  652. // definition at the OpenAPI Object. An empty value MAY be used to clear the
  653. // global definition. Value MUST be as described under Mime Types.
  654. Produces []string `protobuf:"bytes,7,rep,name=produces,proto3" json:"produces,omitempty"`
  655. // The list of possible responses as they are returned from executing this
  656. // operation.
  657. Responses map[string]*Response `protobuf:"bytes,9,rep,name=responses,proto3" json:"responses,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  658. // The transfer protocol for the operation. Values MUST be from the list:
  659. // "http", "https", "ws", "wss". The value overrides the OpenAPI Object
  660. // schemes definition.
  661. Schemes []Scheme `protobuf:"varint,10,rep,packed,name=schemes,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.Scheme" json:"schemes,omitempty"`
  662. // Declares this operation to be deprecated. Usage of the declared operation
  663. // should be refrained. Default value is false.
  664. Deprecated bool `protobuf:"varint,11,opt,name=deprecated,proto3" json:"deprecated,omitempty"`
  665. // A declaration of which security schemes are applied for this operation. The
  666. // list of values describes alternative security schemes that can be used
  667. // (that is, there is a logical OR between the security requirements). This
  668. // definition overrides any declared top-level security. To remove a top-level
  669. // security declaration, an empty array can be used.
  670. Security []*SecurityRequirement `protobuf:"bytes,12,rep,name=security,proto3" json:"security,omitempty"`
  671. // Custom properties that start with "x-" such as "x-foo" used to describe
  672. // extra functionality that is not covered by the standard OpenAPI Specification.
  673. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  674. Extensions map[string]*structpb.Value `protobuf:"bytes,13,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  675. // Custom parameters such as HTTP request headers.
  676. // See: https://swagger.io/docs/specification/2-0/describing-parameters/
  677. // and https://swagger.io/specification/v2/#parameter-object.
  678. Parameters *Parameters `protobuf:"bytes,14,opt,name=parameters,proto3" json:"parameters,omitempty"`
  679. unknownFields protoimpl.UnknownFields
  680. sizeCache protoimpl.SizeCache
  681. }
  682. func (x *Operation) Reset() {
  683. *x = Operation{}
  684. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[1]
  685. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  686. ms.StoreMessageInfo(mi)
  687. }
  688. func (x *Operation) String() string {
  689. return protoimpl.X.MessageStringOf(x)
  690. }
  691. func (*Operation) ProtoMessage() {}
  692. func (x *Operation) ProtoReflect() protoreflect.Message {
  693. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[1]
  694. if x != nil {
  695. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  696. if ms.LoadMessageInfo() == nil {
  697. ms.StoreMessageInfo(mi)
  698. }
  699. return ms
  700. }
  701. return mi.MessageOf(x)
  702. }
  703. func (x *Operation) GetTags() []string {
  704. if x != nil {
  705. return x.Tags
  706. }
  707. return nil
  708. }
  709. func (x *Operation) GetSummary() string {
  710. if x != nil {
  711. return x.Summary
  712. }
  713. return ""
  714. }
  715. func (x *Operation) GetDescription() string {
  716. if x != nil {
  717. return x.Description
  718. }
  719. return ""
  720. }
  721. func (x *Operation) GetExternalDocs() *ExternalDocumentation {
  722. if x != nil {
  723. return x.ExternalDocs
  724. }
  725. return nil
  726. }
  727. func (x *Operation) GetOperationId() string {
  728. if x != nil {
  729. return x.OperationId
  730. }
  731. return ""
  732. }
  733. func (x *Operation) GetConsumes() []string {
  734. if x != nil {
  735. return x.Consumes
  736. }
  737. return nil
  738. }
  739. func (x *Operation) GetProduces() []string {
  740. if x != nil {
  741. return x.Produces
  742. }
  743. return nil
  744. }
  745. func (x *Operation) GetResponses() map[string]*Response {
  746. if x != nil {
  747. return x.Responses
  748. }
  749. return nil
  750. }
  751. func (x *Operation) GetSchemes() []Scheme {
  752. if x != nil {
  753. return x.Schemes
  754. }
  755. return nil
  756. }
  757. func (x *Operation) GetDeprecated() bool {
  758. if x != nil {
  759. return x.Deprecated
  760. }
  761. return false
  762. }
  763. func (x *Operation) GetSecurity() []*SecurityRequirement {
  764. if x != nil {
  765. return x.Security
  766. }
  767. return nil
  768. }
  769. func (x *Operation) GetExtensions() map[string]*structpb.Value {
  770. if x != nil {
  771. return x.Extensions
  772. }
  773. return nil
  774. }
  775. func (x *Operation) GetParameters() *Parameters {
  776. if x != nil {
  777. return x.Parameters
  778. }
  779. return nil
  780. }
  781. func (x *Operation) SetTags(v []string) {
  782. x.Tags = v
  783. }
  784. func (x *Operation) SetSummary(v string) {
  785. x.Summary = v
  786. }
  787. func (x *Operation) SetDescription(v string) {
  788. x.Description = v
  789. }
  790. func (x *Operation) SetExternalDocs(v *ExternalDocumentation) {
  791. x.ExternalDocs = v
  792. }
  793. func (x *Operation) SetOperationId(v string) {
  794. x.OperationId = v
  795. }
  796. func (x *Operation) SetConsumes(v []string) {
  797. x.Consumes = v
  798. }
  799. func (x *Operation) SetProduces(v []string) {
  800. x.Produces = v
  801. }
  802. func (x *Operation) SetResponses(v map[string]*Response) {
  803. x.Responses = v
  804. }
  805. func (x *Operation) SetSchemes(v []Scheme) {
  806. x.Schemes = v
  807. }
  808. func (x *Operation) SetDeprecated(v bool) {
  809. x.Deprecated = v
  810. }
  811. func (x *Operation) SetSecurity(v []*SecurityRequirement) {
  812. x.Security = v
  813. }
  814. func (x *Operation) SetExtensions(v map[string]*structpb.Value) {
  815. x.Extensions = v
  816. }
  817. func (x *Operation) SetParameters(v *Parameters) {
  818. x.Parameters = v
  819. }
  820. func (x *Operation) HasExternalDocs() bool {
  821. if x == nil {
  822. return false
  823. }
  824. return x.ExternalDocs != nil
  825. }
  826. func (x *Operation) HasParameters() bool {
  827. if x == nil {
  828. return false
  829. }
  830. return x.Parameters != nil
  831. }
  832. func (x *Operation) ClearExternalDocs() {
  833. x.ExternalDocs = nil
  834. }
  835. func (x *Operation) ClearParameters() {
  836. x.Parameters = nil
  837. }
  838. type Operation_builder struct {
  839. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  840. // A list of tags for API documentation control. Tags can be used for logical
  841. // grouping of operations by resources or any other qualifier.
  842. Tags []string
  843. // A short summary of what the operation does. For maximum readability in the
  844. // swagger-ui, this field SHOULD be less than 120 characters.
  845. Summary string
  846. // A verbose explanation of the operation behavior. GFM syntax can be used for
  847. // rich text representation.
  848. Description string
  849. // Additional external documentation for this operation.
  850. ExternalDocs *ExternalDocumentation
  851. // Unique string used to identify the operation. The id MUST be unique among
  852. // all operations described in the API. Tools and libraries MAY use the
  853. // operationId to uniquely identify an operation, therefore, it is recommended
  854. // to follow common programming naming conventions.
  855. OperationId string
  856. // A list of MIME types the operation can consume. This overrides the consumes
  857. // definition at the OpenAPI Object. An empty value MAY be used to clear the
  858. // global definition. Value MUST be as described under Mime Types.
  859. Consumes []string
  860. // A list of MIME types the operation can produce. This overrides the produces
  861. // definition at the OpenAPI Object. An empty value MAY be used to clear the
  862. // global definition. Value MUST be as described under Mime Types.
  863. Produces []string
  864. // The list of possible responses as they are returned from executing this
  865. // operation.
  866. Responses map[string]*Response
  867. // The transfer protocol for the operation. Values MUST be from the list:
  868. // "http", "https", "ws", "wss". The value overrides the OpenAPI Object
  869. // schemes definition.
  870. Schemes []Scheme
  871. // Declares this operation to be deprecated. Usage of the declared operation
  872. // should be refrained. Default value is false.
  873. Deprecated bool
  874. // A declaration of which security schemes are applied for this operation. The
  875. // list of values describes alternative security schemes that can be used
  876. // (that is, there is a logical OR between the security requirements). This
  877. // definition overrides any declared top-level security. To remove a top-level
  878. // security declaration, an empty array can be used.
  879. Security []*SecurityRequirement
  880. // Custom properties that start with "x-" such as "x-foo" used to describe
  881. // extra functionality that is not covered by the standard OpenAPI Specification.
  882. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  883. Extensions map[string]*structpb.Value
  884. // Custom parameters such as HTTP request headers.
  885. // See: https://swagger.io/docs/specification/2-0/describing-parameters/
  886. // and https://swagger.io/specification/v2/#parameter-object.
  887. Parameters *Parameters
  888. }
  889. func (b0 Operation_builder) Build() *Operation {
  890. m0 := &Operation{}
  891. b, x := &b0, m0
  892. _, _ = b, x
  893. x.Tags = b.Tags
  894. x.Summary = b.Summary
  895. x.Description = b.Description
  896. x.ExternalDocs = b.ExternalDocs
  897. x.OperationId = b.OperationId
  898. x.Consumes = b.Consumes
  899. x.Produces = b.Produces
  900. x.Responses = b.Responses
  901. x.Schemes = b.Schemes
  902. x.Deprecated = b.Deprecated
  903. x.Security = b.Security
  904. x.Extensions = b.Extensions
  905. x.Parameters = b.Parameters
  906. return m0
  907. }
  908. // `Parameters` is a representation of OpenAPI v2 specification's parameters object.
  909. // Note: This technically breaks compatibility with the OpenAPI 2 definition structure as we only
  910. // allow header parameters to be set here since we do not want users specifying custom non-header
  911. // parameters beyond those inferred from the Protobuf schema.
  912. // See: https://swagger.io/specification/v2/#parameter-object
  913. type Parameters struct {
  914. state protoimpl.MessageState `protogen:"hybrid.v1"`
  915. // `Headers` is one or more HTTP header parameter.
  916. // See: https://swagger.io/docs/specification/2-0/describing-parameters/#header-parameters
  917. Headers []*HeaderParameter `protobuf:"bytes,1,rep,name=headers,proto3" json:"headers,omitempty"`
  918. unknownFields protoimpl.UnknownFields
  919. sizeCache protoimpl.SizeCache
  920. }
  921. func (x *Parameters) Reset() {
  922. *x = Parameters{}
  923. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[2]
  924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  925. ms.StoreMessageInfo(mi)
  926. }
  927. func (x *Parameters) String() string {
  928. return protoimpl.X.MessageStringOf(x)
  929. }
  930. func (*Parameters) ProtoMessage() {}
  931. func (x *Parameters) ProtoReflect() protoreflect.Message {
  932. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[2]
  933. if x != nil {
  934. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  935. if ms.LoadMessageInfo() == nil {
  936. ms.StoreMessageInfo(mi)
  937. }
  938. return ms
  939. }
  940. return mi.MessageOf(x)
  941. }
  942. func (x *Parameters) GetHeaders() []*HeaderParameter {
  943. if x != nil {
  944. return x.Headers
  945. }
  946. return nil
  947. }
  948. func (x *Parameters) SetHeaders(v []*HeaderParameter) {
  949. x.Headers = v
  950. }
  951. type Parameters_builder struct {
  952. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  953. // `Headers` is one or more HTTP header parameter.
  954. // See: https://swagger.io/docs/specification/2-0/describing-parameters/#header-parameters
  955. Headers []*HeaderParameter
  956. }
  957. func (b0 Parameters_builder) Build() *Parameters {
  958. m0 := &Parameters{}
  959. b, x := &b0, m0
  960. _, _ = b, x
  961. x.Headers = b.Headers
  962. return m0
  963. }
  964. // `HeaderParameter` a HTTP header parameter.
  965. // See: https://swagger.io/specification/v2/#parameter-object
  966. type HeaderParameter struct {
  967. state protoimpl.MessageState `protogen:"hybrid.v1"`
  968. // `Name` is the header name.
  969. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  970. // `Description` is a short description of the header.
  971. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  972. // `Type` is the type of the object. The value MUST be one of "string", "number", "integer", or "boolean". The "array" type is not supported.
  973. // See: https://swagger.io/specification/v2/#parameterType.
  974. Type HeaderParameter_Type `protobuf:"varint,3,opt,name=type,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter_Type" json:"type,omitempty"`
  975. // `Format` The extending format for the previously mentioned type.
  976. Format string `protobuf:"bytes,4,opt,name=format,proto3" json:"format,omitempty"`
  977. // `Required` indicates if the header is optional
  978. Required bool `protobuf:"varint,5,opt,name=required,proto3" json:"required,omitempty"`
  979. unknownFields protoimpl.UnknownFields
  980. sizeCache protoimpl.SizeCache
  981. }
  982. func (x *HeaderParameter) Reset() {
  983. *x = HeaderParameter{}
  984. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[3]
  985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  986. ms.StoreMessageInfo(mi)
  987. }
  988. func (x *HeaderParameter) String() string {
  989. return protoimpl.X.MessageStringOf(x)
  990. }
  991. func (*HeaderParameter) ProtoMessage() {}
  992. func (x *HeaderParameter) ProtoReflect() protoreflect.Message {
  993. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[3]
  994. if x != nil {
  995. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  996. if ms.LoadMessageInfo() == nil {
  997. ms.StoreMessageInfo(mi)
  998. }
  999. return ms
  1000. }
  1001. return mi.MessageOf(x)
  1002. }
  1003. func (x *HeaderParameter) GetName() string {
  1004. if x != nil {
  1005. return x.Name
  1006. }
  1007. return ""
  1008. }
  1009. func (x *HeaderParameter) GetDescription() string {
  1010. if x != nil {
  1011. return x.Description
  1012. }
  1013. return ""
  1014. }
  1015. func (x *HeaderParameter) GetType() HeaderParameter_Type {
  1016. if x != nil {
  1017. return x.Type
  1018. }
  1019. return HeaderParameter_UNKNOWN
  1020. }
  1021. func (x *HeaderParameter) GetFormat() string {
  1022. if x != nil {
  1023. return x.Format
  1024. }
  1025. return ""
  1026. }
  1027. func (x *HeaderParameter) GetRequired() bool {
  1028. if x != nil {
  1029. return x.Required
  1030. }
  1031. return false
  1032. }
  1033. func (x *HeaderParameter) SetName(v string) {
  1034. x.Name = v
  1035. }
  1036. func (x *HeaderParameter) SetDescription(v string) {
  1037. x.Description = v
  1038. }
  1039. func (x *HeaderParameter) SetType(v HeaderParameter_Type) {
  1040. x.Type = v
  1041. }
  1042. func (x *HeaderParameter) SetFormat(v string) {
  1043. x.Format = v
  1044. }
  1045. func (x *HeaderParameter) SetRequired(v bool) {
  1046. x.Required = v
  1047. }
  1048. type HeaderParameter_builder struct {
  1049. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  1050. // `Name` is the header name.
  1051. Name string
  1052. // `Description` is a short description of the header.
  1053. Description string
  1054. // `Type` is the type of the object. The value MUST be one of "string", "number", "integer", or "boolean". The "array" type is not supported.
  1055. // See: https://swagger.io/specification/v2/#parameterType.
  1056. Type HeaderParameter_Type
  1057. // `Format` The extending format for the previously mentioned type.
  1058. Format string
  1059. // `Required` indicates if the header is optional
  1060. Required bool
  1061. }
  1062. func (b0 HeaderParameter_builder) Build() *HeaderParameter {
  1063. m0 := &HeaderParameter{}
  1064. b, x := &b0, m0
  1065. _, _ = b, x
  1066. x.Name = b.Name
  1067. x.Description = b.Description
  1068. x.Type = b.Type
  1069. x.Format = b.Format
  1070. x.Required = b.Required
  1071. return m0
  1072. }
  1073. // `Header` is a representation of OpenAPI v2 specification's Header object.
  1074. //
  1075. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#headerObject
  1076. type Header struct {
  1077. state protoimpl.MessageState `protogen:"hybrid.v1"`
  1078. // `Description` is a short description of the header.
  1079. Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
  1080. // The type of the object. The value MUST be one of "string", "number", "integer", or "boolean". The "array" type is not supported.
  1081. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
  1082. // `Format` The extending format for the previously mentioned type.
  1083. Format string `protobuf:"bytes,3,opt,name=format,proto3" json:"format,omitempty"`
  1084. // `Default` Declares the value of the header that the server will use if none is provided.
  1085. // See: https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-6.2.
  1086. // Unlike JSON Schema this value MUST conform to the defined type for the header.
  1087. Default string `protobuf:"bytes,6,opt,name=default,proto3" json:"default,omitempty"`
  1088. // 'Pattern' See https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.2.3.
  1089. Pattern string `protobuf:"bytes,13,opt,name=pattern,proto3" json:"pattern,omitempty"`
  1090. unknownFields protoimpl.UnknownFields
  1091. sizeCache protoimpl.SizeCache
  1092. }
  1093. func (x *Header) Reset() {
  1094. *x = Header{}
  1095. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[4]
  1096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1097. ms.StoreMessageInfo(mi)
  1098. }
  1099. func (x *Header) String() string {
  1100. return protoimpl.X.MessageStringOf(x)
  1101. }
  1102. func (*Header) ProtoMessage() {}
  1103. func (x *Header) ProtoReflect() protoreflect.Message {
  1104. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[4]
  1105. if x != nil {
  1106. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1107. if ms.LoadMessageInfo() == nil {
  1108. ms.StoreMessageInfo(mi)
  1109. }
  1110. return ms
  1111. }
  1112. return mi.MessageOf(x)
  1113. }
  1114. func (x *Header) GetDescription() string {
  1115. if x != nil {
  1116. return x.Description
  1117. }
  1118. return ""
  1119. }
  1120. func (x *Header) GetType() string {
  1121. if x != nil {
  1122. return x.Type
  1123. }
  1124. return ""
  1125. }
  1126. func (x *Header) GetFormat() string {
  1127. if x != nil {
  1128. return x.Format
  1129. }
  1130. return ""
  1131. }
  1132. func (x *Header) GetDefault() string {
  1133. if x != nil {
  1134. return x.Default
  1135. }
  1136. return ""
  1137. }
  1138. func (x *Header) GetPattern() string {
  1139. if x != nil {
  1140. return x.Pattern
  1141. }
  1142. return ""
  1143. }
  1144. func (x *Header) SetDescription(v string) {
  1145. x.Description = v
  1146. }
  1147. func (x *Header) SetType(v string) {
  1148. x.Type = v
  1149. }
  1150. func (x *Header) SetFormat(v string) {
  1151. x.Format = v
  1152. }
  1153. func (x *Header) SetDefault(v string) {
  1154. x.Default = v
  1155. }
  1156. func (x *Header) SetPattern(v string) {
  1157. x.Pattern = v
  1158. }
  1159. type Header_builder struct {
  1160. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  1161. // `Description` is a short description of the header.
  1162. Description string
  1163. // The type of the object. The value MUST be one of "string", "number", "integer", or "boolean". The "array" type is not supported.
  1164. Type string
  1165. // `Format` The extending format for the previously mentioned type.
  1166. Format string
  1167. // `Default` Declares the value of the header that the server will use if none is provided.
  1168. // See: https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-6.2.
  1169. // Unlike JSON Schema this value MUST conform to the defined type for the header.
  1170. Default string
  1171. // 'Pattern' See https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.2.3.
  1172. Pattern string
  1173. }
  1174. func (b0 Header_builder) Build() *Header {
  1175. m0 := &Header{}
  1176. b, x := &b0, m0
  1177. _, _ = b, x
  1178. x.Description = b.Description
  1179. x.Type = b.Type
  1180. x.Format = b.Format
  1181. x.Default = b.Default
  1182. x.Pattern = b.Pattern
  1183. return m0
  1184. }
  1185. // `Response` is a representation of OpenAPI v2 specification's Response object.
  1186. //
  1187. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#responseObject
  1188. type Response struct {
  1189. state protoimpl.MessageState `protogen:"hybrid.v1"`
  1190. // `Description` is a short description of the response.
  1191. // GFM syntax can be used for rich text representation.
  1192. Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
  1193. // `Schema` optionally defines the structure of the response.
  1194. // If `Schema` is not provided, it means there is no content to the response.
  1195. Schema *Schema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
  1196. // `Headers` A list of headers that are sent with the response.
  1197. // `Header` name is expected to be a string in the canonical format of the MIME header key
  1198. // See: https://golang.org/pkg/net/textproto/#CanonicalMIMEHeaderKey
  1199. Headers map[string]*Header `protobuf:"bytes,3,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1200. // `Examples` gives per-mimetype response examples.
  1201. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#example-object
  1202. Examples map[string]string `protobuf:"bytes,4,rep,name=examples,proto3" json:"examples,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1203. // Custom properties that start with "x-" such as "x-foo" used to describe
  1204. // extra functionality that is not covered by the standard OpenAPI Specification.
  1205. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  1206. Extensions map[string]*structpb.Value `protobuf:"bytes,5,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1207. unknownFields protoimpl.UnknownFields
  1208. sizeCache protoimpl.SizeCache
  1209. }
  1210. func (x *Response) Reset() {
  1211. *x = Response{}
  1212. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[5]
  1213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1214. ms.StoreMessageInfo(mi)
  1215. }
  1216. func (x *Response) String() string {
  1217. return protoimpl.X.MessageStringOf(x)
  1218. }
  1219. func (*Response) ProtoMessage() {}
  1220. func (x *Response) ProtoReflect() protoreflect.Message {
  1221. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[5]
  1222. if 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. func (x *Response) GetDescription() string {
  1232. if x != nil {
  1233. return x.Description
  1234. }
  1235. return ""
  1236. }
  1237. func (x *Response) GetSchema() *Schema {
  1238. if x != nil {
  1239. return x.Schema
  1240. }
  1241. return nil
  1242. }
  1243. func (x *Response) GetHeaders() map[string]*Header {
  1244. if x != nil {
  1245. return x.Headers
  1246. }
  1247. return nil
  1248. }
  1249. func (x *Response) GetExamples() map[string]string {
  1250. if x != nil {
  1251. return x.Examples
  1252. }
  1253. return nil
  1254. }
  1255. func (x *Response) GetExtensions() map[string]*structpb.Value {
  1256. if x != nil {
  1257. return x.Extensions
  1258. }
  1259. return nil
  1260. }
  1261. func (x *Response) SetDescription(v string) {
  1262. x.Description = v
  1263. }
  1264. func (x *Response) SetSchema(v *Schema) {
  1265. x.Schema = v
  1266. }
  1267. func (x *Response) SetHeaders(v map[string]*Header) {
  1268. x.Headers = v
  1269. }
  1270. func (x *Response) SetExamples(v map[string]string) {
  1271. x.Examples = v
  1272. }
  1273. func (x *Response) SetExtensions(v map[string]*structpb.Value) {
  1274. x.Extensions = v
  1275. }
  1276. func (x *Response) HasSchema() bool {
  1277. if x == nil {
  1278. return false
  1279. }
  1280. return x.Schema != nil
  1281. }
  1282. func (x *Response) ClearSchema() {
  1283. x.Schema = nil
  1284. }
  1285. type Response_builder struct {
  1286. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  1287. // `Description` is a short description of the response.
  1288. // GFM syntax can be used for rich text representation.
  1289. Description string
  1290. // `Schema` optionally defines the structure of the response.
  1291. // If `Schema` is not provided, it means there is no content to the response.
  1292. Schema *Schema
  1293. // `Headers` A list of headers that are sent with the response.
  1294. // `Header` name is expected to be a string in the canonical format of the MIME header key
  1295. // See: https://golang.org/pkg/net/textproto/#CanonicalMIMEHeaderKey
  1296. Headers map[string]*Header
  1297. // `Examples` gives per-mimetype response examples.
  1298. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#example-object
  1299. Examples map[string]string
  1300. // Custom properties that start with "x-" such as "x-foo" used to describe
  1301. // extra functionality that is not covered by the standard OpenAPI Specification.
  1302. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  1303. Extensions map[string]*structpb.Value
  1304. }
  1305. func (b0 Response_builder) Build() *Response {
  1306. m0 := &Response{}
  1307. b, x := &b0, m0
  1308. _, _ = b, x
  1309. x.Description = b.Description
  1310. x.Schema = b.Schema
  1311. x.Headers = b.Headers
  1312. x.Examples = b.Examples
  1313. x.Extensions = b.Extensions
  1314. return m0
  1315. }
  1316. // `Info` is a representation of OpenAPI v2 specification's Info object.
  1317. //
  1318. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#infoObject
  1319. //
  1320. // Example:
  1321. //
  1322. // option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
  1323. // info: {
  1324. // title: "Echo API";
  1325. // version: "1.0";
  1326. // description: "";
  1327. // contact: {
  1328. // name: "gRPC-Gateway project";
  1329. // url: "https://github.com/grpc-ecosystem/grpc-gateway";
  1330. // email: "none@example.com";
  1331. // };
  1332. // license: {
  1333. // name: "BSD 3-Clause License";
  1334. // url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/main/LICENSE";
  1335. // };
  1336. // };
  1337. // ...
  1338. // };
  1339. type Info struct {
  1340. state protoimpl.MessageState `protogen:"hybrid.v1"`
  1341. // The title of the application.
  1342. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  1343. // A short description of the application. GFM syntax can be used for rich
  1344. // text representation.
  1345. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  1346. // The Terms of Service for the API.
  1347. TermsOfService string `protobuf:"bytes,3,opt,name=terms_of_service,json=termsOfService,proto3" json:"terms_of_service,omitempty"`
  1348. // The contact information for the exposed API.
  1349. Contact *Contact `protobuf:"bytes,4,opt,name=contact,proto3" json:"contact,omitempty"`
  1350. // The license information for the exposed API.
  1351. License *License `protobuf:"bytes,5,opt,name=license,proto3" json:"license,omitempty"`
  1352. // Provides the version of the application API (not to be confused
  1353. // with the specification version).
  1354. Version string `protobuf:"bytes,6,opt,name=version,proto3" json:"version,omitempty"`
  1355. // Custom properties that start with "x-" such as "x-foo" used to describe
  1356. // extra functionality that is not covered by the standard OpenAPI Specification.
  1357. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  1358. Extensions map[string]*structpb.Value `protobuf:"bytes,7,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1359. unknownFields protoimpl.UnknownFields
  1360. sizeCache protoimpl.SizeCache
  1361. }
  1362. func (x *Info) Reset() {
  1363. *x = Info{}
  1364. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[6]
  1365. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1366. ms.StoreMessageInfo(mi)
  1367. }
  1368. func (x *Info) String() string {
  1369. return protoimpl.X.MessageStringOf(x)
  1370. }
  1371. func (*Info) ProtoMessage() {}
  1372. func (x *Info) ProtoReflect() protoreflect.Message {
  1373. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[6]
  1374. if x != nil {
  1375. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1376. if ms.LoadMessageInfo() == nil {
  1377. ms.StoreMessageInfo(mi)
  1378. }
  1379. return ms
  1380. }
  1381. return mi.MessageOf(x)
  1382. }
  1383. func (x *Info) GetTitle() string {
  1384. if x != nil {
  1385. return x.Title
  1386. }
  1387. return ""
  1388. }
  1389. func (x *Info) GetDescription() string {
  1390. if x != nil {
  1391. return x.Description
  1392. }
  1393. return ""
  1394. }
  1395. func (x *Info) GetTermsOfService() string {
  1396. if x != nil {
  1397. return x.TermsOfService
  1398. }
  1399. return ""
  1400. }
  1401. func (x *Info) GetContact() *Contact {
  1402. if x != nil {
  1403. return x.Contact
  1404. }
  1405. return nil
  1406. }
  1407. func (x *Info) GetLicense() *License {
  1408. if x != nil {
  1409. return x.License
  1410. }
  1411. return nil
  1412. }
  1413. func (x *Info) GetVersion() string {
  1414. if x != nil {
  1415. return x.Version
  1416. }
  1417. return ""
  1418. }
  1419. func (x *Info) GetExtensions() map[string]*structpb.Value {
  1420. if x != nil {
  1421. return x.Extensions
  1422. }
  1423. return nil
  1424. }
  1425. func (x *Info) SetTitle(v string) {
  1426. x.Title = v
  1427. }
  1428. func (x *Info) SetDescription(v string) {
  1429. x.Description = v
  1430. }
  1431. func (x *Info) SetTermsOfService(v string) {
  1432. x.TermsOfService = v
  1433. }
  1434. func (x *Info) SetContact(v *Contact) {
  1435. x.Contact = v
  1436. }
  1437. func (x *Info) SetLicense(v *License) {
  1438. x.License = v
  1439. }
  1440. func (x *Info) SetVersion(v string) {
  1441. x.Version = v
  1442. }
  1443. func (x *Info) SetExtensions(v map[string]*structpb.Value) {
  1444. x.Extensions = v
  1445. }
  1446. func (x *Info) HasContact() bool {
  1447. if x == nil {
  1448. return false
  1449. }
  1450. return x.Contact != nil
  1451. }
  1452. func (x *Info) HasLicense() bool {
  1453. if x == nil {
  1454. return false
  1455. }
  1456. return x.License != nil
  1457. }
  1458. func (x *Info) ClearContact() {
  1459. x.Contact = nil
  1460. }
  1461. func (x *Info) ClearLicense() {
  1462. x.License = nil
  1463. }
  1464. type Info_builder struct {
  1465. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  1466. // The title of the application.
  1467. Title string
  1468. // A short description of the application. GFM syntax can be used for rich
  1469. // text representation.
  1470. Description string
  1471. // The Terms of Service for the API.
  1472. TermsOfService string
  1473. // The contact information for the exposed API.
  1474. Contact *Contact
  1475. // The license information for the exposed API.
  1476. License *License
  1477. // Provides the version of the application API (not to be confused
  1478. // with the specification version).
  1479. Version string
  1480. // Custom properties that start with "x-" such as "x-foo" used to describe
  1481. // extra functionality that is not covered by the standard OpenAPI Specification.
  1482. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  1483. Extensions map[string]*structpb.Value
  1484. }
  1485. func (b0 Info_builder) Build() *Info {
  1486. m0 := &Info{}
  1487. b, x := &b0, m0
  1488. _, _ = b, x
  1489. x.Title = b.Title
  1490. x.Description = b.Description
  1491. x.TermsOfService = b.TermsOfService
  1492. x.Contact = b.Contact
  1493. x.License = b.License
  1494. x.Version = b.Version
  1495. x.Extensions = b.Extensions
  1496. return m0
  1497. }
  1498. // `Contact` is a representation of OpenAPI v2 specification's Contact object.
  1499. //
  1500. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#contactObject
  1501. //
  1502. // Example:
  1503. //
  1504. // option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
  1505. // info: {
  1506. // ...
  1507. // contact: {
  1508. // name: "gRPC-Gateway project";
  1509. // url: "https://github.com/grpc-ecosystem/grpc-gateway";
  1510. // email: "none@example.com";
  1511. // };
  1512. // ...
  1513. // };
  1514. // ...
  1515. // };
  1516. type Contact struct {
  1517. state protoimpl.MessageState `protogen:"hybrid.v1"`
  1518. // The identifying name of the contact person/organization.
  1519. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1520. // The URL pointing to the contact information. MUST be in the format of a
  1521. // URL.
  1522. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  1523. // The email address of the contact person/organization. MUST be in the format
  1524. // of an email address.
  1525. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
  1526. unknownFields protoimpl.UnknownFields
  1527. sizeCache protoimpl.SizeCache
  1528. }
  1529. func (x *Contact) Reset() {
  1530. *x = Contact{}
  1531. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[7]
  1532. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1533. ms.StoreMessageInfo(mi)
  1534. }
  1535. func (x *Contact) String() string {
  1536. return protoimpl.X.MessageStringOf(x)
  1537. }
  1538. func (*Contact) ProtoMessage() {}
  1539. func (x *Contact) ProtoReflect() protoreflect.Message {
  1540. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[7]
  1541. if x != nil {
  1542. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1543. if ms.LoadMessageInfo() == nil {
  1544. ms.StoreMessageInfo(mi)
  1545. }
  1546. return ms
  1547. }
  1548. return mi.MessageOf(x)
  1549. }
  1550. func (x *Contact) GetName() string {
  1551. if x != nil {
  1552. return x.Name
  1553. }
  1554. return ""
  1555. }
  1556. func (x *Contact) GetUrl() string {
  1557. if x != nil {
  1558. return x.Url
  1559. }
  1560. return ""
  1561. }
  1562. func (x *Contact) GetEmail() string {
  1563. if x != nil {
  1564. return x.Email
  1565. }
  1566. return ""
  1567. }
  1568. func (x *Contact) SetName(v string) {
  1569. x.Name = v
  1570. }
  1571. func (x *Contact) SetUrl(v string) {
  1572. x.Url = v
  1573. }
  1574. func (x *Contact) SetEmail(v string) {
  1575. x.Email = v
  1576. }
  1577. type Contact_builder struct {
  1578. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  1579. // The identifying name of the contact person/organization.
  1580. Name string
  1581. // The URL pointing to the contact information. MUST be in the format of a
  1582. // URL.
  1583. Url string
  1584. // The email address of the contact person/organization. MUST be in the format
  1585. // of an email address.
  1586. Email string
  1587. }
  1588. func (b0 Contact_builder) Build() *Contact {
  1589. m0 := &Contact{}
  1590. b, x := &b0, m0
  1591. _, _ = b, x
  1592. x.Name = b.Name
  1593. x.Url = b.Url
  1594. x.Email = b.Email
  1595. return m0
  1596. }
  1597. // `License` is a representation of OpenAPI v2 specification's License object.
  1598. //
  1599. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#licenseObject
  1600. //
  1601. // Example:
  1602. //
  1603. // option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
  1604. // info: {
  1605. // ...
  1606. // license: {
  1607. // name: "BSD 3-Clause License";
  1608. // url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/main/LICENSE";
  1609. // };
  1610. // ...
  1611. // };
  1612. // ...
  1613. // };
  1614. type License struct {
  1615. state protoimpl.MessageState `protogen:"hybrid.v1"`
  1616. // The license name used for the API.
  1617. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1618. // A URL to the license used for the API. MUST be in the format of a URL.
  1619. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  1620. unknownFields protoimpl.UnknownFields
  1621. sizeCache protoimpl.SizeCache
  1622. }
  1623. func (x *License) Reset() {
  1624. *x = License{}
  1625. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[8]
  1626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1627. ms.StoreMessageInfo(mi)
  1628. }
  1629. func (x *License) String() string {
  1630. return protoimpl.X.MessageStringOf(x)
  1631. }
  1632. func (*License) ProtoMessage() {}
  1633. func (x *License) ProtoReflect() protoreflect.Message {
  1634. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[8]
  1635. if x != nil {
  1636. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1637. if ms.LoadMessageInfo() == nil {
  1638. ms.StoreMessageInfo(mi)
  1639. }
  1640. return ms
  1641. }
  1642. return mi.MessageOf(x)
  1643. }
  1644. func (x *License) GetName() string {
  1645. if x != nil {
  1646. return x.Name
  1647. }
  1648. return ""
  1649. }
  1650. func (x *License) GetUrl() string {
  1651. if x != nil {
  1652. return x.Url
  1653. }
  1654. return ""
  1655. }
  1656. func (x *License) SetName(v string) {
  1657. x.Name = v
  1658. }
  1659. func (x *License) SetUrl(v string) {
  1660. x.Url = v
  1661. }
  1662. type License_builder struct {
  1663. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  1664. // The license name used for the API.
  1665. Name string
  1666. // A URL to the license used for the API. MUST be in the format of a URL.
  1667. Url string
  1668. }
  1669. func (b0 License_builder) Build() *License {
  1670. m0 := &License{}
  1671. b, x := &b0, m0
  1672. _, _ = b, x
  1673. x.Name = b.Name
  1674. x.Url = b.Url
  1675. return m0
  1676. }
  1677. // `ExternalDocumentation` is a representation of OpenAPI v2 specification's
  1678. // ExternalDocumentation object.
  1679. //
  1680. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#externalDocumentationObject
  1681. //
  1682. // Example:
  1683. //
  1684. // option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
  1685. // ...
  1686. // external_docs: {
  1687. // description: "More about gRPC-Gateway";
  1688. // url: "https://github.com/grpc-ecosystem/grpc-gateway";
  1689. // }
  1690. // ...
  1691. // };
  1692. type ExternalDocumentation struct {
  1693. state protoimpl.MessageState `protogen:"hybrid.v1"`
  1694. // A short description of the target documentation. GFM syntax can be used for
  1695. // rich text representation.
  1696. Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
  1697. // The URL for the target documentation. Value MUST be in the format
  1698. // of a URL.
  1699. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  1700. unknownFields protoimpl.UnknownFields
  1701. sizeCache protoimpl.SizeCache
  1702. }
  1703. func (x *ExternalDocumentation) Reset() {
  1704. *x = ExternalDocumentation{}
  1705. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[9]
  1706. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1707. ms.StoreMessageInfo(mi)
  1708. }
  1709. func (x *ExternalDocumentation) String() string {
  1710. return protoimpl.X.MessageStringOf(x)
  1711. }
  1712. func (*ExternalDocumentation) ProtoMessage() {}
  1713. func (x *ExternalDocumentation) ProtoReflect() protoreflect.Message {
  1714. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[9]
  1715. if x != nil {
  1716. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1717. if ms.LoadMessageInfo() == nil {
  1718. ms.StoreMessageInfo(mi)
  1719. }
  1720. return ms
  1721. }
  1722. return mi.MessageOf(x)
  1723. }
  1724. func (x *ExternalDocumentation) GetDescription() string {
  1725. if x != nil {
  1726. return x.Description
  1727. }
  1728. return ""
  1729. }
  1730. func (x *ExternalDocumentation) GetUrl() string {
  1731. if x != nil {
  1732. return x.Url
  1733. }
  1734. return ""
  1735. }
  1736. func (x *ExternalDocumentation) SetDescription(v string) {
  1737. x.Description = v
  1738. }
  1739. func (x *ExternalDocumentation) SetUrl(v string) {
  1740. x.Url = v
  1741. }
  1742. type ExternalDocumentation_builder struct {
  1743. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  1744. // A short description of the target documentation. GFM syntax can be used for
  1745. // rich text representation.
  1746. Description string
  1747. // The URL for the target documentation. Value MUST be in the format
  1748. // of a URL.
  1749. Url string
  1750. }
  1751. func (b0 ExternalDocumentation_builder) Build() *ExternalDocumentation {
  1752. m0 := &ExternalDocumentation{}
  1753. b, x := &b0, m0
  1754. _, _ = b, x
  1755. x.Description = b.Description
  1756. x.Url = b.Url
  1757. return m0
  1758. }
  1759. // `Schema` is a representation of OpenAPI v2 specification's Schema object.
  1760. //
  1761. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
  1762. type Schema struct {
  1763. state protoimpl.MessageState `protogen:"hybrid.v1"`
  1764. JsonSchema *JSONSchema `protobuf:"bytes,1,opt,name=json_schema,json=jsonSchema,proto3" json:"json_schema,omitempty"`
  1765. // Adds support for polymorphism. The discriminator is the schema property
  1766. // name that is used to differentiate between other schema that inherit this
  1767. // schema. The property name used MUST be defined at this schema and it MUST
  1768. // be in the required property list. When used, the value MUST be the name of
  1769. // this schema or any schema that inherits it.
  1770. Discriminator string `protobuf:"bytes,2,opt,name=discriminator,proto3" json:"discriminator,omitempty"`
  1771. // Relevant only for Schema "properties" definitions. Declares the property as
  1772. // "read only". This means that it MAY be sent as part of a response but MUST
  1773. // NOT be sent as part of the request. Properties marked as readOnly being
  1774. // true SHOULD NOT be in the required list of the defined schema. Default
  1775. // value is false.
  1776. ReadOnly bool `protobuf:"varint,3,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"`
  1777. // Additional external documentation for this schema.
  1778. ExternalDocs *ExternalDocumentation `protobuf:"bytes,5,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  1779. // A free-form property to include an example of an instance for this schema in JSON.
  1780. // This is copied verbatim to the output.
  1781. Example string `protobuf:"bytes,6,opt,name=example,proto3" json:"example,omitempty"`
  1782. unknownFields protoimpl.UnknownFields
  1783. sizeCache protoimpl.SizeCache
  1784. }
  1785. func (x *Schema) Reset() {
  1786. *x = Schema{}
  1787. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[10]
  1788. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1789. ms.StoreMessageInfo(mi)
  1790. }
  1791. func (x *Schema) String() string {
  1792. return protoimpl.X.MessageStringOf(x)
  1793. }
  1794. func (*Schema) ProtoMessage() {}
  1795. func (x *Schema) ProtoReflect() protoreflect.Message {
  1796. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[10]
  1797. if x != nil {
  1798. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1799. if ms.LoadMessageInfo() == nil {
  1800. ms.StoreMessageInfo(mi)
  1801. }
  1802. return ms
  1803. }
  1804. return mi.MessageOf(x)
  1805. }
  1806. func (x *Schema) GetJsonSchema() *JSONSchema {
  1807. if x != nil {
  1808. return x.JsonSchema
  1809. }
  1810. return nil
  1811. }
  1812. func (x *Schema) GetDiscriminator() string {
  1813. if x != nil {
  1814. return x.Discriminator
  1815. }
  1816. return ""
  1817. }
  1818. func (x *Schema) GetReadOnly() bool {
  1819. if x != nil {
  1820. return x.ReadOnly
  1821. }
  1822. return false
  1823. }
  1824. func (x *Schema) GetExternalDocs() *ExternalDocumentation {
  1825. if x != nil {
  1826. return x.ExternalDocs
  1827. }
  1828. return nil
  1829. }
  1830. func (x *Schema) GetExample() string {
  1831. if x != nil {
  1832. return x.Example
  1833. }
  1834. return ""
  1835. }
  1836. func (x *Schema) SetJsonSchema(v *JSONSchema) {
  1837. x.JsonSchema = v
  1838. }
  1839. func (x *Schema) SetDiscriminator(v string) {
  1840. x.Discriminator = v
  1841. }
  1842. func (x *Schema) SetReadOnly(v bool) {
  1843. x.ReadOnly = v
  1844. }
  1845. func (x *Schema) SetExternalDocs(v *ExternalDocumentation) {
  1846. x.ExternalDocs = v
  1847. }
  1848. func (x *Schema) SetExample(v string) {
  1849. x.Example = v
  1850. }
  1851. func (x *Schema) HasJsonSchema() bool {
  1852. if x == nil {
  1853. return false
  1854. }
  1855. return x.JsonSchema != nil
  1856. }
  1857. func (x *Schema) HasExternalDocs() bool {
  1858. if x == nil {
  1859. return false
  1860. }
  1861. return x.ExternalDocs != nil
  1862. }
  1863. func (x *Schema) ClearJsonSchema() {
  1864. x.JsonSchema = nil
  1865. }
  1866. func (x *Schema) ClearExternalDocs() {
  1867. x.ExternalDocs = nil
  1868. }
  1869. type Schema_builder struct {
  1870. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  1871. JsonSchema *JSONSchema
  1872. // Adds support for polymorphism. The discriminator is the schema property
  1873. // name that is used to differentiate between other schema that inherit this
  1874. // schema. The property name used MUST be defined at this schema and it MUST
  1875. // be in the required property list. When used, the value MUST be the name of
  1876. // this schema or any schema that inherits it.
  1877. Discriminator string
  1878. // Relevant only for Schema "properties" definitions. Declares the property as
  1879. // "read only". This means that it MAY be sent as part of a response but MUST
  1880. // NOT be sent as part of the request. Properties marked as readOnly being
  1881. // true SHOULD NOT be in the required list of the defined schema. Default
  1882. // value is false.
  1883. ReadOnly bool
  1884. // Additional external documentation for this schema.
  1885. ExternalDocs *ExternalDocumentation
  1886. // A free-form property to include an example of an instance for this schema in JSON.
  1887. // This is copied verbatim to the output.
  1888. Example string
  1889. }
  1890. func (b0 Schema_builder) Build() *Schema {
  1891. m0 := &Schema{}
  1892. b, x := &b0, m0
  1893. _, _ = b, x
  1894. x.JsonSchema = b.JsonSchema
  1895. x.Discriminator = b.Discriminator
  1896. x.ReadOnly = b.ReadOnly
  1897. x.ExternalDocs = b.ExternalDocs
  1898. x.Example = b.Example
  1899. return m0
  1900. }
  1901. // `EnumSchema` is subset of fields from the OpenAPI v2 specification's Schema object.
  1902. // Only fields that are applicable to Enums are included
  1903. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
  1904. //
  1905. // Example:
  1906. //
  1907. // option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_enum) = {
  1908. // ...
  1909. // title: "MyEnum";
  1910. // description:"This is my nice enum";
  1911. // example: "ZERO";
  1912. // required: true;
  1913. // ...
  1914. // };
  1915. type EnumSchema struct {
  1916. state protoimpl.MessageState `protogen:"hybrid.v1"`
  1917. // A short description of the schema.
  1918. Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
  1919. Default string `protobuf:"bytes,2,opt,name=default,proto3" json:"default,omitempty"`
  1920. // The title of the schema.
  1921. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title,omitempty"`
  1922. Required bool `protobuf:"varint,4,opt,name=required,proto3" json:"required,omitempty"`
  1923. ReadOnly bool `protobuf:"varint,5,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"`
  1924. // Additional external documentation for this schema.
  1925. ExternalDocs *ExternalDocumentation `protobuf:"bytes,6,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  1926. Example string `protobuf:"bytes,7,opt,name=example,proto3" json:"example,omitempty"`
  1927. // Ref is used to define an external reference to include in the message.
  1928. // This could be a fully qualified proto message reference, and that type must
  1929. // be imported into the protofile. If no message is identified, the Ref will
  1930. // be used verbatim in the output.
  1931. // For example:
  1932. //
  1933. // `ref: ".google.protobuf.Timestamp"`.
  1934. Ref string `protobuf:"bytes,8,opt,name=ref,proto3" json:"ref,omitempty"`
  1935. // Custom properties that start with "x-" such as "x-foo" used to describe
  1936. // extra functionality that is not covered by the standard OpenAPI Specification.
  1937. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  1938. Extensions map[string]*structpb.Value `protobuf:"bytes,9,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1939. unknownFields protoimpl.UnknownFields
  1940. sizeCache protoimpl.SizeCache
  1941. }
  1942. func (x *EnumSchema) Reset() {
  1943. *x = EnumSchema{}
  1944. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[11]
  1945. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1946. ms.StoreMessageInfo(mi)
  1947. }
  1948. func (x *EnumSchema) String() string {
  1949. return protoimpl.X.MessageStringOf(x)
  1950. }
  1951. func (*EnumSchema) ProtoMessage() {}
  1952. func (x *EnumSchema) ProtoReflect() protoreflect.Message {
  1953. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[11]
  1954. if x != nil {
  1955. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1956. if ms.LoadMessageInfo() == nil {
  1957. ms.StoreMessageInfo(mi)
  1958. }
  1959. return ms
  1960. }
  1961. return mi.MessageOf(x)
  1962. }
  1963. func (x *EnumSchema) GetDescription() string {
  1964. if x != nil {
  1965. return x.Description
  1966. }
  1967. return ""
  1968. }
  1969. func (x *EnumSchema) GetDefault() string {
  1970. if x != nil {
  1971. return x.Default
  1972. }
  1973. return ""
  1974. }
  1975. func (x *EnumSchema) GetTitle() string {
  1976. if x != nil {
  1977. return x.Title
  1978. }
  1979. return ""
  1980. }
  1981. func (x *EnumSchema) GetRequired() bool {
  1982. if x != nil {
  1983. return x.Required
  1984. }
  1985. return false
  1986. }
  1987. func (x *EnumSchema) GetReadOnly() bool {
  1988. if x != nil {
  1989. return x.ReadOnly
  1990. }
  1991. return false
  1992. }
  1993. func (x *EnumSchema) GetExternalDocs() *ExternalDocumentation {
  1994. if x != nil {
  1995. return x.ExternalDocs
  1996. }
  1997. return nil
  1998. }
  1999. func (x *EnumSchema) GetExample() string {
  2000. if x != nil {
  2001. return x.Example
  2002. }
  2003. return ""
  2004. }
  2005. func (x *EnumSchema) GetRef() string {
  2006. if x != nil {
  2007. return x.Ref
  2008. }
  2009. return ""
  2010. }
  2011. func (x *EnumSchema) GetExtensions() map[string]*structpb.Value {
  2012. if x != nil {
  2013. return x.Extensions
  2014. }
  2015. return nil
  2016. }
  2017. func (x *EnumSchema) SetDescription(v string) {
  2018. x.Description = v
  2019. }
  2020. func (x *EnumSchema) SetDefault(v string) {
  2021. x.Default = v
  2022. }
  2023. func (x *EnumSchema) SetTitle(v string) {
  2024. x.Title = v
  2025. }
  2026. func (x *EnumSchema) SetRequired(v bool) {
  2027. x.Required = v
  2028. }
  2029. func (x *EnumSchema) SetReadOnly(v bool) {
  2030. x.ReadOnly = v
  2031. }
  2032. func (x *EnumSchema) SetExternalDocs(v *ExternalDocumentation) {
  2033. x.ExternalDocs = v
  2034. }
  2035. func (x *EnumSchema) SetExample(v string) {
  2036. x.Example = v
  2037. }
  2038. func (x *EnumSchema) SetRef(v string) {
  2039. x.Ref = v
  2040. }
  2041. func (x *EnumSchema) SetExtensions(v map[string]*structpb.Value) {
  2042. x.Extensions = v
  2043. }
  2044. func (x *EnumSchema) HasExternalDocs() bool {
  2045. if x == nil {
  2046. return false
  2047. }
  2048. return x.ExternalDocs != nil
  2049. }
  2050. func (x *EnumSchema) ClearExternalDocs() {
  2051. x.ExternalDocs = nil
  2052. }
  2053. type EnumSchema_builder struct {
  2054. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  2055. // A short description of the schema.
  2056. Description string
  2057. Default string
  2058. // The title of the schema.
  2059. Title string
  2060. Required bool
  2061. ReadOnly bool
  2062. // Additional external documentation for this schema.
  2063. ExternalDocs *ExternalDocumentation
  2064. Example string
  2065. // Ref is used to define an external reference to include in the message.
  2066. // This could be a fully qualified proto message reference, and that type must
  2067. // be imported into the protofile. If no message is identified, the Ref will
  2068. // be used verbatim in the output.
  2069. // For example:
  2070. //
  2071. // `ref: ".google.protobuf.Timestamp"`.
  2072. Ref string
  2073. // Custom properties that start with "x-" such as "x-foo" used to describe
  2074. // extra functionality that is not covered by the standard OpenAPI Specification.
  2075. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  2076. Extensions map[string]*structpb.Value
  2077. }
  2078. func (b0 EnumSchema_builder) Build() *EnumSchema {
  2079. m0 := &EnumSchema{}
  2080. b, x := &b0, m0
  2081. _, _ = b, x
  2082. x.Description = b.Description
  2083. x.Default = b.Default
  2084. x.Title = b.Title
  2085. x.Required = b.Required
  2086. x.ReadOnly = b.ReadOnly
  2087. x.ExternalDocs = b.ExternalDocs
  2088. x.Example = b.Example
  2089. x.Ref = b.Ref
  2090. x.Extensions = b.Extensions
  2091. return m0
  2092. }
  2093. // `JSONSchema` represents properties from JSON Schema taken, and as used, in
  2094. // the OpenAPI v2 spec.
  2095. //
  2096. // This includes changes made by OpenAPI v2.
  2097. //
  2098. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
  2099. //
  2100. // See also: https://cswr.github.io/JsonSchema/spec/basic_types/,
  2101. // https://github.com/json-schema-org/json-schema-spec/blob/master/schema.json
  2102. //
  2103. // Example:
  2104. //
  2105. // message SimpleMessage {
  2106. // option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
  2107. // json_schema: {
  2108. // title: "SimpleMessage"
  2109. // description: "A simple message."
  2110. // required: ["id"]
  2111. // }
  2112. // };
  2113. //
  2114. // // Id represents the message identifier.
  2115. // string id = 1; [
  2116. // (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
  2117. // description: "The unique identifier of the simple message."
  2118. // }];
  2119. // }
  2120. type JSONSchema struct {
  2121. state protoimpl.MessageState `protogen:"hybrid.v1"`
  2122. // Ref is used to define an external reference to include in the message.
  2123. // This could be a fully qualified proto message reference, and that type must
  2124. // be imported into the protofile. If no message is identified, the Ref will
  2125. // be used verbatim in the output.
  2126. // For example:
  2127. //
  2128. // `ref: ".google.protobuf.Timestamp"`.
  2129. Ref string `protobuf:"bytes,3,opt,name=ref,proto3" json:"ref,omitempty"`
  2130. // The title of the schema.
  2131. Title string `protobuf:"bytes,5,opt,name=title,proto3" json:"title,omitempty"`
  2132. // A short description of the schema.
  2133. Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
  2134. Default string `protobuf:"bytes,7,opt,name=default,proto3" json:"default,omitempty"`
  2135. ReadOnly bool `protobuf:"varint,8,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"`
  2136. // A free-form property to include a JSON example of this field. This is copied
  2137. // verbatim to the output swagger.json. Quotes must be escaped.
  2138. // This property is the same for 2.0 and 3.0.0 https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/3.0.0.md#schemaObject https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
  2139. Example string `protobuf:"bytes,9,opt,name=example,proto3" json:"example,omitempty"`
  2140. MultipleOf float64 `protobuf:"fixed64,10,opt,name=multiple_of,json=multipleOf,proto3" json:"multiple_of,omitempty"`
  2141. // Maximum represents an inclusive upper limit for a numeric instance. The
  2142. // value of MUST be a number,
  2143. Maximum float64 `protobuf:"fixed64,11,opt,name=maximum,proto3" json:"maximum,omitempty"`
  2144. ExclusiveMaximum bool `protobuf:"varint,12,opt,name=exclusive_maximum,json=exclusiveMaximum,proto3" json:"exclusive_maximum,omitempty"`
  2145. // minimum represents an inclusive lower limit for a numeric instance. The
  2146. // value of MUST be a number,
  2147. Minimum float64 `protobuf:"fixed64,13,opt,name=minimum,proto3" json:"minimum,omitempty"`
  2148. ExclusiveMinimum bool `protobuf:"varint,14,opt,name=exclusive_minimum,json=exclusiveMinimum,proto3" json:"exclusive_minimum,omitempty"`
  2149. MaxLength uint64 `protobuf:"varint,15,opt,name=max_length,json=maxLength,proto3" json:"max_length,omitempty"`
  2150. MinLength uint64 `protobuf:"varint,16,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
  2151. Pattern string `protobuf:"bytes,17,opt,name=pattern,proto3" json:"pattern,omitempty"`
  2152. MaxItems uint64 `protobuf:"varint,20,opt,name=max_items,json=maxItems,proto3" json:"max_items,omitempty"`
  2153. MinItems uint64 `protobuf:"varint,21,opt,name=min_items,json=minItems,proto3" json:"min_items,omitempty"`
  2154. UniqueItems bool `protobuf:"varint,22,opt,name=unique_items,json=uniqueItems,proto3" json:"unique_items,omitempty"`
  2155. MaxProperties uint64 `protobuf:"varint,24,opt,name=max_properties,json=maxProperties,proto3" json:"max_properties,omitempty"`
  2156. MinProperties uint64 `protobuf:"varint,25,opt,name=min_properties,json=minProperties,proto3" json:"min_properties,omitempty"`
  2157. Required []string `protobuf:"bytes,26,rep,name=required,proto3" json:"required,omitempty"`
  2158. // Items in 'array' must be unique.
  2159. Array []string `protobuf:"bytes,34,rep,name=array,proto3" json:"array,omitempty"`
  2160. Type []JSONSchema_JSONSchemaSimpleTypes `protobuf:"varint,35,rep,packed,name=type,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.JSONSchema_JSONSchemaSimpleTypes" json:"type,omitempty"`
  2161. // `Format`
  2162. Format string `protobuf:"bytes,36,opt,name=format,proto3" json:"format,omitempty"`
  2163. // Items in `enum` must be unique https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.5.1
  2164. Enum []string `protobuf:"bytes,46,rep,name=enum,proto3" json:"enum,omitempty"`
  2165. // Additional field level properties used when generating the OpenAPI v2 file.
  2166. FieldConfiguration *JSONSchema_FieldConfiguration `protobuf:"bytes,1001,opt,name=field_configuration,json=fieldConfiguration,proto3" json:"field_configuration,omitempty"`
  2167. // Custom properties that start with "x-" such as "x-foo" used to describe
  2168. // extra functionality that is not covered by the standard OpenAPI Specification.
  2169. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  2170. Extensions map[string]*structpb.Value `protobuf:"bytes,48,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  2171. unknownFields protoimpl.UnknownFields
  2172. sizeCache protoimpl.SizeCache
  2173. }
  2174. func (x *JSONSchema) Reset() {
  2175. *x = JSONSchema{}
  2176. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[12]
  2177. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2178. ms.StoreMessageInfo(mi)
  2179. }
  2180. func (x *JSONSchema) String() string {
  2181. return protoimpl.X.MessageStringOf(x)
  2182. }
  2183. func (*JSONSchema) ProtoMessage() {}
  2184. func (x *JSONSchema) ProtoReflect() protoreflect.Message {
  2185. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[12]
  2186. if x != nil {
  2187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2188. if ms.LoadMessageInfo() == nil {
  2189. ms.StoreMessageInfo(mi)
  2190. }
  2191. return ms
  2192. }
  2193. return mi.MessageOf(x)
  2194. }
  2195. func (x *JSONSchema) GetRef() string {
  2196. if x != nil {
  2197. return x.Ref
  2198. }
  2199. return ""
  2200. }
  2201. func (x *JSONSchema) GetTitle() string {
  2202. if x != nil {
  2203. return x.Title
  2204. }
  2205. return ""
  2206. }
  2207. func (x *JSONSchema) GetDescription() string {
  2208. if x != nil {
  2209. return x.Description
  2210. }
  2211. return ""
  2212. }
  2213. func (x *JSONSchema) GetDefault() string {
  2214. if x != nil {
  2215. return x.Default
  2216. }
  2217. return ""
  2218. }
  2219. func (x *JSONSchema) GetReadOnly() bool {
  2220. if x != nil {
  2221. return x.ReadOnly
  2222. }
  2223. return false
  2224. }
  2225. func (x *JSONSchema) GetExample() string {
  2226. if x != nil {
  2227. return x.Example
  2228. }
  2229. return ""
  2230. }
  2231. func (x *JSONSchema) GetMultipleOf() float64 {
  2232. if x != nil {
  2233. return x.MultipleOf
  2234. }
  2235. return 0
  2236. }
  2237. func (x *JSONSchema) GetMaximum() float64 {
  2238. if x != nil {
  2239. return x.Maximum
  2240. }
  2241. return 0
  2242. }
  2243. func (x *JSONSchema) GetExclusiveMaximum() bool {
  2244. if x != nil {
  2245. return x.ExclusiveMaximum
  2246. }
  2247. return false
  2248. }
  2249. func (x *JSONSchema) GetMinimum() float64 {
  2250. if x != nil {
  2251. return x.Minimum
  2252. }
  2253. return 0
  2254. }
  2255. func (x *JSONSchema) GetExclusiveMinimum() bool {
  2256. if x != nil {
  2257. return x.ExclusiveMinimum
  2258. }
  2259. return false
  2260. }
  2261. func (x *JSONSchema) GetMaxLength() uint64 {
  2262. if x != nil {
  2263. return x.MaxLength
  2264. }
  2265. return 0
  2266. }
  2267. func (x *JSONSchema) GetMinLength() uint64 {
  2268. if x != nil {
  2269. return x.MinLength
  2270. }
  2271. return 0
  2272. }
  2273. func (x *JSONSchema) GetPattern() string {
  2274. if x != nil {
  2275. return x.Pattern
  2276. }
  2277. return ""
  2278. }
  2279. func (x *JSONSchema) GetMaxItems() uint64 {
  2280. if x != nil {
  2281. return x.MaxItems
  2282. }
  2283. return 0
  2284. }
  2285. func (x *JSONSchema) GetMinItems() uint64 {
  2286. if x != nil {
  2287. return x.MinItems
  2288. }
  2289. return 0
  2290. }
  2291. func (x *JSONSchema) GetUniqueItems() bool {
  2292. if x != nil {
  2293. return x.UniqueItems
  2294. }
  2295. return false
  2296. }
  2297. func (x *JSONSchema) GetMaxProperties() uint64 {
  2298. if x != nil {
  2299. return x.MaxProperties
  2300. }
  2301. return 0
  2302. }
  2303. func (x *JSONSchema) GetMinProperties() uint64 {
  2304. if x != nil {
  2305. return x.MinProperties
  2306. }
  2307. return 0
  2308. }
  2309. func (x *JSONSchema) GetRequired() []string {
  2310. if x != nil {
  2311. return x.Required
  2312. }
  2313. return nil
  2314. }
  2315. func (x *JSONSchema) GetArray() []string {
  2316. if x != nil {
  2317. return x.Array
  2318. }
  2319. return nil
  2320. }
  2321. func (x *JSONSchema) GetType() []JSONSchema_JSONSchemaSimpleTypes {
  2322. if x != nil {
  2323. return x.Type
  2324. }
  2325. return nil
  2326. }
  2327. func (x *JSONSchema) GetFormat() string {
  2328. if x != nil {
  2329. return x.Format
  2330. }
  2331. return ""
  2332. }
  2333. func (x *JSONSchema) GetEnum() []string {
  2334. if x != nil {
  2335. return x.Enum
  2336. }
  2337. return nil
  2338. }
  2339. func (x *JSONSchema) GetFieldConfiguration() *JSONSchema_FieldConfiguration {
  2340. if x != nil {
  2341. return x.FieldConfiguration
  2342. }
  2343. return nil
  2344. }
  2345. func (x *JSONSchema) GetExtensions() map[string]*structpb.Value {
  2346. if x != nil {
  2347. return x.Extensions
  2348. }
  2349. return nil
  2350. }
  2351. func (x *JSONSchema) SetRef(v string) {
  2352. x.Ref = v
  2353. }
  2354. func (x *JSONSchema) SetTitle(v string) {
  2355. x.Title = v
  2356. }
  2357. func (x *JSONSchema) SetDescription(v string) {
  2358. x.Description = v
  2359. }
  2360. func (x *JSONSchema) SetDefault(v string) {
  2361. x.Default = v
  2362. }
  2363. func (x *JSONSchema) SetReadOnly(v bool) {
  2364. x.ReadOnly = v
  2365. }
  2366. func (x *JSONSchema) SetExample(v string) {
  2367. x.Example = v
  2368. }
  2369. func (x *JSONSchema) SetMultipleOf(v float64) {
  2370. x.MultipleOf = v
  2371. }
  2372. func (x *JSONSchema) SetMaximum(v float64) {
  2373. x.Maximum = v
  2374. }
  2375. func (x *JSONSchema) SetExclusiveMaximum(v bool) {
  2376. x.ExclusiveMaximum = v
  2377. }
  2378. func (x *JSONSchema) SetMinimum(v float64) {
  2379. x.Minimum = v
  2380. }
  2381. func (x *JSONSchema) SetExclusiveMinimum(v bool) {
  2382. x.ExclusiveMinimum = v
  2383. }
  2384. func (x *JSONSchema) SetMaxLength(v uint64) {
  2385. x.MaxLength = v
  2386. }
  2387. func (x *JSONSchema) SetMinLength(v uint64) {
  2388. x.MinLength = v
  2389. }
  2390. func (x *JSONSchema) SetPattern(v string) {
  2391. x.Pattern = v
  2392. }
  2393. func (x *JSONSchema) SetMaxItems(v uint64) {
  2394. x.MaxItems = v
  2395. }
  2396. func (x *JSONSchema) SetMinItems(v uint64) {
  2397. x.MinItems = v
  2398. }
  2399. func (x *JSONSchema) SetUniqueItems(v bool) {
  2400. x.UniqueItems = v
  2401. }
  2402. func (x *JSONSchema) SetMaxProperties(v uint64) {
  2403. x.MaxProperties = v
  2404. }
  2405. func (x *JSONSchema) SetMinProperties(v uint64) {
  2406. x.MinProperties = v
  2407. }
  2408. func (x *JSONSchema) SetRequired(v []string) {
  2409. x.Required = v
  2410. }
  2411. func (x *JSONSchema) SetArray(v []string) {
  2412. x.Array = v
  2413. }
  2414. func (x *JSONSchema) SetType(v []JSONSchema_JSONSchemaSimpleTypes) {
  2415. x.Type = v
  2416. }
  2417. func (x *JSONSchema) SetFormat(v string) {
  2418. x.Format = v
  2419. }
  2420. func (x *JSONSchema) SetEnum(v []string) {
  2421. x.Enum = v
  2422. }
  2423. func (x *JSONSchema) SetFieldConfiguration(v *JSONSchema_FieldConfiguration) {
  2424. x.FieldConfiguration = v
  2425. }
  2426. func (x *JSONSchema) SetExtensions(v map[string]*structpb.Value) {
  2427. x.Extensions = v
  2428. }
  2429. func (x *JSONSchema) HasFieldConfiguration() bool {
  2430. if x == nil {
  2431. return false
  2432. }
  2433. return x.FieldConfiguration != nil
  2434. }
  2435. func (x *JSONSchema) ClearFieldConfiguration() {
  2436. x.FieldConfiguration = nil
  2437. }
  2438. type JSONSchema_builder struct {
  2439. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  2440. // Ref is used to define an external reference to include in the message.
  2441. // This could be a fully qualified proto message reference, and that type must
  2442. // be imported into the protofile. If no message is identified, the Ref will
  2443. // be used verbatim in the output.
  2444. // For example:
  2445. //
  2446. // `ref: ".google.protobuf.Timestamp"`.
  2447. Ref string
  2448. // The title of the schema.
  2449. Title string
  2450. // A short description of the schema.
  2451. Description string
  2452. Default string
  2453. ReadOnly bool
  2454. // A free-form property to include a JSON example of this field. This is copied
  2455. // verbatim to the output swagger.json. Quotes must be escaped.
  2456. // This property is the same for 2.0 and 3.0.0 https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/3.0.0.md#schemaObject https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
  2457. Example string
  2458. MultipleOf float64
  2459. // Maximum represents an inclusive upper limit for a numeric instance. The
  2460. // value of MUST be a number,
  2461. Maximum float64
  2462. ExclusiveMaximum bool
  2463. // minimum represents an inclusive lower limit for a numeric instance. The
  2464. // value of MUST be a number,
  2465. Minimum float64
  2466. ExclusiveMinimum bool
  2467. MaxLength uint64
  2468. MinLength uint64
  2469. Pattern string
  2470. MaxItems uint64
  2471. MinItems uint64
  2472. UniqueItems bool
  2473. MaxProperties uint64
  2474. MinProperties uint64
  2475. Required []string
  2476. // Items in 'array' must be unique.
  2477. Array []string
  2478. Type []JSONSchema_JSONSchemaSimpleTypes
  2479. // `Format`
  2480. Format string
  2481. // Items in `enum` must be unique https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.5.1
  2482. Enum []string
  2483. // Additional field level properties used when generating the OpenAPI v2 file.
  2484. FieldConfiguration *JSONSchema_FieldConfiguration
  2485. // Custom properties that start with "x-" such as "x-foo" used to describe
  2486. // extra functionality that is not covered by the standard OpenAPI Specification.
  2487. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  2488. Extensions map[string]*structpb.Value
  2489. }
  2490. func (b0 JSONSchema_builder) Build() *JSONSchema {
  2491. m0 := &JSONSchema{}
  2492. b, x := &b0, m0
  2493. _, _ = b, x
  2494. x.Ref = b.Ref
  2495. x.Title = b.Title
  2496. x.Description = b.Description
  2497. x.Default = b.Default
  2498. x.ReadOnly = b.ReadOnly
  2499. x.Example = b.Example
  2500. x.MultipleOf = b.MultipleOf
  2501. x.Maximum = b.Maximum
  2502. x.ExclusiveMaximum = b.ExclusiveMaximum
  2503. x.Minimum = b.Minimum
  2504. x.ExclusiveMinimum = b.ExclusiveMinimum
  2505. x.MaxLength = b.MaxLength
  2506. x.MinLength = b.MinLength
  2507. x.Pattern = b.Pattern
  2508. x.MaxItems = b.MaxItems
  2509. x.MinItems = b.MinItems
  2510. x.UniqueItems = b.UniqueItems
  2511. x.MaxProperties = b.MaxProperties
  2512. x.MinProperties = b.MinProperties
  2513. x.Required = b.Required
  2514. x.Array = b.Array
  2515. x.Type = b.Type
  2516. x.Format = b.Format
  2517. x.Enum = b.Enum
  2518. x.FieldConfiguration = b.FieldConfiguration
  2519. x.Extensions = b.Extensions
  2520. return m0
  2521. }
  2522. // `Tag` is a representation of OpenAPI v2 specification's Tag object.
  2523. //
  2524. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#tagObject
  2525. type Tag struct {
  2526. state protoimpl.MessageState `protogen:"hybrid.v1"`
  2527. // The name of the tag. Use it to allow override of the name of a
  2528. // global Tag object, then use that name to reference the tag throughout the
  2529. // OpenAPI file.
  2530. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  2531. // A short description for the tag. GFM syntax can be used for rich text
  2532. // representation.
  2533. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  2534. // Additional external documentation for this tag.
  2535. ExternalDocs *ExternalDocumentation `protobuf:"bytes,3,opt,name=external_docs,json=externalDocs,proto3" json:"external_docs,omitempty"`
  2536. // Custom properties that start with "x-" such as "x-foo" used to describe
  2537. // extra functionality that is not covered by the standard OpenAPI Specification.
  2538. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  2539. Extensions map[string]*structpb.Value `protobuf:"bytes,4,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  2540. unknownFields protoimpl.UnknownFields
  2541. sizeCache protoimpl.SizeCache
  2542. }
  2543. func (x *Tag) Reset() {
  2544. *x = Tag{}
  2545. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[13]
  2546. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2547. ms.StoreMessageInfo(mi)
  2548. }
  2549. func (x *Tag) String() string {
  2550. return protoimpl.X.MessageStringOf(x)
  2551. }
  2552. func (*Tag) ProtoMessage() {}
  2553. func (x *Tag) ProtoReflect() protoreflect.Message {
  2554. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[13]
  2555. if x != nil {
  2556. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2557. if ms.LoadMessageInfo() == nil {
  2558. ms.StoreMessageInfo(mi)
  2559. }
  2560. return ms
  2561. }
  2562. return mi.MessageOf(x)
  2563. }
  2564. func (x *Tag) GetName() string {
  2565. if x != nil {
  2566. return x.Name
  2567. }
  2568. return ""
  2569. }
  2570. func (x *Tag) GetDescription() string {
  2571. if x != nil {
  2572. return x.Description
  2573. }
  2574. return ""
  2575. }
  2576. func (x *Tag) GetExternalDocs() *ExternalDocumentation {
  2577. if x != nil {
  2578. return x.ExternalDocs
  2579. }
  2580. return nil
  2581. }
  2582. func (x *Tag) GetExtensions() map[string]*structpb.Value {
  2583. if x != nil {
  2584. return x.Extensions
  2585. }
  2586. return nil
  2587. }
  2588. func (x *Tag) SetName(v string) {
  2589. x.Name = v
  2590. }
  2591. func (x *Tag) SetDescription(v string) {
  2592. x.Description = v
  2593. }
  2594. func (x *Tag) SetExternalDocs(v *ExternalDocumentation) {
  2595. x.ExternalDocs = v
  2596. }
  2597. func (x *Tag) SetExtensions(v map[string]*structpb.Value) {
  2598. x.Extensions = v
  2599. }
  2600. func (x *Tag) HasExternalDocs() bool {
  2601. if x == nil {
  2602. return false
  2603. }
  2604. return x.ExternalDocs != nil
  2605. }
  2606. func (x *Tag) ClearExternalDocs() {
  2607. x.ExternalDocs = nil
  2608. }
  2609. type Tag_builder struct {
  2610. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  2611. // The name of the tag. Use it to allow override of the name of a
  2612. // global Tag object, then use that name to reference the tag throughout the
  2613. // OpenAPI file.
  2614. Name string
  2615. // A short description for the tag. GFM syntax can be used for rich text
  2616. // representation.
  2617. Description string
  2618. // Additional external documentation for this tag.
  2619. ExternalDocs *ExternalDocumentation
  2620. // Custom properties that start with "x-" such as "x-foo" used to describe
  2621. // extra functionality that is not covered by the standard OpenAPI Specification.
  2622. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  2623. Extensions map[string]*structpb.Value
  2624. }
  2625. func (b0 Tag_builder) Build() *Tag {
  2626. m0 := &Tag{}
  2627. b, x := &b0, m0
  2628. _, _ = b, x
  2629. x.Name = b.Name
  2630. x.Description = b.Description
  2631. x.ExternalDocs = b.ExternalDocs
  2632. x.Extensions = b.Extensions
  2633. return m0
  2634. }
  2635. // `SecurityDefinitions` is a representation of OpenAPI v2 specification's
  2636. // Security Definitions object.
  2637. //
  2638. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#securityDefinitionsObject
  2639. //
  2640. // A declaration of the security schemes available to be used in the
  2641. // specification. This does not enforce the security schemes on the operations
  2642. // and only serves to provide the relevant details for each scheme.
  2643. type SecurityDefinitions struct {
  2644. state protoimpl.MessageState `protogen:"hybrid.v1"`
  2645. // A single security scheme definition, mapping a "name" to the scheme it
  2646. // defines.
  2647. Security map[string]*SecurityScheme `protobuf:"bytes,1,rep,name=security,proto3" json:"security,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  2648. unknownFields protoimpl.UnknownFields
  2649. sizeCache protoimpl.SizeCache
  2650. }
  2651. func (x *SecurityDefinitions) Reset() {
  2652. *x = SecurityDefinitions{}
  2653. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[14]
  2654. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2655. ms.StoreMessageInfo(mi)
  2656. }
  2657. func (x *SecurityDefinitions) String() string {
  2658. return protoimpl.X.MessageStringOf(x)
  2659. }
  2660. func (*SecurityDefinitions) ProtoMessage() {}
  2661. func (x *SecurityDefinitions) ProtoReflect() protoreflect.Message {
  2662. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[14]
  2663. if x != nil {
  2664. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2665. if ms.LoadMessageInfo() == nil {
  2666. ms.StoreMessageInfo(mi)
  2667. }
  2668. return ms
  2669. }
  2670. return mi.MessageOf(x)
  2671. }
  2672. func (x *SecurityDefinitions) GetSecurity() map[string]*SecurityScheme {
  2673. if x != nil {
  2674. return x.Security
  2675. }
  2676. return nil
  2677. }
  2678. func (x *SecurityDefinitions) SetSecurity(v map[string]*SecurityScheme) {
  2679. x.Security = v
  2680. }
  2681. type SecurityDefinitions_builder struct {
  2682. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  2683. // A single security scheme definition, mapping a "name" to the scheme it
  2684. // defines.
  2685. Security map[string]*SecurityScheme
  2686. }
  2687. func (b0 SecurityDefinitions_builder) Build() *SecurityDefinitions {
  2688. m0 := &SecurityDefinitions{}
  2689. b, x := &b0, m0
  2690. _, _ = b, x
  2691. x.Security = b.Security
  2692. return m0
  2693. }
  2694. // `SecurityScheme` is a representation of OpenAPI v2 specification's
  2695. // Security Scheme object.
  2696. //
  2697. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#securitySchemeObject
  2698. //
  2699. // Allows the definition of a security scheme that can be used by the
  2700. // operations. Supported schemes are basic authentication, an API key (either as
  2701. // a header or as a query parameter) and OAuth2's common flows (implicit,
  2702. // password, application and access code).
  2703. type SecurityScheme struct {
  2704. state protoimpl.MessageState `protogen:"hybrid.v1"`
  2705. // The type of the security scheme. Valid values are "basic",
  2706. // "apiKey" or "oauth2".
  2707. Type SecurityScheme_Type `protobuf:"varint,1,opt,name=type,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme_Type" json:"type,omitempty"`
  2708. // A short description for security scheme.
  2709. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  2710. // The name of the header or query parameter to be used.
  2711. // Valid for apiKey.
  2712. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  2713. // The location of the API key. Valid values are "query" or
  2714. // "header".
  2715. // Valid for apiKey.
  2716. In SecurityScheme_In `protobuf:"varint,4,opt,name=in,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme_In" json:"in,omitempty"`
  2717. // The flow used by the OAuth2 security scheme. Valid values are
  2718. // "implicit", "password", "application" or "accessCode".
  2719. // Valid for oauth2.
  2720. Flow SecurityScheme_Flow `protobuf:"varint,5,opt,name=flow,proto3,enum=grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme_Flow" json:"flow,omitempty"`
  2721. // The authorization URL to be used for this flow. This SHOULD be in
  2722. // the form of a URL.
  2723. // Valid for oauth2/implicit and oauth2/accessCode.
  2724. AuthorizationUrl string `protobuf:"bytes,6,opt,name=authorization_url,json=authorizationUrl,proto3" json:"authorization_url,omitempty"`
  2725. // The token URL to be used for this flow. This SHOULD be in the
  2726. // form of a URL.
  2727. // Valid for oauth2/password, oauth2/application and oauth2/accessCode.
  2728. TokenUrl string `protobuf:"bytes,7,opt,name=token_url,json=tokenUrl,proto3" json:"token_url,omitempty"`
  2729. // The available scopes for the OAuth2 security scheme.
  2730. // Valid for oauth2.
  2731. Scopes *Scopes `protobuf:"bytes,8,opt,name=scopes,proto3" json:"scopes,omitempty"`
  2732. // Custom properties that start with "x-" such as "x-foo" used to describe
  2733. // extra functionality that is not covered by the standard OpenAPI Specification.
  2734. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  2735. Extensions map[string]*structpb.Value `protobuf:"bytes,9,rep,name=extensions,proto3" json:"extensions,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  2736. unknownFields protoimpl.UnknownFields
  2737. sizeCache protoimpl.SizeCache
  2738. }
  2739. func (x *SecurityScheme) Reset() {
  2740. *x = SecurityScheme{}
  2741. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[15]
  2742. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2743. ms.StoreMessageInfo(mi)
  2744. }
  2745. func (x *SecurityScheme) String() string {
  2746. return protoimpl.X.MessageStringOf(x)
  2747. }
  2748. func (*SecurityScheme) ProtoMessage() {}
  2749. func (x *SecurityScheme) ProtoReflect() protoreflect.Message {
  2750. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[15]
  2751. if x != nil {
  2752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2753. if ms.LoadMessageInfo() == nil {
  2754. ms.StoreMessageInfo(mi)
  2755. }
  2756. return ms
  2757. }
  2758. return mi.MessageOf(x)
  2759. }
  2760. func (x *SecurityScheme) GetType() SecurityScheme_Type {
  2761. if x != nil {
  2762. return x.Type
  2763. }
  2764. return SecurityScheme_TYPE_INVALID
  2765. }
  2766. func (x *SecurityScheme) GetDescription() string {
  2767. if x != nil {
  2768. return x.Description
  2769. }
  2770. return ""
  2771. }
  2772. func (x *SecurityScheme) GetName() string {
  2773. if x != nil {
  2774. return x.Name
  2775. }
  2776. return ""
  2777. }
  2778. func (x *SecurityScheme) GetIn() SecurityScheme_In {
  2779. if x != nil {
  2780. return x.In
  2781. }
  2782. return SecurityScheme_IN_INVALID
  2783. }
  2784. func (x *SecurityScheme) GetFlow() SecurityScheme_Flow {
  2785. if x != nil {
  2786. return x.Flow
  2787. }
  2788. return SecurityScheme_FLOW_INVALID
  2789. }
  2790. func (x *SecurityScheme) GetAuthorizationUrl() string {
  2791. if x != nil {
  2792. return x.AuthorizationUrl
  2793. }
  2794. return ""
  2795. }
  2796. func (x *SecurityScheme) GetTokenUrl() string {
  2797. if x != nil {
  2798. return x.TokenUrl
  2799. }
  2800. return ""
  2801. }
  2802. func (x *SecurityScheme) GetScopes() *Scopes {
  2803. if x != nil {
  2804. return x.Scopes
  2805. }
  2806. return nil
  2807. }
  2808. func (x *SecurityScheme) GetExtensions() map[string]*structpb.Value {
  2809. if x != nil {
  2810. return x.Extensions
  2811. }
  2812. return nil
  2813. }
  2814. func (x *SecurityScheme) SetType(v SecurityScheme_Type) {
  2815. x.Type = v
  2816. }
  2817. func (x *SecurityScheme) SetDescription(v string) {
  2818. x.Description = v
  2819. }
  2820. func (x *SecurityScheme) SetName(v string) {
  2821. x.Name = v
  2822. }
  2823. func (x *SecurityScheme) SetIn(v SecurityScheme_In) {
  2824. x.In = v
  2825. }
  2826. func (x *SecurityScheme) SetFlow(v SecurityScheme_Flow) {
  2827. x.Flow = v
  2828. }
  2829. func (x *SecurityScheme) SetAuthorizationUrl(v string) {
  2830. x.AuthorizationUrl = v
  2831. }
  2832. func (x *SecurityScheme) SetTokenUrl(v string) {
  2833. x.TokenUrl = v
  2834. }
  2835. func (x *SecurityScheme) SetScopes(v *Scopes) {
  2836. x.Scopes = v
  2837. }
  2838. func (x *SecurityScheme) SetExtensions(v map[string]*structpb.Value) {
  2839. x.Extensions = v
  2840. }
  2841. func (x *SecurityScheme) HasScopes() bool {
  2842. if x == nil {
  2843. return false
  2844. }
  2845. return x.Scopes != nil
  2846. }
  2847. func (x *SecurityScheme) ClearScopes() {
  2848. x.Scopes = nil
  2849. }
  2850. type SecurityScheme_builder struct {
  2851. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  2852. // The type of the security scheme. Valid values are "basic",
  2853. // "apiKey" or "oauth2".
  2854. Type SecurityScheme_Type
  2855. // A short description for security scheme.
  2856. Description string
  2857. // The name of the header or query parameter to be used.
  2858. // Valid for apiKey.
  2859. Name string
  2860. // The location of the API key. Valid values are "query" or
  2861. // "header".
  2862. // Valid for apiKey.
  2863. In SecurityScheme_In
  2864. // The flow used by the OAuth2 security scheme. Valid values are
  2865. // "implicit", "password", "application" or "accessCode".
  2866. // Valid for oauth2.
  2867. Flow SecurityScheme_Flow
  2868. // The authorization URL to be used for this flow. This SHOULD be in
  2869. // the form of a URL.
  2870. // Valid for oauth2/implicit and oauth2/accessCode.
  2871. AuthorizationUrl string
  2872. // The token URL to be used for this flow. This SHOULD be in the
  2873. // form of a URL.
  2874. // Valid for oauth2/password, oauth2/application and oauth2/accessCode.
  2875. TokenUrl string
  2876. // The available scopes for the OAuth2 security scheme.
  2877. // Valid for oauth2.
  2878. Scopes *Scopes
  2879. // Custom properties that start with "x-" such as "x-foo" used to describe
  2880. // extra functionality that is not covered by the standard OpenAPI Specification.
  2881. // See: https://swagger.io/docs/specification/2-0/swagger-extensions/
  2882. Extensions map[string]*structpb.Value
  2883. }
  2884. func (b0 SecurityScheme_builder) Build() *SecurityScheme {
  2885. m0 := &SecurityScheme{}
  2886. b, x := &b0, m0
  2887. _, _ = b, x
  2888. x.Type = b.Type
  2889. x.Description = b.Description
  2890. x.Name = b.Name
  2891. x.In = b.In
  2892. x.Flow = b.Flow
  2893. x.AuthorizationUrl = b.AuthorizationUrl
  2894. x.TokenUrl = b.TokenUrl
  2895. x.Scopes = b.Scopes
  2896. x.Extensions = b.Extensions
  2897. return m0
  2898. }
  2899. // `SecurityRequirement` is a representation of OpenAPI v2 specification's
  2900. // Security Requirement object.
  2901. //
  2902. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#securityRequirementObject
  2903. //
  2904. // Lists the required security schemes to execute this operation. The object can
  2905. // have multiple security schemes declared in it which are all required (that
  2906. // is, there is a logical AND between the schemes).
  2907. //
  2908. // The name used for each property MUST correspond to a security scheme
  2909. // declared in the Security Definitions.
  2910. type SecurityRequirement struct {
  2911. state protoimpl.MessageState `protogen:"hybrid.v1"`
  2912. // Each name must correspond to a security scheme which is declared in
  2913. // the Security Definitions. If the security scheme is of type "oauth2",
  2914. // then the value is a list of scope names required for the execution.
  2915. // For other security scheme types, the array MUST be empty.
  2916. SecurityRequirement map[string]*SecurityRequirement_SecurityRequirementValue `protobuf:"bytes,1,rep,name=security_requirement,json=securityRequirement,proto3" json:"security_requirement,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  2917. unknownFields protoimpl.UnknownFields
  2918. sizeCache protoimpl.SizeCache
  2919. }
  2920. func (x *SecurityRequirement) Reset() {
  2921. *x = SecurityRequirement{}
  2922. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[16]
  2923. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2924. ms.StoreMessageInfo(mi)
  2925. }
  2926. func (x *SecurityRequirement) String() string {
  2927. return protoimpl.X.MessageStringOf(x)
  2928. }
  2929. func (*SecurityRequirement) ProtoMessage() {}
  2930. func (x *SecurityRequirement) ProtoReflect() protoreflect.Message {
  2931. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[16]
  2932. if x != nil {
  2933. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2934. if ms.LoadMessageInfo() == nil {
  2935. ms.StoreMessageInfo(mi)
  2936. }
  2937. return ms
  2938. }
  2939. return mi.MessageOf(x)
  2940. }
  2941. func (x *SecurityRequirement) GetSecurityRequirement() map[string]*SecurityRequirement_SecurityRequirementValue {
  2942. if x != nil {
  2943. return x.SecurityRequirement
  2944. }
  2945. return nil
  2946. }
  2947. func (x *SecurityRequirement) SetSecurityRequirement(v map[string]*SecurityRequirement_SecurityRequirementValue) {
  2948. x.SecurityRequirement = v
  2949. }
  2950. type SecurityRequirement_builder struct {
  2951. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  2952. // Each name must correspond to a security scheme which is declared in
  2953. // the Security Definitions. If the security scheme is of type "oauth2",
  2954. // then the value is a list of scope names required for the execution.
  2955. // For other security scheme types, the array MUST be empty.
  2956. SecurityRequirement map[string]*SecurityRequirement_SecurityRequirementValue
  2957. }
  2958. func (b0 SecurityRequirement_builder) Build() *SecurityRequirement {
  2959. m0 := &SecurityRequirement{}
  2960. b, x := &b0, m0
  2961. _, _ = b, x
  2962. x.SecurityRequirement = b.SecurityRequirement
  2963. return m0
  2964. }
  2965. // `Scopes` is a representation of OpenAPI v2 specification's Scopes object.
  2966. //
  2967. // See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#scopesObject
  2968. //
  2969. // Lists the available scopes for an OAuth2 security scheme.
  2970. type Scopes struct {
  2971. state protoimpl.MessageState `protogen:"hybrid.v1"`
  2972. // Maps between a name of a scope to a short description of it (as the value
  2973. // of the property).
  2974. Scope map[string]string `protobuf:"bytes,1,rep,name=scope,proto3" json:"scope,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  2975. unknownFields protoimpl.UnknownFields
  2976. sizeCache protoimpl.SizeCache
  2977. }
  2978. func (x *Scopes) Reset() {
  2979. *x = Scopes{}
  2980. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[17]
  2981. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2982. ms.StoreMessageInfo(mi)
  2983. }
  2984. func (x *Scopes) String() string {
  2985. return protoimpl.X.MessageStringOf(x)
  2986. }
  2987. func (*Scopes) ProtoMessage() {}
  2988. func (x *Scopes) ProtoReflect() protoreflect.Message {
  2989. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[17]
  2990. if x != nil {
  2991. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2992. if ms.LoadMessageInfo() == nil {
  2993. ms.StoreMessageInfo(mi)
  2994. }
  2995. return ms
  2996. }
  2997. return mi.MessageOf(x)
  2998. }
  2999. func (x *Scopes) GetScope() map[string]string {
  3000. if x != nil {
  3001. return x.Scope
  3002. }
  3003. return nil
  3004. }
  3005. func (x *Scopes) SetScope(v map[string]string) {
  3006. x.Scope = v
  3007. }
  3008. type Scopes_builder struct {
  3009. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  3010. // Maps between a name of a scope to a short description of it (as the value
  3011. // of the property).
  3012. Scope map[string]string
  3013. }
  3014. func (b0 Scopes_builder) Build() *Scopes {
  3015. m0 := &Scopes{}
  3016. b, x := &b0, m0
  3017. _, _ = b, x
  3018. x.Scope = b.Scope
  3019. return m0
  3020. }
  3021. // 'FieldConfiguration' provides additional field level properties used when generating the OpenAPI v2 file.
  3022. // These properties are not defined by OpenAPIv2, but they are used to control the generation.
  3023. type JSONSchema_FieldConfiguration struct {
  3024. state protoimpl.MessageState `protogen:"hybrid.v1"`
  3025. // Alternative parameter name when used as path parameter. If set, this will
  3026. // be used as the complete parameter name when this field is used as a path
  3027. // parameter. Use this to avoid having auto generated path parameter names
  3028. // for overlapping paths.
  3029. PathParamName string `protobuf:"bytes,47,opt,name=path_param_name,json=pathParamName,proto3" json:"path_param_name,omitempty"`
  3030. unknownFields protoimpl.UnknownFields
  3031. sizeCache protoimpl.SizeCache
  3032. }
  3033. func (x *JSONSchema_FieldConfiguration) Reset() {
  3034. *x = JSONSchema_FieldConfiguration{}
  3035. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[27]
  3036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3037. ms.StoreMessageInfo(mi)
  3038. }
  3039. func (x *JSONSchema_FieldConfiguration) String() string {
  3040. return protoimpl.X.MessageStringOf(x)
  3041. }
  3042. func (*JSONSchema_FieldConfiguration) ProtoMessage() {}
  3043. func (x *JSONSchema_FieldConfiguration) ProtoReflect() protoreflect.Message {
  3044. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[27]
  3045. if x != nil {
  3046. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3047. if ms.LoadMessageInfo() == nil {
  3048. ms.StoreMessageInfo(mi)
  3049. }
  3050. return ms
  3051. }
  3052. return mi.MessageOf(x)
  3053. }
  3054. func (x *JSONSchema_FieldConfiguration) GetPathParamName() string {
  3055. if x != nil {
  3056. return x.PathParamName
  3057. }
  3058. return ""
  3059. }
  3060. func (x *JSONSchema_FieldConfiguration) SetPathParamName(v string) {
  3061. x.PathParamName = v
  3062. }
  3063. type JSONSchema_FieldConfiguration_builder struct {
  3064. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  3065. // Alternative parameter name when used as path parameter. If set, this will
  3066. // be used as the complete parameter name when this field is used as a path
  3067. // parameter. Use this to avoid having auto generated path parameter names
  3068. // for overlapping paths.
  3069. PathParamName string
  3070. }
  3071. func (b0 JSONSchema_FieldConfiguration_builder) Build() *JSONSchema_FieldConfiguration {
  3072. m0 := &JSONSchema_FieldConfiguration{}
  3073. b, x := &b0, m0
  3074. _, _ = b, x
  3075. x.PathParamName = b.PathParamName
  3076. return m0
  3077. }
  3078. // If the security scheme is of type "oauth2", then the value is a list of
  3079. // scope names required for the execution. For other security scheme types,
  3080. // the array MUST be empty.
  3081. type SecurityRequirement_SecurityRequirementValue struct {
  3082. state protoimpl.MessageState `protogen:"hybrid.v1"`
  3083. Scope []string `protobuf:"bytes,1,rep,name=scope,proto3" json:"scope,omitempty"`
  3084. unknownFields protoimpl.UnknownFields
  3085. sizeCache protoimpl.SizeCache
  3086. }
  3087. func (x *SecurityRequirement_SecurityRequirementValue) Reset() {
  3088. *x = SecurityRequirement_SecurityRequirementValue{}
  3089. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[32]
  3090. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3091. ms.StoreMessageInfo(mi)
  3092. }
  3093. func (x *SecurityRequirement_SecurityRequirementValue) String() string {
  3094. return protoimpl.X.MessageStringOf(x)
  3095. }
  3096. func (*SecurityRequirement_SecurityRequirementValue) ProtoMessage() {}
  3097. func (x *SecurityRequirement_SecurityRequirementValue) ProtoReflect() protoreflect.Message {
  3098. mi := &file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes[32]
  3099. if x != nil {
  3100. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3101. if ms.LoadMessageInfo() == nil {
  3102. ms.StoreMessageInfo(mi)
  3103. }
  3104. return ms
  3105. }
  3106. return mi.MessageOf(x)
  3107. }
  3108. func (x *SecurityRequirement_SecurityRequirementValue) GetScope() []string {
  3109. if x != nil {
  3110. return x.Scope
  3111. }
  3112. return nil
  3113. }
  3114. func (x *SecurityRequirement_SecurityRequirementValue) SetScope(v []string) {
  3115. x.Scope = v
  3116. }
  3117. type SecurityRequirement_SecurityRequirementValue_builder struct {
  3118. _ [0]func() // Prevents comparability and use of unkeyed literals for the builder.
  3119. Scope []string
  3120. }
  3121. func (b0 SecurityRequirement_SecurityRequirementValue_builder) Build() *SecurityRequirement_SecurityRequirementValue {
  3122. m0 := &SecurityRequirement_SecurityRequirementValue{}
  3123. b, x := &b0, m0
  3124. _, _ = b, x
  3125. x.Scope = b.Scope
  3126. return m0
  3127. }
  3128. var File_protoc_gen_openapiv2_options_openapiv2_proto protoreflect.FileDescriptor
  3129. var file_protoc_gen_openapiv2_options_openapiv2_proto_rawDesc = []byte{
  3130. 0x0a, 0x2c, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65,
  3131. 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6f,
  3132. 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x29,
  3133. 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f,
  3134. 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76,
  3135. 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3136. 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63,
  3137. 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb3, 0x08, 0x0a, 0x07, 0x53, 0x77, 0x61, 0x67,
  3138. 0x67, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72, 0x18, 0x01,
  3139. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72, 0x12, 0x43, 0x0a,
  3140. 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x72,
  3141. 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3142. 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e,
  3143. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e,
  3144. 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  3145. 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x70,
  3146. 0x61, 0x74, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x73, 0x65, 0x50,
  3147. 0x61, 0x74, 0x68, 0x12, 0x4b, 0x0a, 0x07, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x18, 0x05,
  3148. 0x20, 0x03, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65,
  3149. 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f,
  3150. 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  3151. 0x2e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x52, 0x07, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x73,
  3152. 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03,
  3153. 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08,
  3154. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08,
  3155. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x73, 0x12, 0x5f, 0x0a, 0x09, 0x72, 0x65, 0x73, 0x70,
  3156. 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x41, 0x2e, 0x67, 0x72,
  3157. 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3158. 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e,
  3159. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72, 0x2e,
  3160. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09,
  3161. 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x12, 0x71, 0x0a, 0x14, 0x73, 0x65, 0x63,
  3162. 0x75, 0x72, 0x69, 0x74, 0x79, 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  3163. 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67,
  3164. 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65,
  3165. 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69,
  3166. 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x44, 0x65, 0x66, 0x69,
  3167. 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x13, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74,
  3168. 0x79, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x5a, 0x0a, 0x08,
  3169. 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3e,
  3170. 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72,
  3171. 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69,
  3172. 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72,
  3173. 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x08,
  3174. 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x12, 0x42, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73,
  3175. 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61,
  3176. 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e,
  3177. 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3178. 0x6e, 0x73, 0x2e, 0x54, 0x61, 0x67, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x12, 0x65, 0x0a, 0x0d,
  3179. 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x63, 0x73, 0x18, 0x0e, 0x20,
  3180. 0x01, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77,
  3181. 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70,
  3182. 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
  3183. 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
  3184. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44,
  3185. 0x6f, 0x63, 0x73, 0x12, 0x62, 0x0a, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3186. 0x73, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67,
  3187. 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65,
  3188. 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69,
  3189. 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72, 0x2e, 0x45, 0x78, 0x74, 0x65,
  3190. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x65, 0x78, 0x74,
  3191. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x71, 0x0a, 0x0e, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3192. 0x6e, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  3193. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x49, 0x0a, 0x05, 0x76,
  3194. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x72, 0x70,
  3195. 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63,
  3196. 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f,
  3197. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52,
  3198. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x55, 0x0a, 0x0f, 0x45, 0x78,
  3199. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  3200. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  3201. 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
  3202. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3203. 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  3204. 0x01, 0x4a, 0x04, 0x08, 0x08, 0x10, 0x09, 0x4a, 0x04, 0x08, 0x09, 0x10, 0x0a, 0x22, 0xd6, 0x07,
  3205. 0x0a, 0x09, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x74,
  3206. 0x61, 0x67, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x12,
  3207. 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3208. 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73,
  3209. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  3210. 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x0d, 0x65,
  3211. 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x63, 0x73, 0x18, 0x04, 0x20, 0x01,
  3212. 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61,
  3213. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65,
  3214. 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x45,
  3215. 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61,
  3216. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44, 0x6f,
  3217. 0x63, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
  3218. 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  3219. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65,
  3220. 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65,
  3221. 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x73, 0x18, 0x07, 0x20,
  3222. 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x73, 0x12, 0x61, 0x0a,
  3223. 0x09, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b,
  3224. 0x32, 0x43, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e,
  3225. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61,
  3226. 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x4f, 0x70, 0x65,
  3227. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73,
  3228. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73,
  3229. 0x12, 0x4b, 0x0a, 0x07, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28,
  3230. 0x0e, 0x32, 0x31, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79,
  3231. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
  3232. 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x63,
  3233. 0x68, 0x65, 0x6d, 0x65, 0x52, 0x07, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x73, 0x12, 0x1e, 0x0a,
  3234. 0x0a, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28,
  3235. 0x08, 0x52, 0x0a, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x5a, 0x0a,
  3236. 0x08, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, 0x32,
  3237. 0x3e, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70,
  3238. 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70,
  3239. 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75,
  3240. 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52,
  3241. 0x08, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x12, 0x64, 0x0a, 0x0a, 0x65, 0x78, 0x74,
  3242. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x44, 0x2e,
  3243. 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f,
  3244. 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76,
  3245. 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74,
  3246. 0x69, 0x6f, 0x6e, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e,
  3247. 0x74, 0x72, 0x79, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12,
  3248. 0x55, 0x0a, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x0e, 0x20,
  3249. 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77,
  3250. 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70,
  3251. 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
  3252. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61,
  3253. 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x1a, 0x71, 0x0a, 0x0e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  3254. 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  3255. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x49, 0x0a, 0x05, 0x76, 0x61,
  3256. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x72, 0x70, 0x63,
  3257. 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f,
  3258. 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70,
  3259. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05,
  3260. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x55, 0x0a, 0x0f, 0x45, 0x78, 0x74,
  3261. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  3262. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c,
  3263. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e,
  3264. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3265. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  3266. 0x4a, 0x04, 0x08, 0x08, 0x10, 0x09, 0x22, 0x62, 0x0a, 0x0a, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65,
  3267. 0x74, 0x65, 0x72, 0x73, 0x12, 0x54, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x18,
  3268. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74,
  3269. 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f,
  3270. 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3271. 0x73, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65,
  3272. 0x72, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x22, 0xa3, 0x02, 0x0a, 0x0f, 0x48,
  3273. 0x65, 0x61, 0x64, 0x65, 0x72, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x12,
  3274. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  3275. 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  3276. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  3277. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x53, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01,
  3278. 0x28, 0x0e, 0x32, 0x3f, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61,
  3279. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65,
  3280. 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x48,
  3281. 0x65, 0x61, 0x64, 0x65, 0x72, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x2e, 0x54,
  3282. 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x6f, 0x72,
  3283. 0x6d, 0x61, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  3284. 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x18, 0x05, 0x20,
  3285. 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x22, 0x45, 0x0a,
  3286. 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e,
  3287. 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x0a,
  3288. 0x0a, 0x06, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e,
  3289. 0x54, 0x45, 0x47, 0x45, 0x52, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x42, 0x4f, 0x4f, 0x4c, 0x45,
  3290. 0x41, 0x4e, 0x10, 0x04, 0x4a, 0x04, 0x08, 0x06, 0x10, 0x07, 0x4a, 0x04, 0x08, 0x07, 0x10, 0x08,
  3291. 0x22, 0xd8, 0x01, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x20, 0x0a, 0x0b, 0x64,
  3292. 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3293. 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a,
  3294. 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70,
  3295. 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  3296. 0x09, 0x52, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x65, 0x66,
  3297. 0x61, 0x75, 0x6c, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x64, 0x65, 0x66, 0x61,
  3298. 0x75, 0x6c, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x0d,
  3299. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x4a, 0x04, 0x08,
  3300. 0x04, 0x10, 0x05, 0x4a, 0x04, 0x08, 0x05, 0x10, 0x06, 0x4a, 0x04, 0x08, 0x07, 0x10, 0x08, 0x4a,
  3301. 0x04, 0x08, 0x08, 0x10, 0x09, 0x4a, 0x04, 0x08, 0x09, 0x10, 0x0a, 0x4a, 0x04, 0x08, 0x0a, 0x10,
  3302. 0x0b, 0x4a, 0x04, 0x08, 0x0b, 0x10, 0x0c, 0x4a, 0x04, 0x08, 0x0c, 0x10, 0x0d, 0x4a, 0x04, 0x08,
  3303. 0x0e, 0x10, 0x0f, 0x4a, 0x04, 0x08, 0x0f, 0x10, 0x10, 0x4a, 0x04, 0x08, 0x10, 0x10, 0x11, 0x4a,
  3304. 0x04, 0x08, 0x11, 0x10, 0x12, 0x4a, 0x04, 0x08, 0x12, 0x10, 0x13, 0x22, 0x9a, 0x05, 0x0a, 0x08,
  3305. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63,
  3306. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64,
  3307. 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x49, 0x0a, 0x06, 0x73, 0x63,
  3308. 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x72, 0x70,
  3309. 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63,
  3310. 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f,
  3311. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x06, 0x73,
  3312. 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x5a, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73,
  3313. 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61,
  3314. 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e,
  3315. 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3316. 0x6e, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x48, 0x65, 0x61, 0x64,
  3317. 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
  3318. 0x73, 0x12, 0x5d, 0x0a, 0x08, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x18, 0x04, 0x20,
  3319. 0x03, 0x28, 0x0b, 0x32, 0x41, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77,
  3320. 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70,
  3321. 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
  3322. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65,
  3323. 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x08, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73,
  3324. 0x12, 0x63, 0x0a, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05,
  3325. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x43, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65,
  3326. 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f,
  3327. 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  3328. 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3329. 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3330. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x6d, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73,
  3331. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  3332. 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x47, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3333. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61,
  3334. 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e,
  3335. 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3336. 0x6e, 0x73, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3337. 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x3b, 0x0a, 0x0d, 0x45, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73,
  3338. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  3339. 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3340. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  3341. 0x01, 0x1a, 0x55, 0x0a, 0x0f, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45,
  3342. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  3343. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  3344. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3345. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76,
  3346. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xd6, 0x03, 0x0a, 0x04, 0x49, 0x6e, 0x66,
  3347. 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3348. 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
  3349. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65,
  3350. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x0a, 0x10, 0x74, 0x65, 0x72,
  3351. 0x6d, 0x73, 0x5f, 0x6f, 0x66, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20,
  3352. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x4f, 0x66, 0x53, 0x65, 0x72, 0x76,
  3353. 0x69, 0x63, 0x65, 0x12, 0x4c, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x18, 0x04,
  3354. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65,
  3355. 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f,
  3356. 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  3357. 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  3358. 0x74, 0x12, 0x4c, 0x0a, 0x07, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x18, 0x05, 0x20, 0x01,
  3359. 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61,
  3360. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65,
  3361. 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x4c,
  3362. 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x52, 0x07, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x12,
  3363. 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  3364. 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x5f, 0x0a, 0x0a, 0x65, 0x78, 0x74,
  3365. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3f, 0x2e,
  3366. 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f,
  3367. 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76,
  3368. 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x45,
  3369. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a,
  3370. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x55, 0x0a, 0x0f, 0x45, 0x78,
  3371. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  3372. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  3373. 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
  3374. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3375. 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  3376. 0x01, 0x22, 0x45, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x12, 0x12, 0x0a, 0x04,
  3377. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  3378. 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75,
  3379. 0x72, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  3380. 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x2f, 0x0a, 0x07, 0x4c, 0x69, 0x63, 0x65,
  3381. 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  3382. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02,
  3383. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x4b, 0x0a, 0x15, 0x45, 0x78, 0x74,
  3384. 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69,
  3385. 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  3386. 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  3387. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
  3388. 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0xaa, 0x02, 0x0a, 0x06, 0x53, 0x63, 0x68, 0x65, 0x6d,
  3389. 0x61, 0x12, 0x56, 0x0a, 0x0b, 0x6a, 0x73, 0x6f, 0x6e, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61,
  3390. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61,
  3391. 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e,
  3392. 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3393. 0x6e, 0x73, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x52, 0x0a, 0x6a,
  3394. 0x73, 0x6f, 0x6e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x24, 0x0a, 0x0d, 0x64, 0x69, 0x73,
  3395. 0x63, 0x72, 0x69, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  3396. 0x52, 0x0d, 0x64, 0x69, 0x73, 0x63, 0x72, 0x69, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x6f, 0x72, 0x12,
  3397. 0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01,
  3398. 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x65, 0x0a, 0x0d,
  3399. 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x63, 0x73, 0x18, 0x05, 0x20,
  3400. 0x01, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77,
  3401. 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70,
  3402. 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
  3403. 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
  3404. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44,
  3405. 0x6f, 0x63, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x18, 0x06,
  3406. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x4a, 0x04, 0x08,
  3407. 0x04, 0x10, 0x05, 0x22, 0xe8, 0x03, 0x0a, 0x0a, 0x45, 0x6e, 0x75, 0x6d, 0x53, 0x63, 0x68, 0x65,
  3408. 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  3409. 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  3410. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x18,
  3411. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x12, 0x14,
  3412. 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74,
  3413. 0x69, 0x74, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
  3414. 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
  3415. 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x05, 0x20,
  3416. 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x65, 0x0a,
  3417. 0x0d, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x63, 0x73, 0x18, 0x06,
  3418. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65,
  3419. 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f,
  3420. 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  3421. 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
  3422. 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
  3423. 0x44, 0x6f, 0x63, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x18,
  3424. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x12, 0x10,
  3425. 0x0a, 0x03, 0x72, 0x65, 0x66, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x72, 0x65, 0x66,
  3426. 0x12, 0x65, 0x0a, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09,
  3427. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x45, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65,
  3428. 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f,
  3429. 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  3430. 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x45, 0x78, 0x74, 0x65,
  3431. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x65, 0x78, 0x74,
  3432. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x55, 0x0a, 0x0f, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3433. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  3434. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05,
  3435. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f,
  3436. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61,
  3437. 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xd7,
  3438. 0x0a, 0x0a, 0x0a, 0x4a, 0x53, 0x4f, 0x4e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x10, 0x0a,
  3439. 0x03, 0x72, 0x65, 0x66, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x72, 0x65, 0x66, 0x12,
  3440. 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  3441. 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  3442. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63,
  3443. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75,
  3444. 0x6c, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3445. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x08,
  3446. 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x72, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x18,
  3447. 0x0a, 0x07, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  3448. 0x07, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6d, 0x75, 0x6c, 0x74,
  3449. 0x69, 0x70, 0x6c, 0x65, 0x5f, 0x6f, 0x66, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x6d,
  3450. 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x4f, 0x66, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x61, 0x78,
  3451. 0x69, 0x6d, 0x75, 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x6d, 0x61, 0x78, 0x69,
  3452. 0x6d, 0x75, 0x6d, 0x12, 0x2b, 0x0a, 0x11, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65,
  3453. 0x5f, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10,
  3454. 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x75, 0x6d,
  3455. 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x18, 0x0d, 0x20, 0x01, 0x28,
  3456. 0x01, 0x52, 0x07, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x12, 0x2b, 0x0a, 0x11, 0x65, 0x78,
  3457. 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x5f, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x18,
  3458. 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65,
  3459. 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x61, 0x78, 0x5f, 0x6c,
  3460. 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d, 0x61, 0x78,
  3461. 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x69, 0x6e, 0x5f, 0x6c, 0x65,
  3462. 0x6e, 0x67, 0x74, 0x68, 0x18, 0x10, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d, 0x69, 0x6e, 0x4c,
  3463. 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e,
  3464. 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x12,
  3465. 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x78, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x14, 0x20, 0x01,
  3466. 0x28, 0x04, 0x52, 0x08, 0x6d, 0x61, 0x78, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x1b, 0x0a, 0x09,
  3467. 0x6d, 0x69, 0x6e, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28, 0x04, 0x52,
  3468. 0x08, 0x6d, 0x69, 0x6e, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x75, 0x6e, 0x69,
  3469. 0x71, 0x75, 0x65, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x16, 0x20, 0x01, 0x28, 0x08, 0x52,
  3470. 0x0b, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x25, 0x0a, 0x0e,
  3471. 0x6d, 0x61, 0x78, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x18,
  3472. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x6d, 0x61, 0x78, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
  3473. 0x69, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x6d, 0x69, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65,
  3474. 0x72, 0x74, 0x69, 0x65, 0x73, 0x18, 0x19, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x6d, 0x69, 0x6e,
  3475. 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65,
  3476. 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x18, 0x1a, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65,
  3477. 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x72, 0x72, 0x61, 0x79, 0x18,
  3478. 0x22, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x61, 0x72, 0x72, 0x61, 0x79, 0x12, 0x5f, 0x0a, 0x04,
  3479. 0x74, 0x79, 0x70, 0x65, 0x18, 0x23, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x4b, 0x2e, 0x67, 0x72, 0x70,
  3480. 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63,
  3481. 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f,
  3482. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x53, 0x63, 0x68, 0x65, 0x6d,
  3483. 0x61, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53, 0x69, 0x6d, 0x70,
  3484. 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a,
  3485. 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x24, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66,
  3486. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x2e, 0x20,
  3487. 0x03, 0x28, 0x09, 0x52, 0x04, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x7a, 0x0a, 0x13, 0x66, 0x69, 0x65,
  3488. 0x6c, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3489. 0x18, 0xe9, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67,
  3490. 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65,
  3491. 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69,
  3492. 0x6f, 0x6e, 0x73, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x46,
  3493. 0x69, 0x65, 0x6c, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
  3494. 0x6e, 0x52, 0x12, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
  3495. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3496. 0x6f, 0x6e, 0x73, 0x18, 0x30, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x45, 0x2e, 0x67, 0x72, 0x70, 0x63,
  3497. 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f,
  3498. 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70,
  3499. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x4a, 0x53, 0x4f, 0x4e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
  3500. 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3501. 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x3c, 0x0a, 0x12,
  3502. 0x46, 0x69, 0x65, 0x6c, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
  3503. 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x61, 0x74, 0x68, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d,
  3504. 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x70, 0x61, 0x74,
  3505. 0x68, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x55, 0x0a, 0x0f, 0x45, 0x78,
  3506. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  3507. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  3508. 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
  3509. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3510. 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  3511. 0x01, 0x22, 0x77, 0x0a, 0x15, 0x4a, 0x53, 0x4f, 0x4e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x53,
  3512. 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e,
  3513. 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x52, 0x52, 0x41, 0x59,
  3514. 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x42, 0x4f, 0x4f, 0x4c, 0x45, 0x41, 0x4e, 0x10, 0x02, 0x12,
  3515. 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x45, 0x52, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04,
  3516. 0x4e, 0x55, 0x4c, 0x4c, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52,
  3517. 0x10, 0x05, 0x12, 0x0a, 0x0a, 0x06, 0x4f, 0x42, 0x4a, 0x45, 0x43, 0x54, 0x10, 0x06, 0x12, 0x0a,
  3518. 0x0a, 0x06, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x10, 0x07, 0x4a, 0x04, 0x08, 0x01, 0x10, 0x02,
  3519. 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a, 0x04, 0x08, 0x04, 0x10, 0x05, 0x4a, 0x04, 0x08, 0x12,
  3520. 0x10, 0x13, 0x4a, 0x04, 0x08, 0x13, 0x10, 0x14, 0x4a, 0x04, 0x08, 0x17, 0x10, 0x18, 0x4a, 0x04,
  3521. 0x08, 0x1b, 0x10, 0x1c, 0x4a, 0x04, 0x08, 0x1c, 0x10, 0x1d, 0x4a, 0x04, 0x08, 0x1d, 0x10, 0x1e,
  3522. 0x4a, 0x04, 0x08, 0x1e, 0x10, 0x22, 0x4a, 0x04, 0x08, 0x25, 0x10, 0x2a, 0x4a, 0x04, 0x08, 0x2a,
  3523. 0x10, 0x2b, 0x4a, 0x04, 0x08, 0x2b, 0x10, 0x2e, 0x22, 0xd9, 0x02, 0x0a, 0x03, 0x54, 0x61, 0x67,
  3524. 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  3525. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  3526. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
  3527. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x0d, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e,
  3528. 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x63, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x40, 0x2e,
  3529. 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f,
  3530. 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76,
  3531. 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e,
  3532. 0x61, 0x6c, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  3533. 0x0c, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x63, 0x73, 0x12, 0x5e, 0x0a,
  3534. 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,
  3535. 0x0b, 0x32, 0x3e, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79,
  3536. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
  3537. 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x54, 0x61,
  3538. 0x67, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72,
  3539. 0x79, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x55, 0x0a,
  3540. 0x0f, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3541. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
  3542. 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3543. 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3544. 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3545. 0x3a, 0x02, 0x38, 0x01, 0x22, 0xf7, 0x01, 0x0a, 0x13, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74,
  3546. 0x79, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x68, 0x0a, 0x08,
  3547. 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4c,
  3548. 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72,
  3549. 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69,
  3550. 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72,
  3551. 0x69, 0x74, 0x79, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x53,
  3552. 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x08, 0x73, 0x65,
  3553. 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x1a, 0x76, 0x0a, 0x0d, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69,
  3554. 0x74, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  3555. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x4f, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  3556. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e,
  3557. 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67,
  3558. 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74,
  3559. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x53, 0x63, 0x68,
  3560. 0x65, 0x6d, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xff,
  3561. 0x06, 0x0a, 0x0e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d,
  3562. 0x65, 0x12, 0x52, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
  3563. 0x3e, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70,
  3564. 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70,
  3565. 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75,
  3566. 0x72, 0x69, 0x74, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52,
  3567. 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  3568. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63,
  3569. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  3570. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x4c, 0x0a, 0x02, 0x69,
  3571. 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3c, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67,
  3572. 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65,
  3573. 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69,
  3574. 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x53, 0x63, 0x68, 0x65,
  3575. 0x6d, 0x65, 0x2e, 0x49, 0x6e, 0x52, 0x02, 0x69, 0x6e, 0x12, 0x52, 0x0a, 0x04, 0x66, 0x6c, 0x6f,
  3576. 0x77, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67,
  3577. 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65,
  3578. 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69,
  3579. 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x53, 0x63, 0x68, 0x65,
  3580. 0x6d, 0x65, 0x2e, 0x46, 0x6c, 0x6f, 0x77, 0x52, 0x04, 0x66, 0x6c, 0x6f, 0x77, 0x12, 0x2b, 0x0a,
  3581. 0x11, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x75,
  3582. 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72,
  3583. 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f,
  3584. 0x6b, 0x65, 0x6e, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74,
  3585. 0x6f, 0x6b, 0x65, 0x6e, 0x55, 0x72, 0x6c, 0x12, 0x49, 0x0a, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65,
  3586. 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67,
  3587. 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65,
  3588. 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69,
  3589. 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x52, 0x06, 0x73, 0x63, 0x6f, 0x70,
  3590. 0x65, 0x73, 0x12, 0x69, 0x0a, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3591. 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x49, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61,
  3592. 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e,
  3593. 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3594. 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x53, 0x63, 0x68, 0x65, 0x6d,
  3595. 0x65, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72,
  3596. 0x79, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x55, 0x0a,
  3597. 0x0f, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3598. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
  3599. 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3600. 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3601. 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3602. 0x3a, 0x02, 0x38, 0x01, 0x22, 0x4b, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x0c,
  3603. 0x54, 0x59, 0x50, 0x45, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x12, 0x0e,
  3604. 0x0a, 0x0a, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x01, 0x12, 0x10,
  3605. 0x0a, 0x0c, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x41, 0x50, 0x49, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x02,
  3606. 0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x41, 0x55, 0x54, 0x48, 0x32, 0x10,
  3607. 0x03, 0x22, 0x31, 0x0a, 0x02, 0x49, 0x6e, 0x12, 0x0e, 0x0a, 0x0a, 0x49, 0x4e, 0x5f, 0x49, 0x4e,
  3608. 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x4e, 0x5f, 0x51, 0x55,
  3609. 0x45, 0x52, 0x59, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x4e, 0x5f, 0x48, 0x45, 0x41, 0x44,
  3610. 0x45, 0x52, 0x10, 0x02, 0x22, 0x6a, 0x0a, 0x04, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x10, 0x0a, 0x0c,
  3611. 0x46, 0x4c, 0x4f, 0x57, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x12, 0x11,
  3612. 0x0a, 0x0d, 0x46, 0x4c, 0x4f, 0x57, 0x5f, 0x49, 0x4d, 0x50, 0x4c, 0x49, 0x43, 0x49, 0x54, 0x10,
  3613. 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x46, 0x4c, 0x4f, 0x57, 0x5f, 0x50, 0x41, 0x53, 0x53, 0x57, 0x4f,
  3614. 0x52, 0x44, 0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x46, 0x4c, 0x4f, 0x57, 0x5f, 0x41, 0x50, 0x50,
  3615. 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x03, 0x12, 0x14, 0x0a, 0x10, 0x46, 0x4c,
  3616. 0x4f, 0x57, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53, 0x53, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x10, 0x04,
  3617. 0x22, 0xf6, 0x02, 0x0a, 0x13, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71,
  3618. 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x8a, 0x01, 0x0a, 0x14, 0x73, 0x65, 0x63,
  3619. 0x75, 0x72, 0x69, 0x74, 0x79, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e,
  3620. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x57, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67,
  3621. 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65,
  3622. 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69,
  3623. 0x6f, 0x6e, 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75,
  3624. 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79,
  3625. 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3626. 0x52, 0x13, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72,
  3627. 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x1a, 0x30, 0x0a, 0x18, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74,
  3628. 0x79, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75,
  3629. 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
  3630. 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x1a, 0x9f, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x63, 0x75,
  3631. 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x45,
  3632. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  3633. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x6d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  3634. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x57, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74,
  3635. 0x65, 0x77, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f,
  3636. 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3637. 0x73, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72,
  3638. 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65,
  3639. 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05,
  3640. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x96, 0x01, 0x0a, 0x06, 0x53, 0x63,
  3641. 0x6f, 0x70, 0x65, 0x73, 0x12, 0x52, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x01, 0x20,
  3642. 0x03, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x67, 0x61, 0x74, 0x65, 0x77,
  3643. 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6f, 0x70,
  3644. 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76, 0x32, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
  3645. 0x53, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x2e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x45, 0x6e, 0x74, 0x72,
  3646. 0x79, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x1a, 0x38, 0x0a, 0x0a, 0x53, 0x63, 0x6f, 0x70,
  3647. 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  3648. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  3649. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
  3650. 0x38, 0x01, 0x2a, 0x3b, 0x0a, 0x06, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x12, 0x0b, 0x0a, 0x07,
  3651. 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x54, 0x54,
  3652. 0x50, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x48, 0x54, 0x54, 0x50, 0x53, 0x10, 0x02, 0x12, 0x06,
  3653. 0x0a, 0x02, 0x57, 0x53, 0x10, 0x03, 0x12, 0x07, 0x0a, 0x03, 0x57, 0x53, 0x53, 0x10, 0x04, 0x42,
  3654. 0x48, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x72,
  3655. 0x70, 0x63, 0x2d, 0x65, 0x63, 0x6f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x2f, 0x67, 0x72, 0x70,
  3656. 0x63, 0x2d, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x70, 0x72, 0x6f,
  3657. 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x6f, 0x70, 0x65, 0x6e, 0x61, 0x70, 0x69, 0x76,
  3658. 0x32, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3659. 0x33,
  3660. }
  3661. var file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes = make([]protoimpl.EnumInfo, 6)
  3662. var file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes = make([]protoimpl.MessageInfo, 35)
  3663. var file_protoc_gen_openapiv2_options_openapiv2_proto_goTypes = []any{
  3664. (Scheme)(0), // 0: grpc.gateway.protoc_gen_openapiv2.options.Scheme
  3665. (HeaderParameter_Type)(0), // 1: grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.Type
  3666. (JSONSchema_JSONSchemaSimpleTypes)(0), // 2: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.JSONSchemaSimpleTypes
  3667. (SecurityScheme_Type)(0), // 3: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.Type
  3668. (SecurityScheme_In)(0), // 4: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.In
  3669. (SecurityScheme_Flow)(0), // 5: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.Flow
  3670. (*Swagger)(nil), // 6: grpc.gateway.protoc_gen_openapiv2.options.Swagger
  3671. (*Operation)(nil), // 7: grpc.gateway.protoc_gen_openapiv2.options.Operation
  3672. (*Parameters)(nil), // 8: grpc.gateway.protoc_gen_openapiv2.options.Parameters
  3673. (*HeaderParameter)(nil), // 9: grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter
  3674. (*Header)(nil), // 10: grpc.gateway.protoc_gen_openapiv2.options.Header
  3675. (*Response)(nil), // 11: grpc.gateway.protoc_gen_openapiv2.options.Response
  3676. (*Info)(nil), // 12: grpc.gateway.protoc_gen_openapiv2.options.Info
  3677. (*Contact)(nil), // 13: grpc.gateway.protoc_gen_openapiv2.options.Contact
  3678. (*License)(nil), // 14: grpc.gateway.protoc_gen_openapiv2.options.License
  3679. (*ExternalDocumentation)(nil), // 15: grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
  3680. (*Schema)(nil), // 16: grpc.gateway.protoc_gen_openapiv2.options.Schema
  3681. (*EnumSchema)(nil), // 17: grpc.gateway.protoc_gen_openapiv2.options.EnumSchema
  3682. (*JSONSchema)(nil), // 18: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema
  3683. (*Tag)(nil), // 19: grpc.gateway.protoc_gen_openapiv2.options.Tag
  3684. (*SecurityDefinitions)(nil), // 20: grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions
  3685. (*SecurityScheme)(nil), // 21: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme
  3686. (*SecurityRequirement)(nil), // 22: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement
  3687. (*Scopes)(nil), // 23: grpc.gateway.protoc_gen_openapiv2.options.Scopes
  3688. nil, // 24: grpc.gateway.protoc_gen_openapiv2.options.Swagger.ResponsesEntry
  3689. nil, // 25: grpc.gateway.protoc_gen_openapiv2.options.Swagger.ExtensionsEntry
  3690. nil, // 26: grpc.gateway.protoc_gen_openapiv2.options.Operation.ResponsesEntry
  3691. nil, // 27: grpc.gateway.protoc_gen_openapiv2.options.Operation.ExtensionsEntry
  3692. nil, // 28: grpc.gateway.protoc_gen_openapiv2.options.Response.HeadersEntry
  3693. nil, // 29: grpc.gateway.protoc_gen_openapiv2.options.Response.ExamplesEntry
  3694. nil, // 30: grpc.gateway.protoc_gen_openapiv2.options.Response.ExtensionsEntry
  3695. nil, // 31: grpc.gateway.protoc_gen_openapiv2.options.Info.ExtensionsEntry
  3696. nil, // 32: grpc.gateway.protoc_gen_openapiv2.options.EnumSchema.ExtensionsEntry
  3697. (*JSONSchema_FieldConfiguration)(nil), // 33: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.FieldConfiguration
  3698. nil, // 34: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.ExtensionsEntry
  3699. nil, // 35: grpc.gateway.protoc_gen_openapiv2.options.Tag.ExtensionsEntry
  3700. nil, // 36: grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions.SecurityEntry
  3701. nil, // 37: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.ExtensionsEntry
  3702. (*SecurityRequirement_SecurityRequirementValue)(nil), // 38: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementValue
  3703. nil, // 39: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementEntry
  3704. nil, // 40: grpc.gateway.protoc_gen_openapiv2.options.Scopes.ScopeEntry
  3705. (*structpb.Value)(nil), // 41: google.protobuf.Value
  3706. }
  3707. var file_protoc_gen_openapiv2_options_openapiv2_proto_depIdxs = []int32{
  3708. 12, // 0: grpc.gateway.protoc_gen_openapiv2.options.Swagger.info:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Info
  3709. 0, // 1: grpc.gateway.protoc_gen_openapiv2.options.Swagger.schemes:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Scheme
  3710. 24, // 2: grpc.gateway.protoc_gen_openapiv2.options.Swagger.responses:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Swagger.ResponsesEntry
  3711. 20, // 3: grpc.gateway.protoc_gen_openapiv2.options.Swagger.security_definitions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions
  3712. 22, // 4: grpc.gateway.protoc_gen_openapiv2.options.Swagger.security:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement
  3713. 19, // 5: grpc.gateway.protoc_gen_openapiv2.options.Swagger.tags:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Tag
  3714. 15, // 6: grpc.gateway.protoc_gen_openapiv2.options.Swagger.external_docs:type_name -> grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
  3715. 25, // 7: grpc.gateway.protoc_gen_openapiv2.options.Swagger.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Swagger.ExtensionsEntry
  3716. 15, // 8: grpc.gateway.protoc_gen_openapiv2.options.Operation.external_docs:type_name -> grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
  3717. 26, // 9: grpc.gateway.protoc_gen_openapiv2.options.Operation.responses:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Operation.ResponsesEntry
  3718. 0, // 10: grpc.gateway.protoc_gen_openapiv2.options.Operation.schemes:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Scheme
  3719. 22, // 11: grpc.gateway.protoc_gen_openapiv2.options.Operation.security:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement
  3720. 27, // 12: grpc.gateway.protoc_gen_openapiv2.options.Operation.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Operation.ExtensionsEntry
  3721. 8, // 13: grpc.gateway.protoc_gen_openapiv2.options.Operation.parameters:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Parameters
  3722. 9, // 14: grpc.gateway.protoc_gen_openapiv2.options.Parameters.headers:type_name -> grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter
  3723. 1, // 15: grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.type:type_name -> grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.Type
  3724. 16, // 16: grpc.gateway.protoc_gen_openapiv2.options.Response.schema:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Schema
  3725. 28, // 17: grpc.gateway.protoc_gen_openapiv2.options.Response.headers:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response.HeadersEntry
  3726. 29, // 18: grpc.gateway.protoc_gen_openapiv2.options.Response.examples:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response.ExamplesEntry
  3727. 30, // 19: grpc.gateway.protoc_gen_openapiv2.options.Response.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response.ExtensionsEntry
  3728. 13, // 20: grpc.gateway.protoc_gen_openapiv2.options.Info.contact:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Contact
  3729. 14, // 21: grpc.gateway.protoc_gen_openapiv2.options.Info.license:type_name -> grpc.gateway.protoc_gen_openapiv2.options.License
  3730. 31, // 22: grpc.gateway.protoc_gen_openapiv2.options.Info.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Info.ExtensionsEntry
  3731. 18, // 23: grpc.gateway.protoc_gen_openapiv2.options.Schema.json_schema:type_name -> grpc.gateway.protoc_gen_openapiv2.options.JSONSchema
  3732. 15, // 24: grpc.gateway.protoc_gen_openapiv2.options.Schema.external_docs:type_name -> grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
  3733. 15, // 25: grpc.gateway.protoc_gen_openapiv2.options.EnumSchema.external_docs:type_name -> grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
  3734. 32, // 26: grpc.gateway.protoc_gen_openapiv2.options.EnumSchema.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.EnumSchema.ExtensionsEntry
  3735. 2, // 27: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.type:type_name -> grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.JSONSchemaSimpleTypes
  3736. 33, // 28: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.field_configuration:type_name -> grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.FieldConfiguration
  3737. 34, // 29: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.ExtensionsEntry
  3738. 15, // 30: grpc.gateway.protoc_gen_openapiv2.options.Tag.external_docs:type_name -> grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation
  3739. 35, // 31: grpc.gateway.protoc_gen_openapiv2.options.Tag.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Tag.ExtensionsEntry
  3740. 36, // 32: grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions.security:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions.SecurityEntry
  3741. 3, // 33: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.type:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.Type
  3742. 4, // 34: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.in:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.In
  3743. 5, // 35: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.flow:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.Flow
  3744. 23, // 36: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.scopes:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Scopes
  3745. 37, // 37: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.extensions:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.ExtensionsEntry
  3746. 39, // 38: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.security_requirement:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementEntry
  3747. 40, // 39: grpc.gateway.protoc_gen_openapiv2.options.Scopes.scope:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Scopes.ScopeEntry
  3748. 11, // 40: grpc.gateway.protoc_gen_openapiv2.options.Swagger.ResponsesEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response
  3749. 41, // 41: grpc.gateway.protoc_gen_openapiv2.options.Swagger.ExtensionsEntry.value:type_name -> google.protobuf.Value
  3750. 11, // 42: grpc.gateway.protoc_gen_openapiv2.options.Operation.ResponsesEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Response
  3751. 41, // 43: grpc.gateway.protoc_gen_openapiv2.options.Operation.ExtensionsEntry.value:type_name -> google.protobuf.Value
  3752. 10, // 44: grpc.gateway.protoc_gen_openapiv2.options.Response.HeadersEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.Header
  3753. 41, // 45: grpc.gateway.protoc_gen_openapiv2.options.Response.ExtensionsEntry.value:type_name -> google.protobuf.Value
  3754. 41, // 46: grpc.gateway.protoc_gen_openapiv2.options.Info.ExtensionsEntry.value:type_name -> google.protobuf.Value
  3755. 41, // 47: grpc.gateway.protoc_gen_openapiv2.options.EnumSchema.ExtensionsEntry.value:type_name -> google.protobuf.Value
  3756. 41, // 48: grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.ExtensionsEntry.value:type_name -> google.protobuf.Value
  3757. 41, // 49: grpc.gateway.protoc_gen_openapiv2.options.Tag.ExtensionsEntry.value:type_name -> google.protobuf.Value
  3758. 21, // 50: grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions.SecurityEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme
  3759. 41, // 51: grpc.gateway.protoc_gen_openapiv2.options.SecurityScheme.ExtensionsEntry.value:type_name -> google.protobuf.Value
  3760. 38, // 52: grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementEntry.value:type_name -> grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement.SecurityRequirementValue
  3761. 53, // [53:53] is the sub-list for method output_type
  3762. 53, // [53:53] is the sub-list for method input_type
  3763. 53, // [53:53] is the sub-list for extension type_name
  3764. 53, // [53:53] is the sub-list for extension extendee
  3765. 0, // [0:53] is the sub-list for field type_name
  3766. }
  3767. func init() { file_protoc_gen_openapiv2_options_openapiv2_proto_init() }
  3768. func file_protoc_gen_openapiv2_options_openapiv2_proto_init() {
  3769. if File_protoc_gen_openapiv2_options_openapiv2_proto != nil {
  3770. return
  3771. }
  3772. type x struct{}
  3773. out := protoimpl.TypeBuilder{
  3774. File: protoimpl.DescBuilder{
  3775. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3776. RawDescriptor: file_protoc_gen_openapiv2_options_openapiv2_proto_rawDesc,
  3777. NumEnums: 6,
  3778. NumMessages: 35,
  3779. NumExtensions: 0,
  3780. NumServices: 0,
  3781. },
  3782. GoTypes: file_protoc_gen_openapiv2_options_openapiv2_proto_goTypes,
  3783. DependencyIndexes: file_protoc_gen_openapiv2_options_openapiv2_proto_depIdxs,
  3784. EnumInfos: file_protoc_gen_openapiv2_options_openapiv2_proto_enumTypes,
  3785. MessageInfos: file_protoc_gen_openapiv2_options_openapiv2_proto_msgTypes,
  3786. }.Build()
  3787. File_protoc_gen_openapiv2_options_openapiv2_proto = out.File
  3788. file_protoc_gen_openapiv2_options_openapiv2_proto_rawDesc = nil
  3789. file_protoc_gen_openapiv2_options_openapiv2_proto_goTypes = nil
  3790. file_protoc_gen_openapiv2_options_openapiv2_proto_depIdxs = nil
  3791. }