certificate.pb.go 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.19.1
  5. // source: proto/certificate.proto
  6. package certificate
  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 CreateCertificateRequestCloudflare struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  24. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  25. ZoneName string `protobuf:"bytes,3,opt,name=zoneName,proto3" json:"zoneName,omitempty"`
  26. Certificate string `protobuf:"bytes,4,opt,name=certificate,proto3" json:"certificate,omitempty"`
  27. PrivateKey string `protobuf:"bytes,5,opt,name=privateKey,proto3" json:"privateKey,omitempty"`
  28. }
  29. func (x *CreateCertificateRequestCloudflare) Reset() {
  30. *x = CreateCertificateRequestCloudflare{}
  31. if protoimpl.UnsafeEnabled {
  32. mi := &file_proto_certificate_proto_msgTypes[0]
  33. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  34. ms.StoreMessageInfo(mi)
  35. }
  36. }
  37. func (x *CreateCertificateRequestCloudflare) String() string {
  38. return protoimpl.X.MessageStringOf(x)
  39. }
  40. func (*CreateCertificateRequestCloudflare) ProtoMessage() {}
  41. func (x *CreateCertificateRequestCloudflare) ProtoReflect() protoreflect.Message {
  42. mi := &file_proto_certificate_proto_msgTypes[0]
  43. if protoimpl.UnsafeEnabled && x != nil {
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. if ms.LoadMessageInfo() == nil {
  46. ms.StoreMessageInfo(mi)
  47. }
  48. return ms
  49. }
  50. return mi.MessageOf(x)
  51. }
  52. // Deprecated: Use CreateCertificateRequestCloudflare.ProtoReflect.Descriptor instead.
  53. func (*CreateCertificateRequestCloudflare) Descriptor() ([]byte, []int) {
  54. return file_proto_certificate_proto_rawDescGZIP(), []int{0}
  55. }
  56. func (x *CreateCertificateRequestCloudflare) GetApiKey() string {
  57. if x != nil {
  58. return x.ApiKey
  59. }
  60. return ""
  61. }
  62. func (x *CreateCertificateRequestCloudflare) GetApiEmail() string {
  63. if x != nil {
  64. return x.ApiEmail
  65. }
  66. return ""
  67. }
  68. func (x *CreateCertificateRequestCloudflare) GetZoneName() string {
  69. if x != nil {
  70. return x.ZoneName
  71. }
  72. return ""
  73. }
  74. func (x *CreateCertificateRequestCloudflare) GetCertificate() string {
  75. if x != nil {
  76. return x.Certificate
  77. }
  78. return ""
  79. }
  80. func (x *CreateCertificateRequestCloudflare) GetPrivateKey() string {
  81. if x != nil {
  82. return x.PrivateKey
  83. }
  84. return ""
  85. }
  86. type DeleteCertificateRequestCloudflare struct {
  87. state protoimpl.MessageState
  88. sizeCache protoimpl.SizeCache
  89. unknownFields protoimpl.UnknownFields
  90. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  91. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  92. ZoneName string `protobuf:"bytes,3,opt,name=zoneName,proto3" json:"zoneName,omitempty"`
  93. CertificateId string `protobuf:"bytes,4,opt,name=certificateId,proto3" json:"certificateId,omitempty"`
  94. }
  95. func (x *DeleteCertificateRequestCloudflare) Reset() {
  96. *x = DeleteCertificateRequestCloudflare{}
  97. if protoimpl.UnsafeEnabled {
  98. mi := &file_proto_certificate_proto_msgTypes[1]
  99. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  100. ms.StoreMessageInfo(mi)
  101. }
  102. }
  103. func (x *DeleteCertificateRequestCloudflare) String() string {
  104. return protoimpl.X.MessageStringOf(x)
  105. }
  106. func (*DeleteCertificateRequestCloudflare) ProtoMessage() {}
  107. func (x *DeleteCertificateRequestCloudflare) ProtoReflect() protoreflect.Message {
  108. mi := &file_proto_certificate_proto_msgTypes[1]
  109. if protoimpl.UnsafeEnabled && x != nil {
  110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  111. if ms.LoadMessageInfo() == nil {
  112. ms.StoreMessageInfo(mi)
  113. }
  114. return ms
  115. }
  116. return mi.MessageOf(x)
  117. }
  118. // Deprecated: Use DeleteCertificateRequestCloudflare.ProtoReflect.Descriptor instead.
  119. func (*DeleteCertificateRequestCloudflare) Descriptor() ([]byte, []int) {
  120. return file_proto_certificate_proto_rawDescGZIP(), []int{1}
  121. }
  122. func (x *DeleteCertificateRequestCloudflare) GetApiKey() string {
  123. if x != nil {
  124. return x.ApiKey
  125. }
  126. return ""
  127. }
  128. func (x *DeleteCertificateRequestCloudflare) GetApiEmail() string {
  129. if x != nil {
  130. return x.ApiEmail
  131. }
  132. return ""
  133. }
  134. func (x *DeleteCertificateRequestCloudflare) GetZoneName() string {
  135. if x != nil {
  136. return x.ZoneName
  137. }
  138. return ""
  139. }
  140. func (x *DeleteCertificateRequestCloudflare) GetCertificateId() string {
  141. if x != nil {
  142. return x.CertificateId
  143. }
  144. return ""
  145. }
  146. type EditCertificateRequestCloudflare struct {
  147. state protoimpl.MessageState
  148. sizeCache protoimpl.SizeCache
  149. unknownFields protoimpl.UnknownFields
  150. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  151. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  152. ZoneName string `protobuf:"bytes,3,opt,name=zoneName,proto3" json:"zoneName,omitempty"`
  153. CertificateId string `protobuf:"bytes,4,opt,name=certificateId,proto3" json:"certificateId,omitempty"`
  154. Certificate string `protobuf:"bytes,5,opt,name=certificate,proto3" json:"certificate,omitempty"`
  155. PrivateKey string `protobuf:"bytes,6,opt,name=privateKey,proto3" json:"privateKey,omitempty"`
  156. }
  157. func (x *EditCertificateRequestCloudflare) Reset() {
  158. *x = EditCertificateRequestCloudflare{}
  159. if protoimpl.UnsafeEnabled {
  160. mi := &file_proto_certificate_proto_msgTypes[2]
  161. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  162. ms.StoreMessageInfo(mi)
  163. }
  164. }
  165. func (x *EditCertificateRequestCloudflare) String() string {
  166. return protoimpl.X.MessageStringOf(x)
  167. }
  168. func (*EditCertificateRequestCloudflare) ProtoMessage() {}
  169. func (x *EditCertificateRequestCloudflare) ProtoReflect() protoreflect.Message {
  170. mi := &file_proto_certificate_proto_msgTypes[2]
  171. if protoimpl.UnsafeEnabled && x != nil {
  172. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  173. if ms.LoadMessageInfo() == nil {
  174. ms.StoreMessageInfo(mi)
  175. }
  176. return ms
  177. }
  178. return mi.MessageOf(x)
  179. }
  180. // Deprecated: Use EditCertificateRequestCloudflare.ProtoReflect.Descriptor instead.
  181. func (*EditCertificateRequestCloudflare) Descriptor() ([]byte, []int) {
  182. return file_proto_certificate_proto_rawDescGZIP(), []int{2}
  183. }
  184. func (x *EditCertificateRequestCloudflare) GetApiKey() string {
  185. if x != nil {
  186. return x.ApiKey
  187. }
  188. return ""
  189. }
  190. func (x *EditCertificateRequestCloudflare) GetApiEmail() string {
  191. if x != nil {
  192. return x.ApiEmail
  193. }
  194. return ""
  195. }
  196. func (x *EditCertificateRequestCloudflare) GetZoneName() string {
  197. if x != nil {
  198. return x.ZoneName
  199. }
  200. return ""
  201. }
  202. func (x *EditCertificateRequestCloudflare) GetCertificateId() string {
  203. if x != nil {
  204. return x.CertificateId
  205. }
  206. return ""
  207. }
  208. func (x *EditCertificateRequestCloudflare) GetCertificate() string {
  209. if x != nil {
  210. return x.Certificate
  211. }
  212. return ""
  213. }
  214. func (x *EditCertificateRequestCloudflare) GetPrivateKey() string {
  215. if x != nil {
  216. return x.PrivateKey
  217. }
  218. return ""
  219. }
  220. type UniversalCertificateRequestCloudflare struct {
  221. state protoimpl.MessageState
  222. sizeCache protoimpl.SizeCache
  223. unknownFields protoimpl.UnknownFields
  224. ApiKey string `protobuf:"bytes,1,opt,name=apiKey,proto3" json:"apiKey,omitempty"`
  225. ApiEmail string `protobuf:"bytes,2,opt,name=apiEmail,proto3" json:"apiEmail,omitempty"`
  226. ZoneName string `protobuf:"bytes,3,opt,name=zoneName,proto3" json:"zoneName,omitempty"`
  227. Enable bool `protobuf:"varint,4,opt,name=enable,proto3" json:"enable,omitempty"`
  228. }
  229. func (x *UniversalCertificateRequestCloudflare) Reset() {
  230. *x = UniversalCertificateRequestCloudflare{}
  231. if protoimpl.UnsafeEnabled {
  232. mi := &file_proto_certificate_proto_msgTypes[3]
  233. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  234. ms.StoreMessageInfo(mi)
  235. }
  236. }
  237. func (x *UniversalCertificateRequestCloudflare) String() string {
  238. return protoimpl.X.MessageStringOf(x)
  239. }
  240. func (*UniversalCertificateRequestCloudflare) ProtoMessage() {}
  241. func (x *UniversalCertificateRequestCloudflare) ProtoReflect() protoreflect.Message {
  242. mi := &file_proto_certificate_proto_msgTypes[3]
  243. if protoimpl.UnsafeEnabled && x != nil {
  244. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  245. if ms.LoadMessageInfo() == nil {
  246. ms.StoreMessageInfo(mi)
  247. }
  248. return ms
  249. }
  250. return mi.MessageOf(x)
  251. }
  252. // Deprecated: Use UniversalCertificateRequestCloudflare.ProtoReflect.Descriptor instead.
  253. func (*UniversalCertificateRequestCloudflare) Descriptor() ([]byte, []int) {
  254. return file_proto_certificate_proto_rawDescGZIP(), []int{3}
  255. }
  256. func (x *UniversalCertificateRequestCloudflare) GetApiKey() string {
  257. if x != nil {
  258. return x.ApiKey
  259. }
  260. return ""
  261. }
  262. func (x *UniversalCertificateRequestCloudflare) GetApiEmail() string {
  263. if x != nil {
  264. return x.ApiEmail
  265. }
  266. return ""
  267. }
  268. func (x *UniversalCertificateRequestCloudflare) GetZoneName() string {
  269. if x != nil {
  270. return x.ZoneName
  271. }
  272. return ""
  273. }
  274. func (x *UniversalCertificateRequestCloudflare) GetEnable() bool {
  275. if x != nil {
  276. return x.Enable
  277. }
  278. return false
  279. }
  280. type CreateCertificateReplyCloudflare struct {
  281. state protoimpl.MessageState
  282. sizeCache protoimpl.SizeCache
  283. unknownFields protoimpl.UnknownFields
  284. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
  285. Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
  286. }
  287. func (x *CreateCertificateReplyCloudflare) Reset() {
  288. *x = CreateCertificateReplyCloudflare{}
  289. if protoimpl.UnsafeEnabled {
  290. mi := &file_proto_certificate_proto_msgTypes[4]
  291. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  292. ms.StoreMessageInfo(mi)
  293. }
  294. }
  295. func (x *CreateCertificateReplyCloudflare) String() string {
  296. return protoimpl.X.MessageStringOf(x)
  297. }
  298. func (*CreateCertificateReplyCloudflare) ProtoMessage() {}
  299. func (x *CreateCertificateReplyCloudflare) ProtoReflect() protoreflect.Message {
  300. mi := &file_proto_certificate_proto_msgTypes[4]
  301. if protoimpl.UnsafeEnabled && x != nil {
  302. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  303. if ms.LoadMessageInfo() == nil {
  304. ms.StoreMessageInfo(mi)
  305. }
  306. return ms
  307. }
  308. return mi.MessageOf(x)
  309. }
  310. // Deprecated: Use CreateCertificateReplyCloudflare.ProtoReflect.Descriptor instead.
  311. func (*CreateCertificateReplyCloudflare) Descriptor() ([]byte, []int) {
  312. return file_proto_certificate_proto_rawDescGZIP(), []int{4}
  313. }
  314. func (x *CreateCertificateReplyCloudflare) GetSuccess() bool {
  315. if x != nil {
  316. return x.Success
  317. }
  318. return false
  319. }
  320. func (x *CreateCertificateReplyCloudflare) GetId() string {
  321. if x != nil {
  322. return x.Id
  323. }
  324. return ""
  325. }
  326. type DeleteCertificateReplyCloudflare struct {
  327. state protoimpl.MessageState
  328. sizeCache protoimpl.SizeCache
  329. unknownFields protoimpl.UnknownFields
  330. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
  331. Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
  332. }
  333. func (x *DeleteCertificateReplyCloudflare) Reset() {
  334. *x = DeleteCertificateReplyCloudflare{}
  335. if protoimpl.UnsafeEnabled {
  336. mi := &file_proto_certificate_proto_msgTypes[5]
  337. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  338. ms.StoreMessageInfo(mi)
  339. }
  340. }
  341. func (x *DeleteCertificateReplyCloudflare) String() string {
  342. return protoimpl.X.MessageStringOf(x)
  343. }
  344. func (*DeleteCertificateReplyCloudflare) ProtoMessage() {}
  345. func (x *DeleteCertificateReplyCloudflare) ProtoReflect() protoreflect.Message {
  346. mi := &file_proto_certificate_proto_msgTypes[5]
  347. if protoimpl.UnsafeEnabled && x != nil {
  348. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  349. if ms.LoadMessageInfo() == nil {
  350. ms.StoreMessageInfo(mi)
  351. }
  352. return ms
  353. }
  354. return mi.MessageOf(x)
  355. }
  356. // Deprecated: Use DeleteCertificateReplyCloudflare.ProtoReflect.Descriptor instead.
  357. func (*DeleteCertificateReplyCloudflare) Descriptor() ([]byte, []int) {
  358. return file_proto_certificate_proto_rawDescGZIP(), []int{5}
  359. }
  360. func (x *DeleteCertificateReplyCloudflare) GetSuccess() bool {
  361. if x != nil {
  362. return x.Success
  363. }
  364. return false
  365. }
  366. func (x *DeleteCertificateReplyCloudflare) GetId() string {
  367. if x != nil {
  368. return x.Id
  369. }
  370. return ""
  371. }
  372. type EditCertificateReplyCloudflare struct {
  373. state protoimpl.MessageState
  374. sizeCache protoimpl.SizeCache
  375. unknownFields protoimpl.UnknownFields
  376. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
  377. Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
  378. }
  379. func (x *EditCertificateReplyCloudflare) Reset() {
  380. *x = EditCertificateReplyCloudflare{}
  381. if protoimpl.UnsafeEnabled {
  382. mi := &file_proto_certificate_proto_msgTypes[6]
  383. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  384. ms.StoreMessageInfo(mi)
  385. }
  386. }
  387. func (x *EditCertificateReplyCloudflare) String() string {
  388. return protoimpl.X.MessageStringOf(x)
  389. }
  390. func (*EditCertificateReplyCloudflare) ProtoMessage() {}
  391. func (x *EditCertificateReplyCloudflare) ProtoReflect() protoreflect.Message {
  392. mi := &file_proto_certificate_proto_msgTypes[6]
  393. if protoimpl.UnsafeEnabled && x != nil {
  394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  395. if ms.LoadMessageInfo() == nil {
  396. ms.StoreMessageInfo(mi)
  397. }
  398. return ms
  399. }
  400. return mi.MessageOf(x)
  401. }
  402. // Deprecated: Use EditCertificateReplyCloudflare.ProtoReflect.Descriptor instead.
  403. func (*EditCertificateReplyCloudflare) Descriptor() ([]byte, []int) {
  404. return file_proto_certificate_proto_rawDescGZIP(), []int{6}
  405. }
  406. func (x *EditCertificateReplyCloudflare) GetSuccess() bool {
  407. if x != nil {
  408. return x.Success
  409. }
  410. return false
  411. }
  412. func (x *EditCertificateReplyCloudflare) GetId() string {
  413. if x != nil {
  414. return x.Id
  415. }
  416. return ""
  417. }
  418. type UniversalCertificateReplyCloudflare struct {
  419. state protoimpl.MessageState
  420. sizeCache protoimpl.SizeCache
  421. unknownFields protoimpl.UnknownFields
  422. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
  423. Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
  424. }
  425. func (x *UniversalCertificateReplyCloudflare) Reset() {
  426. *x = UniversalCertificateReplyCloudflare{}
  427. if protoimpl.UnsafeEnabled {
  428. mi := &file_proto_certificate_proto_msgTypes[7]
  429. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  430. ms.StoreMessageInfo(mi)
  431. }
  432. }
  433. func (x *UniversalCertificateReplyCloudflare) String() string {
  434. return protoimpl.X.MessageStringOf(x)
  435. }
  436. func (*UniversalCertificateReplyCloudflare) ProtoMessage() {}
  437. func (x *UniversalCertificateReplyCloudflare) ProtoReflect() protoreflect.Message {
  438. mi := &file_proto_certificate_proto_msgTypes[7]
  439. if protoimpl.UnsafeEnabled && x != nil {
  440. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  441. if ms.LoadMessageInfo() == nil {
  442. ms.StoreMessageInfo(mi)
  443. }
  444. return ms
  445. }
  446. return mi.MessageOf(x)
  447. }
  448. // Deprecated: Use UniversalCertificateReplyCloudflare.ProtoReflect.Descriptor instead.
  449. func (*UniversalCertificateReplyCloudflare) Descriptor() ([]byte, []int) {
  450. return file_proto_certificate_proto_rawDescGZIP(), []int{7}
  451. }
  452. func (x *UniversalCertificateReplyCloudflare) GetSuccess() bool {
  453. if x != nil {
  454. return x.Success
  455. }
  456. return false
  457. }
  458. func (x *UniversalCertificateReplyCloudflare) GetEnabled() bool {
  459. if x != nil {
  460. return x.Enabled
  461. }
  462. return false
  463. }
  464. var File_proto_certificate_proto protoreflect.FileDescriptor
  465. var file_proto_certificate_proto_rawDesc = []byte{
  466. 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63,
  467. 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x63, 0x6c, 0x6f, 0x75, 0x64,
  468. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43,
  469. 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x22, 0xb6, 0x01, 0x0a, 0x22, 0x43,
  470. 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65,
  471. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72,
  472. 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  473. 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69,
  474. 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69,
  475. 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d,
  476. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d,
  477. 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65,
  478. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63,
  479. 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65,
  480. 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65,
  481. 0x4b, 0x65, 0x79, 0x22, 0x9a, 0x01, 0x0a, 0x22, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65,
  482. 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  483. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70,
  484. 0x69, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b,
  485. 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02,
  486. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a,
  487. 0x0a, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  488. 0x52, 0x08, 0x7a, 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x65,
  489. 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
  490. 0x09, 0x52, 0x0d, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x64,
  491. 0x22, 0xda, 0x01, 0x0a, 0x20, 0x45, 0x64, 0x69, 0x74, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
  492. 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64,
  493. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x18,
  494. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a,
  495. 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  496. 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x7a, 0x6f, 0x6e,
  497. 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x7a, 0x6f, 0x6e,
  498. 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
  499. 0x63, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x65,
  500. 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63,
  501. 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  502. 0x52, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a,
  503. 0x0a, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
  504. 0x09, 0x52, 0x0a, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x22, 0x8f, 0x01,
  505. 0x0a, 0x25, 0x55, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x43, 0x65, 0x72, 0x74, 0x69,
  506. 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f,
  507. 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65,
  508. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x70, 0x69, 0x4b, 0x65, 0x79, 0x12,
  509. 0x1a, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
  510. 0x09, 0x52, 0x08, 0x61, 0x70, 0x69, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x7a,
  511. 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x7a,
  512. 0x6f, 0x6e, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x6e, 0x61, 0x62, 0x6c,
  513. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x22,
  514. 0x4c, 0x0a, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
  515. 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c,
  516. 0x61, 0x72, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01,
  517. 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a,
  518. 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4c, 0x0a,
  519. 0x20, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  520. 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72,
  521. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01,
  522. 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  523. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4a, 0x0a, 0x1e, 0x45,
  524. 0x64, 0x69, 0x74, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65,
  525. 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x18, 0x0a,
  526. 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
  527. 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20,
  528. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x59, 0x0a, 0x23, 0x55, 0x6e, 0x69, 0x76, 0x65,
  529. 0x72, 0x73, 0x61, 0x6c, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52,
  530. 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x18,
  531. 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,
  532. 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62,
  533. 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c,
  534. 0x65, 0x64, 0x32, 0x9a, 0x05, 0x0a, 0x15, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  535. 0x74, 0x65, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x9d, 0x01, 0x0a,
  536. 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  537. 0x74, 0x65, 0x12, 0x43, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41,
  538. 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
  539. 0x63, 0x61, 0x74, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69,
  540. 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f,
  541. 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x41, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66,
  542. 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65,
  543. 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  544. 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79,
  545. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x12, 0x9d, 0x01, 0x0a,
  546. 0x11, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  547. 0x74, 0x65, 0x12, 0x43, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41,
  548. 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
  549. 0x63, 0x61, 0x74, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x65, 0x72, 0x74, 0x69,
  550. 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f,
  551. 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x41, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66,
  552. 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65,
  553. 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  554. 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79,
  555. 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x12, 0x97, 0x01, 0x0a,
  556. 0x0f, 0x45, 0x64, 0x69, 0x74, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65,
  557. 0x12, 0x41, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69,
  558. 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  559. 0x74, 0x65, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  560. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c,
  561. 0x61, 0x72, 0x65, 0x1a, 0x3f, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65,
  562. 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66,
  563. 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66,
  564. 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66,
  565. 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x12, 0xa6, 0x01, 0x0a, 0x14, 0x55, 0x6e, 0x69, 0x76, 0x65,
  566. 0x72, 0x73, 0x61, 0x6c, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x12,
  567. 0x46, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e,
  568. 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
  569. 0x65, 0x2e, 0x55, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x43, 0x65, 0x72, 0x74, 0x69,
  570. 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x6f,
  571. 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x1a, 0x44, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66,
  572. 0x6c, 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2e, 0x63, 0x61, 0x63, 0x68, 0x65, 0x2e, 0x43, 0x65,
  573. 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x55, 0x6e, 0x69, 0x76, 0x65, 0x72,
  574. 0x73, 0x61, 0x6c, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x65,
  575. 0x70, 0x6c, 0x79, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c, 0x61, 0x72, 0x65, 0x22, 0x00, 0x42,
  576. 0x51, 0x0a, 0x1e, 0x69, 0x6f, 0x2e, 0x67, 0x72, 0x70, 0x63, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64,
  577. 0x66, 0x6c, 0x61, 0x72, 0x65, 0x2e, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
  578. 0x65, 0x42, 0x10, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x50, 0x72,
  579. 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x1b, 0x2e, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x66, 0x6c,
  580. 0x61, 0x72, 0x65, 0x41, 0x70, 0x69, 0x2f, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  581. 0x74, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  582. }
  583. var (
  584. file_proto_certificate_proto_rawDescOnce sync.Once
  585. file_proto_certificate_proto_rawDescData = file_proto_certificate_proto_rawDesc
  586. )
  587. func file_proto_certificate_proto_rawDescGZIP() []byte {
  588. file_proto_certificate_proto_rawDescOnce.Do(func() {
  589. file_proto_certificate_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_certificate_proto_rawDescData)
  590. })
  591. return file_proto_certificate_proto_rawDescData
  592. }
  593. var file_proto_certificate_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
  594. var file_proto_certificate_proto_goTypes = []interface{}{
  595. (*CreateCertificateRequestCloudflare)(nil), // 0: cloudflareApi.cache.Certificate.CreateCertificateRequestCloudflare
  596. (*DeleteCertificateRequestCloudflare)(nil), // 1: cloudflareApi.cache.Certificate.DeleteCertificateRequestCloudflare
  597. (*EditCertificateRequestCloudflare)(nil), // 2: cloudflareApi.cache.Certificate.EditCertificateRequestCloudflare
  598. (*UniversalCertificateRequestCloudflare)(nil), // 3: cloudflareApi.cache.Certificate.UniversalCertificateRequestCloudflare
  599. (*CreateCertificateReplyCloudflare)(nil), // 4: cloudflareApi.cache.Certificate.CreateCertificateReplyCloudflare
  600. (*DeleteCertificateReplyCloudflare)(nil), // 5: cloudflareApi.cache.Certificate.DeleteCertificateReplyCloudflare
  601. (*EditCertificateReplyCloudflare)(nil), // 6: cloudflareApi.cache.Certificate.EditCertificateReplyCloudflare
  602. (*UniversalCertificateReplyCloudflare)(nil), // 7: cloudflareApi.cache.Certificate.UniversalCertificateReplyCloudflare
  603. }
  604. var file_proto_certificate_proto_depIdxs = []int32{
  605. 0, // 0: cloudflareApi.cache.Certificate.CertificateCloudflare.CreateCertificate:input_type -> cloudflareApi.cache.Certificate.CreateCertificateRequestCloudflare
  606. 1, // 1: cloudflareApi.cache.Certificate.CertificateCloudflare.DeleteCertificate:input_type -> cloudflareApi.cache.Certificate.DeleteCertificateRequestCloudflare
  607. 2, // 2: cloudflareApi.cache.Certificate.CertificateCloudflare.EditCertificate:input_type -> cloudflareApi.cache.Certificate.EditCertificateRequestCloudflare
  608. 3, // 3: cloudflareApi.cache.Certificate.CertificateCloudflare.UniversalCertificate:input_type -> cloudflareApi.cache.Certificate.UniversalCertificateRequestCloudflare
  609. 4, // 4: cloudflareApi.cache.Certificate.CertificateCloudflare.CreateCertificate:output_type -> cloudflareApi.cache.Certificate.CreateCertificateReplyCloudflare
  610. 5, // 5: cloudflareApi.cache.Certificate.CertificateCloudflare.DeleteCertificate:output_type -> cloudflareApi.cache.Certificate.DeleteCertificateReplyCloudflare
  611. 6, // 6: cloudflareApi.cache.Certificate.CertificateCloudflare.EditCertificate:output_type -> cloudflareApi.cache.Certificate.EditCertificateReplyCloudflare
  612. 7, // 7: cloudflareApi.cache.Certificate.CertificateCloudflare.UniversalCertificate:output_type -> cloudflareApi.cache.Certificate.UniversalCertificateReplyCloudflare
  613. 4, // [4:8] is the sub-list for method output_type
  614. 0, // [0:4] is the sub-list for method input_type
  615. 0, // [0:0] is the sub-list for extension type_name
  616. 0, // [0:0] is the sub-list for extension extendee
  617. 0, // [0:0] is the sub-list for field type_name
  618. }
  619. func init() { file_proto_certificate_proto_init() }
  620. func file_proto_certificate_proto_init() {
  621. if File_proto_certificate_proto != nil {
  622. return
  623. }
  624. if !protoimpl.UnsafeEnabled {
  625. file_proto_certificate_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  626. switch v := v.(*CreateCertificateRequestCloudflare); i {
  627. case 0:
  628. return &v.state
  629. case 1:
  630. return &v.sizeCache
  631. case 2:
  632. return &v.unknownFields
  633. default:
  634. return nil
  635. }
  636. }
  637. file_proto_certificate_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  638. switch v := v.(*DeleteCertificateRequestCloudflare); i {
  639. case 0:
  640. return &v.state
  641. case 1:
  642. return &v.sizeCache
  643. case 2:
  644. return &v.unknownFields
  645. default:
  646. return nil
  647. }
  648. }
  649. file_proto_certificate_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  650. switch v := v.(*EditCertificateRequestCloudflare); i {
  651. case 0:
  652. return &v.state
  653. case 1:
  654. return &v.sizeCache
  655. case 2:
  656. return &v.unknownFields
  657. default:
  658. return nil
  659. }
  660. }
  661. file_proto_certificate_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  662. switch v := v.(*UniversalCertificateRequestCloudflare); i {
  663. case 0:
  664. return &v.state
  665. case 1:
  666. return &v.sizeCache
  667. case 2:
  668. return &v.unknownFields
  669. default:
  670. return nil
  671. }
  672. }
  673. file_proto_certificate_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  674. switch v := v.(*CreateCertificateReplyCloudflare); i {
  675. case 0:
  676. return &v.state
  677. case 1:
  678. return &v.sizeCache
  679. case 2:
  680. return &v.unknownFields
  681. default:
  682. return nil
  683. }
  684. }
  685. file_proto_certificate_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  686. switch v := v.(*DeleteCertificateReplyCloudflare); i {
  687. case 0:
  688. return &v.state
  689. case 1:
  690. return &v.sizeCache
  691. case 2:
  692. return &v.unknownFields
  693. default:
  694. return nil
  695. }
  696. }
  697. file_proto_certificate_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  698. switch v := v.(*EditCertificateReplyCloudflare); i {
  699. case 0:
  700. return &v.state
  701. case 1:
  702. return &v.sizeCache
  703. case 2:
  704. return &v.unknownFields
  705. default:
  706. return nil
  707. }
  708. }
  709. file_proto_certificate_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  710. switch v := v.(*UniversalCertificateReplyCloudflare); i {
  711. case 0:
  712. return &v.state
  713. case 1:
  714. return &v.sizeCache
  715. case 2:
  716. return &v.unknownFields
  717. default:
  718. return nil
  719. }
  720. }
  721. }
  722. type x struct{}
  723. out := protoimpl.TypeBuilder{
  724. File: protoimpl.DescBuilder{
  725. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  726. RawDescriptor: file_proto_certificate_proto_rawDesc,
  727. NumEnums: 0,
  728. NumMessages: 8,
  729. NumExtensions: 0,
  730. NumServices: 1,
  731. },
  732. GoTypes: file_proto_certificate_proto_goTypes,
  733. DependencyIndexes: file_proto_certificate_proto_depIdxs,
  734. MessageInfos: file_proto_certificate_proto_msgTypes,
  735. }.Build()
  736. File_proto_certificate_proto = out.File
  737. file_proto_certificate_proto_rawDesc = nil
  738. file_proto_certificate_proto_goTypes = nil
  739. file_proto_certificate_proto_depIdxs = nil
  740. }