zone.pb.go 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.21.4
  5. // source: proto/zone.proto
  6. package zone
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type Phase int32
  20. const (
  21. Phase_http_request_sanitize Phase = 0 //URL 规范化
  22. Phase_http_request_transform Phase = 1 //URL 重写规则
  23. // http_request_origin = 2; //起源规则
  24. // http_request_cache_settings = 3; //缓存规则
  25. // http_config_settings = 4; //配置规则
  26. // http_request_dynamic_redirect = 5; //动态重定向
  27. // ddos_l7 = 6; //HTTP DDoS 攻击防护
  28. // http_request_firewall_custom = 7; //Web 应用程序防火墙 (WAF)
  29. // http_ratelimit = 8; //限速规则
  30. // http_request_firewall_managed = 9; //Web 应用程序防火墙 (WAF)
  31. // http_request_sbfm = 10; //超级机器人战斗模式
  32. // http_request_redirect = 11; //批量重定向
  33. Phase_http_request_late_transform Phase = 12 //HTTP 请求头修改规则
  34. // http_custom_errors = 13; //自定义错误响应
  35. Phase_http_response_headers_transform Phase = 14 //HTTP响应头修改规则
  36. )
  37. // Enum value maps for Phase.
  38. var (
  39. Phase_name = map[int32]string{
  40. 0: "http_request_sanitize",
  41. 1: "http_request_transform",
  42. 12: "http_request_late_transform",
  43. 14: "http_response_headers_transform",
  44. }
  45. Phase_value = map[string]int32{
  46. "http_request_sanitize": 0,
  47. "http_request_transform": 1,
  48. "http_request_late_transform": 12,
  49. "http_response_headers_transform": 14,
  50. }
  51. )
  52. func (x Phase) Enum() *Phase {
  53. p := new(Phase)
  54. *p = x
  55. return p
  56. }
  57. func (x Phase) String() string {
  58. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  59. }
  60. func (Phase) Descriptor() protoreflect.EnumDescriptor {
  61. return file_proto_zone_proto_enumTypes[0].Descriptor()
  62. }
  63. func (Phase) Type() protoreflect.EnumType {
  64. return &file_proto_zone_proto_enumTypes[0]
  65. }
  66. func (x Phase) Number() protoreflect.EnumNumber {
  67. return protoreflect.EnumNumber(x)
  68. }
  69. // Deprecated: Use Phase.Descriptor instead.
  70. func (Phase) EnumDescriptor() ([]byte, []int) {
  71. return file_proto_zone_proto_rawDescGZIP(), []int{0}
  72. }
  73. // Zone CURD
  74. type ZoneCloudflareEntity struct {
  75. state protoimpl.MessageState
  76. sizeCache protoimpl.SizeCache
  77. unknownFields protoimpl.UnknownFields
  78. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  79. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  80. Plan *ZoneCloudflareEntity_Plan `protobuf:"bytes,3,opt,name=plan,proto3" json:"plan,omitempty"`
  81. PlanPending *ZoneCloudflareEntity_Plan `protobuf:"bytes,4,opt,name=plan_pending,json=planPending,proto3" json:"plan_pending,omitempty"`
  82. Status string `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
  83. Paused bool `protobuf:"varint,6,opt,name=paused,proto3" json:"paused,omitempty"`
  84. Type string `protobuf:"bytes,7,opt,name=type,proto3" json:"type,omitempty"`
  85. VerificationKey string `protobuf:"bytes,8,opt,name=verification_key,json=verificationKey,proto3" json:"verification_key,omitempty"`
  86. }
  87. func (x *ZoneCloudflareEntity) Reset() {
  88. *x = ZoneCloudflareEntity{}
  89. if protoimpl.UnsafeEnabled {
  90. mi := &file_proto_zone_proto_msgTypes[0]
  91. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  92. ms.StoreMessageInfo(mi)
  93. }
  94. }
  95. func (x *ZoneCloudflareEntity) String() string {
  96. return protoimpl.X.MessageStringOf(x)
  97. }
  98. func (*ZoneCloudflareEntity) ProtoMessage() {}
  99. func (x *ZoneCloudflareEntity) ProtoReflect() protoreflect.Message {
  100. mi := &file_proto_zone_proto_msgTypes[0]
  101. if protoimpl.UnsafeEnabled && x != nil {
  102. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  103. if ms.LoadMessageInfo() == nil {
  104. ms.StoreMessageInfo(mi)
  105. }
  106. return ms
  107. }
  108. return mi.MessageOf(x)
  109. }
  110. // Deprecated: Use ZoneCloudflareEntity.ProtoReflect.Descriptor instead.
  111. func (*ZoneCloudflareEntity) Descriptor() ([]byte, []int) {
  112. return file_proto_zone_proto_rawDescGZIP(), []int{0}
  113. }
  114. func (x *ZoneCloudflareEntity) GetId() string {
  115. if x != nil {
  116. return x.Id
  117. }
  118. return ""
  119. }
  120. func (x *ZoneCloudflareEntity) GetName() string {
  121. if x != nil {
  122. return x.Name
  123. }
  124. return ""
  125. }
  126. func (x *ZoneCloudflareEntity) GetPlan() *ZoneCloudflareEntity_Plan {
  127. if x != nil {
  128. return x.Plan
  129. }
  130. return nil
  131. }
  132. func (x *ZoneCloudflareEntity) GetPlanPending() *ZoneCloudflareEntity_Plan {
  133. if x != nil {
  134. return x.PlanPending
  135. }
  136. return nil
  137. }
  138. func (x *ZoneCloudflareEntity) GetStatus() string {
  139. if x != nil {
  140. return x.Status
  141. }
  142. return ""
  143. }
  144. func (x *ZoneCloudflareEntity) GetPaused() bool {
  145. if x != nil {
  146. return x.Paused
  147. }
  148. return false
  149. }
  150. func (x *ZoneCloudflareEntity) GetType() string {
  151. if x != nil {
  152. return x.Type
  153. }
  154. return ""
  155. }
  156. func (x *ZoneCloudflareEntity) GetVerificationKey() string {
  157. if x != nil {
  158. return x.VerificationKey
  159. }
  160. return ""
  161. }
  162. type ZoneIDByNameRequestCloudflare struct {
  163. state protoimpl.MessageState
  164. sizeCache protoimpl.SizeCache
  165. unknownFields protoimpl.UnknownFields
  166. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  167. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  168. ZoneName string `protobuf:"bytes,3,opt,name=zoneName,proto3" json:"zoneName,omitempty"`
  169. }
  170. func (x *ZoneIDByNameRequestCloudflare) Reset() {
  171. *x = ZoneIDByNameRequestCloudflare{}
  172. if protoimpl.UnsafeEnabled {
  173. mi := &file_proto_zone_proto_msgTypes[1]
  174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  175. ms.StoreMessageInfo(mi)
  176. }
  177. }
  178. func (x *ZoneIDByNameRequestCloudflare) String() string {
  179. return protoimpl.X.MessageStringOf(x)
  180. }
  181. func (*ZoneIDByNameRequestCloudflare) ProtoMessage() {}
  182. func (x *ZoneIDByNameRequestCloudflare) ProtoReflect() protoreflect.Message {
  183. mi := &file_proto_zone_proto_msgTypes[1]
  184. if protoimpl.UnsafeEnabled && x != nil {
  185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  186. if ms.LoadMessageInfo() == nil {
  187. ms.StoreMessageInfo(mi)
  188. }
  189. return ms
  190. }
  191. return mi.MessageOf(x)
  192. }
  193. // Deprecated: Use ZoneIDByNameRequestCloudflare.ProtoReflect.Descriptor instead.
  194. func (*ZoneIDByNameRequestCloudflare) Descriptor() ([]byte, []int) {
  195. return file_proto_zone_proto_rawDescGZIP(), []int{1}
  196. }
  197. func (x *ZoneIDByNameRequestCloudflare) GetApiKey() string {
  198. if x != nil {
  199. return x.ApiKey
  200. }
  201. return ""
  202. }
  203. func (x *ZoneIDByNameRequestCloudflare) GetApiEmail() string {
  204. if x != nil {
  205. return x.ApiEmail
  206. }
  207. return ""
  208. }
  209. func (x *ZoneIDByNameRequestCloudflare) GetZoneName() string {
  210. if x != nil {
  211. return x.ZoneName
  212. }
  213. return ""
  214. }
  215. type ZoneIDByNameReplyCloudflare struct {
  216. state protoimpl.MessageState
  217. sizeCache protoimpl.SizeCache
  218. unknownFields protoimpl.UnknownFields
  219. ZoneId string `protobuf:"bytes,1,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  220. }
  221. func (x *ZoneIDByNameReplyCloudflare) Reset() {
  222. *x = ZoneIDByNameReplyCloudflare{}
  223. if protoimpl.UnsafeEnabled {
  224. mi := &file_proto_zone_proto_msgTypes[2]
  225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  226. ms.StoreMessageInfo(mi)
  227. }
  228. }
  229. func (x *ZoneIDByNameReplyCloudflare) String() string {
  230. return protoimpl.X.MessageStringOf(x)
  231. }
  232. func (*ZoneIDByNameReplyCloudflare) ProtoMessage() {}
  233. func (x *ZoneIDByNameReplyCloudflare) ProtoReflect() protoreflect.Message {
  234. mi := &file_proto_zone_proto_msgTypes[2]
  235. if protoimpl.UnsafeEnabled && x != nil {
  236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  237. if ms.LoadMessageInfo() == nil {
  238. ms.StoreMessageInfo(mi)
  239. }
  240. return ms
  241. }
  242. return mi.MessageOf(x)
  243. }
  244. // Deprecated: Use ZoneIDByNameReplyCloudflare.ProtoReflect.Descriptor instead.
  245. func (*ZoneIDByNameReplyCloudflare) Descriptor() ([]byte, []int) {
  246. return file_proto_zone_proto_rawDescGZIP(), []int{2}
  247. }
  248. func (x *ZoneIDByNameReplyCloudflare) GetZoneId() string {
  249. if x != nil {
  250. return x.ZoneId
  251. }
  252. return ""
  253. }
  254. type ZoneDetailsRequestCloudflare struct {
  255. state protoimpl.MessageState
  256. sizeCache protoimpl.SizeCache
  257. unknownFields protoimpl.UnknownFields
  258. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  259. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  260. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  261. }
  262. func (x *ZoneDetailsRequestCloudflare) Reset() {
  263. *x = ZoneDetailsRequestCloudflare{}
  264. if protoimpl.UnsafeEnabled {
  265. mi := &file_proto_zone_proto_msgTypes[3]
  266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  267. ms.StoreMessageInfo(mi)
  268. }
  269. }
  270. func (x *ZoneDetailsRequestCloudflare) String() string {
  271. return protoimpl.X.MessageStringOf(x)
  272. }
  273. func (*ZoneDetailsRequestCloudflare) ProtoMessage() {}
  274. func (x *ZoneDetailsRequestCloudflare) ProtoReflect() protoreflect.Message {
  275. mi := &file_proto_zone_proto_msgTypes[3]
  276. if protoimpl.UnsafeEnabled && x != nil {
  277. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  278. if ms.LoadMessageInfo() == nil {
  279. ms.StoreMessageInfo(mi)
  280. }
  281. return ms
  282. }
  283. return mi.MessageOf(x)
  284. }
  285. // Deprecated: Use ZoneDetailsRequestCloudflare.ProtoReflect.Descriptor instead.
  286. func (*ZoneDetailsRequestCloudflare) Descriptor() ([]byte, []int) {
  287. return file_proto_zone_proto_rawDescGZIP(), []int{3}
  288. }
  289. func (x *ZoneDetailsRequestCloudflare) GetApiKey() string {
  290. if x != nil {
  291. return x.ApiKey
  292. }
  293. return ""
  294. }
  295. func (x *ZoneDetailsRequestCloudflare) GetApiEmail() string {
  296. if x != nil {
  297. return x.ApiEmail
  298. }
  299. return ""
  300. }
  301. func (x *ZoneDetailsRequestCloudflare) GetZoneId() string {
  302. if x != nil {
  303. return x.ZoneId
  304. }
  305. return ""
  306. }
  307. type ZoneDetailsReplyCloudflare struct {
  308. state protoimpl.MessageState
  309. sizeCache protoimpl.SizeCache
  310. unknownFields protoimpl.UnknownFields
  311. Result *ZoneCloudflareEntity `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  312. }
  313. func (x *ZoneDetailsReplyCloudflare) Reset() {
  314. *x = ZoneDetailsReplyCloudflare{}
  315. if protoimpl.UnsafeEnabled {
  316. mi := &file_proto_zone_proto_msgTypes[4]
  317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  318. ms.StoreMessageInfo(mi)
  319. }
  320. }
  321. func (x *ZoneDetailsReplyCloudflare) String() string {
  322. return protoimpl.X.MessageStringOf(x)
  323. }
  324. func (*ZoneDetailsReplyCloudflare) ProtoMessage() {}
  325. func (x *ZoneDetailsReplyCloudflare) ProtoReflect() protoreflect.Message {
  326. mi := &file_proto_zone_proto_msgTypes[4]
  327. if protoimpl.UnsafeEnabled && x != nil {
  328. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  329. if ms.LoadMessageInfo() == nil {
  330. ms.StoreMessageInfo(mi)
  331. }
  332. return ms
  333. }
  334. return mi.MessageOf(x)
  335. }
  336. // Deprecated: Use ZoneDetailsReplyCloudflare.ProtoReflect.Descriptor instead.
  337. func (*ZoneDetailsReplyCloudflare) Descriptor() ([]byte, []int) {
  338. return file_proto_zone_proto_rawDescGZIP(), []int{4}
  339. }
  340. func (x *ZoneDetailsReplyCloudflare) GetResult() *ZoneCloudflareEntity {
  341. if x != nil {
  342. return x.Result
  343. }
  344. return nil
  345. }
  346. type GetZonesRequestCloudflare struct {
  347. state protoimpl.MessageState
  348. sizeCache protoimpl.SizeCache
  349. unknownFields protoimpl.UnknownFields
  350. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  351. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  352. Domain string `protobuf:"bytes,3,opt,name=domain,proto3" json:"domain,omitempty"`
  353. }
  354. func (x *GetZonesRequestCloudflare) Reset() {
  355. *x = GetZonesRequestCloudflare{}
  356. if protoimpl.UnsafeEnabled {
  357. mi := &file_proto_zone_proto_msgTypes[5]
  358. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  359. ms.StoreMessageInfo(mi)
  360. }
  361. }
  362. func (x *GetZonesRequestCloudflare) String() string {
  363. return protoimpl.X.MessageStringOf(x)
  364. }
  365. func (*GetZonesRequestCloudflare) ProtoMessage() {}
  366. func (x *GetZonesRequestCloudflare) ProtoReflect() protoreflect.Message {
  367. mi := &file_proto_zone_proto_msgTypes[5]
  368. if protoimpl.UnsafeEnabled && x != nil {
  369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  370. if ms.LoadMessageInfo() == nil {
  371. ms.StoreMessageInfo(mi)
  372. }
  373. return ms
  374. }
  375. return mi.MessageOf(x)
  376. }
  377. // Deprecated: Use GetZonesRequestCloudflare.ProtoReflect.Descriptor instead.
  378. func (*GetZonesRequestCloudflare) Descriptor() ([]byte, []int) {
  379. return file_proto_zone_proto_rawDescGZIP(), []int{5}
  380. }
  381. func (x *GetZonesRequestCloudflare) GetApiKey() string {
  382. if x != nil {
  383. return x.ApiKey
  384. }
  385. return ""
  386. }
  387. func (x *GetZonesRequestCloudflare) GetApiEmail() string {
  388. if x != nil {
  389. return x.ApiEmail
  390. }
  391. return ""
  392. }
  393. func (x *GetZonesRequestCloudflare) GetDomain() string {
  394. if x != nil {
  395. return x.Domain
  396. }
  397. return ""
  398. }
  399. type GetZonesReplyCloudflare struct {
  400. state protoimpl.MessageState
  401. sizeCache protoimpl.SizeCache
  402. unknownFields protoimpl.UnknownFields
  403. Result []*ZoneCloudflareEntity `protobuf:"bytes,1,rep,name=result,proto3" json:"result,omitempty"`
  404. Success bool `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"`
  405. }
  406. func (x *GetZonesReplyCloudflare) Reset() {
  407. *x = GetZonesReplyCloudflare{}
  408. if protoimpl.UnsafeEnabled {
  409. mi := &file_proto_zone_proto_msgTypes[6]
  410. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  411. ms.StoreMessageInfo(mi)
  412. }
  413. }
  414. func (x *GetZonesReplyCloudflare) String() string {
  415. return protoimpl.X.MessageStringOf(x)
  416. }
  417. func (*GetZonesReplyCloudflare) ProtoMessage() {}
  418. func (x *GetZonesReplyCloudflare) ProtoReflect() protoreflect.Message {
  419. mi := &file_proto_zone_proto_msgTypes[6]
  420. if protoimpl.UnsafeEnabled && x != nil {
  421. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  422. if ms.LoadMessageInfo() == nil {
  423. ms.StoreMessageInfo(mi)
  424. }
  425. return ms
  426. }
  427. return mi.MessageOf(x)
  428. }
  429. // Deprecated: Use GetZonesReplyCloudflare.ProtoReflect.Descriptor instead.
  430. func (*GetZonesReplyCloudflare) Descriptor() ([]byte, []int) {
  431. return file_proto_zone_proto_rawDescGZIP(), []int{6}
  432. }
  433. func (x *GetZonesReplyCloudflare) GetResult() []*ZoneCloudflareEntity {
  434. if x != nil {
  435. return x.Result
  436. }
  437. return nil
  438. }
  439. func (x *GetZonesReplyCloudflare) GetSuccess() bool {
  440. if x != nil {
  441. return x.Success
  442. }
  443. return false
  444. }
  445. type ListZonesRequestCloudflare struct {
  446. state protoimpl.MessageState
  447. sizeCache protoimpl.SizeCache
  448. unknownFields protoimpl.UnknownFields
  449. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  450. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  451. }
  452. func (x *ListZonesRequestCloudflare) Reset() {
  453. *x = ListZonesRequestCloudflare{}
  454. if protoimpl.UnsafeEnabled {
  455. mi := &file_proto_zone_proto_msgTypes[7]
  456. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  457. ms.StoreMessageInfo(mi)
  458. }
  459. }
  460. func (x *ListZonesRequestCloudflare) String() string {
  461. return protoimpl.X.MessageStringOf(x)
  462. }
  463. func (*ListZonesRequestCloudflare) ProtoMessage() {}
  464. func (x *ListZonesRequestCloudflare) ProtoReflect() protoreflect.Message {
  465. mi := &file_proto_zone_proto_msgTypes[7]
  466. if protoimpl.UnsafeEnabled && x != nil {
  467. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  468. if ms.LoadMessageInfo() == nil {
  469. ms.StoreMessageInfo(mi)
  470. }
  471. return ms
  472. }
  473. return mi.MessageOf(x)
  474. }
  475. // Deprecated: Use ListZonesRequestCloudflare.ProtoReflect.Descriptor instead.
  476. func (*ListZonesRequestCloudflare) Descriptor() ([]byte, []int) {
  477. return file_proto_zone_proto_rawDescGZIP(), []int{7}
  478. }
  479. func (x *ListZonesRequestCloudflare) GetApiKey() string {
  480. if x != nil {
  481. return x.ApiKey
  482. }
  483. return ""
  484. }
  485. func (x *ListZonesRequestCloudflare) GetApiEmail() string {
  486. if x != nil {
  487. return x.ApiEmail
  488. }
  489. return ""
  490. }
  491. type ListZonesByAccountIdRequestCloudflare struct {
  492. state protoimpl.MessageState
  493. sizeCache protoimpl.SizeCache
  494. unknownFields protoimpl.UnknownFields
  495. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  496. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  497. AccountId string `protobuf:"bytes,3,opt,name=accountId,proto3" json:"accountId,omitempty"`
  498. }
  499. func (x *ListZonesByAccountIdRequestCloudflare) Reset() {
  500. *x = ListZonesByAccountIdRequestCloudflare{}
  501. if protoimpl.UnsafeEnabled {
  502. mi := &file_proto_zone_proto_msgTypes[8]
  503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  504. ms.StoreMessageInfo(mi)
  505. }
  506. }
  507. func (x *ListZonesByAccountIdRequestCloudflare) String() string {
  508. return protoimpl.X.MessageStringOf(x)
  509. }
  510. func (*ListZonesByAccountIdRequestCloudflare) ProtoMessage() {}
  511. func (x *ListZonesByAccountIdRequestCloudflare) ProtoReflect() protoreflect.Message {
  512. mi := &file_proto_zone_proto_msgTypes[8]
  513. if protoimpl.UnsafeEnabled && x != nil {
  514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  515. if ms.LoadMessageInfo() == nil {
  516. ms.StoreMessageInfo(mi)
  517. }
  518. return ms
  519. }
  520. return mi.MessageOf(x)
  521. }
  522. // Deprecated: Use ListZonesByAccountIdRequestCloudflare.ProtoReflect.Descriptor instead.
  523. func (*ListZonesByAccountIdRequestCloudflare) Descriptor() ([]byte, []int) {
  524. return file_proto_zone_proto_rawDescGZIP(), []int{8}
  525. }
  526. func (x *ListZonesByAccountIdRequestCloudflare) GetApiKey() string {
  527. if x != nil {
  528. return x.ApiKey
  529. }
  530. return ""
  531. }
  532. func (x *ListZonesByAccountIdRequestCloudflare) GetApiEmail() string {
  533. if x != nil {
  534. return x.ApiEmail
  535. }
  536. return ""
  537. }
  538. func (x *ListZonesByAccountIdRequestCloudflare) GetAccountId() string {
  539. if x != nil {
  540. return x.AccountId
  541. }
  542. return ""
  543. }
  544. type ZonesList struct {
  545. state protoimpl.MessageState
  546. sizeCache protoimpl.SizeCache
  547. unknownFields protoimpl.UnknownFields
  548. Result []*ZoneCloudflareEntity `protobuf:"bytes,1,rep,name=result,proto3" json:"result,omitempty"`
  549. }
  550. func (x *ZonesList) Reset() {
  551. *x = ZonesList{}
  552. if protoimpl.UnsafeEnabled {
  553. mi := &file_proto_zone_proto_msgTypes[9]
  554. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  555. ms.StoreMessageInfo(mi)
  556. }
  557. }
  558. func (x *ZonesList) String() string {
  559. return protoimpl.X.MessageStringOf(x)
  560. }
  561. func (*ZonesList) ProtoMessage() {}
  562. func (x *ZonesList) ProtoReflect() protoreflect.Message {
  563. mi := &file_proto_zone_proto_msgTypes[9]
  564. if protoimpl.UnsafeEnabled && x != nil {
  565. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  566. if ms.LoadMessageInfo() == nil {
  567. ms.StoreMessageInfo(mi)
  568. }
  569. return ms
  570. }
  571. return mi.MessageOf(x)
  572. }
  573. // Deprecated: Use ZonesList.ProtoReflect.Descriptor instead.
  574. func (*ZonesList) Descriptor() ([]byte, []int) {
  575. return file_proto_zone_proto_rawDescGZIP(), []int{9}
  576. }
  577. func (x *ZonesList) GetResult() []*ZoneCloudflareEntity {
  578. if x != nil {
  579. return x.Result
  580. }
  581. return nil
  582. }
  583. type EditZoneRequestCloudflare struct {
  584. state protoimpl.MessageState
  585. sizeCache protoimpl.SizeCache
  586. unknownFields protoimpl.UnknownFields
  587. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  588. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  589. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  590. Paused *bool `protobuf:"varint,4,opt,name=paused,proto3,oneof" json:"paused,omitempty"`
  591. PlanId *string `protobuf:"bytes,5,opt,name=planId,proto3,oneof" json:"planId,omitempty"`
  592. Type *string `protobuf:"bytes,6,opt,name=type,proto3,oneof" json:"type,omitempty"`
  593. }
  594. func (x *EditZoneRequestCloudflare) Reset() {
  595. *x = EditZoneRequestCloudflare{}
  596. if protoimpl.UnsafeEnabled {
  597. mi := &file_proto_zone_proto_msgTypes[10]
  598. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  599. ms.StoreMessageInfo(mi)
  600. }
  601. }
  602. func (x *EditZoneRequestCloudflare) String() string {
  603. return protoimpl.X.MessageStringOf(x)
  604. }
  605. func (*EditZoneRequestCloudflare) ProtoMessage() {}
  606. func (x *EditZoneRequestCloudflare) ProtoReflect() protoreflect.Message {
  607. mi := &file_proto_zone_proto_msgTypes[10]
  608. if protoimpl.UnsafeEnabled && x != nil {
  609. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  610. if ms.LoadMessageInfo() == nil {
  611. ms.StoreMessageInfo(mi)
  612. }
  613. return ms
  614. }
  615. return mi.MessageOf(x)
  616. }
  617. // Deprecated: Use EditZoneRequestCloudflare.ProtoReflect.Descriptor instead.
  618. func (*EditZoneRequestCloudflare) Descriptor() ([]byte, []int) {
  619. return file_proto_zone_proto_rawDescGZIP(), []int{10}
  620. }
  621. func (x *EditZoneRequestCloudflare) GetApiKey() string {
  622. if x != nil {
  623. return x.ApiKey
  624. }
  625. return ""
  626. }
  627. func (x *EditZoneRequestCloudflare) GetApiEmail() string {
  628. if x != nil {
  629. return x.ApiEmail
  630. }
  631. return ""
  632. }
  633. func (x *EditZoneRequestCloudflare) GetZoneId() string {
  634. if x != nil {
  635. return x.ZoneId
  636. }
  637. return ""
  638. }
  639. func (x *EditZoneRequestCloudflare) GetPaused() bool {
  640. if x != nil && x.Paused != nil {
  641. return *x.Paused
  642. }
  643. return false
  644. }
  645. func (x *EditZoneRequestCloudflare) GetPlanId() string {
  646. if x != nil && x.PlanId != nil {
  647. return *x.PlanId
  648. }
  649. return ""
  650. }
  651. func (x *EditZoneRequestCloudflare) GetType() string {
  652. if x != nil && x.Type != nil {
  653. return *x.Type
  654. }
  655. return ""
  656. }
  657. type EditZoneReplyCloudflare struct {
  658. state protoimpl.MessageState
  659. sizeCache protoimpl.SizeCache
  660. unknownFields protoimpl.UnknownFields
  661. Result *ZoneCloudflareEntity `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  662. Success bool `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"`
  663. }
  664. func (x *EditZoneReplyCloudflare) Reset() {
  665. *x = EditZoneReplyCloudflare{}
  666. if protoimpl.UnsafeEnabled {
  667. mi := &file_proto_zone_proto_msgTypes[11]
  668. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  669. ms.StoreMessageInfo(mi)
  670. }
  671. }
  672. func (x *EditZoneReplyCloudflare) String() string {
  673. return protoimpl.X.MessageStringOf(x)
  674. }
  675. func (*EditZoneReplyCloudflare) ProtoMessage() {}
  676. func (x *EditZoneReplyCloudflare) ProtoReflect() protoreflect.Message {
  677. mi := &file_proto_zone_proto_msgTypes[11]
  678. if protoimpl.UnsafeEnabled && x != nil {
  679. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  680. if ms.LoadMessageInfo() == nil {
  681. ms.StoreMessageInfo(mi)
  682. }
  683. return ms
  684. }
  685. return mi.MessageOf(x)
  686. }
  687. // Deprecated: Use EditZoneReplyCloudflare.ProtoReflect.Descriptor instead.
  688. func (*EditZoneReplyCloudflare) Descriptor() ([]byte, []int) {
  689. return file_proto_zone_proto_rawDescGZIP(), []int{11}
  690. }
  691. func (x *EditZoneReplyCloudflare) GetResult() *ZoneCloudflareEntity {
  692. if x != nil {
  693. return x.Result
  694. }
  695. return nil
  696. }
  697. func (x *EditZoneReplyCloudflare) GetSuccess() bool {
  698. if x != nil {
  699. return x.Success
  700. }
  701. return false
  702. }
  703. type DeleteZoneRequestCloudflare struct {
  704. state protoimpl.MessageState
  705. sizeCache protoimpl.SizeCache
  706. unknownFields protoimpl.UnknownFields
  707. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  708. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  709. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  710. }
  711. func (x *DeleteZoneRequestCloudflare) Reset() {
  712. *x = DeleteZoneRequestCloudflare{}
  713. if protoimpl.UnsafeEnabled {
  714. mi := &file_proto_zone_proto_msgTypes[12]
  715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  716. ms.StoreMessageInfo(mi)
  717. }
  718. }
  719. func (x *DeleteZoneRequestCloudflare) String() string {
  720. return protoimpl.X.MessageStringOf(x)
  721. }
  722. func (*DeleteZoneRequestCloudflare) ProtoMessage() {}
  723. func (x *DeleteZoneRequestCloudflare) ProtoReflect() protoreflect.Message {
  724. mi := &file_proto_zone_proto_msgTypes[12]
  725. if protoimpl.UnsafeEnabled && x != nil {
  726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  727. if ms.LoadMessageInfo() == nil {
  728. ms.StoreMessageInfo(mi)
  729. }
  730. return ms
  731. }
  732. return mi.MessageOf(x)
  733. }
  734. // Deprecated: Use DeleteZoneRequestCloudflare.ProtoReflect.Descriptor instead.
  735. func (*DeleteZoneRequestCloudflare) Descriptor() ([]byte, []int) {
  736. return file_proto_zone_proto_rawDescGZIP(), []int{12}
  737. }
  738. func (x *DeleteZoneRequestCloudflare) GetApiKey() string {
  739. if x != nil {
  740. return x.ApiKey
  741. }
  742. return ""
  743. }
  744. func (x *DeleteZoneRequestCloudflare) GetApiEmail() string {
  745. if x != nil {
  746. return x.ApiEmail
  747. }
  748. return ""
  749. }
  750. func (x *DeleteZoneRequestCloudflare) GetZoneId() string {
  751. if x != nil {
  752. return x.ZoneId
  753. }
  754. return ""
  755. }
  756. type DeleteZoneReplyCloudflare struct {
  757. state protoimpl.MessageState
  758. sizeCache protoimpl.SizeCache
  759. unknownFields protoimpl.UnknownFields
  760. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
  761. Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
  762. }
  763. func (x *DeleteZoneReplyCloudflare) Reset() {
  764. *x = DeleteZoneReplyCloudflare{}
  765. if protoimpl.UnsafeEnabled {
  766. mi := &file_proto_zone_proto_msgTypes[13]
  767. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  768. ms.StoreMessageInfo(mi)
  769. }
  770. }
  771. func (x *DeleteZoneReplyCloudflare) String() string {
  772. return protoimpl.X.MessageStringOf(x)
  773. }
  774. func (*DeleteZoneReplyCloudflare) ProtoMessage() {}
  775. func (x *DeleteZoneReplyCloudflare) ProtoReflect() protoreflect.Message {
  776. mi := &file_proto_zone_proto_msgTypes[13]
  777. if protoimpl.UnsafeEnabled && x != nil {
  778. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  779. if ms.LoadMessageInfo() == nil {
  780. ms.StoreMessageInfo(mi)
  781. }
  782. return ms
  783. }
  784. return mi.MessageOf(x)
  785. }
  786. // Deprecated: Use DeleteZoneReplyCloudflare.ProtoReflect.Descriptor instead.
  787. func (*DeleteZoneReplyCloudflare) Descriptor() ([]byte, []int) {
  788. return file_proto_zone_proto_rawDescGZIP(), []int{13}
  789. }
  790. func (x *DeleteZoneReplyCloudflare) GetSuccess() bool {
  791. if x != nil {
  792. return x.Success
  793. }
  794. return false
  795. }
  796. func (x *DeleteZoneReplyCloudflare) GetId() string {
  797. if x != nil {
  798. return x.Id
  799. }
  800. return ""
  801. }
  802. type ActivationCheckRequestCloudflare struct {
  803. state protoimpl.MessageState
  804. sizeCache protoimpl.SizeCache
  805. unknownFields protoimpl.UnknownFields
  806. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  807. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  808. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  809. }
  810. func (x *ActivationCheckRequestCloudflare) Reset() {
  811. *x = ActivationCheckRequestCloudflare{}
  812. if protoimpl.UnsafeEnabled {
  813. mi := &file_proto_zone_proto_msgTypes[14]
  814. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  815. ms.StoreMessageInfo(mi)
  816. }
  817. }
  818. func (x *ActivationCheckRequestCloudflare) String() string {
  819. return protoimpl.X.MessageStringOf(x)
  820. }
  821. func (*ActivationCheckRequestCloudflare) ProtoMessage() {}
  822. func (x *ActivationCheckRequestCloudflare) ProtoReflect() protoreflect.Message {
  823. mi := &file_proto_zone_proto_msgTypes[14]
  824. if protoimpl.UnsafeEnabled && x != nil {
  825. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  826. if ms.LoadMessageInfo() == nil {
  827. ms.StoreMessageInfo(mi)
  828. }
  829. return ms
  830. }
  831. return mi.MessageOf(x)
  832. }
  833. // Deprecated: Use ActivationCheckRequestCloudflare.ProtoReflect.Descriptor instead.
  834. func (*ActivationCheckRequestCloudflare) Descriptor() ([]byte, []int) {
  835. return file_proto_zone_proto_rawDescGZIP(), []int{14}
  836. }
  837. func (x *ActivationCheckRequestCloudflare) GetApiKey() string {
  838. if x != nil {
  839. return x.ApiKey
  840. }
  841. return ""
  842. }
  843. func (x *ActivationCheckRequestCloudflare) GetApiEmail() string {
  844. if x != nil {
  845. return x.ApiEmail
  846. }
  847. return ""
  848. }
  849. func (x *ActivationCheckRequestCloudflare) GetZoneId() string {
  850. if x != nil {
  851. return x.ZoneId
  852. }
  853. return ""
  854. }
  855. type ActivationCheckReplyCloudflare struct {
  856. state protoimpl.MessageState
  857. sizeCache protoimpl.SizeCache
  858. unknownFields protoimpl.UnknownFields
  859. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
  860. }
  861. func (x *ActivationCheckReplyCloudflare) Reset() {
  862. *x = ActivationCheckReplyCloudflare{}
  863. if protoimpl.UnsafeEnabled {
  864. mi := &file_proto_zone_proto_msgTypes[15]
  865. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  866. ms.StoreMessageInfo(mi)
  867. }
  868. }
  869. func (x *ActivationCheckReplyCloudflare) String() string {
  870. return protoimpl.X.MessageStringOf(x)
  871. }
  872. func (*ActivationCheckReplyCloudflare) ProtoMessage() {}
  873. func (x *ActivationCheckReplyCloudflare) ProtoReflect() protoreflect.Message {
  874. mi := &file_proto_zone_proto_msgTypes[15]
  875. if protoimpl.UnsafeEnabled && x != nil {
  876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  877. if ms.LoadMessageInfo() == nil {
  878. ms.StoreMessageInfo(mi)
  879. }
  880. return ms
  881. }
  882. return mi.MessageOf(x)
  883. }
  884. // Deprecated: Use ActivationCheckReplyCloudflare.ProtoReflect.Descriptor instead.
  885. func (*ActivationCheckReplyCloudflare) Descriptor() ([]byte, []int) {
  886. return file_proto_zone_proto_rawDescGZIP(), []int{15}
  887. }
  888. func (x *ActivationCheckReplyCloudflare) GetSuccess() bool {
  889. if x != nil {
  890. return x.Success
  891. }
  892. return false
  893. }
  894. type PageRule struct {
  895. state protoimpl.MessageState
  896. sizeCache protoimpl.SizeCache
  897. unknownFields protoimpl.UnknownFields
  898. Id *string `protobuf:"bytes,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
  899. Expression string `protobuf:"bytes,2,opt,name=expression,proto3" json:"expression,omitempty"`
  900. Ttl *uint32 `protobuf:"varint,3,opt,name=ttl,proto3,oneof" json:"ttl,omitempty"`
  901. QueryArgsType *string `protobuf:"bytes,4,opt,name=queryArgsType,proto3,oneof" json:"queryArgsType,omitempty"`
  902. QueryArgs []string `protobuf:"bytes,5,rep,name=queryArgs,proto3" json:"queryArgs,omitempty"`
  903. OriginHost *string `protobuf:"bytes,6,opt,name=originHost,proto3,oneof" json:"originHost,omitempty"`
  904. OriginProtocol *uint32 `protobuf:"varint,7,opt,name=originProtocol,proto3,oneof" json:"originProtocol,omitempty"` // int64 priority = 8;
  905. }
  906. func (x *PageRule) Reset() {
  907. *x = PageRule{}
  908. if protoimpl.UnsafeEnabled {
  909. mi := &file_proto_zone_proto_msgTypes[16]
  910. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  911. ms.StoreMessageInfo(mi)
  912. }
  913. }
  914. func (x *PageRule) String() string {
  915. return protoimpl.X.MessageStringOf(x)
  916. }
  917. func (*PageRule) ProtoMessage() {}
  918. func (x *PageRule) ProtoReflect() protoreflect.Message {
  919. mi := &file_proto_zone_proto_msgTypes[16]
  920. if protoimpl.UnsafeEnabled && x != nil {
  921. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  922. if ms.LoadMessageInfo() == nil {
  923. ms.StoreMessageInfo(mi)
  924. }
  925. return ms
  926. }
  927. return mi.MessageOf(x)
  928. }
  929. // Deprecated: Use PageRule.ProtoReflect.Descriptor instead.
  930. func (*PageRule) Descriptor() ([]byte, []int) {
  931. return file_proto_zone_proto_rawDescGZIP(), []int{16}
  932. }
  933. func (x *PageRule) GetId() string {
  934. if x != nil && x.Id != nil {
  935. return *x.Id
  936. }
  937. return ""
  938. }
  939. func (x *PageRule) GetExpression() string {
  940. if x != nil {
  941. return x.Expression
  942. }
  943. return ""
  944. }
  945. func (x *PageRule) GetTtl() uint32 {
  946. if x != nil && x.Ttl != nil {
  947. return *x.Ttl
  948. }
  949. return 0
  950. }
  951. func (x *PageRule) GetQueryArgsType() string {
  952. if x != nil && x.QueryArgsType != nil {
  953. return *x.QueryArgsType
  954. }
  955. return ""
  956. }
  957. func (x *PageRule) GetQueryArgs() []string {
  958. if x != nil {
  959. return x.QueryArgs
  960. }
  961. return nil
  962. }
  963. func (x *PageRule) GetOriginHost() string {
  964. if x != nil && x.OriginHost != nil {
  965. return *x.OriginHost
  966. }
  967. return ""
  968. }
  969. func (x *PageRule) GetOriginProtocol() uint32 {
  970. if x != nil && x.OriginProtocol != nil {
  971. return *x.OriginProtocol
  972. }
  973. return 0
  974. }
  975. type PageRuleList struct {
  976. state protoimpl.MessageState
  977. sizeCache protoimpl.SizeCache
  978. unknownFields protoimpl.UnknownFields
  979. PageRules []*PageRule `protobuf:"bytes,1,rep,name=page_rules,json=pageRules,proto3" json:"page_rules,omitempty"`
  980. }
  981. func (x *PageRuleList) Reset() {
  982. *x = PageRuleList{}
  983. if protoimpl.UnsafeEnabled {
  984. mi := &file_proto_zone_proto_msgTypes[17]
  985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  986. ms.StoreMessageInfo(mi)
  987. }
  988. }
  989. func (x *PageRuleList) String() string {
  990. return protoimpl.X.MessageStringOf(x)
  991. }
  992. func (*PageRuleList) ProtoMessage() {}
  993. func (x *PageRuleList) ProtoReflect() protoreflect.Message {
  994. mi := &file_proto_zone_proto_msgTypes[17]
  995. if protoimpl.UnsafeEnabled && x != nil {
  996. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  997. if ms.LoadMessageInfo() == nil {
  998. ms.StoreMessageInfo(mi)
  999. }
  1000. return ms
  1001. }
  1002. return mi.MessageOf(x)
  1003. }
  1004. // Deprecated: Use PageRuleList.ProtoReflect.Descriptor instead.
  1005. func (*PageRuleList) Descriptor() ([]byte, []int) {
  1006. return file_proto_zone_proto_rawDescGZIP(), []int{17}
  1007. }
  1008. func (x *PageRuleList) GetPageRules() []*PageRule {
  1009. if x != nil {
  1010. return x.PageRules
  1011. }
  1012. return nil
  1013. }
  1014. type ListPageRuleRequestCloudflare struct {
  1015. state protoimpl.MessageState
  1016. sizeCache protoimpl.SizeCache
  1017. unknownFields protoimpl.UnknownFields
  1018. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  1019. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  1020. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  1021. }
  1022. func (x *ListPageRuleRequestCloudflare) Reset() {
  1023. *x = ListPageRuleRequestCloudflare{}
  1024. if protoimpl.UnsafeEnabled {
  1025. mi := &file_proto_zone_proto_msgTypes[18]
  1026. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1027. ms.StoreMessageInfo(mi)
  1028. }
  1029. }
  1030. func (x *ListPageRuleRequestCloudflare) String() string {
  1031. return protoimpl.X.MessageStringOf(x)
  1032. }
  1033. func (*ListPageRuleRequestCloudflare) ProtoMessage() {}
  1034. func (x *ListPageRuleRequestCloudflare) ProtoReflect() protoreflect.Message {
  1035. mi := &file_proto_zone_proto_msgTypes[18]
  1036. if protoimpl.UnsafeEnabled && x != nil {
  1037. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1038. if ms.LoadMessageInfo() == nil {
  1039. ms.StoreMessageInfo(mi)
  1040. }
  1041. return ms
  1042. }
  1043. return mi.MessageOf(x)
  1044. }
  1045. // Deprecated: Use ListPageRuleRequestCloudflare.ProtoReflect.Descriptor instead.
  1046. func (*ListPageRuleRequestCloudflare) Descriptor() ([]byte, []int) {
  1047. return file_proto_zone_proto_rawDescGZIP(), []int{18}
  1048. }
  1049. func (x *ListPageRuleRequestCloudflare) GetApiKey() string {
  1050. if x != nil {
  1051. return x.ApiKey
  1052. }
  1053. return ""
  1054. }
  1055. func (x *ListPageRuleRequestCloudflare) GetApiEmail() string {
  1056. if x != nil {
  1057. return x.ApiEmail
  1058. }
  1059. return ""
  1060. }
  1061. func (x *ListPageRuleRequestCloudflare) GetZoneId() string {
  1062. if x != nil {
  1063. return x.ZoneId
  1064. }
  1065. return ""
  1066. }
  1067. type CreatePageRuleRequestCloudflare struct {
  1068. state protoimpl.MessageState
  1069. sizeCache protoimpl.SizeCache
  1070. unknownFields protoimpl.UnknownFields
  1071. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  1072. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  1073. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  1074. PageRule *PageRule `protobuf:"bytes,4,opt,name=page_rule,json=pageRule,proto3" json:"page_rule,omitempty"`
  1075. }
  1076. func (x *CreatePageRuleRequestCloudflare) Reset() {
  1077. *x = CreatePageRuleRequestCloudflare{}
  1078. if protoimpl.UnsafeEnabled {
  1079. mi := &file_proto_zone_proto_msgTypes[19]
  1080. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1081. ms.StoreMessageInfo(mi)
  1082. }
  1083. }
  1084. func (x *CreatePageRuleRequestCloudflare) String() string {
  1085. return protoimpl.X.MessageStringOf(x)
  1086. }
  1087. func (*CreatePageRuleRequestCloudflare) ProtoMessage() {}
  1088. func (x *CreatePageRuleRequestCloudflare) ProtoReflect() protoreflect.Message {
  1089. mi := &file_proto_zone_proto_msgTypes[19]
  1090. if protoimpl.UnsafeEnabled && x != nil {
  1091. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1092. if ms.LoadMessageInfo() == nil {
  1093. ms.StoreMessageInfo(mi)
  1094. }
  1095. return ms
  1096. }
  1097. return mi.MessageOf(x)
  1098. }
  1099. // Deprecated: Use CreatePageRuleRequestCloudflare.ProtoReflect.Descriptor instead.
  1100. func (*CreatePageRuleRequestCloudflare) Descriptor() ([]byte, []int) {
  1101. return file_proto_zone_proto_rawDescGZIP(), []int{19}
  1102. }
  1103. func (x *CreatePageRuleRequestCloudflare) GetApiKey() string {
  1104. if x != nil {
  1105. return x.ApiKey
  1106. }
  1107. return ""
  1108. }
  1109. func (x *CreatePageRuleRequestCloudflare) GetApiEmail() string {
  1110. if x != nil {
  1111. return x.ApiEmail
  1112. }
  1113. return ""
  1114. }
  1115. func (x *CreatePageRuleRequestCloudflare) GetZoneId() string {
  1116. if x != nil {
  1117. return x.ZoneId
  1118. }
  1119. return ""
  1120. }
  1121. func (x *CreatePageRuleRequestCloudflare) GetPageRule() *PageRule {
  1122. if x != nil {
  1123. return x.PageRule
  1124. }
  1125. return nil
  1126. }
  1127. type UpdatePageRuleRequestCloudflare struct {
  1128. state protoimpl.MessageState
  1129. sizeCache protoimpl.SizeCache
  1130. unknownFields protoimpl.UnknownFields
  1131. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  1132. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  1133. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  1134. PageRule *PageRule `protobuf:"bytes,4,opt,name=page_rule,json=pageRule,proto3" json:"page_rule,omitempty"`
  1135. }
  1136. func (x *UpdatePageRuleRequestCloudflare) Reset() {
  1137. *x = UpdatePageRuleRequestCloudflare{}
  1138. if protoimpl.UnsafeEnabled {
  1139. mi := &file_proto_zone_proto_msgTypes[20]
  1140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1141. ms.StoreMessageInfo(mi)
  1142. }
  1143. }
  1144. func (x *UpdatePageRuleRequestCloudflare) String() string {
  1145. return protoimpl.X.MessageStringOf(x)
  1146. }
  1147. func (*UpdatePageRuleRequestCloudflare) ProtoMessage() {}
  1148. func (x *UpdatePageRuleRequestCloudflare) ProtoReflect() protoreflect.Message {
  1149. mi := &file_proto_zone_proto_msgTypes[20]
  1150. if protoimpl.UnsafeEnabled && x != nil {
  1151. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1152. if ms.LoadMessageInfo() == nil {
  1153. ms.StoreMessageInfo(mi)
  1154. }
  1155. return ms
  1156. }
  1157. return mi.MessageOf(x)
  1158. }
  1159. // Deprecated: Use UpdatePageRuleRequestCloudflare.ProtoReflect.Descriptor instead.
  1160. func (*UpdatePageRuleRequestCloudflare) Descriptor() ([]byte, []int) {
  1161. return file_proto_zone_proto_rawDescGZIP(), []int{20}
  1162. }
  1163. func (x *UpdatePageRuleRequestCloudflare) GetApiKey() string {
  1164. if x != nil {
  1165. return x.ApiKey
  1166. }
  1167. return ""
  1168. }
  1169. func (x *UpdatePageRuleRequestCloudflare) GetApiEmail() string {
  1170. if x != nil {
  1171. return x.ApiEmail
  1172. }
  1173. return ""
  1174. }
  1175. func (x *UpdatePageRuleRequestCloudflare) GetZoneId() string {
  1176. if x != nil {
  1177. return x.ZoneId
  1178. }
  1179. return ""
  1180. }
  1181. func (x *UpdatePageRuleRequestCloudflare) GetPageRule() *PageRule {
  1182. if x != nil {
  1183. return x.PageRule
  1184. }
  1185. return nil
  1186. }
  1187. type DeletePageRuleRequestCloudflare struct {
  1188. state protoimpl.MessageState
  1189. sizeCache protoimpl.SizeCache
  1190. unknownFields protoimpl.UnknownFields
  1191. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  1192. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  1193. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  1194. PageRuleId string `protobuf:"bytes,4,opt,name=page_rule_id,json=pageRuleId,proto3" json:"page_rule_id,omitempty"`
  1195. }
  1196. func (x *DeletePageRuleRequestCloudflare) Reset() {
  1197. *x = DeletePageRuleRequestCloudflare{}
  1198. if protoimpl.UnsafeEnabled {
  1199. mi := &file_proto_zone_proto_msgTypes[21]
  1200. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1201. ms.StoreMessageInfo(mi)
  1202. }
  1203. }
  1204. func (x *DeletePageRuleRequestCloudflare) String() string {
  1205. return protoimpl.X.MessageStringOf(x)
  1206. }
  1207. func (*DeletePageRuleRequestCloudflare) ProtoMessage() {}
  1208. func (x *DeletePageRuleRequestCloudflare) ProtoReflect() protoreflect.Message {
  1209. mi := &file_proto_zone_proto_msgTypes[21]
  1210. if protoimpl.UnsafeEnabled && x != nil {
  1211. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1212. if ms.LoadMessageInfo() == nil {
  1213. ms.StoreMessageInfo(mi)
  1214. }
  1215. return ms
  1216. }
  1217. return mi.MessageOf(x)
  1218. }
  1219. // Deprecated: Use DeletePageRuleRequestCloudflare.ProtoReflect.Descriptor instead.
  1220. func (*DeletePageRuleRequestCloudflare) Descriptor() ([]byte, []int) {
  1221. return file_proto_zone_proto_rawDescGZIP(), []int{21}
  1222. }
  1223. func (x *DeletePageRuleRequestCloudflare) GetApiKey() string {
  1224. if x != nil {
  1225. return x.ApiKey
  1226. }
  1227. return ""
  1228. }
  1229. func (x *DeletePageRuleRequestCloudflare) GetApiEmail() string {
  1230. if x != nil {
  1231. return x.ApiEmail
  1232. }
  1233. return ""
  1234. }
  1235. func (x *DeletePageRuleRequestCloudflare) GetZoneId() string {
  1236. if x != nil {
  1237. return x.ZoneId
  1238. }
  1239. return ""
  1240. }
  1241. func (x *DeletePageRuleRequestCloudflare) GetPageRuleId() string {
  1242. if x != nil {
  1243. return x.PageRuleId
  1244. }
  1245. return ""
  1246. }
  1247. type Rule struct {
  1248. state protoimpl.MessageState
  1249. sizeCache protoimpl.SizeCache
  1250. unknownFields protoimpl.UnknownFields
  1251. Expression string `protobuf:"bytes,1,opt,name=expression,proto3" json:"expression,omitempty"`
  1252. // optional uint32 ttl = 2;
  1253. // optional string queryArgsType = 3;
  1254. // repeated string queryArgs = 4;
  1255. // optional string originHost = 5;
  1256. OriginPath *string `protobuf:"bytes,6,opt,name=originPath,proto3,oneof" json:"originPath,omitempty"`
  1257. // optional uint32 originProtocol = 7;
  1258. RequestHeader map[string]string `protobuf:"bytes,8,rep,name=requestHeader,proto3" json:"requestHeader,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1259. ResponseHeader map[string]string `protobuf:"bytes,9,rep,name=responseHeader,proto3" json:"responseHeader,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1260. }
  1261. func (x *Rule) Reset() {
  1262. *x = Rule{}
  1263. if protoimpl.UnsafeEnabled {
  1264. mi := &file_proto_zone_proto_msgTypes[22]
  1265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1266. ms.StoreMessageInfo(mi)
  1267. }
  1268. }
  1269. func (x *Rule) String() string {
  1270. return protoimpl.X.MessageStringOf(x)
  1271. }
  1272. func (*Rule) ProtoMessage() {}
  1273. func (x *Rule) ProtoReflect() protoreflect.Message {
  1274. mi := &file_proto_zone_proto_msgTypes[22]
  1275. if protoimpl.UnsafeEnabled && x != nil {
  1276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1277. if ms.LoadMessageInfo() == nil {
  1278. ms.StoreMessageInfo(mi)
  1279. }
  1280. return ms
  1281. }
  1282. return mi.MessageOf(x)
  1283. }
  1284. // Deprecated: Use Rule.ProtoReflect.Descriptor instead.
  1285. func (*Rule) Descriptor() ([]byte, []int) {
  1286. return file_proto_zone_proto_rawDescGZIP(), []int{22}
  1287. }
  1288. func (x *Rule) GetExpression() string {
  1289. if x != nil {
  1290. return x.Expression
  1291. }
  1292. return ""
  1293. }
  1294. func (x *Rule) GetOriginPath() string {
  1295. if x != nil && x.OriginPath != nil {
  1296. return *x.OriginPath
  1297. }
  1298. return ""
  1299. }
  1300. func (x *Rule) GetRequestHeader() map[string]string {
  1301. if x != nil {
  1302. return x.RequestHeader
  1303. }
  1304. return nil
  1305. }
  1306. func (x *Rule) GetResponseHeader() map[string]string {
  1307. if x != nil {
  1308. return x.ResponseHeader
  1309. }
  1310. return nil
  1311. }
  1312. type RuleList struct {
  1313. state protoimpl.MessageState
  1314. sizeCache protoimpl.SizeCache
  1315. unknownFields protoimpl.UnknownFields
  1316. Rules []*Rule `protobuf:"bytes,1,rep,name=rules,proto3" json:"rules,omitempty"`
  1317. }
  1318. func (x *RuleList) Reset() {
  1319. *x = RuleList{}
  1320. if protoimpl.UnsafeEnabled {
  1321. mi := &file_proto_zone_proto_msgTypes[23]
  1322. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1323. ms.StoreMessageInfo(mi)
  1324. }
  1325. }
  1326. func (x *RuleList) String() string {
  1327. return protoimpl.X.MessageStringOf(x)
  1328. }
  1329. func (*RuleList) ProtoMessage() {}
  1330. func (x *RuleList) ProtoReflect() protoreflect.Message {
  1331. mi := &file_proto_zone_proto_msgTypes[23]
  1332. if protoimpl.UnsafeEnabled && x != nil {
  1333. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1334. if ms.LoadMessageInfo() == nil {
  1335. ms.StoreMessageInfo(mi)
  1336. }
  1337. return ms
  1338. }
  1339. return mi.MessageOf(x)
  1340. }
  1341. // Deprecated: Use RuleList.ProtoReflect.Descriptor instead.
  1342. func (*RuleList) Descriptor() ([]byte, []int) {
  1343. return file_proto_zone_proto_rawDescGZIP(), []int{23}
  1344. }
  1345. func (x *RuleList) GetRules() []*Rule {
  1346. if x != nil {
  1347. return x.Rules
  1348. }
  1349. return nil
  1350. }
  1351. type GetRuleSetRequestCloudflare struct {
  1352. state protoimpl.MessageState
  1353. sizeCache protoimpl.SizeCache
  1354. unknownFields protoimpl.UnknownFields
  1355. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  1356. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  1357. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  1358. Phase Phase `protobuf:"varint,4,opt,name=phase,proto3,enum=cloudflareApi.zone.Phase" json:"phase,omitempty"`
  1359. }
  1360. func (x *GetRuleSetRequestCloudflare) Reset() {
  1361. *x = GetRuleSetRequestCloudflare{}
  1362. if protoimpl.UnsafeEnabled {
  1363. mi := &file_proto_zone_proto_msgTypes[24]
  1364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1365. ms.StoreMessageInfo(mi)
  1366. }
  1367. }
  1368. func (x *GetRuleSetRequestCloudflare) String() string {
  1369. return protoimpl.X.MessageStringOf(x)
  1370. }
  1371. func (*GetRuleSetRequestCloudflare) ProtoMessage() {}
  1372. func (x *GetRuleSetRequestCloudflare) ProtoReflect() protoreflect.Message {
  1373. mi := &file_proto_zone_proto_msgTypes[24]
  1374. if protoimpl.UnsafeEnabled && 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. // Deprecated: Use GetRuleSetRequestCloudflare.ProtoReflect.Descriptor instead.
  1384. func (*GetRuleSetRequestCloudflare) Descriptor() ([]byte, []int) {
  1385. return file_proto_zone_proto_rawDescGZIP(), []int{24}
  1386. }
  1387. func (x *GetRuleSetRequestCloudflare) GetApiKey() string {
  1388. if x != nil {
  1389. return x.ApiKey
  1390. }
  1391. return ""
  1392. }
  1393. func (x *GetRuleSetRequestCloudflare) GetApiEmail() string {
  1394. if x != nil {
  1395. return x.ApiEmail
  1396. }
  1397. return ""
  1398. }
  1399. func (x *GetRuleSetRequestCloudflare) GetZoneId() string {
  1400. if x != nil {
  1401. return x.ZoneId
  1402. }
  1403. return ""
  1404. }
  1405. func (x *GetRuleSetRequestCloudflare) GetPhase() Phase {
  1406. if x != nil {
  1407. return x.Phase
  1408. }
  1409. return Phase_http_request_sanitize
  1410. }
  1411. type UpdateRuleSetRequestCloudflare struct {
  1412. state protoimpl.MessageState
  1413. sizeCache protoimpl.SizeCache
  1414. unknownFields protoimpl.UnknownFields
  1415. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  1416. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  1417. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  1418. Phase Phase `protobuf:"varint,4,opt,name=phase,proto3,enum=cloudflareApi.zone.Phase" json:"phase,omitempty"`
  1419. Rules []*Rule `protobuf:"bytes,5,rep,name=rules,proto3" json:"rules,omitempty"`
  1420. }
  1421. func (x *UpdateRuleSetRequestCloudflare) Reset() {
  1422. *x = UpdateRuleSetRequestCloudflare{}
  1423. if protoimpl.UnsafeEnabled {
  1424. mi := &file_proto_zone_proto_msgTypes[25]
  1425. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1426. ms.StoreMessageInfo(mi)
  1427. }
  1428. }
  1429. func (x *UpdateRuleSetRequestCloudflare) String() string {
  1430. return protoimpl.X.MessageStringOf(x)
  1431. }
  1432. func (*UpdateRuleSetRequestCloudflare) ProtoMessage() {}
  1433. func (x *UpdateRuleSetRequestCloudflare) ProtoReflect() protoreflect.Message {
  1434. mi := &file_proto_zone_proto_msgTypes[25]
  1435. if protoimpl.UnsafeEnabled && x != nil {
  1436. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1437. if ms.LoadMessageInfo() == nil {
  1438. ms.StoreMessageInfo(mi)
  1439. }
  1440. return ms
  1441. }
  1442. return mi.MessageOf(x)
  1443. }
  1444. // Deprecated: Use UpdateRuleSetRequestCloudflare.ProtoReflect.Descriptor instead.
  1445. func (*UpdateRuleSetRequestCloudflare) Descriptor() ([]byte, []int) {
  1446. return file_proto_zone_proto_rawDescGZIP(), []int{25}
  1447. }
  1448. func (x *UpdateRuleSetRequestCloudflare) GetApiKey() string {
  1449. if x != nil {
  1450. return x.ApiKey
  1451. }
  1452. return ""
  1453. }
  1454. func (x *UpdateRuleSetRequestCloudflare) GetApiEmail() string {
  1455. if x != nil {
  1456. return x.ApiEmail
  1457. }
  1458. return ""
  1459. }
  1460. func (x *UpdateRuleSetRequestCloudflare) GetZoneId() string {
  1461. if x != nil {
  1462. return x.ZoneId
  1463. }
  1464. return ""
  1465. }
  1466. func (x *UpdateRuleSetRequestCloudflare) GetPhase() Phase {
  1467. if x != nil {
  1468. return x.Phase
  1469. }
  1470. return Phase_http_request_sanitize
  1471. }
  1472. func (x *UpdateRuleSetRequestCloudflare) GetRules() []*Rule {
  1473. if x != nil {
  1474. return x.Rules
  1475. }
  1476. return nil
  1477. }
  1478. type UpdatePageRulesPrioritiesStruct struct {
  1479. state protoimpl.MessageState
  1480. sizeCache protoimpl.SizeCache
  1481. unknownFields protoimpl.UnknownFields
  1482. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  1483. Priority int64 `protobuf:"varint,2,opt,name=priority,proto3" json:"priority,omitempty"`
  1484. }
  1485. func (x *UpdatePageRulesPrioritiesStruct) Reset() {
  1486. *x = UpdatePageRulesPrioritiesStruct{}
  1487. if protoimpl.UnsafeEnabled {
  1488. mi := &file_proto_zone_proto_msgTypes[26]
  1489. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1490. ms.StoreMessageInfo(mi)
  1491. }
  1492. }
  1493. func (x *UpdatePageRulesPrioritiesStruct) String() string {
  1494. return protoimpl.X.MessageStringOf(x)
  1495. }
  1496. func (*UpdatePageRulesPrioritiesStruct) ProtoMessage() {}
  1497. func (x *UpdatePageRulesPrioritiesStruct) ProtoReflect() protoreflect.Message {
  1498. mi := &file_proto_zone_proto_msgTypes[26]
  1499. if protoimpl.UnsafeEnabled && x != nil {
  1500. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1501. if ms.LoadMessageInfo() == nil {
  1502. ms.StoreMessageInfo(mi)
  1503. }
  1504. return ms
  1505. }
  1506. return mi.MessageOf(x)
  1507. }
  1508. // Deprecated: Use UpdatePageRulesPrioritiesStruct.ProtoReflect.Descriptor instead.
  1509. func (*UpdatePageRulesPrioritiesStruct) Descriptor() ([]byte, []int) {
  1510. return file_proto_zone_proto_rawDescGZIP(), []int{26}
  1511. }
  1512. func (x *UpdatePageRulesPrioritiesStruct) GetId() string {
  1513. if x != nil {
  1514. return x.Id
  1515. }
  1516. return ""
  1517. }
  1518. func (x *UpdatePageRulesPrioritiesStruct) GetPriority() int64 {
  1519. if x != nil {
  1520. return x.Priority
  1521. }
  1522. return 0
  1523. }
  1524. type UpdatePageRulesPrioritiesRequestCloudflare struct {
  1525. state protoimpl.MessageState
  1526. sizeCache protoimpl.SizeCache
  1527. unknownFields protoimpl.UnknownFields
  1528. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  1529. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  1530. ZoneId string `protobuf:"bytes,3,opt,name=zoneId,proto3" json:"zoneId,omitempty"`
  1531. Data []*UpdatePageRulesPrioritiesStruct `protobuf:"bytes,4,rep,name=data,proto3" json:"data,omitempty"`
  1532. }
  1533. func (x *UpdatePageRulesPrioritiesRequestCloudflare) Reset() {
  1534. *x = UpdatePageRulesPrioritiesRequestCloudflare{}
  1535. if protoimpl.UnsafeEnabled {
  1536. mi := &file_proto_zone_proto_msgTypes[27]
  1537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1538. ms.StoreMessageInfo(mi)
  1539. }
  1540. }
  1541. func (x *UpdatePageRulesPrioritiesRequestCloudflare) String() string {
  1542. return protoimpl.X.MessageStringOf(x)
  1543. }
  1544. func (*UpdatePageRulesPrioritiesRequestCloudflare) ProtoMessage() {}
  1545. func (x *UpdatePageRulesPrioritiesRequestCloudflare) ProtoReflect() protoreflect.Message {
  1546. mi := &file_proto_zone_proto_msgTypes[27]
  1547. if protoimpl.UnsafeEnabled && x != nil {
  1548. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1549. if ms.LoadMessageInfo() == nil {
  1550. ms.StoreMessageInfo(mi)
  1551. }
  1552. return ms
  1553. }
  1554. return mi.MessageOf(x)
  1555. }
  1556. // Deprecated: Use UpdatePageRulesPrioritiesRequestCloudflare.ProtoReflect.Descriptor instead.
  1557. func (*UpdatePageRulesPrioritiesRequestCloudflare) Descriptor() ([]byte, []int) {
  1558. return file_proto_zone_proto_rawDescGZIP(), []int{27}
  1559. }
  1560. func (x *UpdatePageRulesPrioritiesRequestCloudflare) GetApiKey() string {
  1561. if x != nil {
  1562. return x.ApiKey
  1563. }
  1564. return ""
  1565. }
  1566. func (x *UpdatePageRulesPrioritiesRequestCloudflare) GetApiEmail() string {
  1567. if x != nil {
  1568. return x.ApiEmail
  1569. }
  1570. return ""
  1571. }
  1572. func (x *UpdatePageRulesPrioritiesRequestCloudflare) GetZoneId() string {
  1573. if x != nil {
  1574. return x.ZoneId
  1575. }
  1576. return ""
  1577. }
  1578. func (x *UpdatePageRulesPrioritiesRequestCloudflare) GetData() []*UpdatePageRulesPrioritiesStruct {
  1579. if x != nil {
  1580. return x.Data
  1581. }
  1582. return nil
  1583. }
  1584. type ZoneCloudflareEntity_Plan struct {
  1585. state protoimpl.MessageState
  1586. sizeCache protoimpl.SizeCache
  1587. unknownFields protoimpl.UnknownFields
  1588. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  1589. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1590. Price int64 `protobuf:"zigzag64,3,opt,name=price,proto3" json:"price,omitempty"`
  1591. }
  1592. func (x *ZoneCloudflareEntity_Plan) Reset() {
  1593. *x = ZoneCloudflareEntity_Plan{}
  1594. if protoimpl.UnsafeEnabled {
  1595. mi := &file_proto_zone_proto_msgTypes[28]
  1596. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1597. ms.StoreMessageInfo(mi)
  1598. }
  1599. }
  1600. func (x *ZoneCloudflareEntity_Plan) String() string {
  1601. return protoimpl.X.MessageStringOf(x)
  1602. }
  1603. func (*ZoneCloudflareEntity_Plan) ProtoMessage() {}
  1604. func (x *ZoneCloudflareEntity_Plan) ProtoReflect() protoreflect.Message {
  1605. mi := &file_proto_zone_proto_msgTypes[28]
  1606. if protoimpl.UnsafeEnabled && x != nil {
  1607. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1608. if ms.LoadMessageInfo() == nil {
  1609. ms.StoreMessageInfo(mi)
  1610. }
  1611. return ms
  1612. }
  1613. return mi.MessageOf(x)
  1614. }
  1615. // Deprecated: Use ZoneCloudflareEntity_Plan.ProtoReflect.Descriptor instead.
  1616. func (*ZoneCloudflareEntity_Plan) Descriptor() ([]byte, []int) {
  1617. return file_proto_zone_proto_rawDescGZIP(), []int{0, 0}
  1618. }
  1619. func (x *ZoneCloudflareEntity_Plan) GetId() string {
  1620. if x != nil {
  1621. return x.Id
  1622. }
  1623. return ""
  1624. }
  1625. func (x *ZoneCloudflareEntity_Plan) GetName() string {
  1626. if x != nil {
  1627. return x.Name
  1628. }
  1629. return ""
  1630. }
  1631. func (x *ZoneCloudflareEntity_Plan) GetPrice() int64 {
  1632. if x != nil {
  1633. return x.Price
  1634. }
  1635. return 0
  1636. }
  1637. var File_proto_zone_proto protoreflect.FileDescriptor
  1638. var file_proto_zone_proto_rawDesc = []byte{
  1639. 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1640. 0x74, 0x6f, 0x12, 0x12, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70,
  1641. 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x22, 0x80, 0x03, 0x0a, 0x14, 0x5a, 0x6f, 0x6e, 0x65, 0x43,
  1642. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12,
  1643. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  1644. 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
  1645. 0x61, 0x6d, 0x65, 0x12, 0x41, 0x0a, 0x04, 0x70, 0x6c, 0x61, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
  1646. 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70,
  1647. 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64,
  1648. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x2e, 0x50, 0x6c, 0x61, 0x6e,
  1649. 0x52, 0x04, 0x70, 0x6c, 0x61, 0x6e, 0x12, 0x50, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x70,
  1650. 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63,
  1651. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e,
  1652. 0x65, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65,
  1653. 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x0b, 0x70, 0x6c, 0x61,
  1654. 0x6e, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  1655. 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  1656. 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08,
  1657. 0x52, 0x06, 0x70, 0x61, 0x75, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
  1658. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x29, 0x0a, 0x10,
  1659. 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6b, 0x65, 0x79,
  1660. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61,
  1661. 0x74, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x1a, 0x40, 0x0a, 0x04, 0x50, 0x6c, 0x61, 0x6e, 0x12,
  1662. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  1663. 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
  1664. 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01,
  1665. 0x28, 0x12, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x22, 0x6f, 0x0a, 0x1d, 0x5a, 0x6f, 0x6e,
  1666. 0x65, 0x49, 0x44, 0x42, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1667. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70,
  1668. 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b,
  1669. 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02,
  1670. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a,
  1671. 0x0a, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  1672. 0x52, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x35, 0x0a, 0x1b, 0x5a, 0x6f,
  1673. 0x6e, 0x65, 0x49, 0x44, 0x42, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43,
  1674. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x7a, 0x6f, 0x6e,
  1675. 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49,
  1676. 0x64, 0x22, 0x6a, 0x0a, 0x1c, 0x5a, 0x6f, 0x6e, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
  1677. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72,
  1678. 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  1679. 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69,
  1680. 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69,
  1681. 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x18,
  1682. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x5e, 0x0a,
  1683. 0x1a, 0x5a, 0x6f, 0x6e, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x65, 0x70, 0x6c,
  1684. 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x40, 0x0a, 0x06, 0x72,
  1685. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6c,
  1686. 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65,
  1687. 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x45,
  1688. 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x67, 0x0a,
  1689. 0x19, 0x47, 0x65, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1690. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70,
  1691. 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b,
  1692. 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02,
  1693. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16,
  1694. 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1695. 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x75, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x5a, 0x6f, 0x6e,
  1696. 0x65, 0x73, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72,
  1697. 0x65, 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  1698. 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70,
  1699. 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64,
  1700. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x06, 0x72, 0x65, 0x73,
  1701. 0x75, 0x6c, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x02,
  1702. 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x50, 0x0a,
  1703. 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1704. 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61,
  1705. 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69,
  1706. 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18,
  1707. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x22,
  1708. 0x79, 0x0a, 0x25, 0x4c, 0x69, 0x73, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63,
  1709. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c,
  1710. 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b,
  1711. 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79,
  1712. 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01,
  1713. 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1c, 0x0a, 0x09,
  1714. 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1715. 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x4d, 0x0a, 0x09, 0x5a, 0x6f,
  1716. 0x6e, 0x65, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c,
  1717. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66,
  1718. 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x5a, 0x6f, 0x6e,
  1719. 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74,
  1720. 0x79, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xd9, 0x01, 0x0a, 0x19, 0x45, 0x64,
  1721. 0x69, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f,
  1722. 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65,
  1723. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12,
  1724. 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
  1725. 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x7a,
  1726. 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x7a, 0x6f, 0x6e,
  1727. 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x06, 0x70, 0x61, 0x75, 0x73, 0x65, 0x64, 0x18, 0x04, 0x20,
  1728. 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x06, 0x70, 0x61, 0x75, 0x73, 0x65, 0x64, 0x88, 0x01, 0x01,
  1729. 0x12, 0x1b, 0x0a, 0x06, 0x70, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  1730. 0x48, 0x01, 0x52, 0x06, 0x70, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a,
  1731. 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x74,
  1732. 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x70, 0x61, 0x75, 0x73, 0x65,
  1733. 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x42, 0x07, 0x0a, 0x05,
  1734. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0x75, 0x0a, 0x17, 0x45, 0x64, 0x69, 0x74, 0x5a, 0x6f, 0x6e,
  1735. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65,
  1736. 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  1737. 0x32, 0x28, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69,
  1738. 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66,
  1739. 0x6c, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75,
  1740. 0x6c, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20,
  1741. 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x69, 0x0a, 0x1b,
  1742. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1743. 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61,
  1744. 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69,
  1745. 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18,
  1746. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12,
  1747. 0x16, 0x0a, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1748. 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x45, 0x0a, 0x19, 0x44, 0x65, 0x6c, 0x65, 0x74,
  1749. 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66,
  1750. 0x6c, 0x61, 0x72, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18,
  1751. 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x0e,
  1752. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x6e,
  1753. 0x0a, 0x20, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x65, 0x63,
  1754. 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1755. 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  1756. 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70,
  1757. 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70,
  1758. 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64,
  1759. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x3a,
  1760. 0x0a, 0x1e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x65, 0x63,
  1761. 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65,
  1762. 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
  1763. 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0xb4, 0x02, 0x0a, 0x08, 0x50,
  1764. 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  1765. 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x0a,
  1766. 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1767. 0x52, 0x0a, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x15, 0x0a, 0x03,
  1768. 0x74, 0x74, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01, 0x52, 0x03, 0x74, 0x74, 0x6c,
  1769. 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0d, 0x71, 0x75, 0x65, 0x72, 0x79, 0x41, 0x72, 0x67, 0x73,
  1770. 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0d, 0x71, 0x75,
  1771. 0x65, 0x72, 0x79, 0x41, 0x72, 0x67, 0x73, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1c,
  1772. 0x0a, 0x09, 0x71, 0x75, 0x65, 0x72, 0x79, 0x41, 0x72, 0x67, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28,
  1773. 0x09, 0x52, 0x09, 0x71, 0x75, 0x65, 0x72, 0x79, 0x41, 0x72, 0x67, 0x73, 0x12, 0x23, 0x0a, 0x0a,
  1774. 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x48, 0x6f, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  1775. 0x48, 0x03, 0x52, 0x0a, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x48, 0x6f, 0x73, 0x74, 0x88, 0x01,
  1776. 0x01, 0x12, 0x2b, 0x0a, 0x0e, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f,
  1777. 0x63, 0x6f, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x04, 0x52, 0x0e, 0x6f, 0x72, 0x69,
  1778. 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x88, 0x01, 0x01, 0x42, 0x05,
  1779. 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x74, 0x74, 0x6c, 0x42, 0x10, 0x0a,
  1780. 0x0e, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x41, 0x72, 0x67, 0x73, 0x54, 0x79, 0x70, 0x65, 0x42,
  1781. 0x0d, 0x0a, 0x0b, 0x5f, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x48, 0x6f, 0x73, 0x74, 0x42, 0x11,
  1782. 0x0a, 0x0f, 0x5f, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f,
  1783. 0x6c, 0x22, 0x4b, 0x0a, 0x0c, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4c, 0x69, 0x73,
  1784. 0x74, 0x12, 0x3b, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18,
  1785. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1786. 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x50, 0x61, 0x67, 0x65, 0x52,
  1787. 0x75, 0x6c, 0x65, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x22, 0x6b,
  1788. 0x0a, 0x1d, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65,
  1789. 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12,
  1790. 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1791. 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d,
  1792. 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d,
  1793. 0x61, 0x69, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20,
  1794. 0x01, 0x28, 0x09, 0x52, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x22, 0xa8, 0x01, 0x0a, 0x1f,
  1795. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65,
  1796. 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12,
  1797. 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1798. 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d,
  1799. 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d,
  1800. 0x61, 0x69, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20,
  1801. 0x01, 0x28, 0x09, 0x52, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x39, 0x0a, 0x09, 0x70,
  1802. 0x61, 0x67, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c,
  1803. 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a,
  1804. 0x6f, 0x6e, 0x65, 0x2e, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x08, 0x70, 0x61,
  1805. 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x22, 0xa8, 0x01, 0x0a, 0x1f, 0x55, 0x70, 0x64, 0x61, 0x74,
  1806. 0x65, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1807. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70,
  1808. 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b,
  1809. 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02,
  1810. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16,
  1811. 0x0a, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1812. 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x39, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x72,
  1813. 0x75, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x63, 0x6c, 0x6f, 0x75,
  1814. 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x50,
  1815. 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c,
  1816. 0x65, 0x22, 0x8f, 0x01, 0x0a, 0x1f, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x67, 0x65,
  1817. 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64,
  1818. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18,
  1819. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a,
  1820. 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1821. 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x7a, 0x6f, 0x6e,
  1822. 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49,
  1823. 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69,
  1824. 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c,
  1825. 0x65, 0x49, 0x64, 0x22, 0x88, 0x03, 0x0a, 0x04, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  1826. 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1827. 0x52, 0x0a, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0a,
  1828. 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x61, 0x74, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  1829. 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x61, 0x74, 0x68, 0x88, 0x01,
  1830. 0x01, 0x12, 0x51, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61, 0x64,
  1831. 0x65, 0x72, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64,
  1832. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x52, 0x75,
  1833. 0x6c, 0x65, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  1834. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65,
  1835. 0x61, 0x64, 0x65, 0x72, 0x12, 0x54, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  1836. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x63,
  1837. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e,
  1838. 0x65, 0x2e, 0x52, 0x75, 0x6c, 0x65, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48,
  1839. 0x65, 0x61, 0x64, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x70,
  1840. 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x1a, 0x40, 0x0a, 0x12, 0x52, 0x65,
  1841. 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x72, 0x79,
  1842. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
  1843. 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1844. 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a, 0x13,
  1845. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x45, 0x6e,
  1846. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1847. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
  1848. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42,
  1849. 0x0d, 0x0a, 0x0b, 0x5f, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x61, 0x74, 0x68, 0x22, 0x3a,
  1850. 0x0a, 0x08, 0x52, 0x75, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x05, 0x72, 0x75,
  1851. 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x63, 0x6c, 0x6f, 0x75,
  1852. 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x52,
  1853. 0x75, 0x6c, 0x65, 0x52, 0x05, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x22, 0x9a, 0x01, 0x0a, 0x1b, 0x47,
  1854. 0x65, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1855. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70,
  1856. 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b,
  1857. 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02,
  1858. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16,
  1859. 0x0a, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1860. 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x2f, 0x0a, 0x05, 0x70, 0x68, 0x61, 0x73, 0x65, 0x18,
  1861. 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x19, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1862. 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x50, 0x68, 0x61, 0x73, 0x65,
  1863. 0x52, 0x05, 0x70, 0x68, 0x61, 0x73, 0x65, 0x22, 0xcd, 0x01, 0x0a, 0x1e, 0x55, 0x70, 0x64, 0x61,
  1864. 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1865. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70,
  1866. 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b,
  1867. 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02,
  1868. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16,
  1869. 0x0a, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1870. 0x7a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x2f, 0x0a, 0x05, 0x70, 0x68, 0x61, 0x73, 0x65, 0x18,
  1871. 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x19, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1872. 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x50, 0x68, 0x61, 0x73, 0x65,
  1873. 0x52, 0x05, 0x70, 0x68, 0x61, 0x73, 0x65, 0x12, 0x2e, 0x0a, 0x05, 0x72, 0x75, 0x6c, 0x65, 0x73,
  1874. 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c,
  1875. 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x52, 0x75, 0x6c, 0x65,
  1876. 0x52, 0x05, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x22, 0x4d, 0x0a, 0x1f, 0x55, 0x70, 0x64, 0x61, 0x74,
  1877. 0x65, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69,
  1878. 0x74, 0x69, 0x65, 0x73, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1879. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72,
  1880. 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x72,
  1881. 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x22, 0xc1, 0x01, 0x0a, 0x2a, 0x55, 0x70, 0x64, 0x61, 0x74,
  1882. 0x65, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69,
  1883. 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64,
  1884. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18,
  1885. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a,
  1886. 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1887. 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x7a, 0x6f, 0x6e,
  1888. 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x7a, 0x6f, 0x6e, 0x65, 0x49,
  1889. 0x64, 0x12, 0x47, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1890. 0x33, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e,
  1891. 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x67, 0x65, 0x52,
  1892. 0x75, 0x6c, 0x65, 0x73, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x69, 0x65, 0x73, 0x53, 0x74,
  1893. 0x72, 0x75, 0x63, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x2a, 0x84, 0x01, 0x0a, 0x05, 0x50,
  1894. 0x68, 0x61, 0x73, 0x65, 0x12, 0x19, 0x0a, 0x15, 0x68, 0x74, 0x74, 0x70, 0x5f, 0x72, 0x65, 0x71,
  1895. 0x75, 0x65, 0x73, 0x74, 0x5f, 0x73, 0x61, 0x6e, 0x69, 0x74, 0x69, 0x7a, 0x65, 0x10, 0x00, 0x12,
  1896. 0x1a, 0x0a, 0x16, 0x68, 0x74, 0x74, 0x70, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f,
  1897. 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x10, 0x01, 0x12, 0x1f, 0x0a, 0x1b, 0x68,
  1898. 0x74, 0x74, 0x70, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x6c, 0x61, 0x74, 0x65,
  1899. 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x10, 0x0c, 0x12, 0x23, 0x0a, 0x1f,
  1900. 0x68, 0x74, 0x74, 0x70, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x68, 0x65,
  1901. 0x61, 0x64, 0x65, 0x72, 0x73, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x10,
  1902. 0x0e, 0x32, 0xf9, 0x0c, 0x0a, 0x0e, 0x5a, 0x6f, 0x6e, 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66,
  1903. 0x6c, 0x61, 0x72, 0x65, 0x12, 0x7e, 0x0a, 0x16, 0x5a, 0x6f, 0x6e, 0x65, 0x49, 0x44, 0x42, 0x79,
  1904. 0x4e, 0x61, 0x6d, 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x31,
  1905. 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a,
  1906. 0x6f, 0x6e, 0x65, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x49, 0x44, 0x42, 0x79, 0x4e, 0x61, 0x6d, 0x65,
  1907. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72,
  1908. 0x65, 0x1a, 0x2f, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70,
  1909. 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x49, 0x44, 0x42, 0x79, 0x4e,
  1910. 0x61, 0x6d, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1911. 0x72, 0x65, 0x22, 0x00, 0x12, 0x71, 0x0a, 0x0b, 0x5a, 0x6f, 0x6e, 0x65, 0x44, 0x65, 0x74, 0x61,
  1912. 0x69, 0x6c, 0x73, 0x12, 0x30, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65,
  1913. 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x44, 0x65, 0x74,
  1914. 0x61, 0x69, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64,
  1915. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x2e, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1916. 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x44,
  1917. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64,
  1918. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x12, 0x68, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x5a, 0x6f,
  1919. 0x6e, 0x65, 0x73, 0x12, 0x2d, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65,
  1920. 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x5a, 0x6f, 0x6e, 0x65,
  1921. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1922. 0x72, 0x65, 0x1a, 0x2b, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41,
  1923. 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73,
  1924. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22,
  1925. 0x00, 0x12, 0x68, 0x0a, 0x08, 0x45, 0x64, 0x69, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x2d, 0x2e,
  1926. 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f,
  1927. 0x6e, 0x65, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  1928. 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x2b, 0x2e, 0x63,
  1929. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e,
  1930. 0x65, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43,
  1931. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x12, 0x6e, 0x0a, 0x0a, 0x44,
  1932. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x2f, 0x2e, 0x63, 0x6c, 0x6f, 0x75,
  1933. 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x44,
  1934. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1935. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x2d, 0x2e, 0x63, 0x6c, 0x6f,
  1936. 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e,
  1937. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43,
  1938. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x12, 0x5c, 0x0a, 0x09, 0x4c,
  1939. 0x69, 0x73, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64,
  1940. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x4c, 0x69,
  1941. 0x73, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c,
  1942. 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x1d, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64,
  1943. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x5a, 0x6f,
  1944. 0x6e, 0x65, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x14, 0x4c, 0x69, 0x73,
  1945. 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  1946. 0x64, 0x12, 0x39, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70,
  1947. 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x5a, 0x6f, 0x6e, 0x65, 0x73,
  1948. 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  1949. 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x1d, 0x2e, 0x63,
  1950. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e,
  1951. 0x65, 0x2e, 0x5a, 0x6f, 0x6e, 0x65, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x7d, 0x0a,
  1952. 0x0f, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x65, 0x63, 0x6b,
  1953. 0x12, 0x34, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69,
  1954. 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1955. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75,
  1956. 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x32, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c,
  1957. 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x41, 0x63, 0x74, 0x69,
  1958. 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1959. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0c,
  1960. 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x31, 0x2e, 0x63,
  1961. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e,
  1962. 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65,
  1963. 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a,
  1964. 0x20, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e,
  1965. 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4c, 0x69, 0x73,
  1966. 0x74, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x67,
  1967. 0x65, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x33, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1968. 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
  1969. 0x65, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1970. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x1c, 0x2e, 0x63, 0x6c, 0x6f,
  1971. 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e,
  1972. 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x55, 0x70,
  1973. 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x33, 0x2e, 0x63,
  1974. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e,
  1975. 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65,
  1976. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72,
  1977. 0x65, 0x1a, 0x1c, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70,
  1978. 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x22,
  1979. 0x00, 0x12, 0x65, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x67, 0x65, 0x52,
  1980. 0x75, 0x6c, 0x65, 0x12, 0x33, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65,
  1981. 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50,
  1982. 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c,
  1983. 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x1c, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64,
  1984. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x50, 0x61,
  1985. 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x22, 0x00, 0x12, 0x7f, 0x0a, 0x19, 0x55, 0x70, 0x64, 0x61,
  1986. 0x74, 0x65, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x50, 0x72, 0x69, 0x6f, 0x72,
  1987. 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x3e, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1988. 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
  1989. 0x65, 0x50, 0x61, 0x67, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69,
  1990. 0x74, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64,
  1991. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x20, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61,
  1992. 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e, 0x50, 0x61, 0x67, 0x65, 0x52,
  1993. 0x75, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x0d, 0x55, 0x70, 0x64,
  1994. 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x12, 0x32, 0x2e, 0x63, 0x6c, 0x6f,
  1995. 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x2e,
  1996. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71,
  1997. 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x1c,
  1998. 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a,
  1999. 0x6f, 0x6e, 0x65, 0x2e, 0x52, 0x75, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x5d,
  2000. 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x12, 0x2f, 0x2e, 0x63,
  2001. 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f, 0x6e,
  2002. 0x65, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75,
  2003. 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x1c, 0x2e,
  2004. 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x7a, 0x6f,
  2005. 0x6e, 0x65, 0x2e, 0x52, 0x75, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x42, 0x3c, 0x0a,
  2006. 0x17, 0x69, 0x6f, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c,
  2007. 0x61, 0x72, 0x65, 0x2e, 0x7a, 0x6f, 0x6e, 0x65, 0x42, 0x09, 0x7a, 0x6f, 0x6e, 0x65, 0x50, 0x72,
  2008. 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x14, 0x2e, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c,
  2009. 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2f, 0x7a, 0x6f, 0x6e, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f,
  2010. 0x74, 0x6f, 0x33,
  2011. }
  2012. var (
  2013. file_proto_zone_proto_rawDescOnce sync.Once
  2014. file_proto_zone_proto_rawDescData = file_proto_zone_proto_rawDesc
  2015. )
  2016. func file_proto_zone_proto_rawDescGZIP() []byte {
  2017. file_proto_zone_proto_rawDescOnce.Do(func() {
  2018. file_proto_zone_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_zone_proto_rawDescData)
  2019. })
  2020. return file_proto_zone_proto_rawDescData
  2021. }
  2022. var file_proto_zone_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
  2023. var file_proto_zone_proto_msgTypes = make([]protoimpl.MessageInfo, 31)
  2024. var file_proto_zone_proto_goTypes = []interface{}{
  2025. (Phase)(0), // 0: cloudflareApi.zone.Phase
  2026. (*ZoneCloudflareEntity)(nil), // 1: cloudflareApi.zone.ZoneCloudflareEntity
  2027. (*ZoneIDByNameRequestCloudflare)(nil), // 2: cloudflareApi.zone.ZoneIDByNameRequestCloudflare
  2028. (*ZoneIDByNameReplyCloudflare)(nil), // 3: cloudflareApi.zone.ZoneIDByNameReplyCloudflare
  2029. (*ZoneDetailsRequestCloudflare)(nil), // 4: cloudflareApi.zone.ZoneDetailsRequestCloudflare
  2030. (*ZoneDetailsReplyCloudflare)(nil), // 5: cloudflareApi.zone.ZoneDetailsReplyCloudflare
  2031. (*GetZonesRequestCloudflare)(nil), // 6: cloudflareApi.zone.GetZonesRequestCloudflare
  2032. (*GetZonesReplyCloudflare)(nil), // 7: cloudflareApi.zone.GetZonesReplyCloudflare
  2033. (*ListZonesRequestCloudflare)(nil), // 8: cloudflareApi.zone.ListZonesRequestCloudflare
  2034. (*ListZonesByAccountIdRequestCloudflare)(nil), // 9: cloudflareApi.zone.ListZonesByAccountIdRequestCloudflare
  2035. (*ZonesList)(nil), // 10: cloudflareApi.zone.ZonesList
  2036. (*EditZoneRequestCloudflare)(nil), // 11: cloudflareApi.zone.EditZoneRequestCloudflare
  2037. (*EditZoneReplyCloudflare)(nil), // 12: cloudflareApi.zone.EditZoneReplyCloudflare
  2038. (*DeleteZoneRequestCloudflare)(nil), // 13: cloudflareApi.zone.DeleteZoneRequestCloudflare
  2039. (*DeleteZoneReplyCloudflare)(nil), // 14: cloudflareApi.zone.DeleteZoneReplyCloudflare
  2040. (*ActivationCheckRequestCloudflare)(nil), // 15: cloudflareApi.zone.ActivationCheckRequestCloudflare
  2041. (*ActivationCheckReplyCloudflare)(nil), // 16: cloudflareApi.zone.ActivationCheckReplyCloudflare
  2042. (*PageRule)(nil), // 17: cloudflareApi.zone.PageRule
  2043. (*PageRuleList)(nil), // 18: cloudflareApi.zone.PageRuleList
  2044. (*ListPageRuleRequestCloudflare)(nil), // 19: cloudflareApi.zone.ListPageRuleRequestCloudflare
  2045. (*CreatePageRuleRequestCloudflare)(nil), // 20: cloudflareApi.zone.CreatePageRuleRequestCloudflare
  2046. (*UpdatePageRuleRequestCloudflare)(nil), // 21: cloudflareApi.zone.UpdatePageRuleRequestCloudflare
  2047. (*DeletePageRuleRequestCloudflare)(nil), // 22: cloudflareApi.zone.DeletePageRuleRequestCloudflare
  2048. (*Rule)(nil), // 23: cloudflareApi.zone.Rule
  2049. (*RuleList)(nil), // 24: cloudflareApi.zone.RuleList
  2050. (*GetRuleSetRequestCloudflare)(nil), // 25: cloudflareApi.zone.GetRuleSetRequestCloudflare
  2051. (*UpdateRuleSetRequestCloudflare)(nil), // 26: cloudflareApi.zone.UpdateRuleSetRequestCloudflare
  2052. (*UpdatePageRulesPrioritiesStruct)(nil), // 27: cloudflareApi.zone.UpdatePageRulesPrioritiesStruct
  2053. (*UpdatePageRulesPrioritiesRequestCloudflare)(nil), // 28: cloudflareApi.zone.UpdatePageRulesPrioritiesRequestCloudflare
  2054. (*ZoneCloudflareEntity_Plan)(nil), // 29: cloudflareApi.zone.ZoneCloudflareEntity.Plan
  2055. nil, // 30: cloudflareApi.zone.Rule.RequestHeaderEntry
  2056. nil, // 31: cloudflareApi.zone.Rule.ResponseHeaderEntry
  2057. }
  2058. var file_proto_zone_proto_depIdxs = []int32{
  2059. 29, // 0: cloudflareApi.zone.ZoneCloudflareEntity.plan:type_name -> cloudflareApi.zone.ZoneCloudflareEntity.Plan
  2060. 29, // 1: cloudflareApi.zone.ZoneCloudflareEntity.plan_pending:type_name -> cloudflareApi.zone.ZoneCloudflareEntity.Plan
  2061. 1, // 2: cloudflareApi.zone.ZoneDetailsReplyCloudflare.result:type_name -> cloudflareApi.zone.ZoneCloudflareEntity
  2062. 1, // 3: cloudflareApi.zone.GetZonesReplyCloudflare.result:type_name -> cloudflareApi.zone.ZoneCloudflareEntity
  2063. 1, // 4: cloudflareApi.zone.ZonesList.result:type_name -> cloudflareApi.zone.ZoneCloudflareEntity
  2064. 1, // 5: cloudflareApi.zone.EditZoneReplyCloudflare.result:type_name -> cloudflareApi.zone.ZoneCloudflareEntity
  2065. 17, // 6: cloudflareApi.zone.PageRuleList.page_rules:type_name -> cloudflareApi.zone.PageRule
  2066. 17, // 7: cloudflareApi.zone.CreatePageRuleRequestCloudflare.page_rule:type_name -> cloudflareApi.zone.PageRule
  2067. 17, // 8: cloudflareApi.zone.UpdatePageRuleRequestCloudflare.page_rule:type_name -> cloudflareApi.zone.PageRule
  2068. 30, // 9: cloudflareApi.zone.Rule.requestHeader:type_name -> cloudflareApi.zone.Rule.RequestHeaderEntry
  2069. 31, // 10: cloudflareApi.zone.Rule.responseHeader:type_name -> cloudflareApi.zone.Rule.ResponseHeaderEntry
  2070. 23, // 11: cloudflareApi.zone.RuleList.rules:type_name -> cloudflareApi.zone.Rule
  2071. 0, // 12: cloudflareApi.zone.GetRuleSetRequestCloudflare.phase:type_name -> cloudflareApi.zone.Phase
  2072. 0, // 13: cloudflareApi.zone.UpdateRuleSetRequestCloudflare.phase:type_name -> cloudflareApi.zone.Phase
  2073. 23, // 14: cloudflareApi.zone.UpdateRuleSetRequestCloudflare.rules:type_name -> cloudflareApi.zone.Rule
  2074. 27, // 15: cloudflareApi.zone.UpdatePageRulesPrioritiesRequestCloudflare.data:type_name -> cloudflareApi.zone.UpdatePageRulesPrioritiesStruct
  2075. 2, // 16: cloudflareApi.zone.ZoneCloudflare.ZoneIDByNameCloudflare:input_type -> cloudflareApi.zone.ZoneIDByNameRequestCloudflare
  2076. 4, // 17: cloudflareApi.zone.ZoneCloudflare.ZoneDetails:input_type -> cloudflareApi.zone.ZoneDetailsRequestCloudflare
  2077. 6, // 18: cloudflareApi.zone.ZoneCloudflare.GetZones:input_type -> cloudflareApi.zone.GetZonesRequestCloudflare
  2078. 11, // 19: cloudflareApi.zone.ZoneCloudflare.EditZone:input_type -> cloudflareApi.zone.EditZoneRequestCloudflare
  2079. 13, // 20: cloudflareApi.zone.ZoneCloudflare.DeleteZone:input_type -> cloudflareApi.zone.DeleteZoneRequestCloudflare
  2080. 8, // 21: cloudflareApi.zone.ZoneCloudflare.ListZones:input_type -> cloudflareApi.zone.ListZonesRequestCloudflare
  2081. 9, // 22: cloudflareApi.zone.ZoneCloudflare.ListZonesByAccountId:input_type -> cloudflareApi.zone.ListZonesByAccountIdRequestCloudflare
  2082. 15, // 23: cloudflareApi.zone.ZoneCloudflare.ActivationCheck:input_type -> cloudflareApi.zone.ActivationCheckRequestCloudflare
  2083. 19, // 24: cloudflareApi.zone.ZoneCloudflare.ListPageRule:input_type -> cloudflareApi.zone.ListPageRuleRequestCloudflare
  2084. 20, // 25: cloudflareApi.zone.ZoneCloudflare.CreatePageRule:input_type -> cloudflareApi.zone.CreatePageRuleRequestCloudflare
  2085. 21, // 26: cloudflareApi.zone.ZoneCloudflare.UpdatePageRule:input_type -> cloudflareApi.zone.UpdatePageRuleRequestCloudflare
  2086. 22, // 27: cloudflareApi.zone.ZoneCloudflare.DeletePageRule:input_type -> cloudflareApi.zone.DeletePageRuleRequestCloudflare
  2087. 28, // 28: cloudflareApi.zone.ZoneCloudflare.UpdatePageRulesPriorities:input_type -> cloudflareApi.zone.UpdatePageRulesPrioritiesRequestCloudflare
  2088. 26, // 29: cloudflareApi.zone.ZoneCloudflare.UpdateRuleSet:input_type -> cloudflareApi.zone.UpdateRuleSetRequestCloudflare
  2089. 25, // 30: cloudflareApi.zone.ZoneCloudflare.GetRuleSet:input_type -> cloudflareApi.zone.GetRuleSetRequestCloudflare
  2090. 3, // 31: cloudflareApi.zone.ZoneCloudflare.ZoneIDByNameCloudflare:output_type -> cloudflareApi.zone.ZoneIDByNameReplyCloudflare
  2091. 5, // 32: cloudflareApi.zone.ZoneCloudflare.ZoneDetails:output_type -> cloudflareApi.zone.ZoneDetailsReplyCloudflare
  2092. 7, // 33: cloudflareApi.zone.ZoneCloudflare.GetZones:output_type -> cloudflareApi.zone.GetZonesReplyCloudflare
  2093. 12, // 34: cloudflareApi.zone.ZoneCloudflare.EditZone:output_type -> cloudflareApi.zone.EditZoneReplyCloudflare
  2094. 14, // 35: cloudflareApi.zone.ZoneCloudflare.DeleteZone:output_type -> cloudflareApi.zone.DeleteZoneReplyCloudflare
  2095. 10, // 36: cloudflareApi.zone.ZoneCloudflare.ListZones:output_type -> cloudflareApi.zone.ZonesList
  2096. 10, // 37: cloudflareApi.zone.ZoneCloudflare.ListZonesByAccountId:output_type -> cloudflareApi.zone.ZonesList
  2097. 16, // 38: cloudflareApi.zone.ZoneCloudflare.ActivationCheck:output_type -> cloudflareApi.zone.ActivationCheckReplyCloudflare
  2098. 18, // 39: cloudflareApi.zone.ZoneCloudflare.ListPageRule:output_type -> cloudflareApi.zone.PageRuleList
  2099. 17, // 40: cloudflareApi.zone.ZoneCloudflare.CreatePageRule:output_type -> cloudflareApi.zone.PageRule
  2100. 17, // 41: cloudflareApi.zone.ZoneCloudflare.UpdatePageRule:output_type -> cloudflareApi.zone.PageRule
  2101. 17, // 42: cloudflareApi.zone.ZoneCloudflare.DeletePageRule:output_type -> cloudflareApi.zone.PageRule
  2102. 18, // 43: cloudflareApi.zone.ZoneCloudflare.UpdatePageRulesPriorities:output_type -> cloudflareApi.zone.PageRuleList
  2103. 24, // 44: cloudflareApi.zone.ZoneCloudflare.UpdateRuleSet:output_type -> cloudflareApi.zone.RuleList
  2104. 24, // 45: cloudflareApi.zone.ZoneCloudflare.GetRuleSet:output_type -> cloudflareApi.zone.RuleList
  2105. 31, // [31:46] is the sub-list for method output_type
  2106. 16, // [16:31] is the sub-list for method input_type
  2107. 16, // [16:16] is the sub-list for extension type_name
  2108. 16, // [16:16] is the sub-list for extension extendee
  2109. 0, // [0:16] is the sub-list for field type_name
  2110. }
  2111. func init() { file_proto_zone_proto_init() }
  2112. func file_proto_zone_proto_init() {
  2113. if File_proto_zone_proto != nil {
  2114. return
  2115. }
  2116. if !protoimpl.UnsafeEnabled {
  2117. file_proto_zone_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2118. switch v := v.(*ZoneCloudflareEntity); i {
  2119. case 0:
  2120. return &v.state
  2121. case 1:
  2122. return &v.sizeCache
  2123. case 2:
  2124. return &v.unknownFields
  2125. default:
  2126. return nil
  2127. }
  2128. }
  2129. file_proto_zone_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2130. switch v := v.(*ZoneIDByNameRequestCloudflare); i {
  2131. case 0:
  2132. return &v.state
  2133. case 1:
  2134. return &v.sizeCache
  2135. case 2:
  2136. return &v.unknownFields
  2137. default:
  2138. return nil
  2139. }
  2140. }
  2141. file_proto_zone_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2142. switch v := v.(*ZoneIDByNameReplyCloudflare); i {
  2143. case 0:
  2144. return &v.state
  2145. case 1:
  2146. return &v.sizeCache
  2147. case 2:
  2148. return &v.unknownFields
  2149. default:
  2150. return nil
  2151. }
  2152. }
  2153. file_proto_zone_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2154. switch v := v.(*ZoneDetailsRequestCloudflare); i {
  2155. case 0:
  2156. return &v.state
  2157. case 1:
  2158. return &v.sizeCache
  2159. case 2:
  2160. return &v.unknownFields
  2161. default:
  2162. return nil
  2163. }
  2164. }
  2165. file_proto_zone_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2166. switch v := v.(*ZoneDetailsReplyCloudflare); i {
  2167. case 0:
  2168. return &v.state
  2169. case 1:
  2170. return &v.sizeCache
  2171. case 2:
  2172. return &v.unknownFields
  2173. default:
  2174. return nil
  2175. }
  2176. }
  2177. file_proto_zone_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2178. switch v := v.(*GetZonesRequestCloudflare); i {
  2179. case 0:
  2180. return &v.state
  2181. case 1:
  2182. return &v.sizeCache
  2183. case 2:
  2184. return &v.unknownFields
  2185. default:
  2186. return nil
  2187. }
  2188. }
  2189. file_proto_zone_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2190. switch v := v.(*GetZonesReplyCloudflare); i {
  2191. case 0:
  2192. return &v.state
  2193. case 1:
  2194. return &v.sizeCache
  2195. case 2:
  2196. return &v.unknownFields
  2197. default:
  2198. return nil
  2199. }
  2200. }
  2201. file_proto_zone_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2202. switch v := v.(*ListZonesRequestCloudflare); i {
  2203. case 0:
  2204. return &v.state
  2205. case 1:
  2206. return &v.sizeCache
  2207. case 2:
  2208. return &v.unknownFields
  2209. default:
  2210. return nil
  2211. }
  2212. }
  2213. file_proto_zone_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2214. switch v := v.(*ListZonesByAccountIdRequestCloudflare); i {
  2215. case 0:
  2216. return &v.state
  2217. case 1:
  2218. return &v.sizeCache
  2219. case 2:
  2220. return &v.unknownFields
  2221. default:
  2222. return nil
  2223. }
  2224. }
  2225. file_proto_zone_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2226. switch v := v.(*ZonesList); i {
  2227. case 0:
  2228. return &v.state
  2229. case 1:
  2230. return &v.sizeCache
  2231. case 2:
  2232. return &v.unknownFields
  2233. default:
  2234. return nil
  2235. }
  2236. }
  2237. file_proto_zone_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2238. switch v := v.(*EditZoneRequestCloudflare); i {
  2239. case 0:
  2240. return &v.state
  2241. case 1:
  2242. return &v.sizeCache
  2243. case 2:
  2244. return &v.unknownFields
  2245. default:
  2246. return nil
  2247. }
  2248. }
  2249. file_proto_zone_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2250. switch v := v.(*EditZoneReplyCloudflare); i {
  2251. case 0:
  2252. return &v.state
  2253. case 1:
  2254. return &v.sizeCache
  2255. case 2:
  2256. return &v.unknownFields
  2257. default:
  2258. return nil
  2259. }
  2260. }
  2261. file_proto_zone_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2262. switch v := v.(*DeleteZoneRequestCloudflare); i {
  2263. case 0:
  2264. return &v.state
  2265. case 1:
  2266. return &v.sizeCache
  2267. case 2:
  2268. return &v.unknownFields
  2269. default:
  2270. return nil
  2271. }
  2272. }
  2273. file_proto_zone_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2274. switch v := v.(*DeleteZoneReplyCloudflare); i {
  2275. case 0:
  2276. return &v.state
  2277. case 1:
  2278. return &v.sizeCache
  2279. case 2:
  2280. return &v.unknownFields
  2281. default:
  2282. return nil
  2283. }
  2284. }
  2285. file_proto_zone_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2286. switch v := v.(*ActivationCheckRequestCloudflare); i {
  2287. case 0:
  2288. return &v.state
  2289. case 1:
  2290. return &v.sizeCache
  2291. case 2:
  2292. return &v.unknownFields
  2293. default:
  2294. return nil
  2295. }
  2296. }
  2297. file_proto_zone_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2298. switch v := v.(*ActivationCheckReplyCloudflare); i {
  2299. case 0:
  2300. return &v.state
  2301. case 1:
  2302. return &v.sizeCache
  2303. case 2:
  2304. return &v.unknownFields
  2305. default:
  2306. return nil
  2307. }
  2308. }
  2309. file_proto_zone_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2310. switch v := v.(*PageRule); i {
  2311. case 0:
  2312. return &v.state
  2313. case 1:
  2314. return &v.sizeCache
  2315. case 2:
  2316. return &v.unknownFields
  2317. default:
  2318. return nil
  2319. }
  2320. }
  2321. file_proto_zone_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2322. switch v := v.(*PageRuleList); i {
  2323. case 0:
  2324. return &v.state
  2325. case 1:
  2326. return &v.sizeCache
  2327. case 2:
  2328. return &v.unknownFields
  2329. default:
  2330. return nil
  2331. }
  2332. }
  2333. file_proto_zone_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2334. switch v := v.(*ListPageRuleRequestCloudflare); i {
  2335. case 0:
  2336. return &v.state
  2337. case 1:
  2338. return &v.sizeCache
  2339. case 2:
  2340. return &v.unknownFields
  2341. default:
  2342. return nil
  2343. }
  2344. }
  2345. file_proto_zone_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2346. switch v := v.(*CreatePageRuleRequestCloudflare); i {
  2347. case 0:
  2348. return &v.state
  2349. case 1:
  2350. return &v.sizeCache
  2351. case 2:
  2352. return &v.unknownFields
  2353. default:
  2354. return nil
  2355. }
  2356. }
  2357. file_proto_zone_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2358. switch v := v.(*UpdatePageRuleRequestCloudflare); i {
  2359. case 0:
  2360. return &v.state
  2361. case 1:
  2362. return &v.sizeCache
  2363. case 2:
  2364. return &v.unknownFields
  2365. default:
  2366. return nil
  2367. }
  2368. }
  2369. file_proto_zone_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2370. switch v := v.(*DeletePageRuleRequestCloudflare); i {
  2371. case 0:
  2372. return &v.state
  2373. case 1:
  2374. return &v.sizeCache
  2375. case 2:
  2376. return &v.unknownFields
  2377. default:
  2378. return nil
  2379. }
  2380. }
  2381. file_proto_zone_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2382. switch v := v.(*Rule); i {
  2383. case 0:
  2384. return &v.state
  2385. case 1:
  2386. return &v.sizeCache
  2387. case 2:
  2388. return &v.unknownFields
  2389. default:
  2390. return nil
  2391. }
  2392. }
  2393. file_proto_zone_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2394. switch v := v.(*RuleList); i {
  2395. case 0:
  2396. return &v.state
  2397. case 1:
  2398. return &v.sizeCache
  2399. case 2:
  2400. return &v.unknownFields
  2401. default:
  2402. return nil
  2403. }
  2404. }
  2405. file_proto_zone_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2406. switch v := v.(*GetRuleSetRequestCloudflare); i {
  2407. case 0:
  2408. return &v.state
  2409. case 1:
  2410. return &v.sizeCache
  2411. case 2:
  2412. return &v.unknownFields
  2413. default:
  2414. return nil
  2415. }
  2416. }
  2417. file_proto_zone_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2418. switch v := v.(*UpdateRuleSetRequestCloudflare); i {
  2419. case 0:
  2420. return &v.state
  2421. case 1:
  2422. return &v.sizeCache
  2423. case 2:
  2424. return &v.unknownFields
  2425. default:
  2426. return nil
  2427. }
  2428. }
  2429. file_proto_zone_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2430. switch v := v.(*UpdatePageRulesPrioritiesStruct); i {
  2431. case 0:
  2432. return &v.state
  2433. case 1:
  2434. return &v.sizeCache
  2435. case 2:
  2436. return &v.unknownFields
  2437. default:
  2438. return nil
  2439. }
  2440. }
  2441. file_proto_zone_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2442. switch v := v.(*UpdatePageRulesPrioritiesRequestCloudflare); i {
  2443. case 0:
  2444. return &v.state
  2445. case 1:
  2446. return &v.sizeCache
  2447. case 2:
  2448. return &v.unknownFields
  2449. default:
  2450. return nil
  2451. }
  2452. }
  2453. file_proto_zone_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2454. switch v := v.(*ZoneCloudflareEntity_Plan); i {
  2455. case 0:
  2456. return &v.state
  2457. case 1:
  2458. return &v.sizeCache
  2459. case 2:
  2460. return &v.unknownFields
  2461. default:
  2462. return nil
  2463. }
  2464. }
  2465. }
  2466. file_proto_zone_proto_msgTypes[10].OneofWrappers = []interface{}{}
  2467. file_proto_zone_proto_msgTypes[16].OneofWrappers = []interface{}{}
  2468. file_proto_zone_proto_msgTypes[22].OneofWrappers = []interface{}{}
  2469. type x struct{}
  2470. out := protoimpl.TypeBuilder{
  2471. File: protoimpl.DescBuilder{
  2472. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2473. RawDescriptor: file_proto_zone_proto_rawDesc,
  2474. NumEnums: 1,
  2475. NumMessages: 31,
  2476. NumExtensions: 0,
  2477. NumServices: 1,
  2478. },
  2479. GoTypes: file_proto_zone_proto_goTypes,
  2480. DependencyIndexes: file_proto_zone_proto_depIdxs,
  2481. EnumInfos: file_proto_zone_proto_enumTypes,
  2482. MessageInfos: file_proto_zone_proto_msgTypes,
  2483. }.Build()
  2484. File_proto_zone_proto = out.File
  2485. file_proto_zone_proto_rawDesc = nil
  2486. file_proto_zone_proto_goTypes = nil
  2487. file_proto_zone_proto_depIdxs = nil
  2488. }